Merge branch 'develop' of github.com:Dolibarr/dolibarr into develop
This commit is contained in:
commit
45b7d5e5cf
@ -130,8 +130,13 @@ parameter. All methods addline in this case were modified to remove this paramet
|
|||||||
|
|
||||||
|
|
||||||
***** ChangeLog for 3.4.2 compared to 3.4.1 *****
|
***** ChangeLog for 3.4.2 compared to 3.4.1 *****
|
||||||
|
Fix: field's problem into company's page (RIB)
|
||||||
|
Fix: Document cerfa doesn't contained firstname & lastname from donator
|
||||||
Fix: Bad rounding on margin calculations and display.
|
Fix: Bad rounding on margin calculations and display.
|
||||||
Fix: Option drop table into backup was broken.
|
Fix: Option drop table into backup was broken.
|
||||||
|
Fix: [ bug #1105 ] Searching Boxes other search option
|
||||||
|
Fix: wrong buy price update
|
||||||
|
Fix :[ bug #1142 ] Set paiement on invoice (PGSql)
|
||||||
|
|
||||||
***** ChangeLog for 3.4.1 compared to 3.4.0 *****
|
***** ChangeLog for 3.4.1 compared to 3.4.0 *****
|
||||||
Fix: Display buying price on line edit when no supplier price is defined
|
Fix: Display buying price on line edit when no supplier price is defined
|
||||||
|
|||||||
@ -14,6 +14,20 @@ dolibarr (3.4.1-3) unstable; urgency=low
|
|||||||
|
|
||||||
dolibarr (3.4.0-3) unstable; urgency=low
|
dolibarr (3.4.0-3) unstable; urgency=low
|
||||||
|
|
||||||
|
[ Laurent Destailleur (eldy) ]
|
||||||
|
* Maintenance release.
|
||||||
|
|
||||||
|
-- Laurent Destailleur (eldy) <eldy@users.sourceforge.net> Mon, 22 Apr 2013 12:00:00 +0100
|
||||||
|
|
||||||
|
dolibarr (3.4.1) unstable; urgency=low
|
||||||
|
|
||||||
|
[ Laurent Destailleur (eldy) ]
|
||||||
|
* Maintenance release.
|
||||||
|
|
||||||
|
-- Laurent Destailleur (eldy) <eldy@users.sourceforge.net> Mon, 22 Apr 2013 12:00:00 +0100
|
||||||
|
|
||||||
|
dolibarr (3.4.0) unstable; urgency=low
|
||||||
|
|
||||||
[ Laurent Destailleur (eldy) ]
|
[ Laurent Destailleur (eldy) ]
|
||||||
* New upstream release.
|
* New upstream release.
|
||||||
|
|
||||||
|
|||||||
@ -154,14 +154,14 @@ class autoTranslator
|
|||||||
if (isset($this->_translatedFiles[$file]) && count($this->_translatedFiles[$file])>0)
|
if (isset($this->_translatedFiles[$file]) && count($this->_translatedFiles[$file])>0)
|
||||||
{
|
{
|
||||||
$fp = fopen($destPath, 'a');
|
$fp = fopen($destPath, 'a');
|
||||||
fwrite($fp, "\r\n");
|
fwrite($fp, "\n");
|
||||||
fwrite($fp, "\r\n");
|
fwrite($fp, "\n");
|
||||||
fwrite($fp, "// START - Lines generated via autotranslator.php tool (".$this->_time.").\r\n");
|
fwrite($fp, "// START - Lines generated via autotranslator.php tool (".$this->_time.").\n");
|
||||||
fwrite($fp, "// Reference language: ".$this->_refLang." -> ".$my_destlang."\r\n");
|
fwrite($fp, "// Reference language: ".$this->_refLang." -> ".$my_destlang."\n");
|
||||||
foreach( $this->_translatedFiles[$file] as $line) {
|
foreach( $this->_translatedFiles[$file] as $line) {
|
||||||
fwrite($fp, $line . "\r\n");
|
fwrite($fp, $line . "\n");
|
||||||
}
|
}
|
||||||
fwrite($fp, "// STOP - Lines generated via autotranslator.php tool (".$this->_time_end.").\r\n");
|
fwrite($fp, "// STOP - Lines generated via autotranslator.php tool (".$this->_time_end.").\n");
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@ -177,11 +177,11 @@ class autoTranslator
|
|||||||
private function createTranslationFile($path,$my_destlang)
|
private function createTranslationFile($path,$my_destlang)
|
||||||
{
|
{
|
||||||
$fp = fopen($path, 'w+');
|
$fp = fopen($path, 'w+');
|
||||||
fwrite($fp, "/*\r\n");
|
fwrite($fp, "/*\n");
|
||||||
fwrite($fp, " * Language code: {$my_destlang}\r\n");
|
fwrite($fp, " * Language code: {$my_destlang}\n");
|
||||||
fwrite($fp, " * Automatic generated via autotranslator.php tool\r\n");
|
fwrite($fp, " * Automatic generated via autotranslator.php tool\n");
|
||||||
fwrite($fp, " * Generation date " . $this->_time. "\r\n");
|
fwrite($fp, " * Generation date " . $this->_time. "\n");
|
||||||
fwrite($fp, " */\r\n");
|
fwrite($fp, " */\n");
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -263,7 +263,7 @@ print '<br>';
|
|||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Edition des variables globales non rattachées à un theme specifique
|
* Editing global variables not related to a specific theme
|
||||||
*/
|
*/
|
||||||
$constantes=array(
|
$constantes=array(
|
||||||
'ADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT',
|
'ADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT',
|
||||||
@ -295,4 +295,4 @@ dol_fiche_end();
|
|||||||
llxFooter();
|
llxFooter();
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -27,8 +27,7 @@ include_once DOL_DOCUMENT_ROOT.'/boutique/commande/class/boutiquecommande.class.
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class BoutiqueCommande
|
* Class to manage orders OSC
|
||||||
* \brief Classe permettant la gestion des commandes OSC
|
|
||||||
*/
|
*/
|
||||||
class BoutiqueCommande
|
class BoutiqueCommande
|
||||||
{
|
{
|
||||||
|
|||||||
@ -653,6 +653,12 @@ else if (($action == 'addline' || $action == 'addline_predef') && $user->rights-
|
|||||||
$price_ht = '';
|
$price_ht = '';
|
||||||
$tva_tx = '';
|
$tva_tx = '';
|
||||||
}
|
}
|
||||||
|
if (GETPOST('usenewaddlineform')) {
|
||||||
|
$idprod=GETPOST('idprod', 'int');
|
||||||
|
$product_desc = (GETPOST('product_desc')?GETPOST('product_desc'):(GETPOST('np_desc')?GETPOST('np_desc'):(GETPOST('dp_desc')?GETPOST('dp_desc'):'')));
|
||||||
|
$price_ht = GETPOST('price_ht');
|
||||||
|
$tva_tx=(GETPOST('tva_tx')?GETPOST('tva_tx'):0);
|
||||||
|
}
|
||||||
$qty = GETPOST('qty'.$predef);
|
$qty = GETPOST('qty'.$predef);
|
||||||
$remise_percent=GETPOST('remise_percent'.$predef);
|
$remise_percent=GETPOST('remise_percent'.$predef);
|
||||||
|
|
||||||
|
|||||||
@ -355,9 +355,9 @@ class Propal extends CommonObject
|
|||||||
// qty, pu, remise_percent et txtva
|
// qty, pu, remise_percent et txtva
|
||||||
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
|
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
|
||||||
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
|
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
|
||||||
|
|
||||||
$localtaxes_type=getLocalTaxesFromRate($txtva,0,$mysoc);
|
$localtaxes_type=getLocalTaxesFromRate($txtva,0,$mysoc);
|
||||||
|
|
||||||
$tabprice=calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type, '', $localtaxes_type);
|
$tabprice=calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type, '', $localtaxes_type);
|
||||||
$total_ht = $tabprice[0];
|
$total_ht = $tabprice[0];
|
||||||
$total_tva = $tabprice[1];
|
$total_tva = $tabprice[1];
|
||||||
@ -510,9 +510,9 @@ class Propal extends CommonObject
|
|||||||
// qty, pu, remise_percent et txtva
|
// qty, pu, remise_percent et txtva
|
||||||
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
|
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
|
||||||
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
|
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
|
||||||
|
|
||||||
$localtaxes_type=getLocalTaxesFromRate($txtva,0,$mysoc);
|
$localtaxes_type=getLocalTaxesFromRate($txtva,0,$mysoc);
|
||||||
|
|
||||||
$tabprice=calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type,'', $localtaxes_type);
|
$tabprice=calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type,'', $localtaxes_type);
|
||||||
$total_ht = $tabprice[0];
|
$total_ht = $tabprice[0];
|
||||||
$total_tva = $tabprice[1];
|
$total_tva = $tabprice[1];
|
||||||
@ -551,7 +551,7 @@ class Propal extends CommonObject
|
|||||||
$this->line->localtax1_tx = $txlocaltax1;
|
$this->line->localtax1_tx = $txlocaltax1;
|
||||||
$this->line->localtax2_tx = $txlocaltax2;
|
$this->line->localtax2_tx = $txlocaltax2;
|
||||||
$this->line->localtax1_type = $localtaxes_type[0];
|
$this->line->localtax1_type = $localtaxes_type[0];
|
||||||
$this->line->localtax2_type = $localtaxes_type[2];
|
$this->line->localtax2_type = $localtaxes_type[2];
|
||||||
$this->line->remise_percent = $remise_percent;
|
$this->line->remise_percent = $remise_percent;
|
||||||
$this->line->subprice = $pu;
|
$this->line->subprice = $pu;
|
||||||
$this->line->info_bits = $info_bits;
|
$this->line->info_bits = $info_bits;
|
||||||
@ -1318,7 +1318,7 @@ class Propal extends CommonObject
|
|||||||
}
|
}
|
||||||
// Fin appel triggers
|
// Fin appel triggers
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! $error)
|
if (! $error)
|
||||||
{
|
{
|
||||||
// Rename directory if dir was a temporary ref
|
// Rename directory if dir was a temporary ref
|
||||||
@ -1333,17 +1333,17 @@ class Propal extends CommonObject
|
|||||||
if (file_exists($dirsource))
|
if (file_exists($dirsource))
|
||||||
{
|
{
|
||||||
dol_syslog(get_class($this)."::validate rename dir ".$dirsource." into ".$dirdest);
|
dol_syslog(get_class($this)."::validate rename dir ".$dirsource." into ".$dirdest);
|
||||||
|
|
||||||
if (@rename($dirsource, $dirdest))
|
if (@rename($dirsource, $dirdest))
|
||||||
{
|
{
|
||||||
|
|
||||||
dol_syslog("Rename ok");
|
dol_syslog("Rename ok");
|
||||||
// Deleting old PDF in new rep
|
// Deleting old PDF in new rep
|
||||||
dol_delete_file($conf->propal->dir_output.'/'.$snumfa.'/'.$facref.'*.*');
|
dol_delete_file($conf->propal->dir_output.'/'.$snumfa.'/'.$facref.'*.*');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->brouillon=0;
|
$this->brouillon=0;
|
||||||
$this->statut = 1;
|
$this->statut = 1;
|
||||||
$this->user_valid_id=$user->id;
|
$this->user_valid_id=$user->id;
|
||||||
@ -1710,7 +1710,7 @@ class Propal extends CommonObject
|
|||||||
{
|
{
|
||||||
if ($statut == 2)
|
if ($statut == 2)
|
||||||
{
|
{
|
||||||
// Classe la société rattachée comme client
|
// The connected company is classified as a client
|
||||||
$soc=new Societe($this->db);
|
$soc=new Societe($this->db);
|
||||||
$soc->id = $this->socid;
|
$soc->id = $this->socid;
|
||||||
$result=$soc->set_as_client();
|
$result=$soc->set_as_client();
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
/**
|
/**
|
||||||
* \file htdocs/comm/propal/document.php
|
* \file htdocs/comm/propal/document.php
|
||||||
* \ingroup propale
|
* \ingroup propale
|
||||||
* \brief Page de gestion des documents attaches a une proposition commerciale
|
* \brief Management page of documents attached to a business proposal
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require '../../main.inc.php';
|
require '../../main.inc.php';
|
||||||
|
|||||||
@ -269,7 +269,7 @@ class Commande extends CommonOrder
|
|||||||
if (preg_match('/^[\(]?PROV/i', $this->ref))
|
if (preg_match('/^[\(]?PROV/i', $this->ref))
|
||||||
{
|
{
|
||||||
// On renomme repertoire ($this->ref = ancienne ref, $numfa = nouvelle ref)
|
// On renomme repertoire ($this->ref = ancienne ref, $numfa = nouvelle ref)
|
||||||
// afin de ne pas perdre les fichiers attaches
|
// in order not to lose the attachments
|
||||||
$comref = dol_sanitizeFileName($this->ref);
|
$comref = dol_sanitizeFileName($this->ref);
|
||||||
$snum = dol_sanitizeFileName($num);
|
$snum = dol_sanitizeFileName($num);
|
||||||
$dirsource = $conf->commande->dir_output.'/'.$comref;
|
$dirsource = $conf->commande->dir_output.'/'.$comref;
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
/**
|
/**
|
||||||
* \file htdocs/commande/document.php
|
* \file htdocs/commande/document.php
|
||||||
* \ingroup order
|
* \ingroup order
|
||||||
* \brief Documents setup page attached to an order
|
* \brief Management page of documents attached to an order
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require '../main.inc.php';
|
require '../main.inc.php';
|
||||||
|
|||||||
@ -587,6 +587,12 @@ else if ($action == 'addline' && $user->rights->commande->creer)
|
|||||||
$price_ht = '';
|
$price_ht = '';
|
||||||
$tva_tx = '';
|
$tva_tx = '';
|
||||||
}
|
}
|
||||||
|
if (GETPOST('usenewaddlineform')) {
|
||||||
|
$idprod=GETPOST('idprod', 'int');
|
||||||
|
$product_desc = (GETPOST('product_desc')?GETPOST('product_desc'):(GETPOST('np_desc')?GETPOST('np_desc'):(GETPOST('dp_desc')?GETPOST('dp_desc'):'')));
|
||||||
|
$price_ht = GETPOST('price_ht');
|
||||||
|
$tva_tx=(GETPOST('tva_tx')?GETPOST('tva_tx'):0);
|
||||||
|
}
|
||||||
$qty = GETPOST('qty'.$predef);
|
$qty = GETPOST('qty'.$predef);
|
||||||
$remise_percent=GETPOST('remise_percent'.$predef);
|
$remise_percent=GETPOST('remise_percent'.$predef);
|
||||||
|
|
||||||
|
|||||||
@ -1145,6 +1145,12 @@ else if (($action == 'addline' || $action == 'addline_predef') && $user->rights-
|
|||||||
$price_ht = '';
|
$price_ht = '';
|
||||||
$tva_tx = '';
|
$tva_tx = '';
|
||||||
}
|
}
|
||||||
|
if (GETPOST('usenewaddlineform')) {
|
||||||
|
$idprod=GETPOST('idprod', 'int');
|
||||||
|
$product_desc = (GETPOST('product_desc')?GETPOST('product_desc'):(GETPOST('np_desc')?GETPOST('np_desc'):(GETPOST('dp_desc')?GETPOST('dp_desc'):'')));
|
||||||
|
$price_ht = GETPOST('price_ht');
|
||||||
|
$tva_tx=(GETPOST('tva_tx')?GETPOST('tva_tx'):0);
|
||||||
|
}
|
||||||
$qty = GETPOST('qty'.$predef);
|
$qty = GETPOST('qty'.$predef);
|
||||||
$remise_percent=GETPOST('remise_percent'.$predef);
|
$remise_percent=GETPOST('remise_percent'.$predef);
|
||||||
|
|
||||||
|
|||||||
@ -79,7 +79,7 @@ if ($result)
|
|||||||
print '<table class="liste" width="100%">';
|
print '<table class="liste" width="100%">';
|
||||||
|
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print_liste_field_titre($langs->trans("WithdrawalReceipt"),"bons.php","p.ref",'','','class="liste_titre"');
|
print_liste_field_titre($langs->trans("WithdrawalReceipts"),"bons.php","p.ref",'','','class="liste_titre"');
|
||||||
print_liste_field_titre($langs->trans("Date"),"bons.php","p.datec","","",'class="liste_titre" align="center"');
|
print_liste_field_titre($langs->trans("Date"),"bons.php","p.datec","","",'class="liste_titre" align="center"');
|
||||||
print '<td class="liste_titre" align="right">'.$langs->trans("Amount").'</td>';
|
print '<td class="liste_titre" align="right">'.$langs->trans("Amount").'</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|||||||
@ -47,7 +47,7 @@ $page = GETPOST('page','int');
|
|||||||
$sortorder = ((GETPOST('sortorder','alpha')=="")) ? "DESC" : GETPOST('sortorder','alpha');
|
$sortorder = ((GETPOST('sortorder','alpha')=="")) ? "DESC" : GETPOST('sortorder','alpha');
|
||||||
$sortfield = ((GETPOST('sortfield','alpha')=="")) ? "p.ref" : GETPOST('sortfield','alpha');
|
$sortfield = ((GETPOST('sortfield','alpha')=="")) ? "p.ref" : GETPOST('sortfield','alpha');
|
||||||
|
|
||||||
llxHeader('',$langs->trans("WithdrawalReceipt"));
|
llxHeader('',$langs->trans("WithdrawalReceipts"));
|
||||||
|
|
||||||
if ($prev_id)
|
if ($prev_id)
|
||||||
{
|
{
|
||||||
@ -56,7 +56,7 @@ if ($prev_id)
|
|||||||
if ($bon->fetch($prev_id) == 0)
|
if ($bon->fetch($prev_id) == 0)
|
||||||
{
|
{
|
||||||
$head = prelevement_prepare_head($bon);
|
$head = prelevement_prepare_head($bon);
|
||||||
dol_fiche_head($head, 'invoices', $langs->trans("WithdrawalReceipt"), '', 'payment');
|
dol_fiche_head($head, 'invoices', $langs->trans("WithdrawalReceipts"), '', 'payment');
|
||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
|
|||||||
@ -46,7 +46,7 @@ $page = GETPOST('page','int');
|
|||||||
/*
|
/*
|
||||||
* View
|
* View
|
||||||
*/
|
*/
|
||||||
llxHeader('',$langs->trans("WithdrawalReceipt"));
|
llxHeader('',$langs->trans("WithdrawalReceipts"));
|
||||||
|
|
||||||
if ($prev_id)
|
if ($prev_id)
|
||||||
{
|
{
|
||||||
@ -55,7 +55,7 @@ if ($prev_id)
|
|||||||
if ($bon->fetch($prev_id) == 0)
|
if ($bon->fetch($prev_id) == 0)
|
||||||
{
|
{
|
||||||
$head = prelevement_prepare_head($bon);
|
$head = prelevement_prepare_head($bon);
|
||||||
dol_fiche_head($head, 'rejects', $langs->trans("WithdrawalReceipt"), '', 'payment');
|
dol_fiche_head($head, 'rejects', $langs->trans("WithdrawalReceipts"), '', 'payment');
|
||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
|
|||||||
@ -44,7 +44,7 @@ $page = GETPOST('page','int');
|
|||||||
* View
|
* View
|
||||||
*/
|
*/
|
||||||
|
|
||||||
llxHeader('',$langs->trans("WithdrawalReceipt"));
|
llxHeader('',$langs->trans("WithdrawalReceipts"));
|
||||||
|
|
||||||
if ($prev_id)
|
if ($prev_id)
|
||||||
{
|
{
|
||||||
@ -53,7 +53,7 @@ if ($prev_id)
|
|||||||
if ($bon->fetch($prev_id) == 0)
|
if ($bon->fetch($prev_id) == 0)
|
||||||
{
|
{
|
||||||
$head = prelevement_prepare_head($bon);
|
$head = prelevement_prepare_head($bon);
|
||||||
dol_fiche_head($head, 'statistics', $langs->trans("WithdrawalReceipt"), '', 'payment');
|
dol_fiche_head($head, 'statistics', $langs->trans("WithdrawalReceipts"), '', 'payment');
|
||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
|
|||||||
@ -133,7 +133,7 @@ if ($action == 'infocredit' && $user->rights->prelevement->bons->credit)
|
|||||||
$bon = new BonPrelevement($db,"");
|
$bon = new BonPrelevement($db,"");
|
||||||
$form = new Form($db);
|
$form = new Form($db);
|
||||||
|
|
||||||
llxHeader('',$langs->trans("WithdrawalReceipt"));
|
llxHeader('',$langs->trans("WithdrawalReceipts"));
|
||||||
|
|
||||||
|
|
||||||
if ($id > 0)
|
if ($id > 0)
|
||||||
@ -141,7 +141,7 @@ if ($id > 0)
|
|||||||
$bon->fetch($id);
|
$bon->fetch($id);
|
||||||
|
|
||||||
$head = prelevement_prepare_head($bon);
|
$head = prelevement_prepare_head($bon);
|
||||||
dol_fiche_head($head, 'prelevement', $langs->trans("WithdrawalReceipt"), '', 'payment');
|
dol_fiche_head($head, 'prelevement', $langs->trans("WithdrawalReceipts"), '', 'payment');
|
||||||
|
|
||||||
if (GETPOST('error','alpha')!='')
|
if (GETPOST('error','alpha')!='')
|
||||||
{
|
{
|
||||||
|
|||||||
@ -130,7 +130,7 @@ if ($id)
|
|||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
print '<tr><td width="20%">'.$langs->trans("WithdrawalReceipt").'</td><td>';
|
print '<tr><td width="20%">'.$langs->trans("WithdrawalReceipts").'</td><td>';
|
||||||
print '<a href="fiche.php?id='.$lipre->bon_rowid.'">'.$lipre->bon_ref.'</a></td></tr>';
|
print '<a href="fiche.php?id='.$lipre->bon_rowid.'">'.$lipre->bon_ref.'</a></td></tr>';
|
||||||
print '<tr><td width="20%">'.$langs->trans("Date").'</td><td>'.dol_print_date($bon->datec,'day').'</td></tr>';
|
print '<tr><td width="20%">'.$langs->trans("Date").'</td><td>'.dol_print_date($bon->datec,'day').'</td></tr>';
|
||||||
print '<tr><td width="20%">'.$langs->trans("Amount").'</td><td>'.price($lipre->amount).'</td></tr>';
|
print '<tr><td width="20%">'.$langs->trans("Amount").'</td><td>'.price($lipre->amount).'</td></tr>';
|
||||||
|
|||||||
@ -54,7 +54,7 @@ $sortfield = ((GETPOST('sortfield','alpha')=="")) ? "pl.fk_soc" : GETPOST('sortf
|
|||||||
* View
|
* View
|
||||||
*/
|
*/
|
||||||
|
|
||||||
llxHeader('',$langs->trans("WithdrawalReceipt"));
|
llxHeader('',$langs->trans("WithdrawalReceipts"));
|
||||||
|
|
||||||
if ($prev_id)
|
if ($prev_id)
|
||||||
{
|
{
|
||||||
@ -63,7 +63,7 @@ if ($prev_id)
|
|||||||
if ($bon->fetch($prev_id) == 0)
|
if ($bon->fetch($prev_id) == 0)
|
||||||
{
|
{
|
||||||
$head = prelevement_prepare_head($bon);
|
$head = prelevement_prepare_head($bon);
|
||||||
dol_fiche_head($head, 'lines', $langs->trans("WithdrawalReceipt"), '', 'payment');
|
dol_fiche_head($head, 'lines', $langs->trans("WithdrawalReceipts"), '', 'payment');
|
||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
|
|||||||
@ -111,7 +111,7 @@ if ($result)
|
|||||||
|
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td class="liste_titre">'.$langs->trans("Line").'</td>';
|
print '<td class="liste_titre">'.$langs->trans("Line").'</td>';
|
||||||
print_liste_field_titre($langs->trans("WithdrawalReceipt"),$_SERVER["PHP_SELF"],"p.ref");
|
print_liste_field_titre($langs->trans("WithdrawalReceipts"),$_SERVER["PHP_SELF"],"p.ref");
|
||||||
print_liste_field_titre($langs->trans("Bill"),$_SERVER["PHP_SELF"],"f.facnumber",'',$urladd);
|
print_liste_field_titre($langs->trans("Bill"),$_SERVER["PHP_SELF"],"f.facnumber",'',$urladd);
|
||||||
print_liste_field_titre($langs->trans("Company"),$_SERVER["PHP_SELF"],"s.nom");
|
print_liste_field_titre($langs->trans("Company"),$_SERVER["PHP_SELF"],"s.nom");
|
||||||
print_liste_field_titre($langs->trans("CustomerCode"),$_SERVER["PHP_SELF"],"s.code_client",'','','align="center"');
|
print_liste_field_titre($langs->trans("CustomerCode"),$_SERVER["PHP_SELF"],"s.code_client",'','','align="center"');
|
||||||
|
|||||||
@ -359,6 +359,12 @@ else if ($action == 'addline' && $user->rights->contrat->creer)
|
|||||||
$price_ht = '';
|
$price_ht = '';
|
||||||
$tva_tx = '';
|
$tva_tx = '';
|
||||||
}
|
}
|
||||||
|
if (GETPOST('usenewaddlineform')) {
|
||||||
|
$idprod=GETPOST('idprod', 'int');
|
||||||
|
$product_desc = (GETPOST('product_desc')?GETPOST('product_desc'):(GETPOST('np_desc')?GETPOST('np_desc'):(GETPOST('dp_desc')?GETPOST('dp_desc'):'')));
|
||||||
|
$price_ht = GETPOST('price_ht');
|
||||||
|
$tva_tx=(GETPOST('tva_tx')?GETPOST('tva_tx'):0);
|
||||||
|
}
|
||||||
$qty = GETPOST('qty'.$predef);
|
$qty = GETPOST('qty'.$predef);
|
||||||
$remise_percent=GETPOST('remise_percent'.$predef);
|
$remise_percent=GETPOST('remise_percent'.$predef);
|
||||||
|
|
||||||
|
|||||||
@ -562,7 +562,7 @@ abstract class DolibarrModules
|
|||||||
if (! $resql) $err++;
|
if (! $resql) $err++;
|
||||||
|
|
||||||
}
|
}
|
||||||
if (! $err && ! preg_match('/newboxdefonly/',$options))
|
if (! $err && ! preg_match('/newboxdefonly/',$option))
|
||||||
{
|
{
|
||||||
$lastid=$this->db->last_insert_id(MAIN_DB_PREFIX."boxes_def","rowid");
|
$lastid=$this->db->last_insert_id(MAIN_DB_PREFIX."boxes_def","rowid");
|
||||||
|
|
||||||
|
|||||||
@ -120,7 +120,7 @@ if ($action=='add')
|
|||||||
$object->unitfrequency=GETPOST('unitfrequency','int');
|
$object->unitfrequency=GETPOST('unitfrequency','int');
|
||||||
$object->frequency=$object->unitfrequency * GETPOST('nbfrequency','int');
|
$object->frequency=$object->unitfrequency * GETPOST('nbfrequency','int');
|
||||||
|
|
||||||
//Add cron task
|
// Add cron task
|
||||||
$result = $object->create($user);
|
$result = $object->create($user);
|
||||||
|
|
||||||
// test du Resultat de la requete
|
// test du Resultat de la requete
|
||||||
@ -154,7 +154,7 @@ if ($action=='update')
|
|||||||
$object->unitfrequency=GETPOST('unitfrequency','int');
|
$object->unitfrequency=GETPOST('unitfrequency','int');
|
||||||
$object->frequency=$object->unitfrequency * GETPOST('nbfrequency','int');
|
$object->frequency=$object->unitfrequency * GETPOST('nbfrequency','int');
|
||||||
|
|
||||||
//Add cron task
|
// Add cron task
|
||||||
$result = $object->update($user);
|
$result = $object->update($user);
|
||||||
|
|
||||||
// test du Resultat de la requete
|
// test du Resultat de la requete
|
||||||
@ -172,7 +172,7 @@ if ($action=='activate')
|
|||||||
{
|
{
|
||||||
$object->status=1;
|
$object->status=1;
|
||||||
|
|
||||||
//Add cron task
|
// Add cron task
|
||||||
$result = $object->update($user);
|
$result = $object->update($user);
|
||||||
|
|
||||||
// test du Resultat de la requete
|
// test du Resultat de la requete
|
||||||
@ -189,7 +189,8 @@ if ($action=='activate')
|
|||||||
if ($action=='inactive')
|
if ($action=='inactive')
|
||||||
{
|
{
|
||||||
$object->status=0;
|
$object->status=0;
|
||||||
//Add cron task
|
|
||||||
|
// Add cron task
|
||||||
$result = $object->update($user);
|
$result = $object->update($user);
|
||||||
|
|
||||||
// test du Resultat de la requete
|
// test du Resultat de la requete
|
||||||
@ -250,13 +251,13 @@ if ($conf->use_javascript_ajax)
|
|||||||
if ($action == 'delete')
|
if ($action == 'delete')
|
||||||
{
|
{
|
||||||
print $form->formconfirm($_SERVER['PHP_SELF']."?id=".$object->id,$langs->trans("CronDelete"),$langs->trans("CronConfirmDelete"),"confirm_delete",'','',1);
|
print $form->formconfirm($_SERVER['PHP_SELF']."?id=".$object->id,$langs->trans("CronDelete"),$langs->trans("CronConfirmDelete"),"confirm_delete",'','',1);
|
||||||
|
|
||||||
$action='';
|
$action='';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($action == 'execute'){
|
if ($action == 'execute'){
|
||||||
print $form->formconfirm($_SERVER['PHP_SELF']."?id=".$object->id,$langs->trans("CronExecute"),$langs->trans("CronConfirmExecute"),"confirm_execute",'','',1);
|
print $form->formconfirm($_SERVER['PHP_SELF']."?id=".$object->id,$langs->trans("CronExecute"),$langs->trans("CronConfirmExecute"),"confirm_execute",'','',1);
|
||||||
|
|
||||||
$action='';
|
$action='';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -623,4 +624,4 @@ if (($action=="create") || ($action=="edit"))
|
|||||||
llxFooter();
|
llxFooter();
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -31,6 +31,7 @@ require_once DOL_DOCUMENT_ROOT.'/fichinter/class/fichinter.class.php';
|
|||||||
require_once DOL_DOCUMENT_ROOT.'/core/modules/fichinter/modules_fichinter.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/modules/fichinter/modules_fichinter.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/fichinter.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/fichinter.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
||||||
|
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcontract.class.php';
|
||||||
|
|
||||||
if (! empty($conf->projet->enabled))
|
if (! empty($conf->projet->enabled))
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1229,16 +1229,16 @@ class CommandeFournisseur extends CommonOrder
|
|||||||
// qty, pu, remise_percent et txtva
|
// qty, pu, remise_percent et txtva
|
||||||
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
|
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
|
||||||
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
|
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
|
||||||
|
|
||||||
$localtaxes_type=getLocalTaxesFromRate($txtva,0,$this->thirdparty);
|
$localtaxes_type=getLocalTaxesFromRate($txtva,0,$this->thirdparty);
|
||||||
|
|
||||||
$tabprice = calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $product_type, $this->thirdparty, $localtaxes_type);
|
$tabprice = calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $product_type, $this->thirdparty, $localtaxes_type);
|
||||||
$total_ht = $tabprice[0];
|
$total_ht = $tabprice[0];
|
||||||
$total_tva = $tabprice[1];
|
$total_tva = $tabprice[1];
|
||||||
$total_ttc = $tabprice[2];
|
$total_ttc = $tabprice[2];
|
||||||
$total_localtax1 = $tabprice[9];
|
$total_localtax1 = $tabprice[9];
|
||||||
$total_localtax2 = $tabprice[10];
|
$total_localtax2 = $tabprice[10];
|
||||||
|
|
||||||
$localtax1_type=$localtaxes_type[0];
|
$localtax1_type=$localtaxes_type[0];
|
||||||
$localtax2_type=$localtaxes_type[2];
|
$localtax2_type=$localtaxes_type[2];
|
||||||
|
|
||||||
@ -1255,10 +1255,10 @@ class CommandeFournisseur extends CommonOrder
|
|||||||
else { $sql.= "null,"; }
|
else { $sql.= "null,"; }
|
||||||
$sql.= "'".$product_type."',";
|
$sql.= "'".$product_type."',";
|
||||||
$sql.= "'".$qty."', ".$txtva.", ".$txlocaltax1.", ".$txlocaltax2;
|
$sql.= "'".$qty."', ".$txtva.", ".$txlocaltax1.", ".$txlocaltax2;
|
||||||
|
|
||||||
$sql.= ", '".$localtax1_type."',";
|
$sql.= ", '".$localtax1_type."',";
|
||||||
$sql.= " '".$localtax2_type."'";
|
$sql.= " '".$localtax2_type."'";
|
||||||
|
|
||||||
$sql.= ", ".$remise_percent.",'".price2num($subprice,'MU')."','".$ref."',";
|
$sql.= ", ".$remise_percent.",'".price2num($subprice,'MU')."','".$ref."',";
|
||||||
$sql.= "'".price2num($total_ht)."',";
|
$sql.= "'".price2num($total_ht)."',";
|
||||||
$sql.= "'".price2num($total_tva)."',";
|
$sql.= "'".price2num($total_tva)."',";
|
||||||
@ -1790,16 +1790,16 @@ class CommandeFournisseur extends CommonOrder
|
|||||||
// qty, pu, remise_percent et txtva
|
// qty, pu, remise_percent et txtva
|
||||||
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
|
// TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
|
||||||
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
|
// la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
|
||||||
|
|
||||||
$localtaxes_type=getLocalTaxesFromRate($txtva,0,$this->thirdparty);
|
$localtaxes_type=getLocalTaxesFromRate($txtva,0,$this->thirdparty);
|
||||||
|
|
||||||
$tabprice=calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type, $this->thirdparty, $localtaxes_type);
|
$tabprice=calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, $type, $this->thirdparty, $localtaxes_type);
|
||||||
$total_ht = $tabprice[0];
|
$total_ht = $tabprice[0];
|
||||||
$total_tva = $tabprice[1];
|
$total_tva = $tabprice[1];
|
||||||
$total_ttc = $tabprice[2];
|
$total_ttc = $tabprice[2];
|
||||||
$total_localtax1 = $tabprice[9];
|
$total_localtax1 = $tabprice[9];
|
||||||
$total_localtax2 = $tabprice[10];
|
$total_localtax2 = $tabprice[10];
|
||||||
|
|
||||||
$localtax1_type=$localtaxes_type[0];
|
$localtax1_type=$localtaxes_type[0];
|
||||||
$localtax2_type=$localtaxes_type[2];
|
$localtax2_type=$localtaxes_type[2];
|
||||||
|
|
||||||
|
|||||||
@ -222,7 +222,7 @@ class ProductFournisseur extends Product
|
|||||||
{
|
{
|
||||||
// Add price for this quantity to supplier
|
// Add price for this quantity to supplier
|
||||||
$sql = "INSERT INTO ".MAIN_DB_PREFIX."product_fournisseur_price(";
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."product_fournisseur_price(";
|
||||||
$sql.= "datec, fk_product, fk_soc, ref_fourn, fk_user, price, quantity, remise_percent, remise, unitprice, tva_tx, charges, unitcharges, fk_availability, entity, info_bits)";
|
$sql.= "datec, fk_product, fk_soc, ref_fourn, fk_user, price, quantity, remise_percent, remise, unitprice, tva_tx, charges, unitcharges, fk_availability, info_bits, entity)";
|
||||||
$sql.= " values('".$this->db->idate($now)."',";
|
$sql.= " values('".$this->db->idate($now)."',";
|
||||||
$sql.= " ".$this->id.",";
|
$sql.= " ".$this->id.",";
|
||||||
$sql.= " ".$fourn->id.",";
|
$sql.= " ".$fourn->id.",";
|
||||||
@ -512,4 +512,4 @@ class ProductFournisseur extends Product
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
/**
|
/**
|
||||||
* \file htdocs/fourn/commande/document.php
|
* \file htdocs/fourn/commande/document.php
|
||||||
* \ingroup supplier
|
* \ingroup supplier
|
||||||
* \brief Page de gestion des documents attaches a une commande fournisseur
|
* \brief Management page of attached documents to a supplier order
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require '../../main.inc.php';
|
require '../../main.inc.php';
|
||||||
|
|||||||
@ -265,7 +265,7 @@ if ($action == 'create' || $action == 'add_paiement')
|
|||||||
$sql.= ' AND f.fk_soc = '.$object->socid;
|
$sql.= ' AND f.fk_soc = '.$object->socid;
|
||||||
$sql.= ' AND f.paye = 0';
|
$sql.= ' AND f.paye = 0';
|
||||||
$sql.= ' AND f.fk_statut = 1'; // Statut=0 => non validee, Statut=2 => annulee
|
$sql.= ' AND f.fk_statut = 1'; // Statut=0 => non validee, Statut=2 => annulee
|
||||||
$sql.= ' GROUP BY f.rowid, f.ref_supplier, f.total_ht, f.total_ttc, f.datef';
|
$sql.= ' GROUP BY f.rowid, f.ref, f.ref_supplier, f.total_ht, f.total_ttc, f.datef';
|
||||||
$resql = $db->query($sql);
|
$resql = $db->query($sql);
|
||||||
if ($resql)
|
if ($resql)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -58,7 +58,7 @@ ALTER TABLE llx_facture_fourn DROP INDEX uk_facture_fourn;
|
|||||||
ALTER TABLE llx_facture_fourn DROP INDEX uk_facture_fourn_ref;
|
ALTER TABLE llx_facture_fourn DROP INDEX uk_facture_fourn_ref;
|
||||||
UPDATE llx_facture_fourn set ref = NULL where ref = '';
|
UPDATE llx_facture_fourn set ref = NULL where ref = '';
|
||||||
ALTER TABLE llx_facture_fourn ADD UNIQUE INDEX uk_facture_fourn_ref (ref, entity);
|
ALTER TABLE llx_facture_fourn ADD UNIQUE INDEX uk_facture_fourn_ref (ref, entity);
|
||||||
ALTER TABLE llx_facture_fourn CHANGE COLUMN facnumber ref_supplier varchar(30);
|
ALTER TABLE llx_facture_fourn CHANGE COLUMN facnumber ref_supplier varchar(50);
|
||||||
ALTER TABLE llx_facture_fourn ADD UNIQUE INDEX uk_facture_fourn_ref_supplier (ref_supplier, fk_soc, entity);
|
ALTER TABLE llx_facture_fourn ADD UNIQUE INDEX uk_facture_fourn_ref_supplier (ref_supplier, fk_soc, entity);
|
||||||
|
|
||||||
|
|
||||||
@ -161,22 +161,22 @@ CREATE TABLE llx_c_revenuestamp
|
|||||||
|
|
||||||
insert into llx_c_revenuestamp(rowid,fk_pays,taux,note,active) values (101, 10, '0.4', 'Timbre fiscal', 1);
|
insert into llx_c_revenuestamp(rowid,fk_pays,taux,note,active) values (101, 10, '0.4', 'Timbre fiscal', 1);
|
||||||
|
|
||||||
ALTER TABLE llx_c_tva MODIFY COLUMN localtax1_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_c_tva MODIFY COLUMN localtax1_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_c_tva MODIFY COLUMN localtax2_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_c_tva MODIFY COLUMN localtax2_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_commande_fournisseurdet MODIFY COLUMN localtax1_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_commande_fournisseurdet MODIFY COLUMN localtax1_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_commande_fournisseurdet MODIFY COLUMN localtax2_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_commande_fournisseurdet MODIFY COLUMN localtax2_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_commandedet MODIFY COLUMN localtax1_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_commandedet MODIFY COLUMN localtax1_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_commandedet MODIFY COLUMN localtax2_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_commandedet MODIFY COLUMN localtax2_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_contratdet MODIFY COLUMN localtax1_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_contratdet MODIFY COLUMN localtax1_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_contratdet MODIFY COLUMN localtax2_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_contratdet MODIFY COLUMN localtax2_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_facture_fourn_det MODIFY COLUMN localtax1_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_facture_fourn_det MODIFY COLUMN localtax1_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_facture_fourn_det MODIFY COLUMN localtax2_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_facture_fourn_det MODIFY COLUMN localtax2_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_facturedet_rec MODIFY COLUMN localtax1_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_facturedet_rec MODIFY COLUMN localtax1_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_facturedet_rec MODIFY COLUMN localtax2_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_facturedet_rec MODIFY COLUMN localtax2_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_facturedet MODIFY COLUMN localtax1_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_facturedet MODIFY COLUMN localtax1_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_facturedet MODIFY COLUMN localtax2_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_facturedet MODIFY COLUMN localtax2_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_propaldet MODIFY COLUMN localtax1_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_propaldet MODIFY COLUMN localtax1_type varchar(10) DEFAULT NULL;
|
||||||
ALTER TABLE llx_propaldet MODIFY COLUMN localtax2_type varchar(10) NOT NULL DEFAULT '0';
|
ALTER TABLE llx_propaldet MODIFY COLUMN localtax2_type varchar(10) DEFAULT NULL;
|
||||||
-- No more use type 7, use revenuse stamp instead
|
-- No more use type 7, use revenuse stamp instead
|
||||||
UPDATE llx_c_tva set localtax1=0, localtax1_type='0' where localtax1_type = '7';
|
UPDATE llx_c_tva set localtax1=0, localtax1_type='0' where localtax1_type = '7';
|
||||||
UPDATE llx_c_tva set localtax2=0, localtax2_type='0' where localtax2_type = '7';
|
UPDATE llx_c_tva set localtax2=0, localtax2_type='0' where localtax2_type = '7';
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
|
|
||||||
DELETE FROM llx_menu where module='holiday';
|
DELETE FROM llx_menu where module='holiday';
|
||||||
|
|
||||||
|
insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,localtax1,localtax1_type,note,active) values (143, 14,'5','0','9.975','1','TPS and TVQ rate',1);
|
||||||
|
|
||||||
-- Fix bad migration of 3.4 that make this text instead of varchar(50)
|
-- Fix bad migration of 3.4 that make this text instead of varchar(50)
|
||||||
alter table llx_don MODIFY COLUMN town varchar(50);
|
alter table llx_don MODIFY COLUMN town varchar(50);
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# Dolibarr language file - Source file is en_US - agenda
|
# Dolibarr language file - Source file is en_US - agenda
|
||||||
# IdAgenda=ID event
|
IdAgenda=Αναγνωριστικού συμβάντος
|
||||||
Actions=Ενέργειες
|
Actions=Ενέργειες
|
||||||
ActionsArea=Περιοχή Ενεργειών (γεγονότα και εργασίες)
|
ActionsArea=Περιοχή Ενεργειών (γεγονότα και εργασίες)
|
||||||
Agenda= Ημερολόγιο
|
Agenda= Ημερολόγιο
|
||||||
@ -68,7 +68,7 @@ AgendaUrlOptions5=<b>logind=%s</b> για να περιορίσετε τα απ
|
|||||||
AgendaShowBirthdayEvents=Εμφάνιση γενεθλίων των προσώπων επικοινωνίας
|
AgendaShowBirthdayEvents=Εμφάνιση γενεθλίων των προσώπων επικοινωνίας
|
||||||
AgendaHideBirthdayEvents=Απόκρυψη γενεθλίων των προσώπων επικοινωνίας
|
AgendaHideBirthdayEvents=Απόκρυψη γενεθλίων των προσώπων επικοινωνίας
|
||||||
Busy=Απασχολ.
|
Busy=Απασχολ.
|
||||||
# ExportDataset_event1=List of agenda events
|
ExportDataset_event1=Κατάλογος των εκδηλώσεων
|
||||||
|
|
||||||
# External Sites ical
|
# External Sites ical
|
||||||
ExportCal=Εξαγωγή ημερολογίου
|
ExportCal=Εξαγωγή ημερολογίου
|
||||||
|
|||||||
@ -74,7 +74,7 @@ NoRecordedProducts=Δεν υπάρχουν καταχωρημένα προϊόν
|
|||||||
NoRecordedProspects=Δεν υπάρχουν προσφορές
|
NoRecordedProspects=Δεν υπάρχουν προσφορές
|
||||||
NoContractedProducts=Δεν υπάρχουν καταχωρημένα συμβόλαια με προϊόντα/υπηρεσίες
|
NoContractedProducts=Δεν υπάρχουν καταχωρημένα συμβόλαια με προϊόντα/υπηρεσίες
|
||||||
NoRecordedContracts=Δεν υπάρχουν καταχωρημένα συμβόλαια
|
NoRecordedContracts=Δεν υπάρχουν καταχωρημένα συμβόλαια
|
||||||
# NoRecordedInterventions=No recorded interventions
|
NoRecordedInterventions=Δεν καταγράφονται παρεμβάσεις
|
||||||
BoxLatestSupplierOrders=Τελευταίες παραγγελίες προμηθευτών
|
BoxLatestSupplierOrders=Τελευταίες παραγγελίες προμηθευτών
|
||||||
BoxTitleLatestSupplierOrders=Οι %s τελευταίες παραγγελίες προμηθευτών
|
BoxTitleLatestSupplierOrders=Οι %s τελευταίες παραγγελίες προμηθευτών
|
||||||
NoSupplierOrder=Δεν υπάρχουν καταχωρημένες παραγγελίες προμηθευτών
|
NoSupplierOrder=Δεν υπάρχουν καταχωρημένες παραγγελίες προμηθευτών
|
||||||
@ -84,8 +84,8 @@ BoxCustomersOrdersPerMonth=Παραγγελίες πελατών ανά μήνα
|
|||||||
BoxSuppliersOrdersPerMonth=Παραγγελίες προμηθευτών ανά μήνα
|
BoxSuppliersOrdersPerMonth=Παραγγελίες προμηθευτών ανά μήνα
|
||||||
BoxProposalsPerMonth=Προσφορές ανά μήνα
|
BoxProposalsPerMonth=Προσφορές ανά μήνα
|
||||||
NoTooLowStockProducts=Κανένα προϊόν κάτω από το χαμηλό όριο του αποθέματος
|
NoTooLowStockProducts=Κανένα προϊόν κάτω από το χαμηλό όριο του αποθέματος
|
||||||
# BoxProductDistribution=Products/Services distribution
|
BoxProductDistribution=Κατανομή Προϊόντα/Υπηρεσίες
|
||||||
# BoxProductDistributionFor=Distribution of %s for %s
|
BoxProductDistributionFor=Κατανομή των %s για %s
|
||||||
ForCustomersInvoices=Τιμολόγια Πελάτη
|
ForCustomersInvoices=Τιμολόγια Πελάτη
|
||||||
# ForCustomersOrders=Customers orders
|
ForCustomersOrders=Παραγγελίες πελατών
|
||||||
ForProposals=Προτάσεις
|
ForProposals=Προτάσεις
|
||||||
|
|||||||
@ -66,8 +66,8 @@ Country=Χώρα
|
|||||||
CountryCode=Country code
|
CountryCode=Country code
|
||||||
CountryId=Κωδικός Χώρα
|
CountryId=Κωδικός Χώρα
|
||||||
Phone=Τηλέφωνο
|
Phone=Τηλέφωνο
|
||||||
# Skype=Skype
|
Skype=Skype
|
||||||
# Call=Call
|
Call=Κλήση
|
||||||
PhonePro=Επαγγ. τηλέφωνο
|
PhonePro=Επαγγ. τηλέφωνο
|
||||||
PhonePerso=Προσωπ. τηλέφωνο
|
PhonePerso=Προσωπ. τηλέφωνο
|
||||||
PhoneMobile=Κιν. τηλέφωνο
|
PhoneMobile=Κιν. τηλέφωνο
|
||||||
@ -398,7 +398,7 @@ InActivity=Ανοιχτό
|
|||||||
ActivityCeased=Κλειστό
|
ActivityCeased=Κλειστό
|
||||||
ActivityStateFilter=Το καθεστώς της δραστηριότητας
|
ActivityStateFilter=Το καθεστώς της δραστηριότητας
|
||||||
ProductsIntoElements=Κατάλογος των προϊόντων σε
|
ProductsIntoElements=Κατάλογος των προϊόντων σε
|
||||||
# OutstandingBill=Max. for outstanding bill
|
OutstandingBill=Μέγιστο. για εκκρεμείς λογαριασμό
|
||||||
# Monkey
|
# Monkey
|
||||||
MonkeyNumRefModelDesc=Return numero with format %syymm-nnnn for customer code and %syymm-nnnn for supplier code where yy is year, mm is month and nnnn is a sequence with no break and no return to 0.
|
MonkeyNumRefModelDesc=Return numero with format %syymm-nnnn for customer code and %syymm-nnnn for supplier code where yy is year, mm is month and nnnn is a sequence with no break and no return to 0.
|
||||||
# Leopard
|
# Leopard
|
||||||
|
|||||||
@ -124,8 +124,8 @@ ErrorToConnectToMysqlCheckInstance=Connect to database fails. Check Mysql server
|
|||||||
ErrorFailedToAddContact=Failed to add contact
|
ErrorFailedToAddContact=Failed to add contact
|
||||||
ErrorDateMustBeBeforeToday=The date can not be greater than today
|
ErrorDateMustBeBeforeToday=The date can not be greater than today
|
||||||
ErrorPaymentModeDefinedToWithoutSetup=A payment mode was set to type %s but setup of module Invoice was not completed to define information to show for this payment mode.
|
ErrorPaymentModeDefinedToWithoutSetup=A payment mode was set to type %s but setup of module Invoice was not completed to define information to show for this payment mode.
|
||||||
# ErrorPHPNeedModule=Error, your PHP must have module <b>%s</b> installed to use this feature.
|
ErrorPHPNeedModule=Σφάλμα, η PHP σας πρέπει να έχει το module <b>%s</ b> εγκατεστημένο για να χρησιμοποιήσετε αυτήν τη δυνατότητα.
|
||||||
# ErrorOpenIDSetupNotComplete=You setup Dolibarr config file to allow OpenID authentication, but URL of OpenID service is not defined into constant %s
|
ErrorOpenIDSetupNotComplete=Μπορείτε να ρυθμίσετε το Dolibarr αρχείο config να επιτρέψει OpenID ταυτότητα, αλλά το URL OpenID υπηρεσίας δεν ορίζεται σε συνεχή %s
|
||||||
# ErrorWarehouseMustDiffers=Source and target warehouses must differs
|
# ErrorWarehouseMustDiffers=Source and target warehouses must differs
|
||||||
|
|
||||||
# Warnings
|
# Warnings
|
||||||
|
|||||||
@ -87,7 +87,7 @@ FirstDayOfHoliday=Πρώτη μέρα άδειας
|
|||||||
LastDayOfHoliday=Τελευταία μέρα άδειας
|
LastDayOfHoliday=Τελευταία μέρα άδειας
|
||||||
HolidaysMonthlyUpdate=Μηνιαία ενημέρωση
|
HolidaysMonthlyUpdate=Μηνιαία ενημέρωση
|
||||||
ManualUpdate=Χειροκίνητη ενημέρωση
|
ManualUpdate=Χειροκίνητη ενημέρωση
|
||||||
# HolidaysCancelation=Holidays cancelation
|
HolidaysCancelation=Ακύρωση αδειών
|
||||||
|
|
||||||
## Configuration du Module ##
|
## Configuration du Module ##
|
||||||
ConfCP=Διαμόρφωση τις ενότητας αδειών
|
ConfCP=Διαμόρφωση τις ενότητας αδειών
|
||||||
|
|||||||
@ -155,7 +155,7 @@ Valid=Έγκυρο
|
|||||||
Approve=Έγκριση
|
Approve=Έγκριση
|
||||||
ReOpen=Εκ νέου άνοιγμα
|
ReOpen=Εκ νέου άνοιγμα
|
||||||
Upload=Αποστολή Αρχείου
|
Upload=Αποστολή Αρχείου
|
||||||
# ToLink=Link
|
ToLink=Σύνδεσμος
|
||||||
Select=Επιλογή
|
Select=Επιλογή
|
||||||
Choose=Επιλογή
|
Choose=Επιλογή
|
||||||
ChooseLangage=Παρακαλούμε επιλέξτε την γλώσσα σας
|
ChooseLangage=Παρακαλούμε επιλέξτε την γλώσσα σας
|
||||||
@ -659,8 +659,8 @@ from=από
|
|||||||
toward=προς
|
toward=προς
|
||||||
Access=Πρόσβαση
|
Access=Πρόσβαση
|
||||||
HelpCopyToClipboard=Χρησιμοποιήστε το Ctrl + C για να αντιγράψετε στο πρόχειρο
|
HelpCopyToClipboard=Χρησιμοποιήστε το Ctrl + C για να αντιγράψετε στο πρόχειρο
|
||||||
# SaveUploadedFileWithMask=Save file on server with name "<strong>%s</strong>" (otherwise "%s")
|
SaveUploadedFileWithMask=Αποθηκεύστε το αρχείο στον server με το όνομα "<strong>%s</strong>" (αλλιώς "%s")
|
||||||
# OriginFileName=Nom d'origine
|
OriginFileName=Αρχική Ονομασία
|
||||||
|
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Δευτέρα
|
Monday=Δευτέρα
|
||||||
|
|||||||
@ -8,7 +8,7 @@ Members=Μέλη
|
|||||||
MemberAccount=Είσοδος μέλους
|
MemberAccount=Είσοδος μέλους
|
||||||
ShowMember=Εμφάνιση καρτέλα μέλους
|
ShowMember=Εμφάνιση καρτέλα μέλους
|
||||||
UserNotLinkedToMember=Ο χρήστης δεν συνδέετε με κάποιο μέλος
|
UserNotLinkedToMember=Ο χρήστης δεν συνδέετε με κάποιο μέλος
|
||||||
# ThirdpartyNotLinkedToMember=Third-party not linked to a member
|
ThirdpartyNotLinkedToMember=Πελ./Προμ. δεν συνδέεται με ένα μέλος
|
||||||
MembersTickets=Tickets Μελών
|
MembersTickets=Tickets Μελών
|
||||||
FundationMembers=Μέλη οργανισμού
|
FundationMembers=Μέλη οργανισμού
|
||||||
Attributs=Ιδιότητες
|
Attributs=Ιδιότητες
|
||||||
|
|||||||
@ -147,7 +147,7 @@ AddDeliveryCostLine=Add a delivery cost line indicating the weight of the order
|
|||||||
# Documents models
|
# Documents models
|
||||||
PDFEinsteinDescription=Ολοκληρωμένο πρότυπο παραγγελίας (λογότυπο...)
|
PDFEinsteinDescription=Ολοκληρωμένο πρότυπο παραγγελίας (λογότυπο...)
|
||||||
PDFEdisonDescription=Απλό πρότυπο παραγγελίας
|
PDFEdisonDescription=Απλό πρότυπο παραγγελίας
|
||||||
# PDFProformaDescription=A complete proforma invoice (logo…)
|
PDFProformaDescription=Ένα πλήρες προτιμολόγιο (λογότυπο ...)
|
||||||
# Orders modes
|
# Orders modes
|
||||||
OrderByMail=Ταχυδρομείο
|
OrderByMail=Ταχυδρομείο
|
||||||
OrderByFax=Φαξ
|
OrderByFax=Φαξ
|
||||||
|
|||||||
@ -173,12 +173,12 @@ StartUpload=Έναρξη μεταφόρτωσης
|
|||||||
CancelUpload=Ακύρωση ανεβάσετε
|
CancelUpload=Ακύρωση ανεβάσετε
|
||||||
FileIsTooBig=Τα αρχεία είναι πολύ μεγάλο
|
FileIsTooBig=Τα αρχεία είναι πολύ μεγάλο
|
||||||
PleaseBePatient=Please be patient...
|
PleaseBePatient=Please be patient...
|
||||||
# RequestToResetPasswordReceived=A request to change your Dolibarr password has been received
|
RequestToResetPasswordReceived=Η αίτηση για την αλλαγή του κωδικού σας στο Dolibarr έχει παραληφθεί
|
||||||
# NewKeyIs=This is your new keys to login
|
NewKeyIs=Αυτό είναι το νέο σας κλειδί για να συνδεθείτε
|
||||||
# NewKeyWillBe=Your new key to login to software will be
|
NewKeyWillBe=Το νέο σας κλειδί για να συνδεθείτε με το λογισμικό είναι
|
||||||
# ClickHereToGoTo=Click here to go to %s
|
ClickHereToGoTo=Κάντε κλικ εδώ για να μεταβείτε στο %s
|
||||||
# YouMustClickToChange=You must however first click on the following link to validate this password change
|
YouMustClickToChange=Θα πρέπει πρώτα να κάνετε κλικ στον παρακάτω σύνδεσμο για να επικυρώσει την αλλαγή του κωδικού πρόσβασης
|
||||||
# ForgetIfNothing=If you didn't request this change, just forget this email. Your credentials are kept safe.
|
ForgetIfNothing=Αν δεν ζητήσατε αυτή την αλλαγή, απλά ξεχάστε αυτό το email. Τα διαπιστευτήριά σας παραμένουν ασφαλή.
|
||||||
|
|
||||||
##### Calendar common #####
|
##### Calendar common #####
|
||||||
AddCalendarEntry=Προσθήκη εγγραφής στο ημερολόγιο %s
|
AddCalendarEntry=Προσθήκη εγγραφής στο ημερολόγιο %s
|
||||||
|
|||||||
@ -142,11 +142,11 @@ NoStockForThisProduct=Δεν απόθεμα για αυτό το προϊόν
|
|||||||
NoStock=Χωρίς απόθεμα
|
NoStock=Χωρίς απόθεμα
|
||||||
Restock=Εφοδιάζω με νέα εμπορεύματα
|
Restock=Εφοδιάζω με νέα εμπορεύματα
|
||||||
ProductSpecial=Ειδικές
|
ProductSpecial=Ειδικές
|
||||||
# QtyMin=Minimum Qty
|
QtyMin=Ελάχιστη Ποσότητα
|
||||||
PriceQty=Τιμή για την ποσότητα αυτή
|
PriceQty=Τιμή για την ποσότητα αυτή
|
||||||
# PriceQtyMin=Price for this min. qty (w/o discount)
|
PriceQtyMin=Τιμή για ελάχιστη ποσότητα (w/o έκπτωση)
|
||||||
VATRateForSupplierProduct=VAT Rate (for this supplier/product)
|
VATRateForSupplierProduct=VAT Rate (for this supplier/product)
|
||||||
# DiscountQtyMin=Default discount for qty
|
DiscountQtyMin=Προεπιλεγμένη έκπτωση για ποσότητα
|
||||||
NoPriceDefinedForThisSupplier=Δεν υπάρχει τιμή / έκαστος ορίζεται αυτής της επιχείρησης / του προϊόντος
|
NoPriceDefinedForThisSupplier=Δεν υπάρχει τιμή / έκαστος ορίζεται αυτής της επιχείρησης / του προϊόντος
|
||||||
NoSupplierPriceDefinedForThisProduct=Δεν υπάρχει τιμή προμηθευτή / έκαστος ορίζονται για αυτό το προϊόν
|
NoSupplierPriceDefinedForThisProduct=Δεν υπάρχει τιμή προμηθευτή / έκαστος ορίζονται για αυτό το προϊόν
|
||||||
RecordedProducts=Προϊόντα που καταγράφονται
|
RecordedProducts=Προϊόντα που καταγράφονται
|
||||||
@ -198,9 +198,9 @@ CostPmpHT=Net total VWAP
|
|||||||
ProductUsedForBuild=Auto consumed by production
|
ProductUsedForBuild=Auto consumed by production
|
||||||
ProductBuilded=Production completed
|
ProductBuilded=Production completed
|
||||||
ProductsMultiPrice=Προϊόν πολλαπλών-τιμών
|
ProductsMultiPrice=Προϊόν πολλαπλών-τιμών
|
||||||
# ProductSellByQuarterHT=Products turnover quarterly VWAP
|
ProductSellByQuarterHT=Προϊόντα του κύκλου εργασιών τριμηνιαία VWAP
|
||||||
# ServiceSellByQuarterHT=Services turnover quarterly VWAP
|
ServiceSellByQuarterHT=Υπηρεσίες του κύκλου εργασιών τριμηνιαία VWAP
|
||||||
# Quarter1=1st. Quarter
|
Quarter1=1ο. Τέταρτο
|
||||||
# Quarter2=2nd. Quarter
|
Quarter2=2ο. Τέταρτο
|
||||||
# Quarter3=3rd. Quarter
|
Quarter3=3η. Τέταρτο
|
||||||
# Quarter4=4th. Quarter
|
Quarter4=4ο. Τέταρτο
|
||||||
|
|||||||
@ -45,8 +45,8 @@ MyActivities=Οι εργασίες/δραστηρ. μου
|
|||||||
MyProjects=Τα έργα μου
|
MyProjects=Τα έργα μου
|
||||||
DurationEffective=Αποτελεσματική διάρκεια
|
DurationEffective=Αποτελεσματική διάρκεια
|
||||||
Progress=Πρόοδος
|
Progress=Πρόοδος
|
||||||
# ProgressDeclared=Declared progress
|
ProgressDeclared=Χαρακτηρίστηκε σε εξέλιξη
|
||||||
# ProgressCalculated=Calculated progress
|
ProgressCalculated=Υπολογιζόμενη πρόοδος
|
||||||
Time=Χρόνος
|
Time=Χρόνος
|
||||||
ListProposalsAssociatedProject=Κατάλογος των εμπορικών προτάσεων που σχετίζονται με το έργο
|
ListProposalsAssociatedProject=Κατάλογος των εμπορικών προτάσεων που σχετίζονται με το έργο
|
||||||
ListOrdersAssociatedProject=Κατάλογος των ενταλμάτων του πελάτη που σχετίζονται με το έργο
|
ListOrdersAssociatedProject=Κατάλογος των ενταλμάτων του πελάτη που σχετίζονται με το έργο
|
||||||
@ -90,8 +90,8 @@ CloneProject=Clone project
|
|||||||
CloneTasks=Clone tasks
|
CloneTasks=Clone tasks
|
||||||
CloneContacts=Clone contacts
|
CloneContacts=Clone contacts
|
||||||
CloneNotes=Clone notes
|
CloneNotes=Clone notes
|
||||||
# CloneProjectFiles=Clone project joined files
|
CloneProjectFiles=Κλώνος έργου εντάχθηκαν αρχεία
|
||||||
# CloneTaskFiles=Clone task(s) joined files (if task(s) cloned)
|
CloneTaskFiles=Ο κλώνος εργασία (ες) εντάχθηκαν αρχεία (εάν εργασία (ες) που κλωνοποιήθηκε)
|
||||||
ConfirmCloneProject=Are you sure to clone this project ?
|
ConfirmCloneProject=Are you sure to clone this project ?
|
||||||
ProjectReportDate=Change task date according project start date
|
ProjectReportDate=Change task date according project start date
|
||||||
ErrorShiftTaskDate=Impossible to shift task date according to new project start date
|
ErrorShiftTaskDate=Impossible to shift task date according to new project start date
|
||||||
@ -106,8 +106,8 @@ TypeContact_project_task_internal_TASKEXECUTIVE=Εκτελεστική ομάδ
|
|||||||
TypeContact_project_task_external_TASKEXECUTIVE=Εκτελεστική ομάδα
|
TypeContact_project_task_external_TASKEXECUTIVE=Εκτελεστική ομάδα
|
||||||
TypeContact_project_task_internal_CONTRIBUTOR=Συνεισφέρων
|
TypeContact_project_task_internal_CONTRIBUTOR=Συνεισφέρων
|
||||||
TypeContact_project_task_external_CONTRIBUTOR=Συνεισφέρων
|
TypeContact_project_task_external_CONTRIBUTOR=Συνεισφέρων
|
||||||
# SelectElement=Select element
|
SelectElement=Επιλέξτε το στοιχείο
|
||||||
# AddElement=Link to element
|
AddElement=Σύνδεση με το στοιχείο
|
||||||
# Documents models
|
# Documents models
|
||||||
DocumentModelBaleine=Μοντέλο έκθεση Μια πλήρης έργου (logo. ..)
|
DocumentModelBaleine=Μοντέλο έκθεση Μια πλήρης έργου (logo. ..)
|
||||||
PlannedWorkload = Σχέδιο φόρτου εργασίας
|
PlannedWorkload = Σχέδιο φόρτου εργασίας
|
||||||
|
|||||||
@ -116,5 +116,5 @@ DontDowngradeSuperAdmin=Μόνο μια superadmin μπορεί να προβε
|
|||||||
HierarchicalResponsible=Ιεραρχική ευθύνη
|
HierarchicalResponsible=Ιεραρχική ευθύνη
|
||||||
HierarchicView=Ιεραρχική προβολή
|
HierarchicView=Ιεραρχική προβολή
|
||||||
UseTypeFieldToChange=Χρησιμοποιήστε είδος πεδίου για να αλλάξετε
|
UseTypeFieldToChange=Χρησιμοποιήστε είδος πεδίου για να αλλάξετε
|
||||||
# OpenIDURL=OpenID URL
|
OpenIDURL=OpenID URL
|
||||||
# LoginUsingOpenID=Use OpenID to login
|
LoginUsingOpenID=Χρησιμοποιήστε το OpenID για να συνδεθείτε
|
||||||
|
|||||||
@ -92,5 +92,5 @@ InfoTransMessage=Η διαρκής %s ώστε έχει μεταδίδει στ
|
|||||||
InfoTransData=Ποσό: %s <br> Metode: %s <br> Ημερομηνία: %s
|
InfoTransData=Ποσό: %s <br> Metode: %s <br> Ημερομηνία: %s
|
||||||
InfoFoot=Αυτό είναι ένα αυτοματοποιημένο μήνυμα που αποστέλλεται από Dolibarr
|
InfoFoot=Αυτό είναι ένα αυτοματοποιημένο μήνυμα που αποστέλλεται από Dolibarr
|
||||||
InfoRejectSubject=Μόνιμη προκειμένου αρνήθηκε
|
InfoRejectSubject=Μόνιμη προκειμένου αρνήθηκε
|
||||||
# InfoRejectMessage=Hello,<br><br>the standing order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
|
InfoRejectMessage=Γεια σας, <br><br> η πάγια εντολή του τιμολογίου %s που σχετίζεται με την εταιρία %s, με το ποσό των %s έχει απορριφθεί από την τράπεζα. <br><br> -- <br>%s
|
||||||
ModeWarning=Επιλογή για την πραγματική κατάσταση, δεν είχε καθοριστεί, σταματάμε μετά από αυτή την προσομοίωση
|
ModeWarning=Επιλογή για την πραγματική κατάσταση, δεν είχε καθοριστεί, σταματάμε μετά από αυτή την προσομοίωση
|
||||||
|
|||||||
@ -383,13 +383,13 @@ PaymentInvoiceRef=Payment invoice %s
|
|||||||
ValidateInvoice=Validate invoice
|
ValidateInvoice=Validate invoice
|
||||||
Cash=Cash
|
Cash=Cash
|
||||||
Reported=Delayed
|
Reported=Delayed
|
||||||
DisabledBecausePayments=Not possible since there is some payments
|
DisabledBecausePayments=Not possible since there are some payments
|
||||||
CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified payed
|
CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
|
||||||
ExpectedToPay=Expected payment
|
ExpectedToPay=Expected payment
|
||||||
PayedByThisPayment=Payed by this payment
|
PayedByThisPayment=Paid by this payment
|
||||||
ClosePaidInvoicesAutomatically=Classify "Payed" all standard or replacement invoices entirely payed.
|
ClosePaidInvoicesAutomatically=Classify "Paid" all standard or replacement invoices entirely paid.
|
||||||
ClosePaidCreditNotesAutomatically=Classify "Payed" all credit notes entirely paid back.
|
ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
|
||||||
AllCompletelyPayedInvoiceWillBeClosed=All invoice with no remain to pay will be automatically closed to status "Payed".
|
AllCompletelyPayedInvoiceWillBeClosed=All invoice with no remain to pay will be automatically closed to status "Paid".
|
||||||
ToMakePayment=Pay
|
ToMakePayment=Pay
|
||||||
ToMakePaymentBack=Pay back
|
ToMakePaymentBack=Pay back
|
||||||
ListOfYourUnpaidInvoices=List of unpaid invoices
|
ListOfYourUnpaidInvoices=List of unpaid invoices
|
||||||
@ -405,11 +405,11 @@ TypeContact_invoice_supplier_external_BILLING=Supplier invoice contact
|
|||||||
TypeContact_invoice_supplier_external_SHIPPING=Supplier shipping contact
|
TypeContact_invoice_supplier_external_SHIPPING=Supplier shipping contact
|
||||||
TypeContact_invoice_supplier_external_SERVICE=Supplier service contact
|
TypeContact_invoice_supplier_external_SERVICE=Supplier service contact
|
||||||
# crabe PDF Model
|
# crabe PDF Model
|
||||||
PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (Template recommanded)
|
PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
|
||||||
# oursin PDF Model
|
# oursin PDF Model
|
||||||
PDFOursinDescription=Invoice PDF template Oursin. A complete invoice template (Template alternative)
|
PDFOursinDescription=Invoice PDF template Oursin. A complete invoice template (alternative Template)
|
||||||
# NumRef Modules
|
# NumRef Modules
|
||||||
TerreNumRefModelDesc1=Return numero with format %syymm-nnnn for standard and replacement invoices, %syymm-nnnn for credit notes and %syymm-nnnn for deposits where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
||||||
MarsNumRefModelDesc1=Return numero with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for credit notes and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for credit notes and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
|
||||||
|
|
||||||
TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
|
TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
|
||||||
|
|||||||
@ -6,6 +6,7 @@ CountryES=Spain
|
|||||||
CountryDE=Germany
|
CountryDE=Germany
|
||||||
CountryCH=Switzerland
|
CountryCH=Switzerland
|
||||||
CountryGB=Great Britain
|
CountryGB=Great Britain
|
||||||
|
CountryUK=United Kingdom
|
||||||
CountryIE=Ireland
|
CountryIE=Ireland
|
||||||
CountryCN=China
|
CountryCN=China
|
||||||
CountryTN=Tunisia
|
CountryTN=Tunisia
|
||||||
|
|||||||
@ -1,13 +1,13 @@
|
|||||||
# Dolibarr language file - Source file is en_US - main
|
# Dolibarr language file - Source file is en_US - main
|
||||||
DIRECTION=ltr
|
DIRECTION=ltr
|
||||||
# Note for chinese:
|
# Note for Chinese:
|
||||||
# msungstdlight or cid0ct are for traditionnal chinese (traditionnal does not render with ubuntu pdf reader)
|
# msungstdlight or cid0ct are for traditional Chinese (traditional does not render with Ubuntu pdf reader)
|
||||||
# stsongstdlight or cid0cs are for simplified chinese
|
# stsongstdlight or cid0cs are for simplified Chinese
|
||||||
# To read chinese pdf with linux: sudo apt-get install poppler-data
|
# To read Chinese pdf with Linux: sudo apt-get install poppler-data
|
||||||
FONTFORPDF=helvetica
|
FONTFORPDF=helvetica
|
||||||
FONTSIZEFORPDF=10
|
FONTSIZEFORPDF=10
|
||||||
SeparatorDecimal=,
|
SeparatorDecimal=.
|
||||||
SeparatorThousand=None
|
SeparatorThousand=,
|
||||||
FormatDateShort=%m/%d/%Y
|
FormatDateShort=%m/%d/%Y
|
||||||
FormatDateShortInput=%m/%d/%Y
|
FormatDateShortInput=%m/%d/%Y
|
||||||
FormatDateShortJava=MM/dd/yyyy
|
FormatDateShortJava=MM/dd/yyyy
|
||||||
@ -65,7 +65,7 @@ BackgroundColorByDefault=Default background color
|
|||||||
FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this.
|
FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this.
|
||||||
NbOfEntries=Nb of entries
|
NbOfEntries=Nb of entries
|
||||||
GoToWikiHelpPage=Read online help (need Internet access)
|
GoToWikiHelpPage=Read online help (need Internet access)
|
||||||
GoToHelpPage=Read help
|
GoToHelpPage=Read help
|
||||||
RecordSaved=Record saved
|
RecordSaved=Record saved
|
||||||
RecordDeleted=Record deleted
|
RecordDeleted=Record deleted
|
||||||
LevelOfFeature=Level of features
|
LevelOfFeature=Level of features
|
||||||
@ -226,7 +226,7 @@ DateValueShort=Value date
|
|||||||
DateOperation=Operation date
|
DateOperation=Operation date
|
||||||
DateOperationShort=Oper. Date
|
DateOperationShort=Oper. Date
|
||||||
DateLimit=Limit date
|
DateLimit=Limit date
|
||||||
DateRequest=Request date
|
DateRequest=Request date
|
||||||
DateProcess=Process date
|
DateProcess=Process date
|
||||||
DatePlanShort=Date planed
|
DatePlanShort=Date planed
|
||||||
DateRealShort=Date real.
|
DateRealShort=Date real.
|
||||||
@ -447,30 +447,30 @@ SeptemberMin=Sep
|
|||||||
OctoberMin=Oct
|
OctoberMin=Oct
|
||||||
NovemberMin=Nov
|
NovemberMin=Nov
|
||||||
DecemberMin=Dec
|
DecemberMin=Dec
|
||||||
Month01=january
|
Month01=January
|
||||||
Month02=february
|
Month02=February
|
||||||
Month03=march
|
Month03=March
|
||||||
Month04=april
|
Month04=April
|
||||||
Month05=may
|
Month05=May
|
||||||
Month06=june
|
Month06=June
|
||||||
Month07=july
|
Month07=July
|
||||||
Month08=august
|
Month08=August
|
||||||
Month09=september
|
Month09=September
|
||||||
Month10=october
|
Month10=October
|
||||||
Month11=november
|
Month11=November
|
||||||
Month12=december
|
Month12=December
|
||||||
MonthShort01=jan
|
MonthShort01=Jan
|
||||||
MonthShort02=feb
|
MonthShort02=Feb
|
||||||
MonthShort03=mar
|
MonthShort03=Mar
|
||||||
MonthShort04=apr
|
MonthShort04=Apr
|
||||||
MonthShort05=may
|
MonthShort05=May
|
||||||
MonthShort06=jun
|
MonthShort06=Jun
|
||||||
MonthShort07=jul
|
MonthShort07=Jul
|
||||||
MonthShort08=aug
|
MonthShort08=Aug
|
||||||
MonthShort09=sep
|
MonthShort09=Sep
|
||||||
MonthShort10=oct
|
MonthShort10=Oct
|
||||||
MonthShort11=nov
|
MonthShort11=Nov
|
||||||
MonthShort12=dec
|
MonthShort12=Dec
|
||||||
AttachedFiles=Attached files and documents
|
AttachedFiles=Attached files and documents
|
||||||
FileTransferComplete=File was uploaded successfuly
|
FileTransferComplete=File was uploaded successfuly
|
||||||
DateFormatYYYYMM=YYYY-MM
|
DateFormatYYYYMM=YYYY-MM
|
||||||
@ -607,7 +607,7 @@ MenuManager=Menu manager
|
|||||||
NoMenu=No sub-menu
|
NoMenu=No sub-menu
|
||||||
WarningYouAreInMaintenanceMode=Warning, you are in a maintenance mode, so only login <b>%s</b> is allowed to use application at the moment.
|
WarningYouAreInMaintenanceMode=Warning, you are in a maintenance mode, so only login <b>%s</b> is allowed to use application at the moment.
|
||||||
CoreErrorTitle=System error
|
CoreErrorTitle=System error
|
||||||
CoreErrorMessage=Sorry, an error occurred. Check the logs or contact your system administrator.
|
CoreErrorMessage=Sorry, an error occurred. Check the logs or contact your system administrator.
|
||||||
CreditCard=Credit card
|
CreditCard=Credit card
|
||||||
FieldsWithAreMandatory=Fields with <b>%s</b> are mandatory
|
FieldsWithAreMandatory=Fields with <b>%s</b> are mandatory
|
||||||
FieldsWithIsForPublic=Fields with <b>%s</b> are shown on public list of members. If you don't want this, check off the "public" box.
|
FieldsWithIsForPublic=Fields with <b>%s</b> are shown on public list of members. If you don't want this, check off the "public" box.
|
||||||
@ -632,7 +632,7 @@ IM=Instant messaging
|
|||||||
NewAttribute=New attribute
|
NewAttribute=New attribute
|
||||||
AttributeCode=Attribute code
|
AttributeCode=Attribute code
|
||||||
OptionalFieldsSetup=Extra attributes setup
|
OptionalFieldsSetup=Extra attributes setup
|
||||||
URLPhoto=Url of photo/logo
|
URLPhoto=URL of photo/logo
|
||||||
SetLinkToThirdParty=Link to another third party
|
SetLinkToThirdParty=Link to another third party
|
||||||
CreateDraft=Create draft
|
CreateDraft=Create draft
|
||||||
ClickToEdit=Click to edit
|
ClickToEdit=Click to edit
|
||||||
@ -642,7 +642,7 @@ ByTown=By town
|
|||||||
ByDate=By date
|
ByDate=By date
|
||||||
ByMonthYear=By month/year
|
ByMonthYear=By month/year
|
||||||
ByYear=By year
|
ByYear=By year
|
||||||
ByMonth=by month
|
ByMonth=By month
|
||||||
ByDay=By day
|
ByDay=By day
|
||||||
BySalesRepresentative=By sales representative
|
BySalesRepresentative=By sales representative
|
||||||
LinkedToSpecificUsers=Linked to a particular user contact
|
LinkedToSpecificUsers=Linked to a particular user contact
|
||||||
@ -660,7 +660,7 @@ toward=toward
|
|||||||
Access=Access
|
Access=Access
|
||||||
HelpCopyToClipboard=Use Ctrl+C to copy to clipboard
|
HelpCopyToClipboard=Use Ctrl+C to copy to clipboard
|
||||||
SaveUploadedFileWithMask=Save file on server with name "<strong>%s</strong>" (otherwise "%s")
|
SaveUploadedFileWithMask=Save file on server with name "<strong>%s</strong>" (otherwise "%s")
|
||||||
OriginFileName=Nom d'origine
|
OriginFileName=Original filename
|
||||||
|
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Monday
|
Monday=Monday
|
||||||
|
|||||||
@ -47,5 +47,5 @@ BuyingCost=Cost price
|
|||||||
UnitCharges=Unit charges
|
UnitCharges=Unit charges
|
||||||
Charges=Charges
|
Charges=Charges
|
||||||
|
|
||||||
AgentContactType=Contact type used for commissioning
|
AgentContactType=Commercial agent contact type
|
||||||
AgentContactTypeDetails=Défine what contact type (linked on invoices) will be associated with commercial agents
|
AgentContactTypeDetails=Défine what contact type (linked on invoices) will be used for margin report by commercial agents
|
||||||
|
|||||||
@ -6,7 +6,7 @@ Tools=Tools
|
|||||||
ToolsDesc=This area is dedicated to group miscellaneous tools not available into other menu entries.<br><br>Those tools can be reached from menu on the side.
|
ToolsDesc=This area is dedicated to group miscellaneous tools not available into other menu entries.<br><br>Those tools can be reached from menu on the side.
|
||||||
Birthday=Birthday
|
Birthday=Birthday
|
||||||
BirthdayDate=Birthday
|
BirthdayDate=Birthday
|
||||||
DateToBirth=Date to birth
|
DateToBirth=Date of birth
|
||||||
BirthdayAlertOn= birthday alert active
|
BirthdayAlertOn= birthday alert active
|
||||||
BirthdayAlertOff= birthday alert inactive
|
BirthdayAlertOff= birthday alert inactive
|
||||||
Notify_FICHINTER_VALIDATE=Intervention validated
|
Notify_FICHINTER_VALIDATE=Intervention validated
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
# Dolibarr language file - Source file is en_US - printipp
|
# Dolibarr language file - Source file is en_US - printipp
|
||||||
PrintIPPSetup=Setup of module Direct Print
|
PrintIPPSetup=Setup of Direct Print module
|
||||||
PrintIPPDesc=Ce module permet d'ajouter un bouton d'impression direct des documents vers votre imprimante. Il requiert un systeme Linux équipé de Cups.
|
PrintIPPDesc=This module adds a Print button to send documents directly to a printer. It requires a Linux system with CUPS installed.
|
||||||
PRINTIPP_ENABLED=Show picto "Direct print" into list of documents
|
PRINTIPP_ENABLED=Show "Direct print" icon in document lists
|
||||||
PRINTIPP_HOST=Print server
|
PRINTIPP_HOST=Print server
|
||||||
PRINTIPP_PORT=Port
|
PRINTIPP_PORT=Port
|
||||||
PRINTIPP_USER=Login
|
PRINTIPP_USER=Login
|
||||||
PRINTIPP_PASSWORD=Password
|
PRINTIPP_PASSWORD=Password
|
||||||
NoPrinterFound=No printers found (check your Cups etup)
|
NoPrinterFound=No printers found (check your CUPS setup)
|
||||||
|
|||||||
@ -18,8 +18,8 @@ RequestStandingOrderToTreat=Request for standing orders to treat
|
|||||||
RequestStandingOrderTreated=Request for standing orders treated
|
RequestStandingOrderTreated=Request for standing orders treated
|
||||||
CustomersStandingOrders=Customer standing orders
|
CustomersStandingOrders=Customer standing orders
|
||||||
CustomerStandingOrder=Customer standing order
|
CustomerStandingOrder=Customer standing order
|
||||||
NbOfInvoiceToWithdraw=Nb of invoice with withdraw request
|
NbOfInvoiceToWithdraw=No. of invoice with withdraw request
|
||||||
NbOfInvoiceToWithdrawWithInfo=Nb of invoice with withdraw request for customers having defined bank account information
|
NbOfInvoiceToWithdrawWithInfo=No. of invoice with withdraw request for customers having defined bank account information
|
||||||
InvoiceWaitingWithdraw=Invoice waiting for withdraw
|
InvoiceWaitingWithdraw=Invoice waiting for withdraw
|
||||||
AmountToWithdraw=Amount to withdraw
|
AmountToWithdraw=Amount to withdraw
|
||||||
WithdrawsRefused=Withdraws refused
|
WithdrawsRefused=Withdraws refused
|
||||||
@ -34,14 +34,14 @@ ThirdPartyBankCode=Third party bank code
|
|||||||
ThirdPartyDeskCode=Third party desk code
|
ThirdPartyDeskCode=Third party desk code
|
||||||
NoInvoiceCouldBeWithdrawed=No invoice withdrawed with success. Check that invoice are on companies with a valid BAN.
|
NoInvoiceCouldBeWithdrawed=No invoice withdrawed with success. Check that invoice are on companies with a valid BAN.
|
||||||
ClassCredited=Classify credited
|
ClassCredited=Classify credited
|
||||||
ClassCreditedConfirm=Are you sure you want to classify this withdrawal receipt as credited on your bank account ?
|
ClassCreditedConfirm=Are you sure you want to classify this withdrawal receipt as credited on your bank account?
|
||||||
TransData=Date Transmission
|
TransData=Transmission date
|
||||||
TransMetod=Method Transmission
|
TransMetod=Transmission method
|
||||||
Send=Send
|
Send=Send
|
||||||
Lines=Lines
|
Lines=Lines
|
||||||
StandingOrderReject=Issue a reject
|
StandingOrderReject=Issue a rejection
|
||||||
InvoiceRefused=Invoice refused
|
InvoiceRefused=Invoice refused
|
||||||
WithdrawalRefused=Withdrawal Refused
|
WithdrawalRefused=Withdrawal refused
|
||||||
WithdrawalRefusedConfirm=Are you sure you want to enter a withdrawal rejection for society
|
WithdrawalRefusedConfirm=Are you sure you want to enter a withdrawal rejection for society
|
||||||
RefusedData=Date of rejection
|
RefusedData=Date of rejection
|
||||||
RefusedReason=Reason for rejection
|
RefusedReason=Reason for rejection
|
||||||
@ -51,15 +51,15 @@ InvoiceRefused=Charge the rejection to customer
|
|||||||
Status=Status
|
Status=Status
|
||||||
StatusUnknown=Unknown
|
StatusUnknown=Unknown
|
||||||
StatusWaiting=Waiting
|
StatusWaiting=Waiting
|
||||||
StatusTrans=Transmitted
|
StatusTrans=Sent
|
||||||
StatusCredited=Credited
|
StatusCredited=Credited
|
||||||
StatusRefused=Refused
|
StatusRefused=Refused
|
||||||
StatusMotif0=Unspecified
|
StatusMotif0=Unspecified
|
||||||
StatusMotif1=Provision insuffisante
|
StatusMotif1=Insufficient funds
|
||||||
StatusMotif2=Tirage conteste
|
StatusMotif2=Request contested
|
||||||
StatusMotif3=No Withdrawal order
|
StatusMotif3=No Withdrawal order
|
||||||
StatusMotif4=Customer Order
|
StatusMotif4=Customer Order
|
||||||
StatusMotif5=RIB inexploitable
|
StatusMotif5=RIB unusable
|
||||||
StatusMotif6=Account without balance
|
StatusMotif6=Account without balance
|
||||||
StatusMotif7=Judicial Decision
|
StatusMotif7=Judicial Decision
|
||||||
StatusMotif8=Other reason
|
StatusMotif8=Other reason
|
||||||
@ -78,18 +78,18 @@ BankToReceiveWithdraw=Bank account to receive withdraws
|
|||||||
CreditDate=Credit on
|
CreditDate=Credit on
|
||||||
WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country
|
WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country
|
||||||
ShowWithdraw=Show Withdraw
|
ShowWithdraw=Show Withdraw
|
||||||
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=However, if invoice has at least one withdrawal payment not yet processed, it won't be set as payed to allow to manage withdrawal before.
|
IfInvoiceNeedOnWithdrawPaymentWontBeClosed=However, if invoice has at least one withdrawal payment not yet processed, it won't be set as paid to allow prior withdrawal management.
|
||||||
DoStandingOrdersBeforePayments=This tabs allows you to request for a standing order. Once it will be finished, you can type the payment to close the invoice.
|
DoStandingOrdersBeforePayments=This tab allows you to request a standing order. Once it is complete, you can type the payment to close the invoice.
|
||||||
WithdrawalFile=Withdrawal file
|
WithdrawalFile=Withdrawal file
|
||||||
SetToStatusSent=Set to status "File Sent"
|
SetToStatusSent=Set to status "File Sent"
|
||||||
ThisWillAlsoAddPaymentOnInvoice=This will also create payments onto invoices and will classify them to paid
|
ThisWillAlsoAddPaymentOnInvoice=This will also apply payments to invoices and will classify them as "Paid"
|
||||||
|
|
||||||
### Notifications
|
### Notifications
|
||||||
InfoCreditSubject=Payment of standing order %s by the bank
|
InfoCreditSubject=Payment of standing order %s by the bank
|
||||||
InfoCreditMessage=The standing order %s has been paid by the bank<br>Data of payment: %s
|
InfoCreditMessage=The standing order %s has been paid by the bank<br>Data of payment: %s
|
||||||
InfoTransSubject=Transmission of standing order %s to bank
|
InfoTransSubject=Transmission of standing order %s to bank
|
||||||
InfoTransMessage=The standing order %s has been transmited to bank by %s %s.<br><br>
|
InfoTransMessage=The standing order %s has been sent to bank by %s %s.<br><br>
|
||||||
InfoTransData=Amount: %s<br>Metode: %s<br>Date: %s
|
InfoTransData=Amount: %s<br>Method: %s<br>Date: %s
|
||||||
InfoFoot=This is an automated message sent by Dolibarr
|
InfoFoot=This is an automated message sent by Dolibarr
|
||||||
InfoRejectSubject=Standing order refused
|
InfoRejectSubject=Standing order refused
|
||||||
InfoRejectMessage=Hello,<br><br>the standing order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
|
InfoRejectMessage=Hello,<br><br>the standing order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
|
||||||
|
|||||||
@ -480,15 +480,15 @@ Module2400Name=Agenda
|
|||||||
Module2400Desc=Gestion des actions (événements et tâches) et de l'agenda
|
Module2400Desc=Gestion des actions (événements et tâches) et de l'agenda
|
||||||
Module2500Name=Gestion électronique de documents
|
Module2500Name=Gestion électronique de documents
|
||||||
Module2500Desc=Permet de stocker et administrer une base de documents
|
Module2500Desc=Permet de stocker et administrer une base de documents
|
||||||
Module2600Name= WebServices
|
Module2600Name=WebServices
|
||||||
Module2600Desc= Active le serveur de Web Services de Dolibarr
|
Module2600Desc=Active le serveur de Web Services de Dolibarr
|
||||||
Module2700Name= Gravatar
|
Module2700Name=Gravatar
|
||||||
Module2700Desc= Utilise le service en ligne Gravatar (www.gravatar.com) pour afficher les photos d'utilisateurs/membres (en fonction leur e-mail). Besoin d'un accès Internet
|
Module2700Desc=Utilise le service en ligne Gravatar (www.gravatar.com) pour afficher les photos d'utilisateurs/membres (en fonction leur e-mail). Besoin d'un accès Internet
|
||||||
Module2800Desc=Client FTP
|
Module2800Desc=Client FTP
|
||||||
Module2900Name= GeoIPMaxmind
|
Module2900Name=GeoIPMaxmind
|
||||||
Module2900Desc= Capacités de conversion GeoIP Maxmind
|
Module2900Desc=Capacités de conversion GeoIP Maxmind
|
||||||
Module3100Name= Skype
|
Module3100Name=Skype
|
||||||
Module3100Desc= Ajouter un button Skype dans les fiches adhérents / tiers / contacts
|
Module3100Desc=Ajouter un button Skype dans les fiches adhérents / tiers / contacts
|
||||||
Module5000Name=Multi-société
|
Module5000Name=Multi-société
|
||||||
Module5000Desc=Permet de gérer plusieurs sociétés
|
Module5000Desc=Permet de gérer plusieurs sociétés
|
||||||
Module6000Name=Workflow
|
Module6000Name=Workflow
|
||||||
@ -499,8 +499,8 @@ Module50000Name=PayBox
|
|||||||
Module50000Desc=Module permettant d'offrir en ligne une page de paiement par carte de crédit avec PayBox
|
Module50000Desc=Module permettant d'offrir en ligne une page de paiement par carte de crédit avec PayBox
|
||||||
Module50100Name=Point de vente
|
Module50100Name=Point de vente
|
||||||
Module50100Desc=Caisse enregistreuse de point de vente
|
Module50100Desc=Caisse enregistreuse de point de vente
|
||||||
Module50200Name= Paypal
|
Module50200Name=Paypal
|
||||||
Module50200Desc= Module permettant d'offrir en ligne une page de paiement par carte de crédit avec Paypal
|
Module50200Desc=Module permettant d'offrir en ligne une page de paiement par carte de crédit avec Paypal
|
||||||
Module54000Name=PrintIPP
|
Module54000Name=PrintIPP
|
||||||
Module54000Desc=Impression via Cups IPP Printer.
|
Module54000Desc=Impression via Cups IPP Printer.
|
||||||
Module55000Name=Open Survey
|
Module55000Name=Open Survey
|
||||||
@ -698,6 +698,7 @@ Permission1234=Supprimer les factures fournisseur
|
|||||||
Permission1235=Envoyer les factures fournisseur par mail
|
Permission1235=Envoyer les factures fournisseur par mail
|
||||||
Permission1236=Exporter les factures fournisseurs, attributs et règlements
|
Permission1236=Exporter les factures fournisseurs, attributs et règlements
|
||||||
Permission1237=Exporter les commande fournisseurs, attributs
|
Permission1237=Exporter les commande fournisseurs, attributs
|
||||||
|
<<<<<<< HEAD
|
||||||
Permission1251=Lancer des importations en masse dans la base (chargement de données)
|
Permission1251=Lancer des importations en masse dans la base (chargement de données)
|
||||||
Permission1321=Exporter les factures clients, attributs et règlements
|
Permission1321=Exporter les factures clients, attributs et règlements
|
||||||
Permission1421=Exporter les commandes clients et attributs
|
Permission1421=Exporter les commandes clients et attributs
|
||||||
@ -734,6 +735,47 @@ DictionnaryCivility=Titres de civilité
|
|||||||
DictionnaryActions=Liste des types d'événements de l'agenda
|
DictionnaryActions=Liste des types d'événements de l'agenda
|
||||||
DictionnarySocialContributions=Types de charges sociales
|
DictionnarySocialContributions=Types de charges sociales
|
||||||
DictionnaryVAT=Taux de TVA ou de taxes de ventes
|
DictionnaryVAT=Taux de TVA ou de taxes de ventes
|
||||||
|
=======
|
||||||
|
Permission1251= Lancer des imports de masse dans la base (chargement de données)
|
||||||
|
Permission1321= Exporter les factures clients, attributs et règlements
|
||||||
|
Permission1401= Lire le plan de compte
|
||||||
|
Permission1402= Créer/modifier un plan de compte
|
||||||
|
Permission1403= Clôturer un plan de compte
|
||||||
|
Permission1411= Lire les mouvements comptables
|
||||||
|
Permission1412= Créer/modifier/annuler les mouvements comptables
|
||||||
|
Permission1415= Lire CA, bilans, résultats, journaux, grands livres
|
||||||
|
Permission1421= Exporter les commandes clients et attributs
|
||||||
|
Permission23001 = Voir les tâches planifiée
|
||||||
|
Permission23002 = Créer/Modifier les tâches planifiée
|
||||||
|
Permission23003 = Supprimer les tâches planifiée
|
||||||
|
Permission23004 = Exécuter les tâches planifiée
|
||||||
|
Permission2401= Lire les actions (événements ou tâches) liées à son compte
|
||||||
|
Permission2402= Créer/modifier les actions (événements ou tâches) liées à son compte
|
||||||
|
Permission2403= Supprimer les actions (événements ou tâches) liées à son compte
|
||||||
|
Permission2411= Lire les actions (événements ou tâches) des autres
|
||||||
|
Permission2412= Créer/modifier les actions (événements ou tâches) pour les autres
|
||||||
|
Permission2413= Supprimer les actions (événements ou tâches) pour les autres
|
||||||
|
Permission2501= Lire/Récupérer les documents
|
||||||
|
Permission2502= Récupérer les documents
|
||||||
|
Permission2503= Soumettre ou supprimer des documents
|
||||||
|
Permission2515= Administrer les rubriques de documents
|
||||||
|
Permission2801=Utiliser un client FTP en mode lecture (parcours et download de fichiers)
|
||||||
|
Permission2802=Utiliser un client FTP en mode écriture (suppression et upload de fichiers)
|
||||||
|
Permission50101=Utiliser Point de vente
|
||||||
|
Permission50201= Consulter les transactions
|
||||||
|
Permission50202= Importer les transactions
|
||||||
|
DictionnaryCompanyType= Types de sociétés
|
||||||
|
DictionnaryCompanyJuridicalType= Formes juridiques
|
||||||
|
DictionnaryProspectLevel= Niveau de potentiel des prospects
|
||||||
|
DictionnaryCanton= Départements/Provinces/Cantons
|
||||||
|
DictionnaryRegion= Régions
|
||||||
|
DictionnaryCountry= Pays
|
||||||
|
DictionnaryCurrency= Monnaies
|
||||||
|
DictionnaryCivility= Titres de civilité
|
||||||
|
DictionnaryActions= Liste des types d'événements de l'agenda
|
||||||
|
DictionnarySocialContributions= Types de charges sociales
|
||||||
|
DictionnaryVAT= Taux de TVA ou de Taxes de Ventes
|
||||||
|
>>>>>>> refs/remotes/origin/3.4
|
||||||
DictionnaryRevenueStamp=Montants des timbres fiscaux
|
DictionnaryRevenueStamp=Montants des timbres fiscaux
|
||||||
DictionnaryPaymentConditions=Conditions de règlement
|
DictionnaryPaymentConditions=Conditions de règlement
|
||||||
DictionnaryPaymentModes=Modes de paiements
|
DictionnaryPaymentModes=Modes de paiements
|
||||||
|
|||||||
@ -25,7 +25,6 @@ FileToLaunchCronJobs=Commande pour lancer les travaux programmés actifs
|
|||||||
CronExplainHowToRunUnix=Sur un environnement Unix vous pouvez utiliser 'crontab' pour exécuter une commande toute les minutes
|
CronExplainHowToRunUnix=Sur un environnement Unix vous pouvez utiliser 'crontab' pour exécuter une commande toute les minutes
|
||||||
CronExplainHowToRunWin=Sur un environement Microsoft(tm) Windows vous pouvez utiliser le planificateur de tâche pour lancer une commande toute les minutes
|
CronExplainHowToRunWin=Sur un environement Microsoft(tm) Windows vous pouvez utiliser le planificateur de tâche pour lancer une commande toute les minutes
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Menu
|
# Menu
|
||||||
#
|
#
|
||||||
|
|||||||
@ -5,7 +5,8 @@ CountryIT=Italie
|
|||||||
CountryES=Espagne
|
CountryES=Espagne
|
||||||
CountryDE=Allemagne
|
CountryDE=Allemagne
|
||||||
CountryCH=Suisse
|
CountryCH=Suisse
|
||||||
CountryGB=Royaume-Uni
|
CountryGB=Grande-Bretagne
|
||||||
|
CountryUK=Royaume-Uni
|
||||||
CountryIE=Irlande
|
CountryIE=Irlande
|
||||||
CountryCN=Chine
|
CountryCN=Chine
|
||||||
CountryTN=Tunisie
|
CountryTN=Tunisie
|
||||||
|
|||||||
@ -47,5 +47,5 @@ BuyingCost=Coût de revient
|
|||||||
UnitCharges=Charge unitaire
|
UnitCharges=Charge unitaire
|
||||||
Charges=Charges
|
Charges=Charges
|
||||||
|
|
||||||
AgentContactType=Type de contact commissionné
|
AgentContactType=Type de contact agent commercial
|
||||||
AgentContactTypeDetails=Permet de définir le type de contact associé aux factures qui sera associé aux agents commerciaux
|
AgentContactTypeDetails=Permet de définir le type de contact associé aux factures qui sera utilisé pour le rapport de marges par agent commercial
|
||||||
|
|||||||
@ -56,7 +56,7 @@ ListSupplierOrdersAssociatedProject=Liste des commandes fournisseurs associées
|
|||||||
ListSupplierInvoicesAssociatedProject=Liste des factures fournisseurs associées au projet
|
ListSupplierInvoicesAssociatedProject=Liste des factures fournisseurs associées au projet
|
||||||
ListContractAssociatedProject=Liste des contrats associés au projet
|
ListContractAssociatedProject=Liste des contrats associés au projet
|
||||||
ListFichinterAssociatedProject=Liste des interventions associées au projet
|
ListFichinterAssociatedProject=Liste des interventions associées au projet
|
||||||
ListTripAssociatedProject=Liste des notes de frais associés au projet
|
ListTripAssociatedProject=Liste des notes de frais associées au projet
|
||||||
ListActionsAssociatedProject=Liste des événements associés au projet
|
ListActionsAssociatedProject=Liste des événements associés au projet
|
||||||
ActivityOnProjectThisWeek=Activité sur les projets cette semaine
|
ActivityOnProjectThisWeek=Activité sur les projets cette semaine
|
||||||
ActivityOnProjectThisMonth=Activité sur les projets ce mois
|
ActivityOnProjectThisMonth=Activité sur les projets ce mois
|
||||||
@ -94,7 +94,7 @@ CloneProjectFiles=Cloner les pièces jointes du projet
|
|||||||
CloneTaskFiles=Cloner les pièces jointes des tâche(s) (si tâche(s) cloner)
|
CloneTaskFiles=Cloner les pièces jointes des tâche(s) (si tâche(s) cloner)
|
||||||
ConfirmCloneProject=Êtes-vous sûr de vouloir cloner ce projet ?
|
ConfirmCloneProject=Êtes-vous sûr de vouloir cloner ce projet ?
|
||||||
ProjectReportDate=Reporter les dates des tâches en fonction de la date de départ.
|
ProjectReportDate=Reporter les dates des tâches en fonction de la date de départ.
|
||||||
ErrorShiftTaskDate=Une erreur c'est produite dans le report des dates des tâches.
|
ErrorShiftTaskDate=Une erreur s'est produite dans le report des dates des tâches.
|
||||||
ProjectsAndTasksLines=Projets et tâches
|
ProjectsAndTasksLines=Projets et tâches
|
||||||
ProjectCreatedInDolibarr=Projet %s créé
|
ProjectCreatedInDolibarr=Projet %s créé
|
||||||
##### Types de contacts #####
|
##### Types de contacts #####
|
||||||
@ -110,6 +110,12 @@ SelectElement=Séléctionnez l'élément
|
|||||||
AddElement=Link to element
|
AddElement=Link to element
|
||||||
# Documents models
|
# Documents models
|
||||||
DocumentModelBaleine=Modèle de rapport de projet complet (logo...)
|
DocumentModelBaleine=Modèle de rapport de projet complet (logo...)
|
||||||
|
<<<<<<< HEAD
|
||||||
PlannedWorkload = Charge de travail prévue
|
PlannedWorkload = Charge de travail prévue
|
||||||
WorkloadOccupation= Pourcentage affectation
|
WorkloadOccupation= Pourcentage affectation
|
||||||
ProjectReferers=Objets associés
|
ProjectReferers=Objets associés
|
||||||
|
=======
|
||||||
|
SelectElement=Eléments associables au projet :
|
||||||
|
AddElement=Associer
|
||||||
|
ProjectReferers=Objets associés
|
||||||
|
>>>>>>> refs/remotes/origin/3.4
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
# Dolibarr language file - Source file is en_US - admin
|
# Dolibarr language file - Source file is en_US - admin
|
||||||
Foundation=Pamats
|
Foundation=Pamats
|
||||||
Version=Versija
|
Version=Versija
|
||||||
VersionProgram=Versija programma
|
VersionProgram=Programmas versija
|
||||||
VersionLastInstall=Versija sākotnējo instalēt
|
VersionLastInstall=Versija sākotnējo instalēt
|
||||||
VersionLastUpgrade=Jaunākajai jauninājums
|
VersionLastUpgrade=Jaunākajai jauninājums
|
||||||
VersionExperimental=Eksperimentāls
|
VersionExperimental=Eksperimentāls
|
||||||
@ -27,9 +27,9 @@ DBSortingCharset=Datu bāzes rakstzīmju kopas, lai kārtotu datus
|
|||||||
WarningModuleNotActive=Moduļu <b>%s</b> ir jābūt aktivizētam
|
WarningModuleNotActive=Moduļu <b>%s</b> ir jābūt aktivizētam
|
||||||
WarningOnlyPermissionOfActivatedModules=Tikai atļaujas, kas saistīti ar aktīviem moduļi tiek parādīts šeit. Jūs varat aktivizēt citus moduļus Home-> Setup-> moduļi lapā.
|
WarningOnlyPermissionOfActivatedModules=Tikai atļaujas, kas saistīti ar aktīviem moduļi tiek parādīts šeit. Jūs varat aktivizēt citus moduļus Home-> Setup-> moduļi lapā.
|
||||||
DolibarrSetup=Dolibarr instalēt vai atjaunināt
|
DolibarrSetup=Dolibarr instalēt vai atjaunināt
|
||||||
DolibarrUser=Dolibarr lietotāju
|
DolibarrUser=Dolibarr lietotājs
|
||||||
InternalUser=Iekšējo lietotāju
|
InternalUser=Iekšējais lietotājs
|
||||||
ExternalUser=Ārējo lietotāju
|
ExternalUser=Ārējais lietotājs
|
||||||
InternalUsers=Iekšējie lietotāji
|
InternalUsers=Iekšējie lietotāji
|
||||||
ExternalUsers=Ārējie lietotāji
|
ExternalUsers=Ārējie lietotāji
|
||||||
GlobalSetup=Global iestatīšana
|
GlobalSetup=Global iestatīšana
|
||||||
@ -43,7 +43,7 @@ SecuritySetup=Drošības iestatīšana
|
|||||||
ErrorModuleRequirePHPVersion=Kļūda, šis modulis ir nepieciešama PHP versija %s vai augstāka
|
ErrorModuleRequirePHPVersion=Kļūda, šis modulis ir nepieciešama PHP versija %s vai augstāka
|
||||||
ErrorModuleRequireDolibarrVersion=Kļūda, šis modulis prasa Dolibarr versija %s vai augstāka
|
ErrorModuleRequireDolibarrVersion=Kļūda, šis modulis prasa Dolibarr versija %s vai augstāka
|
||||||
ErrorDecimalLargerThanAreForbidden=Kļūda, precizitāte augstāka nekā <b>%s</b> netiek atbalstīta.
|
ErrorDecimalLargerThanAreForbidden=Kļūda, precizitāte augstāka nekā <b>%s</b> netiek atbalstīta.
|
||||||
DictionnarySetup=Vārdnīca iestatīšana
|
DictionnarySetup=Vārdnīcas iestatīšana
|
||||||
Dictionnary=Vārdnīcas
|
Dictionnary=Vārdnīcas
|
||||||
ErrorReservedTypeSystemSystemAuto=Vērtību "sistēma" un "systemauto" veida tiek aizsargātas. Jūs varat izmantot "lietotājs", kā vērtība, lai pievienotu savu ierakstu
|
ErrorReservedTypeSystemSystemAuto=Vērtību "sistēma" un "systemauto" veida tiek aizsargātas. Jūs varat izmantot "lietotājs", kā vērtība, lai pievienotu savu ierakstu
|
||||||
ErrorCodeCantContainZero=Kodu nevar saturēt vērtību 0
|
ErrorCodeCantContainZero=Kodu nevar saturēt vērtību 0
|
||||||
@ -68,7 +68,7 @@ Table=Tabula
|
|||||||
Fields=Lauki
|
Fields=Lauki
|
||||||
Index=Indekss
|
Index=Indekss
|
||||||
Mask=Maska
|
Mask=Maska
|
||||||
NextValue=Tālāk vērtība
|
NextValue=Nākošā vērtība
|
||||||
NextValueForInvoices=Tālāk vērtība (rēķini)
|
NextValueForInvoices=Tālāk vērtība (rēķini)
|
||||||
NextValueForCreditNotes=Tālāk vērtība (kredīta piezīmes)
|
NextValueForCreditNotes=Tālāk vērtība (kredīta piezīmes)
|
||||||
NextValueForDeposit=Tālāk vērtība (depozīts)
|
NextValueForDeposit=Tālāk vērtība (depozīts)
|
||||||
@ -90,7 +90,7 @@ MenuIdParent=Mātes izvēlne ID
|
|||||||
DetailMenuIdParent=ID vecāku izvēlnē (tukšs top izvēlnē)
|
DetailMenuIdParent=ID vecāku izvēlnē (tukšs top izvēlnē)
|
||||||
DetailPosition=Šķirot skaits definēt izvēlnes novietojumu
|
DetailPosition=Šķirot skaits definēt izvēlnes novietojumu
|
||||||
PersonalizedMenusNotSupported=Personalizētā izvēlnes neatbalsta
|
PersonalizedMenusNotSupported=Personalizētā izvēlnes neatbalsta
|
||||||
AllMenus=Visi
|
AllMenus=Viss
|
||||||
NotConfigured=Modulis nav konfigurēts
|
NotConfigured=Modulis nav konfigurēts
|
||||||
Setup=Setup
|
Setup=Setup
|
||||||
Activation=Aktivizācija
|
Activation=Aktivizācija
|
||||||
@ -146,7 +146,7 @@ PurgeNothingToDelete=Nav direktoriju vai failu izdzēst.
|
|||||||
PurgeNDirectoriesDeleted=<b>%s</b> failus vai direktorijas dzēsti.
|
PurgeNDirectoriesDeleted=<b>%s</b> failus vai direktorijas dzēsti.
|
||||||
PurgeAuditEvents=Iztīrīšana visus drošības pasākumus
|
PurgeAuditEvents=Iztīrīšana visus drošības pasākumus
|
||||||
ConfirmPurgeAuditEvents=Vai jūs tiešām vēlaties, lai iztīrītu visus drošības pasākumus? Visi drošības žurnāli tiks dzēsti, nekādi citi dati tiks noņemts.
|
ConfirmPurgeAuditEvents=Vai jūs tiešām vēlaties, lai iztīrītu visus drošības pasākumus? Visi drošības žurnāli tiks dzēsti, nekādi citi dati tiks noņemts.
|
||||||
NewBackup=Jauns rezerves
|
NewBackup=Jauna rezerves kopija
|
||||||
GenerateBackup=Izveidot rezerves
|
GenerateBackup=Izveidot rezerves
|
||||||
Backup=Backup
|
Backup=Backup
|
||||||
Restore=Atjaunot
|
Restore=Atjaunot
|
||||||
@ -285,7 +285,7 @@ InfDirExample=<br> Tad paziņo to failu conf.php <br> $ Dolibarr_main_url_root_a
|
|||||||
YouCanSubmitFile=Izvēlieties moduli:
|
YouCanSubmitFile=Izvēlieties moduli:
|
||||||
CurrentVersion=Dolibarr pašreizējā versija
|
CurrentVersion=Dolibarr pašreizējā versija
|
||||||
CallUpdatePage=Iet uz lapu, kas aktualizē datu bāzes struktūras un datas: %s.
|
CallUpdatePage=Iet uz lapu, kas aktualizē datu bāzes struktūras un datas: %s.
|
||||||
LastStableVersion=Pēdējā stabila versija
|
LastStableVersion=Pēdējā stabilā versija
|
||||||
GenericMaskCodes=Jūs varat ievadīt jebkuru numerācijas masku. Šajā maska, šādus tagus var izmantot: <br> <b>{000000}</b> atbilst skaitam, kas tiks palielināts par katru %s. Ievadīt tik daudz nullēm, kā vajadzīgajā garumā letes. Skaitītājs tiks pabeigts ar nullēm no kreisās puses, lai būtu tik daudz nullēm kā masku. <br> <b>{000000 000}</b> tāds pats kā iepriekšējais, bet kompensēt atbilst noteiktam skaitam pa labi uz + zīmi tiek piemērots, sākot ar pirmo %s. <br> <b>{000000 @ x}</b> tāds pats kā iepriekšējais, bet skaitītājs tiek atiestatīts uz nulli, kad mēnesī x ir sasniegts (x no 1 līdz 12, 0 vai izmantot agri no finanšu gada mēnešiem, kas noteiktas konfigurācijas, 99 vai atiestatīt uz nulli katru mēnesi ). Ja šis variants tiek izmantots, un x ir 2 vai vairāk, tad secība {gggg} {mm} vai {GGGG} {mm} ir arī nepieciešama. <br> <b>{Dd}</b> diena (no 01 līdz 31). <br> <b>{Mm}</b> mēnesi (no 01 līdz 12). <br> <b>{Yy}, {GGGG}</b> vai <b>{y}</b> gadu vairāk nekā 2, 4 vai 1 numuri. <br>
|
GenericMaskCodes=Jūs varat ievadīt jebkuru numerācijas masku. Šajā maska, šādus tagus var izmantot: <br> <b>{000000}</b> atbilst skaitam, kas tiks palielināts par katru %s. Ievadīt tik daudz nullēm, kā vajadzīgajā garumā letes. Skaitītājs tiks pabeigts ar nullēm no kreisās puses, lai būtu tik daudz nullēm kā masku. <br> <b>{000000 000}</b> tāds pats kā iepriekšējais, bet kompensēt atbilst noteiktam skaitam pa labi uz + zīmi tiek piemērots, sākot ar pirmo %s. <br> <b>{000000 @ x}</b> tāds pats kā iepriekšējais, bet skaitītājs tiek atiestatīts uz nulli, kad mēnesī x ir sasniegts (x no 1 līdz 12, 0 vai izmantot agri no finanšu gada mēnešiem, kas noteiktas konfigurācijas, 99 vai atiestatīt uz nulli katru mēnesi ). Ja šis variants tiek izmantots, un x ir 2 vai vairāk, tad secība {gggg} {mm} vai {GGGG} {mm} ir arī nepieciešama. <br> <b>{Dd}</b> diena (no 01 līdz 31). <br> <b>{Mm}</b> mēnesi (no 01 līdz 12). <br> <b>{Yy}, {GGGG}</b> vai <b>{y}</b> gadu vairāk nekā 2, 4 vai 1 numuri. <br>
|
||||||
GenericMaskCodes2=<b>{CCCC}</b> klienta kodu <br> <b>{Cccc000}</b> klienta kodu par n burtiem seko klienta ref letes bez kompensācijas un zeroized ar pasaules letes. <br> <b>{Tttt}</b> kods uzņēmuma veida par n zīmēm (skat. dictionnary-uzņēmumu veidiem). <br>
|
GenericMaskCodes2=<b>{CCCC}</b> klienta kodu <br> <b>{Cccc000}</b> klienta kodu par n burtiem seko klienta ref letes bez kompensācijas un zeroized ar pasaules letes. <br> <b>{Tttt}</b> kods uzņēmuma veida par n zīmēm (skat. dictionnary-uzņēmumu veidiem). <br>
|
||||||
GenericMaskCodes3=Visas citas rakstzīmes masku paliks neskarts. <br> Atstarpes nav atļauts. <br>
|
GenericMaskCodes3=Visas citas rakstzīmes masku paliks neskarts. <br> Atstarpes nav atļauts. <br>
|
||||||
@ -344,7 +344,7 @@ SecurityTokenIsUnique=Izmantojiet unikālu securekey parametrs katram URL
|
|||||||
EnterRefToBuildUrl=Ievadiet atsauce objektu %s
|
EnterRefToBuildUrl=Ievadiet atsauce objektu %s
|
||||||
GetSecuredUrl=Saņemt aprēķina URL
|
GetSecuredUrl=Saņemt aprēķina URL
|
||||||
ButtonHideUnauthorized=Slēpt pogas, lai neatļautu rīcību, nevis rāda invalīdu pogas
|
ButtonHideUnauthorized=Slēpt pogas, lai neatļautu rīcību, nevis rāda invalīdu pogas
|
||||||
ProductVatMassChange=Masu PVN maiņa
|
ProductVatMassChange=Masveida PVN maiņa
|
||||||
ProductVatMassChangeDesc=Šī lapa var tikt izmantota, lai mainītu PVN likmi, kas noteikta par produktiem vai pakalpojumiem, no kura vērtība uz otru. Uzmanību, šīs izmaiņas tiek darīts uz visiem datu bāzē.
|
ProductVatMassChangeDesc=Šī lapa var tikt izmantota, lai mainītu PVN likmi, kas noteikta par produktiem vai pakalpojumiem, no kura vērtība uz otru. Uzmanību, šīs izmaiņas tiek darīts uz visiem datu bāzē.
|
||||||
OldVATRates=Vecā PVN likme
|
OldVATRates=Vecā PVN likme
|
||||||
NewVATRates=Jaunā PVN likme
|
NewVATRates=Jaunā PVN likme
|
||||||
@ -432,7 +432,7 @@ Module75Name=Izdevumu un ceļojumu piezīmes
|
|||||||
Module75Desc=Izdevumi un ceļojumu piezīmes vadība
|
Module75Desc=Izdevumi un ceļojumu piezīmes vadība
|
||||||
Module80Name=Sūtījumiem
|
Module80Name=Sūtījumiem
|
||||||
Module80Desc=Sūtījumi un piegādes rīkojumu vadība
|
Module80Desc=Sūtījumi un piegādes rīkojumu vadība
|
||||||
Module85Name=Bankas un naudas
|
Module85Name=Bankas un nauda
|
||||||
Module85Desc=Vadība banku vai naudas kontos
|
Module85Desc=Vadība banku vai naudas kontos
|
||||||
Module100Name=Ārējā vietne
|
Module100Name=Ārējā vietne
|
||||||
Module100Desc=Šis modulis ietver ārējo tīmekļa vietni vai lapu par Dolibarr izvēlnēm un apskatīt to uz Dolibarr rāmī
|
Module100Desc=Šis modulis ietver ārējo tīmekļa vietni vai lapu par Dolibarr izvēlnēm un apskatīt to uz Dolibarr rāmī
|
||||||
@ -484,7 +484,7 @@ Module2600Name= Veikalu
|
|||||||
Module2600Desc= Ļautu Dolibarr tīmekļa pakalpojumu serveri
|
Module2600Desc= Ļautu Dolibarr tīmekļa pakalpojumu serveri
|
||||||
Module2700Name= Gravatar
|
Module2700Name= Gravatar
|
||||||
Module2700Desc= Izmantot tiešsaistes Gravatar pakalpojumu (www.gravatar.com), lai parādītu fotogrāfijas lietotāju / dalībnieku (atrasts ar saviem e-pastiem). Nepieciešams interneta piekļuves
|
Module2700Desc= Izmantot tiešsaistes Gravatar pakalpojumu (www.gravatar.com), lai parādītu fotogrāfijas lietotāju / dalībnieku (atrasts ar saviem e-pastiem). Nepieciešams interneta piekļuves
|
||||||
Module2800Desc=FTP Client
|
Module2800Desc=FTP klients
|
||||||
Module2900Name= GeoIPMaxmind
|
Module2900Name= GeoIPMaxmind
|
||||||
Module2900Desc= GeoIP MaxMind pārveidošanu iespējas
|
Module2900Desc= GeoIP MaxMind pārveidošanu iespējas
|
||||||
Module3100Name= Skype
|
Module3100Name= Skype
|
||||||
@ -497,8 +497,8 @@ Module20000Name=Brīvdienas
|
|||||||
Module20000Desc=Atzīt un ievērot darbinieku brīvdienas
|
Module20000Desc=Atzīt un ievērot darbinieku brīvdienas
|
||||||
Module50000Name=Paybox
|
Module50000Name=Paybox
|
||||||
Module50000Desc=Modulis piedāvā tiešsaistes maksājumu lapā, ar kredītkarti, ar Paybox
|
Module50000Desc=Modulis piedāvā tiešsaistes maksājumu lapā, ar kredītkarti, ar Paybox
|
||||||
Module50100Name=Punktu pārdošanas
|
Module50100Name=Tirdzniecības punkts
|
||||||
Module50100Desc=Punktu pārdošanas moduļa
|
Module50100Desc=Tirdzniecības punkta moduļi
|
||||||
Module50200Name= Paypal
|
Module50200Name= Paypal
|
||||||
Module50200Desc= Modulis piedāvā tiešsaistes maksājumu lapā ar kredītkarti ar Paypal
|
Module50200Desc= Modulis piedāvā tiešsaistes maksājumu lapā ar kredītkarti ar Paypal
|
||||||
Module54000Name=PrintIPP
|
Module54000Name=PrintIPP
|
||||||
@ -646,7 +646,7 @@ Permission293=Modificēt klientiem tarifus
|
|||||||
Permission300=Lasīt svītrkodus
|
Permission300=Lasīt svītrkodus
|
||||||
Permission301=Izveidot / mainīt svītrkodus
|
Permission301=Izveidot / mainīt svītrkodus
|
||||||
Permission302=Dzēst svītrkodus
|
Permission302=Dzēst svītrkodus
|
||||||
Permission311=Lasīt pakalpojumi
|
Permission311=Lasīt pakalpojumus
|
||||||
Permission312=Piešķirt pakalpojumu līgumu
|
Permission312=Piešķirt pakalpojumu līgumu
|
||||||
Permission331=Lasīt grāmatzīmes
|
Permission331=Lasīt grāmatzīmes
|
||||||
Permission332=Izveidot / mainīt grāmatzīmes
|
Permission332=Izveidot / mainīt grāmatzīmes
|
||||||
@ -784,19 +784,19 @@ LocalTax2IsUsedExampleES= Spānijā, ārštata un neatkarīgi profesionāļi, ka
|
|||||||
LocalTax2IsNotUsedExampleES= Spānijā tie Bussines neattiecas uz nodokļu sistēmas moduļiem.
|
LocalTax2IsNotUsedExampleES= Spānijā tie Bussines neattiecas uz nodokļu sistēmas moduļiem.
|
||||||
LabelUsedByDefault=Label izmantots pēc noklusējuma, ja nav tulkojuma var atrast kodu
|
LabelUsedByDefault=Label izmantots pēc noklusējuma, ja nav tulkojuma var atrast kodu
|
||||||
LabelOnDocuments=Marķējums uz dokumentiem
|
LabelOnDocuments=Marķējums uz dokumentiem
|
||||||
NbOfDays=Nb dienu
|
NbOfDays=dienu sk
|
||||||
AtEndOfMonth=Perioda beigās
|
AtEndOfMonth=Perioda beigās
|
||||||
Offset=Kompensācija
|
Offset=Kompensācija
|
||||||
AlwaysActive=Vienmēr ir aktīva
|
AlwaysActive=Vienmēr ir aktīva
|
||||||
UpdateRequired=Jūsu sistēma ir jāatjaunina. Lai to izdarītu, noklikšķiniet uz <a href="%s">Update tagad</a> .
|
UpdateRequired=Jūsu sistēma ir jāatjaunina. Lai to izdarītu, noklikšķiniet uz <a href="%s">Update tagad</a> .
|
||||||
Upgrade=Upgrade
|
Upgrade=Atjaunināt
|
||||||
MenuUpgrade=Upgrade / Extend
|
MenuUpgrade=Atjaunināt / Paplašināt
|
||||||
AddExtensionThemeModuleOrOther=Pievienot paplašinājumu (tēma, modulis, ...)
|
AddExtensionThemeModuleOrOther=Pievienot paplašinājumu (tēma, modulis, ...)
|
||||||
WebServer=Tīmekļa serveris
|
WebServer=Tīmekļa serveris
|
||||||
DocumentRootServer=Web servera saknes direktorijā
|
DocumentRootServer=Web servera saknes direktorijā
|
||||||
DataRootServer=Datu failu direktorija
|
DataRootServer=Datu failu direktorija
|
||||||
IP=IP
|
IP=IP
|
||||||
Port=Osta
|
Port=Ports
|
||||||
VirtualServerName=Virtuālā servera nosaukums
|
VirtualServerName=Virtuālā servera nosaukums
|
||||||
AllParameters=Visi parametri
|
AllParameters=Visi parametri
|
||||||
OS=OS
|
OS=OS
|
||||||
@ -808,14 +808,14 @@ Pear=Bumbieris
|
|||||||
PearPackages=Bumbieru paketes
|
PearPackages=Bumbieru paketes
|
||||||
Browser=Browser
|
Browser=Browser
|
||||||
Server=Serveris
|
Server=Serveris
|
||||||
Database=Datu bāze
|
Database=Datubāze
|
||||||
DatabaseServer=Datu bāzes serveris
|
DatabaseServer=Datu bāzes serveris
|
||||||
DatabaseName=Datu bāzes nosaukums
|
DatabaseName=Datu bāzes nosaukums
|
||||||
DatabasePort=Datu bāzes osta
|
DatabasePort=Datu bāzes osta
|
||||||
DatabaseUser=Datu bāzes lietotāju
|
DatabaseUser=Datubāzes lietotājs
|
||||||
DatabasePassword=Datu bāzes paroli
|
DatabasePassword=Datubāzes parole
|
||||||
DatabaseConfiguration=Datu bāzes iestatīšana
|
DatabaseConfiguration=Datu bāzes iestatīšana
|
||||||
Tables=Galdi
|
Tables=Tabulas
|
||||||
TableName=Tabulas nosaukums
|
TableName=Tabulas nosaukums
|
||||||
TableLineFormat=Līnija formāts
|
TableLineFormat=Līnija formāts
|
||||||
NbOfRecord=Nb ierakstu
|
NbOfRecord=Nb ierakstu
|
||||||
@ -854,13 +854,13 @@ CompanyInfo=Uzņēmuma / nodibinājums informācija
|
|||||||
CompanyIds=Uzņēmuma / nodibinājums identitātes
|
CompanyIds=Uzņēmuma / nodibinājums identitātes
|
||||||
CompanyName=Nosaukums
|
CompanyName=Nosaukums
|
||||||
CompanyAddress=Adrese
|
CompanyAddress=Adrese
|
||||||
CompanyZip=Rāvējslēdzējs
|
CompanyZip=Pasta indekss
|
||||||
CompanyTown=Pilsēta
|
CompanyTown=Pilsēta
|
||||||
CompanyCountry=Valsts
|
CompanyCountry=Valsts
|
||||||
CompanyCurrency=Galveno valūtu
|
CompanyCurrency=Galveno valūtu
|
||||||
Logo=Logotips
|
Logo=Logotips
|
||||||
DoNotShow=Nerādīt
|
DoNotShow=Nerādīt
|
||||||
DoNotSuggestPaymentMode=Neapgalvoju
|
DoNotSuggestPaymentMode=Neieteikt
|
||||||
NoActiveBankAccountDefined=Nav aktīvas bankas definēts kontu
|
NoActiveBankAccountDefined=Nav aktīvas bankas definēts kontu
|
||||||
OwnerOfBankAccount=Īpašnieks bankas kontu %s
|
OwnerOfBankAccount=Īpašnieks bankas kontu %s
|
||||||
BankModuleNotActive=Bankas konti modulis nav atļautas
|
BankModuleNotActive=Bankas konti modulis nav atļautas
|
||||||
@ -895,8 +895,8 @@ Audit=Revīzija
|
|||||||
InfoDolibarr=Infos Dolibarr
|
InfoDolibarr=Infos Dolibarr
|
||||||
InfoOS=Infos OS
|
InfoOS=Infos OS
|
||||||
InfoWebServer=Infos tīmekļa serveris
|
InfoWebServer=Infos tīmekļa serveris
|
||||||
InfoDatabase=Infos datu bāzes
|
InfoDatabase=Datubāzes informācija
|
||||||
InfoPHP=Infos PHP
|
InfoPHP=PHP Informācija
|
||||||
InfoPerf=Infos izrādes
|
InfoPerf=Infos izrādes
|
||||||
ListEvents=Audita notikumi
|
ListEvents=Audita notikumi
|
||||||
ListOfSecurityEvents=Saraksts Dolibarr drošības pasākumu
|
ListOfSecurityEvents=Saraksts Dolibarr drošības pasākumu
|
||||||
@ -964,7 +964,7 @@ ProxyDesc=Dažas Dolibarr funkcijas ir nepieciešama piekļuve internetam, lai s
|
|||||||
ExternalAccess=Ārējās piekļuves
|
ExternalAccess=Ārējās piekļuves
|
||||||
MAIN_PROXY_USE=Izmantot starpniekserveri (citādi tieša piekļuve internetam)
|
MAIN_PROXY_USE=Izmantot starpniekserveri (citādi tieša piekļuve internetam)
|
||||||
MAIN_PROXY_HOST=Nosaukums / adrese proxy serveri
|
MAIN_PROXY_HOST=Nosaukums / adrese proxy serveri
|
||||||
MAIN_PROXY_PORT=Osta proxy serveri
|
MAIN_PROXY_PORT=Proxy servera ports
|
||||||
MAIN_PROXY_USER=Pieslēdzies, lai izmantotu starpniekserveri
|
MAIN_PROXY_USER=Pieslēdzies, lai izmantotu starpniekserveri
|
||||||
MAIN_PROXY_PASS=Parole, lai izmantotu starpniekserveri
|
MAIN_PROXY_PASS=Parole, lai izmantotu starpniekserveri
|
||||||
DefineHereComplementaryAttributes=Definēt šeit visi atribūti, jau nav pieejama pēc noklusējuma, un, ka jūs vēlaties būt atbalstīta %s.
|
DefineHereComplementaryAttributes=Definēt šeit visi atribūti, jau nav pieejama pēc noklusējuma, un, ka jūs vēlaties būt atbalstīta %s.
|
||||||
@ -1017,7 +1017,7 @@ GeneratePassword=Ieteikt ģenerēto paroli
|
|||||||
RuleForGeneratedPasswords=Noteikums, lai radītu piedāvātos paroles vai apstiprināt paroles
|
RuleForGeneratedPasswords=Noteikums, lai radītu piedāvātos paroles vai apstiprināt paroles
|
||||||
DoNotSuggest=Neliecina jebkuru paroli
|
DoNotSuggest=Neliecina jebkuru paroli
|
||||||
EncryptedPasswordInDatabase=Lai ļautu šifrēšanas paroles datu bāzē
|
EncryptedPasswordInDatabase=Lai ļautu šifrēšanas paroles datu bāzē
|
||||||
DisableForgetPasswordLinkOnLogonPage=Neparāda uz saites "Aizmirsi paroli" uz pieteikšanās lapu
|
DisableForgetPasswordLinkOnLogonPage=Nerādīt saiti "Aizmirsu paroli" pieteikšanās lapā
|
||||||
UsersSetup=Lietotāji modulis uzstādīšana
|
UsersSetup=Lietotāji modulis uzstādīšana
|
||||||
UserMailRequired=E-Mail nepieciešams, lai izveidotu jaunu lietotāju
|
UserMailRequired=E-Mail nepieciešams, lai izveidotu jaunu lietotāju
|
||||||
##### Company setup #####
|
##### Company setup #####
|
||||||
@ -1046,7 +1046,7 @@ WebCalNoByDefault=Pēc pieprasījuma (nav pēc noklusējuma)
|
|||||||
WebCalNever=Nekad
|
WebCalNever=Nekad
|
||||||
WebCalURL=URL kalendāra piekļuvi
|
WebCalURL=URL kalendāra piekļuvi
|
||||||
WebCalServer=Servera hosting kalendārs datu bāzes
|
WebCalServer=Servera hosting kalendārs datu bāzes
|
||||||
WebCalDatabaseName=Datu bāzes nosaukums
|
WebCalDatabaseName=Datubāzes nosaukums
|
||||||
WebCalUser=Lietotājam, lai piekļūtu datu bāzes
|
WebCalUser=Lietotājam, lai piekļūtu datu bāzes
|
||||||
WebCalSetupSaved=WebCalendar uzstādīšana ir veiksmīgi saglabāta.
|
WebCalSetupSaved=WebCalendar uzstādīšana ir veiksmīgi saglabāta.
|
||||||
WebCalTestOk=Savienojums ar serveri "%s" par datu bāzē "%s" ar lietotāja %s "sekmīgi pabeigta.
|
WebCalTestOk=Savienojums ar serveri "%s" par datu bāzē "%s" ar lietotāja %s "sekmīgi pabeigta.
|
||||||
@ -1063,7 +1063,7 @@ WebCalUrlForVCalExport=Eksporta saite uz <b>%s</b> formātā ir pieejams šādā
|
|||||||
WebCalCheckWebcalSetup=Varbūt webcal modulis uzstādīšana nav pareizs.
|
WebCalCheckWebcalSetup=Varbūt webcal modulis uzstādīšana nav pareizs.
|
||||||
##### Invoices #####
|
##### Invoices #####
|
||||||
BillsSetup=Rēķini modulis uzstādīšana
|
BillsSetup=Rēķini modulis uzstādīšana
|
||||||
BillsDate=Rēķini datumu
|
BillsDate=Rēķinu datums
|
||||||
BillsNumberingModule=Rēķini un kredīta piezīmes numerācijas modeli
|
BillsNumberingModule=Rēķini un kredīta piezīmes numerācijas modeli
|
||||||
BillsPDFModules=Rēķina dokumenti modeļi
|
BillsPDFModules=Rēķina dokumenti modeļi
|
||||||
CreditNoteSetup=Kredītu piezīme modulis uzstādīšana
|
CreditNoteSetup=Kredītu piezīme modulis uzstādīšana
|
||||||
@ -1138,8 +1138,8 @@ LDAPSynchronizeContacts=Organizēšana kontaktu LDAP
|
|||||||
LDAPSynchronizeMembers=Organizēšana Fonda locekļu LDAP
|
LDAPSynchronizeMembers=Organizēšana Fonda locekļu LDAP
|
||||||
LDAPTypeExample=OpenLDAP, eGroupware vai Active Directory
|
LDAPTypeExample=OpenLDAP, eGroupware vai Active Directory
|
||||||
LDAPPrimaryServer=Galvenais serveris
|
LDAPPrimaryServer=Galvenais serveris
|
||||||
LDAPSecondaryServer=Sekundārā servera
|
LDAPSecondaryServer=Sekundārais serveris
|
||||||
LDAPServerPort=Porta
|
LDAPServerPort=Servera ports
|
||||||
LDAPServerPortExample=Noklusējuma ports: 389
|
LDAPServerPortExample=Noklusējuma ports: 389
|
||||||
LDAPServerProtocolVersion=Protokols versija
|
LDAPServerProtocolVersion=Protokols versija
|
||||||
LDAPServerUseTLS=Izmantot TLS
|
LDAPServerUseTLS=Izmantot TLS
|
||||||
|
|||||||
@ -6,7 +6,7 @@ Agenda= Darba kārtība
|
|||||||
Agendas= Darba kārtība
|
Agendas= Darba kārtība
|
||||||
Calendar= Kalendārs
|
Calendar= Kalendārs
|
||||||
Calendars= Kalendāri
|
Calendars= Kalendāri
|
||||||
LocalAgenda=Vietējā kalendārs
|
LocalAgenda=Lokālais kalendārs
|
||||||
AffectedTo= Piešķirts
|
AffectedTo= Piešķirts
|
||||||
DoneBy= Izdarīt
|
DoneBy= Izdarīt
|
||||||
Events= Pasākumi
|
Events= Pasākumi
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# Dolibarr language file - Source file is en_US - boxes
|
# Dolibarr language file - Source file is en_US - boxes
|
||||||
BoxLastRssInfos=RSS informācija
|
BoxLastRssInfos=RSS informācija
|
||||||
BoxLastProducts=Pēdējās %s produkti / pakalpojumi
|
BoxLastProducts=Pēdējie %s produkti / pakalpojumi
|
||||||
BoxProductsAlertStock=Produkti pārdošanā brīdinājumu
|
BoxProductsAlertStock=Produkti pārdošanā brīdinājumu
|
||||||
BoxLastProductsInContract=Pēdējās %s līgumi produktu / pakalpojumu
|
BoxLastProductsInContract=Pēdējās %s līgumi produktu / pakalpojumu
|
||||||
BoxLastSupplierBills=Pagājušā piegādātāja rēķinus
|
BoxLastSupplierBills=Pagājušā piegādātāja rēķinus
|
||||||
@ -26,7 +26,7 @@ BoxTitleLastBooks=Pēdējās %s ierakstītas grāmatas
|
|||||||
BoxTitleNbOfCustomers=Klientu skaits
|
BoxTitleNbOfCustomers=Klientu skaits
|
||||||
BoxTitleLastRssInfos=Pēdējo reizi %s ziņas no %s
|
BoxTitleLastRssInfos=Pēdējo reizi %s ziņas no %s
|
||||||
BoxTitleLastProducts=Pēdējās %s modificēta produktu / pakalpojumu
|
BoxTitleLastProducts=Pēdējās %s modificēta produktu / pakalpojumu
|
||||||
BoxTitleProductsAlertStock=Produkti pārdošanā brīdinājumu
|
BoxTitleProductsAlertStock=Produktu un krājumu brīdinājumi
|
||||||
BoxTitleLastCustomerOrders=Pēdējās %s modificēts klientu pasūtījumus
|
BoxTitleLastCustomerOrders=Pēdējās %s modificēts klientu pasūtījumus
|
||||||
BoxTitleLastSuppliers=Pēdējās %s reģistrēti piegādātāji
|
BoxTitleLastSuppliers=Pēdējās %s reģistrēti piegādātāji
|
||||||
BoxTitleLastCustomers=Pēdējās %s ierakstītas klientiem
|
BoxTitleLastCustomers=Pēdējās %s ierakstītas klientiem
|
||||||
|
|||||||
@ -1,15 +1,15 @@
|
|||||||
# Language file - Source file is en_US - cashdesk
|
# Language file - Source file is en_US - cashdesk
|
||||||
CashDeskMenu=Tirdzniecības vietā
|
CashDeskMenu=Tirdzniecības vieta
|
||||||
CashDesk=Tirdzniecības vietā
|
CashDesk=Tirdzniecības vieta
|
||||||
CashDesks=Punktu pārdošanas
|
CashDesks=Tirdzniecības vietas
|
||||||
CashDeskBank=Bankas konts
|
CashDeskBank=Bankas konts
|
||||||
CashDeskBankCash=Bankas konts (naudas)
|
CashDeskBankCash=Bankas konts (skaidra nauda)
|
||||||
CashDeskBankCB=Bankas konts (karte)
|
CashDeskBankCB=Bankas konts (karte)
|
||||||
CashDeskBankCheque=Bankas konts (pārbaude)
|
CashDeskBankCheque=Bankas konts (čeks)
|
||||||
CashDeskWarehouse=Noliktava
|
CashDeskWarehouse=Noliktava
|
||||||
CashdeskShowServices=Pārdošanas pakalpojumi
|
CashdeskShowServices=Pārdošanas pakalpojumi
|
||||||
CashDeskProducts=Produkti
|
CashDeskProducts=Produkti
|
||||||
CashDeskStock=Krājums
|
CashDeskStock=Krājumi
|
||||||
CashDeskOn=uz
|
CashDeskOn=uz
|
||||||
CashDeskThirdParty=Trešās puses
|
CashDeskThirdParty=Trešās puses
|
||||||
CashdeskDashboard=Tirdzniecības vietu piekļuvi
|
CashdeskDashboard=Tirdzniecības vietu piekļuvi
|
||||||
|
|||||||
@ -1,38 +1,38 @@
|
|||||||
# Dolibarr language file - Source file is en_US - companies
|
# Dolibarr language file - Source file is en_US - companies
|
||||||
ErrorCompanyNameAlreadyExists=Uzņēmuma nosaukums %s jau pastāv. Izvēlieties citu.
|
ErrorCompanyNameAlreadyExists=Uzņēmuma nosaukums %s jau pastāv. Izvēlieties citu.
|
||||||
ErrorPrefixAlreadyExists=Prefikss %s jau pastāv. Izvēlieties citu.
|
ErrorPrefixAlreadyExists=Prefikss %s jau pastāv. Izvēlieties citu.
|
||||||
ErrorSetACountryFirst=Iestatītu valsti vispirms
|
ErrorSetACountryFirst=Izvēlieties vispirms valsti
|
||||||
SelectThirdParty=Izvēlieties trešo personu
|
SelectThirdParty=Izvēlieties trešo pusi
|
||||||
DeleteThirdParty=Dzēst trešo pusi
|
DeleteThirdParty=Dzēst trešo pusi
|
||||||
ConfirmDeleteCompany=Vai tiešām vēlaties dzēst šo uzņēmumu un visu mantoto informāciju?
|
ConfirmDeleteCompany=Vai tiešām vēlaties dzēst šo uzņēmumu un visu informāciju, kas saistīta ar to?
|
||||||
DeleteContact=Izdzēstu kontaktu / adrese
|
DeleteContact=Izdzēst kontaktu / adresi
|
||||||
ConfirmDeleteContact=Vai tiešām vēlaties dzēst šo kontaktu un visu mantoto informāciju?
|
ConfirmDeleteContact=Vai tiešām vēlaties dzēst šo kontaktu un visu informāciju par šo kontaktu?
|
||||||
MenuNewThirdParty=Jauns trešā persona
|
MenuNewThirdParty=Jauna trešā persona
|
||||||
MenuNewCompany=Jauns uzņēmums
|
MenuNewCompany=Jauns uzņēmums
|
||||||
MenuNewCustomer=Jauns klients
|
MenuNewCustomer=Jauns klients
|
||||||
MenuNewProspect=Jauns izredzes
|
MenuNewProspect=Jauns izredzes
|
||||||
MenuNewSupplier=Jauns piegādātājs
|
MenuNewSupplier=Jauns piegādātājs
|
||||||
MenuNewPrivateIndividual=Jauns privātpersona
|
MenuNewPrivateIndividual=Jauna privātpersona
|
||||||
MenuSocGroup=Grupas
|
MenuSocGroup=Grupas
|
||||||
NewCompany=Jaunu uzņēmumu (prospekts, klients, piegādātājs)
|
NewCompany=Jauns uzņēmums (prospekts, klients, piegādātājs)
|
||||||
NewThirdParty=Jauns trešā persona (prospekts, klients, piegādātājs)
|
NewThirdParty=Jauns trešā persona (prospekts, klients, piegādātājs)
|
||||||
NewSocGroup=Jaunu uzņēmumu grupā
|
NewSocGroup=Jauna uzņēmumu grupa
|
||||||
NewPrivateIndividual=Jauns privātpersona (prospekts, klients, piegādātājs)
|
NewPrivateIndividual=Jauna privātpersona (prospekts, klients, piegādātājs)
|
||||||
ProspectionArea=Ogļūdeņražu meklēšanai platība
|
ProspectionArea=Ogļūdeņražu meklēšanai platība
|
||||||
SocGroup=Uzņēmumu grupa
|
SocGroup=Uzņēmumu grupa
|
||||||
IdThirdParty=Id trešā persona
|
IdThirdParty=Trešās personas Id
|
||||||
IdCompany=Uzņēmuma Id
|
IdCompany=Uzņēmuma Id
|
||||||
IdContact=Sazinieties ar ID
|
IdContact=Sazinieties ar ID
|
||||||
Contacts=Kontakti / adreses
|
Contacts=Kontaktu / adreses
|
||||||
ThirdPartyContacts=Trešās puses kontakti
|
ThirdPartyContacts=Trešās puses kontakti
|
||||||
ThirdPartyContact=Trešās puses kontakts / adrese
|
ThirdPartyContact=Trešās puses kontakts / adrese
|
||||||
StatusContactValidated=Statuss kontakta / adreses
|
StatusContactValidated=Statuss kontakta / adreses
|
||||||
Company=Kompānija
|
Company=Uzņēmums
|
||||||
CompanyName=Uzņēmuma nosaukums
|
CompanyName=Uzņēmuma nosaukums
|
||||||
Companies=Uzņēmumi
|
Companies=Uzņēmumi
|
||||||
CountryIsInEEC=Valsts ir iekšā Eiropas Ekonomikas kopienas
|
CountryIsInEEC=Valsts ir Eiropas Ekonomikas kopienas dalībvalsts
|
||||||
ThirdPartyName=Trešās puses nosaukums
|
ThirdPartyName=Trešās puses nosaukums
|
||||||
ThirdParty=Trešās puses
|
ThirdParty=Trešā puse
|
||||||
ThirdParties=Trešās personas
|
ThirdParties=Trešās personas
|
||||||
ThirdPartyAll=Trešās personas (viss)
|
ThirdPartyAll=Trešās personas (viss)
|
||||||
ThirdPartyProspects=Perspektīvas
|
ThirdPartyProspects=Perspektīvas
|
||||||
@ -44,11 +44,11 @@ ThirdPartySuppliers=Piegādātāji
|
|||||||
ThirdPartyType=Trešās puses tips
|
ThirdPartyType=Trešās puses tips
|
||||||
Company/Fundation=Kompānija / Foundation
|
Company/Fundation=Kompānija / Foundation
|
||||||
Individual=Privātpersona
|
Individual=Privātpersona
|
||||||
ToCreateContactWithSameName=Radīs automātiski fizisku kontaktu ar pašu informations
|
ToCreateContactWithSameName=Izveidos automātiski kontaktu ar šo pašu informāciju
|
||||||
ParentCompany=Mātes uzņēmumam
|
ParentCompany=Mātes uzņēmumam
|
||||||
Subsidiary=Filiāle
|
Subsidiary=Filiāle
|
||||||
Subsidiaries=Meitas uzņēmumi
|
Subsidiaries=Filiāles
|
||||||
NoSubsidiary=Nav meitas
|
NoSubsidiary=Nav filiāles
|
||||||
ReportByCustomers=Ziņojums, ko klienti
|
ReportByCustomers=Ziņojums, ko klienti
|
||||||
ReportByQuarter=Ziņojums pēc kursa
|
ReportByQuarter=Ziņojums pēc kursa
|
||||||
CivilityCode=Pieklājība kods
|
CivilityCode=Pieklājība kods
|
||||||
@ -58,7 +58,7 @@ Lastname=Uzvārds
|
|||||||
Firstname=Vārds
|
Firstname=Vārds
|
||||||
PostOrFunction=Post / Funkcija
|
PostOrFunction=Post / Funkcija
|
||||||
UserTitle=Virsraksts
|
UserTitle=Virsraksts
|
||||||
Surname=Uzvārds / Pseido
|
Surname=Uzvārds / Pseidonīms
|
||||||
Address=Adrese
|
Address=Adrese
|
||||||
State=Valsts / province
|
State=Valsts / province
|
||||||
Region=Rajons
|
Region=Rajons
|
||||||
@ -68,19 +68,19 @@ CountryId=Valsts id
|
|||||||
Phone=Telefons
|
Phone=Telefons
|
||||||
Skype=Skype
|
Skype=Skype
|
||||||
Call=Zvanīt
|
Call=Zvanīt
|
||||||
PhonePro=Prof tālrunis
|
PhonePro=Darba tālrunis
|
||||||
PhonePerso=Pers. telefons
|
PhonePerso=Pers. telefons
|
||||||
PhoneMobile=Mobils
|
PhoneMobile=Mobilais
|
||||||
No_Email=Nesūtiet masu e-pasta sūtījumi
|
No_Email=Nesūtīt masu e-pasta sūtījumus
|
||||||
Fax=Faksa
|
Fax=Fakss
|
||||||
Zip=Pasta indekss
|
Zip=Pasta indekss
|
||||||
Town=Pilsēta
|
Town=Pilsēta
|
||||||
Web=Web
|
Web=Mājaslapa
|
||||||
Poste= Amats
|
Poste= Amats
|
||||||
DefaultLang=Valoda pēc noklusējuma
|
DefaultLang=Valoda pēc noklusējuma
|
||||||
VATIsUsed=PVN tiek izmantots
|
VATIsUsed=PVN tiek izmantots
|
||||||
VATIsNotUsed=PVN netiek izmantots
|
VATIsNotUsed=PVN netiek izmantots
|
||||||
CopyAddressFromSoc=Aizpildiet adresi thirdparty adresi
|
CopyAddressFromSoc=Aizpildiet trešās puses adresi
|
||||||
##### Local Taxes #####
|
##### Local Taxes #####
|
||||||
LocalTax1IsUsedES= RE tiek izmantota
|
LocalTax1IsUsedES= RE tiek izmantota
|
||||||
LocalTax1IsNotUsedES= RE netiek izmantots
|
LocalTax1IsNotUsedES= RE netiek izmantots
|
||||||
@ -230,9 +230,9 @@ ProfId6RU=-
|
|||||||
VATIntra=PVN numurs
|
VATIntra=PVN numurs
|
||||||
VATIntraShort=PVN numurs
|
VATIntraShort=PVN numurs
|
||||||
VATIntraVeryShort=PVN
|
VATIntraVeryShort=PVN
|
||||||
VATIntraSyntaxIsValid=Sintakse ir derīgs
|
VATIntraSyntaxIsValid=Sintakse ir pareiza
|
||||||
VATIntraValueIsValid=Vērtība ir derīga
|
VATIntraValueIsValid=Vērtība ir pareizas
|
||||||
ProspectCustomer=Prospect / Klientu
|
ProspectCustomer=Prospect / Klients
|
||||||
Prospect=Perspektīva
|
Prospect=Perspektīva
|
||||||
CustomerCard=Klienta karte
|
CustomerCard=Klienta karte
|
||||||
Customer=Klients
|
Customer=Klients
|
||||||
@ -256,21 +256,21 @@ CompanyList=Kompānijas sarakstā
|
|||||||
AddContact=Pievienot kontaktu
|
AddContact=Pievienot kontaktu
|
||||||
AddContactAddress=Pievienot kontaktu / adrese
|
AddContactAddress=Pievienot kontaktu / adrese
|
||||||
EditContact=Labot kontaktu
|
EditContact=Labot kontaktu
|
||||||
EditContactAddress=Labot kontaktu / adrese
|
EditContactAddress=Labot kontakta / adresi
|
||||||
Contact=Sazināties
|
Contact=Sazināties
|
||||||
ContactsAddresses=Kontakti / adreses
|
ContactsAddresses=Kontakti / adreses
|
||||||
NoContactDefinedForThirdParty=Nav kontakta definēts šīs trešās personas
|
NoContactDefinedForThirdParty=Nav kontakta definēts šīs trešās personas
|
||||||
NoContactDefined=Nav kontakta definēts
|
NoContactDefined=Nav kontakta definēts
|
||||||
DefaultContact=Default kontakta / adrese
|
DefaultContact=Default kontakta / adrese
|
||||||
AddCompany=Pievienot uzņēmumu
|
AddCompany=Pievienot uzņēmumu
|
||||||
AddThirdParty=Pievienot trešo personu
|
AddThirdParty=Pievienot trešo pusi
|
||||||
DeleteACompany=Dzēst uzņēmumu
|
DeleteACompany=Dzēst uzņēmumu
|
||||||
PersonalInformations=Personas dati
|
PersonalInformations=Personas dati
|
||||||
AccountancyCode=Grāmatvedība kods
|
AccountancyCode=Grāmatvedība kods
|
||||||
CustomerCode=Klienta kods
|
CustomerCode=Klienta kods
|
||||||
SupplierCode=Piegādātājs kods
|
SupplierCode=Piegādātāja kods
|
||||||
CustomerAccount=Klienta konta
|
CustomerAccount=Klienta konts
|
||||||
SupplierAccount=Piegādātājs kontu
|
SupplierAccount=Piegādātāja konts
|
||||||
CustomerCodeDesc=Klienta kods, unikāls visiem klientiem
|
CustomerCodeDesc=Klienta kods, unikāls visiem klientiem
|
||||||
SupplierCodeDesc=Piegādātājs kods, unikāli visiem piegādātājiem
|
SupplierCodeDesc=Piegādātājs kods, unikāli visiem piegādātājiem
|
||||||
RequiredIfCustomer=Nepieciešams, ja trešā puse ir klients vai izredzes
|
RequiredIfCustomer=Nepieciešams, ja trešā puse ir klients vai izredzes
|
||||||
@ -289,7 +289,7 @@ ListOfCompanies=Uzņēmumu sarakstu
|
|||||||
ListOfThirdParties=Saraksts ar trešajām personām
|
ListOfThirdParties=Saraksts ar trešajām personām
|
||||||
ShowCompany=Rādīt uzņēmumu
|
ShowCompany=Rādīt uzņēmumu
|
||||||
ShowContact=Rādīt sazināties
|
ShowContact=Rādīt sazināties
|
||||||
ContactsAllShort=Visas (Nr. filtrs)
|
ContactsAllShort=Visi (Bez filtra)
|
||||||
ContactType=Sazinieties tipa
|
ContactType=Sazinieties tipa
|
||||||
ContactForOrders=Ordeņa kontakts
|
ContactForOrders=Ordeņa kontakts
|
||||||
ContactForProposals=Priekšlikuma kontakts
|
ContactForProposals=Priekšlikuma kontakts
|
||||||
@ -314,7 +314,7 @@ VATIntraCheckDesc=Saite <b>%s</b> ļauj lūgt Eiropas PVN pārbaudītājs pakalp
|
|||||||
VATIntraCheckURL=http://ec.europa.eu/taxation_customs/vies/vieshome.do
|
VATIntraCheckURL=http://ec.europa.eu/taxation_customs/vies/vieshome.do
|
||||||
VATIntraCheckableOnEUSite=Pārbaudiet Intracomunnautary PVN par Eiropas komisijā vietas
|
VATIntraCheckableOnEUSite=Pārbaudiet Intracomunnautary PVN par Eiropas komisijā vietas
|
||||||
VATIntraManualCheck=Jūs varat arī pārbaudīt manuāli no eiropas mājas lapas <a href="%s" target="_blank">%s</a>
|
VATIntraManualCheck=Jūs varat arī pārbaudīt manuāli no eiropas mājas lapas <a href="%s" target="_blank">%s</a>
|
||||||
ErrorVATCheckMS_UNAVAILABLE=Pārbaudiet nav iespējams. Pārbaudiet pakalpojums netiek nodrošināts ar dalībvalsts (%s).
|
ErrorVATCheckMS_UNAVAILABLE=Pārbaude nav iespējams. Pārbaudes pakalpojums netiek nodrošināts no dalībvalsts (%s).
|
||||||
NorProspectNorCustomer=Tāpat arī izredzes, ne klientu
|
NorProspectNorCustomer=Tāpat arī izredzes, ne klientu
|
||||||
JuridicalStatus=Juridiskais statuss
|
JuridicalStatus=Juridiskais statuss
|
||||||
Staff=Personāls
|
Staff=Personāls
|
||||||
@ -334,10 +334,10 @@ TE_UNKNOWN=-
|
|||||||
TE_STARTUP=Starta
|
TE_STARTUP=Starta
|
||||||
TE_GROUP=Liels uzņēmums
|
TE_GROUP=Liels uzņēmums
|
||||||
TE_MEDIUM=Vidēja uzņēmums
|
TE_MEDIUM=Vidēja uzņēmums
|
||||||
TE_ADMIN=Valdības
|
TE_ADMIN=Valsts iestāde
|
||||||
TE_SMALL=Mazs uzņēmums
|
TE_SMALL=Mazs uzņēmums
|
||||||
TE_RETAIL=Mazumtirgotājs
|
TE_RETAIL=Mazumtirgotājs
|
||||||
TE_WHOLE=Wholetailer
|
TE_WHOLE=Vairumtrirgotājs
|
||||||
TE_PRIVATE=Privātpersona
|
TE_PRIVATE=Privātpersona
|
||||||
TE_OTHER=Cits
|
TE_OTHER=Cits
|
||||||
StatusProspect-1=Nesazināties
|
StatusProspect-1=Nesazināties
|
||||||
@ -352,8 +352,8 @@ ChangeContactInProcess=Mainīt statusu uz "Kontaktēties procesā"
|
|||||||
ChangeContactDone=Mainīt statusu uz "Kontaktēties jādara"
|
ChangeContactDone=Mainīt statusu uz "Kontaktēties jādara"
|
||||||
ProspectsByStatus=Perspektīvas pēc statusa
|
ProspectsByStatus=Perspektīvas pēc statusa
|
||||||
BillingContact=Norēķinu kontakts
|
BillingContact=Norēķinu kontakts
|
||||||
NbOfAttachedFiles=Skaits pievienotos failus
|
NbOfAttachedFiles=Pievienoto failu skaits
|
||||||
AttachANewFile=Pievienojiet jaunu failu
|
AttachANewFile=Pievienot jaunu failu
|
||||||
NoRIB=Nav noteikts BAN
|
NoRIB=Nav noteikts BAN
|
||||||
NoParentCompany=Neviens
|
NoParentCompany=Neviens
|
||||||
ExportImport=Import-Export
|
ExportImport=Import-Export
|
||||||
@ -372,7 +372,7 @@ DeliveryAddress=Piegādes adrese
|
|||||||
DeliveryAddressLabel=Piegādes adrese etiķete
|
DeliveryAddressLabel=Piegādes adrese etiķete
|
||||||
DeleteDeliveryAddress=Dzēst piegādes adresi
|
DeleteDeliveryAddress=Dzēst piegādes adresi
|
||||||
ConfirmDeleteDeliveryAddress=Vai tiešām vēlaties dzēst šo piegādes adresi?
|
ConfirmDeleteDeliveryAddress=Vai tiešām vēlaties dzēst šo piegādes adresi?
|
||||||
NewDeliveryAddress=Jauns piegādes adrese
|
NewDeliveryAddress=Jauna piegādes adrese
|
||||||
AddDeliveryAddress=Pievienot adresi
|
AddDeliveryAddress=Pievienot adresi
|
||||||
AddAddress=Pievienot adresi
|
AddAddress=Pievienot adresi
|
||||||
NoOtherDeliveryAddress=Nav alternatīvu piegādes definēts adrese
|
NoOtherDeliveryAddress=Nav alternatīvu piegādes definēts adrese
|
||||||
@ -380,15 +380,15 @@ SupplierCategory=Piegādātājs kategorija
|
|||||||
JuridicalStatus200=Neatkarīga
|
JuridicalStatus200=Neatkarīga
|
||||||
DeleteFile=Izdzēst failu
|
DeleteFile=Izdzēst failu
|
||||||
ConfirmDeleteFile=Vai jūs tiešām vēlaties izdzēst šo failu?
|
ConfirmDeleteFile=Vai jūs tiešām vēlaties izdzēst šo failu?
|
||||||
AllocateCommercial=Piešķirts pārdošanas pārstāvis
|
AllocateCommercial=Piešķirts pārdošanas pārstāvim
|
||||||
SelectCountry=Izvēlēties valsti
|
SelectCountry=Izvēlieties valsti
|
||||||
SelectCompany=Izvēlieties trešo personu
|
SelectCompany=Izvēlieties trešo personu
|
||||||
Organization=Organizēšana
|
Organization=Organizēšana
|
||||||
AutomaticallyGenerated=Automātiski ģenerē
|
AutomaticallyGenerated=Automātiski ģenerēts
|
||||||
FiscalYearInformation=Informācija par fiskālajā gadā
|
FiscalYearInformation=Informācija par fiskālo gadu
|
||||||
FiscalMonthStart=Sākot mēnesis fiskālajā gadā
|
FiscalMonthStart=Fiskālā gada pirmais mēnesis
|
||||||
YouMustCreateContactFirst=Jums ir izveidot e-pastus kontaktus trešās puses vispirms, lai varētu pievienot e-pastus paziņojumus.
|
YouMustCreateContactFirst=Jums ir izveidot e-pastus kontaktus trešās puses vispirms, lai varētu pievienot e-pastus paziņojumus.
|
||||||
ListSuppliersShort=Piegādātāju
|
ListSuppliersShort=Piegādātāju saraksts
|
||||||
ListProspectsShort=Saraksts perspektīvas
|
ListProspectsShort=Saraksts perspektīvas
|
||||||
ListCustomersShort=Klientu saraksts
|
ListCustomersShort=Klientu saraksts
|
||||||
ThirdPartiesArea=Trešām pusēm platība
|
ThirdPartiesArea=Trešām pusēm platība
|
||||||
@ -397,9 +397,9 @@ UniqueThirdParties=Kopā unikālu trešajām personām
|
|||||||
InActivity=Atvērt
|
InActivity=Atvērt
|
||||||
ActivityCeased=Slēgts
|
ActivityCeased=Slēgts
|
||||||
ActivityStateFilter=Aktivitātes statuss
|
ActivityStateFilter=Aktivitātes statuss
|
||||||
ProductsIntoElements=To produktu saraksts, uz
|
ProductsIntoElements=Produktu saraksts uz
|
||||||
OutstandingBill=Maks. par izcilu rēķinu
|
OutstandingBill=Maks. par izcilu rēķinu
|
||||||
# Monkey
|
# Monkey
|
||||||
MonkeyNumRefModelDesc=Atgriešanās Numero ar formātu %syymm-NNNN par klientu kodu un %syymm-NNNN forsupplier kodu, kur gg ir gads, MM ir mēnesis, un nnnn ir secība bez pārtraukuma un bez atgriezties 0.
|
MonkeyNumRefModelDesc=Atgriešanās Numero ar formātu %syymm-NNNN par klientu kodu un %syymm-NNNN forsupplier kodu, kur gg ir gads, MM ir mēnesis, un nnnn ir secība bez pārtraukuma un bez atgriezties 0.
|
||||||
# Leopard
|
# Leopard
|
||||||
LeopardNumRefModelDesc=Kods ir bez maksas. Šis kods var grozīt jebkurā laikā.
|
LeopardNumRefModelDesc=Kods ir bez maksas. Šo kodu var mainīt jebkurā laikā.
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
# Dolibarr language file - Source file is en_US - externalsite
|
# Dolibarr language file - Source file is en_US - externalsite
|
||||||
ExternalSiteSetup=Setup saite uz ārējo vietni
|
ExternalSiteSetup=Ārējo vietņu iestatīšana
|
||||||
ExternalSiteURL=Ārējā Vietnes URL
|
ExternalSiteURL=Ārējā Vietnes URL
|
||||||
ExternalSiteModuleNotComplete=Modulis ExternalSite nebija pareizi konfigurēts.
|
ExternalSiteModuleNotComplete=Modulis ExternalSite nav pareizi konfigurēts.
|
||||||
|
|||||||
@ -1,12 +1,12 @@
|
|||||||
# Dolibarr language file - Source file is en_US - ftp
|
# Dolibarr language file - Source file is en_US - ftp
|
||||||
FTPClientSetup=FTP Client modulis iestatīšana
|
FTPClientSetup=FTP Klienta moduļa iestatīšana
|
||||||
NewFTPClient=Jauns FTP savienojumu iestatīšana
|
NewFTPClient=Jauna FTP savienojuma iestatīšana
|
||||||
FTPArea=FTP vieta
|
FTPArea=FTP sadaļa
|
||||||
FTPAreaDesc=Šis ekrāns parādīs saturu FTP servera skatu
|
FTPAreaDesc=Šis logs attēlo FTP servera saturu
|
||||||
SetupOfFTPClientModuleNotComplete=Setup FTP klienta modulis, šķiet, nav pabeigta
|
SetupOfFTPClientModuleNotComplete=FTP klienta moduļa konfigurēšana, nav pabeigta
|
||||||
FTPFeatureNotSupportedByYourPHP=Jūsu PHP neatbalsta FTP funkcijas
|
FTPFeatureNotSupportedByYourPHP=Jūsu PHP neatbalsta FTP funkciju
|
||||||
FailedToConnectToFTPServer=Neizdevās izveidot savienojumu ar FTP serveri (servera %s, ostu %s)
|
FailedToConnectToFTPServer=Neizdevās izveidot savienojumu ar FTP serveri (serveris %s, posts %s)
|
||||||
FailedToConnectToFTPServerWithCredentials=Neizdevās, lai pieteiktos uz FTP serveri ar noteiktu login / paroli
|
FailedToConnectToFTPServerWithCredentials=Neizdevās pieslēgties FTP serverim ar norādīto lietotāju / paroli
|
||||||
FTPFailedToRemoveFile=Neizdevās noņemt failu <b>%s.</b>
|
FTPFailedToRemoveFile=Neizdevās noņemt failu <b>%s.</b>
|
||||||
FTPFailedToRemoveDir=Neizdevās noņemt direktoriju <b>%s</b> (Pārbaudiet atļaujas un tas katalogs ir tukša).
|
FTPFailedToRemoveDir=Neizdevās noņemt direktoriju <b>%s</b> (Pārbaudiet atļaujas un to vai katalogs ir tukšs).
|
||||||
FTPPassiveMode=Pasīvā režīmā
|
FTPPassiveMode=Pasīvais režīms
|
||||||
|
|||||||
@ -1,14 +1,14 @@
|
|||||||
# Dolibarr language file - Source file is en_US - install
|
# Dolibarr language file - Source file is en_US - install
|
||||||
InstallEasy=Vienkārši sekojiet instrukcijām soli pa solim.
|
InstallEasy=Vienkārši sekojiet instrukcijām soli pa solim.
|
||||||
MiscellaneousChecks=Priekšnoteikumi pārbaude
|
MiscellaneousChecks=Priekšnoteikumu pārbaude
|
||||||
DolibarrWelcome=Laipni lūdzam Dolibarr
|
DolibarrWelcome=Laipni lūdzam Dolibarr
|
||||||
ConfFileExists=Konfigurācijas failu <b>%s</b> eksistē.
|
ConfFileExists=Konfigurācijas fails <b>%s</b> eksistē.
|
||||||
ConfFileDoesNotExists=Konfigurācijas failu <b>%s</b> neeksistē!
|
ConfFileDoesNotExists=Konfigurācijas fails <b>%s</b> neeksistē!
|
||||||
ConfFileDoesNotExistsAndCouldNotBeCreated=Konfigurācijas failu <b>%s</b> nav un nevar tikt izveidots!
|
ConfFileDoesNotExistsAndCouldNotBeCreated=Konfigurācijas fails <b>%s</b> nav un nevar tikt izveidots!
|
||||||
ConfFileCouldBeCreated=Konfigurācijas failu <b>%s</b> varētu izveidot.
|
ConfFileCouldBeCreated=Konfigurācijas failu <b>%s</b> nevar izveidot.
|
||||||
ConfFileIsNotWritable=Konfigurācijas fails <b>%s</b> nav rakstāms. Pārbaudiet atļaujas. Par pirmo instalēt, jūsu tīmekļa serveris ir jāpiešķir, lai varētu rakstīt šajā failā laikā konfigurācijas process ("chmod 666", piemēram, uz kā OS UNIX).
|
ConfFileIsNotWritable=Konfigurācijas failam <b>%s</b> nav rakstīšanas tiesības. Pārbaudiet atļaujas. Par pirmo instalēt, jūsu tīmekļa serveris ir jāpiešķir, lai varētu rakstīt šajā failā laikā konfigurācijas process ("chmod 666", piemēram, uz kā OS UNIX).
|
||||||
ConfFileIsWritable=Konfigurācijas fails <b>%s</b> ir rakstāms.
|
ConfFileIsWritable=Konfigurācijas failā <b>%s</b> var ierakstīt.
|
||||||
ConfFileReload=Pārlādēt visu informāciju no konfigurācijas failu.
|
ConfFileReload=Pārlādēt visu informāciju no konfigurācijas faila.
|
||||||
PHPSupportSessions=Šis PHP atbalsta sesijas.
|
PHPSupportSessions=Šis PHP atbalsta sesijas.
|
||||||
PHPSupportPOSTGETOk=Šis PHP atbalsta mainīgie POST un GET.
|
PHPSupportPOSTGETOk=Šis PHP atbalsta mainīgie POST un GET.
|
||||||
PHPSupportPOSTGETKo=Tas ir iespējams, jūsu PHP uzstādīšana neatbalsta mainīgie POST un / vai GET. Pārbaudiet savu parametrs <b>variables_order</b> in php.ini.
|
PHPSupportPOSTGETKo=Tas ir iespējams, jūsu PHP uzstādīšana neatbalsta mainīgie POST un / vai GET. Pārbaudiet savu parametrs <b>variables_order</b> in php.ini.
|
||||||
@ -25,40 +25,40 @@ ErrorGoBackAndCorrectParameters=Iet atpakaļ un labot nepareizus parametrus.
|
|||||||
ErrorWrongValueForParameter=Iespējams, esat ievadījis nepareizu vērtību parametra "%s".
|
ErrorWrongValueForParameter=Iespējams, esat ievadījis nepareizu vērtību parametra "%s".
|
||||||
ErrorFailedToCreateDatabase=Neizdevās izveidot datubāzi '%s ".
|
ErrorFailedToCreateDatabase=Neizdevās izveidot datubāzi '%s ".
|
||||||
ErrorFailedToConnectToDatabase=Neizdevās izveidot savienojumu ar datu bāzi "%s".
|
ErrorFailedToConnectToDatabase=Neizdevās izveidot savienojumu ar datu bāzi "%s".
|
||||||
ErrorDatabaseVersionTooLow=Datu bāzes versija (%s) pārāk vecs. Versija %s vai augstāka ir nepieciešama.
|
ErrorDatabaseVersionTooLow=Datu bāzes versija (%s) pārāk veca. Versija %s vai augstāka ir nepieciešama.
|
||||||
ErrorPHPVersionTooLow=PHP versija ir pārāk veca. Versija %s ir nepieciešama.
|
ErrorPHPVersionTooLow=PHP versija ir pārāk veca. Versija %s ir nepieciešama.
|
||||||
WarningPHPVersionTooLow=PHP versija ir pārāk veca. Versija %s vai vairāk ir sagaidāms. Šī versija ļaus uzstādīt, bet netiek atbalstīta.
|
WarningPHPVersionTooLow=PHP versija ir pārāk veca. Versija %s vai vairāk ir sagaidāms. Šī versija ļaus uzstādīt, bet netiek atbalstīta.
|
||||||
ErrorConnectedButDatabaseNotFound=Savienojums ar serveri sekmīgi pabeigta, bet datubāze "%s" nav atrasts.
|
ErrorConnectedButDatabaseNotFound=Savienojums ar serveri sekmīgi pabeigta, bet datubāze "%s" nav atrasts.
|
||||||
ErrorDatabaseAlreadyExists=Datubāze "%s" jau eksistē.
|
ErrorDatabaseAlreadyExists=Datubāze "%s" jau eksistē.
|
||||||
IfDatabaseNotExistsGoBackAndUncheckCreate=Ja datu bāzē neeksistē, dodieties atpakaļ un pārbaudiet opciju "Izveidot datu bāzi".
|
IfDatabaseNotExistsGoBackAndUncheckCreate=Ja datu bāzē neeksistē, dodieties atpakaļ un pārbaudiet opciju "Izveidot datu bāzi".
|
||||||
IfDatabaseExistsGoBackAndCheckCreate=Ja datu bāze jau pastāv, dodieties atpakaļ un atzīmēšanu "Izveidot datu bāzi" variantu.
|
IfDatabaseExistsGoBackAndCheckCreate=Ja datu bāze jau pastāv, dodieties atpakaļ un izņemiet ķeksi "Izveidot datu bāzi" .
|
||||||
WarningBrowserTooOld=Pārāk vecs versiju. Uzlabot savu pārlūkprogrammu, lai jaunāko versiju Firefox, Chrome vai Opera ir ļoti recommanded.
|
WarningBrowserTooOld=Pārāk vecs versiju. Uzlabot savu pārlūkprogrammu, lai jaunāko versiju Firefox, Chrome vai Opera ir ļoti recommanded.
|
||||||
PHPVersion=PHP versija
|
PHPVersion=PHP versija
|
||||||
YouCanContinue=Jūs varat turpināt ...
|
YouCanContinue=Jūs varat turpināt ...
|
||||||
PleaseBePatient=Lūdzu, esiet pacietīgi ...
|
PleaseBePatient=Lūdzu, esiet pacietīgi ...
|
||||||
License=Izmantojot licenci
|
License=Izmantojot licenci
|
||||||
ConfigurationFile=Konfigurācijas failu
|
ConfigurationFile=Konfigurācijas fails
|
||||||
WebPagesDirectory=Katalogs kur web lapas tiek uzglabāti
|
WebPagesDirectory=Katalogs kur web lapas tiek uzglabātas
|
||||||
DocumentsDirectory=Direktorijā uzglabāt augšupielādēto un rada dokumentus
|
DocumentsDirectory=Direktorijā uzglabāt augšupielādēto un rada dokumentus
|
||||||
URLRoot=URL Root
|
URLRoot=URL Root
|
||||||
ForceHttps=Force drošus savienojumus (https)
|
ForceHttps=Force drošus savienojumus (https)
|
||||||
CheckToForceHttps=Pārbaudiet šo opciju, lai piespiestu drošus savienojumus (https). <br> Tas nozīmē, ka tīmekļa serveris ir konfigurēts ar SSL sertifikātu.
|
CheckToForceHttps=Pārbaudiet šo opciju, lai piespiestu drošus savienojumus (https). <br> Tas nozīmē, ka tīmekļa serveris ir konfigurēts ar SSL sertifikātu.
|
||||||
DolibarrDatabase=Dolibarr datu bāze
|
DolibarrDatabase=Dolibarr datubāze
|
||||||
DatabaseChoice=Datu bāzes izvēle
|
DatabaseChoice=Datubāzes izvēle
|
||||||
DatabaseType=Datu bāzes tips
|
DatabaseType=Datubāzes tips
|
||||||
DriverType=Driver tips
|
DriverType=Driver tips
|
||||||
Server=Serveris
|
Server=Serveris
|
||||||
ServerAddressDescription=Nosaukums vai IP adrese datu bāzes serveri, parasti "localhost", kad datu bāzes serveris ir izvietots uz paša servera, kā web serveri
|
ServerAddressDescription=Nosaukums vai IP adrese datu bāzes serveri, parasti "localhost", kad datu bāzes serveris ir izvietots uz paša servera, kā web serveri
|
||||||
ServerPortDescription=Datu bāzes servera portu. Saglabājiet tukšu, ja nav zināms.
|
ServerPortDescription=Datu bāzes servera ports. Atstājiet tukšu, ja nav zināms.
|
||||||
DatabaseServer=Datu bāzes serveris
|
DatabaseServer=Datubāzes serveris
|
||||||
DatabaseName=Datu bāzes nosaukums
|
DatabaseName=Datubāzes nosaukums
|
||||||
DatabasePrefix=Datu bāzes prefiksu tabula
|
DatabasePrefix=Datubāzes tabulu prefikss
|
||||||
Login=Login
|
Login=Login
|
||||||
AdminLogin=Pieteikšanās uz Dolibarr datu bāzes īpašnieks.
|
AdminLogin=Pieteikšanās uz Dolibarr datu bāzes īpašnieks.
|
||||||
Password=Parole
|
Password=Parole
|
||||||
PasswordAgain=Atkārtot paroli otrreiz
|
PasswordAgain=Atkārtot paroli otrreiz
|
||||||
AdminPassword=Parole Dolibarr datu bāzes īpašnieks.
|
AdminPassword=Parole Dolibarr datu bāzes īpašnieks.
|
||||||
CreateDatabase=Izveidot datu bāzi
|
CreateDatabase=Izveidot datubāzi
|
||||||
CreateUser=Izveidot īpašnieks
|
CreateUser=Izveidot īpašnieks
|
||||||
DatabaseSuperUserAccess=Datu bāzes serveris - superlietotājs piekļuve
|
DatabaseSuperUserAccess=Datu bāzes serveris - superlietotājs piekļuve
|
||||||
CheckToCreateDatabase=Rūtiņu, ja datu bāze neeksistē, un ir izveidots. <br> Tādā gadījumā, jums ir jāaizpilda pieteikšanās / paroli SuperUser kontā pie šīs lapas apakšā.
|
CheckToCreateDatabase=Rūtiņu, ja datu bāze neeksistē, un ir izveidots. <br> Tādā gadījumā, jums ir jāaizpilda pieteikšanās / paroli SuperUser kontā pie šīs lapas apakšā.
|
||||||
@ -84,8 +84,8 @@ PleaseTypePassword=Lūdzu, ievadiet paroli, tukšas paroles ir aizliegts!
|
|||||||
PleaseTypeALogin=Lūdzu ierakstiet pieteikšanās!
|
PleaseTypeALogin=Lūdzu ierakstiet pieteikšanās!
|
||||||
PasswordsMismatch=Paroles atšķiras, lūdzu, mēģiniet vēlreiz!
|
PasswordsMismatch=Paroles atšķiras, lūdzu, mēģiniet vēlreiz!
|
||||||
SetupEnd=Beigas iestatīšanas
|
SetupEnd=Beigas iestatīšanas
|
||||||
SystemIsInstalled=Šī instalācija ir pabeigta.
|
SystemIsInstalled=Instalācija ir pabeigta.
|
||||||
SystemIsUpgraded=Dolibarr ir modernizēta veiksmīgi.
|
SystemIsUpgraded=Dolibarr ir atjaunota veiksmīgi.
|
||||||
YouNeedToPersonalizeSetup=Jums ir nepieciešams, lai konfigurētu Dolibarr, lai atbilstu jūsu vajadzībām (izskats, funkcijas, ...). Lai to izdarītu, lūdzu, sekojiet saitei zemāk:
|
YouNeedToPersonalizeSetup=Jums ir nepieciešams, lai konfigurētu Dolibarr, lai atbilstu jūsu vajadzībām (izskats, funkcijas, ...). Lai to izdarītu, lūdzu, sekojiet saitei zemāk:
|
||||||
AdminLoginCreatedSuccessfuly=Dolibarr Administrator Login <b>"%s"</b> izveidots successfuly.
|
AdminLoginCreatedSuccessfuly=Dolibarr Administrator Login <b>"%s"</b> izveidots successfuly.
|
||||||
GoToDolibarr=Iet uz Dolibarr
|
GoToDolibarr=Iet uz Dolibarr
|
||||||
@ -109,7 +109,7 @@ ProcessMigrateScript=Skripts apstrāde
|
|||||||
ChooseYourSetupMode=Izvēlies savu iestatīšanas režīmu un noklikšķiniet uz "Start" ...
|
ChooseYourSetupMode=Izvēlies savu iestatīšanas režīmu un noklikšķiniet uz "Start" ...
|
||||||
FreshInstall=Svaigi instalēt
|
FreshInstall=Svaigi instalēt
|
||||||
FreshInstallDesc=Izmantojiet šo režīmu, ja tas ir jūsu pirmo reizi instalēt. Ja nē, šis režīms var izlabot nepilnīgu iepriekšējo instalēt, bet, ja jūs vēlaties uzlabot savu versiju, izvēlieties "Upgrade" režīmā.
|
FreshInstallDesc=Izmantojiet šo režīmu, ja tas ir jūsu pirmo reizi instalēt. Ja nē, šis režīms var izlabot nepilnīgu iepriekšējo instalēt, bet, ja jūs vēlaties uzlabot savu versiju, izvēlieties "Upgrade" režīmā.
|
||||||
Upgrade=Upgrade
|
Upgrade=Atjaunot
|
||||||
UpgradeDesc=Izmantojiet šo režīmu, ja esat nomainījis veco Dolibarr failus ar failiem no jaunāku versiju. Tas būs uzlabot savu datu bāzi un datus.
|
UpgradeDesc=Izmantojiet šo režīmu, ja esat nomainījis veco Dolibarr failus ar failiem no jaunāku versiju. Tas būs uzlabot savu datu bāzi un datus.
|
||||||
Start=Sākums
|
Start=Sākums
|
||||||
InstallNotAllowed=Setup nav atļauts ar <b>conf.php</b> atļaujas
|
InstallNotAllowed=Setup nav atļauts ar <b>conf.php</b> atļaujas
|
||||||
@ -165,7 +165,7 @@ MigrationSupplierOrder=Datu migrācija uz piegādātāja pasūtījumiem
|
|||||||
MigrationProposal=Datu migrācija komerciāliem priekšlikumus
|
MigrationProposal=Datu migrācija komerciāliem priekšlikumus
|
||||||
MigrationInvoice=Datu migrācija uz klienta rēķiniem
|
MigrationInvoice=Datu migrācija uz klienta rēķiniem
|
||||||
MigrationContract=Datu migrācija līgumiem
|
MigrationContract=Datu migrācija līgumiem
|
||||||
MigrationSuccessfullUpdate=Upgrade veiksmīga
|
MigrationSuccessfullUpdate=Atjaunošana veiksmīga
|
||||||
MigrationUpdateFailed=Neizdevās jaunināšanas process
|
MigrationUpdateFailed=Neizdevās jaunināšanas process
|
||||||
MigrationRelationshipTables=Datu migrācija uz attiecībām tabulām (%s)
|
MigrationRelationshipTables=Datu migrācija uz attiecībām tabulām (%s)
|
||||||
MigrationPaymentsUpdate=Maksājumu datu korekcija
|
MigrationPaymentsUpdate=Maksājumu datu korekcija
|
||||||
@ -206,4 +206,4 @@ MigrationProjectUserResp=Datu migrācija jomā fk_user_resp no llx_projet lai ll
|
|||||||
MigrationProjectTaskTime=Update pavadītais laiks sekundēs
|
MigrationProjectTaskTime=Update pavadītais laiks sekundēs
|
||||||
MigrationActioncommElement=Atjaunināt informāciju par pasākumiem
|
MigrationActioncommElement=Atjaunināt informāciju par pasākumiem
|
||||||
MigrationPaymentMode=Datu migrācija uz maksājumu režīmā
|
MigrationPaymentMode=Datu migrācija uz maksājumu režīmā
|
||||||
MigrationCategorieAssociation=Migrācija kategoriju
|
MigrationCategorieAssociation=Kategoriju migrācija
|
||||||
|
|||||||
@ -2,19 +2,19 @@
|
|||||||
|
|
||||||
Language_ar_AR=Arābu
|
Language_ar_AR=Arābu
|
||||||
Language_ar_SA=Arābu
|
Language_ar_SA=Arābu
|
||||||
Language_bg_BG=Bulgārijas
|
Language_bg_BG=Bulgāru
|
||||||
Language_ca_ES=Katalāņu
|
Language_ca_ES=Katalāņu
|
||||||
Language_cs_CZ=Čehu
|
Language_cs_CZ=Čehu
|
||||||
Language_da_DA=Dānijas
|
Language_da_DA=Dāņu
|
||||||
Language_da_DK=Dānijas
|
Language_da_DK=Dāņu
|
||||||
Language_de_DE=Vācu
|
Language_de_DE=Vācu
|
||||||
Language_de_AT=Vācu (Austrija)
|
Language_de_AT=Vācu (Austrija)
|
||||||
Language_el_GR=Grieķu
|
Language_el_GR=Grieķu
|
||||||
Language_en_AU=Angļu (Austrālija)
|
Language_en_AU=Angļu (Austrālija)
|
||||||
Language_en_GB=English (United Kingdom)
|
Language_en_GB=Angļu (Apvienotā Karaliste)
|
||||||
Language_en_IN=Angļu (Indija)
|
Language_en_IN=Angļu (Indija)
|
||||||
Language_en_NZ=Angļu (Jaunzēlande)
|
Language_en_NZ=Angļu (Jaunzēlande)
|
||||||
Language_en_SA=English (Saūda Arābija)
|
Language_en_SA=Angļu (Saūda Arābija)
|
||||||
Language_en_US=Angļu (ASV)
|
Language_en_US=Angļu (ASV)
|
||||||
Language_en_ZA=English (Dienvidāfrika)
|
Language_en_ZA=English (Dienvidāfrika)
|
||||||
Language_es_ES=Spāņu
|
Language_es_ES=Spāņu
|
||||||
@ -26,22 +26,23 @@ Language_es_PE=Spāņu (Peru)
|
|||||||
Language_es_PR=Spāņu (Puertoriko)
|
Language_es_PR=Spāņu (Puertoriko)
|
||||||
Language_et_EE=Igauņu
|
Language_et_EE=Igauņu
|
||||||
Language_fa_IR=Persiešu
|
Language_fa_IR=Persiešu
|
||||||
Language_fi_FI=Fins
|
Language_fi_FI=Somu
|
||||||
Language_fr_BE=Franču (Beļģija)
|
Language_fr_BE=Franču (Beļģija)
|
||||||
Language_fr_CA=Franču (Kanāda)
|
Language_fr_CA=Franču (Kanāda)
|
||||||
Language_fr_CH=Franču (Šveice)
|
Language_fr_CH=Franču (Šveices)
|
||||||
Language_fr_FR=Francijas
|
Language_fr_FR=Franču
|
||||||
Language_fr_NC=Franču (Jaunkaledonija)
|
Language_fr_NC=Franču (Jaunkaledonija)
|
||||||
Language_he_IL=Ebreju
|
Language_he_IL=Ebreju
|
||||||
Language_hu_HU=Ungārijas
|
Language_hu_HU=Ungāru
|
||||||
Language_is_IS=Islandiešu
|
Language_is_IS=Islandiešu
|
||||||
Language_it_IT=Itālijas
|
Language_it_IT=Itāļu
|
||||||
Language_ja_JP=Japāņu
|
Language_ja_JP=Japāņu
|
||||||
Language_ko_KR=Korejas
|
Language_ko_KR=Korejiešu
|
||||||
|
Language_lv_LV=Latviešu
|
||||||
Language_nb_NO=Norvēģu (bukmols)
|
Language_nb_NO=Norvēģu (bukmols)
|
||||||
Language_nl_BE=Holandiešu (Beļģija)
|
Language_nl_BE=Holandiešu (Beļģijas)
|
||||||
Language_nl_NL=Holandiešu (Nīderlande)
|
Language_nl_NL=Holandiešu (Nīderlandes)
|
||||||
Language_pl_PL=Pulēšana
|
Language_pl_PL=Poļu
|
||||||
Language_pt_BR=Portugāļu (Brazīlija)
|
Language_pt_BR=Portugāļu (Brazīlija)
|
||||||
Language_pt_PT=Portugāļu
|
Language_pt_PT=Portugāļu
|
||||||
Language_ro_RO=Rumāņu
|
Language_ro_RO=Rumāņu
|
||||||
@ -51,6 +52,7 @@ Language_tr_TR=Turku
|
|||||||
Language_sl_SI=Slovēņu
|
Language_sl_SI=Slovēņu
|
||||||
Language_sv_SV=Zviedru
|
Language_sv_SV=Zviedru
|
||||||
Language_sv_SE=Zviedru
|
Language_sv_SE=Zviedru
|
||||||
|
Language_sk_SK=Slovāku
|
||||||
Language_vi_VN=Vjetnamiešu
|
Language_vi_VN=Vjetnamiešu
|
||||||
Language_zh_CN=Ķīniešu
|
Language_zh_CN=Ķīniešu
|
||||||
Language_zh_TW=Ķīniešu (tradicionālā)
|
Language_zh_TW=Ķīniešu (tradicionālā)
|
||||||
|
|||||||
@ -7,7 +7,7 @@ DIRECTION=ltr
|
|||||||
FONTFORPDF=Helvetica
|
FONTFORPDF=Helvetica
|
||||||
FONTSIZEFORPDF=10
|
FONTSIZEFORPDF=10
|
||||||
SeparatorDecimal=,
|
SeparatorDecimal=,
|
||||||
SeparatorThousand=None
|
SeparatorThousand=Neviens
|
||||||
FormatDateShort=%m/%d/%Y
|
FormatDateShort=%m/%d/%Y
|
||||||
FormatDateShortInput=%m/%d/%Y
|
FormatDateShortInput=%m/%d/%Y
|
||||||
FormatDateShortJava=MM/dd/yyyy
|
FormatDateShortJava=MM/dd/yyyy
|
||||||
@ -23,58 +23,58 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
|
|||||||
FormatDateHourTextShort=%b %d, %Y, %I:%M %p
|
FormatDateHourTextShort=%b %d, %Y, %I:%M %p
|
||||||
FormatDateHourText=%B %d, %Y, %I:%M %p
|
FormatDateHourText=%B %d, %Y, %I:%M %p
|
||||||
DatabaseConnection=Savienojums ar datubāzi
|
DatabaseConnection=Savienojums ar datubāzi
|
||||||
NoTranslation=Nav tulkošana
|
NoTranslation=Nav iztulkots
|
||||||
NoRecordFound=Neviens ieraksts atrasts
|
NoRecordFound=Nav atrasti ieraksti
|
||||||
NoError=Nav kļūda
|
NoError=Nav kļūdu
|
||||||
Error=Kļūda
|
Error=Kļūda
|
||||||
ErrorFieldRequired=Lauks "%s" ir nepieciešama
|
ErrorFieldRequired=Lauks "%s" ir obligāti aizpildams
|
||||||
ErrorFieldFormat=Lauks "%s" ir slikta vērtība
|
ErrorFieldFormat=Laukā "%s" ir nepareiza vērtība
|
||||||
ErrorFileDoesNotExists=Failu %s neeksistē
|
ErrorFileDoesNotExists=Fails %s neeksistē
|
||||||
ErrorFailedToOpenFile=Neizdevās atvērt failu %s
|
ErrorFailedToOpenFile=Neizdevās atvērt failu %s
|
||||||
ErrorCanNotCreateDir=Nevar izveidot dir %s
|
ErrorCanNotCreateDir=Nevar izveidot direktoriju %s
|
||||||
ErrorCanNotReadDir=Nevar nolasīt dir %s
|
ErrorCanNotReadDir=Nevar nolasīt direktoriju %s
|
||||||
ErrorConstantNotDefined=Parametrs %s nav noteikts
|
ErrorConstantNotDefined=Parametrs %s nav definēts
|
||||||
ErrorUnknown=Unkown kļūda
|
ErrorUnknown=Nezināma kļūda
|
||||||
ErrorSQL=SQL kļūda
|
ErrorSQL=SQL kļūda
|
||||||
ErrorLogoFileNotFound=Logotipa faila "%s" netika atrasts
|
ErrorLogoFileNotFound=Logotipa fails "%s" nav atrasts
|
||||||
ErrorGoToGlobalSetup=Iet uz "Sabiedrībai / nodibinājums" uzstādīšana, lai novērstu šo
|
ErrorGoToGlobalSetup=Iet uz "Sabiedrībai / nodibinājums" uzstādīšana, lai novērstu šo
|
||||||
ErrorGoToModuleSetup=Iet uz moduļa uzstādīšanas, lai atrisinātu šo
|
ErrorGoToModuleSetup=Iet uz moduļa uzstādīšanas, lai atrisinātu šo
|
||||||
ErrorFailedToSendMail=Neizdevās nosūtīt pastu (sūtītājs = %s, uztvērējs = %s)
|
ErrorFailedToSendMail=Neizdevās nosūtīt pastu (sūtītājs = %s, uztvērējs = %s)
|
||||||
ErrorAttachedFilesDisabled=Failu pievienojot ir izslēgta šajā serverī
|
ErrorAttachedFilesDisabled=Failu pievienšana nav atļauta šajā serverī
|
||||||
ErrorFileNotUploaded=Fails netika augšupielādēts. Pārbaudiet, izmēri nepārsniedz maksimāli pieļaujamo, ka brīvas vietas ir pieejama uz diska, un ka nav jau failu ar tādu pašu nosaukumu, kas šajā direktorijā.
|
ErrorFileNotUploaded=Fails netika augšupielādēts. Pārbaudiet vai izmērs nepārsniedz maksimāli pieļaujamo un, ka brīvas vietas ir pieejama uz diska, un nav jau failu ar tādu pašu nosaukumu, kas šajā direktorijā.
|
||||||
ErrorInternalErrorDetected=Atklātā kļūda
|
ErrorInternalErrorDetected=Atklāta kļūda
|
||||||
ErrorNoRequestRan=Nav pieprasījums skrēja
|
ErrorNoRequestRan=Nav pieprasījums skrēja
|
||||||
ErrorWrongHostParameter=Nepareizs uzņēmēja parametrs
|
ErrorWrongHostParameter=Nepareizs uzņēmēja parametrs
|
||||||
ErrorYourCountryIsNotDefined=Jūsu valsts nav definēts. Iet uz Home-Setup-Edit un post atkal formu.
|
ErrorYourCountryIsNotDefined=Jūsu valsts nav definēta. Ejiet uz Home-Setup-Edit un post atkal formu.
|
||||||
ErrorRecordIsUsedByChild=Neizdevās dzēst šo ierakstu. Šis ieraksts tiek izmantots vismaz viens bērns ierakstus.
|
ErrorRecordIsUsedByChild=Neizdevās dzēst šo ierakstu. Šis ieraksts tiek izmantots vismaz viens bērns ierakstus.
|
||||||
ErrorWrongValue=Nepareizs vērtība
|
ErrorWrongValue=Nepareizs vērtība
|
||||||
ErrorWrongValueForParameterX=Nepareiza vērtība parametru %s
|
ErrorWrongValueForParameterX=Nepareiza vērtība parametru %s
|
||||||
ErrorNoRequestInError=Nav pieprasījums kļūda
|
ErrorNoRequestInError=Nav pieprasījums kļūda
|
||||||
ErrorServiceUnavailableTryLater=Pakalpojums nav pieejams uz šo brīdi. Mēģiniet vēlreiz vēlāk.
|
ErrorServiceUnavailableTryLater=Pakalpojums nav pieejams uz šo brīdi. Mēģiniet vēlreiz vēlāk.
|
||||||
ErrorDuplicateField=Dublikātu vērtību unikālā jomā
|
ErrorDuplicateField=Dublikātu vērtību unikālā jomā
|
||||||
ErrorSomeErrorWereFoundRollbackIsDone=Dažas kļūdas netika atrasts. Mēs atritināt izmaiņas.
|
ErrorSomeErrorWereFoundRollbackIsDone=Dažas kļūdas tika atrastas. Mēs atgriezām atpakaļ visu izejas pozīcijā.
|
||||||
ErrorConfigParameterNotDefined=Parametrs <b>%s</b> nav definētas iekšpusē Dolibarr config failu <b>conf.php.</b>
|
ErrorConfigParameterNotDefined=Parametrs <b>%s</b> nav definētas Dolibarr konfigurācijas failā <b>conf.php.</b>
|
||||||
ErrorCantLoadUserFromDolibarrDatabase=Neizdevās atrast lietotāju <b>%s</b> ar Dolibarr datu bāzē.
|
ErrorCantLoadUserFromDolibarrDatabase=Neizdevās atrast lietotāju <b>%s</b> Dolibarr datu bāzē.
|
||||||
ErrorNoVATRateDefinedForSellerCountry=Kļūda, PVN likmēm, kas noteiktas valsts "%s".
|
ErrorNoVATRateDefinedForSellerCountry=Kļūda, PVN likme nav definēta sekojošai valstij "%s".
|
||||||
ErrorNoSocialContributionForSellerCountry=Kļūda, ne sociālās iemaksas veids definēta valsts "%s".
|
ErrorNoSocialContributionForSellerCountry=Kļūda, ne sociālās iemaksas veids definēta valsts "%s".
|
||||||
ErrorFailedToSaveFile=Kļūda, neizdevās saglabāt failu.
|
ErrorFailedToSaveFile=Kļūda, neizdevās saglabāt failu.
|
||||||
ErrorOnlyPngJpgSupported=Kļūda, tikai. Png un. Jpg attēla formāta failu, tiek atbalstītas.
|
ErrorOnlyPngJpgSupported=Kļūda, tikai. Png un. Jpg attēla formāti ir atļauti.
|
||||||
ErrorImageFormatNotSupported=Jūsu PHP neatbalsta funkcijas, lai pārvērstu attēlus šajā formātā.
|
ErrorImageFormatNotSupported=Jūsu PHP neatbalsta funkcijas, lai pārvērstu attēlus šajā formātā.
|
||||||
SeeAlso=Skatīt arī %s
|
SeeAlso=Skatīt arī %s
|
||||||
BackgroundColorByDefault=Noklusējuma fona krāsu
|
BackgroundColorByDefault=Noklusējuma fona krāsu
|
||||||
FileWasNotUploaded=Fails ir izvēlēts arestu, bet vēl nav augšupielādēti. Noklikšķiniet uz "Pievienot failu" par to.
|
FileWasNotUploaded=Fails ir izvēlēts arestu, bet vēl nav augšupielādēti. Noklikšķiniet uz "Pievienot failu" par to.
|
||||||
NbOfEntries=Nb ierakstu
|
NbOfEntries=Ierakstu sk
|
||||||
GoToWikiHelpPage=Lasīt tiešsaistes palīdzību (nepieciešams interneta piekļuves)
|
GoToWikiHelpPage=Lasīt tiešsaistes palīdzību (nepieciešams interneta piekļuve)
|
||||||
GoToHelpPage=Lasīt palīdzēt
|
GoToHelpPage=Lasīt palīdzību
|
||||||
RecordSaved=Ieraksts saglabāts
|
RecordSaved=Ieraksts saglabāts
|
||||||
RecordDeleted=Ierakstīt svītrots
|
RecordDeleted=Ieraksts dzēsts
|
||||||
LevelOfFeature=Līmeņa funkcijas
|
LevelOfFeature=Līmeņa funkcijas
|
||||||
NotDefined=Nav noteikts
|
NotDefined=Nav definēts
|
||||||
DefinedAndHasThisValue=Definēti un vērtību
|
DefinedAndHasThisValue=Definēti un vērtību
|
||||||
IsNotDefined=undefined
|
IsNotDefined=nav definēts
|
||||||
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr autentifikācijas režīms ir setup, lai <b>%s</b> konfigurācijas failu <b>conf.php.</b> <br> Tas nozīmē, ka parole datubāze ir extern uz Dolibarr, tāpēc, mainot šai jomā nav nekādas ietekmes.
|
DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr autentifikācijas režīms ir setup, lai <b>%s</b> konfigurācijas failu <b>conf.php.</b> <br> Tas nozīmē, ka parole datubāze ir extern uz Dolibarr, tāpēc, mainot šai jomā nav nekādas ietekmes.
|
||||||
Administrator=Administrators
|
Administrator=Administrators
|
||||||
Undefined=Undefined
|
Undefined=Nav definēts
|
||||||
PasswordForgotten=Aizmirsāt paroli?
|
PasswordForgotten=Aizmirsāt paroli?
|
||||||
SeeAbove=Skatīt iepriekš
|
SeeAbove=Skatīt iepriekš
|
||||||
HomeArea=Mājas platība
|
HomeArea=Mājas platība
|
||||||
@ -89,11 +89,11 @@ RequestLastAccess=Pieprasījums pēdējo datu bāzes piekļuvi
|
|||||||
RequestLastAccessInError=Pieprasījums pēdējo datu bāzes piekļuvi kļūda
|
RequestLastAccessInError=Pieprasījums pēdējo datu bāzes piekļuvi kļūda
|
||||||
ReturnCodeLastAccessInError=Atgriešanās kodu pēdējo datu bāzes piekļuvi kļūda
|
ReturnCodeLastAccessInError=Atgriešanās kodu pēdējo datu bāzes piekļuvi kļūda
|
||||||
InformationLastAccessInError=Informācija pēdējo datu bāzes piekļuvi kļūda
|
InformationLastAccessInError=Informācija pēdējo datu bāzes piekļuvi kļūda
|
||||||
DolibarrHasDetectedError=Dolibarr ir atklāts tehnisku kļūdu
|
DolibarrHasDetectedError=Dolibarr ir atklājis tehnisku kļūdu
|
||||||
InformationToHelpDiagnose=Šī ir informācija, kas var palīdzēt diagnostikas
|
InformationToHelpDiagnose=Šī informācija, kas var palīdzēt diagnostikai
|
||||||
MoreInformation=Vairāk informācijas
|
MoreInformation=Vairāk informācijas
|
||||||
NotePublic=Piezīme (valsts)
|
NotePublic=Piezīme (publiska)
|
||||||
NotePrivate=Piezīme (privāts)
|
NotePrivate=Piezīme (privāta)
|
||||||
PrecisionUnitIsLimitedToXDecimals=Dolibarr bija setup, lai ierobežotu precizitāti vienības cenām <b>%s</b> zīmēm aiz komata.
|
PrecisionUnitIsLimitedToXDecimals=Dolibarr bija setup, lai ierobežotu precizitāti vienības cenām <b>%s</b> zīmēm aiz komata.
|
||||||
DoTest=Pārbaude
|
DoTest=Pārbaude
|
||||||
ToFilter=Filtrs
|
ToFilter=Filtrs
|
||||||
@ -103,8 +103,8 @@ Yes=Jā
|
|||||||
no=nē
|
no=nē
|
||||||
No=Nē
|
No=Nē
|
||||||
All=Visi
|
All=Visi
|
||||||
Home=Mājas
|
Home=Mājās
|
||||||
Help=Palīdzēt
|
Help=Palīdzība
|
||||||
OnlineHelp=Tiešsaistes palīdzība
|
OnlineHelp=Tiešsaistes palīdzība
|
||||||
PageWiki=Wiki lapa
|
PageWiki=Wiki lapa
|
||||||
Always=Vienmēr
|
Always=Vienmēr
|
||||||
@ -122,7 +122,7 @@ Disable=Atslēgt
|
|||||||
Disabled=Invalīdiem
|
Disabled=Invalīdiem
|
||||||
Add=Pievienot
|
Add=Pievienot
|
||||||
AddLink=Pievienot saiti
|
AddLink=Pievienot saiti
|
||||||
Update=Modernizēt
|
Update=Atjaunot
|
||||||
AddActionToDo=Pievienot notikumu darīt
|
AddActionToDo=Pievienot notikumu darīt
|
||||||
AddActionDone=Pievienot notikumu darīts
|
AddActionDone=Pievienot notikumu darīts
|
||||||
Close=Aizvērt
|
Close=Aizvērt
|
||||||
@ -137,11 +137,11 @@ Modify=Modificēt
|
|||||||
Edit=Rediģēt
|
Edit=Rediģēt
|
||||||
Validate=Apstiprināt
|
Validate=Apstiprināt
|
||||||
ToValidate=Lai apstiprinātu
|
ToValidate=Lai apstiprinātu
|
||||||
Save=Glābt
|
Save=Saglabāt
|
||||||
SaveAs=Saglabāt kā
|
SaveAs=Saglabāt kā
|
||||||
TestConnection=Testa savienojums
|
TestConnection=Testa savienojums
|
||||||
ToClone=Klons
|
ToClone=Klonēt
|
||||||
ConfirmClone=Izvēlieties datus, kurus vēlaties klons:
|
ConfirmClone=Izvēlieties datus, kurus vēlaties klonēt:
|
||||||
NoCloneOptionsSpecified=Nav datu klons noteikts.
|
NoCloneOptionsSpecified=Nav datu klons noteikts.
|
||||||
Of=no
|
Of=no
|
||||||
Go=Iet
|
Go=Iet
|
||||||
@ -153,21 +153,21 @@ Search=Meklēšana
|
|||||||
SearchOf=Meklēšana
|
SearchOf=Meklēšana
|
||||||
Valid=Derīgs
|
Valid=Derīgs
|
||||||
Approve=Apstiprināt
|
Approve=Apstiprināt
|
||||||
ReOpen=Re-Atvērt
|
ReOpen=Atvērt par jaunu
|
||||||
Upload=Sūtīt failu
|
Upload=Sūtīt failu
|
||||||
ToLink=Saite
|
ToLink=Saite
|
||||||
Select=Atlasīt
|
Select=Atlasīt
|
||||||
Choose=Izvēlēties
|
Choose=Izvēlēties
|
||||||
ChooseLangage=Lūdzu, izvēlieties savu valodu
|
ChooseLangage=Lūdzu, izvēlieties valodu
|
||||||
Resize=Resize
|
Resize=Samazināt
|
||||||
Recenter=Ievirzītu
|
Recenter=Centrēt
|
||||||
Author=Autors
|
Author=Autors
|
||||||
User=Lietotājs
|
User=Lietotājs
|
||||||
Users=Lietotāji
|
Users=Lietotāji
|
||||||
Group=Grupa
|
Group=Grupa
|
||||||
Groups=Grupas
|
Groups=Grupas
|
||||||
Password=Parole
|
Password=Parole
|
||||||
PasswordRetype=Atkārtojiet paroli
|
PasswordRetype=PArole atkārtoti
|
||||||
NoteSomeFeaturesAreDisabled=Ņemiet vērā, ka funkcijas / modules daudz ir invalīdi šajā demonstrācijā.
|
NoteSomeFeaturesAreDisabled=Ņemiet vērā, ka funkcijas / modules daudz ir invalīdi šajā demonstrācijā.
|
||||||
Name=Nosaukums
|
Name=Nosaukums
|
||||||
Person=Persona
|
Person=Persona
|
||||||
@ -183,7 +183,7 @@ Type=Tips
|
|||||||
Language=Valoda
|
Language=Valoda
|
||||||
MultiLanguage=Multi-valodu
|
MultiLanguage=Multi-valodu
|
||||||
Note=Piezīme
|
Note=Piezīme
|
||||||
CurrentNote=Pašreizējais piezīme
|
CurrentNote=Pašreizējā piezīme
|
||||||
Title=Virsraksts
|
Title=Virsraksts
|
||||||
Label=Etiķete
|
Label=Etiķete
|
||||||
RefOrLabel=Ref. vai etiķete
|
RefOrLabel=Ref. vai etiķete
|
||||||
@ -200,24 +200,24 @@ NumberByMonth=Numurs pēc mēneša
|
|||||||
AmountByMonth=Summa pēc mēneša
|
AmountByMonth=Summa pēc mēneša
|
||||||
Numero=Numurs
|
Numero=Numurs
|
||||||
Limit=Ierobežot
|
Limit=Ierobežot
|
||||||
Limits=Robežas
|
Limits=Ierobežojums
|
||||||
DevelopmentTeam=Attīstības Team
|
DevelopmentTeam=Izstrādātāju komanda
|
||||||
Logout=Logout
|
Logout=Iziet
|
||||||
Connection=Saistība
|
Connection=Saistība
|
||||||
Setup=Setup
|
Setup=Iestatījumi
|
||||||
Alert=Brīdināt
|
Alert=Brīdināt
|
||||||
Previous=Iepriekšējais
|
Previous=Iepriekšējais
|
||||||
Next=Nākamais
|
Next=Nākamais
|
||||||
Cards=Kārtis
|
Cards=Kartes
|
||||||
Card=Karte
|
Card=Karte
|
||||||
Now=Tagad
|
Now=Tagad
|
||||||
Date=Datums
|
Date=Datums
|
||||||
DateStart=Šim sākums
|
DateStart=Sākuma datums
|
||||||
DateEnd=Datums beigas
|
DateEnd=Beigu datums
|
||||||
DateCreation=Izveides datums
|
DateCreation=Izveidošanas datums
|
||||||
DateModification=Modificēšanas datums
|
DateModification=Modificēšanas datums
|
||||||
DateModificationShort=Modif. datums
|
DateModificationShort=Modif. datums
|
||||||
DateLastModification=Pēdējās izmaiņas datums
|
DateLastModification=Pēdējo izmaiņu datums
|
||||||
DateValidation=Apstiprināšanas datums
|
DateValidation=Apstiprināšanas datums
|
||||||
DateClosing=Beigu datums
|
DateClosing=Beigu datums
|
||||||
DateDue=Izpildes datums
|
DateDue=Izpildes datums
|
||||||
@ -236,7 +236,7 @@ DurationYear=gads
|
|||||||
DurationMonth=mēnesis
|
DurationMonth=mēnesis
|
||||||
DurationWeek=nedēļa
|
DurationWeek=nedēļa
|
||||||
DurationDay=diena
|
DurationDay=diena
|
||||||
DurationYears=gadiem
|
DurationYears=gadi
|
||||||
DurationMonths=mēneši
|
DurationMonths=mēneši
|
||||||
DurationWeeks=nedēļas
|
DurationWeeks=nedēļas
|
||||||
DurationDays=dienas
|
DurationDays=dienas
|
||||||
@ -246,13 +246,13 @@ Week=Nedēļa
|
|||||||
Day=Diena
|
Day=Diena
|
||||||
Hour=Stunda
|
Hour=Stunda
|
||||||
Minute=Minūte
|
Minute=Minūte
|
||||||
Second=Otrais
|
Second=Sekunde
|
||||||
Years=Gadiem
|
Years=Gadi
|
||||||
Months=Mēneši
|
Months=Mēneši
|
||||||
Days=Dienas
|
Days=Dienas
|
||||||
days=dienas
|
days=dienas
|
||||||
Hours=Laiks
|
Hours=Stundas
|
||||||
Minutes=Protokols
|
Minutes=Minūtes
|
||||||
Seconds=Sekundes
|
Seconds=Sekundes
|
||||||
Today=Šodien
|
Today=Šodien
|
||||||
Yesterday=Vakar
|
Yesterday=Vakar
|
||||||
@ -261,21 +261,21 @@ Quadri=Quadri
|
|||||||
MonthOfDay=Mēnesis dienas
|
MonthOfDay=Mēnesis dienas
|
||||||
HourShort=H
|
HourShort=H
|
||||||
Rate=Likme
|
Rate=Likme
|
||||||
UseLocalTax=Iekļaut nodokli
|
UseLocalTax=Ar PVN
|
||||||
Bytes=Baiti
|
Bytes=Baiti
|
||||||
KiloBytes=Kilobaiti
|
KiloBytes=Kilobaiti
|
||||||
MegaBytes=Megabaiti
|
MegaBytes=Megabaiti
|
||||||
GigaBytes=Gigabaitiem
|
GigaBytes=Gigabaiti
|
||||||
TeraBytes=Terabaitiem
|
TeraBytes=Terabaiti
|
||||||
b=b.
|
b=b.
|
||||||
Kb=Kb
|
Kb=Kb
|
||||||
Mb=Mb
|
Mb=Mb
|
||||||
Gb=Gb
|
Gb=Gb
|
||||||
Tb=Tuberkuloze
|
Tb=Tb
|
||||||
Cut=Samazināt
|
Cut=Izgriezt
|
||||||
Copy=Kopēt
|
Copy=Kopēt
|
||||||
Paste=Pasta
|
Paste=Ielīmēt
|
||||||
Default=Default
|
Default=Noklusējums
|
||||||
DefaultValue=Noklusējuma vērtība
|
DefaultValue=Noklusējuma vērtība
|
||||||
DefaultGlobalValue=Globālā vērtība
|
DefaultGlobalValue=Globālā vērtība
|
||||||
Price=Cena
|
Price=Cena
|
||||||
@ -307,19 +307,19 @@ Percentage=Procentuālā attiecība
|
|||||||
Total=Kopsumma
|
Total=Kopsumma
|
||||||
SubTotal=Starpsumma
|
SubTotal=Starpsumma
|
||||||
TotalHTShort=Kopējais (neto)
|
TotalHTShort=Kopējais (neto)
|
||||||
TotalTTCShort=Pavisam (ieskaitot nodokli)
|
TotalTTCShort=Pavisam (ar PVN)
|
||||||
TotalHT=Kopā (bez nodokļiem)
|
TotalHT=Pavisam (bez PVN)
|
||||||
TotalTTC=Pavisam (ieskaitot nodokli)
|
TotalTTC=Pavisam (ar PVN)
|
||||||
TotalTTCToYourCredit=Pavisam (ieskaitot nodokli), lai jūsu kredīta
|
TotalTTCToYourCredit=Pavisam (ieskaitot nodokli), lai jūsu kredīta
|
||||||
TotalVAT=Kopējā nodokļu
|
TotalVAT=Kopējā nodokļu
|
||||||
TotalLT1=Kopējā nodokļu 2
|
TotalLT1=Kopējā nodokļu 2
|
||||||
TotalLT2=Kopējā nodokļu 3
|
TotalLT2=Kopējā nodokļu 3
|
||||||
TotalLT1ES=Kopējais RE
|
TotalLT1ES=Kopējais RE
|
||||||
TotalLT2ES=Kopējais IRPF
|
TotalLT2ES=Kopējais IRPF
|
||||||
IncludedVAT=Iekļauts nodoklis
|
IncludedVAT=Ar PVN
|
||||||
HT=Pēc nodokļiem
|
HT=Bez PVN
|
||||||
TTC=Inc nodoklis
|
TTC=Ar PVN
|
||||||
VAT=Pārdošanas nodoklis
|
VAT=PVN
|
||||||
LT1ES=RE
|
LT1ES=RE
|
||||||
LT2ES=IRPF
|
LT2ES=IRPF
|
||||||
VATRate=Nodokļa likme
|
VATRate=Nodokļa likme
|
||||||
@ -327,7 +327,7 @@ Average=Vidējais
|
|||||||
Sum=Summa
|
Sum=Summa
|
||||||
Delta=Delta
|
Delta=Delta
|
||||||
Module=Modulis
|
Module=Modulis
|
||||||
Option=Izvēle
|
Option=Iespējas
|
||||||
List=Saraksts
|
List=Saraksts
|
||||||
FullList=Pilns saraksts
|
FullList=Pilns saraksts
|
||||||
Statistics=Statistika
|
Statistics=Statistika
|
||||||
@ -337,22 +337,22 @@ ShortInfo=Info.
|
|||||||
Ref=Ref.
|
Ref=Ref.
|
||||||
RefSupplier=Ref. piegādātājs
|
RefSupplier=Ref. piegādātājs
|
||||||
RefPayment=Ref. maksājums
|
RefPayment=Ref. maksājums
|
||||||
CommercialProposalsShort=Commercial priekšlikumi
|
CommercialProposalsShort=Komerciālie priekšlikumi
|
||||||
Comment=Komentēt
|
Comment=Komentēt
|
||||||
Comments=Komentāri
|
Comments=Komentāri
|
||||||
ActionsToDo=Pasākumi, kas darīt
|
ActionsToDo=Pasākumi, kas darīt
|
||||||
ActionsDone=Pasākumi darīts
|
ActionsDone=Pasākumi darīts
|
||||||
ActionsToDoShort=Lai to izdarītu
|
ActionsToDoShort=Vēl jādara
|
||||||
ActionsRunningshort=Sākās
|
ActionsRunningshort=Sākts
|
||||||
ActionsDoneShort=Done
|
ActionsDoneShort=Done
|
||||||
ActionNotApplicable=Nav piemērojams
|
ActionNotApplicable=Nav piemērojams
|
||||||
ActionRunningNotStarted=Lai sāktu
|
ActionRunningNotStarted=Jāsāk
|
||||||
ActionRunningShort=Sākās
|
ActionRunningShort=Sākts
|
||||||
ActionDoneShort=Pabeigts
|
ActionDoneShort=Pabeigts
|
||||||
CompanyFoundation=Kompānija / Foundation
|
CompanyFoundation=Kompānija / Foundation
|
||||||
ContactsForCompany=Kontakti šīs trešās personas
|
ContactsForCompany=Kontakti šīs trešās personas
|
||||||
ContactsAddressesForCompany=Kontakti / adreses par šīs trešās personas
|
ContactsAddressesForCompany=Kontakti / adreses par šīs trešās personas
|
||||||
AddressesForCompany=Adreses šīs trešās personas
|
AddressesForCompany=Šīs trešās puses adreses
|
||||||
ActionsOnCompany=Pasākumi par šīs trešās personas
|
ActionsOnCompany=Pasākumi par šīs trešās personas
|
||||||
ActionsOnMember=Pasākumi par šo locekli
|
ActionsOnMember=Pasākumi par šo locekli
|
||||||
NActions=%s notikumi
|
NActions=%s notikumi
|
||||||
@ -361,7 +361,7 @@ Filter=Filtrs
|
|||||||
RemoveFilter=Noņemt filtru
|
RemoveFilter=Noņemt filtru
|
||||||
ChartGenerated=Attēls radīts
|
ChartGenerated=Attēls radīts
|
||||||
ChartNotGenerated=Attēls nav radīts
|
ChartNotGenerated=Attēls nav radīts
|
||||||
GeneratedOn=Balstīties uz %s
|
GeneratedOn=Izveidots %s
|
||||||
Generate=Radīt
|
Generate=Radīt
|
||||||
Duration=Ilgums
|
Duration=Ilgums
|
||||||
TotalDuration=Kopējais pasākuma ilgums
|
TotalDuration=Kopējais pasākuma ilgums
|
||||||
@ -372,7 +372,7 @@ DolibarrBoard=Dolibarr padome
|
|||||||
DolibarrStateBoard=Statistika
|
DolibarrStateBoard=Statistika
|
||||||
DolibarrWorkBoard=Darba uzdevumi padome
|
DolibarrWorkBoard=Darba uzdevumi padome
|
||||||
Available=Pieejams
|
Available=Pieejams
|
||||||
NotYetAvailable=Nav pieejams
|
NotYetAvailable=Nav vēl pieejams
|
||||||
NotAvailable=Nav pieejams
|
NotAvailable=Nav pieejams
|
||||||
Popularity=Popularitāte
|
Popularity=Popularitāte
|
||||||
Categories=Kategorijas
|
Categories=Kategorijas
|
||||||
@ -383,18 +383,18 @@ to=līdz
|
|||||||
and=un
|
and=un
|
||||||
or=vai
|
or=vai
|
||||||
Other=Cits
|
Other=Cits
|
||||||
Others=Pārējie
|
Others=Citi
|
||||||
OtherInformations=Citas informācija
|
OtherInformations=Citas informācija
|
||||||
Quantity=Daudzums
|
Quantity=Daudzums
|
||||||
Qty=Daudz
|
Qty=Daudz
|
||||||
ChangedBy=Mainīt
|
ChangedBy=Labojis
|
||||||
ReCalculate=Pārrēķināt
|
ReCalculate=Pārrēķināt
|
||||||
ResultOk=Veiksme
|
ResultOk=Veiksmīgi
|
||||||
ResultKo=Neveiksme
|
ResultKo=Neveiksme
|
||||||
Reporting=Pārskata
|
Reporting=Pārskata
|
||||||
Reportings=Pārskata
|
Reportings=Pārskata
|
||||||
Draft=Projekts
|
Draft=Melnraksts
|
||||||
Drafts=Dambrete
|
Drafts=Melnraksti
|
||||||
Validated=Validēta
|
Validated=Validēta
|
||||||
Opened=Atvērts
|
Opened=Atvērts
|
||||||
New=Jauns
|
New=Jauns
|
||||||
@ -402,11 +402,11 @@ Discount=Atlaide
|
|||||||
Unknown=Nezināms
|
Unknown=Nezināms
|
||||||
General=Vispārējs
|
General=Vispārējs
|
||||||
Size=Lielums
|
Size=Lielums
|
||||||
Received=Saņemti
|
Received=Saņemts
|
||||||
Paid=Apmaksātais
|
Paid=Apmaksāts
|
||||||
Topic=Subjekts
|
Topic=Subjekts
|
||||||
ByCompanies=Trešās personas
|
ByCompanies=Pēc trešajām personām
|
||||||
ByUsers=Ar lietotājiem
|
ByUsers=Pēc lietotājiem
|
||||||
Links=Saites
|
Links=Saites
|
||||||
Link=Saite
|
Link=Saite
|
||||||
Receipts=Ieņēmumi
|
Receipts=Ieņēmumi
|
||||||
@ -436,22 +436,22 @@ October=Oktobris
|
|||||||
November=Novembris
|
November=Novembris
|
||||||
December=Decembris
|
December=Decembris
|
||||||
JanuaryMin=Jan
|
JanuaryMin=Jan
|
||||||
FebruaryMin=Februāris
|
FebruaryMin=Feb
|
||||||
MarchMin=Sagandēt
|
MarchMin=Mar
|
||||||
AprilMin=Aprīlis
|
AprilMin=Apr
|
||||||
MayMin=Maijs
|
MayMin=Mai
|
||||||
JuneMin=Jūnijs
|
JuneMin=Jūn
|
||||||
JulyMin=Jūlijs
|
JulyMin=Jūl
|
||||||
AugustMin=Augusts
|
AugustMin=Aug
|
||||||
SeptemberMin=Septembris
|
SeptemberMin=Sep
|
||||||
OctoberMin=Oktobris
|
OctoberMin=Okt
|
||||||
NovemberMin=Novembris
|
NovemberMin=Nov
|
||||||
DecemberMin=Decembris
|
DecemberMin=Dec
|
||||||
Month01=janvāris
|
Month01=janvāris
|
||||||
Month02=februāris
|
Month02=februāris
|
||||||
Month03=gājiens
|
Month03=marts
|
||||||
Month04=aprīlis
|
Month04=aprīlis
|
||||||
Month05=var
|
Month05=maijs
|
||||||
Month06=jūnijs
|
Month06=jūnijs
|
||||||
Month07=jūlijs
|
Month07=jūlijs
|
||||||
Month08=augusts
|
Month08=augusts
|
||||||
@ -459,30 +459,30 @@ Month09=septembris
|
|||||||
Month10=oktobris
|
Month10=oktobris
|
||||||
Month11=novembris
|
Month11=novembris
|
||||||
Month12=decembris
|
Month12=decembris
|
||||||
MonthShort01=janvāris
|
MonthShort01=jan
|
||||||
MonthShort02=februāris
|
MonthShort02=feb
|
||||||
MonthShort03=sagandēt
|
MonthShort03=mar
|
||||||
MonthShort04=aprīlis
|
MonthShort04=apr
|
||||||
MonthShort05=var
|
MonthShort05=mai
|
||||||
MonthShort06=jūnijs
|
MonthShort06=jūn
|
||||||
MonthShort07=jūlijs
|
MonthShort07=jūl
|
||||||
MonthShort08=augusts
|
MonthShort08=aug
|
||||||
MonthShort09=septembris
|
MonthShort09=sep
|
||||||
MonthShort10=oktobris
|
MonthShort10=okt
|
||||||
MonthShort11=novembris
|
MonthShort11=nov
|
||||||
MonthShort12=decembris
|
MonthShort12=dec
|
||||||
AttachedFiles=Pievienotie faili un dokumenti
|
AttachedFiles=Pievienotie faili un dokumenti
|
||||||
FileTransferComplete=Fails tika augšupielādēts successfuly
|
FileTransferComplete=Fails tika augšupielādēts veiksmīgi
|
||||||
DateFormatYYYYMM=YYYY-MM
|
DateFormatYYYYMM=YYYY-MM
|
||||||
DateFormatYYYYMMDD=YYYY-MM-DD
|
DateFormatYYYYMMDD=YYYY-MM-DD
|
||||||
DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS
|
DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS
|
||||||
ReportName=Pārskata nosaukums
|
ReportName=Atskaites nosaukums
|
||||||
ReportPeriod=Atskaites periods
|
ReportPeriod=Atskaites periods
|
||||||
ReportDescription=Apraksts
|
ReportDescription=Apraksts
|
||||||
Report=Ziņojums
|
Report=Ziņojums
|
||||||
Keyword=Mot Clé
|
Keyword=Atslēgas vārdi
|
||||||
Legend=Leģenda
|
Legend=Leģenda
|
||||||
FillTownFromZip=Aizpildiet pilsētu no rāvējslēdzēju
|
FillTownFromZip=Aizpildiet pilsētu no pasta indeksa
|
||||||
Fill=Aizpildīt
|
Fill=Aizpildīt
|
||||||
Reset=Reset
|
Reset=Reset
|
||||||
ShowLog=Rādīt log
|
ShowLog=Rādīt log
|
||||||
@ -493,9 +493,9 @@ ReadPermissionNotAllowed=Lasīt atļauja nav atļauts
|
|||||||
AmountInCurrency=Summa %s valūtā
|
AmountInCurrency=Summa %s valūtā
|
||||||
Example=Piemērs
|
Example=Piemērs
|
||||||
Examples=Piemēri
|
Examples=Piemēri
|
||||||
NoExample=Nav piemērs
|
NoExample=Nav piemēra
|
||||||
FindBug=Paziņo par kļūdu
|
FindBug=Ziņot par kļūdu
|
||||||
NbOfThirdParties=Skaits trešajām personām
|
NbOfThirdParties=Trešo personu skaits
|
||||||
NbOfCustomers=Klientu skaits
|
NbOfCustomers=Klientu skaits
|
||||||
NbOfLines=Līniju skaits
|
NbOfLines=Līniju skaits
|
||||||
NbOfObjects=Objektu skaits
|
NbOfObjects=Objektu skaits
|
||||||
@ -545,21 +545,21 @@ TextUsedInTheMessageBody=E-pasts ķermeņa
|
|||||||
SendAcknowledgementByMail=Send Ack. pa e-pastu
|
SendAcknowledgementByMail=Send Ack. pa e-pastu
|
||||||
NoEMail=Nav e-pasta
|
NoEMail=Nav e-pasta
|
||||||
Owner=Īpašnieks
|
Owner=Īpašnieks
|
||||||
DetectedVersion=Atklātie versija
|
DetectedVersion=Noteiktā versija
|
||||||
FollowingConstantsWillBeSubstituted=Šādas konstantes tiks aizstāts ar atbilstošo vērtību.
|
FollowingConstantsWillBeSubstituted=Šādas konstantes tiks aizstāts ar atbilstošo vērtību.
|
||||||
Refresh=Atsvaidzināt
|
Refresh=Atsvaidzināt
|
||||||
BackToList=Atpakaļ uz sarakstu
|
BackToList=Atpakaļ uz sarakstu
|
||||||
GoBack=Iet atpakaļ
|
GoBack=Iet atpakaļ
|
||||||
CanBeModifiedIfOk=Var mainīt, ja ir spēkā
|
CanBeModifiedIfOk=Var mainīt, ja ir spēkā
|
||||||
CanBeModifiedIfKo=Var mainīt, ja nav derīga
|
CanBeModifiedIfKo=Var mainīt, ja nav derīga
|
||||||
RecordModifiedSuccessfully=Reģistrēt izmaiņas veiksmīgi
|
RecordModifiedSuccessfully=ieraksts modificēts veiksmīgi
|
||||||
RecordsModified=%s ieraksti modificēts
|
RecordsModified=%s ieraksti modificēti
|
||||||
AutomaticCode=Automātiskās kods
|
AutomaticCode=Automātiskās kods
|
||||||
NotManaged=Nepārvalda
|
NotManaged=Nepārvalda
|
||||||
FeatureDisabled=Funkcija izslēgta
|
FeatureDisabled=Funkcija bloķēta
|
||||||
MoveBox=Pārvietot kastes %s
|
MoveBox=Pārvietot kastes %s
|
||||||
Offered=Piedāvā
|
Offered=Piedāvā
|
||||||
NotEnoughPermissions=Jums nav atļaujas šai darbībai
|
NotEnoughPermissions=Jums nav atļauta šī darbība
|
||||||
SessionName=Sesijas nosaukums
|
SessionName=Sesijas nosaukums
|
||||||
Method=Metode
|
Method=Metode
|
||||||
Receive=Saņemt
|
Receive=Saņemt
|
||||||
@ -567,57 +567,57 @@ PartialWoman=Daļējs
|
|||||||
PartialMan=Daļējs
|
PartialMan=Daļējs
|
||||||
TotalWoman=Kopsumma
|
TotalWoman=Kopsumma
|
||||||
TotalMan=Kopsumma
|
TotalMan=Kopsumma
|
||||||
NeverReceived=Nekad nav saņēmusi
|
NeverReceived=Nekad nav saņemts
|
||||||
Canceled=Atcelts
|
Canceled=Atcelts
|
||||||
YouCanChangeValuesForThisListFromDictionnarySetup=Jūs varat mainīt vērtības šajā sarakstā no izvēlnes Setup - dictionnary
|
YouCanChangeValuesForThisListFromDictionnarySetup=Jūs varat mainīt vērtības šajā sarakstā no izvēlnes Iestatījumi - vārdnīca
|
||||||
Color=Krāsa
|
Color=Krāsa
|
||||||
Documents=Piesaistītu failu
|
Documents=Piesaistītie faili
|
||||||
DocumentsNb=Piesaistītu failu (%s)
|
DocumentsNb=Piesaistītie faili (%s)
|
||||||
Documents2=Dokumenti
|
Documents2=Dokumenti
|
||||||
BuildDocuments=Radītais dokumenti
|
BuildDocuments=Izveidotie dokumenti
|
||||||
UploadDisabled=Pievienot invalīdiem
|
UploadDisabled=Augšupielāde bloķēta
|
||||||
MenuECM=Dokumenti
|
MenuECM=Dokumenti
|
||||||
MenuAWStats=AWStats
|
MenuAWStats=AWStats
|
||||||
MenuMembers=Dalībnieki
|
MenuMembers=Dalībnieki
|
||||||
MenuAgendaGoogle=Google programma
|
MenuAgendaGoogle=Google programma
|
||||||
ThisLimitIsDefinedInSetup=Dolibarr robeža (Menu mājas uzstādīšana-drošība): %s Kb, PHP robeža: %s Kb
|
ThisLimitIsDefinedInSetup=Dolibarr robeža (Menu mājas uzstādīšana-drošība): %s Kb, PHP robeža: %s Kb
|
||||||
NoFileFound=Neviens dokuments, kas saglabāti šajā direktorijā
|
NoFileFound=Neviens dokuments nav saglabāts šajā direktorijā
|
||||||
CurrentUserLanguage=Pašreizējā valoda
|
CurrentUserLanguage=Pašreizējā valoda
|
||||||
CurrentTheme=Pašreizējā tēma
|
CurrentTheme=Pašreizējā tēma
|
||||||
CurrentMenuManager=Pašreizējais izvēlne vadītājs
|
CurrentMenuManager=Pašreizējais izvēlne vadītājs
|
||||||
DisabledModules=Invalīdiem moduļi
|
DisabledModules=Bloķētie moduļi
|
||||||
For=Uz
|
For=Uz
|
||||||
ForCustomer=Klientam
|
ForCustomer=Klientam
|
||||||
Signature=Paraksts
|
Signature=Paraksts
|
||||||
HidePassword=Rādīt komanda ar paroli slēptās
|
HidePassword=Rādīt komanda ar paroli slēptās
|
||||||
UnHidePassword=Parādīt savu patieso komandu ar skaidru paroli
|
UnHidePassword=Parādīt savu patieso komandu ar skaidru paroli
|
||||||
Root=Sakne
|
Root=Sakne
|
||||||
Informations=Informations
|
Informations=Informācija
|
||||||
Page=Lappuse
|
Page=Lappuse
|
||||||
Notes=Piezīmes
|
Notes=Piezīmes
|
||||||
AddNewLine=Pievienot jaunu līniju
|
AddNewLine=Pievienot jaunu līniju
|
||||||
AddFile=Pievienot failu
|
AddFile=Pievienot failu
|
||||||
ListOfFiles=Saraksts pieejamo failu
|
ListOfFiles=Saraksts ar pieejamiem failiem
|
||||||
FreeZone=Brīva teksta
|
FreeZone=Brīvs teksts
|
||||||
CloneMainAttributes=Klons objekts ar tās galvenajiem atribūtiem
|
CloneMainAttributes=Klonēt objektu ar tā galvenajiem atribūtiem
|
||||||
PDFMerge=PDF sapludināšana
|
PDFMerge=Apvienot PDF
|
||||||
Merge=Apvienot
|
Merge=Apvienot
|
||||||
PrintContentArea=Rādīt lapu drukāt galveno satura jomā
|
PrintContentArea=Rādīt lapu drukāt galveno satura jomā
|
||||||
MenuManager=Izvēlne vadītājs
|
MenuManager=Izvēlne vadītājs
|
||||||
NoMenu=Nav sub-menu
|
NoMenu=Nav apakš izvēlnes
|
||||||
WarningYouAreInMaintenanceMode=Uzmanību, jums ir uzturēšanas režīmā, lai tikai pieteikšanās <b>%s</b> ir atļauts lietot pieteikumu brīdī.
|
WarningYouAreInMaintenanceMode=Uzmanību, jūs esat uzturēšanas režīmā, t.i. tikai pieteikšanās <b>%s</b> ir atļauts lietot programmu.
|
||||||
CoreErrorTitle=Sistēmas kļūda
|
CoreErrorTitle=Sistēmas kļūda
|
||||||
CoreErrorMessage=Atvainojiet, radās kļūda. Pārbaudiet žurnālus vai sazinieties ar sistēmas administratoru.
|
CoreErrorMessage=Atvainojiet, radās kļūda. Pārbaudiet žurnālus vai sazinieties ar sistēmas administratoru.
|
||||||
CreditCard=Kredītkarte
|
CreditCard=Kredītkarte
|
||||||
FieldsWithAreMandatory=Lauki ar <b>%s</b> ir obligāti
|
FieldsWithAreMandatory=Lauki ar <b>%s</b> ir obligāti aizpildāmi
|
||||||
FieldsWithIsForPublic=Lauki ar <b>%s</b> tiek parādīta sabiedrības locekļu sarakstu. Ja jūs nevēlaties, lai tas, pārbaudīt pie "sabiedrības" lodziņā.
|
FieldsWithIsForPublic=Lauki ar <b>%s</b> parāda sabiedrības locekļu sarakstu. Ja jūs nevēlaties to, tad izņemiet ķeksi pie "sabiedrības" lodziņa.
|
||||||
AccordingToGeoIPDatabase=(Saskaņā ar GeoIP konversiju)
|
AccordingToGeoIPDatabase=(Saskaņā ar GeoIP)
|
||||||
Line=Līnija
|
Line=Līnija
|
||||||
NotSupported=Netiek atbalstīti
|
NotSupported=Netiek atbalstīts
|
||||||
RequiredField=Obligāts lauks
|
RequiredField=Obligāti aizpildāms lauks
|
||||||
Result=Rezultāts
|
Result=Rezultāts
|
||||||
ToTest=Pārbaude
|
ToTest=Pārbaude
|
||||||
ValidateBefore=Karte ir jāapstiprina, pirms lietojat šo funkciju
|
ValidateBefore=Kartiņa ir jāapstiprina, pirms lietojat šo funkciju
|
||||||
Visibility=Redzamība
|
Visibility=Redzamība
|
||||||
Private=Privāts
|
Private=Privāts
|
||||||
Hidden=Slēpts
|
Hidden=Slēpts
|
||||||
@ -627,24 +627,24 @@ Prefix=Priedēklis
|
|||||||
Before=Pirms
|
Before=Pirms
|
||||||
After=Pēc
|
After=Pēc
|
||||||
IPAddress=IP adrese
|
IPAddress=IP adrese
|
||||||
Frequency=Frekvence
|
Frequency=Biežums
|
||||||
IM=Tūlītējā ziņapmaiņa
|
IM=Tūlītējā ziņapmaiņa
|
||||||
NewAttribute=Jauns atribūts
|
NewAttribute=Jauns atribūts
|
||||||
AttributeCode=Atribūts kodu
|
AttributeCode=Atribūts kods
|
||||||
OptionalFieldsSetup=Extra atribūti iestatīšana
|
OptionalFieldsSetup=Papildus atribūtu iestatīšana
|
||||||
URLPhoto=URL foto / logo
|
URLPhoto=URL foto / logo
|
||||||
SetLinkToThirdParty=Saite citai trešajai pusei
|
SetLinkToThirdParty=Saite uz citu trešo pusei
|
||||||
CreateDraft=Izveidot projektu
|
CreateDraft=Izveidot projektu
|
||||||
ClickToEdit=Klikšķiniet, lai rediģētu
|
ClickToEdit=Klikšķiniet, lai rediģētu
|
||||||
ObjectDeleted=Objektu %s svītrots
|
ObjectDeleted=Objekts %s dzēsts
|
||||||
ByCountry=Pēc valsts
|
ByCountry=Pēc valsts
|
||||||
ByTown=Ar pilsētu
|
ByTown=Pēc pilsētas
|
||||||
ByDate=Pēc datuma
|
ByDate=Pēc datuma
|
||||||
ByMonthYear=Pēc mēneša / gadā
|
ByMonthYear=Pēc mēneša / gada
|
||||||
ByYear=Pēc gada
|
ByYear=Pēc gada
|
||||||
ByMonth=pēc mēneša
|
ByMonth=pēc mēneša
|
||||||
ByDay=Līdz dienai
|
ByDay=Pēc dienas
|
||||||
BySalesRepresentative=Ar tirdzniecības pārstāvja
|
BySalesRepresentative=Pēc tirdzniecības pārstāvja
|
||||||
LinkedToSpecificUsers=Saistītas ar noteiktu lietotāja kontaktu
|
LinkedToSpecificUsers=Saistītas ar noteiktu lietotāja kontaktu
|
||||||
DeleteAFile=Izdzēst failu
|
DeleteAFile=Izdzēst failu
|
||||||
ConfirmDeleteAFile=Vai jūs tiešām vēlaties izdzēst failu
|
ConfirmDeleteAFile=Vai jūs tiešām vēlaties izdzēst failu
|
||||||
@ -652,15 +652,15 @@ NoResults=Nav rezultātu
|
|||||||
ModulesSystemTools=Moduļi instrumenti
|
ModulesSystemTools=Moduļi instrumenti
|
||||||
Test=Pārbaude
|
Test=Pārbaude
|
||||||
Element=Elements
|
Element=Elements
|
||||||
NoPhotoYet=Nav bildes pieejamas vēl
|
NoPhotoYet=Nav bildes
|
||||||
HomeDashboard=Sākums kopsavilkums
|
HomeDashboard=Sākums kopsavilkums
|
||||||
Deductible=Pašrisks
|
Deductible=Pašrisks
|
||||||
from=no
|
from=no
|
||||||
toward=uz
|
toward=uz
|
||||||
Access=Pieeja
|
Access=Pieeja
|
||||||
HelpCopyToClipboard=Izmantot taustiņu kombināciju Ctrl + C, lai kopētu uz starpliktuvi
|
HelpCopyToClipboard=Izmantot taustiņu kombināciju Ctrl + C, lai kopētu
|
||||||
SaveUploadedFileWithMask=Saglabāt failu uz servera ar nosaukumu <strong>"%s"</strong> (citādi "%s")
|
SaveUploadedFileWithMask=Saglabāt failu uz servera ar nosaukumu <strong>"%s"</strong> (citādi "%s")
|
||||||
OriginFileName=Nom d'origine
|
OriginFileName=Sākotnējais nosaukums
|
||||||
|
|
||||||
# Week day
|
# Week day
|
||||||
Monday=Pirmdiena
|
Monday=Pirmdiena
|
||||||
@ -684,10 +684,10 @@ Day4=Ceturtdiena
|
|||||||
Day5=Piektdiena
|
Day5=Piektdiena
|
||||||
Day6=Sestdiena
|
Day6=Sestdiena
|
||||||
Day0=Svētdiena
|
Day0=Svētdiena
|
||||||
ShortMonday=M
|
ShortMonday=P
|
||||||
ShortTuesday=T
|
ShortTuesday=O
|
||||||
ShortWednesday=W
|
ShortWednesday=Tr
|
||||||
ShortThursday=T
|
ShortThursday=Ce
|
||||||
ShortFriday=F
|
ShortFriday=P
|
||||||
ShortSaturday=S
|
ShortSaturday=Se
|
||||||
ShortSunday=S
|
ShortSunday=Sv
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
# Dolibarr language file - Source file is en_US - oscommerce
|
# Dolibarr language file - Source file is en_US - oscommerce
|
||||||
OSCommerce=OS Commerce
|
OSCommerce=OS Commerce
|
||||||
OSCommerceSetup=OS Commerce modulis iestatīšana
|
OSCommerceSetup=OS Commerce moduļa konfigurēšana
|
||||||
OSCommerceSetupSaved=OS Commerce uzstādīšana saglabāts
|
OSCommerceSetupSaved=OS Commerce uzstādīšanas konfigurācija saglabāta
|
||||||
OSCommerceServer=OS Commerce servera uzņēmējas / ip
|
OSCommerceServer=OS Commerce servera nosaukums / ip adrese
|
||||||
OSCommerceDatabaseName=OS Commerce datu bāzes nosaukums
|
OSCommerceDatabaseName=OS Commerce datubāzes nosaukums
|
||||||
OSCommercePrefix=OS Commerce tabulas prefiksu
|
OSCommercePrefix=OS Commerce tabulas prefikss
|
||||||
OSCommerceUser=OS Commerce datu bāzes pieteikšanās
|
OSCommerceUser=OS Commerce datu bāzes pieteikšanās vārds
|
||||||
|
|||||||
@ -1,57 +1,57 @@
|
|||||||
# Dolibarr language file - Source file is en_US - products
|
# Dolibarr language file - Source file is en_US - products
|
||||||
ProductRef=Produkta ref.
|
ProductRef=Produkta ref.
|
||||||
ProductLabel=Produkta marķējumā
|
ProductLabel=Produkta marķējums
|
||||||
ProductServiceCard=Produkti / Pakalpojumi karte
|
ProductServiceCard=Produktu / Pakalpojumu kartiņa
|
||||||
Products=Produkti
|
Products=Produkti
|
||||||
Services=Pakalpojumi
|
Services=Pakalpojumi
|
||||||
Product=Produkts
|
Product=Produkts
|
||||||
Service=Apkalpošana
|
Service=Apkalpošana
|
||||||
ProductId=Produkts / pakalpojums id
|
ProductId=Produkta / pakalpojuma id
|
||||||
Create=Izveidot
|
Create=Izveidot
|
||||||
Reference=Atsauces
|
Reference=Atsauce
|
||||||
NewProduct=Jauns produkts
|
NewProduct=Jauns produkts
|
||||||
NewService=Jauns pakalpojums
|
NewService=Jauns pakalpojums
|
||||||
ProductCode=Preces kods
|
ProductCode=Preces kods
|
||||||
ServiceCode=Pakalpojumu kods
|
ServiceCode=Pakalpojuma kods
|
||||||
ProductAccountancyBuyCode=Grāmatvedība kods (pirkt)
|
ProductAccountancyBuyCode=Grāmatvedība kods (pirkt)
|
||||||
ProductAccountancySellCode=Grāmatvedība kods (pārdot)
|
ProductAccountancySellCode=Grāmatvedība kods (pārdot)
|
||||||
ProductOrService=Produkts vai pakalpojums
|
ProductOrService=Produkts vai pakalpojums
|
||||||
ProductsAndServices=Produkti un pakalpojumi
|
ProductsAndServices=Produkti un pakalpojumi
|
||||||
ProductsOrServices=Produkti un pakalpojumi
|
ProductsOrServices=Produkti vai pakalpojumi
|
||||||
ProductsAndServicesOnSell=Pieejamie produkti un pakalpojumi
|
ProductsAndServicesOnSell=Pieejamie produkti un pakalpojumi
|
||||||
ProductsAndServicesNotOnSell=Novecojušas Produkti un pakalpojumi
|
ProductsAndServicesNotOnSell=Novecojušie Produkti un Pakalpojumi
|
||||||
ProductsAndServicesStatistics=Produkti un pakalpojumi statistika
|
ProductsAndServicesStatistics=Produktu un pakalpojumu statistika
|
||||||
ProductsStatistics=Produkti statistika
|
ProductsStatistics=Produktu statistika
|
||||||
ProductsOnSell=Pieejamie produkti
|
ProductsOnSell=Pieejamie produkti
|
||||||
ProductsNotOnSell=Novecojušas ierīces
|
ProductsNotOnSell=Novecojušie produkti
|
||||||
ServicesOnSell=Pieejamie pakalpojumi
|
ServicesOnSell=Pieejamie pakalpojumi
|
||||||
ServicesNotOnSell=Novecojušas pakalpojumi
|
ServicesNotOnSell=Novecojušie pakalpojumi
|
||||||
InternalRef=Iekšējā atsauce
|
InternalRef=Iekšējā atsauce
|
||||||
LastRecorded=Jaunākie produkti / pakalpojumi par pārdot reģistrē
|
LastRecorded=Jaunākie produkti / pakalpojumi par pārdot reģistrē
|
||||||
LastRecordedProductsAndServices=Pēdējās %s reģistrē produktu / pakalpojumu
|
LastRecordedProductsAndServices=Pēdējie %s reģistrētie produkti / pakalpojumi
|
||||||
LastModifiedProductsAndServices=Pēdējās %s modificēta produktu / pakalpojumu
|
LastModifiedProductsAndServices=Pēdējie %s labotie produkti / pakalpojumi
|
||||||
LastRecordedProducts=Pēdējās %s produkti reģistrē
|
LastRecordedProducts=Pēdējie %s reģistrētie produkti
|
||||||
LastRecordedServices=Pēdējās %s ierakstītas pakalpojumi
|
LastRecordedServices=Pēdējie %s reģistrētie pakalpojumi
|
||||||
LastProducts=Pēdējie produkti
|
LastProducts=Pēdējie produkti
|
||||||
CardProduct0=Produkta karte
|
CardProduct0=Produkta kartiņa
|
||||||
CardProduct1=Dienesta apliecība
|
CardProduct1=Paikalpojuma kartiņa
|
||||||
CardContract=Līgums karte
|
CardContract=Līguma kartiņa
|
||||||
Warehouse=Noliktava
|
Warehouse=Noliktava
|
||||||
Warehouses=Noliktavas
|
Warehouses=Noliktavas
|
||||||
WarehouseOpened=Noliktava atvērts
|
WarehouseOpened=Noliktava atvērta
|
||||||
WarehouseClosed=Noliktava slēgts
|
WarehouseClosed=Noliktava slēgta
|
||||||
Stock=Krājums
|
Stock=Krājums
|
||||||
Stocks=Krājumi
|
Stocks=Krājumi
|
||||||
Movement=Kustība
|
Movement=Kustība
|
||||||
Movements=Kustības
|
Movements=Kustības
|
||||||
Sell=Pārdošanas
|
Sell=Pārdošanas
|
||||||
Buy=Iepirkumi
|
Buy=Iepirkumi
|
||||||
OnSell=Pārdod
|
OnSell=Pārdošanai
|
||||||
OnBuy=Iegādei
|
OnBuy=Pirkšanai
|
||||||
NotOnSell=Nav paredzēts pārdošanai
|
NotOnSell=Nav paredzēts pārdošanai
|
||||||
ProductStatusOnSell=Pārdod
|
ProductStatusOnSell=Pārdošanai
|
||||||
ProductStatusNotOnSell=Nav paredzēts pārdošanai
|
ProductStatusNotOnSell=Nav paredzēts pārdošanai
|
||||||
ProductStatusOnSellShort=Pārdod
|
ProductStatusOnSellShort=Pārdošanai
|
||||||
ProductStatusNotOnSellShort=Nav paredzēts pārdošanai
|
ProductStatusNotOnSellShort=Nav paredzēts pārdošanai
|
||||||
ProductStatusOnBuy=Iegādei
|
ProductStatusOnBuy=Iegādei
|
||||||
ProductStatusNotOnBuy=Nav iegādei
|
ProductStatusNotOnBuy=Nav iegādei
|
||||||
@ -60,14 +60,14 @@ ProductStatusNotOnBuyShort=Nav iegādei
|
|||||||
UpdatePrice=Precizēt cenu
|
UpdatePrice=Precizēt cenu
|
||||||
AppliedPricesFrom=Piemērotās cenas no
|
AppliedPricesFrom=Piemērotās cenas no
|
||||||
SellingPrice=Pārdošanas cena
|
SellingPrice=Pārdošanas cena
|
||||||
SellingPriceHT=Pārdošanas cena (bez nodokļiem)
|
SellingPriceHT=Pārdošanas cena (bez PVN)
|
||||||
SellingPriceTTC=Pārdošanas cena (ieskaitot PVN)
|
SellingPriceTTC=Pārdošanas cena (ar PVN)
|
||||||
PublicPrice=Sabiedrības cena
|
PublicPrice=Sabiedrības cena
|
||||||
CurrentPrice=Pašreizējā cena
|
CurrentPrice=Pašreizējā cena
|
||||||
NewPrice=Jaunā cena
|
NewPrice=Jaunā cena
|
||||||
MinPrice=Minim. pārdošanas cena
|
MinPrice=Min. pārdošanas cena
|
||||||
CantBeLessThanMinPrice=Pārdošanas cena nevar būt zemāka par minimālo pieļaujamo šī produkta (%s bez nodokļiem). Šis ziņojums var būt arī parādās, ja esat ievadījis pārāk liela atlaide.
|
CantBeLessThanMinPrice=Pārdošanas cena nevar būt zemāka par minimālo pieļaujamo šī produkta (%s bez PVN). Šis ziņojums var būt arī parādās, ja esat ievadījis pārāk lielu atlaidi.
|
||||||
ContractStatus=Līgums statuss
|
ContractStatus=Līguma statuss
|
||||||
ContractStatusClosed=Slēgts
|
ContractStatusClosed=Slēgts
|
||||||
ContractStatusRunning=Ekspluatācijas
|
ContractStatusRunning=Ekspluatācijas
|
||||||
ContractStatusExpired=beidzies
|
ContractStatusExpired=beidzies
|
||||||
@ -78,9 +78,9 @@ ErrorProductAlreadyExists=Ar atsauci %s produkts jau pastāv.
|
|||||||
ErrorProductBadRefOrLabel=Nepareiza vērtība atsauces vai etiķeti.
|
ErrorProductBadRefOrLabel=Nepareiza vērtība atsauces vai etiķeti.
|
||||||
ErrorProductClone=Radās problēma, mēģinot klons produktu vai pakalpojumu.
|
ErrorProductClone=Radās problēma, mēģinot klons produktu vai pakalpojumu.
|
||||||
Suppliers=Piegādātāji
|
Suppliers=Piegādātāji
|
||||||
SupplierRef=Piegādātāja produktu ref.
|
SupplierRef=Piegādātāja produkta ref.
|
||||||
ShowProduct=Rādīt preci
|
ShowProduct=Rādīt preci
|
||||||
ShowService=Rādīt pakalpojumus
|
ShowService=Rādīt pakalpojumu
|
||||||
ProductsAndServicesArea=Produktu un pakalpojumu jomā
|
ProductsAndServicesArea=Produktu un pakalpojumu jomā
|
||||||
ProductsArea=Ražojumu jomā
|
ProductsArea=Ražojumu jomā
|
||||||
ServicesArea=Pakalpojumu jomā
|
ServicesArea=Pakalpojumu jomā
|
||||||
@ -88,7 +88,7 @@ AddToMyProposals=Pievienot pie maniem priekšlikumiem
|
|||||||
AddToOtherProposals=Pievienot pie citiem priekšlikumiem
|
AddToOtherProposals=Pievienot pie citiem priekšlikumiem
|
||||||
AddToMyBills=Pievienot rēķinus
|
AddToMyBills=Pievienot rēķinus
|
||||||
AddToOtherBills=Pievienot pie citiem rēķiniem
|
AddToOtherBills=Pievienot pie citiem rēķiniem
|
||||||
CorrectStock=Pareiza krājumu
|
CorrectStock=Labot krājumus
|
||||||
AddPhoto=Pievienot foto
|
AddPhoto=Pievienot foto
|
||||||
ListOfStockMovements=Saraksts krājumu pārvietošanu
|
ListOfStockMovements=Saraksts krājumu pārvietošanu
|
||||||
BuyingPrice=Pirkšanas cena
|
BuyingPrice=Pirkšanas cena
|
||||||
@ -98,11 +98,11 @@ AllWays=Ceļš, lai atrastu savu produktu noliktavā
|
|||||||
NoCat=Jūsu produkts nav nevienā kategorijā
|
NoCat=Jūsu produkts nav nevienā kategorijā
|
||||||
PrimaryWay=Primārā ceļš
|
PrimaryWay=Primārā ceļš
|
||||||
PriceRemoved=Cena noņemts
|
PriceRemoved=Cena noņemts
|
||||||
BarCode=Svītrkodu
|
BarCode=Svītrkods
|
||||||
BarcodeType=Svītrkoda veids
|
BarcodeType=Svītrkoda veids
|
||||||
SetDefaultBarcodeType=Uzstādīt svītrkoda tipu
|
SetDefaultBarcodeType=Uzstādīt svītrkoda tipu
|
||||||
BarcodeValue=Svītrkodu vērtība
|
BarcodeValue=Svītrkoda vērtība
|
||||||
NoteNotVisibleOnBill=Piezīme (nav redzama rēķinos, priekšlikumiem ...)
|
NoteNotVisibleOnBill=Piezīme (nav redzama rēķinos, priekšlikumos ...)
|
||||||
CreateCopy=Izveidot kopiju
|
CreateCopy=Izveidot kopiju
|
||||||
ServiceLimitedDuration=Ja produkts ir pakalpojums ir ierobežots darbības laiks:
|
ServiceLimitedDuration=Ja produkts ir pakalpojums ir ierobežots darbības laiks:
|
||||||
MultiPricesAbility=Aktivizēt multi-cenas
|
MultiPricesAbility=Aktivizēt multi-cenas
|
||||||
@ -121,7 +121,7 @@ CategoryFilter=Kategorijas filtrs
|
|||||||
ProductToAddSearch=Meklēt produktu, lai pievienotu
|
ProductToAddSearch=Meklēt produktu, lai pievienotu
|
||||||
AddDel=Pievienot / Dzēst
|
AddDel=Pievienot / Dzēst
|
||||||
Quantity=Daudzums
|
Quantity=Daudzums
|
||||||
NoMatchFound=Sakritības atrasts
|
NoMatchFound=Nekas netika atrasts
|
||||||
ProductAssociationList=Saraksts saistītu produktu / pakalpojumu: nosaukums, produkta / pakalpojuma (daudzums ietekmē)
|
ProductAssociationList=Saraksts saistītu produktu / pakalpojumu: nosaukums, produkta / pakalpojuma (daudzums ietekmē)
|
||||||
ProductParentList=Saraksts virtuālo produktu / pakalpojumu ar šo produktu kā sastāvdaļu
|
ProductParentList=Saraksts virtuālo produktu / pakalpojumu ar šo produktu kā sastāvdaļu
|
||||||
ErrorAssociationIsFatherOfThis=Viens no izvēlētā produkta mātes ar pašreizējo produktu
|
ErrorAssociationIsFatherOfThis=Viens no izvēlētā produkta mātes ar pašreizējo produktu
|
||||||
@ -129,23 +129,23 @@ DeleteProduct=Dzēst produktu / pakalpojumu
|
|||||||
ConfirmDeleteProduct=Vai tiešām vēlaties dzēst šo produktu / pakalpojumu?
|
ConfirmDeleteProduct=Vai tiešām vēlaties dzēst šo produktu / pakalpojumu?
|
||||||
ProductDeleted=Produkts / Pakalpojums "%s" svītro no datu bāzes.
|
ProductDeleted=Produkts / Pakalpojums "%s" svītro no datu bāzes.
|
||||||
DeletePicture=Izdzēstu attēlu
|
DeletePicture=Izdzēstu attēlu
|
||||||
ConfirmDeletePicture=Vai tiešām vēlaties dzēst šo attēlu?
|
ConfirmDeletePicture=Vai tiešām vēlaties izdzēst šo attēlu?
|
||||||
ExportDataset_produit_1=Produkti
|
ExportDataset_produit_1=Produkti
|
||||||
ExportDataset_service_1=Pakalpojumi
|
ExportDataset_service_1=Pakalpojumi
|
||||||
ImportDataset_produit_1=Produkti
|
ImportDataset_produit_1=Produkti
|
||||||
ImportDataset_service_1=Pakalpojumi
|
ImportDataset_service_1=Pakalpojumi
|
||||||
DeleteProductLine=Dzēst produktu līniju
|
DeleteProductLine=Dzēst produktu līniju
|
||||||
ConfirmDeleteProductLine=Vai tiešām vēlaties dzēst šo produktu līniju?
|
ConfirmDeleteProductLine=Vai tiešām vēlaties dzēst šo produktu līniju?
|
||||||
NoProductMatching=Neviens produkts / pakalpojums atbilst jūsu kritērijiem
|
NoProductMatching=Neviens produkts / pakalpojums neatbilst jūsu kritērijiem
|
||||||
MatchingProducts=Matching produktus / pakalpojumus
|
MatchingProducts=Matching produktus / pakalpojumus
|
||||||
NoStockForThisProduct=Nav akciju šim produktam
|
NoStockForThisProduct=Nav akciju šim produktam
|
||||||
NoStock=Nav noliktavā
|
NoStock=Nav noliktavā
|
||||||
Restock=Atjaunotu
|
Restock=Atjaunotu
|
||||||
ProductSpecial=Īpašs
|
ProductSpecial=Īpašs
|
||||||
QtyMin=Minimālā Daudzums
|
QtyMin=Minimālais Daudzums
|
||||||
PriceQty=Cena par šo daudzumu
|
PriceQty=Cena par šo daudzumu
|
||||||
PriceQtyMin=Cena par šo min. Daudzums (w / o atlaide)
|
PriceQtyMin=Cena par šo min. Daudzums (w / o atlaide)
|
||||||
VATRateForSupplierProduct=PVN likme (šī piegādātāja / produkta)
|
VATRateForSupplierProduct=PVN likme (šim piegādātājam / produktam)
|
||||||
DiscountQtyMin=Noklusējuma atlaide qty
|
DiscountQtyMin=Noklusējuma atlaide qty
|
||||||
NoPriceDefinedForThisSupplier=Nē cena / gab definētas šim piegādātājam / produktu
|
NoPriceDefinedForThisSupplier=Nē cena / gab definētas šim piegādātājam / produktu
|
||||||
NoSupplierPriceDefinedForThisProduct=Piegādātājs cena / gab definētas šo produktu
|
NoSupplierPriceDefinedForThisProduct=Piegādātājs cena / gab definētas šo produktu
|
||||||
@ -167,8 +167,8 @@ ClonePricesProduct=Klons galvenos informations un cenas
|
|||||||
CloneCompositionProduct=Klons produkta / pakalpojuma sastāvu
|
CloneCompositionProduct=Klons produkta / pakalpojuma sastāvu
|
||||||
ProductIsUsed=Šis produkts tiek izmantots
|
ProductIsUsed=Šis produkts tiek izmantots
|
||||||
NewRefForClone=Ref. jaunu produktu / pakalpojumu
|
NewRefForClone=Ref. jaunu produktu / pakalpojumu
|
||||||
CustomerPrices=Klienti cenas
|
CustomerPrices=Klientu cenas
|
||||||
SuppliersPrices=Piegādātāji cenas
|
SuppliersPrices=Piegādātāju cenas
|
||||||
CustomCode=Muitas kodekss
|
CustomCode=Muitas kodekss
|
||||||
CountryOrigin=Izcelsmes valsts
|
CountryOrigin=Izcelsmes valsts
|
||||||
HiddenIntoCombo=Slēpta vērā izvēlieties sarakstos
|
HiddenIntoCombo=Slēpta vērā izvēlieties sarakstos
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
# Dolibarr language file - Source file is en_US - shop
|
# Dolibarr language file - Source file is en_US - shop
|
||||||
Shop=Veikals
|
Shop=Veikals
|
||||||
ShopWeb=Interneta veikals
|
ShopWeb=Interneta veikals
|
||||||
LastOrders=Pēdējās pasūtījumi
|
LastOrders=Pēdējie pasūtījumi
|
||||||
OnStandBy=Gaidīšanas režīmā
|
OnStandBy=Gaidīšanas režīmā
|
||||||
TreatmentInProgress=Ārstēšana notiek
|
TreatmentInProgress=Apstrādāšana procesā
|
||||||
LastCustomers=Pēdējās klientiem
|
LastCustomers=Pēdējais klients
|
||||||
OSCommerceShop=OsCommerce veikals
|
OSCommerceShop=OsCommerce veikals
|
||||||
OSCommerce=OsCommerce
|
OSCommerce=OsCommerce
|
||||||
AddProd=Pārdot internetā
|
AddProd=Pārdot internetā
|
||||||
|
|||||||
@ -3,7 +3,7 @@ Sms=Sms
|
|||||||
SmsSetup=Sms iestatīšana
|
SmsSetup=Sms iestatīšana
|
||||||
SmsDesc=Šī lapa ļauj definēt Globālie iespējas, SMS funkcijas
|
SmsDesc=Šī lapa ļauj definēt Globālie iespējas, SMS funkcijas
|
||||||
SmsCard=SMS Card
|
SmsCard=SMS Card
|
||||||
AllSms=Visi SMS campains
|
AllSms=Visas SMS kampaņas
|
||||||
SmsTargets=Mērķi
|
SmsTargets=Mērķi
|
||||||
SmsRecipients=Mērķi
|
SmsRecipients=Mērķi
|
||||||
SmsRecipient=Mērķis
|
SmsRecipient=Mērķis
|
||||||
@ -16,18 +16,18 @@ SmsMessage=SMS ziņojumu
|
|||||||
ShowSms=Rādīt Sms
|
ShowSms=Rādīt Sms
|
||||||
ListOfSms=Saraksts SMS campains
|
ListOfSms=Saraksts SMS campains
|
||||||
NewSms=Jauna SMS informācijas kampaņas
|
NewSms=Jauna SMS informācijas kampaņas
|
||||||
EditSms=Edit Sms
|
EditSms=Labot Sms
|
||||||
ResetSms=Jauns sūtīšana
|
ResetSms=Jauns sūtīšana
|
||||||
DeleteSms=Dzēst Sms informācijas kampaņas
|
DeleteSms=Dzēst Sms informācijas kampaņas
|
||||||
DeleteASms=Noņemt Sms informācijas kampaņas
|
DeleteASms=Noņemt Sms informācijas kampaņas
|
||||||
PreviewSms=Previuw Sms
|
PreviewSms=Previuw Sms
|
||||||
PrepareSms=Sagatavot sms
|
PrepareSms=Sagatavot sms
|
||||||
CreateSms=Izveidojiet SMS
|
CreateSms=Izveidot SMS
|
||||||
SmsResult=Rezultāts SMS nosūtīšanas
|
SmsResult=Rezultāts SMS nosūtīšanas
|
||||||
TestSms=Testa Sms
|
TestSms=Testa Sms
|
||||||
ValidSms=Apstiprināt Sms
|
ValidSms=Apstiprināt Sms
|
||||||
ApproveSms=Apstiprināt Sms
|
ApproveSms=Apstiprināt Sms
|
||||||
SmsStatusDraft=Projekts
|
SmsStatusDraft=Melnraksts
|
||||||
SmsStatusValidated=Validēta
|
SmsStatusValidated=Validēta
|
||||||
SmsStatusApproved=Apstiprināts
|
SmsStatusApproved=Apstiprināts
|
||||||
SmsStatusSent=Nosūtīts
|
SmsStatusSent=Nosūtīts
|
||||||
@ -44,10 +44,10 @@ ConfirmDeleteMailing=Vai varat apstiprināt, likvidējot informācijas kampaņas
|
|||||||
NbOfRecipients=Skaits mērķus
|
NbOfRecipients=Skaits mērķus
|
||||||
NbOfUniqueSms=Nb DOF unikālo tālruņa numuriem
|
NbOfUniqueSms=Nb DOF unikālo tālruņa numuriem
|
||||||
NbOfSms=Nbre no fona numuru
|
NbOfSms=Nbre no fona numuru
|
||||||
ThisIsATestMessage=Šis ir testa ziņojums
|
ThisIsATestMessage=Šī ir testa ziņa
|
||||||
SendSms=Sūti SMS
|
SendSms=Sūti SMS
|
||||||
SmsInfoCharRemain=Nb atlikušo rakstzīmju
|
SmsInfoCharRemain=Nb atlikušo rakstzīmju
|
||||||
SmsInfoNumero= (Formāts starptautiskā ti: 33899701761)
|
SmsInfoNumero= (Formāts starptautiskā ti: 33899701761)
|
||||||
DelayBeforeSending=Kavēšanās pirms nosūtīšanas (minūtes)
|
DelayBeforeSending=Kavēšanās pirms nosūtīšanas (minūtēs)
|
||||||
SmsNoPossibleRecipientFound=Nav mērķa pieejams. Pārbaudiet iestatījumus jūsu SMS pakalpojumu sniedzēja.
|
SmsNoPossibleRecipientFound=Nav mērķa pieejams. Pārbaudiet iestatījumus jūsu SMS pakalpojumu sniedzēja.
|
||||||
|
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
# Dolibarr language file - Source file is en_US - admin
|
# Dolibarr language file - Source file is en_US - admin
|
||||||
WorkflowSetup=Darbplūsmu modulis uzstādīšana
|
WorkflowSetup=Darbplūsmu moduļa iestatīšana
|
||||||
WorkflowDesc=Šis modulis ir paredzēts, lai mainītu uzvedību automātisko darbību stāšanās spēkā. Pēc noklusējuma, darbplūsma ir atvērts (veicat lieta, lai jūs vēlaties). Jūs varat ļāva automātiskas darbības, kas jums ir interesantas collas
|
WorkflowDesc=Šis modulis ir paredzēts, lai mainītu uzvedību automātisko darbību stāšanās spēkā. Pēc noklusējuma, darbplūsma ir atvērta (Jūs varat veikt visu ko vēlaties). Jūs varat automatizēt darbības, kuras Jums ir nepieciešamas
|
||||||
ThereIsNoWorkflowToModify=Nav darbplūsma jūs varat mainīt, lai modulis ir aktivizēts.
|
ThereIsNoWorkflowToModify=Nav darbplūsma kuru Jūs varat mainīt sim modulim.
|
||||||
descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Izveidot klienta pasūtījumu automātiski pēc komerciāla priekšlikums ir parakstīts
|
descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Izveidot klienta pasūtījumu automātiski pēc komerciālā priekšlikuma parakstīšanas
|
||||||
descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Izveidot klientu rēķinu automātiski pēc komerciāla priekšlikums ir parakstīts
|
descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Izveidot klienta rēķinu automātiski pēc komerciāla priekšlikuma parakstīšanas
|
||||||
descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Izveidot klientu rēķinu automātiski pēc tam, kad līgums ir apstiprināts
|
descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Izveidot klientu rēķinu automātiski pēc tam, kad līgums ir apstiprināts
|
||||||
descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Izveidot klientu rēķinu automātiski pēc klienta pasūtījuma tiek slēgts
|
descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Izveidot klientu rēķinu automātiski pēc klienta pasūtījuma slēgšanas
|
||||||
descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Klasificēt saistīta avota priekšlikumu Jāmaksā, ja klientu rīkojumu ir iestatīts uz apmaksātu
|
descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Klasificēt saistīta avota priekšlikumu Jāmaksā, ja klientu rīkojumu ir iestatīts uz apmaksātu
|
||||||
descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Klasificēt saistīts avots klienta pasūtījumu (s) Jāmaksā, ja klients rēķins ir iestatīts uz apmaksātu
|
descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Klasificēt saistīts avots klienta pasūtījumu (s) Jāmaksā, ja klients rēķins ir iestatīts uz apmaksātu
|
||||||
descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Klasificēt saistīta avota klienta pasūtījumu (s) Jāmaksā, ja klients rēķins ir apstiprināts
|
descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Klasificēt saistīta avota klienta pasūtījumu (s) Jāmaksā, ja klients rēķins ir apstiprināts
|
||||||
|
|||||||
@ -698,7 +698,7 @@ else
|
|||||||
$tmpcode='';
|
$tmpcode='';
|
||||||
if (! empty($modCodeProduct->code_auto))
|
if (! empty($modCodeProduct->code_auto))
|
||||||
$tmpcode=$modCodeProduct->getNextValue($object,$type);
|
$tmpcode=$modCodeProduct->getNextValue($object,$type);
|
||||||
print '<td class="fieldrequired" width="20%">'.$langs->trans("Ref").'</td><td><input name="ref" size="40" maxlength="32" value="'.$tmpcode.'">';
|
print '<td class="fieldrequired" width="20%">'.$langs->trans("Ref").'</td><td><input name="ref" size="40" maxlength="32" value="'.dol_escape_htmltag(GETPOST('ref')?GETPOST('ref'):$tmpcode).'">';
|
||||||
if ($_error)
|
if ($_error)
|
||||||
{
|
{
|
||||||
print $langs->trans("RefAlreadyExists");
|
print $langs->trans("RefAlreadyExists");
|
||||||
@ -706,7 +706,7 @@ else
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Label
|
// Label
|
||||||
print '<tr><td class="fieldrequired">'.$langs->trans("Label").'</td><td><input name="libelle" size="40" maxlength="255" value="'.GETPOST('libelle').'"></td></tr>';
|
print '<tr><td class="fieldrequired">'.$langs->trans("Label").'</td><td><input name="libelle" size="40" maxlength="255" value="'.dol_escape_htmltag(GETPOST('libelle')).'"></td></tr>';
|
||||||
|
|
||||||
// On sell
|
// On sell
|
||||||
print '<tr><td class="fieldrequired">'.$langs->trans("Status").' ('.$langs->trans("Sell").')</td><td>';
|
print '<tr><td class="fieldrequired">'.$langs->trans("Status").' ('.$langs->trans("Sell").')</td><td>';
|
||||||
|
|||||||
524
htdocs/societe/class/address.class.php
Normal file
524
htdocs/societe/class/address.class.php
Normal file
@ -0,0 +1,524 @@
|
|||||||
|
<?php
|
||||||
|
/* Copyright (C) 2002-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
* Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
* Copyright (C) 2005-2011 Regis Houssin <regis.houssin@capnetworks.com>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file htdocs/societe/class/address.class.php
|
||||||
|
* \ingroup societe
|
||||||
|
* \brief Fichier de la classe des adresses des tiers
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \class Address
|
||||||
|
* \brief Class to manage addresses
|
||||||
|
*/
|
||||||
|
class Address
|
||||||
|
{
|
||||||
|
var $db;
|
||||||
|
|
||||||
|
var $id;
|
||||||
|
var $type;
|
||||||
|
var $label;
|
||||||
|
var $socid;
|
||||||
|
var $name;
|
||||||
|
var $address;
|
||||||
|
var $zip;
|
||||||
|
var $town;
|
||||||
|
var $country_id;
|
||||||
|
var $country_code;
|
||||||
|
var $phone;
|
||||||
|
var $fax;
|
||||||
|
var $note;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param DoliDB $db Database handler
|
||||||
|
*/
|
||||||
|
function __construct($db)
|
||||||
|
{
|
||||||
|
$this->db = $db;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create address into database
|
||||||
|
*
|
||||||
|
* @param int $socid Company socid
|
||||||
|
* @param User $user Object user making creation
|
||||||
|
* @return int 0 if OK, < 0 if KO
|
||||||
|
*/
|
||||||
|
function create($socid, $user='')
|
||||||
|
{
|
||||||
|
global $langs,$conf;
|
||||||
|
|
||||||
|
// Nettoyage parametres
|
||||||
|
$this->name = trim($this->name);
|
||||||
|
$this->label = trim($this->label);
|
||||||
|
|
||||||
|
dol_syslog(get_class($this)."::create label=".$this->label);
|
||||||
|
|
||||||
|
$this->db->begin();
|
||||||
|
|
||||||
|
$result = $this->verify();
|
||||||
|
|
||||||
|
if ($result >= 0)
|
||||||
|
{
|
||||||
|
$now=dol_now();
|
||||||
|
|
||||||
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."societe_address (label, fk_soc, name, datec, fk_user_creat) ";
|
||||||
|
$sql .= " VALUES ('".$this->db->escape($this->label)."', '".$socid."', '".$this->db->escape($this->name)."', ".$this->db->idate($now).", '".$user->id."')";
|
||||||
|
|
||||||
|
$result=$this->db->query($sql);
|
||||||
|
if ($result)
|
||||||
|
{
|
||||||
|
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."societe_address");
|
||||||
|
|
||||||
|
$ret = $this->update($this->id, $socid, $user);
|
||||||
|
|
||||||
|
if ($ret >= 0)
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this)."::create success id=".$this->id);
|
||||||
|
$this->db->commit();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this)."::create echec update");
|
||||||
|
$this->db->rollback();
|
||||||
|
return -3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
|
||||||
|
{
|
||||||
|
if ($this->db->errno() == 'DB_ERROR_RECORD_ALREADY_EXISTS')
|
||||||
|
{
|
||||||
|
|
||||||
|
$this->error=$langs->trans("ErrorCompanyNameAlreadyExists",$this->nom);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this)."::create echec insert sql=$sql");
|
||||||
|
}
|
||||||
|
$this->db->rollback();
|
||||||
|
return -2;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->db->rollback();
|
||||||
|
dol_syslog(get_class($this)."::create echec verify sql=$sql");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verification lors de la modification de l'adresse
|
||||||
|
*
|
||||||
|
* @return int 0 if OK, <0 if KO
|
||||||
|
*/
|
||||||
|
function verify()
|
||||||
|
{
|
||||||
|
$this->label = trim($this->label);
|
||||||
|
$this->name = trim($this->name);
|
||||||
|
$result = 0;
|
||||||
|
if (!$this->name || !$this->label)
|
||||||
|
{
|
||||||
|
$this->error = "The name of company and the label can not be empty.\n";
|
||||||
|
$result = -2;
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mise a jour des parametres de l'adresse
|
||||||
|
*
|
||||||
|
* @param int $id id address
|
||||||
|
* @param int $socid id third party
|
||||||
|
* @param User $user Utilisateur qui demande la mise a jour
|
||||||
|
* @return int <0 if KO, >=0 if OK
|
||||||
|
*/
|
||||||
|
function update($id, $socid, $user='')
|
||||||
|
{
|
||||||
|
global $langs;
|
||||||
|
|
||||||
|
// Clean parameters
|
||||||
|
$this->fk_soc = $socid;
|
||||||
|
$this->label = trim($this->label);
|
||||||
|
$this->name = trim($this->name);
|
||||||
|
$this->address = trim($this->address);
|
||||||
|
$this->zip = trim($this->zip);
|
||||||
|
$this->town = trim($this->town);
|
||||||
|
$this->country_id = trim($this->country_id);
|
||||||
|
$this->phone = trim($this->phone);
|
||||||
|
$this->phone = preg_replace("/\s/","",$this->phone);
|
||||||
|
$this->phone = preg_replace("/\./","",$this->phone);
|
||||||
|
$this->fax = trim($this->fax);
|
||||||
|
$this->fax = preg_replace("/\s/","",$this->fax);
|
||||||
|
$this->fax = preg_replace("/\./","",$this->fax);
|
||||||
|
$this->note = trim($this->note);
|
||||||
|
|
||||||
|
$result = $this->verify(); // Verifie que nom et label obligatoire
|
||||||
|
|
||||||
|
if ($result >= 0)
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this)."::Update verify ok");
|
||||||
|
|
||||||
|
$this->db->begin();
|
||||||
|
|
||||||
|
$sql = "UPDATE ".MAIN_DB_PREFIX."societe_address";
|
||||||
|
$sql.= " SET label = '" . $this->db->escape($this->label) ."'"; // Champ obligatoire
|
||||||
|
$sql.= ", name = '" . $this->db->escape($this->name) ."'"; // Champ obligatoire
|
||||||
|
$sql.= ", address = ".($this->address?"'".$this->db->escape($this->address)."'":"null");
|
||||||
|
$sql.= ", zip = ".($this->zip?"'".$this->db->escape($this->zip)."'":"null");
|
||||||
|
$sql.= ", town = ".($this->town?"'".$this->db->escape($this->town)."'":"null");
|
||||||
|
$sql.= ", fk_pays = '" . ($this->country_id?$this->db->escape($this->country_id):'0') ."'";
|
||||||
|
$sql.= ", note = ".($this->note?"'".$this->db->escape($this->note)."'":"null");
|
||||||
|
$sql.= ", phone = ".($this->phone?"'".$this->db->escape($this->phone)."'":"null");
|
||||||
|
$sql.= ", fax = ".($this->fax?"'".$this->db->escape($this->fax)."'":"null");
|
||||||
|
if ($user) $sql .= ",fk_user_modif = '".$user->id."'";
|
||||||
|
$sql .= " WHERE fk_soc = '" . $socid ."' AND rowid = '" . $this->db->escape($id) ."'";
|
||||||
|
|
||||||
|
dol_syslog(get_class($this)."::Update sql=".$sql, LOG_DEBUG);
|
||||||
|
$resql=$this->db->query($sql);
|
||||||
|
if ($resql)
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this)."::Update success");
|
||||||
|
$this->db->commit();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ($this->db->errno() == 'DB_ERROR_RECORD_ALREADY_EXISTS')
|
||||||
|
{
|
||||||
|
|
||||||
|
$this->error=$langs->trans("ErrorDuplicateField",$this->name);
|
||||||
|
$result=-1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->error=$this->db->lasterror();
|
||||||
|
dol_syslog(get_class($this)."::Update error sql=".$sql, LOG_ERR);
|
||||||
|
$result=-2;
|
||||||
|
}
|
||||||
|
$this->db->rollback();
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Charge depuis la base toutes les adresses d'une societe
|
||||||
|
*
|
||||||
|
* @param int $socid Id de la societe a charger en memoire
|
||||||
|
* @param User $user Objet de l'utilisateur
|
||||||
|
* @return int >0 si ok, <0 si ko
|
||||||
|
*/
|
||||||
|
function fetch_lines($socid, $user=0)
|
||||||
|
{
|
||||||
|
global $langs, $conf;
|
||||||
|
|
||||||
|
$sql = 'SELECT rowid, nom, client, fournisseur';
|
||||||
|
$sql .= ' FROM '.MAIN_DB_PREFIX.'societe';
|
||||||
|
$sql .= ' WHERE rowid = '.$socid;
|
||||||
|
|
||||||
|
$resqlsoc=$this->db->query($sql);
|
||||||
|
if ($resqlsoc)
|
||||||
|
{
|
||||||
|
if ($this->db->num_rows($resqlsoc))
|
||||||
|
{
|
||||||
|
$obj = $this->db->fetch_object($resqlsoc);
|
||||||
|
|
||||||
|
$this->socname = $obj->nom;
|
||||||
|
$this->socid = $obj->rowid;
|
||||||
|
$this->id = $obj->rowid;
|
||||||
|
$this->client = $obj->client;
|
||||||
|
$this->fournisseur = $obj->fournisseur;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->db->free($resqlsoc);
|
||||||
|
|
||||||
|
$this->lines = array();
|
||||||
|
|
||||||
|
// Adresses liees a la societe
|
||||||
|
if ($this->socid)
|
||||||
|
{
|
||||||
|
$sql = 'SELECT a.rowid as id, a.label, a.name, a.address, a.datec as dc';
|
||||||
|
$sql .= ', a.tms as date_update, a.fk_soc';
|
||||||
|
$sql .= ', a.zip, a.town, a.note, a.fk_pays as country_id, a.phone, a.fax';
|
||||||
|
$sql .= ', p.code as country_code, p.libelle as country';
|
||||||
|
$sql .= ' FROM '.MAIN_DB_PREFIX.'societe_address as a';
|
||||||
|
$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_pays as p ON a.fk_pays = p.rowid';
|
||||||
|
$sql .= ' WHERE a.fk_soc = '.$this->socid;
|
||||||
|
|
||||||
|
$resql=$this->db->query($sql);
|
||||||
|
if ($resql)
|
||||||
|
{
|
||||||
|
$num = $this->db->num_rows($resql);
|
||||||
|
$i = 0;
|
||||||
|
while ($i < $num)
|
||||||
|
{
|
||||||
|
$objp = $this->db->fetch_object($resql);
|
||||||
|
|
||||||
|
$line = new AddressLine($this->db);
|
||||||
|
|
||||||
|
$line->id = $objp->id;
|
||||||
|
$line->date_creation = $this->db->jdate($objp->dc);
|
||||||
|
$line->date_update = $this->db->jdate($objp->date_update);
|
||||||
|
$line->label = $objp->label;
|
||||||
|
$line->name = $objp->name;
|
||||||
|
$line->address = $objp->address;
|
||||||
|
$line->zip = $objp->zip;
|
||||||
|
$line->town = $objp->town;
|
||||||
|
$line->country_id = $objp->country_id;
|
||||||
|
$line->country_code = $objp->country_id?$objp->country_code:'';
|
||||||
|
$line->country = $objp->country_id?($langs->trans('Country'.$objp->country_code)!='Country'.$objp->country_code?$langs->trans('Country'.$objp->country_code):$objp->country):'';
|
||||||
|
$line->phone = $objp->phone;
|
||||||
|
$line->fax = $objp->fax;
|
||||||
|
$line->note = $objp->note;
|
||||||
|
|
||||||
|
$this->lines[$i] = $line;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
$this->db->free($resql);
|
||||||
|
return $num;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this).'::Fetch Erreur: aucune adresse', LOG_ERR);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this).'::Fetch Erreur: societe inconnue', LOG_ERR);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_syslog(get_class($this).'::Fetch '.$this->db->error(), LOG_ERR);
|
||||||
|
$this->error=$this->db->error();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Charge depuis la base l'objet adresse
|
||||||
|
*
|
||||||
|
* @param int $id Id de l'adresse a charger en memoire
|
||||||
|
* @param User $user Objet de l'utilisateur
|
||||||
|
* @return int >0 si ok, <0 si ko
|
||||||
|
*/
|
||||||
|
function fetch_address($id, $user=0)
|
||||||
|
{
|
||||||
|
global $langs;
|
||||||
|
global $conf;
|
||||||
|
|
||||||
|
$sql = 'SELECT a.rowid, a.fk_soc, a.label, a.name, a.address, a.datec as date_creation';
|
||||||
|
$sql .= ', a.tms as date_update';
|
||||||
|
$sql .= ', a.zip, a.town, a.note, a.fk_pays as country_id, a.phone, a.fax';
|
||||||
|
$sql .= ', p.code as country_code, p.libelle as country';
|
||||||
|
$sql .= ' FROM '.MAIN_DB_PREFIX.'societe_address as a';
|
||||||
|
$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_pays as p ON a.fk_pays = p.rowid';
|
||||||
|
$sql .= ' WHERE a.rowid = '.$id;
|
||||||
|
$resql=$this->db->query($sql);
|
||||||
|
if ($resql)
|
||||||
|
{
|
||||||
|
if ($this->db->num_rows($resql))
|
||||||
|
{
|
||||||
|
$obj = $this->db->fetch_object($resql);
|
||||||
|
|
||||||
|
$this->id = $obj->rowid;
|
||||||
|
$this->socid = $obj->fk_soc;
|
||||||
|
|
||||||
|
$this->date_update = $this->db->jdate($obj->date_update);
|
||||||
|
$this->date_creation = $this->db->jdate($obj->date_creation);
|
||||||
|
|
||||||
|
$this->label = $obj->label;
|
||||||
|
$this->name = $obj->name;
|
||||||
|
$this->address = $obj->address;
|
||||||
|
$this->zip = $obj->zip;
|
||||||
|
$this->town = $obj->town;
|
||||||
|
|
||||||
|
$this->country_id = $obj->country_id;
|
||||||
|
$this->country_code = $obj->country_id?$obj->country_code:'';
|
||||||
|
$this->country = $obj->country_id?($langs->trans('Country'.$obj->country_code)!='Country'.$obj->country_code?$langs->trans('Country'.$obj->country_code):$obj->country):'';
|
||||||
|
|
||||||
|
$this->phone = $obj->phone;
|
||||||
|
$this->fax = $obj->fax;
|
||||||
|
$this->note = $obj->note;
|
||||||
|
|
||||||
|
$result = 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_syslog('Erreur Societe::Fetch aucune adresse avec id='.$this->id.' - '.$sql);
|
||||||
|
$this->error='Erreur Societe::Fetch aucune adresse avec id='.$this->id.' - '.$sql;
|
||||||
|
$result = -2;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->db->free($resql);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_syslog('Erreur Societe::Fetch echec sql='.$sql);
|
||||||
|
dol_syslog('Erreur Societe::Fetch '.$this->db->error());
|
||||||
|
$this->error=$this->db->error();
|
||||||
|
$result = -3;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Suppression d'une adresse
|
||||||
|
*
|
||||||
|
* @param int $id id de la societe a supprimer
|
||||||
|
* @param int $socid id third party
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function delete($id,$socid)
|
||||||
|
{
|
||||||
|
dol_syslog("Address::Delete");
|
||||||
|
|
||||||
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."societe_address";
|
||||||
|
$sql.= " WHERE rowid = ".$id;
|
||||||
|
$sql.= " AND fk_soc = ".$socid;
|
||||||
|
|
||||||
|
$result = $this->db->query($sql);
|
||||||
|
|
||||||
|
if (!$result)
|
||||||
|
{
|
||||||
|
print $this->db->error() . '<br>' . $sql;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return name of address with link (and eventually picto)
|
||||||
|
* Use $this->id, $this->label, $this->socid
|
||||||
|
*
|
||||||
|
* @param int $withpicto Include picto with link
|
||||||
|
* @param string $option Where the link point to
|
||||||
|
* @return string String with URL
|
||||||
|
*/
|
||||||
|
function getNomUrl($withpicto=0,$option='')
|
||||||
|
{
|
||||||
|
global $langs;
|
||||||
|
|
||||||
|
$result='';
|
||||||
|
|
||||||
|
$lien = '<a href="'.DOL_URL_ROOT.'/comm/address.php?id='.$this->id.'&socid='.$this->socid.'">';
|
||||||
|
$lienfin='</a>';
|
||||||
|
|
||||||
|
if ($withpicto) $result.=($lien.img_object($langs->trans("ShowAddress").': '.$this->label,'address').$lienfin.' ');
|
||||||
|
$result.=$lien.$this->label.$lienfin;
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Charge les informations d'ordre info dans l'objet societe
|
||||||
|
*
|
||||||
|
* @param int $id id de la societe a charger
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function info($id)
|
||||||
|
{
|
||||||
|
$sql = "SELECT s.rowid, s.nom, datec, datea,";
|
||||||
|
$sql.= " fk_user_creat, fk_user_modif";
|
||||||
|
$sql.= " FROM ".MAIN_DB_PREFIX."societe as s";
|
||||||
|
$sql.= " WHERE s.rowid = ".$id;
|
||||||
|
|
||||||
|
$result=$this->db->query($sql);
|
||||||
|
if ($result)
|
||||||
|
{
|
||||||
|
if ($this->db->num_rows($result))
|
||||||
|
{
|
||||||
|
$obj = $this->db->fetch_object($result);
|
||||||
|
|
||||||
|
$this->id = $obj->rowid;
|
||||||
|
|
||||||
|
if ($obj->fk_user_creat) {
|
||||||
|
$cuser = new User($this->db);
|
||||||
|
$cuser->fetch($obj->fk_user_creat);
|
||||||
|
$this->user_creation = $cuser;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($obj->fk_user_modif) {
|
||||||
|
$muser = new User($this->db);
|
||||||
|
$muser->fetch($obj->fk_user_modif);
|
||||||
|
$this->user_modification = $muser;
|
||||||
|
}
|
||||||
|
$this->ref = $obj->nom;
|
||||||
|
$this->date_creation = $this->db->jdate($obj->datec);
|
||||||
|
$this->date_modification = $this->db->jdate($obj->datea);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->db->free($result);
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dol_print_error($this->db);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \class AddressLine
|
||||||
|
* \brief Class to manage one address line
|
||||||
|
*/
|
||||||
|
class AddressLine
|
||||||
|
{
|
||||||
|
|
||||||
|
var $id;
|
||||||
|
var $date_creation;
|
||||||
|
var $date_update;
|
||||||
|
var $label;
|
||||||
|
var $name;
|
||||||
|
var $address;
|
||||||
|
var $zip;
|
||||||
|
var $town;
|
||||||
|
var $country_id;
|
||||||
|
var $country_code;
|
||||||
|
var $country;
|
||||||
|
var $phone;
|
||||||
|
var $fax;
|
||||||
|
var $note;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param DoliDB $db Database handler
|
||||||
|
*/
|
||||||
|
function __construct($db)
|
||||||
|
{
|
||||||
|
$this->db = $db;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
@ -258,7 +258,7 @@ class DateLibTest extends PHPUnit_Framework_TestCase
|
|||||||
// Check %a and %b format for en_US
|
// Check %a and %b format for en_US
|
||||||
$result=dol_print_date(0,'%a %b',true,$outputlangs);
|
$result=dol_print_date(0,'%a %b',true,$outputlangs);
|
||||||
print __METHOD__." result=".$result."\n";
|
print __METHOD__." result=".$result."\n";
|
||||||
$this->assertEquals('Thu jan',$result);
|
$this->assertEquals('Thu Jan',$result);
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -193,7 +193,7 @@ class DateLibTzFranceTest extends PHPUnit_Framework_TestCase
|
|||||||
// Check %a and %b format for en_US
|
// Check %a and %b format for en_US
|
||||||
$result=dol_print_date(0,'%a %b',false,$outputlangs);
|
$result=dol_print_date(0,'%a %b',false,$outputlangs);
|
||||||
print __METHOD__." result=".$result."\n";
|
print __METHOD__." result=".$result."\n";
|
||||||
$this->assertEquals('Thu jan',$result);
|
$this->assertEquals('Thu Jan',$result);
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user