Merge branch '7.0' of git@github.com:Dolibarr/dolibarr.git into develop
This commit is contained in:
commit
7256edc831
@ -7,7 +7,11 @@
|
|||||||
* Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
|
* Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
|
||||||
* Copyright (C) 2013 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
|
* Copyright (C) 2013 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
|
||||||
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
||||||
|
<<<<<<< HEAD
|
||||||
* Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
|
* Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
|
||||||
|
=======
|
||||||
|
* Copyright (C) 2018 Juanjo Menent <jmenent@2byte.es>
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -303,6 +307,7 @@ if (strlen($search_phone_mobile)) $sql.= natural_search('p.phone_mobile', $sea
|
|||||||
if (strlen($search_fax)) $sql.= natural_search('p.fax', $search_fax);
|
if (strlen($search_fax)) $sql.= natural_search('p.fax', $search_fax);
|
||||||
if (strlen($search_skype)) $sql.= natural_search('p.skype', $search_skype);
|
if (strlen($search_skype)) $sql.= natural_search('p.skype', $search_skype);
|
||||||
if (strlen($search_email)) $sql.= natural_search('p.email', $search_email);
|
if (strlen($search_email)) $sql.= natural_search('p.email', $search_email);
|
||||||
|
if (strlen($search_zip)) $sql.= natural_search("p.zip",$search_zip);
|
||||||
if ($search_status != '' && $search_status >= 0) $sql.= " AND p.statut = ".$db->escape($search_status);
|
if ($search_status != '' && $search_status >= 0) $sql.= " AND p.statut = ".$db->escape($search_status);
|
||||||
if ($search_import_key) $sql.= natural_search("p.import_key",$search_import_key);
|
if ($search_import_key) $sql.= natural_search("p.import_key",$search_import_key);
|
||||||
if ($type == "o") // filtre sur type
|
if ($type == "o") // filtre sur type
|
||||||
|
|||||||
@ -398,15 +398,16 @@ class pdf_canelle extends ModelePDFSuppliersInvoices
|
|||||||
$pdf->MultiCell($this->posxqty-$this->posxup-0.8, 3, $up_excl_tax, 0, 'R', 0);
|
$pdf->MultiCell($this->posxqty-$this->posxup-0.8, 3, $up_excl_tax, 0, 'R', 0);
|
||||||
|
|
||||||
// Quantity
|
// Quantity
|
||||||
|
$qty = pdf_getlineqty($object, $i, $outputlangs, $hidedetails);
|
||||||
$pdf->SetXY($this->posxqty, $curY);
|
$pdf->SetXY($this->posxqty, $curY);
|
||||||
// Enough for 6 chars
|
// Enough for 6 chars
|
||||||
if($conf->global->PRODUCT_USE_UNITS)
|
if($conf->global->PRODUCT_USE_UNITS)
|
||||||
{
|
{
|
||||||
$pdf->MultiCell($this->posxunit-$this->posxqty-0.8, 4, $object->lines[$i]->qty, 0, 'R');
|
$pdf->MultiCell($this->posxunit-$this->posxqty-0.8, 4, $qty, 0, 'R');
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$pdf->MultiCell($this->posxdiscount-$this->posxqty-0.8, 4, $object->lines[$i]->qty, 0, 'R');
|
$pdf->MultiCell($this->posxdiscount-$this->posxqty-0.8, 4, $qty, 0, 'R');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Unit
|
// Unit
|
||||||
@ -421,7 +422,8 @@ class pdf_canelle extends ModelePDFSuppliersInvoices
|
|||||||
$pdf->SetXY($this->posxdiscount, $curY);
|
$pdf->SetXY($this->posxdiscount, $curY);
|
||||||
if ($object->lines[$i]->remise_percent)
|
if ($object->lines[$i]->remise_percent)
|
||||||
{
|
{
|
||||||
$pdf->MultiCell($this->postotalht-$this->posxdiscount-1, 3, $object->lines[$i]->remise_percent."%", 0, 'R');
|
$remise_percent = pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails);
|
||||||
|
$pdf->MultiCell($this->postotalht-$this->posxdiscount-1, 3, $remise_percent."%", 0, 'R');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Total HT line
|
// Total HT line
|
||||||
|
|||||||
@ -479,15 +479,16 @@ class pdf_muscadet extends ModelePDFSuppliersOrders
|
|||||||
$pdf->MultiCell($this->posxqty-$this->posxup-0.8, 3, $up_excl_tax, 0, 'R', 0);
|
$pdf->MultiCell($this->posxqty-$this->posxup-0.8, 3, $up_excl_tax, 0, 'R', 0);
|
||||||
|
|
||||||
// Quantity
|
// Quantity
|
||||||
|
$qty = pdf_getlineqty($object, $i, $outputlangs, $hidedetails);
|
||||||
$pdf->SetXY($this->posxqty, $curY);
|
$pdf->SetXY($this->posxqty, $curY);
|
||||||
// Enough for 6 chars
|
// Enough for 6 chars
|
||||||
if($conf->global->PRODUCT_USE_UNITS)
|
if($conf->global->PRODUCT_USE_UNITS)
|
||||||
{
|
{
|
||||||
$pdf->MultiCell($this->posxunit-$this->posxqty-0.8, 4, $object->lines[$i]->qty, 0, 'R');
|
$pdf->MultiCell($this->posxunit-$this->posxqty-0.8, 4, $qty, 0, 'R');
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$pdf->MultiCell($this->posxdiscount-$this->posxqty-0.8, 4, $object->lines[$i]->qty, 0, 'R');
|
$pdf->MultiCell($this->posxdiscount-$this->posxqty-0.8, 4, $qty, 0, 'R');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Unit
|
// Unit
|
||||||
@ -502,7 +503,8 @@ class pdf_muscadet extends ModelePDFSuppliersOrders
|
|||||||
$pdf->SetXY($this->posxdiscount, $curY);
|
$pdf->SetXY($this->posxdiscount, $curY);
|
||||||
if ($object->lines[$i]->remise_percent)
|
if ($object->lines[$i]->remise_percent)
|
||||||
{
|
{
|
||||||
$pdf->MultiCell($this->postotalht-$this->posxdiscount-1, 3, $object->lines[$i]->remise_percent."%", 0, 'R');
|
$remise_percent = pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails);
|
||||||
|
$pdf->MultiCell($this->postotalht-$this->posxdiscount-1, 3, $remise_percent."%", 0, 'R');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Total HT line
|
// Total HT line
|
||||||
|
|||||||
@ -99,6 +99,8 @@ insert into llx_c_action_trigger (code,label,description,elementtype,rang) value
|
|||||||
insert into llx_c_action_trigger (code,label,description,elementtype,rang) values ('MEMBER_SUBSCRIPTION_MODIFY','Member subscribtion modified','Executed when a member subscribtion is modified','member',24);
|
insert into llx_c_action_trigger (code,label,description,elementtype,rang) values ('MEMBER_SUBSCRIPTION_MODIFY','Member subscribtion modified','Executed when a member subscribtion is modified','member',24);
|
||||||
insert into llx_c_action_trigger (code,label,description,elementtype,rang) values ('MEMBER_SUBSCRIPTION_DELETE','Member subscribtion deleted','Executed when a member subscribtion is deleted','member',24);
|
insert into llx_c_action_trigger (code,label,description,elementtype,rang) values ('MEMBER_SUBSCRIPTION_DELETE','Member subscribtion deleted','Executed when a member subscribtion is deleted','member',24);
|
||||||
|
|
||||||
|
-- VPGSQL8.4 ALTER TABLE llx_product_attribute DROP CONSTRAINT unique_ref;
|
||||||
|
|
||||||
ALTER TABLE llx_product_attribute_value DROP INDEX unique_ref;
|
ALTER TABLE llx_product_attribute_value DROP INDEX unique_ref;
|
||||||
ALTER TABLE llx_product_attribute_value ADD UNIQUE INDEX uk_product_attribute_value (fk_product_attribute, ref);
|
ALTER TABLE llx_product_attribute_value ADD UNIQUE INDEX uk_product_attribute_value (fk_product_attribute, ref);
|
||||||
|
|
||||||
|
|||||||
@ -239,7 +239,11 @@ AccountingJournalType2=Sales
|
|||||||
AccountingJournalType3=Purchases
|
AccountingJournalType3=Purchases
|
||||||
AccountingJournalType4=Banka
|
AccountingJournalType4=Banka
|
||||||
AccountingJournalType5=Expenses report
|
AccountingJournalType5=Expenses report
|
||||||
|
<<<<<<< HEAD
|
||||||
AccountingJournalType8=Inventory
|
AccountingJournalType8=Inventory
|
||||||
|
=======
|
||||||
|
AccountingJournalType8=Inventar
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
AccountingJournalType9=Has-new
|
AccountingJournalType9=Has-new
|
||||||
ErrorAccountingJournalIsAlreadyUse=This journal is already use
|
ErrorAccountingJournalIsAlreadyUse=This journal is already use
|
||||||
AccountingAccountForSalesTaxAreDefinedInto=Note: Accounting account for Sales tax are defined into menu <b>%s</b> - <b>%s</b>
|
AccountingAccountForSalesTaxAreDefinedInto=Note: Accounting account for Sales tax are defined into menu <b>%s</b> - <b>%s</b>
|
||||||
|
|||||||
@ -5,7 +5,11 @@ Agenda=Agenda
|
|||||||
TMenuAgenda=Agenda
|
TMenuAgenda=Agenda
|
||||||
Agendas=Agende
|
Agendas=Agende
|
||||||
LocalAgenda=Lokalni kalendar
|
LocalAgenda=Lokalni kalendar
|
||||||
|
<<<<<<< HEAD
|
||||||
ActionsOwnedBy=Event owned by
|
ActionsOwnedBy=Event owned by
|
||||||
|
=======
|
||||||
|
ActionsOwnedBy=Događaj u vlasništvu
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
ActionsOwnedByShort=Vlasnik
|
ActionsOwnedByShort=Vlasnik
|
||||||
AffectedTo=Dodijeljeno korisniku
|
AffectedTo=Dodijeljeno korisniku
|
||||||
Event=Događaj
|
Event=Događaj
|
||||||
@ -14,7 +18,7 @@ EventsNb=Broj događaja
|
|||||||
ListOfActions=Lista događaja
|
ListOfActions=Lista događaja
|
||||||
EventReports=Event reports
|
EventReports=Event reports
|
||||||
Location=Lokacija
|
Location=Lokacija
|
||||||
ToUserOfGroup=To any user in group
|
ToUserOfGroup=Bilo koji korisnik u grupi
|
||||||
EventOnFullDay=Događaj za cijeli dan(e)
|
EventOnFullDay=Događaj za cijeli dan(e)
|
||||||
MenuToDoActions=Svi nepotpuni događaji
|
MenuToDoActions=Svi nepotpuni događaji
|
||||||
MenuDoneActions=Sve završeni događaji
|
MenuDoneActions=Sve završeni događaji
|
||||||
@ -28,45 +32,60 @@ ActionAssignedTo=Događaj dodijeljen
|
|||||||
ViewCal=Mjesečni pregled
|
ViewCal=Mjesečni pregled
|
||||||
ViewDay=Dnevni pregled
|
ViewDay=Dnevni pregled
|
||||||
ViewWeek=Sedmični pregled
|
ViewWeek=Sedmični pregled
|
||||||
ViewPerUser=Per user view
|
ViewPerUser=Pregled po korisniku
|
||||||
ViewPerType=Per type view
|
ViewPerType=Pregled po vrsti
|
||||||
AutoActions= Automatsko popunjavanje
|
AutoActions= Automatsko popunjavanje
|
||||||
AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked, only manual actions will be included in logged and visible into agenda. Automatic tracking of business actions done on objects (validation, status change) will not be saved.
|
AgendaAutoActionDesc= Ovdje definirajte događaje za koje želite da Dolibarr automatski napravi događaj u kalendaru. Ako ništa nije obilježeno, samo ručno unesene akcije će biti uključene i vidljive u kalendaru. Automatsko praćenje biznis akcija urađenih na objektima (validacija, promjena statusa) neće biti spremljene.
|
||||||
AgendaSetupOtherDesc= Ova stranica pruža mogućnosti izvoza svojih Dolibarr događaja u eksterni kalendar (Thunderbird, Google Calendar, ...)
|
AgendaSetupOtherDesc= Ova stranica pruža mogućnosti izvoza svojih Dolibarr događaja u eksterni kalendar (Thunderbird, Google Calendar, ...)
|
||||||
AgendaExtSitesDesc=Ova stranica omogućava definisanje eksternih izvora kalendara da vidite svoje događaje u Dolibarr agendi.
|
AgendaExtSitesDesc=Ova stranica omogućava definisanje eksternih izvora kalendara da vidite svoje događaje u Dolibarr agendi.
|
||||||
ActionsEvents=Događaji za koje će Dolibarr stvoriti akciju u dnevni red automatski
|
ActionsEvents=Događaji za koje će Dolibarr stvoriti akciju u dnevni red automatski
|
||||||
EventRemindersByEmailNotEnabled=Event reminders by email was not enabled into Agenda module setup.
|
EventRemindersByEmailNotEnabled=Event reminders by email was not enabled into Agenda module setup.
|
||||||
##### Agenda event labels #####
|
##### Agenda event labels #####
|
||||||
NewCompanyToDolibarr=Kreirana treća strana %s
|
NewCompanyToDolibarr=Kreirana treća strana %s
|
||||||
|
<<<<<<< HEAD
|
||||||
ContractValidatedInDolibarr=Contract %s validated
|
ContractValidatedInDolibarr=Contract %s validated
|
||||||
PropalClosedSignedInDolibarr=Proposal %s signed
|
PropalClosedSignedInDolibarr=Proposal %s signed
|
||||||
PropalClosedRefusedInDolibarr=Proposal %s refused
|
PropalClosedRefusedInDolibarr=Proposal %s refused
|
||||||
|
=======
|
||||||
|
ContractValidatedInDolibarr=Ugovor %s potvrđen
|
||||||
|
PropalClosedSignedInDolibarr=Prijedlog %s potpisan
|
||||||
|
PropalClosedRefusedInDolibarr=Prijedlog %s odbijen
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
PropalValidatedInDolibarr=Prijedlog %s potvrđen
|
PropalValidatedInDolibarr=Prijedlog %s potvrđen
|
||||||
PropalClassifiedBilledInDolibarr=Proposal %s classified billed
|
PropalClassifiedBilledInDolibarr=Prijedlog %s klasificiran kao fakturisan
|
||||||
InvoiceValidatedInDolibarr=Faktura %s potvrđena
|
InvoiceValidatedInDolibarr=Faktura %s potvrđena
|
||||||
InvoiceValidatedInDolibarrFromPos=Račun %s odobren na POSu
|
InvoiceValidatedInDolibarrFromPos=Račun %s odobren na POSu
|
||||||
InvoiceBackToDraftInDolibarr=Faktura %s vraćena u status izrade
|
InvoiceBackToDraftInDolibarr=Faktura %s vraćena u status izrade
|
||||||
InvoiceDeleteDolibarr=Faktura %s obrisana
|
InvoiceDeleteDolibarr=Faktura %s obrisana
|
||||||
InvoicePaidInDolibarr=Invoice %s changed to paid
|
InvoicePaidInDolibarr=Faktura %s promijenjena u status plaćeno
|
||||||
InvoiceCanceledInDolibarr=Invoice %s canceled
|
InvoiceCanceledInDolibarr=Faktura %s otkazana
|
||||||
MemberValidatedInDolibarr=Member %s validated
|
MemberValidatedInDolibarr=Član %s potvrđen
|
||||||
MemberModifiedInDolibarr=Member %s modified
|
MemberModifiedInDolibarr=Member %s modified
|
||||||
|
<<<<<<< HEAD
|
||||||
MemberResiliatedInDolibarr=Member %s terminated
|
MemberResiliatedInDolibarr=Member %s terminated
|
||||||
MemberDeletedInDolibarr=Member %s deleted
|
MemberDeletedInDolibarr=Member %s deleted
|
||||||
MemberSubscriptionAddedInDolibarr=Subscription %s for member %s added
|
MemberSubscriptionAddedInDolibarr=Subscription %s for member %s added
|
||||||
MemberSubscriptionModifiedInDolibarr=Subscription %s for member %s modified
|
MemberSubscriptionModifiedInDolibarr=Subscription %s for member %s modified
|
||||||
MemberSubscriptionDeletedInDolibarr=Subscription %s for member %s deleted
|
MemberSubscriptionDeletedInDolibarr=Subscription %s for member %s deleted
|
||||||
ShipmentValidatedInDolibarr=Shipment %s validated
|
ShipmentValidatedInDolibarr=Shipment %s validated
|
||||||
|
=======
|
||||||
|
MemberResiliatedInDolibarr=Član %s ugašen
|
||||||
|
MemberDeletedInDolibarr=Član%s obrisan
|
||||||
|
MemberSubscriptionAddedInDolibarr=Subscription %s for member %s added
|
||||||
|
MemberSubscriptionModifiedInDolibarr=Subscription %s for member %s modified
|
||||||
|
MemberSubscriptionDeletedInDolibarr=Subscription %s for member %s deleted
|
||||||
|
ShipmentValidatedInDolibarr=Pošiljka %s odobrena
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
ShipmentClassifyClosedInDolibarr=Shipment %s classified billed
|
ShipmentClassifyClosedInDolibarr=Shipment %s classified billed
|
||||||
ShipmentUnClassifyCloseddInDolibarr=Shipment %s classified reopened
|
ShipmentUnClassifyCloseddInDolibarr=Shipment %s classified reopened
|
||||||
ShipmentDeletedInDolibarr=Shipment %s deleted
|
ShipmentDeletedInDolibarr=Shipment %s deleted
|
||||||
OrderCreatedInDolibarr=Order %s created
|
OrderCreatedInDolibarr=Order %s created
|
||||||
OrderValidatedInDolibarr=Narudžba %s potvrđena
|
OrderValidatedInDolibarr=Narudžba %s potvrđena
|
||||||
OrderDeliveredInDolibarr=Order %s classified delivered
|
OrderDeliveredInDolibarr=Narudžba %s klasificirana kao isporučena
|
||||||
OrderCanceledInDolibarr=Narudžba %s otkazana
|
OrderCanceledInDolibarr=Narudžba %s otkazana
|
||||||
OrderBilledInDolibarr=Order %s classified billed
|
OrderBilledInDolibarr=Narudžba %s klasificirana kao fakturisana
|
||||||
OrderApprovedInDolibarr=Narudžba %s odobrena
|
OrderApprovedInDolibarr=Narudžba %s odobrena
|
||||||
OrderRefusedInDolibarr=Order %s refused
|
OrderRefusedInDolibarr=Narudžba %s odbijena
|
||||||
OrderBackToDraftInDolibarr=NArudžbu %s vratiti u status izrade
|
OrderBackToDraftInDolibarr=NArudžbu %s vratiti u status izrade
|
||||||
ProposalSentByEMail=Poslovni prijedlog %s poslan putem e-maila
|
ProposalSentByEMail=Poslovni prijedlog %s poslan putem e-maila
|
||||||
ContractSentByEMail=Contract %s sent by EMail
|
ContractSentByEMail=Contract %s sent by EMail
|
||||||
@ -75,11 +94,15 @@ InvoiceSentByEMail=Fakture za kupca %s poslana putem e-maila
|
|||||||
SupplierOrderSentByEMail=Narudžba za dobavljača %s poslan putem e-maila
|
SupplierOrderSentByEMail=Narudžba za dobavljača %s poslan putem e-maila
|
||||||
SupplierInvoiceSentByEMail=Predračun dobavljača %s poslan putem e-maila
|
SupplierInvoiceSentByEMail=Predračun dobavljača %s poslan putem e-maila
|
||||||
ShippingSentByEMail=Pošiljka%s poslana emailom
|
ShippingSentByEMail=Pošiljka%s poslana emailom
|
||||||
|
<<<<<<< HEAD
|
||||||
ShippingValidated= Shipment %s validated
|
ShippingValidated= Shipment %s validated
|
||||||
|
=======
|
||||||
|
ShippingValidated= Pošiljka %s odobrena
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
InterventionSentByEMail=Intervencija %s poslana putem e-maila
|
InterventionSentByEMail=Intervencija %s poslana putem e-maila
|
||||||
ProposalDeleted=Proposal deleted
|
ProposalDeleted=Ponuda obrisana
|
||||||
OrderDeleted=Order deleted
|
OrderDeleted=Narudžba obrisana
|
||||||
InvoiceDeleted=Invoice deleted
|
InvoiceDeleted=Faktura obrisana
|
||||||
PRODUCT_CREATEInDolibarr=Product %s created
|
PRODUCT_CREATEInDolibarr=Product %s created
|
||||||
PRODUCT_MODIFYInDolibarr=Product %s modified
|
PRODUCT_MODIFYInDolibarr=Product %s modified
|
||||||
PRODUCT_DELETEInDolibarr=Product %s deleted
|
PRODUCT_DELETEInDolibarr=Product %s deleted
|
||||||
@ -105,16 +128,21 @@ AgendaShowBirthdayEvents=Pokaži rođendane kontakata
|
|||||||
AgendaHideBirthdayEvents=Sakrij rođendane kontakata
|
AgendaHideBirthdayEvents=Sakrij rođendane kontakata
|
||||||
Busy=Zauzet
|
Busy=Zauzet
|
||||||
ExportDataset_event1=Lista događaja u agendi
|
ExportDataset_event1=Lista događaja u agendi
|
||||||
DefaultWorkingDays=Default working days range in week (Example: 1-5, 1-6)
|
DefaultWorkingDays=Postavljeni period radnih dana u sedmici (naprimjer: 1-5, 1-6)
|
||||||
DefaultWorkingHours=Default working hours in day (Example: 9-18)
|
DefaultWorkingHours=Postavljeni radni sati u danu (naprimjer: 9-18)
|
||||||
# External Sites ical
|
# External Sites ical
|
||||||
ExportCal=Export kalendara
|
ExportCal=Export kalendara
|
||||||
ExtSites=Import eksternih kalendara
|
ExtSites=Import eksternih kalendara
|
||||||
ExtSitesEnableThisTool=Show external calendars (defined into global setup) into agenda. Does not affect external calendars defined by users.
|
ExtSitesEnableThisTool=Prikazuje vanjske kalendare (definirane gobalnim postavkama) u agendi. Ne utječe na vanjske kalendare koje definiraju korisnici.
|
||||||
ExtSitesNbOfAgenda=Broj kalendara
|
ExtSitesNbOfAgenda=Broj kalendara
|
||||||
|
<<<<<<< HEAD
|
||||||
AgendaExtNb=Calendar no. %s
|
AgendaExtNb=Calendar no. %s
|
||||||
|
=======
|
||||||
|
AgendaExtNb=Kalendar br. %s
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
ExtSiteUrlAgenda=URL za pristup .ical fajla
|
ExtSiteUrlAgenda=URL za pristup .ical fajla
|
||||||
ExtSiteNoLabel=Nema opisa
|
ExtSiteNoLabel=Nema opisa
|
||||||
|
<<<<<<< HEAD
|
||||||
VisibleTimeRange=Visible time range
|
VisibleTimeRange=Visible time range
|
||||||
VisibleDaysRange=Visible days range
|
VisibleDaysRange=Visible days range
|
||||||
AddEvent=Napravi događaj
|
AddEvent=Napravi događaj
|
||||||
@ -129,3 +157,19 @@ EveryMonth=Svakog mjeseca
|
|||||||
DayOfMonth=Day of month
|
DayOfMonth=Day of month
|
||||||
DayOfWeek=Day of week
|
DayOfWeek=Day of week
|
||||||
DateStartPlusOne=Date start + 1 hour
|
DateStartPlusOne=Date start + 1 hour
|
||||||
|
=======
|
||||||
|
VisibleTimeRange=Vidljivi raspon vremena
|
||||||
|
VisibleDaysRange=Vidljivi raspon dana
|
||||||
|
AddEvent=Napravi događaj
|
||||||
|
MyAvailability=Moja dostupnost
|
||||||
|
ActionType=Vrsta događaja
|
||||||
|
DateActionBegin=Početni datum događaja
|
||||||
|
CloneAction=Kloniraj događaj
|
||||||
|
ConfirmCloneEvent=Jeste li sigurni da želite duplirati događaj <b>%s</b>?
|
||||||
|
RepeatEvent=Ponovi događaj
|
||||||
|
EveryWeek=Svake sedmice
|
||||||
|
EveryMonth=Svakog mjeseca
|
||||||
|
DayOfMonth=Dan u mjesecu
|
||||||
|
DayOfWeek=Dan u sedmici
|
||||||
|
DateStartPlusOne=Datum početka + 1 sat
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
|
|||||||
@ -267,7 +267,11 @@ Prospect=Mogući klijent
|
|||||||
CustomerCard=Kartica kupca
|
CustomerCard=Kartica kupca
|
||||||
Customer=Kupac
|
Customer=Kupac
|
||||||
CustomerRelativeDiscount=Relativni popust kupca
|
CustomerRelativeDiscount=Relativni popust kupca
|
||||||
|
<<<<<<< HEAD
|
||||||
SupplierRelativeDiscount=Relative supplier discount
|
SupplierRelativeDiscount=Relative supplier discount
|
||||||
|
=======
|
||||||
|
SupplierRelativeDiscount=Relativni popust dobavljača
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
CustomerRelativeDiscountShort=Relativni popust
|
CustomerRelativeDiscountShort=Relativni popust
|
||||||
CustomerAbsoluteDiscountShort=Fiksni popust
|
CustomerAbsoluteDiscountShort=Fiksni popust
|
||||||
CompanyHasRelativeDiscount=Ovaj kupca ima defaultni popust od <b>%s%%</b>
|
CompanyHasRelativeDiscount=Ovaj kupca ima defaultni popust od <b>%s%%</b>
|
||||||
|
|||||||
@ -64,14 +64,22 @@ ErrorNoVATRateDefinedForSellerCountry=Greška, nije definirana PDV stopa za drž
|
|||||||
ErrorNoSocialContributionForSellerCountry=Greška, nisu definirane vrste doprinosa i poreza za državu '%s'.
|
ErrorNoSocialContributionForSellerCountry=Greška, nisu definirane vrste doprinosa i poreza za državu '%s'.
|
||||||
ErrorFailedToSaveFile=Greška, neuspjelo spremanje datoteke.
|
ErrorFailedToSaveFile=Greška, neuspjelo spremanje datoteke.
|
||||||
ErrorCannotAddThisParentWarehouse=Pokušavate dodati nadređeno skladište koje je već podređeno skladište ovom trenutnom
|
ErrorCannotAddThisParentWarehouse=Pokušavate dodati nadređeno skladište koje je već podređeno skladište ovom trenutnom
|
||||||
|
<<<<<<< HEAD
|
||||||
MaxNbOfRecordPerPage=Max number of record per page
|
MaxNbOfRecordPerPage=Max number of record per page
|
||||||
|
=======
|
||||||
|
MaxNbOfRecordPerPage=Maks broj unosa po stranici
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
NotAuthorized=Niste ovlašteni da to uradite.
|
NotAuthorized=Niste ovlašteni da to uradite.
|
||||||
SetDate=Postavi datum
|
SetDate=Postavi datum
|
||||||
SelectDate=Odaberi datum
|
SelectDate=Odaberi datum
|
||||||
SeeAlso=Također pogledajte %s
|
SeeAlso=Također pogledajte %s
|
||||||
SeeHere=Pogledaj ovdje
|
SeeHere=Pogledaj ovdje
|
||||||
ClickHere=Klikni ovdje
|
ClickHere=Klikni ovdje
|
||||||
|
<<<<<<< HEAD
|
||||||
Here=Here
|
Here=Here
|
||||||
|
=======
|
||||||
|
Here=Ovdje
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
Apply=Primijeniti
|
Apply=Primijeniti
|
||||||
BackgroundColorByDefault=Osnovna boja pozadine
|
BackgroundColorByDefault=Osnovna boja pozadine
|
||||||
FileRenamed=Datoteka je uspješno preimenovana
|
FileRenamed=Datoteka je uspješno preimenovana
|
||||||
@ -866,7 +874,11 @@ FileNotShared=Datoteka nije dijeljena vanjskim korisnicima
|
|||||||
Project=Projekt
|
Project=Projekt
|
||||||
Projects=Projekti
|
Projects=Projekti
|
||||||
Rights=Dozvole
|
Rights=Dozvole
|
||||||
|
<<<<<<< HEAD
|
||||||
LineNb=Line no.
|
LineNb=Line no.
|
||||||
|
=======
|
||||||
|
LineNb=Red br.
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
IncotermLabel=Incoterms
|
IncotermLabel=Incoterms
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Ponedjeljak
|
Monday=Ponedjeljak
|
||||||
|
|||||||
@ -47,7 +47,7 @@ Notify_PROPAL_SENTBYMAIL=Commercial proposal sent by mail
|
|||||||
Notify_WITHDRAW_TRANSMIT=Transmission withdrawal
|
Notify_WITHDRAW_TRANSMIT=Transmission withdrawal
|
||||||
Notify_WITHDRAW_CREDIT=Credit withdrawal
|
Notify_WITHDRAW_CREDIT=Credit withdrawal
|
||||||
Notify_WITHDRAW_EMIT=Perform withdrawal
|
Notify_WITHDRAW_EMIT=Perform withdrawal
|
||||||
Notify_COMPANY_CREATE=Trća stranka kreirana
|
Notify_COMPANY_CREATE=Treća stranka kreirana
|
||||||
Notify_COMPANY_SENTBYMAIL=Mails sent from third party card
|
Notify_COMPANY_SENTBYMAIL=Mails sent from third party card
|
||||||
Notify_BILL_VALIDATE=Customer invoice validated
|
Notify_BILL_VALIDATE=Customer invoice validated
|
||||||
Notify_BILL_UNVALIDATE=Customer invoice unvalidated
|
Notify_BILL_UNVALIDATE=Customer invoice unvalidated
|
||||||
@ -246,4 +246,8 @@ WEBSITE_PAGEURL=URL of page
|
|||||||
WEBSITE_TITLE=Titula
|
WEBSITE_TITLE=Titula
|
||||||
WEBSITE_DESCRIPTION=Opis
|
WEBSITE_DESCRIPTION=Opis
|
||||||
WEBSITE_KEYWORDS=Keywords
|
WEBSITE_KEYWORDS=Keywords
|
||||||
|
<<<<<<< HEAD
|
||||||
LinesToImport=Lines to import
|
LinesToImport=Lines to import
|
||||||
|
=======
|
||||||
|
LinesToImport=Linija za uvoz
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
|
|||||||
@ -226,4 +226,8 @@ AllowCommentOnProject=Allow user comments on projects
|
|||||||
DontHavePermissionForCloseProject=You do not have permissions to close the project %s
|
DontHavePermissionForCloseProject=You do not have permissions to close the project %s
|
||||||
DontHaveTheValidateStatus=The project %s must be open to be closed
|
DontHaveTheValidateStatus=The project %s must be open to be closed
|
||||||
RecordsClosed=%s project(s) closed
|
RecordsClosed=%s project(s) closed
|
||||||
|
<<<<<<< HEAD
|
||||||
SendProjectRef=About project %s
|
SendProjectRef=About project %s
|
||||||
|
=======
|
||||||
|
SendProjectRef=O projektu %s
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
|
|||||||
@ -8,9 +8,17 @@ WarehouseEdit=Modifikovanje skladišta
|
|||||||
MenuNewWarehouse=Novo skladište
|
MenuNewWarehouse=Novo skladište
|
||||||
WarehouseSource=Izvorno skladište
|
WarehouseSource=Izvorno skladište
|
||||||
WarehouseSourceNotDefined=Nema definisanog skladišta,
|
WarehouseSourceNotDefined=Nema definisanog skladišta,
|
||||||
|
<<<<<<< HEAD
|
||||||
AddWarehouse=Create warehouse
|
AddWarehouse=Create warehouse
|
||||||
|
=======
|
||||||
|
AddWarehouse=Napravi skladište
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
AddOne=Dodaj jedno
|
AddOne=Dodaj jedno
|
||||||
|
<<<<<<< HEAD
|
||||||
DefaultWarehouse=Default warehouse
|
DefaultWarehouse=Default warehouse
|
||||||
|
=======
|
||||||
|
DefaultWarehouse=Glavno skladište
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
WarehouseTarget=Ciljano skladište
|
WarehouseTarget=Ciljano skladište
|
||||||
ValidateSending=Obriši slanje
|
ValidateSending=Obriši slanje
|
||||||
CancelSending=Poništi slanje
|
CancelSending=Poništi slanje
|
||||||
@ -24,7 +32,11 @@ Movements=Kretanja
|
|||||||
ErrorWarehouseRefRequired=Referentno ime skladište je potrebno
|
ErrorWarehouseRefRequired=Referentno ime skladište je potrebno
|
||||||
ListOfWarehouses=Lista skladišta
|
ListOfWarehouses=Lista skladišta
|
||||||
ListOfStockMovements=Lista kretanja zaliha
|
ListOfStockMovements=Lista kretanja zaliha
|
||||||
|
<<<<<<< HEAD
|
||||||
ListOfInventories=List of inventories
|
ListOfInventories=List of inventories
|
||||||
|
=======
|
||||||
|
ListOfInventories=Spisak inventara
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
MovementId=Movement ID
|
MovementId=Movement ID
|
||||||
StockMovementForId=Movement ID %d
|
StockMovementForId=Movement ID %d
|
||||||
ListMouvementStockProject=List of stock movements associated to project
|
ListMouvementStockProject=List of stock movements associated to project
|
||||||
@ -161,7 +173,7 @@ inventoryCreatePermission=Create new inventory
|
|||||||
inventoryReadPermission=View inventories
|
inventoryReadPermission=View inventories
|
||||||
inventoryWritePermission=Update inventories
|
inventoryWritePermission=Update inventories
|
||||||
inventoryValidatePermission=Validate inventory
|
inventoryValidatePermission=Validate inventory
|
||||||
inventoryTitle=Inventory
|
inventoryTitle=Inventar
|
||||||
inventoryListTitle=Inventories
|
inventoryListTitle=Inventories
|
||||||
inventoryListEmpty=No inventory in progress
|
inventoryListEmpty=No inventory in progress
|
||||||
inventoryCreateDelete=Create/Delete inventory
|
inventoryCreateDelete=Create/Delete inventory
|
||||||
@ -177,7 +189,7 @@ inventoryMvtStock=By inventory
|
|||||||
inventoryWarningProductAlreadyExists=This product is already into list
|
inventoryWarningProductAlreadyExists=This product is already into list
|
||||||
SelectCategory=Category filter
|
SelectCategory=Category filter
|
||||||
SelectFournisseur=Supplier filter
|
SelectFournisseur=Supplier filter
|
||||||
inventoryOnDate=Inventory
|
inventoryOnDate=Inventar
|
||||||
INVENTORY_DISABLE_VIRTUAL=Allow to not destock child product from a kit on inventory
|
INVENTORY_DISABLE_VIRTUAL=Allow to not destock child product from a kit on inventory
|
||||||
INVENTORY_USE_MIN_PA_IF_NO_LAST_PA=Use the buy price if no last buy price can be found
|
INVENTORY_USE_MIN_PA_IF_NO_LAST_PA=Use the buy price if no last buy price can be found
|
||||||
INVENTORY_USE_INVENTORY_DATE_FROM_DATEMVT=Stock movement have date of inventory
|
INVENTORY_USE_INVENTORY_DATE_FROM_DATEMVT=Stock movement have date of inventory
|
||||||
|
|||||||
@ -100,7 +100,11 @@ DirectDebitOrderCreated=Direct debit order %s created
|
|||||||
AmountRequested=Amount requested
|
AmountRequested=Amount requested
|
||||||
SEPARCUR=SEPA CUR
|
SEPARCUR=SEPA CUR
|
||||||
SEPAFRST=SEPA FRST
|
SEPAFRST=SEPA FRST
|
||||||
|
<<<<<<< HEAD
|
||||||
ExecutionDate=Execution date
|
ExecutionDate=Execution date
|
||||||
|
=======
|
||||||
|
ExecutionDate=Datum izvršenja
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
CreateForSepa=Create direct debit file
|
CreateForSepa=Create direct debit file
|
||||||
|
|
||||||
### Notifications
|
### Notifications
|
||||||
|
|||||||
@ -234,7 +234,11 @@ AccountingJournal=Diari comptable
|
|||||||
NewAccountingJournal=Nou diari comptable
|
NewAccountingJournal=Nou diari comptable
|
||||||
ShowAccoutingJournal=Mostrar diari comptable
|
ShowAccoutingJournal=Mostrar diari comptable
|
||||||
Nature=Caràcter
|
Nature=Caràcter
|
||||||
|
<<<<<<< HEAD
|
||||||
AccountingJournalType1=Miscellaneous operations
|
AccountingJournalType1=Miscellaneous operations
|
||||||
|
=======
|
||||||
|
AccountingJournalType1=Operacions diverses
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
AccountingJournalType2=Vendes
|
AccountingJournalType2=Vendes
|
||||||
AccountingJournalType3=Compres
|
AccountingJournalType3=Compres
|
||||||
AccountingJournalType4=Banc
|
AccountingJournalType4=Banc
|
||||||
|
|||||||
@ -470,7 +470,11 @@ WatermarkOnDraftExpenseReports=Marca d'aigua en informes de despeses esborrany
|
|||||||
AttachMainDocByDefault=Establiu-lo a 1 si voleu adjuntar el document principal al correu electrònic de manera predeterminada (si escau)
|
AttachMainDocByDefault=Establiu-lo a 1 si voleu adjuntar el document principal al correu electrònic de manera predeterminada (si escau)
|
||||||
FilesAttachedToEmail=Adjuntar fitxer
|
FilesAttachedToEmail=Adjuntar fitxer
|
||||||
SendEmailsReminders=Enviar recordatoris d'agenda per correu electrònic
|
SendEmailsReminders=Enviar recordatoris d'agenda per correu electrònic
|
||||||
|
<<<<<<< HEAD
|
||||||
davDescription=Add a component to be a DAV server
|
davDescription=Add a component to be a DAV server
|
||||||
|
=======
|
||||||
|
davDescription=Afegeix un component per ser un servidor DAV
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
# Modules
|
# Modules
|
||||||
Module0Name=Usuaris i grups
|
Module0Name=Usuaris i grups
|
||||||
Module0Desc=Gestió d'usuaris / empleats i grups
|
Module0Desc=Gestió d'usuaris / empleats i grups
|
||||||
@ -838,11 +842,21 @@ Permission1251=Llançar les importacions en massa a la base de dades (càrrega d
|
|||||||
Permission1321=Exporta factures de clients, atributs i cobraments
|
Permission1321=Exporta factures de clients, atributs i cobraments
|
||||||
Permission1322=Reobrir una factura pagada
|
Permission1322=Reobrir una factura pagada
|
||||||
Permission1421=Exporta comandes de clients i atributs
|
Permission1421=Exporta comandes de clients i atributs
|
||||||
|
<<<<<<< HEAD
|
||||||
Permission20001=Read leave requests (your leaves and the one of your subordinates)
|
Permission20001=Read leave requests (your leaves and the one of your subordinates)
|
||||||
Permission20002=Create/modify your leave requests (yours leaves and the one of your subordinates)
|
Permission20002=Create/modify your leave requests (yours leaves and the one of your subordinates)
|
||||||
|
=======
|
||||||
|
Permission20001=Consulta els dies de lliure disposició (els propis i els dels teus subordinats)
|
||||||
|
Permission20002=Crea/modifica els teus dies de lliure disposició (els propis i els dels teus subordinats)
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
Permission20003=Elimina les peticions de dies lliures retribuïts
|
Permission20003=Elimina les peticions de dies lliures retribuïts
|
||||||
|
<<<<<<< HEAD
|
||||||
Permission20004=Read all leave requests (even of user not subordinates)
|
Permission20004=Read all leave requests (even of user not subordinates)
|
||||||
Permission20005=Create/modify leave requests for everybody (even of user not subordinates)
|
Permission20005=Create/modify leave requests for everybody (even of user not subordinates)
|
||||||
|
=======
|
||||||
|
Permission20004=Consulta tots els dies de lliure disposició (inclòs els usuaris no subordinats)
|
||||||
|
Permission20005=Crea/modifica els dies de lliure disposició per tothom (inclòs els usuaris no subordinats)
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
Permission20006=Administra els dies de lliure disposició (configura i actualitza el balanç)
|
Permission20006=Administra els dies de lliure disposició (configura i actualitza el balanç)
|
||||||
Permission23001=Consulta les tasques programades
|
Permission23001=Consulta les tasques programades
|
||||||
Permission23002=Crear/Modificar les tasques programades
|
Permission23002=Crear/Modificar les tasques programades
|
||||||
@ -1448,9 +1462,15 @@ SyslogFilename=Nom i ruta de l'arxiu
|
|||||||
YouCanUseDOL_DATA_ROOT=Utilitza DOL_DATA_ROOT/dolibarr.log per un fitxer de registre en la carpeta documents de Dolibarr. Tanmateix, es pot definir una carpeta diferent per guardar aquest fitxer.
|
YouCanUseDOL_DATA_ROOT=Utilitza DOL_DATA_ROOT/dolibarr.log per un fitxer de registre en la carpeta documents de Dolibarr. Tanmateix, es pot definir una carpeta diferent per guardar aquest fitxer.
|
||||||
ErrorUnknownSyslogConstant=La constant %s no és una constant syslog coneguda
|
ErrorUnknownSyslogConstant=La constant %s no és una constant syslog coneguda
|
||||||
OnlyWindowsLOG_USER=Windows només suporta LOG_USER
|
OnlyWindowsLOG_USER=Windows només suporta LOG_USER
|
||||||
|
<<<<<<< HEAD
|
||||||
CompressSyslogs=Syslog files compression and backup
|
CompressSyslogs=Syslog files compression and backup
|
||||||
SyslogFileNumberOfSaves=Còpies del log
|
SyslogFileNumberOfSaves=Còpies del log
|
||||||
ConfigureCleaningCronjobToSetFrequencyOfSaves=Configure cleaning scheduled job to set log backup frequency
|
ConfigureCleaningCronjobToSetFrequencyOfSaves=Configure cleaning scheduled job to set log backup frequency
|
||||||
|
=======
|
||||||
|
CompressSyslogs=Compressió i còpia de seguretat d'arxius Syslog
|
||||||
|
SyslogFileNumberOfSaves=Còpies del log
|
||||||
|
ConfigureCleaningCronjobToSetFrequencyOfSaves=Configura la tasca programada de neteja per establir la freqüència de còpia de seguretat del registre
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
##### Donations #####
|
##### Donations #####
|
||||||
DonationsSetup=Configuració del mòdul donacions
|
DonationsSetup=Configuració del mòdul donacions
|
||||||
DonationsReceiptModel=Plantilla de rebut de donació
|
DonationsReceiptModel=Plantilla de rebut de donació
|
||||||
@ -1547,11 +1567,19 @@ FailedToInitializeMenu=Error al inicialitzar el menú
|
|||||||
##### Tax #####
|
##### Tax #####
|
||||||
TaxSetup=Configuració del mòdul d'impostos varis i dividends
|
TaxSetup=Configuració del mòdul d'impostos varis i dividends
|
||||||
OptionVatMode=Opció de càrrega d'IVA
|
OptionVatMode=Opció de càrrega d'IVA
|
||||||
|
<<<<<<< HEAD
|
||||||
OptionVATDefault=Standard basis
|
OptionVATDefault=Standard basis
|
||||||
|
=======
|
||||||
|
OptionVATDefault=Base estàndard
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
OptionVATDebitOption=Dèbit
|
OptionVATDebitOption=Dèbit
|
||||||
OptionVatDefaultDesc=La càrrega de l'IVA és: <br>-en l'enviament dels béns (en la pràctica s'usa la data de la factura)<br>-sobre el pagament pels serveis
|
OptionVatDefaultDesc=La càrrega de l'IVA és: <br>-en l'enviament dels béns (en la pràctica s'usa la data de la factura)<br>-sobre el pagament pels serveis
|
||||||
OptionVatDebitOptionDesc=La càrrega de l'IVA és: <br>-en l'enviament dels béns en la pràctica s'usa la data de la factura<br>-sobre la facturació dels serveis
|
OptionVatDebitOptionDesc=La càrrega de l'IVA és: <br>-en l'enviament dels béns en la pràctica s'usa la data de la factura<br>-sobre la facturació dels serveis
|
||||||
|
<<<<<<< HEAD
|
||||||
OptionPaymentForProductAndServices=Cash basis for products and services
|
OptionPaymentForProductAndServices=Cash basis for products and services
|
||||||
|
=======
|
||||||
|
OptionPaymentForProductAndServices=Base de caixa de productes i serveis
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
OptionPaymentForProductAndServicesDesc=VAT is due:<br>- on payment for goods<br>- on payments for services
|
OptionPaymentForProductAndServicesDesc=VAT is due:<br>- on payment for goods<br>- on payments for services
|
||||||
SummaryOfVatExigibilityUsedByDefault=Moment d'exigibilitat per defecte l'IVA per a l'opció escollida:
|
SummaryOfVatExigibilityUsedByDefault=Moment d'exigibilitat per defecte l'IVA per a l'opció escollida:
|
||||||
OnDelivery=Al lliurament
|
OnDelivery=Al lliurament
|
||||||
@ -1730,7 +1758,11 @@ MailToSendContract=Per a enviar un contracte
|
|||||||
MailToThirdparty=Per enviar correu electrònic des de la pàgina del tercer
|
MailToThirdparty=Per enviar correu electrònic des de la pàgina del tercer
|
||||||
MailToMember=Enviar correu electrònic des de la pàgina del membre
|
MailToMember=Enviar correu electrònic des de la pàgina del membre
|
||||||
MailToUser=Enviar correu electrònic des de la pàgina d'usuari
|
MailToUser=Enviar correu electrònic des de la pàgina d'usuari
|
||||||
|
<<<<<<< HEAD
|
||||||
MailToProject= To send email from project page
|
MailToProject= To send email from project page
|
||||||
|
=======
|
||||||
|
MailToProject= Enviar correu electrònic des de la pàgina de projecte
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
ByDefaultInList=Mostra per defecte en la vista del llistat
|
ByDefaultInList=Mostra per defecte en la vista del llistat
|
||||||
YouUseLastStableVersion=Estàs utilitzant l'última versió estable
|
YouUseLastStableVersion=Estàs utilitzant l'última versió estable
|
||||||
TitleExampleForMajorRelease=Exemple de missatge que es pot utilitzar per anunciar aquesta actualització de versió (ets lliure d'utilitzar-ho a les teves webs)
|
TitleExampleForMajorRelease=Exemple de missatge que es pot utilitzar per anunciar aquesta actualització de versió (ets lliure d'utilitzar-ho a les teves webs)
|
||||||
@ -1779,7 +1811,11 @@ MAIN_PDF_MARGIN_TOP=Marge superior al PDF
|
|||||||
MAIN_PDF_MARGIN_BOTTOM=Marge inferior al PDF
|
MAIN_PDF_MARGIN_BOTTOM=Marge inferior al PDF
|
||||||
SetToYesIfGroupIsComputationOfOtherGroups=Estableixi a SÍ si aquest grup és un càlcul d'altres grups
|
SetToYesIfGroupIsComputationOfOtherGroups=Estableixi a SÍ si aquest grup és un càlcul d'altres grups
|
||||||
EnterCalculationRuleIfPreviousFieldIsYes=Introduïu la regla de càlculs si el camp anterior ha estat posat a SÍ (Per exemple 'CODEGRP1 + CODEGRP2')
|
EnterCalculationRuleIfPreviousFieldIsYes=Introduïu la regla de càlculs si el camp anterior ha estat posat a SÍ (Per exemple 'CODEGRP1 + CODEGRP2')
|
||||||
|
<<<<<<< HEAD
|
||||||
SeveralLangugeVariatFound=Several language variants found
|
SeveralLangugeVariatFound=Several language variants found
|
||||||
|
=======
|
||||||
|
SeveralLangugeVariatFound=S'ha trobat diverses variants d'idiomes
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
WebDavServer=URL of %s server : %s
|
WebDavServer=URL of %s server : %s
|
||||||
##### Resource ####
|
##### Resource ####
|
||||||
ResourceSetup=Configuració del mòdul Recurs
|
ResourceSetup=Configuració del mòdul Recurs
|
||||||
|
|||||||
@ -348,10 +348,17 @@ NextDateToExecution=Data de la propera generació de factures
|
|||||||
NextDateToExecutionShort=Data següent gen.
|
NextDateToExecutionShort=Data següent gen.
|
||||||
DateLastGeneration=Data de l'última generació
|
DateLastGeneration=Data de l'última generació
|
||||||
DateLastGenerationShort=Data última gen.
|
DateLastGenerationShort=Data última gen.
|
||||||
|
<<<<<<< HEAD
|
||||||
MaxPeriodNumber=Max number of invoice generation
|
MaxPeriodNumber=Max number of invoice generation
|
||||||
NbOfGenerationDone=Number of invoice generation already done
|
NbOfGenerationDone=Number of invoice generation already done
|
||||||
NbOfGenerationDoneShort=Number of generation done
|
NbOfGenerationDoneShort=Number of generation done
|
||||||
MaxGenerationReached=Maximum number of generations reached
|
MaxGenerationReached=Maximum number of generations reached
|
||||||
|
=======
|
||||||
|
MaxPeriodNumber=Número màxim de generació de factures
|
||||||
|
NbOfGenerationDone=Número de generació de factura ja realitzat
|
||||||
|
NbOfGenerationDoneShort=Número de generació realitzat
|
||||||
|
MaxGenerationReached=Número màxim de generacions aconseguides
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
InvoiceAutoValidate=Valida les factures automàticament
|
InvoiceAutoValidate=Valida les factures automàticament
|
||||||
GeneratedFromRecurringInvoice=Generat des de la plantilla de factura recurrent %s
|
GeneratedFromRecurringInvoice=Generat des de la plantilla de factura recurrent %s
|
||||||
DateIsNotEnough=Encara no s'ha arribat a la data
|
DateIsNotEnough=Encara no s'ha arribat a la data
|
||||||
|
|||||||
@ -267,23 +267,40 @@ Prospect=Client potencial
|
|||||||
CustomerCard=Fitxa client
|
CustomerCard=Fitxa client
|
||||||
Customer=Client
|
Customer=Client
|
||||||
CustomerRelativeDiscount=Descompte client relatiu
|
CustomerRelativeDiscount=Descompte client relatiu
|
||||||
|
<<<<<<< HEAD
|
||||||
SupplierRelativeDiscount=Relative supplier discount
|
SupplierRelativeDiscount=Relative supplier discount
|
||||||
|
=======
|
||||||
|
SupplierRelativeDiscount=Descompte relatiu de proveïdor
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
CustomerRelativeDiscountShort=Descompte relatiu
|
CustomerRelativeDiscountShort=Descompte relatiu
|
||||||
CustomerAbsoluteDiscountShort=Descompte fixe
|
CustomerAbsoluteDiscountShort=Descompte fixe
|
||||||
CompanyHasRelativeDiscount=Aquest client té un descompte per defecte de <b>%s%%</b>
|
CompanyHasRelativeDiscount=Aquest client té un descompte per defecte de <b>%s%%</b>
|
||||||
CompanyHasNoRelativeDiscount=Aquest client no té descomptes relatius per defecte
|
CompanyHasNoRelativeDiscount=Aquest client no té descomptes relatius per defecte
|
||||||
HasRelativeDiscountFromSupplier=You have a default discount of <b>%s%%</b> from this supplier
|
HasRelativeDiscountFromSupplier=You have a default discount of <b>%s%%</b> from this supplier
|
||||||
|
<<<<<<< HEAD
|
||||||
HasNoRelativeDiscountFromSupplier=You have no default relative discount from this supplier
|
HasNoRelativeDiscountFromSupplier=You have no default relative discount from this supplier
|
||||||
|
=======
|
||||||
|
HasNoRelativeDiscountFromSupplier=No tens descomptes relatius per defecte d'aquest proveïdor
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
CompanyHasAbsoluteDiscount=Aquest client té descomptes disponibles (notes de crèdit o bestretes) per <b>%s</b> %s
|
CompanyHasAbsoluteDiscount=Aquest client té descomptes disponibles (notes de crèdit o bestretes) per <b>%s</b> %s
|
||||||
CompanyHasDownPaymentOrCommercialDiscount=Aquest client té un descompte disponible (comercial, de pagament) per a <b>%s</b>%s
|
CompanyHasDownPaymentOrCommercialDiscount=Aquest client té un descompte disponible (comercial, de pagament) per a <b>%s</b>%s
|
||||||
CompanyHasCreditNote=Aquest client encara té abonaments per <b>%s</b> %s
|
CompanyHasCreditNote=Aquest client encara té abonaments per <b>%s</b> %s
|
||||||
|
<<<<<<< HEAD
|
||||||
HasNoAbsoluteDiscountFromSupplier=You have no discount credit available from this supplier
|
HasNoAbsoluteDiscountFromSupplier=You have no discount credit available from this supplier
|
||||||
|
=======
|
||||||
|
HasNoAbsoluteDiscountFromSupplier=No tens crèdit disponible per descomptar d'aquest proveïdor
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
HasAbsoluteDiscountFromSupplier=You have discounts available (credits notes or down payments) for <b>%s</b> %s from this supplier
|
HasAbsoluteDiscountFromSupplier=You have discounts available (credits notes or down payments) for <b>%s</b> %s from this supplier
|
||||||
HasDownPaymentOrCommercialDiscountFromSupplier=You have discounts available (commercial, down payments) for <b>%s</b> %s from this supplier
|
HasDownPaymentOrCommercialDiscountFromSupplier=You have discounts available (commercial, down payments) for <b>%s</b> %s from this supplier
|
||||||
HasCreditNoteFromSupplier=You have credit notes for <b>%s</b> %s from this supplier
|
HasCreditNoteFromSupplier=You have credit notes for <b>%s</b> %s from this supplier
|
||||||
CompanyHasNoAbsoluteDiscount=Aquest client no té més descomptes fixos disponibles
|
CompanyHasNoAbsoluteDiscount=Aquest client no té més descomptes fixos disponibles
|
||||||
|
<<<<<<< HEAD
|
||||||
CustomerAbsoluteDiscountAllUsers=Absolute customer discounts (granted by all users)
|
CustomerAbsoluteDiscountAllUsers=Absolute customer discounts (granted by all users)
|
||||||
CustomerAbsoluteDiscountMy=Absolute customer discounts (granted by yourself)
|
CustomerAbsoluteDiscountMy=Absolute customer discounts (granted by yourself)
|
||||||
|
=======
|
||||||
|
CustomerAbsoluteDiscountAllUsers=Descomptes absoluts dels clients (concedits per tots els usuaris)
|
||||||
|
CustomerAbsoluteDiscountMy=Descomptes absoluts dels clients (concedits per tu mateix)
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
SupplierAbsoluteDiscountAllUsers=Absolute supplier discounts (granted by all users)
|
SupplierAbsoluteDiscountAllUsers=Absolute supplier discounts (granted by all users)
|
||||||
SupplierAbsoluteDiscountMy=Absolute supplier discounts (granted by yourself)
|
SupplierAbsoluteDiscountMy=Absolute supplier discounts (granted by yourself)
|
||||||
DiscountNone=Cap
|
DiscountNone=Cap
|
||||||
@ -390,7 +407,11 @@ NoDolibarrAccess=Sense accés d'usuari
|
|||||||
ExportDataset_company_1=Tercers (empreses/entitats/persones físiques) i propietats
|
ExportDataset_company_1=Tercers (empreses/entitats/persones físiques) i propietats
|
||||||
ExportDataset_company_2=Contactes de tercers i atributs
|
ExportDataset_company_2=Contactes de tercers i atributs
|
||||||
ImportDataset_company_1=Tercers (empreses/entitats/persones físiques) i propietats
|
ImportDataset_company_1=Tercers (empreses/entitats/persones físiques) i propietats
|
||||||
|
<<<<<<< HEAD
|
||||||
ImportDataset_company_2=Contacts/Addresses (of third parties or not) and attributes
|
ImportDataset_company_2=Contacts/Addresses (of third parties or not) and attributes
|
||||||
|
=======
|
||||||
|
ImportDataset_company_2=Contactes/Adreces (de tercers o no) i atributs
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
ImportDataset_company_3=Comptes bancaris de tercers
|
ImportDataset_company_3=Comptes bancaris de tercers
|
||||||
ImportDataset_company_4=Tercers/Comercials (Assigna usuaris comercials a tercers)
|
ImportDataset_company_4=Tercers/Comercials (Assigna usuaris comercials a tercers)
|
||||||
PriceLevel=Nivell de preus
|
PriceLevel=Nivell de preus
|
||||||
|
|||||||
@ -169,9 +169,15 @@ LT1ReportByCustomers=Report tax 2 by third party
|
|||||||
LT2ReportByCustomers=Report tax 3 by third party
|
LT2ReportByCustomers=Report tax 3 by third party
|
||||||
LT1ReportByCustomersES=Informe de RE per tercers
|
LT1ReportByCustomersES=Informe de RE per tercers
|
||||||
LT2ReportByCustomersES=Informe per tercer del IRPF
|
LT2ReportByCustomersES=Informe per tercer del IRPF
|
||||||
|
<<<<<<< HEAD
|
||||||
VATReport=Sale tax report
|
VATReport=Sale tax report
|
||||||
VATReportByPeriods=Sale tax report by period
|
VATReportByPeriods=Sale tax report by period
|
||||||
VATReportByCustomers=Sale tax report by customer
|
VATReportByCustomers=Sale tax report by customer
|
||||||
|
=======
|
||||||
|
VATReport=Informe d'IVA de vendes
|
||||||
|
VATReportByPeriods=Sale tax report by period
|
||||||
|
VATReportByCustomers=Informe d'IVA sobre vendes per client
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
VATReportByCustomersInInputOutputMode=Informe per clients d'IVA cobrat i pagat
|
VATReportByCustomersInInputOutputMode=Informe per clients d'IVA cobrat i pagat
|
||||||
VATReportByQuartersInInputOutputMode=Report by Sale tax rate of the tax collected and paid
|
VATReportByQuartersInInputOutputMode=Report by Sale tax rate of the tax collected and paid
|
||||||
LT1ReportByQuarters=Report tax 2 by rate
|
LT1ReportByQuarters=Report tax 2 by rate
|
||||||
|
|||||||
@ -43,7 +43,11 @@ CronNoJobs=Sense treballs actualment
|
|||||||
CronPriority=Prioritat
|
CronPriority=Prioritat
|
||||||
CronLabel=Etiqueta
|
CronLabel=Etiqueta
|
||||||
CronNbRun=Nº execucions
|
CronNbRun=Nº execucions
|
||||||
|
<<<<<<< HEAD
|
||||||
CronMaxRun=Max number launch
|
CronMaxRun=Max number launch
|
||||||
|
=======
|
||||||
|
CronMaxRun=Número màxim d'execucions
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
CronEach=Tota (s)
|
CronEach=Tota (s)
|
||||||
JobFinished=Tasques llançades i finalitzades
|
JobFinished=Tasques llançades i finalitzades
|
||||||
#Page card
|
#Page card
|
||||||
|
|||||||
@ -39,9 +39,15 @@ TypeOfLeaveId=Tipus d'identificador de baixa
|
|||||||
TypeOfLeaveCode=Tipus de codi de baixa
|
TypeOfLeaveCode=Tipus de codi de baixa
|
||||||
TypeOfLeaveLabel=Tipus d'etiqueta de baixa
|
TypeOfLeaveLabel=Tipus d'etiqueta de baixa
|
||||||
NbUseDaysCP=Nombre de dies lliures consumits
|
NbUseDaysCP=Nombre de dies lliures consumits
|
||||||
|
<<<<<<< HEAD
|
||||||
NbUseDaysCPShort=Days consumed
|
NbUseDaysCPShort=Days consumed
|
||||||
NbUseDaysCPShortInMonth=Days consumed in month
|
NbUseDaysCPShortInMonth=Days consumed in month
|
||||||
DateStartInMonth=Start date in month
|
DateStartInMonth=Start date in month
|
||||||
|
=======
|
||||||
|
NbUseDaysCPShort=Dies consumits
|
||||||
|
NbUseDaysCPShortInMonth=Dies consumits al mes
|
||||||
|
DateStartInMonth=Data d'inici al mes
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
DateEndInMonth=End date in month
|
DateEndInMonth=End date in month
|
||||||
EditCP=Modificar
|
EditCP=Modificar
|
||||||
DeleteCP=Eliminar
|
DeleteCP=Eliminar
|
||||||
@ -97,7 +103,11 @@ AllHolidays=Totes les sol·licituds de permís
|
|||||||
HalfDay=Mig dia
|
HalfDay=Mig dia
|
||||||
NotTheAssignedApprover=No sou l'aprovador assignat
|
NotTheAssignedApprover=No sou l'aprovador assignat
|
||||||
LEAVE_PAID=Vacances pagades
|
LEAVE_PAID=Vacances pagades
|
||||||
|
<<<<<<< HEAD
|
||||||
LEAVE_SICK=Sick leave
|
LEAVE_SICK=Sick leave
|
||||||
|
=======
|
||||||
|
LEAVE_SICK=Baixa per enfermetat
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
LEAVE_OTHER=Other leave
|
LEAVE_OTHER=Other leave
|
||||||
LEAVE_PAID_FR=Vacances pagades
|
LEAVE_PAID_FR=Vacances pagades
|
||||||
## Configuration du Module ##
|
## Configuration du Module ##
|
||||||
|
|||||||
@ -52,4 +52,8 @@ LOAN_ACCOUNTING_ACCOUNT_INTEREST=Compte comptable per al interès per defecte
|
|||||||
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Compte comptable de l'assegurança per defecte
|
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Compte comptable de l'assegurança per defecte
|
||||||
FinancialCommitment=Financial commitment
|
FinancialCommitment=Financial commitment
|
||||||
CreateCalcSchedule=Edit financial commitment
|
CreateCalcSchedule=Edit financial commitment
|
||||||
|
<<<<<<< HEAD
|
||||||
InterestAmount=Interest amount
|
InterestAmount=Interest amount
|
||||||
|
=======
|
||||||
|
InterestAmount=Import d'interès
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
|
|||||||
@ -78,7 +78,11 @@ ResultOfMailSending=Resultat de l'enviament massiu d'e-mails
|
|||||||
NbSelected=Nº seleccionats
|
NbSelected=Nº seleccionats
|
||||||
NbIgnored=Nº ignorats
|
NbIgnored=Nº ignorats
|
||||||
NbSent=Nº enviats
|
NbSent=Nº enviats
|
||||||
|
<<<<<<< HEAD
|
||||||
SentXXXmessages=%s message(s) sent.
|
SentXXXmessages=%s message(s) sent.
|
||||||
|
=======
|
||||||
|
SentXXXmessages=%s missatge(s) enviat(s).
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
ConfirmUnvalidateEmailing=Are you sure you want to change email <b>%s</b> to draft status?
|
ConfirmUnvalidateEmailing=Are you sure you want to change email <b>%s</b> to draft status?
|
||||||
MailingModuleDescContactsWithThirdpartyFilter=Contacte amb filtres de client
|
MailingModuleDescContactsWithThirdpartyFilter=Contacte amb filtres de client
|
||||||
MailingModuleDescContactsByCompanyCategory=Contactes per categoria de tercer
|
MailingModuleDescContactsByCompanyCategory=Contactes per categoria de tercer
|
||||||
|
|||||||
@ -64,14 +64,22 @@ ErrorNoVATRateDefinedForSellerCountry=Error, cap tipus d'IVA definit per al paí
|
|||||||
ErrorNoSocialContributionForSellerCountry=Error, cap tipus d'impost varis definit per al país '%s'.
|
ErrorNoSocialContributionForSellerCountry=Error, cap tipus d'impost varis definit per al país '%s'.
|
||||||
ErrorFailedToSaveFile=Error, el registre del fitxer ha fallat.
|
ErrorFailedToSaveFile=Error, el registre del fitxer ha fallat.
|
||||||
ErrorCannotAddThisParentWarehouse=Està intentant afegir un magatzem pare que ja és fill de l'actual
|
ErrorCannotAddThisParentWarehouse=Està intentant afegir un magatzem pare que ja és fill de l'actual
|
||||||
|
<<<<<<< HEAD
|
||||||
MaxNbOfRecordPerPage=Max number of record per page
|
MaxNbOfRecordPerPage=Max number of record per page
|
||||||
|
=======
|
||||||
|
MaxNbOfRecordPerPage=Número màxim de registres per pàgina
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
NotAuthorized=No està autoritzat per fer-ho.
|
NotAuthorized=No està autoritzat per fer-ho.
|
||||||
SetDate=Indica la data
|
SetDate=Indica la data
|
||||||
SelectDate=Seleccioneu una data
|
SelectDate=Seleccioneu una data
|
||||||
SeeAlso=Veure també %s
|
SeeAlso=Veure també %s
|
||||||
SeeHere=Mira aquí
|
SeeHere=Mira aquí
|
||||||
ClickHere=Fes clic aquí
|
ClickHere=Fes clic aquí
|
||||||
|
<<<<<<< HEAD
|
||||||
Here=Here
|
Here=Here
|
||||||
|
=======
|
||||||
|
Here=Aquí
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
Apply=Aplicar
|
Apply=Aplicar
|
||||||
BackgroundColorByDefault=Color de fons
|
BackgroundColorByDefault=Color de fons
|
||||||
FileRenamed=L'arxiu s'ha renombrat correctament
|
FileRenamed=L'arxiu s'ha renombrat correctament
|
||||||
@ -328,7 +336,11 @@ Default=Defecte
|
|||||||
DefaultValue=Valor per defecte
|
DefaultValue=Valor per defecte
|
||||||
DefaultValues=Valors per defecte
|
DefaultValues=Valors per defecte
|
||||||
Price=Preu
|
Price=Preu
|
||||||
|
<<<<<<< HEAD
|
||||||
PriceCurrency=Price (currency)
|
PriceCurrency=Price (currency)
|
||||||
|
=======
|
||||||
|
PriceCurrency=Preu (moneda)
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
UnitPrice=Preu unitari
|
UnitPrice=Preu unitari
|
||||||
UnitPriceHT=Preu base
|
UnitPriceHT=Preu base
|
||||||
UnitPriceHTCurrency=Unit price (net) (currency)
|
UnitPriceHTCurrency=Unit price (net) (currency)
|
||||||
@ -438,7 +450,11 @@ ActionsOnMember=Esdeveniments d'aquest soci
|
|||||||
ActionsOnProduct=Esdeveniments sobre aquest producte
|
ActionsOnProduct=Esdeveniments sobre aquest producte
|
||||||
NActionsLate=%s en retard
|
NActionsLate=%s en retard
|
||||||
ToDo=A realitzar
|
ToDo=A realitzar
|
||||||
|
<<<<<<< HEAD
|
||||||
Completed=Completed
|
Completed=Completed
|
||||||
|
=======
|
||||||
|
Completed=Finalitzat
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
Running=En progrés
|
Running=En progrés
|
||||||
RequestAlreadyDone=Sol·licitud ja recollida
|
RequestAlreadyDone=Sol·licitud ja recollida
|
||||||
Filter=Filtre
|
Filter=Filtre
|
||||||
@ -866,7 +882,11 @@ FileNotShared=Fitxer no compartit amb el públic extern
|
|||||||
Project=Projecte
|
Project=Projecte
|
||||||
Projects=Projectes
|
Projects=Projectes
|
||||||
Rights=Permisos
|
Rights=Permisos
|
||||||
|
<<<<<<< HEAD
|
||||||
LineNb=Line no.
|
LineNb=Line no.
|
||||||
|
=======
|
||||||
|
LineNb=Núm. línia
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
IncotermLabel=Incoterms
|
IncotermLabel=Incoterms
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Dilluns
|
Monday=Dilluns
|
||||||
@ -933,11 +953,20 @@ CommentDeleted=Comentari suprimit
|
|||||||
Everybody=Projecte compartit
|
Everybody=Projecte compartit
|
||||||
PayedBy=Pagat per
|
PayedBy=Pagat per
|
||||||
PayedTo=Pagat a
|
PayedTo=Pagat a
|
||||||
|
<<<<<<< HEAD
|
||||||
Monthly=Monthly
|
Monthly=Monthly
|
||||||
Quarterly=Quarterly
|
Quarterly=Quarterly
|
||||||
Annual=Annual
|
Annual=Annual
|
||||||
Local=Local
|
Local=Local
|
||||||
Remote=Remote
|
Remote=Remote
|
||||||
LocalAndRemote=Local and Remote
|
LocalAndRemote=Local and Remote
|
||||||
|
=======
|
||||||
|
Monthly=Mensual
|
||||||
|
Quarterly=Trimestral
|
||||||
|
Annual=Anual
|
||||||
|
Local=Local
|
||||||
|
Remote=Remot
|
||||||
|
LocalAndRemote=Local i remota
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
KeyboardShortcut=Keyboard shortcut
|
KeyboardShortcut=Keyboard shortcut
|
||||||
AssignedTo=Assignada a
|
AssignedTo=Assignada a
|
||||||
|
|||||||
@ -117,7 +117,11 @@ SendingEmailOnCancelation=Sending email on cancelation
|
|||||||
YourMembershipRequestWasReceived=Your membership was received.
|
YourMembershipRequestWasReceived=Your membership was received.
|
||||||
YourMembershipWasValidated=Your membership was validated
|
YourMembershipWasValidated=Your membership was validated
|
||||||
YourSubscriptionWasRecorded=Your new subscription was recorded
|
YourSubscriptionWasRecorded=Your new subscription was recorded
|
||||||
|
<<<<<<< HEAD
|
||||||
SubscriptionReminderEmail=Subscription reminder
|
SubscriptionReminderEmail=Subscription reminder
|
||||||
|
=======
|
||||||
|
SubscriptionReminderEmail=Recordatori de subscripció
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
YourMembershipWasCanceled=Your membership was canceled
|
YourMembershipWasCanceled=Your membership was canceled
|
||||||
CardContent=Contingut de la seva fitxa de soci
|
CardContent=Contingut de la seva fitxa de soci
|
||||||
# Text of email templates
|
# Text of email templates
|
||||||
|
|||||||
@ -246,4 +246,8 @@ WEBSITE_PAGEURL=URL de pàgina
|
|||||||
WEBSITE_TITLE=Títol
|
WEBSITE_TITLE=Títol
|
||||||
WEBSITE_DESCRIPTION=Descripció
|
WEBSITE_DESCRIPTION=Descripció
|
||||||
WEBSITE_KEYWORDS=Paraules clau
|
WEBSITE_KEYWORDS=Paraules clau
|
||||||
|
<<<<<<< HEAD
|
||||||
LinesToImport=Lines to import
|
LinesToImport=Lines to import
|
||||||
|
=======
|
||||||
|
LinesToImport=Línies per importar
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
|
|||||||
@ -140,7 +140,11 @@ ProjectReportDate=Canvia les dates de les tasques en funció de la nova data d'i
|
|||||||
ErrorShiftTaskDate=S'ha produït un error en el canvi de les dates de les tasques
|
ErrorShiftTaskDate=S'ha produït un error en el canvi de les dates de les tasques
|
||||||
ProjectsAndTasksLines=Projectes i tasques
|
ProjectsAndTasksLines=Projectes i tasques
|
||||||
ProjectCreatedInDolibarr=Projecte %s creat
|
ProjectCreatedInDolibarr=Projecte %s creat
|
||||||
|
<<<<<<< HEAD
|
||||||
ProjectValidatedInDolibarr=Project %s validated
|
ProjectValidatedInDolibarr=Project %s validated
|
||||||
|
=======
|
||||||
|
ProjectValidatedInDolibarr=Projecte %s validat
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
ProjectModifiedInDolibarr=Projecte %s modificat
|
ProjectModifiedInDolibarr=Projecte %s modificat
|
||||||
TaskCreatedInDolibarr=La tasca %s a sigut creada
|
TaskCreatedInDolibarr=La tasca %s a sigut creada
|
||||||
TaskModifiedInDolibarr=La tasca %s a sigut modificada
|
TaskModifiedInDolibarr=La tasca %s a sigut modificada
|
||||||
@ -225,5 +229,10 @@ AllowCommentOnTask=Permet comentaris dels usuaris a les tasques
|
|||||||
AllowCommentOnProject=Permetre comentaris dels usuaris als projectes
|
AllowCommentOnProject=Permetre comentaris dels usuaris als projectes
|
||||||
DontHavePermissionForCloseProject=You do not have permissions to close the project %s
|
DontHavePermissionForCloseProject=You do not have permissions to close the project %s
|
||||||
DontHaveTheValidateStatus=The project %s must be open to be closed
|
DontHaveTheValidateStatus=The project %s must be open to be closed
|
||||||
|
<<<<<<< HEAD
|
||||||
RecordsClosed=%s project(s) closed
|
RecordsClosed=%s project(s) closed
|
||||||
SendProjectRef=About project %s
|
SendProjectRef=About project %s
|
||||||
|
=======
|
||||||
|
RecordsClosed=%s projecte(s) tancat(s)
|
||||||
|
SendProjectRef=Sobre el projecte %s
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
|
|||||||
@ -15,4 +15,8 @@ THMDescription=Aquest valor es pot utilitzar per calcular el cost del temps cons
|
|||||||
TJMDescription=Aquest valor només és informatiu i no s'utilitza en cap càlcul
|
TJMDescription=Aquest valor només és informatiu i no s'utilitza en cap càlcul
|
||||||
LastSalaries=Últims %s pagaments de salari
|
LastSalaries=Últims %s pagaments de salari
|
||||||
AllSalaries=Tots els pagaments de salari
|
AllSalaries=Tots els pagaments de salari
|
||||||
|
<<<<<<< HEAD
|
||||||
SalariesStatistics=Statistiques salaires
|
SalariesStatistics=Statistiques salaires
|
||||||
|
=======
|
||||||
|
SalariesStatistics=Estadistiques de salaris
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
|
|||||||
@ -8,9 +8,17 @@ WarehouseEdit=Edició magatzem
|
|||||||
MenuNewWarehouse=Nou magatzem
|
MenuNewWarehouse=Nou magatzem
|
||||||
WarehouseSource=Magatzem origen
|
WarehouseSource=Magatzem origen
|
||||||
WarehouseSourceNotDefined=Sense magatzems definits,
|
WarehouseSourceNotDefined=Sense magatzems definits,
|
||||||
|
<<<<<<< HEAD
|
||||||
AddWarehouse=Create warehouse
|
AddWarehouse=Create warehouse
|
||||||
|
=======
|
||||||
|
AddWarehouse=Crea un magatzem
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
AddOne=Afegir un
|
AddOne=Afegir un
|
||||||
|
<<<<<<< HEAD
|
||||||
DefaultWarehouse=Default warehouse
|
DefaultWarehouse=Default warehouse
|
||||||
|
=======
|
||||||
|
DefaultWarehouse=Magatzem predeterminat
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
WarehouseTarget=Magatzem destinació
|
WarehouseTarget=Magatzem destinació
|
||||||
ValidateSending=Elimina l'enviament
|
ValidateSending=Elimina l'enviament
|
||||||
CancelSending=Cancel·la l'enviament
|
CancelSending=Cancel·la l'enviament
|
||||||
@ -24,7 +32,11 @@ Movements=Moviments
|
|||||||
ErrorWarehouseRefRequired=El nom de referència del magatzem és obligatori
|
ErrorWarehouseRefRequired=El nom de referència del magatzem és obligatori
|
||||||
ListOfWarehouses=Llistat de magatzems
|
ListOfWarehouses=Llistat de magatzems
|
||||||
ListOfStockMovements=Llistat de moviments de estoc
|
ListOfStockMovements=Llistat de moviments de estoc
|
||||||
|
<<<<<<< HEAD
|
||||||
ListOfInventories=List of inventories
|
ListOfInventories=List of inventories
|
||||||
|
=======
|
||||||
|
ListOfInventories=Llista d'inventaris
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
MovementId=ID del moviment
|
MovementId=ID del moviment
|
||||||
StockMovementForId=ID de moviment %d
|
StockMovementForId=ID de moviment %d
|
||||||
ListMouvementStockProject=Llista de moviments d'estoc associats al projecte
|
ListMouvementStockProject=Llista de moviments d'estoc associats al projecte
|
||||||
|
|||||||
@ -47,6 +47,7 @@ StripeGateways=Stripe gateways
|
|||||||
OAUTH_STRIPE_TEST_ID=Stripe Connect Client ID (ca_...)
|
OAUTH_STRIPE_TEST_ID=Stripe Connect Client ID (ca_...)
|
||||||
OAUTH_STRIPE_LIVE_ID=Stripe Connect Client ID (ca_...)
|
OAUTH_STRIPE_LIVE_ID=Stripe Connect Client ID (ca_...)
|
||||||
BankAccountForBankTransfer=Bank account for fund payouts
|
BankAccountForBankTransfer=Bank account for fund payouts
|
||||||
|
<<<<<<< HEAD
|
||||||
StripeAccount=Stripe account
|
StripeAccount=Stripe account
|
||||||
StripeChargeList=List of Stripe charges
|
StripeChargeList=List of Stripe charges
|
||||||
StripeTransactionList=List of Stripe transactions
|
StripeTransactionList=List of Stripe transactions
|
||||||
@ -63,3 +64,21 @@ ConfirmDeleteCard=Are you sure you want to delete this Card record?
|
|||||||
CreateCustomerOnStripe=Create customer on Stripe
|
CreateCustomerOnStripe=Create customer on Stripe
|
||||||
CreateCardOnStripe=Create card on Stripe
|
CreateCardOnStripe=Create card on Stripe
|
||||||
ShowInStripe=Show in Stripe
|
ShowInStripe=Show in Stripe
|
||||||
|
=======
|
||||||
|
StripeAccount=Compte de Stripe
|
||||||
|
StripeChargeList=Llista de càrregues de Stripe
|
||||||
|
StripeTransactionList=Llista de transaccions de Stripe
|
||||||
|
StripeCustomerId=ID de client de Stripe
|
||||||
|
StripePaymentModes=Formes de pagament de Stripe
|
||||||
|
LocalID=ID local
|
||||||
|
StripeID=ID de Stripe
|
||||||
|
NameOnCard=Nom a la targeta
|
||||||
|
CardNumber=Número de targeta
|
||||||
|
ExpiryDate=Data de caducitat
|
||||||
|
CVN=CVN
|
||||||
|
DeleteACard=Delete Card record
|
||||||
|
ConfirmDeleteCard=Estàs segur que vols eliminar aquest registre de la targeta?
|
||||||
|
CreateCustomerOnStripe=Crea un client a Stripe
|
||||||
|
CreateCardOnStripe=Crea una targeta a Stripe
|
||||||
|
ShowInStripe=Mostra a Stripe
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
|
|||||||
@ -40,7 +40,11 @@ SetHereVirtualHost=Si pots crear, al teu servidor web (Apache, Nginx...), un Hos
|
|||||||
YouCanAlsoTestWithPHPS=En l'entorn de desenvolupament, és possible que preferiu provar el lloc amb el servidor web incrustat de PHP (requereix PHP 5.5) executant-se<br><strong>php -S 0.0.0.0:8080 -t %s</strong>
|
YouCanAlsoTestWithPHPS=En l'entorn de desenvolupament, és possible que preferiu provar el lloc amb el servidor web incrustat de PHP (requereix PHP 5.5) executant-se<br><strong>php -S 0.0.0.0:8080 -t %s</strong>
|
||||||
CheckVirtualHostPerms=Check also that virtual host has permission <strong>%s</strong> on files into<br><strong>%s</strong>
|
CheckVirtualHostPerms=Check also that virtual host has permission <strong>%s</strong> on files into<br><strong>%s</strong>
|
||||||
ReadPerm=Llegit
|
ReadPerm=Llegit
|
||||||
|
<<<<<<< HEAD
|
||||||
WritePerm=Write
|
WritePerm=Write
|
||||||
|
=======
|
||||||
|
WritePerm=Escriu
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
PreviewSiteServedByWebServer=<LI>Vista prèvia %s en una nova pestanya.</LI><br><br>El %s serà servit per un servidor web extern (com ara Apache, Nginx, IIS). Heu d'instal·lar i configurar aquest servidor abans d'apuntar al directori:<br><strong>%s</strong><br> URL servit per un servidor extern:<br><strong>%s</strong><br>
|
PreviewSiteServedByWebServer=<LI>Vista prèvia %s en una nova pestanya.</LI><br><br>El %s serà servit per un servidor web extern (com ara Apache, Nginx, IIS). Heu d'instal·lar i configurar aquest servidor abans d'apuntar al directori:<br><strong>%s</strong><br> URL servit per un servidor extern:<br><strong>%s</strong><br>
|
||||||
PreviewSiteServedByDolibarr=<u> Previsualitza %s en una nova pestanya. </li> <br> <br> El servidor %s serà servit pel servidor Dolibarr d'aquesta manera no es necessita instal·la cap servidor web addicional (com ara Apache, Nginx, IIS).<br>L'inconvenient és que l'URL de les pàgines no son amigables i començen per la ruta del vostre Dolibarr. <br>URL servit per Dolibarr:<br><strong> %s </strong> <br> <br> Per utilitzar el vostre propi servidor web extern per a servir a aquest lloc web, creeu un amfitrió ('host') virtual al vostre servidor web que apunti al directori<br><strong> %s </strong><br>, llavors introduïu el nom d'aquest servidor virtual i feu clic a l'altre botó de vista prèvia (botó de 'preview').
|
PreviewSiteServedByDolibarr=<u> Previsualitza %s en una nova pestanya. </li> <br> <br> El servidor %s serà servit pel servidor Dolibarr d'aquesta manera no es necessita instal·la cap servidor web addicional (com ara Apache, Nginx, IIS).<br>L'inconvenient és que l'URL de les pàgines no son amigables i començen per la ruta del vostre Dolibarr. <br>URL servit per Dolibarr:<br><strong> %s </strong> <br> <br> Per utilitzar el vostre propi servidor web extern per a servir a aquest lloc web, creeu un amfitrió ('host') virtual al vostre servidor web que apunti al directori<br><strong> %s </strong><br>, llavors introduïu el nom d'aquest servidor virtual i feu clic a l'altre botó de vista prèvia (botó de 'preview').
|
||||||
VirtualHostUrlNotDefined=No s'ha definit la URL de l'amfitrió virtual que serveix el servidor web extern
|
VirtualHostUrlNotDefined=No s'ha definit la URL de l'amfitrió virtual que serveix el servidor web extern
|
||||||
|
|||||||
@ -100,7 +100,11 @@ DirectDebitOrderCreated=S'ha creat l'ordre de domiciliació bancària %s
|
|||||||
AmountRequested=Quantitat sol·licitada
|
AmountRequested=Quantitat sol·licitada
|
||||||
SEPARCUR=SEPA CUR
|
SEPARCUR=SEPA CUR
|
||||||
SEPAFRST=SEPA FRST
|
SEPAFRST=SEPA FRST
|
||||||
|
<<<<<<< HEAD
|
||||||
ExecutionDate=Execution date
|
ExecutionDate=Execution date
|
||||||
|
=======
|
||||||
|
ExecutionDate=Data d'execució
|
||||||
|
>>>>>>> branch '7.0' of git@github.com:Dolibarr/dolibarr.git
|
||||||
CreateForSepa=Create direct debit file
|
CreateForSepa=Create direct debit file
|
||||||
|
|
||||||
### Notifications
|
### Notifications
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user