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

Conflicts:
	htdocs/fourn/class/fournisseur.commande.class.php
	htdocs/fourn/commande/dispatch.php
	htdocs/langs/el_GR/projects.lang
	htdocs/langs/en_GB/bills.lang
	htdocs/langs/en_GB/main.lang
	htdocs/langs/en_GB/orders.lang
	htdocs/langs/es_AR/bills.lang
	htdocs/langs/es_CO/admin.lang
	htdocs/langs/es_CO/main.lang
	htdocs/langs/es_ES/bills.lang
	htdocs/langs/es_ES/projects.lang
	htdocs/langs/fa_IR/categories.lang
	htdocs/langs/fr_FR/admin.lang
	htdocs/langs/fr_FR/bills.lang
	htdocs/langs/fr_FR/other.lang
	htdocs/langs/fr_FR/projects.lang
	htdocs/langs/lv_LV/bills.lang
	htdocs/langs/nb_NO/bills.lang
	htdocs/langs/pl_PL/bills.lang
	htdocs/langs/pl_PL/mails.lang
	htdocs/langs/pl_PL/projects.lang
	htdocs/langs/ro_RO/bills.lang
	htdocs/langs/ro_RO/products.lang
	htdocs/langs/ro_RO/projects.lang
	htdocs/langs/ru_RU/bills.lang
	htdocs/langs/ru_RU/projects.lang
	htdocs/langs/sl_SI/main.lang
	htdocs/langs/tr_TR/bills.lang
	htdocs/langs/tr_TR/projects.lang
	htdocs/langs/vi_VN/bills.lang
This commit is contained in:
Laurent Destailleur 2015-04-02 13:57:20 +02:00
commit cf0f458a51
808 changed files with 11570 additions and 8876 deletions

View File

@ -164,8 +164,6 @@
<severity>0</severity> <severity>0</severity>
</rule> </rule>
<rule ref="Generic.VersionControl.SubversionProperties" />
<!-- Disallow usage of tab --> <!-- Disallow usage of tab -->
<!-- <rule ref="Generic.WhiteSpace.DisallowTabIndent" /> --> <!-- <rule ref="Generic.WhiteSpace.DisallowTabIndent" /> -->

View File

@ -135,6 +135,7 @@ class InterfaceDemo extends DolibarrTriggers
case 'ORDER_SUPPLIER_REFUSE': case 'ORDER_SUPPLIER_REFUSE':
case 'ORDER_SUPPLIER_CANCEL': case 'ORDER_SUPPLIER_CANCEL':
case 'ORDER_SUPPLIER_SENTBYMAIL': case 'ORDER_SUPPLIER_SENTBYMAIL':
case 'ORDER_SUPPLIER_DISPATCH':
case 'LINEORDER_SUPPLIER_DISPATCH': case 'LINEORDER_SUPPLIER_DISPATCH':
case 'LINEORDER_SUPPLIER_CREATE': case 'LINEORDER_SUPPLIER_CREATE':
case 'LINEORDER_SUPPLIER_UPDATE': case 'LINEORDER_SUPPLIER_UPDATE':

View File

@ -1075,7 +1075,7 @@ class Expedition extends CommonObject
} }
if (file_exists($dir)) if (file_exists($dir))
{ {
if (!dol_delete_dir($dir)) if (!dol_delete_dir_recursive($dir))
{ {
$this->error=$langs->trans("ErrorCanNotDeleteDir",$dir); $this->error=$langs->trans("ErrorCanNotDeleteDir",$dir);
return 0; return 0;

View File

@ -1376,9 +1376,10 @@ class CommandeFournisseur extends CommonOrder
* @param date $sellby sell-by date * @param date $sellby sell-by date
* @param string $batch Lot number * @param string $batch Lot number
* @param int $fk_commandefourndet Id of supplier order line * @param int $fk_commandefourndet Id of supplier order line
* @param int $notrigger 1 = notrigger
* @return int <0 if KO, >0 if OK * @return int <0 if KO, >0 if OK
*/ */
function dispatchProduct($user, $product, $qty, $entrepot, $price=0, $comment='', $eatby='', $sellby='', $batch='', $fk_commandefourndet='') function dispatchProduct($user, $product, $qty, $entrepot, $price=0, $comment='', $eatby='', $sellby='', $batch='', $fk_commandefourndet=0, $notrigger=0)
{ {
global $conf; global $conf;
$error = 0; $error = 0;

View File

@ -133,7 +133,7 @@ if ($action == 'dispatch' && $user->rights->fournisseur->commande->receptionner)
if (! $error) if (! $error)
{ {
$result = $commande->DispatchProduct($user, GETPOST($prod,'int'),GETPOST($qty), GETPOST($ent,'int'), GETPOST($pu), GETPOST("comment"), '', '', '', GETPOST($fk_commandefourndet, 'int')); $result = $commande->DispatchProduct($user, GETPOST($prod,'int'),GETPOST($qty), GETPOST($ent,'int'), GETPOST($pu), GETPOST("comment"), '', '', '', GETPOST($fk_commandefourndet, 'int'), $notrigger);
if ($result < 0) if ($result < 0)
{ {
setEventMessages($commande->error, $commande->errors, 'errors'); setEventMessages($commande->error, $commande->errors, 'errors');
@ -155,6 +155,7 @@ if ($action == 'dispatch' && $user->rights->fournisseur->commande->receptionner)
$dDLUO = dol_mktime(12, 0, 0, $_POST['dluo_'.$reg[1]."_".$reg[2].'month'], $_POST['dluo_'.$reg[1]."_".$reg[2].'day'], $_POST['dluo_'.$reg[1]."_".$reg[2].'year']); $dDLUO = dol_mktime(12, 0, 0, $_POST['dluo_'.$reg[1]."_".$reg[2].'month'], $_POST['dluo_'.$reg[1]."_".$reg[2].'day'], $_POST['dluo_'.$reg[1]."_".$reg[2].'year']);
$dDLC = dol_mktime(12, 0, 0, $_POST['dlc_'.$reg[1]."_".$reg[2].'month'], $_POST['dlc_'.$reg[1]."_".$reg[2].'day'], $_POST['dlc_'.$reg[1]."_".$reg[2].'year']); $dDLC = dol_mktime(12, 0, 0, $_POST['dlc_'.$reg[1]."_".$reg[2].'month'], $_POST['dlc_'.$reg[1]."_".$reg[2].'day'], $_POST['dlc_'.$reg[1]."_".$reg[2].'year']);
$fk_commandefourndet = "fk_commandefourndet_".$reg[1]."_".$reg[2];
if (GETPOST($qty) > 0) // We ask to move a qty if (GETPOST($qty) > 0) // We ask to move a qty
{ {
if (! (GETPOST($ent,'int') > 0)) if (! (GETPOST($ent,'int') > 0))
@ -175,7 +176,7 @@ if ($action == 'dispatch' && $user->rights->fournisseur->commande->receptionner)
if (! $error) if (! $error)
{ {
$result = $commande->dispatchProduct($user, GETPOST($prod,'int'), GETPOST($qty), GETPOST($ent,'int'), GETPOST($pu), GETPOST("comment"), $dDLC, $dDLUO, GETPOST($lot, 'alpha'), GETPOST($fk_commandefourndet, 'int')); $result = $commande->dispatchProduct($user, GETPOST($prod,'int'), GETPOST($qty), GETPOST($ent,'int'), GETPOST($pu), GETPOST("comment"), $dDLC, $dDLUO, GETPOST($lot, 'alpha'), GETPOST($fk_commandefourndet, 'int'), $notrigger);
if ($result < 0) if ($result < 0)
{ {
setEventMessages($commande->error, $commande->errors, 'errors'); setEventMessages($commande->error, $commande->errors, 'errors');
@ -191,7 +192,7 @@ if ($action == 'dispatch' && $user->rights->fournisseur->commande->receptionner)
{ {
global $conf, $langs, $user; global $conf, $langs, $user;
// Call trigger // Call trigger
$result=$commande->call_trigger('ORDER_SUPPLIER_DISPATCH',$user); $result = $commande->call_trigger('ORDER_SUPPLIER_DISPATCH', $user);
// End call triggers // End call triggers
if ($result < 0) if ($result < 0)

View File

@ -389,6 +389,7 @@ ExtrafieldSeparator=Separator
ExtrafieldCheckBox=Checkbox ExtrafieldCheckBox=Checkbox
ExtrafieldRadio=Radio button ExtrafieldRadio=Radio button
ExtrafieldCheckBoxFromList= Checkbox from table ExtrafieldCheckBoxFromList= Checkbox from table
ExtrafieldLink=Link to an object
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
@ -494,6 +495,8 @@ Module500Name=Special expenses (tax, social contributions, dividends)
Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries
Module510Name=Salaries Module510Name=Salaries
Module510Desc=Management of employees salaries and payments Module510Desc=Management of employees salaries and payments
Module520Name=Loan
Module520Desc=Management of loans
Module600Name=الإخطارات Module600Name=الإخطارات
Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty) Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
Module700Name=التبرعات Module700Name=التبرعات
@ -508,14 +511,14 @@ Module1400Name=المحاسبة
Module1400Desc=المحاسبة الإدارية (ضعف الأحزاب) Module1400Desc=المحاسبة الإدارية (ضعف الأحزاب)
Module1520Name=Document Generation Module1520Name=Document Generation
Module1520Desc=Mass mail document generation Module1520Desc=Mass mail document generation
Module1780Name=الفئات Module1780Name=Tags/Categories
Module1780Desc=الفئات إدارة المنتجات والموردين والزبائن) Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
Module2000Name=Fckeditor Module2000Name=Fckeditor
Module2000Desc=سوغ محرر Module2000Desc=سوغ محرر
Module2200Name=Dynamic Prices Module2200Name=Dynamic Prices
Module2200Desc=Enable the usage of math expressions for prices Module2200Desc=Enable the usage of math expressions for prices
Module2300Name=Cron Module2300Name=Cron
Module2300Desc=Scheduled task management Module2300Desc=Scheduled job management
Module2400Name=جدول الأعمال Module2400Name=جدول الأعمال
Module2400Desc=الأعمال / الإدارة المهام وجدول الأعمال Module2400Desc=الأعمال / الإدارة المهام وجدول الأعمال
Module2500Name=إدارة المحتوى الإلكتروني Module2500Name=إدارة المحتوى الإلكتروني
@ -714,6 +717,11 @@ Permission510=Read Salaries
Permission512=Create/modify salaries Permission512=Create/modify salaries
Permission514=Delete salaries Permission514=Delete salaries
Permission517=Export salaries Permission517=Export salaries
Permission520=Read Loans
Permission522=Create/modify loans
Permission524=Delete loans
Permission525=Access loan calculator
Permission527=Export loans
Permission531=قراءة الخدمات Permission531=قراءة الخدمات
Permission532=إنشاء / تعديل الخدمات Permission532=إنشاء / تعديل الخدمات
Permission534=حذف خدمات Permission534=حذف خدمات
@ -746,6 +754,7 @@ Permission1185=الموافقة على أوامر المورد
Permission1186=من أجل المورد أوامر Permission1186=من أجل المورد أوامر
Permission1187=باستلام المورد أوامر Permission1187=باستلام المورد أوامر
Permission1188=وثيقة أوامر المورد Permission1188=وثيقة أوامر المورد
Permission1190=Approve (second approval) supplier orders
Permission1201=ونتيجة للحصول على التصدير Permission1201=ونتيجة للحصول على التصدير
Permission1202=إنشاء / تعديل للتصدير Permission1202=إنشاء / تعديل للتصدير
Permission1231=قراءة فواتير الموردين Permission1231=قراءة فواتير الموردين
@ -758,10 +767,10 @@ Permission1237=Export supplier orders and their details
Permission1251=ادارة الدمار الواردات الخارجية البيانات في قاعدة البيانات (بيانات تحميل) Permission1251=ادارة الدمار الواردات الخارجية البيانات في قاعدة البيانات (بيانات تحميل)
Permission1321=تصدير العملاء والفواتير والمدفوعات والصفات Permission1321=تصدير العملاء والفواتير والمدفوعات والصفات
Permission1421=التصدير طلبات الزبائن وصفاته Permission1421=التصدير طلبات الزبائن وصفاته
Permission23001 = Read Scheduled task Permission23001=Read Scheduled job
Permission23002 = Create/update Scheduled task Permission23002=Create/update Scheduled job
Permission23003 = Delete Scheduled task Permission23003=Delete Scheduled job
Permission23004 = Execute Scheduled task Permission23004=Execute Scheduled job
Permission2401=قراءة الأعمال (أو أحداث المهام) مرتبطة حسابه Permission2401=قراءة الأعمال (أو أحداث المهام) مرتبطة حسابه
Permission2402=إنشاء / تعديل أو حذف الإجراءات (الأحداث أو المهام) مرتبطة حسابه Permission2402=إنشاء / تعديل أو حذف الإجراءات (الأحداث أو المهام) مرتبطة حسابه
Permission2403=قراءة الأعمال (أو أحداث المهام) آخرين Permission2403=قراءة الأعمال (أو أحداث المهام) آخرين
@ -1107,7 +1116,7 @@ ModuleCompanyCodeAquarium=عودة رمز المحاسبة التي بناها:
ModuleCompanyCodePanicum=العودة فارغة مدونة المحاسبة. ModuleCompanyCodePanicum=العودة فارغة مدونة المحاسبة.
ModuleCompanyCodeDigitaria=قانون المحاسبة طرف ثالث يعتمد على الرمز. الشفرة تتكون من طابع "جيم" في المركز الأول يليه 5 الحروف الأولى من طرف ثالث المدونة. ModuleCompanyCodeDigitaria=قانون المحاسبة طرف ثالث يعتمد على الرمز. الشفرة تتكون من طابع "جيم" في المركز الأول يليه 5 الحروف الأولى من طرف ثالث المدونة.
UseNotifications=استخدام الإخطارات UseNotifications=استخدام الإخطارات
NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one third party at time.<br>* or by setting a global target email address on module setup page. NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one contact at time.<br>* or by setting global target email addresses in module setup page.
ModelModules=وثائق قوالب ModelModules=وثائق قوالب
DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...) DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...)
WatermarkOnDraft=علامة مائية على مشروع الوثيقة WatermarkOnDraft=علامة مائية على مشروع الوثيقة
@ -1557,6 +1566,7 @@ SuppliersSetup=المورد الإعداد وحدة
SuppliersCommandModel=قالب كاملة من أجل المورد (logo...) SuppliersCommandModel=قالب كاملة من أجل المورد (logo...)
SuppliersInvoiceModel=كاملة قالب من فاتورة المورد (logo. ..) SuppliersInvoiceModel=كاملة قالب من فاتورة المورد (logo. ..)
SuppliersInvoiceNumberingModel=Supplier invoices numbering models SuppliersInvoiceNumberingModel=Supplier invoices numbering models
IfSetToYesDontForgetPermission=If set to yes, don't forget to provide permissions to groups or users allowed for the second approval
##### GeoIPMaxmind ##### ##### GeoIPMaxmind #####
GeoIPMaxmindSetup=GeoIP Maxmind الإعداد وحدة GeoIPMaxmindSetup=GeoIP Maxmind الإعداد وحدة
PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.<br>Examples:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.<br>Examples:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat
@ -1601,3 +1611,8 @@ ExpenseReportsSetup=Setup of module Expense Reports
TemplatePDFExpenseReports=Document templates to generate expense report document TemplatePDFExpenseReports=Document templates to generate expense report document
NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only. NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only.
NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only. NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for EMail notifications by enabling and configuring the module "Notification".
ListOfNotificationsPerContact=List of notifications per contact*
ListOfFixedNotifications=List of fixed notifications
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
Threshold=Threshold

View File

@ -48,7 +48,10 @@ InvoiceValidatedInDolibarr=تم توثيق %s من الفاتورة
InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
InvoiceBackToDraftInDolibarr=الفاتورة %s للذهاب بها إلى حالة المسودة InvoiceBackToDraftInDolibarr=الفاتورة %s للذهاب بها إلى حالة المسودة
InvoiceDeleteDolibarr=تم حذف %s من الفاتورة InvoiceDeleteDolibarr=تم حذف %s من الفاتورة
OrderValidatedInDolibarr= تم توثيق %s من الطلب OrderValidatedInDolibarr=تم توثيق %s من الطلب
OrderDeliveredInDolibarr=Order %s classified delivered
OrderCanceledInDolibarr=تم إلغاء %s من الطلب
OrderBilledInDolibarr=Order %s classified billed
OrderApprovedInDolibarr=تم الموافقة على %s من الطلب OrderApprovedInDolibarr=تم الموافقة على %s من الطلب
OrderRefusedInDolibarr=Order %s refused OrderRefusedInDolibarr=Order %s refused
OrderBackToDraftInDolibarr=الطلب %s للذهاب بها إلى حالة المسودة OrderBackToDraftInDolibarr=الطلب %s للذهاب بها إلى حالة المسودة
@ -91,3 +94,5 @@ WorkingTimeRange=Working time range
WorkingDaysRange=Working days range WorkingDaysRange=Working days range
AddEvent=Create event AddEvent=Create event
MyAvailability=My availability MyAvailability=My availability
ActionType=Event type
DateActionBegin=Start event date

View File

@ -294,6 +294,8 @@ TotalOfTwoDiscountMustEqualsOriginal=مجموعه جديدتين الخصم يج
ConfirmRemoveDiscount=هل أنت متأكد من أنك تريد إزالة هذا الخصم؟ ConfirmRemoveDiscount=هل أنت متأكد من أنك تريد إزالة هذا الخصم؟
RelatedBill=الفاتورة ذات الصلة RelatedBill=الفاتورة ذات الصلة
RelatedBills=الفواتير ذات الصلة RelatedBills=الفواتير ذات الصلة
RelatedCustomerInvoices=Related customer invoices
RelatedSupplierInvoices=Related supplier invoices
LatestRelatedBill=Latest related invoice LatestRelatedBill=Latest related invoice
WarningBillExist=Warning, one or more invoice already exist WarningBillExist=Warning, one or more invoice already exist

View File

@ -1,64 +1,62 @@
# Dolibarr language file - Source file is en_US - categories # Dolibarr language file - Source file is en_US - categories
Category=الفئة Rubrique=Tag/Category
Categories=الفئات Rubriques=Tags/Categories
Rubrique=الفئة categories=tags/categories
Rubriques=الفئات TheCategorie=The tag/category
categories=الفئات NoCategoryYet=No tag/category of this type created
TheCategorie=فئة
NoCategoryYet=أي فئة من هذا النوع التي أنشئت
In=في In=في
AddIn=أضيف في AddIn=أضيف في
modify=تعديل modify=تعديل
Classify=تصنيف Classify=تصنيف
CategoriesArea=منطقة الفئات CategoriesArea=Tags/Categories area
ProductsCategoriesArea=منتجات / خدمات الفئات المنطقة ProductsCategoriesArea=Products/Services tags/categories area
SuppliersCategoriesArea=الموردين منطقة الفئات SuppliersCategoriesArea=Suppliers tags/categories area
CustomersCategoriesArea=العملاء منطقة الفئات CustomersCategoriesArea=Customers tags/categories area
ThirdPartyCategoriesArea=أطراف ثالثة 'منطقة الفئات ThirdPartyCategoriesArea=Third parties tags/categories area
MembersCategoriesArea=منطقة فئات الأعضاء MembersCategoriesArea=Members tags/categories area
ContactsCategoriesArea=Contacts categories area ContactsCategoriesArea=Contacts tags/categories area
MainCats=الفئات الرئيسية MainCats=Main tags/categories
SubCats=الفئات الفرعية SubCats=الفئات الفرعية
CatStatistics=إحصائيات CatStatistics=إحصائيات
CatList=قائمة الفئات CatList=List of tags/categories
AllCats=جميع الفئات AllCats=All tags/categories
ViewCat=عرض الفئة ViewCat=View tag/category
NewCat=إضافة فئة NewCat=Add tag/category
NewCategory=فئة جديدة NewCategory=New tag/category
ModifCat=تعديل الفئة ModifCat=Modify tag/category
CatCreated=تم إنشاء الفئة CatCreated=Tag/category created
CreateCat=إنشاء فئة CreateCat=Create tag/category
CreateThisCat=إنشاء هذه الفئة CreateThisCat=Create this tag/category
ValidateFields=صحة المجالات ValidateFields=صحة المجالات
NoSubCat=لا فرعية. NoSubCat=لا فرعية.
SubCatOf=فرعية SubCatOf=فرعية
FoundCats=العثور على الفئات FoundCats=Found tags/categories
FoundCatsForName=فئات إيجاد اسم : FoundCatsForName=Tags/categories found for the name :
FoundSubCatsIn=فرعية موجودة في الفئة FoundSubCatsIn=Subcategories found in the tag/category
ErrSameCatSelected=كنت قد اخترت نفس الفئة عدة مرات ErrSameCatSelected=You selected the same tag/category several times
ErrForgotCat=نسيت اختيار الفئة ErrForgotCat=You forgot to choose the tag/category
ErrForgotField=نسيت أن أبلغ المجالات ErrForgotField=نسيت أن أبلغ المجالات
ErrCatAlreadyExists=هذا الاسم مستخدم بالفعل ErrCatAlreadyExists=هذا الاسم مستخدم بالفعل
AddProductToCat=إضافة هذا المنتج إلى الفئة؟ AddProductToCat=Add this product to a tag/category?
ImpossibleAddCat=من المستحيل أن تضيف فئة ImpossibleAddCat=Impossible to add the tag/category
ImpossibleAssociateCategory=من المستحيل المنتسبين لهذه الفئة ImpossibleAssociateCategory=Impossible to associate the tag/category to
WasAddedSuccessfully=<b>ق ٪</b> أضيفت بنجاح. WasAddedSuccessfully=<b>ق ٪</b> أضيفت بنجاح.
ObjectAlreadyLinkedToCategory=العنصر المرتبط بالفعل في هذه الفئة. ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
CategorySuccessfullyCreated=ق ٪ من هذه الفئة تم اضافة بالنجاح. CategorySuccessfullyCreated=This tag/category %s has been added with success.
ProductIsInCategories=المنتجات / الخدمات وتملك على الفئات التالية ProductIsInCategories=Product/service owns to following tags/categories
SupplierIsInCategories=لطرف ثالث يملك الموردين الفئات التالية SupplierIsInCategories=Third party owns to following suppliers tags/categories
CompanyIsInCustomersCategories=هذا الطرف الثالث وتملك ليلي العملاء / آفاق الفئات CompanyIsInCustomersCategories=This third party owns to following customers/prospects tags/categories
CompanyIsInSuppliersCategories=ويملك هذا الطرف الثالث على الفئات التالية الموردين CompanyIsInSuppliersCategories=This third party owns to following suppliers tags/categories
MemberIsInCategories=يملك هذا العضو إلى الفئات التالية الأعضاء MemberIsInCategories=This member owns to following members tags/categories
ContactIsInCategories=This contact owns to following contacts categories ContactIsInCategories=This contact owns to following contacts tags/categories
ProductHasNoCategory=هذا المنتج / الخدمة وليس في أي فئات ProductHasNoCategory=This product/service is not in any tags/categories
SupplierHasNoCategory=هذا المورد ليست في أي فئات SupplierHasNoCategory=This supplier is not in any tags/categories
CompanyHasNoCategory=هذه الشركة ليست في أي فئات CompanyHasNoCategory=This company is not in any tags/categories
MemberHasNoCategory=هذا العضو غير موجود في أي فئات MemberHasNoCategory=This member is not in any tags/categories
ContactHasNoCategory=This contact is not in any categories ContactHasNoCategory=This contact is not in any tags/categories
ClassifyInCategory=تصنف في الفئة ClassifyInCategory=Classify in tag/category
NoneCategory=بلا NoneCategory=بلا
NotCategorized=Without category NotCategorized=Without tag/category
CategoryExistsAtSameLevel=هذه الفئة موجودة بالفعل في نفس المكان CategoryExistsAtSameLevel=هذه الفئة موجودة بالفعل في نفس المكان
ReturnInProduct=عودة إلى المنتجات / الخدمات بطاقة ReturnInProduct=عودة إلى المنتجات / الخدمات بطاقة
ReturnInSupplier=عودة الى مورد بطاقة ReturnInSupplier=عودة الى مورد بطاقة
@ -66,22 +64,22 @@ ReturnInCompany=عودة الى الزبون / احتمال بطاقة
ContentsVisibleByAll=محتويات سوف تكون واضحة من جانب جميع ContentsVisibleByAll=محتويات سوف تكون واضحة من جانب جميع
ContentsVisibleByAllShort=محتويات مرئية من قبل جميع ContentsVisibleByAllShort=محتويات مرئية من قبل جميع
ContentsNotVisibleByAllShort=محتويات غير مرئي من قبل جميع ContentsNotVisibleByAllShort=محتويات غير مرئي من قبل جميع
CategoriesTree=Categories tree CategoriesTree=Tags/categories tree
DeleteCategory=حذف فئة DeleteCategory=Delete tag/category
ConfirmDeleteCategory=هل أنت متأكد من أنك تريد حذف هذه الفئة؟ ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
RemoveFromCategory=إزالة الارتباط مع catégorie RemoveFromCategory=Remove link with tag/categorie
RemoveFromCategoryConfirm=هل أنت متأكد من أنك تريد إزالة الربط بين الصفقة والفئة؟ RemoveFromCategoryConfirm=Are you sure you want to remove link between the transaction and the tag/category ?
NoCategoriesDefined=أي فئة محددة NoCategoriesDefined=No tag/category defined
SuppliersCategoryShort=فئة الموردين SuppliersCategoryShort=Suppliers tags/category
CustomersCategoryShort=فئة الزبائن CustomersCategoryShort=Customers tags/category
ProductsCategoryShort=فئة المنتجات ProductsCategoryShort=Products tags/category
MembersCategoryShort=أعضاء الفئة MembersCategoryShort=Members tags/category
SuppliersCategoriesShort=فئات الموردين SuppliersCategoriesShort=Suppliers tags/categories
CustomersCategoriesShort=فئات العملاء CustomersCategoriesShort=Customers tags/categories
CustomersProspectsCategoriesShort=Custo. / Prosp. الفئات CustomersProspectsCategoriesShort=Custo. / Prosp. الفئات
ProductsCategoriesShort=فئات المنتجات ProductsCategoriesShort=Products tags/categories
MembersCategoriesShort=أعضاء الفئات MembersCategoriesShort=Members tags/categories
ContactCategoriesShort=Contacts categories ContactCategoriesShort=Contacts tags/categories
ThisCategoryHasNoProduct=هذه الفئة لا تحتوي على أي منتج. ThisCategoryHasNoProduct=هذه الفئة لا تحتوي على أي منتج.
ThisCategoryHasNoSupplier=هذه الفئة لا تحتوي على أي مورد. ThisCategoryHasNoSupplier=هذه الفئة لا تحتوي على أي مورد.
ThisCategoryHasNoCustomer=هذه الفئة لا تحتوي على أي عميل. ThisCategoryHasNoCustomer=هذه الفئة لا تحتوي على أي عميل.
@ -90,23 +88,23 @@ ThisCategoryHasNoContact=This category does not contain any contact.
AssignedToCustomer=المخصصة للعميل AssignedToCustomer=المخصصة للعميل
AssignedToTheCustomer=يكلف العميل AssignedToTheCustomer=يكلف العميل
InternalCategory=فئة Inernal InternalCategory=فئة Inernal
CategoryContents=محتويات هذه الفئة CategoryContents=Tag/category contents
CategId=معرف الفئة CategId=Tag/category id
CatSupList=قائمة الموردين الفئات CatSupList=List of supplier tags/categories
CatCusList=قائمة العملاء / احتمال الفئات CatCusList=List of customer/prospect tags/categories
CatProdList=قائمة المنتجات فئات CatProdList=List of products tags/categories
CatMemberList=قائمة بأسماء أعضاء الفئات CatMemberList=List of members tags/categories
CatContactList=List of contact categories and contact CatContactList=List of contact tags/categories and contact
CatSupLinks=Links between suppliers and categories CatSupLinks=Links between suppliers and tags/categories
CatCusLinks=Links between customers/prospects and categories CatCusLinks=Links between customers/prospects and tags/categories
CatProdLinks=Links between products/services and categories CatProdLinks=Links between products/services and tags/categories
CatMemberLinks=Links between members and categories CatMemberLinks=Links between members and tags/categories
DeleteFromCat=Remove from category DeleteFromCat=Remove from tags/category
DeletePicture=Picture delete DeletePicture=Picture delete
ConfirmDeletePicture=Confirm picture deletion? ConfirmDeletePicture=Confirm picture deletion?
ExtraFieldsCategories=Complementary attributes ExtraFieldsCategories=Complementary attributes
CategoriesSetup=Categories setup CategoriesSetup=Tags/categories setup
CategorieRecursiv=Link with parent category automatically CategorieRecursiv=Link with parent tag/category automatically
CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory
AddProductServiceIntoCategory=Add the following product/service AddProductServiceIntoCategory=Add the following product/service
ShowCategory=Show category ShowCategory=Show tag/category

View File

@ -26,15 +26,15 @@ CronLastOutput=Last run output
CronLastResult=Last result code CronLastResult=Last result code
CronListOfCronJobs=List of scheduled jobs CronListOfCronJobs=List of scheduled jobs
CronCommand=Command CronCommand=Command
CronList=Jobs list CronList=Scheduled job
CronDelete= Delete cron jobs CronDelete=Delete scheduled jobs
CronConfirmDelete= Are you sure you want to delete this cron job ? CronConfirmDelete=Are you sure you want to delete this scheduled jobs ?
CronExecute=Launch job CronExecute=Launch scheduled jobs
CronConfirmExecute= Are you sure to execute this job now CronConfirmExecute=Are you sure to execute this scheduled jobs now ?
CronInfo= Jobs allow to execute task that have been planned CronInfo=Scheduled job module allow to execute job that have been planned
CronWaitingJobs=Wainting jobs CronWaitingJobs=Waiting jobs
CronTask=Job CronTask=Job
CronNone= بلا CronNone=بلا
CronDtStart=تاريخ البدء CronDtStart=تاريخ البدء
CronDtEnd=نهاية التاريخ CronDtEnd=نهاية التاريخ
CronDtNextLaunch=Next execution CronDtNextLaunch=Next execution
@ -75,6 +75,7 @@ CronObjectHelp=The object name to load. <BR> For exemple to fetch method of Doli
CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is is <i>fecth</i> CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is is <i>fecth</i>
CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i> CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i>
CronCommandHelp=The system command line to execute. CronCommandHelp=The system command line to execute.
CronCreateJob=Create new Scheduled Job
# Info # Info
CronInfoPage=Information CronInfoPage=Information
# Common # Common

View File

@ -6,6 +6,8 @@ Donor=الجهات المانحة
Donors=الجهات المانحة Donors=الجهات المانحة
AddDonation=Create a donation AddDonation=Create a donation
NewDonation=منحة جديدة NewDonation=منحة جديدة
DeleteADonation=Delete a donation
ConfirmDeleteADonation=Are you sure you want to delete this donation ?
ShowDonation=Show donation ShowDonation=Show donation
DonationPromise=هدية الوعد DonationPromise=هدية الوعد
PromisesNotValid=وعود لم يصادق PromisesNotValid=وعود لم يصادق
@ -21,6 +23,8 @@ DonationStatusPaid=تلقى تبرع
DonationStatusPromiseNotValidatedShort=مسودة DonationStatusPromiseNotValidatedShort=مسودة
DonationStatusPromiseValidatedShort=صادق DonationStatusPromiseValidatedShort=صادق
DonationStatusPaidShort=وردت DonationStatusPaidShort=وردت
DonationTitle=Donation receipt
DonationDatePayment=Payment date
ValidPromess=التحقق من صحة الوعد ValidPromess=التحقق من صحة الوعد
DonationReceipt=Donation receipt DonationReceipt=Donation receipt
BuildDonationReceipt=بناء استلام BuildDonationReceipt=بناء استلام
@ -36,3 +40,4 @@ FrenchOptions=Options for France
DONATION_ART200=Show article 200 from CGI if you are concerned DONATION_ART200=Show article 200 from CGI if you are concerned
DONATION_ART238=Show article 238 from CGI if you are concerned DONATION_ART238=Show article 238 from CGI if you are concerned
DONATION_ART885=Show article 885 from CGI if you are concerned DONATION_ART885=Show article 885 from CGI if you are concerned
DonationPayment=Donation payment

View File

@ -161,6 +161,12 @@ ErrorPriceExpressionUnknown=Unknown error '%s'
ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs
ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information
ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action
ErrorGlobalVariableUpdater0=HTTP request failed with error '%s'
ErrorGlobalVariableUpdater1=Invalid JSON format '%s'
ErrorGlobalVariableUpdater2=Missing parameter '%s'
ErrorGlobalVariableUpdater3=The requested data was not found in result
ErrorGlobalVariableUpdater4=SOAP client failed with error '%s'
ErrorGlobalVariableUpdater5=No global variable selected
# Warnings # Warnings
WarningMandatorySetupNotComplete=Mandatory setup parameters are not yet defined WarningMandatorySetupNotComplete=Mandatory setup parameters are not yet defined

View File

@ -139,3 +139,5 @@ ListOfNotificationsDone=أرسلت قائمة جميع اشعارات بالبر
MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing. MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature. MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s. MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
NbOfTargetedContacts=Current number of targeted contact emails

View File

@ -352,6 +352,7 @@ Status=حالة
Favorite=Favorite Favorite=Favorite
ShortInfo=Info. ShortInfo=Info.
Ref=المرجع. Ref=المرجع.
ExternalRef=Ref. extern
RefSupplier=المرجع. المورد RefSupplier=المرجع. المورد
RefPayment=المرجع. الدفع RefPayment=المرجع. الدفع
CommercialProposalsShort=مقترحات تجارية CommercialProposalsShort=مقترحات تجارية
@ -394,8 +395,8 @@ Available=متاح
NotYetAvailable=لم تتوفر بعد NotYetAvailable=لم تتوفر بعد
NotAvailable=غير متاحة NotAvailable=غير متاحة
Popularity=شعبية Popularity=شعبية
Categories=الفئات Categories=Tags/categories
Category=الفئة Category=Tag/category
By=بواسطة By=بواسطة
From=من From=من
to=إلى to=إلى
@ -694,6 +695,7 @@ AddBox=Add box
SelectElementAndClickRefresh=Select an element and click Refresh SelectElementAndClickRefresh=Select an element and click Refresh
PrintFile=Print File %s PrintFile=Print File %s
ShowTransaction=Show transaction ShowTransaction=Show transaction
GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
# Week day # Week day
Monday=يوم الاثنين Monday=يوم الاثنين
Tuesday=الثلاثاء Tuesday=الثلاثاء

View File

@ -64,7 +64,8 @@ ShipProduct=سفينة المنتج
Discount=الخصم Discount=الخصم
CreateOrder=خلق أمر CreateOrder=خلق أمر
RefuseOrder=رفض النظام RefuseOrder=رفض النظام
ApproveOrder=قبول النظام ApproveOrder=Approve order
Approve2Order=Approve order (second level)
ValidateOrder=من أجل التحقق من صحة ValidateOrder=من أجل التحقق من صحة
UnvalidateOrder=Unvalidate النظام UnvalidateOrder=Unvalidate النظام
DeleteOrder=من أجل حذف DeleteOrder=من أجل حذف
@ -102,6 +103,8 @@ ClassifyBilled=تصنيف "فواتير"
ComptaCard=بطاقة المحاسبة ComptaCard=بطاقة المحاسبة
DraftOrders=مشروع أوامر DraftOrders=مشروع أوامر
RelatedOrders=الأوامر ذات الصلة RelatedOrders=الأوامر ذات الصلة
RelatedCustomerOrders=Related customer orders
RelatedSupplierOrders=Related supplier orders
OnProcessOrders=على عملية أوامر OnProcessOrders=على عملية أوامر
RefOrder=المرجع. ترتيب RefOrder=المرجع. ترتيب
RefCustomerOrder=المرجع. عملاء النظام RefCustomerOrder=المرجع. عملاء النظام
@ -118,6 +121,7 @@ PaymentOrderRef=من أجل دفع ق ٪
CloneOrder=استنساخ النظام CloneOrder=استنساخ النظام
ConfirmCloneOrder=هل أنت متأكد من أن هذا الأمر استنساخ <b>٪ ق؟</b> ConfirmCloneOrder=هل أنت متأكد من أن هذا الأمر استنساخ <b>٪ ق؟</b>
DispatchSupplierOrder=%s استقبال النظام مورد DispatchSupplierOrder=%s استقبال النظام مورد
FirstApprovalAlreadyDone=First approval already done
##### Types de contacts ##### ##### Types de contacts #####
TypeContact_commande_internal_SALESREPFOLL=ممثل العميل متابعة النظام TypeContact_commande_internal_SALESREPFOLL=ممثل العميل متابعة النظام
TypeContact_commande_internal_SHIPPING=ممثل الشحن متابعة TypeContact_commande_internal_SHIPPING=ممثل الشحن متابعة

View File

@ -12,6 +12,7 @@ Notify_FICHINTER_VALIDATE=تدخل المصادق
Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail
Notify_BILL_VALIDATE=فاتورة مصادق Notify_BILL_VALIDATE=فاتورة مصادق
Notify_BILL_UNVALIDATE=Customer invoice unvalidated Notify_BILL_UNVALIDATE=Customer invoice unvalidated
Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_APPROVE=من أجل الموافقة على المورد Notify_ORDER_SUPPLIER_APPROVE=من أجل الموافقة على المورد
Notify_ORDER_SUPPLIER_REFUSE=من أجل رفض الموردين Notify_ORDER_SUPPLIER_REFUSE=من أجل رفض الموردين
Notify_ORDER_VALIDATE=التحقق من صحة النظام العميل Notify_ORDER_VALIDATE=التحقق من صحة النظام العميل
@ -28,7 +29,7 @@ Notify_PROPAL_SENTBYMAIL=اقتراح التجارية المرسلة عن طر
Notify_BILL_PAYED=دفعت فاتورة العميل Notify_BILL_PAYED=دفعت فاتورة العميل
Notify_BILL_CANCEL=فاتورة الزبون إلغاء Notify_BILL_CANCEL=فاتورة الزبون إلغاء
Notify_BILL_SENTBYMAIL=فاتورة الزبون إرسالها عن طريق البريد Notify_BILL_SENTBYMAIL=فاتورة الزبون إرسالها عن طريق البريد
Notify_ORDER_SUPPLIER_VALIDATE=أجل التحقق من صحة المورد Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_SENTBYMAIL=النظام مزود ترسل عن طريق البريد Notify_ORDER_SUPPLIER_SENTBYMAIL=النظام مزود ترسل عن طريق البريد
Notify_BILL_SUPPLIER_VALIDATE=فاتورة المورد المصادق Notify_BILL_SUPPLIER_VALIDATE=فاتورة المورد المصادق
Notify_BILL_SUPPLIER_PAYED=دفعت فاتورة المورد Notify_BILL_SUPPLIER_PAYED=دفعت فاتورة المورد
@ -47,7 +48,7 @@ Notify_PROJECT_CREATE=Project creation
Notify_TASK_CREATE=Task created Notify_TASK_CREATE=Task created
Notify_TASK_MODIFY=Task modified Notify_TASK_MODIFY=Task modified
Notify_TASK_DELETE=Task deleted Notify_TASK_DELETE=Task deleted
SeeModuleSetup=See module setup SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=عدد الملفات المرفقة / وثائق NbOfAttachedFiles=عدد الملفات المرفقة / وثائق
TotalSizeOfAttachedFiles=اجمالى حجم الملفات المرفقة / وثائق TotalSizeOfAttachedFiles=اجمالى حجم الملفات المرفقة / وثائق
MaxSize=الحجم الأقصى MaxSize=الحجم الأقصى
@ -170,6 +171,7 @@ EMailTextInvoiceValidated=فاتورة ٪ ق المصادق
EMailTextProposalValidated=وقد تم اقتراح %s التحقق من صحة. EMailTextProposalValidated=وقد تم اقتراح %s التحقق من صحة.
EMailTextOrderValidated=وقد تم التحقق من صحة %s النظام. EMailTextOrderValidated=وقد تم التحقق من صحة %s النظام.
EMailTextOrderApproved=من أجل الموافقة على ق ٪ EMailTextOrderApproved=من أجل الموافقة على ق ٪
EMailTextOrderValidatedBy=The order %s has been recorded by %s.
EMailTextOrderApprovedBy=من أجل ٪ ق ق ٪ وافقت عليها EMailTextOrderApprovedBy=من أجل ٪ ق ق ٪ وافقت عليها
EMailTextOrderRefused=من أجل رفض ق ٪ EMailTextOrderRefused=من أجل رفض ق ٪
EMailTextOrderRefusedBy=من أجل أن ترفض ٪ ق ق ٪ EMailTextOrderRefusedBy=من أجل أن ترفض ٪ ق ق ٪

View File

@ -245,12 +245,25 @@ MinimumRecommendedPrice=Minimum recommended price is : %s
PriceExpressionEditor=Price expression editor PriceExpressionEditor=Price expression editor
PriceExpressionSelected=Selected price expression PriceExpressionSelected=Selected price expression
PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions
PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#options_myextrafieldkey#</b> PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#extrafield_myextrafieldkey#</b> and global variables with <b>#global_mycode#</b>
PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b> PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b> PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b>
PriceExpressionEditorHelp5=Available global values:
PriceMode=Price mode PriceMode=Price mode
PriceNumeric=Number PriceNumeric=Number
DefaultPrice=Default price DefaultPrice=Default price
ComposedProductIncDecStock=Increase/Decrease stock on parent change ComposedProductIncDecStock=Increase/Decrease stock on parent change
ComposedProduct=Sub-product ComposedProduct=Sub-product
MinSupplierPrice=Minimun supplier price MinSupplierPrice=Minimum supplier price
DynamicPriceConfiguration=Dynamic price configuration
GlobalVariables=Global variables
GlobalVariableUpdaters=Global variable updaters
GlobalVariableUpdaterType0=JSON data
GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value,
GlobalVariableUpdaterHelpFormat0=format is {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
GlobalVariableUpdaterType1=WebService data
GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method
GlobalVariableUpdaterHelpFormat1=format is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
UpdateInterval=Update interval (minutes)
LastUpdated=Last updated
CorrectlyUpdated=Correctly updated

View File

@ -72,6 +72,7 @@ ListSupplierInvoicesAssociatedProject=قائمة الموردين المرتبط
ListContractAssociatedProject=قائمة العقود المرتبطة بالمشروع. ListContractAssociatedProject=قائمة العقود المرتبطة بالمشروع.
ListFichinterAssociatedProject=قائمة التدخلات المرتبطة بالمشروع ListFichinterAssociatedProject=قائمة التدخلات المرتبطة بالمشروع
ListExpenseReportsAssociatedProject=List of expense reports associated with the project ListExpenseReportsAssociatedProject=List of expense reports associated with the project
ListDonationsAssociatedProject=List of donations associated with the project
ListActionsAssociatedProject=قائمة الإجراءات المرتبطة بالمشروع ListActionsAssociatedProject=قائمة الإجراءات المرتبطة بالمشروع
ActivityOnProjectThisWeek=نشاط المشروع هذا الاسبوع ActivityOnProjectThisWeek=نشاط المشروع هذا الاسبوع
ActivityOnProjectThisMonth=نشاط المشروع هذا الشهر ActivityOnProjectThisMonth=نشاط المشروع هذا الشهر

View File

@ -2,6 +2,7 @@
RefSending=المرجع. إرسال RefSending=المرجع. إرسال
Sending=إرسال Sending=إرسال
Sendings=الإرسال Sendings=الإرسال
AllSendings=All Shipments
Shipment=إرسال Shipment=إرسال
Shipments=شحنات Shipments=شحنات
ShowSending=Show Sending ShowSending=Show Sending

View File

@ -43,3 +43,4 @@ ListOfSupplierOrders=List of supplier orders
MenuOrdersSupplierToBill=Supplier orders to invoice MenuOrdersSupplierToBill=Supplier orders to invoice
NbDaysToDelivery=Delivery delay in days NbDaysToDelivery=Delivery delay in days
DescNbDaysToDelivery=The biggest delay is display among order product list DescNbDaysToDelivery=The biggest delay is display among order product list
UseDoubleApproval=Use double approval (the second approval will be any user of a defined user group)

View File

@ -389,6 +389,7 @@ ExtrafieldSeparator=Разделител
ExtrafieldCheckBox=Отметка ExtrafieldCheckBox=Отметка
ExtrafieldRadio=Радио бутон ExtrafieldRadio=Радио бутон
ExtrafieldCheckBoxFromList= Checkbox from table ExtrafieldCheckBoxFromList= Checkbox from table
ExtrafieldLink=Link to an object
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
@ -494,6 +495,8 @@ Module500Name=Special expenses (tax, social contributions, dividends)
Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries
Module510Name=Salaries Module510Name=Salaries
Module510Desc=Management of employees salaries and payments Module510Desc=Management of employees salaries and payments
Module520Name=Loan
Module520Desc=Management of loans
Module600Name=Известия Module600Name=Известия
Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty) Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
Module700Name=Дарения Module700Name=Дарения
@ -508,14 +511,14 @@ Module1400Name=Счетоводство
Module1400Desc=Управление на счетоводство (двойни страни) Module1400Desc=Управление на счетоводство (двойни страни)
Module1520Name=Document Generation Module1520Name=Document Generation
Module1520Desc=Mass mail document generation Module1520Desc=Mass mail document generation
Module1780Name=Категории Module1780Name=Tags/Categories
Module1780Desc=Управление на категории (продукти, доставчици и клиенти) Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
Module2000Name=WYSIWYG редактор Module2000Name=WYSIWYG редактор
Module2000Desc=Оставя се да редактирате някакъв текст, чрез използване на усъвършенствана редактор Module2000Desc=Оставя се да редактирате някакъв текст, чрез използване на усъвършенствана редактор
Module2200Name=Dynamic Prices Module2200Name=Dynamic Prices
Module2200Desc=Enable the usage of math expressions for prices Module2200Desc=Enable the usage of math expressions for prices
Module2300Name=Cron Module2300Name=Cron
Module2300Desc=Scheduled task management Module2300Desc=Scheduled job management
Module2400Name=Дневен ред Module2400Name=Дневен ред
Module2400Desc=Събития/задачи и управление на дневен ред Module2400Desc=Събития/задачи и управление на дневен ред
Module2500Name=Електронно Управление на Съдържанието Module2500Name=Електронно Управление на Съдържанието
@ -714,6 +717,11 @@ Permission510=Read Salaries
Permission512=Create/modify salaries Permission512=Create/modify salaries
Permission514=Delete salaries Permission514=Delete salaries
Permission517=Export salaries Permission517=Export salaries
Permission520=Read Loans
Permission522=Create/modify loans
Permission524=Delete loans
Permission525=Access loan calculator
Permission527=Export loans
Permission531=Прочети услуги Permission531=Прочети услуги
Permission532=Създаване / промяна услуги Permission532=Създаване / промяна услуги
Permission534=Изтриване на услуги Permission534=Изтриване на услуги
@ -746,6 +754,7 @@ Permission1185=Одобряване на доставчика поръчки
Permission1186=Поръчка доставчика поръчки Permission1186=Поръчка доставчика поръчки
Permission1187=Потвърдя получаването на доставчика поръчки Permission1187=Потвърдя получаването на доставчика поръчки
Permission1188=Изтриване на доставчика поръчки Permission1188=Изтриване на доставчика поръчки
Permission1190=Approve (second approval) supplier orders
Permission1201=Резултат от износ Permission1201=Резултат от износ
Permission1202=Създаване / Промяна на износ Permission1202=Създаване / Промяна на износ
Permission1231=Доставчика фактури Permission1231=Доставчика фактури
@ -758,10 +767,10 @@ Permission1237=EXPORT доставчик поръчки и техните дет
Permission1251=Пусни масов внос на външни данни в базата данни (данни товара) Permission1251=Пусни масов внос на външни данни в базата данни (данни товара)
Permission1321=Износ на клиентите фактури, атрибути и плащания Permission1321=Износ на клиентите фактури, атрибути и плащания
Permission1421=Износ на клиентски поръчки и атрибути Permission1421=Износ на клиентски поръчки и атрибути
Permission23001 = Read Scheduled task Permission23001=Read Scheduled job
Permission23002 = Create/update Scheduled task Permission23002=Create/update Scheduled job
Permission23003 = Delete Scheduled task Permission23003=Delete Scheduled job
Permission23004 = Execute Scheduled task Permission23004=Execute Scheduled job
Permission2401=Прочетете действия (събития или задачи), свързани с неговата сметка Permission2401=Прочетете действия (събития или задачи), свързани с неговата сметка
Permission2402=Създаване/промяна действия (събития или задачи), свързани с неговата сметка Permission2402=Създаване/промяна действия (събития или задачи), свързани с неговата сметка
Permission2403=Изтрий действия (събития или задачи), свързани с неговата сметка Permission2403=Изтрий действия (събития или задачи), свързани с неговата сметка
@ -1107,7 +1116,7 @@ ModuleCompanyCodeAquarium=Връщане счетоводна код, постр
ModuleCompanyCodePanicum=Връща празна код счетоводство. ModuleCompanyCodePanicum=Връща празна код счетоводство.
ModuleCompanyCodeDigitaria=Счетоводството код зависи от код на трето лице. Код се състои от буквата &quot;C&quot; на първа позиция, следван от първите 5 символа на код на трета страна. ModuleCompanyCodeDigitaria=Счетоводството код зависи от код на трето лице. Код се състои от буквата &quot;C&quot; на първа позиция, следван от първите 5 символа на код на трета страна.
UseNotifications=Използвайте уведомления UseNotifications=Използвайте уведомления
NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one third party at time.<br>* or by setting a global target email address on module setup page. NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one contact at time.<br>* or by setting global target email addresses in module setup page.
ModelModules=Документи шаблони ModelModules=Документи шаблони
DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...) DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...)
WatermarkOnDraft=Воден знак върху проект на документ WatermarkOnDraft=Воден знак върху проект на документ
@ -1557,6 +1566,7 @@ SuppliersSetup=Настройка доставчик модул
SuppliersCommandModel=Пълна шаблон на доставчика за (logo. ..) SuppliersCommandModel=Пълна шаблон на доставчика за (logo. ..)
SuppliersInvoiceModel=Пълна образец на фактура на доставчика (logo. ..) SuppliersInvoiceModel=Пълна образец на фактура на доставчика (logo. ..)
SuppliersInvoiceNumberingModel=Supplier invoices numbering models SuppliersInvoiceNumberingModel=Supplier invoices numbering models
IfSetToYesDontForgetPermission=If set to yes, don't forget to provide permissions to groups or users allowed for the second approval
##### GeoIPMaxmind ##### ##### GeoIPMaxmind #####
GeoIPMaxmindSetup=GeoIP MaxMind модул за настройка GeoIPMaxmindSetup=GeoIP MaxMind модул за настройка
PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.<br>Examples:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.<br>Examples:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat
@ -1601,3 +1611,8 @@ ExpenseReportsSetup=Setup of module Expense Reports
TemplatePDFExpenseReports=Document templates to generate expense report document TemplatePDFExpenseReports=Document templates to generate expense report document
NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only. NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only.
NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only. NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for EMail notifications by enabling and configuring the module "Notification".
ListOfNotificationsPerContact=List of notifications per contact*
ListOfFixedNotifications=List of fixed notifications
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
Threshold=Threshold

View File

@ -48,7 +48,10 @@ InvoiceValidatedInDolibarr=Фактура %s валидирани
InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
InvoiceBackToDraftInDolibarr=Фактура %s се върнете в състояние на чернова InvoiceBackToDraftInDolibarr=Фактура %s се върнете в състояние на чернова
InvoiceDeleteDolibarr=Invoice %s deleted InvoiceDeleteDolibarr=Invoice %s deleted
OrderValidatedInDolibarr= Поръчка %s валидирани OrderValidatedInDolibarr=Поръчка %s валидирани
OrderDeliveredInDolibarr=Order %s classified delivered
OrderCanceledInDolibarr=Поръчка %s отменен
OrderBilledInDolibarr=Order %s classified billed
OrderApprovedInDolibarr=Поръчка %s одобрен OrderApprovedInDolibarr=Поръчка %s одобрен
OrderRefusedInDolibarr=Order %s refused OrderRefusedInDolibarr=Order %s refused
OrderBackToDraftInDolibarr=Поръчка %s се върне в състояние на чернова OrderBackToDraftInDolibarr=Поръчка %s се върне в състояние на чернова
@ -91,3 +94,5 @@ WorkingTimeRange=Working time range
WorkingDaysRange=Working days range WorkingDaysRange=Working days range
AddEvent=Create event AddEvent=Create event
MyAvailability=My availability MyAvailability=My availability
ActionType=Event type
DateActionBegin=Start event date

View File

@ -294,6 +294,8 @@ TotalOfTwoDiscountMustEqualsOriginal=Общо на две нови отстъп
ConfirmRemoveDiscount=Сигурен ли сте, че искате да премахнете тази отстъпка? ConfirmRemoveDiscount=Сигурен ли сте, че искате да премахнете тази отстъпка?
RelatedBill=Свързани фактура RelatedBill=Свързани фактура
RelatedBills=Свързани фактури RelatedBills=Свързани фактури
RelatedCustomerInvoices=Related customer invoices
RelatedSupplierInvoices=Related supplier invoices
LatestRelatedBill=Latest related invoice LatestRelatedBill=Latest related invoice
WarningBillExist=Warning, one or more invoice already exist WarningBillExist=Warning, one or more invoice already exist

View File

@ -1,64 +1,62 @@
# Dolibarr language file - Source file is en_US - categories # Dolibarr language file - Source file is en_US - categories
Category=Категория Rubrique=Tag/Category
Categories=Категории Rubriques=Tags/Categories
Rubrique=Категория categories=tags/categories
Rubriques=Категории TheCategorie=The tag/category
categories=категории NoCategoryYet=No tag/category of this type created
TheCategorie=Категорията
NoCategoryYet=Няма създадена категория от този тип
In=В In=В
AddIn=Добавяне в AddIn=Добавяне в
modify=промяна modify=промяна
Classify=Добавяне Classify=Добавяне
CategoriesArea=Категории CategoriesArea=Tags/Categories area
ProductsCategoriesArea=Категории Продукти / Услуги ProductsCategoriesArea=Products/Services tags/categories area
SuppliersCategoriesArea=Категории доставчици SuppliersCategoriesArea=Suppliers tags/categories area
CustomersCategoriesArea=Категории клиенти CustomersCategoriesArea=Customers tags/categories area
ThirdPartyCategoriesArea=Категории трети страни ThirdPartyCategoriesArea=Third parties tags/categories area
MembersCategoriesArea=Категории членове MembersCategoriesArea=Members tags/categories area
ContactsCategoriesArea=Категории контакти ContactsCategoriesArea=Contacts tags/categories area
MainCats=Основни категории MainCats=Main tags/categories
SubCats=Подкатегории SubCats=Подкатегории
CatStatistics=Статистика CatStatistics=Статистика
CatList=Списък на категории CatList=List of tags/categories
AllCats=Всички категории AllCats=All tags/categories
ViewCat=Преглед на категория ViewCat=View tag/category
NewCat=Добавяне на категория NewCat=Add tag/category
NewCategory=Нова категория NewCategory=New tag/category
ModifCat=Промяна на категория ModifCat=Modify tag/category
CatCreated=Категорията е създадена CatCreated=Tag/category created
CreateCat=Създаване на категория CreateCat=Create tag/category
CreateThisCat=Създаване CreateThisCat=Create this tag/category
ValidateFields=Проверка на полетата ValidateFields=Проверка на полетата
NoSubCat=Няма подкатегория. NoSubCat=Няма подкатегория.
SubCatOf=Подкатегория SubCatOf=Подкатегория
FoundCats=Открити са категории FoundCats=Found tags/categories
FoundCatsForName=Открити са категории за името: FoundCatsForName=Tags/categories found for the name :
FoundSubCatsIn=Открити са подкатегории в категорията FoundSubCatsIn=Subcategories found in the tag/category
ErrSameCatSelected=Избрали сте една и съща категория няколко пъти ErrSameCatSelected=You selected the same tag/category several times
ErrForgotCat=Забравили сте да изберете категория ErrForgotCat=You forgot to choose the tag/category
ErrForgotField=Забравили сте да информира полета ErrForgotField=Забравили сте да информира полета
ErrCatAlreadyExists=Това име вече се използва ErrCatAlreadyExists=Това име вече се използва
AddProductToCat=Добавете този продукт към категория? AddProductToCat=Add this product to a tag/category?
ImpossibleAddCat=Невъзможно е да добавите категория ImpossibleAddCat=Impossible to add the tag/category
ImpossibleAssociateCategory=Невъзможно е да се асоциира категорията към ImpossibleAssociateCategory=Impossible to associate the tag/category to
WasAddedSuccessfully=<b>%s</b> е добавен успешно. WasAddedSuccessfully=<b>%s</b> е добавен успешно.
ObjectAlreadyLinkedToCategory=Елемента вече е свързан с тази категория. ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
CategorySuccessfullyCreated=Категорията %s е добавена успешно. CategorySuccessfullyCreated=This tag/category %s has been added with success.
ProductIsInCategories=Продукта/услугата е в следните категории ProductIsInCategories=Product/service owns to following tags/categories
SupplierIsInCategories=Третото лице е в следните категории доставчици SupplierIsInCategories=Third party owns to following suppliers tags/categories
CompanyIsInCustomersCategories=Това трето лице е в следните категории клиенти/prospects CompanyIsInCustomersCategories=This third party owns to following customers/prospects tags/categories
CompanyIsInSuppliersCategories=Това трето лице е в следните категории доставчици CompanyIsInSuppliersCategories=This third party owns to following suppliers tags/categories
MemberIsInCategories=Този член е в следните категории членове MemberIsInCategories=This member owns to following members tags/categories
ContactIsInCategories=Този контакт принадлежи на следните категории контакти ContactIsInCategories=This contact owns to following contacts tags/categories
ProductHasNoCategory=Този продукт/услуга не е в никакви категории ProductHasNoCategory=This product/service is not in any tags/categories
SupplierHasNoCategory=Този доставчик не е в никакви категории SupplierHasNoCategory=This supplier is not in any tags/categories
CompanyHasNoCategory=Тази фирма не е в никакви категории CompanyHasNoCategory=This company is not in any tags/categories
MemberHasNoCategory=Този член не е в никакви категории MemberHasNoCategory=This member is not in any tags/categories
ContactHasNoCategory=Този контакт не е в категория ContactHasNoCategory=This contact is not in any tags/categories
ClassifyInCategory=Добавяне в категория ClassifyInCategory=Classify in tag/category
NoneCategory=Няма NoneCategory=Няма
NotCategorized=Без категория NotCategorized=Without tag/category
CategoryExistsAtSameLevel=Тази категория вече съществува с този код CategoryExistsAtSameLevel=Тази категория вече съществува с този код
ReturnInProduct=Обратно към картата на продукта/услугата ReturnInProduct=Обратно към картата на продукта/услугата
ReturnInSupplier=Обратно към картата на доставчика ReturnInSupplier=Обратно към картата на доставчика
@ -66,22 +64,22 @@ ReturnInCompany=Обратно към картата на клиента/prospe
ContentsVisibleByAll=Съдържанието ще се вижда от всички ContentsVisibleByAll=Съдържанието ще се вижда от всички
ContentsVisibleByAllShort=Съдържанието е видимо от всички ContentsVisibleByAllShort=Съдържанието е видимо от всички
ContentsNotVisibleByAllShort=Съдържанието не е видимо от всички ContentsNotVisibleByAllShort=Съдържанието не е видимо от всички
CategoriesTree=Категории дърво CategoriesTree=Tags/categories tree
DeleteCategory=Изтриване на категория DeleteCategory=Delete tag/category
ConfirmDeleteCategory=Сигурни ли сте, че желаете да изтриете тази категория? ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
RemoveFromCategory=Премахване на връзката с категория RemoveFromCategory=Remove link with tag/categorie
RemoveFromCategoryConfirm=Сигурни ли сте, че желаете да премахнете връзката между операцията и категорията? RemoveFromCategoryConfirm=Are you sure you want to remove link between the transaction and the tag/category ?
NoCategoriesDefined=Не е определена категория NoCategoriesDefined=No tag/category defined
SuppliersCategoryShort=Категория доставчици SuppliersCategoryShort=Suppliers tags/category
CustomersCategoryShort=Категория клиенти CustomersCategoryShort=Customers tags/category
ProductsCategoryShort=Категория продукти ProductsCategoryShort=Products tags/category
MembersCategoryShort=Категория членове MembersCategoryShort=Members tags/category
SuppliersCategoriesShort=Категории доставчици SuppliersCategoriesShort=Suppliers tags/categories
CustomersCategoriesShort=Категории клиенти CustomersCategoriesShort=Customers tags/categories
CustomersProspectsCategoriesShort=Custo / Prosp. категории CustomersProspectsCategoriesShort=Custo / Prosp. категории
ProductsCategoriesShort=Категории продукти ProductsCategoriesShort=Products tags/categories
MembersCategoriesShort=Категории членове MembersCategoriesShort=Members tags/categories
ContactCategoriesShort=Категории контакти ContactCategoriesShort=Contacts tags/categories
ThisCategoryHasNoProduct=Тази категория не съдържа никакъв продукт. ThisCategoryHasNoProduct=Тази категория не съдържа никакъв продукт.
ThisCategoryHasNoSupplier=Тази категория не съдържа никакъв доставчик. ThisCategoryHasNoSupplier=Тази категория не съдържа никакъв доставчик.
ThisCategoryHasNoCustomer=Тази категория не съдържа никакъв клиент. ThisCategoryHasNoCustomer=Тази категория не съдържа никакъв клиент.
@ -90,23 +88,23 @@ ThisCategoryHasNoContact=Тази категория не съдържа ник
AssignedToCustomer=Възложено на клиент AssignedToCustomer=Възложено на клиент
AssignedToTheCustomer=Възложено на клиента AssignedToTheCustomer=Възложено на клиента
InternalCategory=Вътрешна категория InternalCategory=Вътрешна категория
CategoryContents=Съдържание на категория CategoryContents=Tag/category contents
CategId=ID на категория CategId=Tag/category id
CatSupList=Списък на доставчика категории CatSupList=List of supplier tags/categories
CatCusList=Списък на потребителите / перспективата категории CatCusList=List of customer/prospect tags/categories
CatProdList=Списък на продуктите категории CatProdList=List of products tags/categories
CatMemberList=Списък на членовете категории CatMemberList=List of members tags/categories
CatContactList=Лист на контактни категории и контакти CatContactList=List of contact tags/categories and contact
CatSupLinks=Връзки между доставчици и категории CatSupLinks=Links between suppliers and tags/categories
CatCusLinks=Връзки между потребител/перспектива и категории CatCusLinks=Links between customers/prospects and tags/categories
CatProdLinks=Връзки между продукти/услуги и категории CatProdLinks=Links between products/services and tags/categories
CatMemberLinks=Връзки между членове и категории CatMemberLinks=Links between members and tags/categories
DeleteFromCat=Премахване от категорията DeleteFromCat=Remove from tags/category
DeletePicture=Изтрий снимка DeletePicture=Изтрий снимка
ConfirmDeletePicture=Потвърди изтриване на снимка? ConfirmDeletePicture=Потвърди изтриване на снимка?
ExtraFieldsCategories=Допълнителни атрибути ExtraFieldsCategories=Допълнителни атрибути
CategoriesSetup=Категории настройка CategoriesSetup=Tags/categories setup
CategorieRecursiv=Автоматично свързване с родителска категория CategorieRecursiv=Link with parent tag/category automatically
CategorieRecursivHelp=Ако е активирано, продукта ще бъде свързан също и с родителската категория при добавяне в под-категория CategorieRecursivHelp=Ако е активирано, продукта ще бъде свързан също и с родителската категория при добавяне в под-категория
AddProductServiceIntoCategory=Add the following product/service AddProductServiceIntoCategory=Add the following product/service
ShowCategory=Show category ShowCategory=Show tag/category

View File

@ -26,15 +26,15 @@ CronLastOutput=Last run output
CronLastResult=Last result code CronLastResult=Last result code
CronListOfCronJobs=List of scheduled jobs CronListOfCronJobs=List of scheduled jobs
CronCommand=Command CronCommand=Command
CronList=Jobs list CronList=Scheduled job
CronDelete= Delete cron jobs CronDelete=Delete scheduled jobs
CronConfirmDelete= Are you sure you want to delete this cron job ? CronConfirmDelete=Are you sure you want to delete this scheduled jobs ?
CronExecute=Launch job CronExecute=Launch scheduled jobs
CronConfirmExecute= Are you sure to execute this job now CronConfirmExecute=Are you sure to execute this scheduled jobs now ?
CronInfo= Jobs allow to execute task that have been planned CronInfo=Scheduled job module allow to execute job that have been planned
CronWaitingJobs=Wainting jobs CronWaitingJobs=Waiting jobs
CronTask=Job CronTask=Job
CronNone= Няма CronNone=Няма
CronDtStart=Начална дата CronDtStart=Начална дата
CronDtEnd=Крайна дата CronDtEnd=Крайна дата
CronDtNextLaunch=Next execution CronDtNextLaunch=Next execution
@ -75,6 +75,7 @@ CronObjectHelp=The object name to load. <BR> For exemple to fetch method of Doli
CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is is <i>fecth</i> CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is is <i>fecth</i>
CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i> CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i>
CronCommandHelp=Системния команден ред за стартиране. CronCommandHelp=Системния команден ред за стартиране.
CronCreateJob=Create new Scheduled Job
# Info # Info
CronInfoPage=Информация CronInfoPage=Информация
# Common # Common

View File

@ -6,6 +6,8 @@ Donor=Дарител
Donors=Дарители Donors=Дарители
AddDonation=Create a donation AddDonation=Create a donation
NewDonation=Ново дарение NewDonation=Ново дарение
DeleteADonation=Delete a donation
ConfirmDeleteADonation=Are you sure you want to delete this donation ?
ShowDonation=Показване на дарение ShowDonation=Показване на дарение
DonationPromise=Обещано дарение DonationPromise=Обещано дарение
PromisesNotValid=Няма потвърдени дарения PromisesNotValid=Няма потвърдени дарения
@ -21,6 +23,8 @@ DonationStatusPaid=Получено дарение
DonationStatusPromiseNotValidatedShort=Проект DonationStatusPromiseNotValidatedShort=Проект
DonationStatusPromiseValidatedShort=Потвърдено DonationStatusPromiseValidatedShort=Потвърдено
DonationStatusPaidShort=Получено DonationStatusPaidShort=Получено
DonationTitle=Donation receipt
DonationDatePayment=Payment date
ValidPromess=Потвърждаване на дарението ValidPromess=Потвърждаване на дарението
DonationReceipt=Разписка за дарение DonationReceipt=Разписка за дарение
BuildDonationReceipt=Създаване на разписка BuildDonationReceipt=Създаване на разписка
@ -36,3 +40,4 @@ FrenchOptions=Options for France
DONATION_ART200=Show article 200 from CGI if you are concerned DONATION_ART200=Show article 200 from CGI if you are concerned
DONATION_ART238=Show article 238 from CGI if you are concerned DONATION_ART238=Show article 238 from CGI if you are concerned
DONATION_ART885=Show article 885 from CGI if you are concerned DONATION_ART885=Show article 885 from CGI if you are concerned
DonationPayment=Donation payment

View File

@ -161,6 +161,12 @@ ErrorPriceExpressionUnknown=Unknown error '%s'
ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs
ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information
ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action
ErrorGlobalVariableUpdater0=HTTP request failed with error '%s'
ErrorGlobalVariableUpdater1=Invalid JSON format '%s'
ErrorGlobalVariableUpdater2=Missing parameter '%s'
ErrorGlobalVariableUpdater3=The requested data was not found in result
ErrorGlobalVariableUpdater4=SOAP client failed with error '%s'
ErrorGlobalVariableUpdater5=No global variable selected
# Warnings # Warnings
WarningMandatorySetupNotComplete=Задължителни параметри на настройката все още не са определени WarningMandatorySetupNotComplete=Задължителни параметри на настройката все още не са определени

View File

@ -139,3 +139,5 @@ ListOfNotificationsDone=Списък на всички имейли, изпра
MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing. MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature. MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s. MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
NbOfTargetedContacts=Current number of targeted contact emails

View File

@ -352,6 +352,7 @@ Status=Състояние
Favorite=Favorite Favorite=Favorite
ShortInfo=Инфо. ShortInfo=Инфо.
Ref=Реф. Ref=Реф.
ExternalRef=Ref. extern
RefSupplier=Реф. снабдител RefSupplier=Реф. снабдител
RefPayment=Реф. плащане RefPayment=Реф. плащане
CommercialProposalsShort=Търговски предложения CommercialProposalsShort=Търговски предложения
@ -394,8 +395,8 @@ Available=На разположение
NotYetAvailable=Все още няма данни NotYetAvailable=Все още няма данни
NotAvailable=Не е налично NotAvailable=Не е налично
Popularity=Популярност Popularity=Популярност
Categories=Категории Categories=Tags/categories
Category=Категория Category=Tag/category
By=От By=От
From=От From=От
to=за to=за
@ -694,6 +695,7 @@ AddBox=Add box
SelectElementAndClickRefresh=Изберете елемент и натиснете Презареждане SelectElementAndClickRefresh=Изберете елемент и натиснете Презареждане
PrintFile=Print File %s PrintFile=Print File %s
ShowTransaction=Show transaction ShowTransaction=Show transaction
GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
# Week day # Week day
Monday=Понеделник Monday=Понеделник
Tuesday=Вторник Tuesday=Вторник

View File

@ -64,7 +64,8 @@ ShipProduct=Кораб продукт
Discount=Отстъпка Discount=Отстъпка
CreateOrder=Създаване на поръчка CreateOrder=Създаване на поръчка
RefuseOrder=Спецконтейнери за RefuseOrder=Спецконтейнери за
ApproveOrder=Приемам за ApproveOrder=Approve order
Approve2Order=Approve order (second level)
ValidateOrder=Валидиране за ValidateOrder=Валидиране за
UnvalidateOrder=Unvalidate за UnvalidateOrder=Unvalidate за
DeleteOrder=Изтрий заявка DeleteOrder=Изтрий заявка
@ -102,6 +103,8 @@ ClassifyBilled=Класифицирайте таксувани
ComptaCard=Счетоводството карта ComptaCard=Счетоводството карта
DraftOrders=Проект за поръчки DraftOrders=Проект за поръчки
RelatedOrders=Подобни поръчки RelatedOrders=Подобни поръчки
RelatedCustomerOrders=Related customer orders
RelatedSupplierOrders=Related supplier orders
OnProcessOrders=В процес поръчки OnProcessOrders=В процес поръчки
RefOrder=Реф. ред RefOrder=Реф. ред
RefCustomerOrder=Реф. поръчка на клиента RefCustomerOrder=Реф. поръчка на клиента
@ -118,6 +121,7 @@ PaymentOrderRef=Плащане на поръчката %s
CloneOrder=Clone за CloneOrder=Clone за
ConfirmCloneOrder=Сигурен ли сте, че искате да клонирате за този <b>%s?</b> ConfirmCloneOrder=Сигурен ли сте, че искате да клонирате за този <b>%s?</b>
DispatchSupplierOrder=Получаване %s доставчика ред DispatchSupplierOrder=Получаване %s доставчика ред
FirstApprovalAlreadyDone=First approval already done
##### Types de contacts ##### ##### Types de contacts #####
TypeContact_commande_internal_SALESREPFOLL=Представител проследяване поръчка на клиента TypeContact_commande_internal_SALESREPFOLL=Представител проследяване поръчка на клиента
TypeContact_commande_internal_SHIPPING=Представител проследяване доставка TypeContact_commande_internal_SHIPPING=Представител проследяване доставка

View File

@ -12,6 +12,7 @@ Notify_FICHINTER_VALIDATE=Интервенция валидирани
Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail
Notify_BILL_VALIDATE=Клиентът фактура се заверява Notify_BILL_VALIDATE=Клиентът фактура се заверява
Notify_BILL_UNVALIDATE=Customer invoice unvalidated Notify_BILL_UNVALIDATE=Customer invoice unvalidated
Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_APPROVE=Доставчик утвърдения Notify_ORDER_SUPPLIER_APPROVE=Доставчик утвърдения
Notify_ORDER_SUPPLIER_REFUSE=Доставчик за отказа Notify_ORDER_SUPPLIER_REFUSE=Доставчик за отказа
Notify_ORDER_VALIDATE=Клиента заявка се заверява Notify_ORDER_VALIDATE=Клиента заявка се заверява
@ -28,7 +29,7 @@ Notify_PROPAL_SENTBYMAIL=Търговско предложение, изпрат
Notify_BILL_PAYED=Фактурата на клиента е платена Notify_BILL_PAYED=Фактурата на клиента е платена
Notify_BILL_CANCEL=Фактурата на клиента е отменена Notify_BILL_CANCEL=Фактурата на клиента е отменена
Notify_BILL_SENTBYMAIL=Фактурата на клиента е изпратена по пощата Notify_BILL_SENTBYMAIL=Фактурата на клиента е изпратена по пощата
Notify_ORDER_SUPPLIER_VALIDATE=Доставчик влязлата в сила заповед Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_SENTBYMAIL=Доставчик реда, изпратени по пощата Notify_ORDER_SUPPLIER_SENTBYMAIL=Доставчик реда, изпратени по пощата
Notify_BILL_SUPPLIER_VALIDATE=Доставчик фактура валидирани Notify_BILL_SUPPLIER_VALIDATE=Доставчик фактура валидирани
Notify_BILL_SUPPLIER_PAYED=Доставчик фактура плаща Notify_BILL_SUPPLIER_PAYED=Доставчик фактура плаща
@ -47,7 +48,7 @@ Notify_PROJECT_CREATE=Project creation
Notify_TASK_CREATE=Task created Notify_TASK_CREATE=Task created
Notify_TASK_MODIFY=Task modified Notify_TASK_MODIFY=Task modified
Notify_TASK_DELETE=Task deleted Notify_TASK_DELETE=Task deleted
SeeModuleSetup=See module setup SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Брой на прикачените файлове/документи NbOfAttachedFiles=Брой на прикачените файлове/документи
TotalSizeOfAttachedFiles=Общ размер на прикачените файлове/документи TotalSizeOfAttachedFiles=Общ размер на прикачените файлове/документи
MaxSize=Максимален размер MaxSize=Максимален размер
@ -170,6 +171,7 @@ EMailTextInvoiceValidated=Фактура %s е била потвърдена.
EMailTextProposalValidated=Предложението %s е била потвърдена. EMailTextProposalValidated=Предложението %s е била потвърдена.
EMailTextOrderValidated=За %s е била потвърдена. EMailTextOrderValidated=За %s е била потвърдена.
EMailTextOrderApproved=За %s е одобрен. EMailTextOrderApproved=За %s е одобрен.
EMailTextOrderValidatedBy=The order %s has been recorded by %s.
EMailTextOrderApprovedBy=Е бил одобрен за %s от %s. EMailTextOrderApprovedBy=Е бил одобрен за %s от %s.
EMailTextOrderRefused=За %s е била отказана. EMailTextOrderRefused=За %s е била отказана.
EMailTextOrderRefusedBy=За %s е отказано от %s. EMailTextOrderRefusedBy=За %s е отказано от %s.

View File

@ -245,12 +245,25 @@ MinimumRecommendedPrice=Minimum recommended price is : %s
PriceExpressionEditor=Price expression editor PriceExpressionEditor=Price expression editor
PriceExpressionSelected=Selected price expression PriceExpressionSelected=Selected price expression
PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions
PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#options_myextrafieldkey#</b> PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#extrafield_myextrafieldkey#</b> and global variables with <b>#global_mycode#</b>
PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b> PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b> PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b>
PriceExpressionEditorHelp5=Available global values:
PriceMode=Price mode PriceMode=Price mode
PriceNumeric=Number PriceNumeric=Number
DefaultPrice=Default price DefaultPrice=Default price
ComposedProductIncDecStock=Increase/Decrease stock on parent change ComposedProductIncDecStock=Increase/Decrease stock on parent change
ComposedProduct=Sub-product ComposedProduct=Sub-product
MinSupplierPrice=Minimun supplier price MinSupplierPrice=Minimum supplier price
DynamicPriceConfiguration=Dynamic price configuration
GlobalVariables=Global variables
GlobalVariableUpdaters=Global variable updaters
GlobalVariableUpdaterType0=JSON data
GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value,
GlobalVariableUpdaterHelpFormat0=format is {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
GlobalVariableUpdaterType1=WebService data
GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method
GlobalVariableUpdaterHelpFormat1=format is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
UpdateInterval=Update interval (minutes)
LastUpdated=Last updated
CorrectlyUpdated=Correctly updated

View File

@ -72,6 +72,7 @@ ListSupplierInvoicesAssociatedProject=Списък на фактурите на
ListContractAssociatedProject=Списък на договори, свързани с проекта ListContractAssociatedProject=Списък на договори, свързани с проекта
ListFichinterAssociatedProject=Списък на интервенциите, свързани с проекта ListFichinterAssociatedProject=Списък на интервенциите, свързани с проекта
ListExpenseReportsAssociatedProject=List of expense reports associated with the project ListExpenseReportsAssociatedProject=List of expense reports associated with the project
ListDonationsAssociatedProject=List of donations associated with the project
ListActionsAssociatedProject=Списък на събития, свързани с проекта ListActionsAssociatedProject=Списък на събития, свързани с проекта
ActivityOnProjectThisWeek=Дейности в проекта тази седмица ActivityOnProjectThisWeek=Дейности в проекта тази седмица
ActivityOnProjectThisMonth=Дейност по проект, този месец ActivityOnProjectThisMonth=Дейност по проект, този месец

View File

@ -2,6 +2,7 @@
RefSending=Реф. пратка RefSending=Реф. пратка
Sending=Пратка Sending=Пратка
Sendings=Превозите Sendings=Превозите
AllSendings=All Shipments
Shipment=Пратка Shipment=Пратка
Shipments=Превозите Shipments=Превозите
ShowSending=Show Sending ShowSending=Show Sending

View File

@ -43,3 +43,4 @@ ListOfSupplierOrders=Списък на нарежданията за доста
MenuOrdersSupplierToBill=Поръчки на доставчика за фактуриране MenuOrdersSupplierToBill=Поръчки на доставчика за фактуриране
NbDaysToDelivery=Delivery delay in days NbDaysToDelivery=Delivery delay in days
DescNbDaysToDelivery=The biggest delay is display among order product list DescNbDaysToDelivery=The biggest delay is display among order product list
UseDoubleApproval=Use double approval (the second approval will be any user of a defined user group)

View File

@ -389,6 +389,7 @@ ExtrafieldSeparator=Separator
ExtrafieldCheckBox=Checkbox ExtrafieldCheckBox=Checkbox
ExtrafieldRadio=Radio button ExtrafieldRadio=Radio button
ExtrafieldCheckBoxFromList= Checkbox from table ExtrafieldCheckBoxFromList= Checkbox from table
ExtrafieldLink=Link to an object
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
@ -494,6 +495,8 @@ Module500Name=Special expenses (tax, social contributions, dividends)
Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries
Module510Name=Salaries Module510Name=Salaries
Module510Desc=Management of employees salaries and payments Module510Desc=Management of employees salaries and payments
Module520Name=Loan
Module520Desc=Management of loans
Module600Name=Notifications Module600Name=Notifications
Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty) Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
Module700Name=Donations Module700Name=Donations
@ -508,14 +511,14 @@ Module1400Name=Accounting
Module1400Desc=Accounting management (double parties) Module1400Desc=Accounting management (double parties)
Module1520Name=Document Generation Module1520Name=Document Generation
Module1520Desc=Mass mail document generation Module1520Desc=Mass mail document generation
Module1780Name=Categories Module1780Name=Tags/Categories
Module1780Desc=Category management (products, suppliers and customers) Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
Module2000Name=WYSIWYG editor Module2000Name=WYSIWYG editor
Module2000Desc=Allow to edit some text area using an advanced editor Module2000Desc=Allow to edit some text area using an advanced editor
Module2200Name=Dynamic Prices Module2200Name=Dynamic Prices
Module2200Desc=Enable the usage of math expressions for prices Module2200Desc=Enable the usage of math expressions for prices
Module2300Name=Cron Module2300Name=Cron
Module2300Desc=Scheduled task management Module2300Desc=Scheduled job management
Module2400Name=Agenda Module2400Name=Agenda
Module2400Desc=Events/tasks and agenda management Module2400Desc=Events/tasks and agenda management
Module2500Name=Electronic Content Management Module2500Name=Electronic Content Management
@ -714,6 +717,11 @@ Permission510=Read Salaries
Permission512=Create/modify salaries Permission512=Create/modify salaries
Permission514=Delete salaries Permission514=Delete salaries
Permission517=Export salaries Permission517=Export salaries
Permission520=Read Loans
Permission522=Create/modify loans
Permission524=Delete loans
Permission525=Access loan calculator
Permission527=Export loans
Permission531=Read services Permission531=Read services
Permission532=Create/modify services Permission532=Create/modify services
Permission534=Delete services Permission534=Delete services
@ -746,6 +754,7 @@ Permission1185=Approve supplier orders
Permission1186=Order supplier orders Permission1186=Order supplier orders
Permission1187=Acknowledge receipt of supplier orders Permission1187=Acknowledge receipt of supplier orders
Permission1188=Delete supplier orders Permission1188=Delete supplier orders
Permission1190=Approve (second approval) supplier orders
Permission1201=Get result of an export Permission1201=Get result of an export
Permission1202=Create/Modify an export Permission1202=Create/Modify an export
Permission1231=Read supplier invoices Permission1231=Read supplier invoices
@ -758,10 +767,10 @@ Permission1237=Export supplier orders and their details
Permission1251=Run mass imports of external data into database (data load) Permission1251=Run mass imports of external data into database (data load)
Permission1321=Export customer invoices, attributes and payments Permission1321=Export customer invoices, attributes and payments
Permission1421=Export customer orders and attributes Permission1421=Export customer orders and attributes
Permission23001 = Read Scheduled task Permission23001=Read Scheduled job
Permission23002 = Create/update Scheduled task Permission23002=Create/update Scheduled job
Permission23003 = Delete Scheduled task Permission23003=Delete Scheduled job
Permission23004 = Execute Scheduled task Permission23004=Execute Scheduled job
Permission2401=Read actions (events or tasks) linked to his account Permission2401=Read actions (events or tasks) linked to his account
Permission2402=Create/modify actions (events or tasks) linked to his account Permission2402=Create/modify actions (events or tasks) linked to his account
Permission2403=Delete actions (events or tasks) linked to his account Permission2403=Delete actions (events or tasks) linked to his account
@ -1107,7 +1116,7 @@ ModuleCompanyCodeAquarium=Return an accountancy code built by:<br>%s followed by
ModuleCompanyCodePanicum=Return an empty accountancy code. ModuleCompanyCodePanicum=Return an empty accountancy code.
ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. The code is composed of the character "C" in the first position followed by the first 5 characters of the third party code. ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. The code is composed of the character "C" in the first position followed by the first 5 characters of the third party code.
UseNotifications=Use notifications UseNotifications=Use notifications
NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one third party at time.<br>* or by setting a global target email address on module setup page. NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one contact at time.<br>* or by setting global target email addresses in module setup page.
ModelModules=Documents templates ModelModules=Documents templates
DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...) DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...)
WatermarkOnDraft=Watermark on draft document WatermarkOnDraft=Watermark on draft document
@ -1557,6 +1566,7 @@ SuppliersSetup=Supplier module setup
SuppliersCommandModel=Complete template of supplier order (logo...) SuppliersCommandModel=Complete template of supplier order (logo...)
SuppliersInvoiceModel=Complete template of supplier invoice (logo...) SuppliersInvoiceModel=Complete template of supplier invoice (logo...)
SuppliersInvoiceNumberingModel=Supplier invoices numbering models SuppliersInvoiceNumberingModel=Supplier invoices numbering models
IfSetToYesDontForgetPermission=If set to yes, don't forget to provide permissions to groups or users allowed for the second approval
##### GeoIPMaxmind ##### ##### GeoIPMaxmind #####
GeoIPMaxmindSetup=GeoIP Maxmind module setup GeoIPMaxmindSetup=GeoIP Maxmind module setup
PathToGeoIPMaxmindCountryDataFile=Putanja do datoteke koja sadrži Maxmind ip do prevoda za zemlju. <br> Primjeri: <br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat PathToGeoIPMaxmindCountryDataFile=Putanja do datoteke koja sadrži Maxmind ip do prevoda za zemlju. <br> Primjeri: <br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat
@ -1601,3 +1611,8 @@ ExpenseReportsSetup=Setup of module Expense Reports
TemplatePDFExpenseReports=Document templates to generate expense report document TemplatePDFExpenseReports=Document templates to generate expense report document
NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only. NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only.
NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only. NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for EMail notifications by enabling and configuring the module "Notification".
ListOfNotificationsPerContact=List of notifications per contact*
ListOfFixedNotifications=List of fixed notifications
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
Threshold=Threshold

View File

@ -48,7 +48,10 @@ InvoiceValidatedInDolibarr=Faktura %s potvrđena
InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
InvoiceBackToDraftInDolibarr=Faktura %s vraćena u status izrade InvoiceBackToDraftInDolibarr=Faktura %s vraćena u status izrade
InvoiceDeleteDolibarr=Faktura %s obrisana InvoiceDeleteDolibarr=Faktura %s obrisana
OrderValidatedInDolibarr= Narudžba %s potvrđena OrderValidatedInDolibarr=Narudžba %s potvrđena
OrderDeliveredInDolibarr=Order %s classified delivered
OrderCanceledInDolibarr=Narudžba %s otkazana
OrderBilledInDolibarr=Order %s classified billed
OrderApprovedInDolibarr=Narudžba %s odobrena OrderApprovedInDolibarr=Narudžba %s odobrena
OrderRefusedInDolibarr=Order %s refused OrderRefusedInDolibarr=Order %s refused
OrderBackToDraftInDolibarr=NArudžbu %s vratiti u status izrade OrderBackToDraftInDolibarr=NArudžbu %s vratiti u status izrade
@ -91,3 +94,5 @@ WorkingTimeRange=Working time range
WorkingDaysRange=Working days range WorkingDaysRange=Working days range
AddEvent=Create event AddEvent=Create event
MyAvailability=My availability MyAvailability=My availability
ActionType=Event type
DateActionBegin=Start event date

View File

@ -294,6 +294,8 @@ TotalOfTwoDiscountMustEqualsOriginal=Ukupno za dva nova popusta mora biti jednak
ConfirmRemoveDiscount=Jeste li sigurni da želite ukloniti ovaj popust? ConfirmRemoveDiscount=Jeste li sigurni da želite ukloniti ovaj popust?
RelatedBill=Povezana faktura RelatedBill=Povezana faktura
RelatedBills=Povezane fakture RelatedBills=Povezane fakture
RelatedCustomerInvoices=Related customer invoices
RelatedSupplierInvoices=Related supplier invoices
LatestRelatedBill=Latest related invoice LatestRelatedBill=Latest related invoice
WarningBillExist=Warning, one or more invoice already exist WarningBillExist=Warning, one or more invoice already exist

View File

@ -1,64 +1,62 @@
# Dolibarr language file - Source file is en_US - categories # Dolibarr language file - Source file is en_US - categories
Category=Kategorija Rubrique=Tag/Category
Categories=Kategorije Rubriques=Tags/Categories
Rubrique=Kategorija categories=tags/categories
Rubriques=Kategorije TheCategorie=The tag/category
categories=kategorije NoCategoryYet=No tag/category of this type created
TheCategorie=Kategorija
NoCategoryYet=Nema kreirane kategorije ovog tipa
In=U In=U
AddIn=Dodaj u AddIn=Dodaj u
modify=izmijeniti modify=izmijeniti
Classify=Svrstati Classify=Svrstati
CategoriesArea=Područje za kategorije CategoriesArea=Tags/Categories area
ProductsCategoriesArea=Područje za kategorije proizvoda/usluga ProductsCategoriesArea=Products/Services tags/categories area
SuppliersCategoriesArea=Područje za kategorije dobavljača SuppliersCategoriesArea=Suppliers tags/categories area
CustomersCategoriesArea=Područje za kategorije kupaca CustomersCategoriesArea=Customers tags/categories area
ThirdPartyCategoriesArea=Third parties categories area ThirdPartyCategoriesArea=Third parties tags/categories area
MembersCategoriesArea=Područje za kategorije članova MembersCategoriesArea=Members tags/categories area
ContactsCategoriesArea=Područje za kategorije kontakata ContactsCategoriesArea=Contacts tags/categories area
MainCats=Glavne kategorije MainCats=Main tags/categories
SubCats=Podkategorije SubCats=Podkategorije
CatStatistics=Statistika CatStatistics=Statistika
CatList=Lista kategorija CatList=List of tags/categories
AllCats=Sve kategorije AllCats=All tags/categories
ViewCat=Pogledaj kategoriju ViewCat=View tag/category
NewCat=Dodaj kategoriju NewCat=Add tag/category
NewCategory=Nova kategorija NewCategory=New tag/category
ModifCat=Izmijeni kategoriju ModifCat=Modify tag/category
CatCreated=Kategorija kreirana CatCreated=Tag/category created
CreateCat=Kreiraj kategoriju CreateCat=Create tag/category
CreateThisCat=Kreiraj ovu kategoriju CreateThisCat=Create this tag/category
ValidateFields=Potvrdi polja ValidateFields=Potvrdi polja
NoSubCat=Nema podkategorije NoSubCat=Nema podkategorije
SubCatOf=Podkategorija SubCatOf=Podkategorija
FoundCats=Kategorije pronađene FoundCats=Found tags/categories
FoundCatsForName=Kategorije pronađene za ime : FoundCatsForName=Tags/categories found for the name :
FoundSubCatsIn=Podkategorije pronađene u kategoriji FoundSubCatsIn=Subcategories found in the tag/category
ErrSameCatSelected=Izbrali ste istu kategoriju nekoliko puta ErrSameCatSelected=You selected the same tag/category several times
ErrForgotCat=Zaboravili ste izabrati kategoriju ErrForgotCat=You forgot to choose the tag/category
ErrForgotField=Zaboravili ste prijaviti polja ErrForgotField=Zaboravili ste prijaviti polja
ErrCatAlreadyExists=Ime se već koristi ErrCatAlreadyExists=Ime se već koristi
AddProductToCat=Dodaj ovaj proizvod u kategoriju? AddProductToCat=Add this product to a tag/category?
ImpossibleAddCat=Nemoguće dodati kategoriju ImpossibleAddCat=Impossible to add the tag/category
ImpossibleAssociateCategory=Nemoguće povezati kategoriju sa ImpossibleAssociateCategory=Impossible to associate the tag/category to
WasAddedSuccessfully=<b>%s</b> je uspješno dodan/a. WasAddedSuccessfully=<b>%s</b> je uspješno dodan/a.
ObjectAlreadyLinkedToCategory=Element je već povezan sa ovom kategorijom. ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
CategorySuccessfullyCreated=Ova kategorija %s je uspješno dodana. CategorySuccessfullyCreated=This tag/category %s has been added with success.
ProductIsInCategories=Proizvod/usluga pripada slijedećim kategorijama ProductIsInCategories=Product/service owns to following tags/categories
SupplierIsInCategories=Third party owns to following suppliers categories SupplierIsInCategories=Third party owns to following suppliers tags/categories
CompanyIsInCustomersCategories=This third party owns to following customers/prospects categories CompanyIsInCustomersCategories=This third party owns to following customers/prospects tags/categories
CompanyIsInSuppliersCategories=This third party owns to following suppliers categories CompanyIsInSuppliersCategories=This third party owns to following suppliers tags/categories
MemberIsInCategories=Ovaj član pripada sljedećim kategorijama članova MemberIsInCategories=This member owns to following members tags/categories
ContactIsInCategories=Ovaj kontakt pripada slijedećim kategorijama kontakata ContactIsInCategories=This contact owns to following contacts tags/categories
ProductHasNoCategory=Ovaj prozvod/usluga nije dodan u neku od kategorija ProductHasNoCategory=This product/service is not in any tags/categories
SupplierHasNoCategory=Ovaj dobavljač nije dodan u neku od kategorija SupplierHasNoCategory=This supplier is not in any tags/categories
CompanyHasNoCategory=Ova kopmanija nije dodana u neku od kategorija CompanyHasNoCategory=This company is not in any tags/categories
MemberHasNoCategory=Ovaj član nije dodan u neku od kategorija MemberHasNoCategory=This member is not in any tags/categories
ContactHasNoCategory=Ovaj kontakt nije u nekoj od kategorija ContactHasNoCategory=This contact is not in any tags/categories
ClassifyInCategory=Svrstaj u kategoriju ClassifyInCategory=Classify in tag/category
NoneCategory=Ništa NoneCategory=Ništa
NotCategorized=Bez kategorije NotCategorized=Without tag/category
CategoryExistsAtSameLevel=Već postoji kategorija sa ovom referencom CategoryExistsAtSameLevel=Već postoji kategorija sa ovom referencom
ReturnInProduct=Nazad na karticu proizvoda/usluge ReturnInProduct=Nazad na karticu proizvoda/usluge
ReturnInSupplier=Nazad na karticu dobavljača ReturnInSupplier=Nazad na karticu dobavljača
@ -66,22 +64,22 @@ ReturnInCompany=Back to customer/prospect card
ContentsVisibleByAll=Sadržaj će biti vidljiv svima ContentsVisibleByAll=Sadržaj će biti vidljiv svima
ContentsVisibleByAllShort=Sadržaj vidljiv svima ContentsVisibleByAllShort=Sadržaj vidljiv svima
ContentsNotVisibleByAllShort=Sadržaj nije vidljiv svima ContentsNotVisibleByAllShort=Sadržaj nije vidljiv svima
CategoriesTree=Categories tree CategoriesTree=Tags/categories tree
DeleteCategory=Obriši kategoriju DeleteCategory=Delete tag/category
ConfirmDeleteCategory=Jeste li sigurni da želite obrisati ovu kategoriju? ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
RemoveFromCategory=Uklonite vezu sa kategorijom RemoveFromCategory=Remove link with tag/categorie
RemoveFromCategoryConfirm=Jeste li sigurni da želite ukloniti vezu između transakcije i kategorije? RemoveFromCategoryConfirm=Are you sure you want to remove link between the transaction and the tag/category ?
NoCategoriesDefined=Nema definisane kategorije NoCategoriesDefined=No tag/category defined
SuppliersCategoryShort=Kategorija dobavljača SuppliersCategoryShort=Suppliers tags/category
CustomersCategoryShort=Kategorija kupaca CustomersCategoryShort=Customers tags/category
ProductsCategoryShort=Kategorija prozvoda ProductsCategoryShort=Products tags/category
MembersCategoryShort=Kategorija članova MembersCategoryShort=Members tags/category
SuppliersCategoriesShort=Kategorije dobavljača SuppliersCategoriesShort=Suppliers tags/categories
CustomersCategoriesShort=Kategorije kupaca CustomersCategoriesShort=Customers tags/categories
CustomersProspectsCategoriesShort=Custo./Prosp. categories CustomersProspectsCategoriesShort=Custo./Prosp. categories
ProductsCategoriesShort=Kategorije proizvoda ProductsCategoriesShort=Products tags/categories
MembersCategoriesShort=Kategorije članova MembersCategoriesShort=Members tags/categories
ContactCategoriesShort=Kategorije kontakata ContactCategoriesShort=Contacts tags/categories
ThisCategoryHasNoProduct=Ova kategorija ne sadrži nijedan proizvod. ThisCategoryHasNoProduct=Ova kategorija ne sadrži nijedan proizvod.
ThisCategoryHasNoSupplier=Ova kategorija ne sadrži nijednog dobavljača. ThisCategoryHasNoSupplier=Ova kategorija ne sadrži nijednog dobavljača.
ThisCategoryHasNoCustomer=Ova kategorija ne sadrži nijednog kupca. ThisCategoryHasNoCustomer=Ova kategorija ne sadrži nijednog kupca.
@ -90,23 +88,23 @@ ThisCategoryHasNoContact=Ova kategorija ne sadrži nijednog kontakta.
AssignedToCustomer=Dodijeljeno nekom kupcu AssignedToCustomer=Dodijeljeno nekom kupcu
AssignedToTheCustomer=Dodijeljeno ovom kupcu AssignedToTheCustomer=Dodijeljeno ovom kupcu
InternalCategory=Interna kategorija InternalCategory=Interna kategorija
CategoryContents=Sadržaj kategorije CategoryContents=Tag/category contents
CategId=ID kategorije CategId=Tag/category id
CatSupList=Lista kategorija za dobavljače CatSupList=List of supplier tags/categories
CatCusList=List of customer/prospect categories CatCusList=List of customer/prospect tags/categories
CatProdList=Lista kategorija za proizvode CatProdList=List of products tags/categories
CatMemberList=Lista kategorija za članove CatMemberList=List of members tags/categories
CatContactList=Lista kategorija kontakata i kontakata CatContactList=List of contact tags/categories and contact
CatSupLinks=Veze između dobavljača i kategorija CatSupLinks=Links between suppliers and tags/categories
CatCusLinks=Links between customers/prospects and categories CatCusLinks=Links between customers/prospects and tags/categories
CatProdLinks=Veze između proizvoda/usluga i kategorija CatProdLinks=Links between products/services and tags/categories
CatMemberLinks=Veze između članova i kategorija CatMemberLinks=Links between members and tags/categories
DeleteFromCat=Ukloni iz kategorije DeleteFromCat=Remove from tags/category
DeletePicture=Picture delete DeletePicture=Picture delete
ConfirmDeletePicture=Confirm picture deletion? ConfirmDeletePicture=Confirm picture deletion?
ExtraFieldsCategories=Complementary attributes ExtraFieldsCategories=Complementary attributes
CategoriesSetup=Categories setup CategoriesSetup=Tags/categories setup
CategorieRecursiv=Link with parent category automatically CategorieRecursiv=Link with parent tag/category automatically
CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory
AddProductServiceIntoCategory=Add the following product/service AddProductServiceIntoCategory=Add the following product/service
ShowCategory=Show category ShowCategory=Show tag/category

View File

@ -26,15 +26,15 @@ CronLastOutput=Izvještaj o zadnjem pokretanju
CronLastResult=Šifra rezultat zadnjeg pokretanja CronLastResult=Šifra rezultat zadnjeg pokretanja
CronListOfCronJobs=Lista redovnih poslova CronListOfCronJobs=Lista redovnih poslova
CronCommand=Komanda CronCommand=Komanda
CronList=Jobs list CronList=Scheduled job
CronDelete= Obriši kron posao CronDelete=Delete scheduled jobs
CronConfirmDelete= Are you sure you want to delete this cron job ? CronConfirmDelete=Are you sure you want to delete this scheduled jobs ?
CronExecute=Launch job CronExecute=Launch scheduled jobs
CronConfirmExecute= Jeste li sigurni sada da izvrši ovaj posao sada CronConfirmExecute=Are you sure to execute this scheduled jobs now ?
CronInfo= Poslovi omogućavaju da se izvrše zadatci koji su planirani CronInfo=Scheduled job module allow to execute job that have been planned
CronWaitingJobs=Wainting jobs CronWaitingJobs=Waiting jobs
CronTask=Job CronTask=Job
CronNone= Ništa CronNone=Ništa
CronDtStart=Datum početka CronDtStart=Datum početka
CronDtEnd=End date CronDtEnd=End date
CronDtNextLaunch=Sljedeće izvršenje CronDtNextLaunch=Sljedeće izvršenje
@ -75,6 +75,7 @@ CronObjectHelp=The object name to load. <BR> For exemple to fetch method of Doli
CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is is <i>fecth</i> CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is is <i>fecth</i>
CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i> CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i>
CronCommandHelp=Sistemska komanda za izvršenje CronCommandHelp=Sistemska komanda za izvršenje
CronCreateJob=Create new Scheduled Job
# Info # Info
CronInfoPage=Inromacije CronInfoPage=Inromacije
# Common # Common

View File

@ -6,6 +6,8 @@ Donor=Donator
Donors=Donatori Donors=Donatori
AddDonation=Create a donation AddDonation=Create a donation
NewDonation=Nova donacija NewDonation=Nova donacija
DeleteADonation=Delete a donation
ConfirmDeleteADonation=Are you sure you want to delete this donation ?
ShowDonation=Prikaži donaciju ShowDonation=Prikaži donaciju
DonationPromise=Obećanje za poklon DonationPromise=Obećanje za poklon
PromisesNotValid=Nepotvrđena obećanja PromisesNotValid=Nepotvrđena obećanja
@ -21,6 +23,8 @@ DonationStatusPaid=Primljena donacija
DonationStatusPromiseNotValidatedShort=Nacrt DonationStatusPromiseNotValidatedShort=Nacrt
DonationStatusPromiseValidatedShort=Potvrđena donacija DonationStatusPromiseValidatedShort=Potvrđena donacija
DonationStatusPaidShort=Primljena donacija DonationStatusPaidShort=Primljena donacija
DonationTitle=Donation receipt
DonationDatePayment=Payment date
ValidPromess=Potvrdi obećanje ValidPromess=Potvrdi obećanje
DonationReceipt=Priznanica za donaciju DonationReceipt=Priznanica za donaciju
BuildDonationReceipt=Napravi priznanicu BuildDonationReceipt=Napravi priznanicu
@ -36,3 +40,4 @@ FrenchOptions=Options for France
DONATION_ART200=Show article 200 from CGI if you are concerned DONATION_ART200=Show article 200 from CGI if you are concerned
DONATION_ART238=Show article 238 from CGI if you are concerned DONATION_ART238=Show article 238 from CGI if you are concerned
DONATION_ART885=Show article 885 from CGI if you are concerned DONATION_ART885=Show article 885 from CGI if you are concerned
DonationPayment=Donation payment

View File

@ -161,6 +161,12 @@ ErrorPriceExpressionUnknown=Unknown error '%s'
ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs
ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information
ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action
ErrorGlobalVariableUpdater0=HTTP request failed with error '%s'
ErrorGlobalVariableUpdater1=Invalid JSON format '%s'
ErrorGlobalVariableUpdater2=Missing parameter '%s'
ErrorGlobalVariableUpdater3=The requested data was not found in result
ErrorGlobalVariableUpdater4=SOAP client failed with error '%s'
ErrorGlobalVariableUpdater5=No global variable selected
# Warnings # Warnings
WarningMandatorySetupNotComplete=Mandatory setup parameters are not yet defined WarningMandatorySetupNotComplete=Mandatory setup parameters are not yet defined

View File

@ -139,3 +139,5 @@ ListOfNotificationsDone=Lista svih notifikacija o slanju emaila
MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing. MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature. MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s. MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
NbOfTargetedContacts=Current number of targeted contact emails

View File

@ -352,6 +352,7 @@ Status=Status
Favorite=Favorite Favorite=Favorite
ShortInfo=Info. ShortInfo=Info.
Ref=Ref. Ref=Ref.
ExternalRef=Ref. extern
RefSupplier=Ref. supplier RefSupplier=Ref. supplier
RefPayment=Ref. payment RefPayment=Ref. payment
CommercialProposalsShort=Poslovni prijedlozi CommercialProposalsShort=Poslovni prijedlozi
@ -394,8 +395,8 @@ Available=Available
NotYetAvailable=Not yet available NotYetAvailable=Not yet available
NotAvailable=Not available NotAvailable=Not available
Popularity=Popularity Popularity=Popularity
Categories=Categories Categories=Tags/categories
Category=Category Category=Tag/category
By=By By=By
From=From From=From
to=to to=to
@ -694,6 +695,7 @@ AddBox=Add box
SelectElementAndClickRefresh=Select an element and click Refresh SelectElementAndClickRefresh=Select an element and click Refresh
PrintFile=Print File %s PrintFile=Print File %s
ShowTransaction=Show transaction ShowTransaction=Show transaction
GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
# Week day # Week day
Monday=Monday Monday=Monday
Tuesday=Tuesday Tuesday=Tuesday

View File

@ -64,7 +64,8 @@ ShipProduct=Ship product
Discount=Discount Discount=Discount
CreateOrder=Create Order CreateOrder=Create Order
RefuseOrder=Refuse order RefuseOrder=Refuse order
ApproveOrder=Accept order ApproveOrder=Approve order
Approve2Order=Approve order (second level)
ValidateOrder=Validate order ValidateOrder=Validate order
UnvalidateOrder=Unvalidate order UnvalidateOrder=Unvalidate order
DeleteOrder=Delete order DeleteOrder=Delete order
@ -102,6 +103,8 @@ ClassifyBilled=Classify billed
ComptaCard=Accountancy card ComptaCard=Accountancy card
DraftOrders=Draft orders DraftOrders=Draft orders
RelatedOrders=Related orders RelatedOrders=Related orders
RelatedCustomerOrders=Related customer orders
RelatedSupplierOrders=Related supplier orders
OnProcessOrders=In process orders OnProcessOrders=In process orders
RefOrder=Ref. order RefOrder=Ref. order
RefCustomerOrder=Ref. customer order RefCustomerOrder=Ref. customer order
@ -118,6 +121,7 @@ PaymentOrderRef=Payment of order %s
CloneOrder=Clone order CloneOrder=Clone order
ConfirmCloneOrder=Are you sure you want to clone this order <b>%s</b> ? ConfirmCloneOrder=Are you sure you want to clone this order <b>%s</b> ?
DispatchSupplierOrder=Receiving supplier order %s DispatchSupplierOrder=Receiving supplier order %s
FirstApprovalAlreadyDone=First approval already done
##### Types de contacts ##### ##### Types de contacts #####
TypeContact_commande_internal_SALESREPFOLL=Representative following-up customer order TypeContact_commande_internal_SALESREPFOLL=Representative following-up customer order
TypeContact_commande_internal_SHIPPING=Representative following-up shipping TypeContact_commande_internal_SHIPPING=Representative following-up shipping

View File

@ -12,6 +12,7 @@ Notify_FICHINTER_VALIDATE=Intervention validated
Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail
Notify_BILL_VALIDATE=Customer invoice validated Notify_BILL_VALIDATE=Customer invoice validated
Notify_BILL_UNVALIDATE=Customer invoice unvalidated Notify_BILL_UNVALIDATE=Customer invoice unvalidated
Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_APPROVE=Supplier order approved Notify_ORDER_SUPPLIER_APPROVE=Supplier order approved
Notify_ORDER_SUPPLIER_REFUSE=Supplier order refused Notify_ORDER_SUPPLIER_REFUSE=Supplier order refused
Notify_ORDER_VALIDATE=Customer order validated Notify_ORDER_VALIDATE=Customer order validated
@ -28,7 +29,7 @@ Notify_PROPAL_SENTBYMAIL=Commercial proposal sent by mail
Notify_BILL_PAYED=Customer invoice payed Notify_BILL_PAYED=Customer invoice payed
Notify_BILL_CANCEL=Customer invoice canceled Notify_BILL_CANCEL=Customer invoice canceled
Notify_BILL_SENTBYMAIL=Customer invoice sent by mail Notify_BILL_SENTBYMAIL=Customer invoice sent by mail
Notify_ORDER_SUPPLIER_VALIDATE=Supplier order validated Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_SENTBYMAIL=Supplier order sent by mail Notify_ORDER_SUPPLIER_SENTBYMAIL=Supplier order sent by mail
Notify_BILL_SUPPLIER_VALIDATE=Supplier invoice validated Notify_BILL_SUPPLIER_VALIDATE=Supplier invoice validated
Notify_BILL_SUPPLIER_PAYED=Supplier invoice payed Notify_BILL_SUPPLIER_PAYED=Supplier invoice payed
@ -47,7 +48,7 @@ Notify_PROJECT_CREATE=Project creation
Notify_TASK_CREATE=Task created Notify_TASK_CREATE=Task created
Notify_TASK_MODIFY=Task modified Notify_TASK_MODIFY=Task modified
Notify_TASK_DELETE=Task deleted Notify_TASK_DELETE=Task deleted
SeeModuleSetup=See module setup SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Number of attached files/documents NbOfAttachedFiles=Number of attached files/documents
TotalSizeOfAttachedFiles=Total size of attached files/documents TotalSizeOfAttachedFiles=Total size of attached files/documents
MaxSize=Maximum size MaxSize=Maximum size
@ -170,6 +171,7 @@ EMailTextInvoiceValidated=The invoice %s has been validated.
EMailTextProposalValidated=The proposal %s has been validated. EMailTextProposalValidated=The proposal %s has been validated.
EMailTextOrderValidated=The order %s has been validated. EMailTextOrderValidated=The order %s has been validated.
EMailTextOrderApproved=The order %s has been approved. EMailTextOrderApproved=The order %s has been approved.
EMailTextOrderValidatedBy=The order %s has been recorded by %s.
EMailTextOrderApprovedBy=The order %s has been approved by %s. EMailTextOrderApprovedBy=The order %s has been approved by %s.
EMailTextOrderRefused=The order %s has been refused. EMailTextOrderRefused=The order %s has been refused.
EMailTextOrderRefusedBy=The order %s has been refused by %s. EMailTextOrderRefusedBy=The order %s has been refused by %s.

View File

@ -245,12 +245,25 @@ MinimumRecommendedPrice=Minimum recommended price is : %s
PriceExpressionEditor=Price expression editor PriceExpressionEditor=Price expression editor
PriceExpressionSelected=Selected price expression PriceExpressionSelected=Selected price expression
PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions
PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#options_myextrafieldkey#</b> PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#extrafield_myextrafieldkey#</b> and global variables with <b>#global_mycode#</b>
PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b> PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b> PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b>
PriceExpressionEditorHelp5=Available global values:
PriceMode=Price mode PriceMode=Price mode
PriceNumeric=Number PriceNumeric=Number
DefaultPrice=Default price DefaultPrice=Default price
ComposedProductIncDecStock=Increase/Decrease stock on parent change ComposedProductIncDecStock=Increase/Decrease stock on parent change
ComposedProduct=Sub-product ComposedProduct=Sub-product
MinSupplierPrice=Minimun supplier price MinSupplierPrice=Minimum supplier price
DynamicPriceConfiguration=Dynamic price configuration
GlobalVariables=Global variables
GlobalVariableUpdaters=Global variable updaters
GlobalVariableUpdaterType0=JSON data
GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value,
GlobalVariableUpdaterHelpFormat0=format is {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
GlobalVariableUpdaterType1=WebService data
GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method
GlobalVariableUpdaterHelpFormat1=format is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
UpdateInterval=Update interval (minutes)
LastUpdated=Last updated
CorrectlyUpdated=Correctly updated

View File

@ -72,6 +72,7 @@ ListSupplierInvoicesAssociatedProject=Lista faktura dobavljača u vezi s projekt
ListContractAssociatedProject=Lista ugovora u vezi s projektom ListContractAssociatedProject=Lista ugovora u vezi s projektom
ListFichinterAssociatedProject=Lista intervencija u vezi s projektom ListFichinterAssociatedProject=Lista intervencija u vezi s projektom
ListExpenseReportsAssociatedProject=List of expense reports associated with the project ListExpenseReportsAssociatedProject=List of expense reports associated with the project
ListDonationsAssociatedProject=List of donations associated with the project
ListActionsAssociatedProject=Lista događaja u vezi s projektom ListActionsAssociatedProject=Lista događaja u vezi s projektom
ActivityOnProjectThisWeek=Aktivnost na projektu ove sedmice ActivityOnProjectThisWeek=Aktivnost na projektu ove sedmice
ActivityOnProjectThisMonth=Aktivnost na projektu ovog mjeseca ActivityOnProjectThisMonth=Aktivnost na projektu ovog mjeseca

View File

@ -2,6 +2,7 @@
RefSending=Referenca pošiljke RefSending=Referenca pošiljke
Sending=Pošiljka Sending=Pošiljka
Sendings=Pošiljke Sendings=Pošiljke
AllSendings=All Shipments
Shipment=Pošiljka Shipment=Pošiljka
Shipments=Pošiljke Shipments=Pošiljke
ShowSending=Show Sending ShowSending=Show Sending

View File

@ -43,3 +43,4 @@ ListOfSupplierOrders=List of supplier orders
MenuOrdersSupplierToBill=Supplier orders to invoice MenuOrdersSupplierToBill=Supplier orders to invoice
NbDaysToDelivery=Delivery delay in days NbDaysToDelivery=Delivery delay in days
DescNbDaysToDelivery=The biggest delay is display among order product list DescNbDaysToDelivery=The biggest delay is display among order product list
UseDoubleApproval=Use double approval (the second approval will be any user of a defined user group)

View File

@ -389,6 +389,7 @@ ExtrafieldSeparator=Separador
ExtrafieldCheckBox=Casella de verificació ExtrafieldCheckBox=Casella de verificació
ExtrafieldRadio=Botó de selecció excloent ExtrafieldRadio=Botó de selecció excloent
ExtrafieldCheckBoxFromList= Checkbox from table ExtrafieldCheckBoxFromList= Checkbox from table
ExtrafieldLink=Link to an object
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
@ -494,6 +495,8 @@ Module500Name=Special expenses (tax, social contributions, dividends)
Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries
Module510Name=Salaries Module510Name=Salaries
Module510Desc=Management of employees salaries and payments Module510Desc=Management of employees salaries and payments
Module520Name=Loan
Module520Desc=Management of loans
Module600Name=Notificacions Module600Name=Notificacions
Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty) Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
Module700Name=Donacions Module700Name=Donacions
@ -508,14 +511,14 @@ Module1400Name=Comptabilitat experta
Module1400Desc=Gestió experta de la comptabilitat (doble partida) Module1400Desc=Gestió experta de la comptabilitat (doble partida)
Module1520Name=Document Generation Module1520Name=Document Generation
Module1520Desc=Mass mail document generation Module1520Desc=Mass mail document generation
Module1780Name=Categories Module1780Name=Tags/Categories
Module1780Desc=Gestió de categories (productes, proveïdors i clients) Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
Module2000Name=Editor WYSIWYG Module2000Name=Editor WYSIWYG
Module2000Desc=Permet l'edició de certes zones de text mitjançant un editor avançat Module2000Desc=Permet l'edició de certes zones de text mitjançant un editor avançat
Module2200Name=Dynamic Prices Module2200Name=Dynamic Prices
Module2200Desc=Enable the usage of math expressions for prices Module2200Desc=Enable the usage of math expressions for prices
Module2300Name=Cron Module2300Name=Cron
Module2300Desc=Gestor de tasques programades Module2300Desc=Scheduled job management
Module2400Name=Agenda Module2400Name=Agenda
Module2400Desc=Gestió de l'agenda i de les accions Module2400Desc=Gestió de l'agenda i de les accions
Module2500Name=Gestió Electrònica de Documents Module2500Name=Gestió Electrònica de Documents
@ -714,6 +717,11 @@ Permission510=Read Salaries
Permission512=Create/modify salaries Permission512=Create/modify salaries
Permission514=Delete salaries Permission514=Delete salaries
Permission517=Export salaries Permission517=Export salaries
Permission520=Read Loans
Permission522=Create/modify loans
Permission524=Delete loans
Permission525=Access loan calculator
Permission527=Export loans
Permission531=Consultar serveis Permission531=Consultar serveis
Permission532=Crear/modificar serveis Permission532=Crear/modificar serveis
Permission534=Eliminar serveis Permission534=Eliminar serveis
@ -746,6 +754,7 @@ Permission1185=Aprovar comandes a proveïdors
Permission1186=Enviar comandes a proveïdors Permission1186=Enviar comandes a proveïdors
Permission1187=Rebre comandes a proveïdors Permission1187=Rebre comandes a proveïdors
Permission1188=Tancar comandes a proveïdors Permission1188=Tancar comandes a proveïdors
Permission1190=Approve (second approval) supplier orders
Permission1201=Obtenir resultat d'una exportació Permission1201=Obtenir resultat d'una exportació
Permission1202=Crear/modificar exportacions Permission1202=Crear/modificar exportacions
Permission1231=Consultar factures de proveïdors Permission1231=Consultar factures de proveïdors
@ -758,10 +767,10 @@ Permission1237=Exporta comandes de proveïdors juntament amb els seus detalls
Permission1251=Llançar les importacions en massa a la base de dades (càrrega de dades) Permission1251=Llançar les importacions en massa a la base de dades (càrrega de dades)
Permission1321=Exporta factures a clients, atributs i cobraments Permission1321=Exporta factures a clients, atributs i cobraments
Permission1421=Exporta comandes de clients i atributs Permission1421=Exporta comandes de clients i atributs
Permission23001 = Veure les tasques programades Permission23001=Read Scheduled job
Permission23002 = Crear/Modificar les tasques programades Permission23002=Create/update Scheduled job
Permission23003 = Eliminar les tasques programades Permission23003=Delete Scheduled job
Permission23004 = Executar les tasques programades Permission23004=Execute Scheduled job
Permission2401=Llegir accions (esdeveniments o tasques) vinculades al seu compte Permission2401=Llegir accions (esdeveniments o tasques) vinculades al seu compte
Permission2402=Crear/modificar accions (esdeveniments o tasques) vinculades al seu compte Permission2402=Crear/modificar accions (esdeveniments o tasques) vinculades al seu compte
Permission2403=Modificar accions (esdeveniments o tasques) vinculades al seu compte Permission2403=Modificar accions (esdeveniments o tasques) vinculades al seu compte
@ -1107,7 +1116,7 @@ ModuleCompanyCodeAquarium=Retorna un codi comptable compost de<br>%s seguit del
ModuleCompanyCodePanicum=Retorna un codi comptable buit. ModuleCompanyCodePanicum=Retorna un codi comptable buit.
ModuleCompanyCodeDigitaria=Retorna un codi comptable compost seguint el codi de tercer. El codi està format per caràcter 'C' en primera posició seguit dels 5 primers caràcters del codi tercer. ModuleCompanyCodeDigitaria=Retorna un codi comptable compost seguint el codi de tercer. El codi està format per caràcter 'C' en primera posició seguit dels 5 primers caràcters del codi tercer.
UseNotifications=Utilitza notificacions UseNotifications=Utilitza notificacions
NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one third party at time.<br>* or by setting a global target email address on module setup page. NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one contact at time.<br>* or by setting global target email addresses in module setup page.
ModelModules=Models de documents ModelModules=Models de documents
DocumentModelOdt=Generació des dels documents amb format OpenDocument (Arxiu .ODT OpenOffice, KOffice, TextEdit,...) DocumentModelOdt=Generació des dels documents amb format OpenDocument (Arxiu .ODT OpenOffice, KOffice, TextEdit,...)
WatermarkOnDraft=Marca d'aigua en els documents esborrany WatermarkOnDraft=Marca d'aigua en els documents esborrany
@ -1557,6 +1566,7 @@ SuppliersSetup=Configuració del mòdul Proveïdors
SuppliersCommandModel=Model de comandes a proveïdors complet (logo...) SuppliersCommandModel=Model de comandes a proveïdors complet (logo...)
SuppliersInvoiceModel=Model de factures de proveïdors complet (logo...) SuppliersInvoiceModel=Model de factures de proveïdors complet (logo...)
SuppliersInvoiceNumberingModel=Models de numeració de factures de proveïdor SuppliersInvoiceNumberingModel=Models de numeració de factures de proveïdor
IfSetToYesDontForgetPermission=If set to yes, don't forget to provide permissions to groups or users allowed for the second approval
##### GeoIPMaxmind ##### ##### GeoIPMaxmind #####
GeoIPMaxmindSetup=Configuració del mòdul GeoIP Maxmind GeoIPMaxmindSetup=Configuració del mòdul GeoIP Maxmind
PathToGeoIPMaxmindCountryDataFile=Ruta de l'arxiu Maxmind que conté les conversions IP-> País.<br>Exemple: /usr/local/share/GeoIP/GeoIP.dat PathToGeoIPMaxmindCountryDataFile=Ruta de l'arxiu Maxmind que conté les conversions IP-> País.<br>Exemple: /usr/local/share/GeoIP/GeoIP.dat
@ -1601,3 +1611,8 @@ ExpenseReportsSetup=Setup of module Expense Reports
TemplatePDFExpenseReports=Document templates to generate expense report document TemplatePDFExpenseReports=Document templates to generate expense report document
NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only. NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only.
NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only. NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for EMail notifications by enabling and configuring the module "Notification".
ListOfNotificationsPerContact=List of notifications per contact*
ListOfFixedNotifications=List of fixed notifications
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
Threshold=Threshold

View File

@ -48,7 +48,10 @@ InvoiceValidatedInDolibarr=Factura %s validada
InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
InvoiceBackToDraftInDolibarr=Factura %s tornada a borrador InvoiceBackToDraftInDolibarr=Factura %s tornada a borrador
InvoiceDeleteDolibarr=Factura %s eliminada InvoiceDeleteDolibarr=Factura %s eliminada
OrderValidatedInDolibarr= Comanda %s validada OrderValidatedInDolibarr=Comanda %s validada
OrderDeliveredInDolibarr=Order %s classified delivered
OrderCanceledInDolibarr=Commanda %s anul·lada
OrderBilledInDolibarr=Order %s classified billed
OrderApprovedInDolibarr=Comanda %s aprovada OrderApprovedInDolibarr=Comanda %s aprovada
OrderRefusedInDolibarr=Order %s refused OrderRefusedInDolibarr=Order %s refused
OrderBackToDraftInDolibarr=Comanda %s tordada a borrador OrderBackToDraftInDolibarr=Comanda %s tordada a borrador
@ -91,3 +94,5 @@ WorkingTimeRange=Working time range
WorkingDaysRange=Working days range WorkingDaysRange=Working days range
AddEvent=Create event AddEvent=Create event
MyAvailability=My availability MyAvailability=My availability
ActionType=Event type
DateActionBegin=Start event date

View File

@ -294,6 +294,8 @@ TotalOfTwoDiscountMustEqualsOriginal=La suma de l'import dels 2 nous descomptes
ConfirmRemoveDiscount=Esteu segur de voler eliminar aquest descompte? ConfirmRemoveDiscount=Esteu segur de voler eliminar aquest descompte?
RelatedBill=Factura associada RelatedBill=Factura associada
RelatedBills=Factures associades RelatedBills=Factures associades
RelatedCustomerInvoices=Related customer invoices
RelatedSupplierInvoices=Related supplier invoices
LatestRelatedBill=Latest related invoice LatestRelatedBill=Latest related invoice
WarningBillExist=Warning, one or more invoice already exist WarningBillExist=Warning, one or more invoice already exist

View File

@ -1,64 +1,62 @@
# Dolibarr language file - Source file is en_US - categories # Dolibarr language file - Source file is en_US - categories
Category=Categoria Rubrique=Tag/Category
Categories=categories Rubriques=Tags/Categories
Rubrique=Categoria categories=tags/categories
Rubriques=Categories TheCategorie=The tag/category
categories=Categoria(es) NoCategoryYet=No tag/category of this type created
TheCategorie=La categoria
NoCategoryYet=Cap categoria d'aquest tipus creada
In=En In=En
AddIn=Afegir en AddIn=Afegir en
modify=Modificar modify=Modificar
Classify=Classificar Classify=Classificar
CategoriesArea=Àrea categories CategoriesArea=Tags/Categories area
ProductsCategoriesArea=Àrea categories de productes i serveis ProductsCategoriesArea=Products/Services tags/categories area
SuppliersCategoriesArea=Àrea categories de proveïdors SuppliersCategoriesArea=Suppliers tags/categories area
CustomersCategoriesArea=Àrea categories de clients CustomersCategoriesArea=Customers tags/categories area
ThirdPartyCategoriesArea=Àrea categories de tercers ThirdPartyCategoriesArea=Third parties tags/categories area
MembersCategoriesArea=Àrea categories de membres MembersCategoriesArea=Members tags/categories area
ContactsCategoriesArea=Àrea categories de contactes ContactsCategoriesArea=Contacts tags/categories area
MainCats=Categories principals MainCats=Main tags/categories
SubCats=Subcategories SubCats=Subcategories
CatStatistics=Estadístiques CatStatistics=Estadístiques
CatList=Llista de categories CatList=List of tags/categories
AllCats=Totes les categories AllCats=All tags/categories
ViewCat=Veure la categoria ViewCat=View tag/category
NewCat=Nova categoria NewCat=Add tag/category
NewCategory=Nova categoria NewCategory=New tag/category
ModifCat=Modificar una categoria ModifCat=Modify tag/category
CatCreated=Categoria creada CatCreated=Tag/category created
CreateCat=Afegir una categoria CreateCat=Create tag/category
CreateThisCat=Afegir aquesta categoria CreateThisCat=Create this tag/category
ValidateFields=Validar els camps ValidateFields=Validar els camps
NoSubCat=Aquesta categoria no conté cap subcategoria NoSubCat=Aquesta categoria no conté cap subcategoria
SubCatOf=Subcategories SubCatOf=Subcategories
FoundCats=Categories trobades FoundCats=Found tags/categories
FoundCatsForName=Categories trobades amb el nom: FoundCatsForName=Tags/categories found for the name :
FoundSubCatsIn=Subcategories trobades en la categoria FoundSubCatsIn=Subcategories found in the tag/category
ErrSameCatSelected=Heu seleccionat la mateixa categoria diverses vegades ErrSameCatSelected=You selected the same tag/category several times
ErrForgotCat=Ha oblidat escollir la categoria ErrForgotCat=You forgot to choose the tag/category
ErrForgotField=Ha oblidat reassignar un camp ErrForgotField=Ha oblidat reassignar un camp
ErrCatAlreadyExists=Aquest nom està sent utilitzat ErrCatAlreadyExists=Aquest nom està sent utilitzat
AddProductToCat=Afegir aquest producte a una categoria? AddProductToCat=Add this product to a tag/category?
ImpossibleAddCat=Impossible afegir la categoria ImpossibleAddCat=Impossible to add the tag/category
ImpossibleAssociateCategory=Impossible associar la categoria ImpossibleAssociateCategory=Impossible to associate the tag/category to
WasAddedSuccessfully=s'ha afegit amb èxit. WasAddedSuccessfully=s'ha afegit amb èxit.
ObjectAlreadyLinkedToCategory=L'element ja està enllaçat a aquesta categoria ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
CategorySuccessfullyCreated=La categoria %s s'ha inserit correctament. CategorySuccessfullyCreated=This tag/category %s has been added with success.
ProductIsInCategories=Aquest producte/servei es troba en les següents categories ProductIsInCategories=Product/service owns to following tags/categories
SupplierIsInCategories=Aquest proveïdor es troba en les següents categories SupplierIsInCategories=Third party owns to following suppliers tags/categories
CompanyIsInCustomersCategories=Aquesta empresa es troba en les següents categories CompanyIsInCustomersCategories=This third party owns to following customers/prospects tags/categories
CompanyIsInSuppliersCategories=Aquesta empresa es troba en les següents categories de proveïdors CompanyIsInSuppliersCategories=This third party owns to following suppliers tags/categories
MemberIsInCategories=Aquest membre es troba en les següents categories de membres MemberIsInCategories=This member owns to following members tags/categories
ContactIsInCategories=Aquest contacte es troba en les següents categories de contactes ContactIsInCategories=This contact owns to following contacts tags/categories
ProductHasNoCategory=Aquest producte/servei no es troba en cap categoria en particular ProductHasNoCategory=This product/service is not in any tags/categories
SupplierHasNoCategory=Aquest proveïdor no es troba en cap categoria en particular SupplierHasNoCategory=This supplier is not in any tags/categories
CompanyHasNoCategory=Aquesta empresa no es troba en cap categoria en particular CompanyHasNoCategory=This company is not in any tags/categories
MemberHasNoCategory=Aquest membre no es troba en cap categoria en particular MemberHasNoCategory=This member is not in any tags/categories
ContactHasNoCategory=Aquest contacte no es troba en cap categoria ContactHasNoCategory=This contact is not in any tags/categories
ClassifyInCategory=Classificar en la categoria ClassifyInCategory=Classify in tag/category
NoneCategory=Cap NoneCategory=Cap
NotCategorized=Sense categoria NotCategorized=Without tag/category
CategoryExistsAtSameLevel=Aquesta categoria ja existeix per aquesta referència CategoryExistsAtSameLevel=Aquesta categoria ja existeix per aquesta referència
ReturnInProduct=Tornar a la fitxa producte/servei ReturnInProduct=Tornar a la fitxa producte/servei
ReturnInSupplier=Tornar a la fitxa proveïdor ReturnInSupplier=Tornar a la fitxa proveïdor
@ -66,22 +64,22 @@ ReturnInCompany=Tornar a la fitxa client/client potencial
ContentsVisibleByAll=El contingut serà visible per tots ContentsVisibleByAll=El contingut serà visible per tots
ContentsVisibleByAllShort=Contingut visible per tots ContentsVisibleByAllShort=Contingut visible per tots
ContentsNotVisibleByAllShort=Contingut no visible per tots ContentsNotVisibleByAllShort=Contingut no visible per tots
CategoriesTree=Categories tree CategoriesTree=Tags/categories tree
DeleteCategory=Eliminar categoria DeleteCategory=Delete tag/category
ConfirmDeleteCategory=Esteu segur de voler eliminar aquesta categoria? ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
RemoveFromCategory=Suprimir l'enllaç amb categoria RemoveFromCategory=Remove link with tag/categorie
RemoveFromCategoryConfirm=Esteu segur de voler eliminar el vincle entre la transacció i la categoria? RemoveFromCategoryConfirm=Are you sure you want to remove link between the transaction and the tag/category ?
NoCategoriesDefined=Cap categoria definida NoCategoriesDefined=No tag/category defined
SuppliersCategoryShort=Categoria proveïdors SuppliersCategoryShort=Suppliers tags/category
CustomersCategoryShort=Categoria clients CustomersCategoryShort=Customers tags/category
ProductsCategoryShort=Categoria productes ProductsCategoryShort=Products tags/category
MembersCategoryShort=Categoria membre MembersCategoryShort=Members tags/category
SuppliersCategoriesShort=Categories proveïdors SuppliersCategoriesShort=Suppliers tags/categories
CustomersCategoriesShort=Categories clients CustomersCategoriesShort=Customers tags/categories
CustomersProspectsCategoriesShort=Categories clients CustomersProspectsCategoriesShort=Categories clients
ProductsCategoriesShort=Categories productes ProductsCategoriesShort=Products tags/categories
MembersCategoriesShort=Categories membres MembersCategoriesShort=Members tags/categories
ContactCategoriesShort=Categories contactes ContactCategoriesShort=Contacts tags/categories
ThisCategoryHasNoProduct=Aquesta categoria no conté cap producte. ThisCategoryHasNoProduct=Aquesta categoria no conté cap producte.
ThisCategoryHasNoSupplier=Aquesta categoria no conté cap proveïdor. ThisCategoryHasNoSupplier=Aquesta categoria no conté cap proveïdor.
ThisCategoryHasNoCustomer=Aquesta categoria no conté cap client. ThisCategoryHasNoCustomer=Aquesta categoria no conté cap client.
@ -90,23 +88,23 @@ ThisCategoryHasNoContact=Aquesta categoria no conté contactes
AssignedToCustomer=Assignar a un client AssignedToCustomer=Assignar a un client
AssignedToTheCustomer=Assignat a un client AssignedToTheCustomer=Assignat a un client
InternalCategory=Categoria interna InternalCategory=Categoria interna
CategoryContents=Contingut de la categoria CategoryContents=Tag/category contents
CategId=Id categoria CategId=Tag/category id
CatSupList=Llista de categories de proveïdors CatSupList=List of supplier tags/categories
CatCusList=Llista de categories de clients/potencials CatCusList=List of customer/prospect tags/categories
CatProdList=Llista de categories de productes CatProdList=List of products tags/categories
CatMemberList=Llista de categories de membres CatMemberList=List of members tags/categories
CatContactList=Llistat de categories de contactes i contactes CatContactList=List of contact tags/categories and contact
CatSupLinks=Proveïdors CatSupLinks=Links between suppliers and tags/categories
CatCusLinks=Clients/Clients potencials CatCusLinks=Links between customers/prospects and tags/categories
CatProdLinks=Productes CatProdLinks=Links between products/services and tags/categories
CatMemberLinks=Membres CatMemberLinks=Links between members and tags/categories
DeleteFromCat=Eliminar de la categoria DeleteFromCat=Remove from tags/category
DeletePicture=Picture delete DeletePicture=Picture delete
ConfirmDeletePicture=Confirm picture deletion? ConfirmDeletePicture=Confirm picture deletion?
ExtraFieldsCategories=Complementary attributes ExtraFieldsCategories=Complementary attributes
CategoriesSetup=Categories setup CategoriesSetup=Tags/categories setup
CategorieRecursiv=Link with parent category automatically CategorieRecursiv=Link with parent tag/category automatically
CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory
AddProductServiceIntoCategory=Add the following product/service AddProductServiceIntoCategory=Add the following product/service
ShowCategory=Show category ShowCategory=Show tag/category

View File

@ -26,15 +26,15 @@ CronLastOutput=Última sortida
CronLastResult=Últim codi tornat CronLastResult=Últim codi tornat
CronListOfCronJobs=Llista de tasques programades CronListOfCronJobs=Llista de tasques programades
CronCommand=Comando CronCommand=Comando
CronList=Llistat de tasques planificades CronList=Scheduled job
CronDelete= Eliminar la tasca planificada CronDelete=Delete scheduled jobs
CronConfirmDelete= Està segur que voleu eliminar aquesta tasca planificada? CronConfirmDelete=Are you sure you want to delete this scheduled jobs ?
CronExecute=Executar aquesta tasca CronExecute=Launch scheduled jobs
CronConfirmExecute= Està segur que voleu executar ara aquesta tasca? CronConfirmExecute=Are you sure to execute this scheduled jobs now ?
CronInfo= Els treballs permeten executar les tasques a intervals regulars CronInfo=Scheduled job module allow to execute job that have been planned
CronWaitingJobs=Els seus treballs en espera: CronWaitingJobs=Waiting jobs
CronTask=Tasca CronTask=Tasca
CronNone= Ningún CronNone=Ningún
CronDtStart=Data inici CronDtStart=Data inici
CronDtEnd=Data fi CronDtEnd=Data fi
CronDtNextLaunch=Propera execució CronDtNextLaunch=Propera execució
@ -75,6 +75,7 @@ CronObjectHelp=El nombre del objeto a crear. <BR> Por ejemplo para llamar el mé
CronMethodHelp=El método a lanzar. <BR> Por ejemplo para llamar el método fetch del objeto Product de Dolibarr /htdocs/product/class/product.class.php, el valor del método es <i>fecth</i> CronMethodHelp=El método a lanzar. <BR> Por ejemplo para llamar el método fetch del objeto Product de Dolibarr /htdocs/product/class/product.class.php, el valor del método es <i>fecth</i>
CronArgsHelp=Los argumentos del método. <BR> Por ejemplo para usar el método fetch del objeto Product deDolibarr /htdocs/product/class/product.class.php, el valor del parámetro podría ser <i>0, RefProduit</i> CronArgsHelp=Los argumentos del método. <BR> Por ejemplo para usar el método fetch del objeto Product deDolibarr /htdocs/product/class/product.class.php, el valor del parámetro podría ser <i>0, RefProduit</i>
CronCommandHelp=El comando del sistema a executar CronCommandHelp=El comando del sistema a executar
CronCreateJob=Create new Scheduled Job
# Info # Info
CronInfoPage=Informació CronInfoPage=Informació
# Common # Common

View File

@ -6,6 +6,8 @@ Donor=Donant
Donors=Donants Donors=Donants
AddDonation=Create a donation AddDonation=Create a donation
NewDonation=Nova donació NewDonation=Nova donació
DeleteADonation=Delete a donation
ConfirmDeleteADonation=Are you sure you want to delete this donation ?
ShowDonation=Mostrar donació ShowDonation=Mostrar donació
DonationPromise=Promesa de donació DonationPromise=Promesa de donació
PromisesNotValid=Promeses no validades PromisesNotValid=Promeses no validades
@ -21,6 +23,8 @@ DonationStatusPaid=Donació pagada
DonationStatusPromiseNotValidatedShort=No validada DonationStatusPromiseNotValidatedShort=No validada
DonationStatusPromiseValidatedShort=Validada DonationStatusPromiseValidatedShort=Validada
DonationStatusPaidShort=Pagada DonationStatusPaidShort=Pagada
DonationTitle=Donation receipt
DonationDatePayment=Payment date
ValidPromess=Validar promesa ValidPromess=Validar promesa
DonationReceipt=Rebut de donació DonationReceipt=Rebut de donació
BuildDonationReceipt=Crear rebut BuildDonationReceipt=Crear rebut
@ -36,3 +40,4 @@ FrenchOptions=Options for France
DONATION_ART200=Show article 200 from CGI if you are concerned DONATION_ART200=Show article 200 from CGI if you are concerned
DONATION_ART238=Show article 238 from CGI if you are concerned DONATION_ART238=Show article 238 from CGI if you are concerned
DONATION_ART885=Show article 885 from CGI if you are concerned DONATION_ART885=Show article 885 from CGI if you are concerned
DonationPayment=Donation payment

View File

@ -161,6 +161,12 @@ ErrorPriceExpressionUnknown=Unknown error '%s'
ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs
ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information
ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action
ErrorGlobalVariableUpdater0=HTTP request failed with error '%s'
ErrorGlobalVariableUpdater1=Invalid JSON format '%s'
ErrorGlobalVariableUpdater2=Missing parameter '%s'
ErrorGlobalVariableUpdater3=The requested data was not found in result
ErrorGlobalVariableUpdater4=SOAP client failed with error '%s'
ErrorGlobalVariableUpdater5=No global variable selected
# Warnings # Warnings
WarningMandatorySetupNotComplete=Els paràmetres obligatoris de configuració no estan encara definits WarningMandatorySetupNotComplete=Els paràmetres obligatoris de configuració no estan encara definits

View File

@ -139,3 +139,5 @@ ListOfNotificationsDone=Llista de notificacions d'e-mails enviades
MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing. MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature. MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s. MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
NbOfTargetedContacts=Current number of targeted contact emails

View File

@ -352,6 +352,7 @@ Status=Estat
Favorite=Favorite Favorite=Favorite
ShortInfo=Info. ShortInfo=Info.
Ref=Ref. Ref=Ref.
ExternalRef=Ref. extern
RefSupplier=Ref. proveïdor RefSupplier=Ref. proveïdor
RefPayment=Ref. pagament RefPayment=Ref. pagament
CommercialProposalsShort=Pressupostos CommercialProposalsShort=Pressupostos
@ -394,8 +395,8 @@ Available=Disponible
NotYetAvailable=Encara no disponible NotYetAvailable=Encara no disponible
NotAvailable=No disponible NotAvailable=No disponible
Popularity=Popularitat Popularity=Popularitat
Categories=Categories Categories=Tags/categories
Category=Categoria Category=Tag/category
By=Per By=Per
From=De From=De
to=a to=a
@ -694,6 +695,7 @@ AddBox=Add box
SelectElementAndClickRefresh=Select an element and click Refresh SelectElementAndClickRefresh=Select an element and click Refresh
PrintFile=Print File %s PrintFile=Print File %s
ShowTransaction=Show transaction ShowTransaction=Show transaction
GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
# Week day # Week day
Monday=Dilluns Monday=Dilluns
Tuesday=Dimarts Tuesday=Dimarts

View File

@ -64,7 +64,8 @@ ShipProduct=Enviar producte
Discount=Descompte Discount=Descompte
CreateOrder=Crear comanda CreateOrder=Crear comanda
RefuseOrder=Rebutjar la comanda RefuseOrder=Rebutjar la comanda
ApproveOrder=Acceptar la comanda ApproveOrder=Approve order
Approve2Order=Approve order (second level)
ValidateOrder=Validar la comanda ValidateOrder=Validar la comanda
UnvalidateOrder=Desvalidar la comanda UnvalidateOrder=Desvalidar la comanda
DeleteOrder=Eliminar la comanda DeleteOrder=Eliminar la comanda
@ -102,6 +103,8 @@ ClassifyBilled=Classificar facturat
ComptaCard=Fitxa comptable ComptaCard=Fitxa comptable
DraftOrders=Comandes esborrany DraftOrders=Comandes esborrany
RelatedOrders=Comandes adjuntes RelatedOrders=Comandes adjuntes
RelatedCustomerOrders=Related customer orders
RelatedSupplierOrders=Related supplier orders
OnProcessOrders=Comandes en procés OnProcessOrders=Comandes en procés
RefOrder=Ref. comanda RefOrder=Ref. comanda
RefCustomerOrder=Ref. comanda client RefCustomerOrder=Ref. comanda client
@ -118,6 +121,7 @@ PaymentOrderRef=Pagament comanda %s
CloneOrder=Clonar comanda CloneOrder=Clonar comanda
ConfirmCloneOrder=Esteu segur de voler clonar aquesta comanda <b>%s</b>? ConfirmCloneOrder=Esteu segur de voler clonar aquesta comanda <b>%s</b>?
DispatchSupplierOrder=Recepció de la comanda a proveïdor %s DispatchSupplierOrder=Recepció de la comanda a proveïdor %s
FirstApprovalAlreadyDone=First approval already done
##### Types de contacts ##### ##### Types de contacts #####
TypeContact_commande_internal_SALESREPFOLL=Responsable seguiment comanda client TypeContact_commande_internal_SALESREPFOLL=Responsable seguiment comanda client
TypeContact_commande_internal_SHIPPING=Responsable enviament comanda client TypeContact_commande_internal_SHIPPING=Responsable enviament comanda client

View File

@ -12,6 +12,7 @@ Notify_FICHINTER_VALIDATE=Validació fitxa intervenció
Notify_FICHINTER_SENTBYMAIL=Enviament fitxa intervenció per e-mail Notify_FICHINTER_SENTBYMAIL=Enviament fitxa intervenció per e-mail
Notify_BILL_VALIDATE=Validació factura Notify_BILL_VALIDATE=Validació factura
Notify_BILL_UNVALIDATE=Devalidació factura a client Notify_BILL_UNVALIDATE=Devalidació factura a client
Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_APPROVE=Aprovació comanda a proveïdor Notify_ORDER_SUPPLIER_APPROVE=Aprovació comanda a proveïdor
Notify_ORDER_SUPPLIER_REFUSE=Rebuig comanda a proveïdor Notify_ORDER_SUPPLIER_REFUSE=Rebuig comanda a proveïdor
Notify_ORDER_VALIDATE=Validació comanda client Notify_ORDER_VALIDATE=Validació comanda client
@ -28,7 +29,7 @@ Notify_PROPAL_SENTBYMAIL=Enviament pressupost per e-mail
Notify_BILL_PAYED=Cobrament factura a client Notify_BILL_PAYED=Cobrament factura a client
Notify_BILL_CANCEL=Cancel·lació factura a client Notify_BILL_CANCEL=Cancel·lació factura a client
Notify_BILL_SENTBYMAIL=Enviament factura a client per e-mail Notify_BILL_SENTBYMAIL=Enviament factura a client per e-mail
Notify_ORDER_SUPPLIER_VALIDATE=Validació comanda a proveïdor Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_SENTBYMAIL=Enviament comanda a proveïdor per e-mail Notify_ORDER_SUPPLIER_SENTBYMAIL=Enviament comanda a proveïdor per e-mail
Notify_BILL_SUPPLIER_VALIDATE=Validació factura de proveïdor Notify_BILL_SUPPLIER_VALIDATE=Validació factura de proveïdor
Notify_BILL_SUPPLIER_PAYED=Pagament factura de proveïdor Notify_BILL_SUPPLIER_PAYED=Pagament factura de proveïdor
@ -47,7 +48,7 @@ Notify_PROJECT_CREATE=Project creation
Notify_TASK_CREATE=Task created Notify_TASK_CREATE=Task created
Notify_TASK_MODIFY=Task modified Notify_TASK_MODIFY=Task modified
Notify_TASK_DELETE=Task deleted Notify_TASK_DELETE=Task deleted
SeeModuleSetup=See module setup SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Número arxius/documents adjunts NbOfAttachedFiles=Número arxius/documents adjunts
TotalSizeOfAttachedFiles=Mida total dels arxius/documents adjunts TotalSizeOfAttachedFiles=Mida total dels arxius/documents adjunts
MaxSize=Tamany màxim MaxSize=Tamany màxim
@ -170,6 +171,7 @@ EMailTextInvoiceValidated=Factura %s validada
EMailTextProposalValidated=El pressupost %s que el concerneix ha estat validat. EMailTextProposalValidated=El pressupost %s que el concerneix ha estat validat.
EMailTextOrderValidated=La comanda %s que el concerneix ha estat validada. EMailTextOrderValidated=La comanda %s que el concerneix ha estat validada.
EMailTextOrderApproved=Comanda %s aprovada EMailTextOrderApproved=Comanda %s aprovada
EMailTextOrderValidatedBy=The order %s has been recorded by %s.
EMailTextOrderApprovedBy=Comanda %s aprovada per %s EMailTextOrderApprovedBy=Comanda %s aprovada per %s
EMailTextOrderRefused=Comanda %s rebutjada EMailTextOrderRefused=Comanda %s rebutjada
EMailTextOrderRefusedBy=Comanda %s rebutjada per %s EMailTextOrderRefusedBy=Comanda %s rebutjada per %s

View File

@ -245,12 +245,25 @@ MinimumRecommendedPrice=Minimum recommended price is : %s
PriceExpressionEditor=Price expression editor PriceExpressionEditor=Price expression editor
PriceExpressionSelected=Selected price expression PriceExpressionSelected=Selected price expression
PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions
PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#options_myextrafieldkey#</b> PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#extrafield_myextrafieldkey#</b> and global variables with <b>#global_mycode#</b>
PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b> PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b> PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b>
PriceExpressionEditorHelp5=Available global values:
PriceMode=Price mode PriceMode=Price mode
PriceNumeric=Number PriceNumeric=Number
DefaultPrice=Default price DefaultPrice=Default price
ComposedProductIncDecStock=Increase/Decrease stock on parent change ComposedProductIncDecStock=Increase/Decrease stock on parent change
ComposedProduct=Sub-product ComposedProduct=Sub-product
MinSupplierPrice=Minimun supplier price MinSupplierPrice=Minimum supplier price
DynamicPriceConfiguration=Dynamic price configuration
GlobalVariables=Global variables
GlobalVariableUpdaters=Global variable updaters
GlobalVariableUpdaterType0=JSON data
GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value,
GlobalVariableUpdaterHelpFormat0=format is {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
GlobalVariableUpdaterType1=WebService data
GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method
GlobalVariableUpdaterHelpFormat1=format is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
UpdateInterval=Update interval (minutes)
LastUpdated=Last updated
CorrectlyUpdated=Correctly updated

View File

@ -72,6 +72,7 @@ ListSupplierInvoicesAssociatedProject=Llistat de factures de proveïdor associad
ListContractAssociatedProject=Llistatde contractes associats al projecte ListContractAssociatedProject=Llistatde contractes associats al projecte
ListFichinterAssociatedProject=Llistat d'intervencions associades al projecte ListFichinterAssociatedProject=Llistat d'intervencions associades al projecte
ListExpenseReportsAssociatedProject=List of expense reports associated with the project ListExpenseReportsAssociatedProject=List of expense reports associated with the project
ListDonationsAssociatedProject=List of donations associated with the project
ListActionsAssociatedProject=Llista d'esdeveniments associats al projecte ListActionsAssociatedProject=Llista d'esdeveniments associats al projecte
ActivityOnProjectThisWeek=Activitat en el projecte aquesta setmana ActivityOnProjectThisWeek=Activitat en el projecte aquesta setmana
ActivityOnProjectThisMonth=Activitat en el projecte aquest mes ActivityOnProjectThisMonth=Activitat en el projecte aquest mes

View File

@ -2,6 +2,7 @@
RefSending=Ref enviament RefSending=Ref enviament
Sending=Enviament Sending=Enviament
Sendings=Enviaments Sendings=Enviaments
AllSendings=All Shipments
Shipment=Enviament Shipment=Enviament
Shipments=Enviaments Shipments=Enviaments
ShowSending=Show Sending ShowSending=Show Sending

View File

@ -43,3 +43,4 @@ ListOfSupplierOrders=List of supplier orders
MenuOrdersSupplierToBill=Supplier orders to invoice MenuOrdersSupplierToBill=Supplier orders to invoice
NbDaysToDelivery=Delivery delay in days NbDaysToDelivery=Delivery delay in days
DescNbDaysToDelivery=The biggest delay is display among order product list DescNbDaysToDelivery=The biggest delay is display among order product list
UseDoubleApproval=Use double approval (the second approval will be any user of a defined user group)

View File

@ -389,6 +389,7 @@ ExtrafieldSeparator=Oddělovač
ExtrafieldCheckBox=Zaškrtávací políčko ExtrafieldCheckBox=Zaškrtávací políčko
ExtrafieldRadio=Přepínač ExtrafieldRadio=Přepínač
ExtrafieldCheckBoxFromList= Checkbox from table ExtrafieldCheckBoxFromList= Checkbox from table
ExtrafieldLink=Link to an object
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
@ -494,6 +495,8 @@ Module500Name=Zvláštní náklady (daně, sociální příspěvky a dividendy)
Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries
Module510Name=Salaries Module510Name=Salaries
Module510Desc=Management of employees salaries and payments Module510Desc=Management of employees salaries and payments
Module520Name=Loan
Module520Desc=Management of loans
Module600Name=Upozornění Module600Name=Upozornění
Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty) Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
Module700Name=Dary Module700Name=Dary
@ -508,14 +511,14 @@ Module1400Name=Účetnictví
Module1400Desc=Vedení účetnictví (dvojité strany) Module1400Desc=Vedení účetnictví (dvojité strany)
Module1520Name=Document Generation Module1520Name=Document Generation
Module1520Desc=Mass mail document generation Module1520Desc=Mass mail document generation
Module1780Name=Kategorie Module1780Name=Tags/Categories
Module1780Desc=Category management (produkty, dodavatelé a odběratelé) Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
Module2000Name=WYSIWYG editor Module2000Name=WYSIWYG editor
Module2000Desc=Nechte upravit některé textové pole pomocí pokročilého editoru Module2000Desc=Nechte upravit některé textové pole pomocí pokročilého editoru
Module2200Name=Dynamic Prices Module2200Name=Dynamic Prices
Module2200Desc=Enable the usage of math expressions for prices Module2200Desc=Enable the usage of math expressions for prices
Module2300Name=Cron Module2300Name=Cron
Module2300Desc=Plánované správu úloh Module2300Desc=Scheduled job management
Module2400Name=Pořad jednání Module2400Name=Pořad jednání
Module2400Desc=Události / úkoly a agendy vedení Module2400Desc=Události / úkoly a agendy vedení
Module2500Name=Elektronický Redakční Module2500Name=Elektronický Redakční
@ -714,6 +717,11 @@ Permission510=Read Salaries
Permission512=Create/modify salaries Permission512=Create/modify salaries
Permission514=Delete salaries Permission514=Delete salaries
Permission517=Export salaries Permission517=Export salaries
Permission520=Read Loans
Permission522=Create/modify loans
Permission524=Delete loans
Permission525=Access loan calculator
Permission527=Export loans
Permission531=Přečtěte služby Permission531=Přečtěte služby
Permission532=Vytvořit / upravit služby Permission532=Vytvořit / upravit služby
Permission534=Odstranit služby Permission534=Odstranit služby
@ -746,6 +754,7 @@ Permission1185=Schválit dodavatelských objednávek
Permission1186=Objednávky Objednat dodavatel Permission1186=Objednávky Objednat dodavatel
Permission1187=Potvrzení přijetí dodavatelských objednávek Permission1187=Potvrzení přijetí dodavatelských objednávek
Permission1188=Odstranit dodavatelských objednávek Permission1188=Odstranit dodavatelských objednávek
Permission1190=Approve (second approval) supplier orders
Permission1201=Získejte výsledek exportu Permission1201=Získejte výsledek exportu
Permission1202=Vytvořit / Upravit vývoz Permission1202=Vytvořit / Upravit vývoz
Permission1231=Přečtěte si dodavatelské faktury Permission1231=Přečtěte si dodavatelské faktury
@ -758,10 +767,10 @@ Permission1237=Export dodavatelské objednávky a informace o nich
Permission1251=Spustit Hmotné dovozy externích dat do databáze (načítání dat) Permission1251=Spustit Hmotné dovozy externích dat do databáze (načítání dat)
Permission1321=Export zákazníků faktury, atributy a platby Permission1321=Export zákazníků faktury, atributy a platby
Permission1421=Export objednávek zákazníků a atributy Permission1421=Export objednávek zákazníků a atributy
Permission23001 = Přečtěte si naplánovaná úloha Permission23001=Read Scheduled job
Permission23002 = Vytvořit / aktualizovat naplánovanou úlohu Permission23002=Create/update Scheduled job
Permission23003 = Odstranit naplánovaná úloha Permission23003=Delete Scheduled job
Permission23004 = Provést naplánované úlohy, Permission23004=Execute Scheduled job
Permission2401=Přečtěte akce (události nebo úkoly) které souvisí s jeho účet Permission2401=Přečtěte akce (události nebo úkoly) které souvisí s jeho účet
Permission2402=Vytvořit / upravit akce (události nebo úkoly) které souvisí s jeho účet Permission2402=Vytvořit / upravit akce (události nebo úkoly) které souvisí s jeho účet
Permission2403=Odstranit akce (události nebo úkoly) které souvisí s jeho účet Permission2403=Odstranit akce (události nebo úkoly) které souvisí s jeho účet
@ -1107,7 +1116,7 @@ ModuleCompanyCodeAquarium=Vrátit evidence kód postavený podle: <br> %s násle
ModuleCompanyCodePanicum=Zpět prázdný evidence kód. ModuleCompanyCodePanicum=Zpět prázdný evidence kód.
ModuleCompanyCodeDigitaria=Účetnictví kód závisí na kódu třetích stran. Kód se skládá ze znaku &quot;C&quot; na prvním místě následuje prvních 5 znaků kódu třetích stran. ModuleCompanyCodeDigitaria=Účetnictví kód závisí na kódu třetích stran. Kód se skládá ze znaku &quot;C&quot; na prvním místě následuje prvních 5 znaků kódu třetích stran.
UseNotifications=Použití oznámení UseNotifications=Použití oznámení
NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one third party at time.<br>* or by setting a global target email address on module setup page. NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one contact at time.<br>* or by setting global target email addresses in module setup page.
ModelModules=Dokumenty šablony ModelModules=Dokumenty šablony
DocumentModelOdt=Generování dokumentů z OpenDocuments šablon (. ODT nebo ODS. Soubory OpenOffice, KOffice, TextEdit, ...) DocumentModelOdt=Generování dokumentů z OpenDocuments šablon (. ODT nebo ODS. Soubory OpenOffice, KOffice, TextEdit, ...)
WatermarkOnDraft=Vodoznak na návrhu dokumentu WatermarkOnDraft=Vodoznak na návrhu dokumentu
@ -1557,6 +1566,7 @@ SuppliersSetup=Dodavatel modul nastavení
SuppliersCommandModel=Kompletní šablona se s dodavately řádu (logo. ..) SuppliersCommandModel=Kompletní šablona se s dodavately řádu (logo. ..)
SuppliersInvoiceModel=Kompletní šablona dodavatelské faktury (logo. ..) SuppliersInvoiceModel=Kompletní šablona dodavatelské faktury (logo. ..)
SuppliersInvoiceNumberingModel=Dodavatelských faktur číslování modelů SuppliersInvoiceNumberingModel=Dodavatelských faktur číslování modelů
IfSetToYesDontForgetPermission=If set to yes, don't forget to provide permissions to groups or users allowed for the second approval
##### GeoIPMaxmind ##### ##### GeoIPMaxmind #####
GeoIPMaxmindSetup=GeoIP Maxmind modul nastavení GeoIPMaxmindSetup=GeoIP Maxmind modul nastavení
PathToGeoIPMaxmindCountryDataFile=Cesta k souboru obsahující Maxmind IP pro země překladu. <br> Příklady: <br> / Usr / local / share / GeoIP / GeoIP.dat <br> / Usr / share / GeoIP / GeoIP.dat PathToGeoIPMaxmindCountryDataFile=Cesta k souboru obsahující Maxmind IP pro země překladu. <br> Příklady: <br> / Usr / local / share / GeoIP / GeoIP.dat <br> / Usr / share / GeoIP / GeoIP.dat
@ -1601,3 +1611,8 @@ ExpenseReportsSetup=Setup of module Expense Reports
TemplatePDFExpenseReports=Document templates to generate expense report document TemplatePDFExpenseReports=Document templates to generate expense report document
NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only. NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only.
NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only. NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for EMail notifications by enabling and configuring the module "Notification".
ListOfNotificationsPerContact=List of notifications per contact*
ListOfFixedNotifications=List of fixed notifications
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
Threshold=Threshold

View File

@ -48,7 +48,10 @@ InvoiceValidatedInDolibarr=Faktura %s ověřena
InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
InvoiceBackToDraftInDolibarr=Faktura %s vrátit do stavu návrhu InvoiceBackToDraftInDolibarr=Faktura %s vrátit do stavu návrhu
InvoiceDeleteDolibarr=Faktura %s smazána InvoiceDeleteDolibarr=Faktura %s smazána
OrderValidatedInDolibarr= Objednat %s ověřena OrderValidatedInDolibarr=Objednat %s ověřena
OrderDeliveredInDolibarr=Order %s classified delivered
OrderCanceledInDolibarr=Objednat %s zrušen
OrderBilledInDolibarr=Order %s classified billed
OrderApprovedInDolibarr=Objednat %s schválen OrderApprovedInDolibarr=Objednat %s schválen
OrderRefusedInDolibarr=Order %s refused OrderRefusedInDolibarr=Order %s refused
OrderBackToDraftInDolibarr=Objednat %s vrátit do stavu návrhu OrderBackToDraftInDolibarr=Objednat %s vrátit do stavu návrhu
@ -91,3 +94,5 @@ WorkingTimeRange=Working time range
WorkingDaysRange=Working days range WorkingDaysRange=Working days range
AddEvent=Create event AddEvent=Create event
MyAvailability=My availability MyAvailability=My availability
ActionType=Event type
DateActionBegin=Start event date

View File

@ -294,6 +294,8 @@ TotalOfTwoDiscountMustEqualsOriginal=Celkem dva nové slevy musí být roven pů
ConfirmRemoveDiscount=Jste si jisti, že chcete odstranit tuto slevu? ConfirmRemoveDiscount=Jste si jisti, že chcete odstranit tuto slevu?
RelatedBill=Související faktura RelatedBill=Související faktura
RelatedBills=Související faktury RelatedBills=Související faktury
RelatedCustomerInvoices=Related customer invoices
RelatedSupplierInvoices=Related supplier invoices
LatestRelatedBill=Latest related invoice LatestRelatedBill=Latest related invoice
WarningBillExist=Warning, one or more invoice already exist WarningBillExist=Warning, one or more invoice already exist

View File

@ -1,64 +1,62 @@
# Dolibarr language file - Source file is en_US - categories # Dolibarr language file - Source file is en_US - categories
Category=Kategorie Rubrique=Tag/Category
Categories=Kategorie Rubriques=Tags/Categories
Rubrique=Kategorie categories=tags/categories
Rubriques=Kategorie TheCategorie=The tag/category
categories=kategorie NoCategoryYet=No tag/category of this type created
TheCategorie=Kategorie
NoCategoryYet=Žádné kategorii tohoto typu vytvořeného
In=V In=V
AddIn=Přidejte AddIn=Přidejte
modify=upravit modify=upravit
Classify=Klasifikovat Classify=Klasifikovat
CategoriesArea=Kategorie plocha CategoriesArea=Tags/Categories area
ProductsCategoriesArea=Produkty / služby kategorie oblasti ProductsCategoriesArea=Products/Services tags/categories area
SuppliersCategoriesArea=Dodavatelé kategorie oblastí SuppliersCategoriesArea=Suppliers tags/categories area
CustomersCategoriesArea=Zákazníci kategorie oblastí CustomersCategoriesArea=Customers tags/categories area
ThirdPartyCategoriesArea=Třetí strany Kategorie plocha ThirdPartyCategoriesArea=Third parties tags/categories area
MembersCategoriesArea=Členové kategorie oblastí MembersCategoriesArea=Members tags/categories area
ContactsCategoriesArea=Kontakty Kategorie plocha ContactsCategoriesArea=Contacts tags/categories area
MainCats=Hlavní kategorie MainCats=Main tags/categories
SubCats=Podkategorie SubCats=Podkategorie
CatStatistics=Statistika CatStatistics=Statistika
CatList=Seznam kategorií CatList=List of tags/categories
AllCats=Všechny kategorie AllCats=All tags/categories
ViewCat=Zobrazit kategorii ViewCat=View tag/category
NewCat=Přidat kategorii NewCat=Add tag/category
NewCategory=Nová kategorie NewCategory=New tag/category
ModifCat=Změnit kategorii ModifCat=Modify tag/category
CatCreated=Kategorie vytvořil CatCreated=Tag/category created
CreateCat=Vytvoření kategorie CreateCat=Create tag/category
CreateThisCat=Vytvoření této kategorie CreateThisCat=Create this tag/category
ValidateFields=Ověření pole ValidateFields=Ověření pole
NoSubCat=Podkategorie. NoSubCat=Podkategorie.
SubCatOf=Podkategorie SubCatOf=Podkategorie
FoundCats=Nalezené kategorie FoundCats=Found tags/categories
FoundCatsForName=Kategorie nalezených pro výraz názvu: FoundCatsForName=Tags/categories found for the name :
FoundSubCatsIn=Podkategorie nalezené v kategorii FoundSubCatsIn=Subcategories found in the tag/category
ErrSameCatSelected=Vybrali jste stejné kategorie několikrát ErrSameCatSelected=You selected the same tag/category several times
ErrForgotCat=Zapomněli jste si vybrat kategorii ErrForgotCat=You forgot to choose the tag/category
ErrForgotField=Zapomněli jste informovat pole ErrForgotField=Zapomněli jste informovat pole
ErrCatAlreadyExists=Tento název je již používán ErrCatAlreadyExists=Tento název je již používán
AddProductToCat=Přidat tento produkt do kategorie? AddProductToCat=Add this product to a tag/category?
ImpossibleAddCat=Nelze přidat kategorii ImpossibleAddCat=Impossible to add the tag/category
ImpossibleAssociateCategory=Nelze přiřadit kategorii ImpossibleAssociateCategory=Impossible to associate the tag/category to
WasAddedSuccessfully=<b>%s</b> bylo úspěšně přidáno. WasAddedSuccessfully=<b>%s</b> bylo úspěšně přidáno.
ObjectAlreadyLinkedToCategory=Element je již připojen do této kategorie. ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
CategorySuccessfullyCreated=Tato kategorie %s byla přidána s úspěchem. CategorySuccessfullyCreated=This tag/category %s has been added with success.
ProductIsInCategories=Produktu / služby je vlastníkem následujících kategoriích ProductIsInCategories=Product/service owns to following tags/categories
SupplierIsInCategories=Třetí strana vlastní následování dodavatelů kategorií SupplierIsInCategories=Third party owns to following suppliers tags/categories
CompanyIsInCustomersCategories=Tato třetí strana vlastní pro následující zákazníků / vyhlídky kategorií CompanyIsInCustomersCategories=This third party owns to following customers/prospects tags/categories
CompanyIsInSuppliersCategories=Tato třetí strana vlastní následování dodavatelů kategorií CompanyIsInSuppliersCategories=This third party owns to following suppliers tags/categories
MemberIsInCategories=Tento člen je vlastníkem, aby tito členové kategorií MemberIsInCategories=This member owns to following members tags/categories
ContactIsInCategories=Tento kontakt je vlastníkem do následujících kategorií kontakty ContactIsInCategories=This contact owns to following contacts tags/categories
ProductHasNoCategory=Tento produkt / služba není v žádné kategorii ProductHasNoCategory=This product/service is not in any tags/categories
SupplierHasNoCategory=Tento dodavatel není v žádném kategoriích SupplierHasNoCategory=This supplier is not in any tags/categories
CompanyHasNoCategory=Tato společnost není v žádném kategoriích CompanyHasNoCategory=This company is not in any tags/categories
MemberHasNoCategory=Tento člen není v žádném kategoriích MemberHasNoCategory=This member is not in any tags/categories
ContactHasNoCategory=Tento kontakt není v žádném kategoriích ContactHasNoCategory=This contact is not in any tags/categories
ClassifyInCategory=Zařazení do kategorie ClassifyInCategory=Classify in tag/category
NoneCategory=Nikdo NoneCategory=Nikdo
NotCategorized=Bez kategorii NotCategorized=Without tag/category
CategoryExistsAtSameLevel=Tato kategorie již existuje s tímto čj CategoryExistsAtSameLevel=Tato kategorie již existuje s tímto čj
ReturnInProduct=Zpět na produkt / službu kartu ReturnInProduct=Zpět na produkt / službu kartu
ReturnInSupplier=Zpět na dodavatele karty ReturnInSupplier=Zpět na dodavatele karty
@ -66,22 +64,22 @@ ReturnInCompany=Zpět na zákazníka / Vyhlídka karty
ContentsVisibleByAll=Obsah bude vidět všichni ContentsVisibleByAll=Obsah bude vidět všichni
ContentsVisibleByAllShort=Obsah viditelné všemi ContentsVisibleByAllShort=Obsah viditelné všemi
ContentsNotVisibleByAllShort=Obsah není vidět všichni ContentsNotVisibleByAllShort=Obsah není vidět všichni
CategoriesTree=Categories tree CategoriesTree=Tags/categories tree
DeleteCategory=Odstranit kategorii DeleteCategory=Delete tag/category
ConfirmDeleteCategory=Jste si jisti, že chcete smazat tuto kategorii? ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
RemoveFromCategory=Odstraňte spojení s kategoriích RemoveFromCategory=Remove link with tag/categorie
RemoveFromCategoryConfirm=Jste si jisti, že chcete odstranit vazbu mezi transakce a kategorie? RemoveFromCategoryConfirm=Are you sure you want to remove link between the transaction and the tag/category ?
NoCategoriesDefined=Žádné definované kategorie NoCategoriesDefined=No tag/category defined
SuppliersCategoryShort=Dodavatelé kategorie SuppliersCategoryShort=Suppliers tags/category
CustomersCategoryShort=Zákazníci kategorie CustomersCategoryShort=Customers tags/category
ProductsCategoryShort=Kategorie produktů ProductsCategoryShort=Products tags/category
MembersCategoryShort=Členové kategorie MembersCategoryShort=Members tags/category
SuppliersCategoriesShort=Dodavatelé kategorie SuppliersCategoriesShort=Suppliers tags/categories
CustomersCategoriesShort=Zákazníci kategorie CustomersCategoriesShort=Customers tags/categories
CustomersProspectsCategoriesShort=Custo. / Prosp. kategorie CustomersProspectsCategoriesShort=Custo. / Prosp. kategorie
ProductsCategoriesShort=Kategorie produktů ProductsCategoriesShort=Products tags/categories
MembersCategoriesShort=Členové kategorie MembersCategoriesShort=Members tags/categories
ContactCategoriesShort=Kontakty kategorie ContactCategoriesShort=Contacts tags/categories
ThisCategoryHasNoProduct=Tato kategorie neobsahuje žádný produkt. ThisCategoryHasNoProduct=Tato kategorie neobsahuje žádný produkt.
ThisCategoryHasNoSupplier=Tato kategorie neobsahuje žádné dodavatele. ThisCategoryHasNoSupplier=Tato kategorie neobsahuje žádné dodavatele.
ThisCategoryHasNoCustomer=Tato kategorie neobsahuje žádné zákazníka. ThisCategoryHasNoCustomer=Tato kategorie neobsahuje žádné zákazníka.
@ -90,23 +88,23 @@ ThisCategoryHasNoContact=Tato kategorie neobsahuje žádný kontakt.
AssignedToCustomer=Účelově vázané k zákazníkovi AssignedToCustomer=Účelově vázané k zákazníkovi
AssignedToTheCustomer=Přiřazené zákazníkovi AssignedToTheCustomer=Přiřazené zákazníkovi
InternalCategory=Vnitřní kategorie InternalCategory=Vnitřní kategorie
CategoryContents=Kategorie obsah CategoryContents=Tag/category contents
CategId=Kategorie id CategId=Tag/category id
CatSupList=Seznam dodavatelských kategorií CatSupList=List of supplier tags/categories
CatCusList=Seznam zákazníků / vyhlídky kategorií CatCusList=List of customer/prospect tags/categories
CatProdList=Seznam kategorií produktů CatProdList=List of products tags/categories
CatMemberList=Seznam členů kategorií CatMemberList=List of members tags/categories
CatContactList=Seznam kontaktních kategorií a kontakt CatContactList=List of contact tags/categories and contact
CatSupLinks=Vazby mezi dodavateli a kategorií CatSupLinks=Links between suppliers and tags/categories
CatCusLinks=Vazby mezi zákazníky / vyhlídky a kategorií CatCusLinks=Links between customers/prospects and tags/categories
CatProdLinks=Vazby mezi produktů / služeb a kategorií CatProdLinks=Links between products/services and tags/categories
CatMemberLinks=Vazby mezi členy a kategorií CatMemberLinks=Links between members and tags/categories
DeleteFromCat=Odebrat z kategorie DeleteFromCat=Remove from tags/category
DeletePicture=Picture delete DeletePicture=Picture delete
ConfirmDeletePicture=Confirm picture deletion? ConfirmDeletePicture=Confirm picture deletion?
ExtraFieldsCategories=Complementary attributes ExtraFieldsCategories=Complementary attributes
CategoriesSetup=Nastavení kategorií CategoriesSetup=Tags/categories setup
CategorieRecursiv=Link with parent category automatically CategorieRecursiv=Link with parent tag/category automatically
CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory
AddProductServiceIntoCategory=Add the following product/service AddProductServiceIntoCategory=Add the following product/service
ShowCategory=Show category ShowCategory=Show tag/category

View File

@ -26,15 +26,15 @@ CronLastOutput=Poslední běh výstup
CronLastResult=Poslední kód výsledku CronLastResult=Poslední kód výsledku
CronListOfCronJobs=Seznam naplánovaných úloh CronListOfCronJobs=Seznam naplánovaných úloh
CronCommand=Příkaz CronCommand=Příkaz
CronList=Jobs list CronList=Scheduled job
CronDelete= Odstranit cron CronDelete=Delete scheduled jobs
CronConfirmDelete= Jste si jisti, že chcete smazat tento cron? CronConfirmDelete=Are you sure you want to delete this scheduled jobs ?
CronExecute=Zahájení práce CronExecute=Launch scheduled jobs
CronConfirmExecute= Opravdu chcete provést tuto práci nyní CronConfirmExecute=Are you sure to execute this scheduled jobs now ?
CronInfo= Práce umožňují provádět úlohy, které byly plánované CronInfo=Scheduled job module allow to execute job that have been planned
CronWaitingJobs=Wainting pracovních míst CronWaitingJobs=Waiting jobs
CronTask=Práce CronTask=Práce
CronNone= Nikdo CronNone=Nikdo
CronDtStart=Datum zahájení CronDtStart=Datum zahájení
CronDtEnd=Datum ukončení CronDtEnd=Datum ukončení
CronDtNextLaunch=Další provedení CronDtNextLaunch=Další provedení
@ -75,6 +75,7 @@ CronObjectHelp=Název objektu načíst. <BR> Např načíst metody objektu výro
CronMethodHelp=Objekt způsob startu. <BR> Např načíst metody objektu výrobku Dolibarr / htdocs / produktu / třída / product.class.php, hodnota metody je <i>fecth</i> CronMethodHelp=Objekt způsob startu. <BR> Např načíst metody objektu výrobku Dolibarr / htdocs / produktu / třída / product.class.php, hodnota metody je <i>fecth</i>
CronArgsHelp=Metoda argumenty. <BR> Např načíst metody objektu výrobku Dolibarr / htdocs / produktu / třída / product.class.php, může být hodnota paramters být <i>0, ProductRef</i> CronArgsHelp=Metoda argumenty. <BR> Např načíst metody objektu výrobku Dolibarr / htdocs / produktu / třída / product.class.php, může být hodnota paramters být <i>0, ProductRef</i>
CronCommandHelp=Systém příkazového řádku spustit. CronCommandHelp=Systém příkazového řádku spustit.
CronCreateJob=Create new Scheduled Job
# Info # Info
CronInfoPage=Informace CronInfoPage=Informace
# Common # Common

View File

@ -6,6 +6,8 @@ Donor=Dárce
Donors=Dárci Donors=Dárci
AddDonation=Create a donation AddDonation=Create a donation
NewDonation=Nový dárcovství NewDonation=Nový dárcovství
DeleteADonation=Delete a donation
ConfirmDeleteADonation=Are you sure you want to delete this donation ?
ShowDonation=Zobrazit dar ShowDonation=Zobrazit dar
DonationPromise=Dárkové slib DonationPromise=Dárkové slib
PromisesNotValid=Nevaliduje sliby PromisesNotValid=Nevaliduje sliby
@ -21,6 +23,8 @@ DonationStatusPaid=Dotace přijaté
DonationStatusPromiseNotValidatedShort=Návrh DonationStatusPromiseNotValidatedShort=Návrh
DonationStatusPromiseValidatedShort=Ověřené DonationStatusPromiseValidatedShort=Ověřené
DonationStatusPaidShort=Přijaté DonationStatusPaidShort=Přijaté
DonationTitle=Donation receipt
DonationDatePayment=Payment date
ValidPromess=Ověřit slib ValidPromess=Ověřit slib
DonationReceipt=Darování příjem DonationReceipt=Darování příjem
BuildDonationReceipt=Build přijetí BuildDonationReceipt=Build přijetí
@ -36,3 +40,4 @@ FrenchOptions=Options for France
DONATION_ART200=Show article 200 from CGI if you are concerned DONATION_ART200=Show article 200 from CGI if you are concerned
DONATION_ART238=Show article 238 from CGI if you are concerned DONATION_ART238=Show article 238 from CGI if you are concerned
DONATION_ART885=Show article 885 from CGI if you are concerned DONATION_ART885=Show article 885 from CGI if you are concerned
DonationPayment=Donation payment

View File

@ -161,6 +161,12 @@ ErrorPriceExpressionUnknown=Unknown error '%s'
ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs
ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information
ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action
ErrorGlobalVariableUpdater0=HTTP request failed with error '%s'
ErrorGlobalVariableUpdater1=Invalid JSON format '%s'
ErrorGlobalVariableUpdater2=Missing parameter '%s'
ErrorGlobalVariableUpdater3=The requested data was not found in result
ErrorGlobalVariableUpdater4=SOAP client failed with error '%s'
ErrorGlobalVariableUpdater5=No global variable selected
# Warnings # Warnings
WarningMandatorySetupNotComplete=Povinné parametry jsou dosud stanoveny WarningMandatorySetupNotComplete=Povinné parametry jsou dosud stanoveny

View File

@ -139,3 +139,5 @@ ListOfNotificationsDone=Vypsat všechny e-maily odesílané oznámení
MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing. MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature. MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s. MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
NbOfTargetedContacts=Current number of targeted contact emails

View File

@ -352,6 +352,7 @@ Status=Postavení
Favorite=Favorite Favorite=Favorite
ShortInfo=Info. ShortInfo=Info.
Ref=Ref. Ref=Ref.
ExternalRef=Ref. extern
RefSupplier=Ref. dodavatel RefSupplier=Ref. dodavatel
RefPayment=Ref. platba RefPayment=Ref. platba
CommercialProposalsShort=Komerční návrhy CommercialProposalsShort=Komerční návrhy
@ -394,8 +395,8 @@ Available=Dostupný
NotYetAvailable=Zatím není k dispozici NotYetAvailable=Zatím není k dispozici
NotAvailable=Není k dispozici NotAvailable=Není k dispozici
Popularity=Popularita Popularity=Popularita
Categories=Kategorie Categories=Tags/categories
Category=Kategorie Category=Tag/category
By=Podle By=Podle
From=Z From=Z
to=na to=na
@ -694,6 +695,7 @@ AddBox=Add box
SelectElementAndClickRefresh=Select an element and click Refresh SelectElementAndClickRefresh=Select an element and click Refresh
PrintFile=Print File %s PrintFile=Print File %s
ShowTransaction=Show transaction ShowTransaction=Show transaction
GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
# Week day # Week day
Monday=Pondělí Monday=Pondělí
Tuesday=Úterý Tuesday=Úterý

View File

@ -64,7 +64,8 @@ ShipProduct=Loď produkt
Discount=Sleva Discount=Sleva
CreateOrder=Vytvořit objednávku CreateOrder=Vytvořit objednávku
RefuseOrder=Odmítnout objednávku RefuseOrder=Odmítnout objednávku
ApproveOrder=Přijmout objednávku ApproveOrder=Approve order
Approve2Order=Approve order (second level)
ValidateOrder=Potvrzení objednávky ValidateOrder=Potvrzení objednávky
UnvalidateOrder=Unvalidate objednávku UnvalidateOrder=Unvalidate objednávku
DeleteOrder=Smazat objednávku DeleteOrder=Smazat objednávku
@ -102,6 +103,8 @@ ClassifyBilled=Klasifikovat účtovány
ComptaCard=Účetnictví karty ComptaCard=Účetnictví karty
DraftOrders=Návrh usnesení DraftOrders=Návrh usnesení
RelatedOrders=Související objednávky RelatedOrders=Související objednávky
RelatedCustomerOrders=Related customer orders
RelatedSupplierOrders=Related supplier orders
OnProcessOrders=V procesu objednávky OnProcessOrders=V procesu objednávky
RefOrder=Ref. objednávka RefOrder=Ref. objednávka
RefCustomerOrder=Ref. objednávka zákazníka RefCustomerOrder=Ref. objednávka zákazníka
@ -118,6 +121,7 @@ PaymentOrderRef=Platba objednávky %s
CloneOrder=Clone, aby CloneOrder=Clone, aby
ConfirmCloneOrder=Jste si jisti, že chcete kopírovat tuto objednávku <b>%s?</b> ConfirmCloneOrder=Jste si jisti, že chcete kopírovat tuto objednávku <b>%s?</b>
DispatchSupplierOrder=Příjem %s dodavatelských objednávek DispatchSupplierOrder=Příjem %s dodavatelských objednávek
FirstApprovalAlreadyDone=First approval already done
##### Types de contacts ##### ##### Types de contacts #####
TypeContact_commande_internal_SALESREPFOLL=Zástupce následující-up, aby zákazník TypeContact_commande_internal_SALESREPFOLL=Zástupce následující-up, aby zákazník
TypeContact_commande_internal_SHIPPING=Zástupce následující-up doprava TypeContact_commande_internal_SHIPPING=Zástupce následující-up doprava

View File

@ -12,6 +12,7 @@ Notify_FICHINTER_VALIDATE=Intervence ověřena
Notify_FICHINTER_SENTBYMAIL=Intervence poštou Notify_FICHINTER_SENTBYMAIL=Intervence poštou
Notify_BILL_VALIDATE=Zákazník faktura ověřena Notify_BILL_VALIDATE=Zákazník faktura ověřena
Notify_BILL_UNVALIDATE=Zákazník faktura unvalidated Notify_BILL_UNVALIDATE=Zákazník faktura unvalidated
Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_APPROVE=Dodavatel aby schválila Notify_ORDER_SUPPLIER_APPROVE=Dodavatel aby schválila
Notify_ORDER_SUPPLIER_REFUSE=Dodavatel aby odmítl Notify_ORDER_SUPPLIER_REFUSE=Dodavatel aby odmítl
Notify_ORDER_VALIDATE=Zákazníka ověřena Notify_ORDER_VALIDATE=Zákazníka ověřena
@ -28,7 +29,7 @@ Notify_PROPAL_SENTBYMAIL=Komerční návrh zaslat poštou
Notify_BILL_PAYED=Zákazník platí faktury Notify_BILL_PAYED=Zákazník platí faktury
Notify_BILL_CANCEL=Zákazník faktura zrušena Notify_BILL_CANCEL=Zákazník faktura zrušena
Notify_BILL_SENTBYMAIL=Zákazník faktura zaslána poštou Notify_BILL_SENTBYMAIL=Zákazník faktura zaslána poštou
Notify_ORDER_SUPPLIER_VALIDATE=Dodavatel validovány, aby Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_SENTBYMAIL=Dodavatel odeslaná poštou Notify_ORDER_SUPPLIER_SENTBYMAIL=Dodavatel odeslaná poštou
Notify_BILL_SUPPLIER_VALIDATE=Dodavatel fakturu ověřena Notify_BILL_SUPPLIER_VALIDATE=Dodavatel fakturu ověřena
Notify_BILL_SUPPLIER_PAYED=Dodavatel fakturu platí Notify_BILL_SUPPLIER_PAYED=Dodavatel fakturu platí
@ -47,7 +48,7 @@ Notify_PROJECT_CREATE=Project creation
Notify_TASK_CREATE=Task created Notify_TASK_CREATE=Task created
Notify_TASK_MODIFY=Task modified Notify_TASK_MODIFY=Task modified
Notify_TASK_DELETE=Task deleted Notify_TASK_DELETE=Task deleted
SeeModuleSetup=See module setup SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Počet připojených souborů / dokumentů NbOfAttachedFiles=Počet připojených souborů / dokumentů
TotalSizeOfAttachedFiles=Celková velikost připojených souborů / dokumentů TotalSizeOfAttachedFiles=Celková velikost připojených souborů / dokumentů
MaxSize=Maximální rozměr MaxSize=Maximální rozměr
@ -170,6 +171,7 @@ EMailTextInvoiceValidated=Faktura %s byl ověřen.
EMailTextProposalValidated=Návrh %s byl ověřen. EMailTextProposalValidated=Návrh %s byl ověřen.
EMailTextOrderValidated=Aby %s byl ověřen. EMailTextOrderValidated=Aby %s byl ověřen.
EMailTextOrderApproved=Aby %s byl schválen. EMailTextOrderApproved=Aby %s byl schválen.
EMailTextOrderValidatedBy=The order %s has been recorded by %s.
EMailTextOrderApprovedBy=Aby %s byl schválen %s. EMailTextOrderApprovedBy=Aby %s byl schválen %s.
EMailTextOrderRefused=Aby %s byla zamítnuta. EMailTextOrderRefused=Aby %s byla zamítnuta.
EMailTextOrderRefusedBy=Aby %s bylo odmítnuto podle %s. EMailTextOrderRefusedBy=Aby %s bylo odmítnuto podle %s.

View File

@ -245,12 +245,25 @@ MinimumRecommendedPrice=Minimum recommended price is : %s
PriceExpressionEditor=Price expression editor PriceExpressionEditor=Price expression editor
PriceExpressionSelected=Selected price expression PriceExpressionSelected=Selected price expression
PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions
PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#options_myextrafieldkey#</b> PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#extrafield_myextrafieldkey#</b> and global variables with <b>#global_mycode#</b>
PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b> PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b> PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b>
PriceExpressionEditorHelp5=Available global values:
PriceMode=Price mode PriceMode=Price mode
PriceNumeric=Number PriceNumeric=Number
DefaultPrice=Default price DefaultPrice=Default price
ComposedProductIncDecStock=Increase/Decrease stock on parent change ComposedProductIncDecStock=Increase/Decrease stock on parent change
ComposedProduct=Sub-product ComposedProduct=Sub-product
MinSupplierPrice=Minimun supplier price MinSupplierPrice=Minimum supplier price
DynamicPriceConfiguration=Dynamic price configuration
GlobalVariables=Global variables
GlobalVariableUpdaters=Global variable updaters
GlobalVariableUpdaterType0=JSON data
GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value,
GlobalVariableUpdaterHelpFormat0=format is {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
GlobalVariableUpdaterType1=WebService data
GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method
GlobalVariableUpdaterHelpFormat1=format is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
UpdateInterval=Update interval (minutes)
LastUpdated=Last updated
CorrectlyUpdated=Correctly updated

View File

@ -72,6 +72,7 @@ ListSupplierInvoicesAssociatedProject=Seznam dodavatelských faktur souvisejíc
ListContractAssociatedProject=Seznam zakázek souvisejících s projektem ListContractAssociatedProject=Seznam zakázek souvisejících s projektem
ListFichinterAssociatedProject=Seznam zákroků spojených s projektem ListFichinterAssociatedProject=Seznam zákroků spojených s projektem
ListExpenseReportsAssociatedProject=List of expense reports associated with the project ListExpenseReportsAssociatedProject=List of expense reports associated with the project
ListDonationsAssociatedProject=List of donations associated with the project
ListActionsAssociatedProject=Seznam událostí spojených s projektem ListActionsAssociatedProject=Seznam událostí spojených s projektem
ActivityOnProjectThisWeek=Týdenní projektová aktivita ActivityOnProjectThisWeek=Týdenní projektová aktivita
ActivityOnProjectThisMonth=Měsíční projektová aktivita ActivityOnProjectThisMonth=Měsíční projektová aktivita

View File

@ -2,6 +2,7 @@
RefSending=Ref. náklad RefSending=Ref. náklad
Sending=Náklad Sending=Náklad
Sendings=Zásilky Sendings=Zásilky
AllSendings=All Shipments
Shipment=Náklad Shipment=Náklad
Shipments=Zásilky Shipments=Zásilky
ShowSending=Show Sending ShowSending=Show Sending

View File

@ -43,3 +43,4 @@ ListOfSupplierOrders=List of supplier orders
MenuOrdersSupplierToBill=Supplier orders to invoice MenuOrdersSupplierToBill=Supplier orders to invoice
NbDaysToDelivery=Delivery delay in days NbDaysToDelivery=Delivery delay in days
DescNbDaysToDelivery=The biggest delay is display among order product list DescNbDaysToDelivery=The biggest delay is display among order product list
UseDoubleApproval=Use double approval (the second approval will be any user of a defined user group)

View File

@ -389,6 +389,7 @@ ExtrafieldSeparator=Separator
ExtrafieldCheckBox=Checkbox ExtrafieldCheckBox=Checkbox
ExtrafieldRadio=Radio button ExtrafieldRadio=Radio button
ExtrafieldCheckBoxFromList= Checkbox from table ExtrafieldCheckBoxFromList= Checkbox from table
ExtrafieldLink=Link to an object
ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>... ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
@ -494,6 +495,8 @@ Module500Name=Special expenses (tax, social contributions, dividends)
Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries Module500Desc=Management of special expenses like taxes, social contribution, dividends and salaries
Module510Name=Salaries Module510Name=Salaries
Module510Desc=Management of employees salaries and payments Module510Desc=Management of employees salaries and payments
Module520Name=Loan
Module520Desc=Management of loans
Module600Name=Adviséringer Module600Name=Adviséringer
Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty) Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
Module700Name=Donationer Module700Name=Donationer
@ -508,14 +511,14 @@ Module1400Name=Regnskabsmæssig ekspert
Module1400Desc=Regnskabsmæssig forvaltning for eksperter (dobbelt parterne) Module1400Desc=Regnskabsmæssig forvaltning for eksperter (dobbelt parterne)
Module1520Name=Document Generation Module1520Name=Document Generation
Module1520Desc=Mass mail document generation Module1520Desc=Mass mail document generation
Module1780Name=Kategorier Module1780Name=Tags/Categories
Module1780Desc=Kategorier 'forvaltning (produkter, leverandører og kunder) Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
Module2000Name=FCKeditor Module2000Name=FCKeditor
Module2000Desc=WYSIWYG Editor Module2000Desc=WYSIWYG Editor
Module2200Name=Dynamic Prices Module2200Name=Dynamic Prices
Module2200Desc=Enable the usage of math expressions for prices Module2200Desc=Enable the usage of math expressions for prices
Module2300Name=Cron Module2300Name=Cron
Module2300Desc=Scheduled task management Module2300Desc=Scheduled job management
Module2400Name=Agenda Module2400Name=Agenda
Module2400Desc=Handlinger / opgaver og dagsorden forvaltning Module2400Desc=Handlinger / opgaver og dagsorden forvaltning
Module2500Name=Elektronisk Content Management Module2500Name=Elektronisk Content Management
@ -714,6 +717,11 @@ Permission510=Read Salaries
Permission512=Create/modify salaries Permission512=Create/modify salaries
Permission514=Delete salaries Permission514=Delete salaries
Permission517=Export salaries Permission517=Export salaries
Permission520=Read Loans
Permission522=Create/modify loans
Permission524=Delete loans
Permission525=Access loan calculator
Permission527=Export loans
Permission531=Læs tjenester Permission531=Læs tjenester
Permission532=Opret / ændre tjenester Permission532=Opret / ændre tjenester
Permission534=Slet tjenester Permission534=Slet tjenester
@ -746,6 +754,7 @@ Permission1185=Godkend leverandør ordrer
Permission1186=Bestil leverandør ordrer Permission1186=Bestil leverandør ordrer
Permission1187=Anerkende modtagelsen af leverandør ordrer Permission1187=Anerkende modtagelsen af leverandør ordrer
Permission1188=Luk leverandør ordrer Permission1188=Luk leverandør ordrer
Permission1190=Approve (second approval) supplier orders
Permission1201=Få resultatet af en eksport Permission1201=Få resultatet af en eksport
Permission1202=Opret / Modify en eksport Permission1202=Opret / Modify en eksport
Permission1231=Læs leverandør fakturaer Permission1231=Læs leverandør fakturaer
@ -758,10 +767,10 @@ Permission1237=Export supplier orders and their details
Permission1251=Kør massen import af eksterne data i databasen (data belastning) Permission1251=Kør massen import af eksterne data i databasen (data belastning)
Permission1321=Eksporter kunde fakturaer, attributter og betalinger Permission1321=Eksporter kunde fakturaer, attributter og betalinger
Permission1421=Eksporter kundens ordrer og attributter Permission1421=Eksporter kundens ordrer og attributter
Permission23001 = Read Scheduled task Permission23001=Read Scheduled job
Permission23002 = Create/update Scheduled task Permission23002=Create/update Scheduled job
Permission23003 = Delete Scheduled task Permission23003=Delete Scheduled job
Permission23004 = Execute Scheduled task Permission23004=Execute Scheduled job
Permission2401=Læs aktioner (begivenheder eller opgaver) i tilknytning til hans konto Permission2401=Læs aktioner (begivenheder eller opgaver) i tilknytning til hans konto
Permission2402=Opret / ændre / slette handlinger (begivenheder eller opgaver) i tilknytning til hans konto Permission2402=Opret / ændre / slette handlinger (begivenheder eller opgaver) i tilknytning til hans konto
Permission2403=Læs aktioner (begivenheder eller opgaver) af andre Permission2403=Læs aktioner (begivenheder eller opgaver) af andre
@ -1107,7 +1116,7 @@ ModuleCompanyCodeAquarium=Retur en regnskabspool kode bygget af %s efterfulgt af
ModuleCompanyCodePanicum=Retur tom regnskabspool kode. ModuleCompanyCodePanicum=Retur tom regnskabspool kode.
ModuleCompanyCodeDigitaria=Regnskabsmæssig kode afhænger tredjepart kode. Koden er sammensat af tegnet "C" i første position efterfulgt af de første 5 bogstaver af tredjepart kode. ModuleCompanyCodeDigitaria=Regnskabsmæssig kode afhænger tredjepart kode. Koden er sammensat af tegnet "C" i første position efterfulgt af de første 5 bogstaver af tredjepart kode.
UseNotifications=Brug anmeldelser UseNotifications=Brug anmeldelser
NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one third party at time.<br>* or by setting a global target email address on module setup page. NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one contact at time.<br>* or by setting global target email addresses in module setup page.
ModelModules=Dokumenter skabeloner ModelModules=Dokumenter skabeloner
DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...) DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...)
WatermarkOnDraft=Vandmærke på udkast til et dokument WatermarkOnDraft=Vandmærke på udkast til et dokument
@ -1557,6 +1566,7 @@ SuppliersSetup=Leverandør modul opsætning
SuppliersCommandModel=Komplet template af leverandør orden (logo. ..) SuppliersCommandModel=Komplet template af leverandør orden (logo. ..)
SuppliersInvoiceModel=Komplet template leverandør faktura (logo. ..) SuppliersInvoiceModel=Komplet template leverandør faktura (logo. ..)
SuppliersInvoiceNumberingModel=Supplier invoices numbering models SuppliersInvoiceNumberingModel=Supplier invoices numbering models
IfSetToYesDontForgetPermission=If set to yes, don't forget to provide permissions to groups or users allowed for the second approval
##### GeoIPMaxmind ##### ##### GeoIPMaxmind #####
GeoIPMaxmindSetup=GeoIP Maxmind modul opsætning GeoIPMaxmindSetup=GeoIP Maxmind modul opsætning
PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.<br>Examples:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.<br>Examples:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat
@ -1601,3 +1611,8 @@ ExpenseReportsSetup=Setup of module Expense Reports
TemplatePDFExpenseReports=Document templates to generate expense report document TemplatePDFExpenseReports=Document templates to generate expense report document
NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only. NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only.
NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only. NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for EMail notifications by enabling and configuring the module "Notification".
ListOfNotificationsPerContact=List of notifications per contact*
ListOfFixedNotifications=List of fixed notifications
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
Threshold=Threshold

View File

@ -48,7 +48,10 @@ InvoiceValidatedInDolibarr=Faktura valideret
InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
InvoiceBackToDraftInDolibarr=Faktura %s gå tilbage til udkast til status InvoiceBackToDraftInDolibarr=Faktura %s gå tilbage til udkast til status
InvoiceDeleteDolibarr=Invoice %s deleted InvoiceDeleteDolibarr=Invoice %s deleted
OrderValidatedInDolibarr= Bestil valideret OrderValidatedInDolibarr=Bestil valideret
OrderDeliveredInDolibarr=Order %s classified delivered
OrderCanceledInDolibarr=Bestil %s annulleret
OrderBilledInDolibarr=Order %s classified billed
OrderApprovedInDolibarr=Bestil %s godkendt OrderApprovedInDolibarr=Bestil %s godkendt
OrderRefusedInDolibarr=Order %s refused OrderRefusedInDolibarr=Order %s refused
OrderBackToDraftInDolibarr=Bestil %s gå tilbage til udkast til status OrderBackToDraftInDolibarr=Bestil %s gå tilbage til udkast til status
@ -91,3 +94,5 @@ WorkingTimeRange=Working time range
WorkingDaysRange=Working days range WorkingDaysRange=Working days range
AddEvent=Create event AddEvent=Create event
MyAvailability=My availability MyAvailability=My availability
ActionType=Event type
DateActionBegin=Start event date

View File

@ -294,6 +294,8 @@ TotalOfTwoDiscountMustEqualsOriginal=Total af to nye rabatten skal svare til de
ConfirmRemoveDiscount=Er du sikker på du vil fjerne denne rabat? ConfirmRemoveDiscount=Er du sikker på du vil fjerne denne rabat?
RelatedBill=Relaterede faktura RelatedBill=Relaterede faktura
RelatedBills=Relaterede fakturaer RelatedBills=Relaterede fakturaer
RelatedCustomerInvoices=Related customer invoices
RelatedSupplierInvoices=Related supplier invoices
LatestRelatedBill=Latest related invoice LatestRelatedBill=Latest related invoice
WarningBillExist=Warning, one or more invoice already exist WarningBillExist=Warning, one or more invoice already exist

View File

@ -1,64 +1,62 @@
# Dolibarr language file - Source file is en_US - categories # Dolibarr language file - Source file is en_US - categories
Category=Kategori Rubrique=Tag/Category
Categories=Kategorier Rubriques=Tags/Categories
Rubrique=Kategori categories=tags/categories
Rubriques=Kategorier TheCategorie=The tag/category
categories=kategorier NoCategoryYet=No tag/category of this type created
TheCategorie=Kategorien
NoCategoryYet=Ingen kategori af denne type skabt
In=I In=I
AddIn=Tilføj i AddIn=Tilføj i
modify=modificere modify=modificere
Classify=Klassificere Classify=Klassificere
CategoriesArea=Kategorier område CategoriesArea=Tags/Categories area
ProductsCategoriesArea=Produkter / Tjenester 'kategorier område ProductsCategoriesArea=Products/Services tags/categories area
SuppliersCategoriesArea=Suppliers' kategorier område SuppliersCategoriesArea=Suppliers tags/categories area
CustomersCategoriesArea=Kundernes kategorier område CustomersCategoriesArea=Customers tags/categories area
ThirdPartyCategoriesArea=Tredjeparters kategorier område ThirdPartyCategoriesArea=Third parties tags/categories area
MembersCategoriesArea=Medlemmer kategorier område MembersCategoriesArea=Members tags/categories area
ContactsCategoriesArea=Contacts categories area ContactsCategoriesArea=Contacts tags/categories area
MainCats=Hovedkategorier MainCats=Main tags/categories
SubCats=Underkategorier SubCats=Underkategorier
CatStatistics=Statistik CatStatistics=Statistik
CatList=Liste over kategorier CatList=List of tags/categories
AllCats=Alle kategorier AllCats=All tags/categories
ViewCat=Vis kategori ViewCat=View tag/category
NewCat=Tilføj kategori NewCat=Add tag/category
NewCategory=Ny kategori NewCategory=New tag/category
ModifCat=Modify kategori ModifCat=Modify tag/category
CatCreated=Kategori skabt CatCreated=Tag/category created
CreateCat=Opret kategori CreateCat=Create tag/category
CreateThisCat=Opret denne kategori CreateThisCat=Create this tag/category
ValidateFields=Valider felterne ValidateFields=Valider felterne
NoSubCat=Nr. underkategori. NoSubCat=Nr. underkategori.
SubCatOf=Underkategori SubCatOf=Underkategori
FoundCats=Fundet kategorier FoundCats=Found tags/categories
FoundCatsForName=Kategorier fundet for navnet: FoundCatsForName=Tags/categories found for the name :
FoundSubCatsIn=Underkategorier fundet i kategorien FoundSubCatsIn=Subcategories found in the tag/category
ErrSameCatSelected=Du har valgt samme kategori flere gange ErrSameCatSelected=You selected the same tag/category several times
ErrForgotCat=Du glemte at vælge den kategori ErrForgotCat=You forgot to choose the tag/category
ErrForgotField=Du har glemt at informere de områder ErrForgotField=Du har glemt at informere de områder
ErrCatAlreadyExists=Dette navn bruges allerede ErrCatAlreadyExists=Dette navn bruges allerede
AddProductToCat=Tilføj dette produkt til en kategori? AddProductToCat=Add this product to a tag/category?
ImpossibleAddCat=Umuligt at tilføje kategori ImpossibleAddCat=Impossible to add the tag/category
ImpossibleAssociateCategory=Umuligt at tilknytte den kategori, ImpossibleAssociateCategory=Impossible to associate the tag/category to
WasAddedSuccessfully=<b> %s</b> blev tilføjet med succes. WasAddedSuccessfully=<b> %s</b> blev tilføjet med succes.
ObjectAlreadyLinkedToCategory=Element er allerede knyttet til denne kategori. ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
CategorySuccessfullyCreated=Denne kategori %s er blevet tilføjet med succes. CategorySuccessfullyCreated=This tag/category %s has been added with success.
ProductIsInCategories=Produkt / service ejer til følgende kategorier ProductIsInCategories=Product/service owns to following tags/categories
SupplierIsInCategories=Tredjemand ejer til følgende leverandører kategorier SupplierIsInCategories=Third party owns to following suppliers tags/categories
CompanyIsInCustomersCategories=Denne tredjepart ejer til følgende kunder / udsigter kategorier CompanyIsInCustomersCategories=This third party owns to following customers/prospects tags/categories
CompanyIsInSuppliersCategories=Denne tredjepart ejer til følgende leverandører kategorier CompanyIsInSuppliersCategories=This third party owns to following suppliers tags/categories
MemberIsInCategories=Dette medlem ejer til følgende medlemmer kategorier MemberIsInCategories=This member owns to following members tags/categories
ContactIsInCategories=This contact owns to following contacts categories ContactIsInCategories=This contact owns to following contacts tags/categories
ProductHasNoCategory=Dette produkt / service er ikke i alle kategorier ProductHasNoCategory=This product/service is not in any tags/categories
SupplierHasNoCategory=Denne leverandør er ikke i alle kategorier SupplierHasNoCategory=This supplier is not in any tags/categories
CompanyHasNoCategory=Dette selskab er ikke i alle kategorier CompanyHasNoCategory=This company is not in any tags/categories
MemberHasNoCategory=Dette medlem er ikke på nogen kategorier MemberHasNoCategory=This member is not in any tags/categories
ContactHasNoCategory=This contact is not in any categories ContactHasNoCategory=This contact is not in any tags/categories
ClassifyInCategory=Klassificering i kategori ClassifyInCategory=Classify in tag/category
NoneCategory=Ingen NoneCategory=Ingen
NotCategorized=Without category NotCategorized=Without tag/category
CategoryExistsAtSameLevel=Denne kategori allerede findes på samme sted CategoryExistsAtSameLevel=Denne kategori allerede findes på samme sted
ReturnInProduct=Tilbage til produkt / service kortet ReturnInProduct=Tilbage til produkt / service kortet
ReturnInSupplier=Tilbage til leverandøren kortet ReturnInSupplier=Tilbage til leverandøren kortet
@ -66,22 +64,22 @@ ReturnInCompany=Tilbage til kunde / udsigt kortet
ContentsVisibleByAll=Indholdet vil være synlige fra alle ContentsVisibleByAll=Indholdet vil være synlige fra alle
ContentsVisibleByAllShort=Indhold synlige fra alle ContentsVisibleByAllShort=Indhold synlige fra alle
ContentsNotVisibleByAllShort=Indholdet ikke er synligt fra alle ContentsNotVisibleByAllShort=Indholdet ikke er synligt fra alle
CategoriesTree=Categories tree CategoriesTree=Tags/categories tree
DeleteCategory=Slet kategori DeleteCategory=Delete tag/category
ConfirmDeleteCategory=Er du sikker på du vil slette denne kategori? ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
RemoveFromCategory=Fjern link med Categorie RemoveFromCategory=Remove link with tag/categorie
RemoveFromCategoryConfirm=Er du sikker på du vil fjerne forbindelsen mellem transaktionen og den kategori? RemoveFromCategoryConfirm=Are you sure you want to remove link between the transaction and the tag/category ?
NoCategoriesDefined=Ingen kategori defineret NoCategoriesDefined=No tag/category defined
SuppliersCategoryShort=Leverandører kategori SuppliersCategoryShort=Suppliers tags/category
CustomersCategoryShort=Kunder kategori CustomersCategoryShort=Customers tags/category
ProductsCategoryShort=Produkter kategori ProductsCategoryShort=Products tags/category
MembersCategoryShort=Medlemmer kategori MembersCategoryShort=Members tags/category
SuppliersCategoriesShort=Leverandører kategorier SuppliersCategoriesShort=Suppliers tags/categories
CustomersCategoriesShort=Kunder kategorier CustomersCategoriesShort=Customers tags/categories
CustomersProspectsCategoriesShort=Custo. / prosp. kategorier CustomersProspectsCategoriesShort=Custo. / prosp. kategorier
ProductsCategoriesShort=Produkter kategorier ProductsCategoriesShort=Products tags/categories
MembersCategoriesShort=Medlemmer kategorier MembersCategoriesShort=Members tags/categories
ContactCategoriesShort=Contacts categories ContactCategoriesShort=Contacts tags/categories
ThisCategoryHasNoProduct=Denne kategori indeholder ingen produkt. ThisCategoryHasNoProduct=Denne kategori indeholder ingen produkt.
ThisCategoryHasNoSupplier=Denne kategori indeholder ingen leverandør. ThisCategoryHasNoSupplier=Denne kategori indeholder ingen leverandør.
ThisCategoryHasNoCustomer=Denne kategori indeholder ingen kunde. ThisCategoryHasNoCustomer=Denne kategori indeholder ingen kunde.
@ -90,23 +88,23 @@ ThisCategoryHasNoContact=This category does not contain any contact.
AssignedToCustomer=Henføres til en kunde AssignedToCustomer=Henføres til en kunde
AssignedToTheCustomer=Henføres til kundens AssignedToTheCustomer=Henføres til kundens
InternalCategory=Inernal kategori InternalCategory=Inernal kategori
CategoryContents=Kategori indhold CategoryContents=Tag/category contents
CategId=Kategori-id CategId=Tag/category id
CatSupList=Liste over leverandør kategorier CatSupList=List of supplier tags/categories
CatCusList=Liste over kunde / udsigt kategorier CatCusList=List of customer/prospect tags/categories
CatProdList=Liste over produkter kategorier CatProdList=List of products tags/categories
CatMemberList=Liste over medlemmer kategorier CatMemberList=List of members tags/categories
CatContactList=List of contact categories and contact CatContactList=List of contact tags/categories and contact
CatSupLinks=Links between suppliers and categories CatSupLinks=Links between suppliers and tags/categories
CatCusLinks=Links between customers/prospects and categories CatCusLinks=Links between customers/prospects and tags/categories
CatProdLinks=Links between products/services and categories CatProdLinks=Links between products/services and tags/categories
CatMemberLinks=Links between members and categories CatMemberLinks=Links between members and tags/categories
DeleteFromCat=Remove from category DeleteFromCat=Remove from tags/category
DeletePicture=Picture delete DeletePicture=Picture delete
ConfirmDeletePicture=Confirm picture deletion? ConfirmDeletePicture=Confirm picture deletion?
ExtraFieldsCategories=Complementary attributes ExtraFieldsCategories=Complementary attributes
CategoriesSetup=Categories setup CategoriesSetup=Tags/categories setup
CategorieRecursiv=Link with parent category automatically CategorieRecursiv=Link with parent tag/category automatically
CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory
AddProductServiceIntoCategory=Add the following product/service AddProductServiceIntoCategory=Add the following product/service
ShowCategory=Show category ShowCategory=Show tag/category

View File

@ -26,15 +26,15 @@ CronLastOutput=Last run output
CronLastResult=Last result code CronLastResult=Last result code
CronListOfCronJobs=List of scheduled jobs CronListOfCronJobs=List of scheduled jobs
CronCommand=Command CronCommand=Command
CronList=Jobs list CronList=Scheduled job
CronDelete= Delete cron jobs CronDelete=Delete scheduled jobs
CronConfirmDelete= Are you sure you want to delete this cron job ? CronConfirmDelete=Are you sure you want to delete this scheduled jobs ?
CronExecute=Launch job CronExecute=Launch scheduled jobs
CronConfirmExecute= Are you sure to execute this job now CronConfirmExecute=Are you sure to execute this scheduled jobs now ?
CronInfo= Jobs allow to execute task that have been planned CronInfo=Scheduled job module allow to execute job that have been planned
CronWaitingJobs=Wainting jobs CronWaitingJobs=Waiting jobs
CronTask=Job CronTask=Job
CronNone= Ingen CronNone=Ingen
CronDtStart=Startdato CronDtStart=Startdato
CronDtEnd=Slutdato CronDtEnd=Slutdato
CronDtNextLaunch=Next execution CronDtNextLaunch=Next execution
@ -75,6 +75,7 @@ CronObjectHelp=The object name to load. <BR> For exemple to fetch method of Doli
CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is is <i>fecth</i> CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is is <i>fecth</i>
CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i> CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i>
CronCommandHelp=The system command line to execute. CronCommandHelp=The system command line to execute.
CronCreateJob=Create new Scheduled Job
# Info # Info
CronInfoPage=Information CronInfoPage=Information
# Common # Common

View File

@ -6,6 +6,8 @@ Donor=Donor
Donors=Donorer Donors=Donorer
AddDonation=Create a donation AddDonation=Create a donation
NewDonation=Ny donation NewDonation=Ny donation
DeleteADonation=Delete a donation
ConfirmDeleteADonation=Are you sure you want to delete this donation ?
ShowDonation=Show donation ShowDonation=Show donation
DonationPromise=Gave løfte DonationPromise=Gave løfte
PromisesNotValid=Ikke valideret løfter PromisesNotValid=Ikke valideret løfter
@ -21,6 +23,8 @@ DonationStatusPaid=Donationen er modtaget
DonationStatusPromiseNotValidatedShort=Udkast DonationStatusPromiseNotValidatedShort=Udkast
DonationStatusPromiseValidatedShort=Valideret DonationStatusPromiseValidatedShort=Valideret
DonationStatusPaidShort=Modtaget DonationStatusPaidShort=Modtaget
DonationTitle=Donation receipt
DonationDatePayment=Payment date
ValidPromess=Validér løfte ValidPromess=Validér løfte
DonationReceipt=Donation receipt DonationReceipt=Donation receipt
BuildDonationReceipt=Build modtagelse BuildDonationReceipt=Build modtagelse
@ -36,3 +40,4 @@ FrenchOptions=Options for France
DONATION_ART200=Show article 200 from CGI if you are concerned DONATION_ART200=Show article 200 from CGI if you are concerned
DONATION_ART238=Show article 238 from CGI if you are concerned DONATION_ART238=Show article 238 from CGI if you are concerned
DONATION_ART885=Show article 885 from CGI if you are concerned DONATION_ART885=Show article 885 from CGI if you are concerned
DonationPayment=Donation payment

View File

@ -161,6 +161,12 @@ ErrorPriceExpressionUnknown=Unknown error '%s'
ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs
ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without batch/serial information, on a product requiring batch/serial information
ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified before being allowed to do this action
ErrorGlobalVariableUpdater0=HTTP request failed with error '%s'
ErrorGlobalVariableUpdater1=Invalid JSON format '%s'
ErrorGlobalVariableUpdater2=Missing parameter '%s'
ErrorGlobalVariableUpdater3=The requested data was not found in result
ErrorGlobalVariableUpdater4=SOAP client failed with error '%s'
ErrorGlobalVariableUpdater5=No global variable selected
# Warnings # Warnings
WarningMandatorySetupNotComplete=Mandatory setup parameters are not yet defined WarningMandatorySetupNotComplete=Mandatory setup parameters are not yet defined

View File

@ -139,3 +139,5 @@ ListOfNotificationsDone=List alle e-mail meddelelser
MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing. MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature. MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s. MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
NbOfTargetedContacts=Current number of targeted contact emails

View File

@ -352,6 +352,7 @@ Status=Status
Favorite=Favorite Favorite=Favorite
ShortInfo=Info. ShortInfo=Info.
Ref=Ref. Ref=Ref.
ExternalRef=Ref. extern
RefSupplier=Ref. leverandør RefSupplier=Ref. leverandør
RefPayment=Ref. betaling RefPayment=Ref. betaling
CommercialProposalsShort=Kommerciel forslag CommercialProposalsShort=Kommerciel forslag
@ -394,8 +395,8 @@ Available=Tilgængelig
NotYetAvailable=Endnu ikke tilgængelig NotYetAvailable=Endnu ikke tilgængelig
NotAvailable=Ikke til rådighed NotAvailable=Ikke til rådighed
Popularity=Popularitet Popularity=Popularitet
Categories=Kategorier Categories=Tags/categories
Category=Kategori Category=Tag/category
By=Ved By=Ved
From=Fra From=Fra
to=til to=til
@ -694,6 +695,7 @@ AddBox=Add box
SelectElementAndClickRefresh=Select an element and click Refresh SelectElementAndClickRefresh=Select an element and click Refresh
PrintFile=Print File %s PrintFile=Print File %s
ShowTransaction=Show transaction ShowTransaction=Show transaction
GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
# Week day # Week day
Monday=Mandag Monday=Mandag
Tuesday=Tirsdag Tuesday=Tirsdag

View File

@ -64,7 +64,8 @@ ShipProduct=Skib produkt
Discount=Discount Discount=Discount
CreateOrder=Opret Order CreateOrder=Opret Order
RefuseOrder=Nægte at RefuseOrder=Nægte at
ApproveOrder=Acceptere for ApproveOrder=Approve order
Approve2Order=Approve order (second level)
ValidateOrder=Valider orden ValidateOrder=Valider orden
UnvalidateOrder=Unvalidate rækkefølge UnvalidateOrder=Unvalidate rækkefølge
DeleteOrder=Slet orden DeleteOrder=Slet orden
@ -102,6 +103,8 @@ ClassifyBilled=Klassificere "Billed"
ComptaCard=Regnskabsmæssig kortet ComptaCard=Regnskabsmæssig kortet
DraftOrders=Udkast til ordrer DraftOrders=Udkast til ordrer
RelatedOrders=Relaterede ordrer RelatedOrders=Relaterede ordrer
RelatedCustomerOrders=Related customer orders
RelatedSupplierOrders=Related supplier orders
OnProcessOrders=Den proces ordrer OnProcessOrders=Den proces ordrer
RefOrder=Ref. rækkefølge RefOrder=Ref. rækkefølge
RefCustomerOrder=Ref. kunde for RefCustomerOrder=Ref. kunde for
@ -118,6 +121,7 @@ PaymentOrderRef=Betaling af for %s
CloneOrder=Klon orden CloneOrder=Klon orden
ConfirmCloneOrder=Er du sikker på at du vil klone denne <b>ordre %s?</b> ConfirmCloneOrder=Er du sikker på at du vil klone denne <b>ordre %s?</b>
DispatchSupplierOrder=Modtagelse leverandør for %s DispatchSupplierOrder=Modtagelse leverandør for %s
FirstApprovalAlreadyDone=First approval already done
##### Types de contacts ##### ##### Types de contacts #####
TypeContact_commande_internal_SALESREPFOLL=Repræsentant opfølgning kundeordre TypeContact_commande_internal_SALESREPFOLL=Repræsentant opfølgning kundeordre
TypeContact_commande_internal_SHIPPING=Repræsentant opfølgning shipping TypeContact_commande_internal_SHIPPING=Repræsentant opfølgning shipping

View File

@ -12,6 +12,7 @@ Notify_FICHINTER_VALIDATE=Valider intervention
Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail
Notify_BILL_VALIDATE=Valider regningen Notify_BILL_VALIDATE=Valider regningen
Notify_BILL_UNVALIDATE=Customer invoice unvalidated Notify_BILL_UNVALIDATE=Customer invoice unvalidated
Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_APPROVE=Leverandør for godkendt Notify_ORDER_SUPPLIER_APPROVE=Leverandør for godkendt
Notify_ORDER_SUPPLIER_REFUSE=Leverandør For nægtes Notify_ORDER_SUPPLIER_REFUSE=Leverandør For nægtes
Notify_ORDER_VALIDATE=Kundeordre valideret Notify_ORDER_VALIDATE=Kundeordre valideret
@ -28,7 +29,7 @@ Notify_PROPAL_SENTBYMAIL=Kommercielle forslaget, som sendes med posten
Notify_BILL_PAYED=Kundens faktura betales Notify_BILL_PAYED=Kundens faktura betales
Notify_BILL_CANCEL=Kundefaktura aflyst Notify_BILL_CANCEL=Kundefaktura aflyst
Notify_BILL_SENTBYMAIL=Kundens faktura sendes med posten Notify_BILL_SENTBYMAIL=Kundens faktura sendes med posten
Notify_ORDER_SUPPLIER_VALIDATE=Leverandør valideret orden Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
Notify_ORDER_SUPPLIER_SENTBYMAIL=Leverandør orden sendt med posten Notify_ORDER_SUPPLIER_SENTBYMAIL=Leverandør orden sendt med posten
Notify_BILL_SUPPLIER_VALIDATE=Leverandør faktura valideret Notify_BILL_SUPPLIER_VALIDATE=Leverandør faktura valideret
Notify_BILL_SUPPLIER_PAYED=Leverandør faktura betales Notify_BILL_SUPPLIER_PAYED=Leverandør faktura betales
@ -47,7 +48,7 @@ Notify_PROJECT_CREATE=Project creation
Notify_TASK_CREATE=Task created Notify_TASK_CREATE=Task created
Notify_TASK_MODIFY=Task modified Notify_TASK_MODIFY=Task modified
Notify_TASK_DELETE=Task deleted Notify_TASK_DELETE=Task deleted
SeeModuleSetup=See module setup SeeModuleSetup=See setup of module %s
NbOfAttachedFiles=Antal vedhæftede filer / dokumenter NbOfAttachedFiles=Antal vedhæftede filer / dokumenter
TotalSizeOfAttachedFiles=Samlede størrelse på vedhæftede filer / dokumenter TotalSizeOfAttachedFiles=Samlede størrelse på vedhæftede filer / dokumenter
MaxSize=Maksimumstørrelse MaxSize=Maksimumstørrelse
@ -170,6 +171,7 @@ EMailTextInvoiceValidated=Faktura %s valideret
EMailTextProposalValidated=Forslaget %s er blevet valideret. EMailTextProposalValidated=Forslaget %s er blevet valideret.
EMailTextOrderValidated=Ordren %s er blevet valideret. EMailTextOrderValidated=Ordren %s er blevet valideret.
EMailTextOrderApproved=Bestil %s godkendt EMailTextOrderApproved=Bestil %s godkendt
EMailTextOrderValidatedBy=The order %s has been recorded by %s.
EMailTextOrderApprovedBy=Bestil %s er godkendt af %s EMailTextOrderApprovedBy=Bestil %s er godkendt af %s
EMailTextOrderRefused=Bestil %s nægtet EMailTextOrderRefused=Bestil %s nægtet
EMailTextOrderRefusedBy=Bestil %s afvises af %s EMailTextOrderRefusedBy=Bestil %s afvises af %s

View File

@ -245,12 +245,25 @@ MinimumRecommendedPrice=Minimum recommended price is : %s
PriceExpressionEditor=Price expression editor PriceExpressionEditor=Price expression editor
PriceExpressionSelected=Selected price expression PriceExpressionSelected=Selected price expression
PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions
PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#options_myextrafieldkey#</b> PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#extrafield_myextrafieldkey#</b> and global variables with <b>#global_mycode#</b>
PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b> PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b> PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b>
PriceExpressionEditorHelp5=Available global values:
PriceMode=Price mode PriceMode=Price mode
PriceNumeric=Number PriceNumeric=Number
DefaultPrice=Default price DefaultPrice=Default price
ComposedProductIncDecStock=Increase/Decrease stock on parent change ComposedProductIncDecStock=Increase/Decrease stock on parent change
ComposedProduct=Sub-product ComposedProduct=Sub-product
MinSupplierPrice=Minimun supplier price MinSupplierPrice=Minimum supplier price
DynamicPriceConfiguration=Dynamic price configuration
GlobalVariables=Global variables
GlobalVariableUpdaters=Global variable updaters
GlobalVariableUpdaterType0=JSON data
GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value,
GlobalVariableUpdaterHelpFormat0=format is {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
GlobalVariableUpdaterType1=WebService data
GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method
GlobalVariableUpdaterHelpFormat1=format is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
UpdateInterval=Update interval (minutes)
LastUpdated=Last updated
CorrectlyUpdated=Correctly updated

View File

@ -72,6 +72,7 @@ ListSupplierInvoicesAssociatedProject=Liste over leverandører fakturaer forbund
ListContractAssociatedProject=Liste over kontrakter i forbindelse med projektet ListContractAssociatedProject=Liste over kontrakter i forbindelse med projektet
ListFichinterAssociatedProject=Liste over interventioner i forbindelse med projektet ListFichinterAssociatedProject=Liste over interventioner i forbindelse med projektet
ListExpenseReportsAssociatedProject=List of expense reports associated with the project ListExpenseReportsAssociatedProject=List of expense reports associated with the project
ListDonationsAssociatedProject=List of donations associated with the project
ListActionsAssociatedProject=Liste over aktioner i forbindelse med projektet ListActionsAssociatedProject=Liste over aktioner i forbindelse med projektet
ActivityOnProjectThisWeek=Aktivitet på projektet i denne uge ActivityOnProjectThisWeek=Aktivitet på projektet i denne uge
ActivityOnProjectThisMonth=Aktivitet på projektet i denne måned ActivityOnProjectThisMonth=Aktivitet på projektet i denne måned

View File

@ -2,6 +2,7 @@
RefSending=Ref. afsendelse RefSending=Ref. afsendelse
Sending=Sender Sending=Sender
Sendings=Sendings Sendings=Sendings
AllSendings=All Shipments
Shipment=Sender Shipment=Sender
Shipments=Forsendelser Shipments=Forsendelser
ShowSending=Show Sending ShowSending=Show Sending

View File

@ -43,3 +43,4 @@ ListOfSupplierOrders=Liste over leverandør ordrer
MenuOrdersSupplierToBill=Leverandør ordrer der kan faktureres MenuOrdersSupplierToBill=Leverandør ordrer der kan faktureres
NbDaysToDelivery=Delivery delay in days NbDaysToDelivery=Delivery delay in days
DescNbDaysToDelivery=The biggest delay is display among order product list DescNbDaysToDelivery=The biggest delay is display among order product list
UseDoubleApproval=Use double approval (the second approval will be any user of a defined user group)

View File

@ -1,6 +1,7 @@
# Dolibarr language file - Source file is en_US - other # Dolibarr language file - Source file is en_US - other
ToolsDesc=Dieser Bereich ist zur Gruppe diverse Werkzeuge nicht verfügbar in andere Menüeinträge gewidmet. <br><br> Diese Tools können aus dem Menü auf der Seite zu erreichen. ToolsDesc=Dieser Bereich ist zur Gruppe diverse Werkzeuge nicht verfügbar in andere Menüeinträge gewidmet. <br><br> Diese Tools können aus dem Menü auf der Seite zu erreichen.
DateToBirth=Geburtstdatum DateToBirth=Geburtstdatum
Notify_ORDER_SUPPLIER_VALIDATE=Lieferanten, um validierte
Notify_WITHDRAW_TRANSMIT=Transmission Rückzug Notify_WITHDRAW_TRANSMIT=Transmission Rückzug
Notify_WITHDRAW_CREDIT=Kreditkarten Rückzug Notify_WITHDRAW_CREDIT=Kreditkarten Rückzug
Notify_WITHDRAW_EMIT=Isue Rückzug Notify_WITHDRAW_EMIT=Isue Rückzug
@ -10,7 +11,6 @@ Notify_PROPAL_SENTBYMAIL=Gewerbliche Vorschlag per Post
Notify_BILL_PAYED=Kunden Rechnung bezahlt Notify_BILL_PAYED=Kunden Rechnung bezahlt
Notify_BILL_CANCEL=Kunden Rechnung storniert Notify_BILL_CANCEL=Kunden Rechnung storniert
Notify_BILL_SENTBYMAIL=Kunden Rechnung per Post geschickt Notify_BILL_SENTBYMAIL=Kunden Rechnung per Post geschickt
Notify_ORDER_SUPPLIER_VALIDATE=Lieferanten, um validierte
Notify_ORDER_SUPPLIER_SENTBYMAIL=Lieferant Bestellung per Post geschickt Notify_ORDER_SUPPLIER_SENTBYMAIL=Lieferant Bestellung per Post geschickt
Notify_BILL_SUPPLIER_VALIDATE=Lieferantenrechnung validiert Notify_BILL_SUPPLIER_VALIDATE=Lieferantenrechnung validiert
Notify_BILL_SUPPLIER_SENTBYMAIL=Lieferant Rechnung per Post geschickt Notify_BILL_SUPPLIER_SENTBYMAIL=Lieferant Rechnung per Post geschickt

View File

@ -389,6 +389,7 @@ ExtrafieldSeparator=Trennzeichen
ExtrafieldCheckBox=Checkbox ExtrafieldCheckBox=Checkbox
ExtrafieldRadio=Radio button ExtrafieldRadio=Radio button
ExtrafieldCheckBoxFromList= Checkbox from table ExtrafieldCheckBoxFromList= Checkbox from table
ExtrafieldLink=Link to an object
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 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=Parameterlisten müssen das Format Schlüssel,Wert haben<br><br> zum Beispiel:<br>1,Wert1<br>2,Wert2<br>3,Wert3<br>... ExtrafieldParamHelpcheckbox=Parameterlisten müssen das Format Schlüssel,Wert haben<br><br> zum Beispiel:<br>1,Wert1<br>2,Wert2<br>3,Wert3<br>...
ExtrafieldParamHelpradio=Parameterlisten müssen das Format Schlüssel,Wert haben<br><br> zum Beispiel:<br>1,Wert1<br>2,Wert2<br>3,Wert3<br>... ExtrafieldParamHelpradio=Parameterlisten müssen das Format Schlüssel,Wert haben<br><br> zum Beispiel:<br>1,Wert1<br>2,Wert2<br>3,Wert3<br>...
@ -494,6 +495,8 @@ Module500Name=Sonderausgaben (Steuern, Sozialbeiträge und Dividenden)
Module500Desc=Steuer-, Sozialbeitrags-, Dividenden- und Lohnverwaltung Module500Desc=Steuer-, Sozialbeitrags-, Dividenden- und Lohnverwaltung
Module510Name=Löhne Module510Name=Löhne
Module510Desc=Verwaltung der Angestellten-Gehälter und -Zahlungen Module510Desc=Verwaltung der Angestellten-Gehälter und -Zahlungen
Module520Name=Loan
Module520Desc=Management of loans
Module600Name=Benachrichtigungen Module600Name=Benachrichtigungen
Module600Desc=Senden Sie Benachrichtigungen zu einigen Dolibarr-Events per E-Mail an Partner (wird pro Partner definiert) Module600Desc=Senden Sie Benachrichtigungen zu einigen Dolibarr-Events per E-Mail an Partner (wird pro Partner definiert)
Module700Name=Spenden Module700Name=Spenden
@ -508,14 +511,14 @@ Module1400Name=Buchhaltung
Module1400Desc=Buchhaltung für Experten (doppelte Buchhaltung) Module1400Desc=Buchhaltung für Experten (doppelte Buchhaltung)
Module1520Name=Document Generation Module1520Name=Document Generation
Module1520Desc=Mass mail document generation Module1520Desc=Mass mail document generation
Module1780Name=Kategorien Module1780Name=Tags/Categories
Module1780Desc=Kategorienverwaltung (Produkte, Lieferanten und Kunden) Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
Module2000Name=FCKeditor Module2000Name=FCKeditor
Module2000Desc=WYSIWYG-Editor Module2000Desc=WYSIWYG-Editor
Module2200Name=Dynamische Preise Module2200Name=Dynamische Preise
Module2200Desc=Mathematische Ausdrücke für Preise aktivieren Module2200Desc=Mathematische Ausdrücke für Preise aktivieren
Module2300Name=Cron Module2300Name=Cron
Module2300Desc=Verwaltung geplanter Aufgaben Module2300Desc=Scheduled job management
Module2400Name=Agenda Module2400Name=Agenda
Module2400Desc=Maßnahmen/Aufgaben und Agendaverwaltung Module2400Desc=Maßnahmen/Aufgaben und Agendaverwaltung
Module2500Name=Inhaltsverwaltung(ECM) Module2500Name=Inhaltsverwaltung(ECM)
@ -714,6 +717,11 @@ Permission510=Löhne einsehen
Permission512=Löhne erstellen/bearbeiten Permission512=Löhne erstellen/bearbeiten
Permission514=Löhne löschen Permission514=Löhne löschen
Permission517=Löhne exportieren Permission517=Löhne exportieren
Permission520=Read Loans
Permission522=Create/modify loans
Permission524=Delete loans
Permission525=Access loan calculator
Permission527=Export loans
Permission531=Leistungen einsehen Permission531=Leistungen einsehen
Permission532=Leistungen erstellen/bearbeiten Permission532=Leistungen erstellen/bearbeiten
Permission534=Leistungen löschen Permission534=Leistungen löschen
@ -746,6 +754,7 @@ Permission1185=Lieferantenbestellungen bestätigen
Permission1186=Lieferantenbestellungen übermitteln Permission1186=Lieferantenbestellungen übermitteln
Permission1187=Eingang von Lieferantenbestellungen bestätigen Permission1187=Eingang von Lieferantenbestellungen bestätigen
Permission1188=Lieferantenbestellungen schließen Permission1188=Lieferantenbestellungen schließen
Permission1190=Approve (second approval) supplier orders
Permission1201=Exportresultate einsehen Permission1201=Exportresultate einsehen
Permission1202=Export erstellen/bearbeiten Permission1202=Export erstellen/bearbeiten
Permission1231=Lieferantenrechnungen einsehen Permission1231=Lieferantenrechnungen einsehen
@ -758,10 +767,10 @@ Permission1237=Lieferantenbestellungen mit Details exportieren
Permission1251=Massenimports von externen Daten ausführen (data load) Permission1251=Massenimports von externen Daten ausführen (data load)
Permission1321=Kundenrechnungen, -attribute und -zahlungen exportieren Permission1321=Kundenrechnungen, -attribute und -zahlungen exportieren
Permission1421=Kundenbestellungen und Attribute exportieren Permission1421=Kundenbestellungen und Attribute exportieren
Permission23001 = Lese geplante Aufgabe Permission23001=Read Scheduled job
Permission23002 = Erstelle/aktualisiere geplante Aufgabe Permission23002=Create/update Scheduled job
Permission23003 = Lösche geplante Aufgabe Permission23003=Delete Scheduled job
Permission23004 = Führe geplante Aufgabe aus Permission23004=Execute Scheduled job
Permission2401=Maßnahmen (Termine/Aufgaben) in Verbindung mit eigenem Konto einsehen Permission2401=Maßnahmen (Termine/Aufgaben) in Verbindung mit eigenem Konto einsehen
Permission2402=Maßnahmen (Termine/Aufgaben) in Verbindung mit eigenem Konto erstellen/bearbeiten Permission2402=Maßnahmen (Termine/Aufgaben) in Verbindung mit eigenem Konto erstellen/bearbeiten
Permission2403=Maßnahmen (Termine/Aufgaben) in Verbindung mit eigenem Konto löschen Permission2403=Maßnahmen (Termine/Aufgaben) in Verbindung mit eigenem Konto löschen
@ -1107,7 +1116,7 @@ ModuleCompanyCodeAquarium=Generiert einen Kontierungscode %s, gefolgt von der Li
ModuleCompanyCodePanicum=Generiert einen leeren Kontierungscode. ModuleCompanyCodePanicum=Generiert einen leeren Kontierungscode.
ModuleCompanyCodeDigitaria=Kontierungscode hängt vom Partnercode ab. Der Code setzt sich aus dem Buchstaben 'C' und den ersten 5 Stellen des Partnercodes zusammen. ModuleCompanyCodeDigitaria=Kontierungscode hängt vom Partnercode ab. Der Code setzt sich aus dem Buchstaben 'C' und den ersten 5 Stellen des Partnercodes zusammen.
UseNotifications=Benachrichtigungen verwenden UseNotifications=Benachrichtigungen verwenden
NotificationsDesc=E-Mail-Benachrichtigungsfunktionen erlauben Ihnen den stillschweigenden Versand automatischer Benachrichtigungen zu einigen Dolibarr-Ereignissen. Ziele dafür können definiert werden:<br>* pro Partner-Kontakt (Kunden oder Lieferanten), ein Partner zur Zeit.<br>* durch das Setzen einer globalen Ziel-Mail-Adresse in den Modul-Einstellungen NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one contact at time.<br>* or by setting global target email addresses in module setup page.
ModelModules=Dokumentvorlagenmodul ModelModules=Dokumentvorlagenmodul
DocumentModelOdt=Erstellen von Dokumentvorlagen im OpenDocuments-Format (.odt- oder .ods-Dateien für OpenOffice, KOffice, TextEdit, ...) DocumentModelOdt=Erstellen von Dokumentvorlagen im OpenDocuments-Format (.odt- oder .ods-Dateien für OpenOffice, KOffice, TextEdit, ...)
WatermarkOnDraft=Wasserzeichen auf Entwurf WatermarkOnDraft=Wasserzeichen auf Entwurf
@ -1557,6 +1566,7 @@ SuppliersSetup=Lieferantenmoduleinstellungen
SuppliersCommandModel=Vollständige Vorlage für Lieferantenbestellungen (Logo, ...) SuppliersCommandModel=Vollständige Vorlage für Lieferantenbestellungen (Logo, ...)
SuppliersInvoiceModel=Vollständige Vorlage der Lieferantenrechnung (logo. ..) SuppliersInvoiceModel=Vollständige Vorlage der Lieferantenrechnung (logo. ..)
SuppliersInvoiceNumberingModel=Lieferantenrechnungen Zähl-Modell SuppliersInvoiceNumberingModel=Lieferantenrechnungen Zähl-Modell
IfSetToYesDontForgetPermission=If set to yes, don't forget to provide permissions to groups or users allowed for the second approval
##### GeoIPMaxmind ##### ##### GeoIPMaxmind #####
GeoIPMaxmindSetup=GeoIP-Maxmind Moduleinstellungen GeoIPMaxmindSetup=GeoIP-Maxmind Moduleinstellungen
PathToGeoIPMaxmindCountryDataFile=Pfad zur Datei mit Maxmind IP-zu-Land Übersetzung. <br>Beispiele:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoOP.dat PathToGeoIPMaxmindCountryDataFile=Pfad zur Datei mit Maxmind IP-zu-Land Übersetzung. <br>Beispiele:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoOP.dat
@ -1601,3 +1611,8 @@ ExpenseReportsSetup=Setup of module Expense Reports
TemplatePDFExpenseReports=Document templates to generate expense report document TemplatePDFExpenseReports=Document templates to generate expense report document
NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only. NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only.
NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only. NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for EMail notifications by enabling and configuring the module "Notification".
ListOfNotificationsPerContact=List of notifications per contact*
ListOfFixedNotifications=List of fixed notifications
GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
Threshold=Threshold

View File

@ -9,14 +9,14 @@ Calendars=Kalender
LocalAgenda=Internetkalender LocalAgenda=Internetkalender
ActionsOwnedBy=Maßnahme gehört ActionsOwnedBy=Maßnahme gehört
AffectedTo=Zugewiesen an AffectedTo=Zugewiesen an
DoneBy=Erldedigt von DoneBy=Erledigt von
Event=Aktion Event=Aktion
Events=Termine Events=Termine
EventsNb=Anzahl der Termine EventsNb=Anzahl der Termine
MyEvents=Meine Termine MyEvents=Meine Termine
OtherEvents=Weitere Termine OtherEvents=Weitere Termine
ListOfActions=Terminliste ListOfActions=Terminliste
Location=Ort Location=Standort
EventOnFullDay=Ganztägig EventOnFullDay=Ganztägig
SearchAnAction= Suche Maßnahme / Aufgabe SearchAnAction= Suche Maßnahme / Aufgabe
MenuToDoActions=Alle unvollständigen Termine MenuToDoActions=Alle unvollständigen Termine
@ -48,7 +48,10 @@ InvoiceValidatedInDolibarr=Rechnung freigegeben
InvoiceValidatedInDolibarrFromPos=Rechnung %s von POS validiert InvoiceValidatedInDolibarrFromPos=Rechnung %s von POS validiert
InvoiceBackToDraftInDolibarr=Rechnung %s in den Entwurf Status zurücksetzen InvoiceBackToDraftInDolibarr=Rechnung %s in den Entwurf Status zurücksetzen
InvoiceDeleteDolibarr=Rechnung %s gelöscht InvoiceDeleteDolibarr=Rechnung %s gelöscht
OrderValidatedInDolibarr= Bestellung %s freigegeben OrderValidatedInDolibarr=Bestellung %s freigegeben
OrderDeliveredInDolibarr=Order %s classified delivered
OrderCanceledInDolibarr=Auftrag storniert %s
OrderBilledInDolibarr=Order %s classified billed
OrderApprovedInDolibarr=Bestellen %s genehmigt OrderApprovedInDolibarr=Bestellen %s genehmigt
OrderRefusedInDolibarr=Bestellung %s abgelehnt OrderRefusedInDolibarr=Bestellung %s abgelehnt
OrderBackToDraftInDolibarr=Bestellen %s zurück nach Draft-Status OrderBackToDraftInDolibarr=Bestellen %s zurück nach Draft-Status
@ -91,3 +94,5 @@ WorkingTimeRange=Arbeitszeit-Bereich
WorkingDaysRange=Arbeitstag-Bereich WorkingDaysRange=Arbeitstag-Bereich
AddEvent=Maßnahme erstellen AddEvent=Maßnahme erstellen
MyAvailability=Meine Verfügbarkeit MyAvailability=Meine Verfügbarkeit
ActionType=Event type
DateActionBegin=Start event date

View File

@ -294,6 +294,8 @@ TotalOfTwoDiscountMustEqualsOriginal=Insgesamt zwei neue Rabatt muss gleich zu d
ConfirmRemoveDiscount=Sind Sie sicher, dass Sie diesen Rabatt entfernen möchten? ConfirmRemoveDiscount=Sind Sie sicher, dass Sie diesen Rabatt entfernen möchten?
RelatedBill=Ähnliche Rechnung RelatedBill=Ähnliche Rechnung
RelatedBills=Ähnliche Rechnungen RelatedBills=Ähnliche Rechnungen
RelatedCustomerInvoices=Related customer invoices
RelatedSupplierInvoices=Related supplier invoices
LatestRelatedBill=Letzte ähnliche Rechnung LatestRelatedBill=Letzte ähnliche Rechnung
WarningBillExist=Achtung, es existiert bereits mindestens eine Rechnung WarningBillExist=Achtung, es existiert bereits mindestens eine Rechnung

View File

@ -1,64 +1,62 @@
# Dolibarr language file - Source file is en_US - categories # Dolibarr language file - Source file is en_US - categories
Category=Kategorie Rubrique=Tag/Category
Categories=Kategorien Rubriques=Tags/Categories
Rubrique=Kategorie categories=tags/categories
Rubriques=Kategorien TheCategorie=The tag/category
categories=Kategorien NoCategoryYet=No tag/category of this type created
TheCategorie=Die Kategorie
NoCategoryYet=Keine Kategorie dieser Art erstellt
In=In In=In
AddIn=Einfügen in AddIn=Einfügen in
modify=Ändern modify=Ändern
Classify=Einordnen Classify=Einordnen
CategoriesArea=Kategorien CategoriesArea=Tags/Categories area
ProductsCategoriesArea=Produktkategorien ProductsCategoriesArea=Products/Services tags/categories area
SuppliersCategoriesArea=Lieferantenkategorien SuppliersCategoriesArea=Suppliers tags/categories area
CustomersCategoriesArea=Kundenkategorien CustomersCategoriesArea=Customers tags/categories area
ThirdPartyCategoriesArea=Organisationskategorien ThirdPartyCategoriesArea=Third parties tags/categories area
MembersCategoriesArea=Kategoriemitglieder-Bereich MembersCategoriesArea=Members tags/categories area
ContactsCategoriesArea=Kontaktkategorien ContactsCategoriesArea=Contacts tags/categories area
MainCats=Hauptkategorien MainCats=Main tags/categories
SubCats=Unterkategorien SubCats=Unterkategorien
CatStatistics=Statistik CatStatistics=Statistik
CatList=Kategorieliste CatList=List of tags/categories
AllCats=Alle Kategorien AllCats=All tags/categories
ViewCat=Kategorie ViewCat=View tag/category
NewCat=Kategorie hinzufügen NewCat=Add tag/category
NewCategory=Neue Kategorie NewCategory=New tag/category
ModifCat=Kategorie bearbeiten ModifCat=Modify tag/category
CatCreated=Kategorie erstellt CatCreated=Tag/category created
CreateCat=Kategorie erstellen CreateCat=Create tag/category
CreateThisCat=Kategorie anlegen CreateThisCat=Create this tag/category
ValidateFields=Überprüfen Sie die Felder ValidateFields=Überprüfen Sie die Felder
NoSubCat=Keine Unterkategorie NoSubCat=Keine Unterkategorie
SubCatOf=Unterkategorie von SubCatOf=Unterkategorie von
FoundCats=Kategorien gefunden FoundCats=Found tags/categories
FoundCatsForName=Treffer für den Namen: FoundCatsForName=Tags/categories found for the name :
FoundSubCatsIn=Kategorie besitzt Unterkategorien FoundSubCatsIn=Subcategories found in the tag/category
ErrSameCatSelected=Sie haben die gleiche Kategorie mehrmals ausgewählt ErrSameCatSelected=You selected the same tag/category several times
ErrForgotCat=Sie haben vergessen eine Kategorie zu wählen ErrForgotCat=You forgot to choose the tag/category
ErrForgotField=Sie haben ein oder mehrere Felder nicht ausgefüllt ErrForgotField=Sie haben ein oder mehrere Felder nicht ausgefüllt
ErrCatAlreadyExists=Dieser Name wird bereits verwendet ErrCatAlreadyExists=Dieser Name wird bereits verwendet
AddProductToCat=Dieses Produkt einer Kategorie zuweisen? AddProductToCat=Add this product to a tag/category?
ImpossibleAddCat=Das Hinzufügen dieser Kategorie ist nicht möglich ImpossibleAddCat=Impossible to add the tag/category
ImpossibleAssociateCategory=Kann die Kategorie nicht zuweisen zu ImpossibleAssociateCategory=Impossible to associate the tag/category to
WasAddedSuccessfully=<b> %s</b> wurde erfolgreich hinzugefügt. WasAddedSuccessfully=<b> %s</b> wurde erfolgreich hinzugefügt.
ObjectAlreadyLinkedToCategory=Element ist bereits mit dieser Kategorie verknüpft. ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
CategorySuccessfullyCreated=Die Kategorie %s wurde erfolgreich hinzugefügt. CategorySuccessfullyCreated=This tag/category %s has been added with success.
ProductIsInCategories=Produkt gehört zu folgenden Kategorien ProductIsInCategories=Product/service owns to following tags/categories
SupplierIsInCategories=Dieser Lieferant ist folgenden Kategorien zugewiesen SupplierIsInCategories=Third party owns to following suppliers tags/categories
CompanyIsInCustomersCategories=Diese Organisation ist folgenden Lead-/Kundenkategorien zugewiesen CompanyIsInCustomersCategories=This third party owns to following customers/prospects tags/categories
CompanyIsInSuppliersCategories=Diese Organisation ist folgenden Lieferantenkategorien zugewiesen CompanyIsInSuppliersCategories=This third party owns to following suppliers tags/categories
MemberIsInCategories=Dieses Mitglied ist Mitglied folgender Kategorien MemberIsInCategories=This member owns to following members tags/categories
ContactIsInCategories=Dieser Kontakt ist folgenden Kontaktkategorien zugewiesen ContactIsInCategories=This contact owns to following contacts tags/categories
ProductHasNoCategory=Dieses Produkt / Dienstleistung ist nicht in allen Kategorien ProductHasNoCategory=This product/service is not in any tags/categories
SupplierHasNoCategory=Dieser Lieferant ist keiner Kategorie zugewiesen SupplierHasNoCategory=This supplier is not in any tags/categories
CompanyHasNoCategory=Diese Organisation ist keiner Kategorie zugewiesen CompanyHasNoCategory=This company is not in any tags/categories
MemberHasNoCategory=Dieses Mitglied ist in keiner Kategorie MemberHasNoCategory=This member is not in any tags/categories
ContactHasNoCategory=Dieser Kontakt ist keiner Kategorie zugewiesen ContactHasNoCategory=This contact is not in any tags/categories
ClassifyInCategory=Folgender Kategorie zuweisen ClassifyInCategory=Classify in tag/category
NoneCategory=Keine NoneCategory=Keine
NotCategorized=Ohne Kategorie NotCategorized=Without tag/category
CategoryExistsAtSameLevel=Diese Kategorie existiert bereits auf diesem Level CategoryExistsAtSameLevel=Diese Kategorie existiert bereits auf diesem Level
ReturnInProduct=Zurück zur Produktkarte ReturnInProduct=Zurück zur Produktkarte
ReturnInSupplier=Zurück zur Anbieterkarte ReturnInSupplier=Zurück zur Anbieterkarte
@ -66,22 +64,22 @@ ReturnInCompany=Zurück zur Kunden-/Lead-Karte
ContentsVisibleByAll=Für alle sichtbarer Inhalt ContentsVisibleByAll=Für alle sichtbarer Inhalt
ContentsVisibleByAllShort=Öffentl. Inhalt ContentsVisibleByAllShort=Öffentl. Inhalt
ContentsNotVisibleByAllShort=Privater Inhalt ContentsNotVisibleByAllShort=Privater Inhalt
CategoriesTree=Kategoriebaum CategoriesTree=Tags/categories tree
DeleteCategory=Kategorie DeleteCategory=Delete tag/category
ConfirmDeleteCategory=Möchten Sie diese Kategorie wirklich löschen? ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
RemoveFromCategory=Aus Kategorie entfernen RemoveFromCategory=Remove link with tag/categorie
RemoveFromCategoryConfirm=Zuordnung zu dieser Kategorie wirklich entfernen? RemoveFromCategoryConfirm=Are you sure you want to remove link between the transaction and the tag/category ?
NoCategoriesDefined=Keine Kategorie definiert NoCategoriesDefined=No tag/category defined
SuppliersCategoryShort=Kategorielieferanten SuppliersCategoryShort=Suppliers tags/category
CustomersCategoryShort=Kategoriekunden CustomersCategoryShort=Customers tags/category
ProductsCategoryShort=Kategorieprodukte ProductsCategoryShort=Products tags/category
MembersCategoryShort=Kategoriemitglieder MembersCategoryShort=Members tags/category
SuppliersCategoriesShort=Lieferantenkategorien SuppliersCategoriesShort=Suppliers tags/categories
CustomersCategoriesShort=Kundenkategorien CustomersCategoriesShort=Customers tags/categories
CustomersProspectsCategoriesShort=Lead- / Kundenkategorien CustomersProspectsCategoriesShort=Lead- / Kundenkategorien
ProductsCategoriesShort=Produktkategorien ProductsCategoriesShort=Products tags/categories
MembersCategoriesShort=Mitgliedergruppen MembersCategoriesShort=Members tags/categories
ContactCategoriesShort=Kontaktkategorien ContactCategoriesShort=Contacts tags/categories
ThisCategoryHasNoProduct=Diese Kategorie enthält keine Produkte. ThisCategoryHasNoProduct=Diese Kategorie enthält keine Produkte.
ThisCategoryHasNoSupplier=Diese Kategorie enthält keine Lieferanten. ThisCategoryHasNoSupplier=Diese Kategorie enthält keine Lieferanten.
ThisCategoryHasNoCustomer=Diese Kategorie enthält keine Kunden. ThisCategoryHasNoCustomer=Diese Kategorie enthält keine Kunden.
@ -90,23 +88,23 @@ ThisCategoryHasNoContact=Diese Kategorie enthält keine Kontakte.
AssignedToCustomer=Einem Kunden zugeordnet AssignedToCustomer=Einem Kunden zugeordnet
AssignedToTheCustomer=An den Kunden AssignedToTheCustomer=An den Kunden
InternalCategory=Interne Kategorie InternalCategory=Interne Kategorie
CategoryContents=Kategorieinhalte CategoryContents=Tag/category contents
CategId=Kategorie-ID CategId=Tag/category id
CatSupList=Liste der Lieferantenkategorien CatSupList=List of supplier tags/categories
CatCusList=Liste der Kunden-/ Leadkategorien CatCusList=List of customer/prospect tags/categories
CatProdList=Liste der Produktkategorien CatProdList=List of products tags/categories
CatMemberList=Liste der Kategoriemitglieder CatMemberList=List of members tags/categories
CatContactList=Liste der Kontaktkategorien und Kontakte CatContactList=List of contact tags/categories and contact
CatSupLinks=Verbindung zwischen Lieferanten und Kategorien CatSupLinks=Links between suppliers and tags/categories
CatCusLinks=Verbindung zwischen Kunden-/Lead und Kategorien CatCusLinks=Links between customers/prospects and tags/categories
CatProdLinks=Verbindungen zwischen Produkten/Services und Kategorien CatProdLinks=Links between products/services and tags/categories
CatMemberLinks=Verbindung zwischen Mitgliedern und Kategorien CatMemberLinks=Links between members and tags/categories
DeleteFromCat=Aus Kategorie entfernen DeleteFromCat=Remove from tags/category
DeletePicture=Bild löschen DeletePicture=Bild löschen
ConfirmDeletePicture=Bild wirklich löschen? ConfirmDeletePicture=Bild wirklich löschen?
ExtraFieldsCategories=Ergänzende Attribute ExtraFieldsCategories=Ergänzende Attribute
CategoriesSetup=Kategorien Setup CategoriesSetup=Tags/categories setup
CategorieRecursiv=Automatisch mit übergeordneter Kategorie verbinden CategorieRecursiv=Link with parent tag/category automatically
CategorieRecursivHelp=Wenn aktiviert, wird das Produkt auch zur übergeordneten Kategorie zugewiesen, wenn es einer Unterkategorie zugewiesen wird CategorieRecursivHelp=Wenn aktiviert, wird das Produkt auch zur übergeordneten Kategorie zugewiesen, wenn es einer Unterkategorie zugewiesen wird
AddProductServiceIntoCategory=Folgendes Produkt/Dienstleistungen hinzufügen AddProductServiceIntoCategory=Folgendes Produkt/Dienstleistungen hinzufügen
ShowCategory=Zeige Kategorie ShowCategory=Show tag/category

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