Merge branch '3.2' of git@github.com:Dolibarr/dolibarr.git into 3.2
This commit is contained in:
commit
3efa77a70f
@ -135,7 +135,7 @@ if ($conf->global->ADHERENT_USE_MAILMAN)
|
||||
'ADHERENT_MAILMAN_LISTS'
|
||||
);
|
||||
|
||||
print_fiche_titre("Mailman mailing list system",$lien,'');
|
||||
print_fiche_titre($langs->trans('MailmanTitle'),$lien,'');
|
||||
|
||||
// JQuery activity
|
||||
print '<script type="text/javascript">
|
||||
|
||||
@ -101,6 +101,9 @@ print "<br>\n";
|
||||
|
||||
if ($action == 'edit') // Edit
|
||||
{
|
||||
//WYSIWYG Editor
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
|
||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||
print '<input type="hidden" name="action" value="update">';
|
||||
@ -132,12 +135,10 @@ if ($action == 'edit') // Edit
|
||||
|
||||
print '</table><br>'."\n";
|
||||
|
||||
|
||||
// Themes
|
||||
show_theme('',1);
|
||||
print '<br>';
|
||||
|
||||
|
||||
// Liste des zone de recherche permanantes supportees
|
||||
print '<table summary="search" class="noborder" width="100%">';
|
||||
print '<tr class="liste_titre"><td width="35%">'.$langs->trans("PermanentLeftSearchForm").'</td><td colspan="2">'.$langs->trans("Activated").'</td></tr>';
|
||||
@ -227,18 +228,19 @@ if ($action == 'edit') // Edit
|
||||
// Message on login page
|
||||
$var=!$var;
|
||||
print '<tr '.$bc[$var].'><td width="35%">'.$langs->trans("MessageLogin").'</td><td colspan="2">';
|
||||
// Editeur wysiwyg
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('main_home',$conf->global->MAIN_HOME,'',142,'dolibarr_notes','In',false,true,true,ROWS_4,90);
|
||||
|
||||
$doleditor = new DolEditor('main_home', $conf->global->MAIN_HOME, '', 142, 'dolibarr_notes', 'In', false, true, true, ROWS_4, 90);
|
||||
$doleditor->Create();
|
||||
|
||||
print '</td></tr>'."\n";
|
||||
|
||||
// Message of the day on home page
|
||||
$var=!$var;
|
||||
print '<tr '.$bc[$var].'><td width="35%">'.$langs->trans("MessageOfDay").'</td><td colspan="2">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('main_motd',$conf->global->MAIN_MOTD,'',142,'dolibarr_notes','In',false,true,true,ROWS_4,90);
|
||||
|
||||
$doleditor = new DolEditor('main_motd', $conf->global->MAIN_MOTD, '', 142, 'dolibarr_notes', 'In', false, true, true, ROWS_4, 90);
|
||||
$doleditor->Create();
|
||||
|
||||
print '</td></tr>'."\n";
|
||||
|
||||
/*
|
||||
|
||||
@ -75,7 +75,7 @@ print "<br>\n";
|
||||
|
||||
// Php
|
||||
print '<table class="noborder" width="100%">';
|
||||
print "<tr class=\"liste_titre\"><td colspan=\"2\">".$langs->trans("Php")."</td></tr>\n";
|
||||
print "<tr class=\"liste_titre\"><td colspan=\"2\">".$langs->trans("PHP")."</td></tr>\n";
|
||||
$phpversion=version_php();
|
||||
print "<tr $bc[0]><td width=\"280\">".$langs->trans("Version")."</td><td>".$phpversion."</td></tr>\n";
|
||||
print "<tr $bc[1]><td>".$langs->trans("PhpWebLink")."</td><td>".php_sapi_name()."</td></tr>\n";
|
||||
|
||||
@ -165,7 +165,7 @@ if ($object->id > 0)
|
||||
|
||||
print '<table class="border"width="100%">';
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/comm/propal/list.php'."?page=$page&socid=$socid&viewstatut=$viewstatut&sortfield=$sortfield&$sortorder".'">'.$langs->trans("BackToList").'</a>';
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/comm/propal.php'."?page=$page&socid=$socid&viewstatut=$viewstatut&sortfield=$sortfield&$sortorder".'">'.$langs->trans("BackToList").'</a>';
|
||||
|
||||
// Ref
|
||||
print '<tr><td width="25%">'.$langs->trans('Ref').'</td><td colspan="3">';
|
||||
|
||||
@ -1480,21 +1480,23 @@ if ($action == 'create' && $user->rights->commande->creer)
|
||||
}
|
||||
}
|
||||
|
||||
//WYSIWYG Editor
|
||||
include_once(DOL_DOCUMENT_ROOT.'/core/modules/commande/modules_commande.php');
|
||||
|
||||
// Template to use by default
|
||||
print '<tr><td>'.$langs->trans('Model').'</td>';
|
||||
print '<td colspan="2">';
|
||||
include_once(DOL_DOCUMENT_ROOT.'/core/modules/commande/modules_commande.php');
|
||||
|
||||
$liste=ModelePDFCommandes::liste_modeles($db);
|
||||
print $form->selectarray('model',$liste,$conf->global->COMMANDE_ADDON_PDF);
|
||||
print "</td></tr>";
|
||||
|
||||
|
||||
// Note publique
|
||||
print '<tr>';
|
||||
print '<td class="border" valign="top">'.$langs->trans('NotePublic').'</td>';
|
||||
print '<td valign="top" colspan="2">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note_public', $note_public, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, 70);
|
||||
|
||||
$doleditor = new DolEditor('note_public', $note_public, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, 70);
|
||||
print $doleditor->Create(1);
|
||||
//print '<textarea name="note_public" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_public.'</textarea>';
|
||||
print '</td></tr>';
|
||||
@ -1505,7 +1507,7 @@ if ($action == 'create' && $user->rights->commande->creer)
|
||||
print '<tr>';
|
||||
print '<td class="border" valign="top">'.$langs->trans('NotePrivate').'</td>';
|
||||
print '<td valign="top" colspan="2">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
$doleditor=new DolEditor('note', $note_private, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, 70);
|
||||
print $doleditor->Create(1);
|
||||
//print '<textarea name="note" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_private.'</textarea>';
|
||||
|
||||
@ -255,6 +255,9 @@ $form = new Form($db);
|
||||
*/
|
||||
if ($action == 'create')
|
||||
{
|
||||
//WYSIWYG Editor
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
print_fiche_titre($langs->trans("NewTrip"));
|
||||
|
||||
dol_htmloutput_errors($mesg);
|
||||
@ -295,9 +298,10 @@ if ($action == 'create')
|
||||
print '<tr>';
|
||||
print '<td class="border" valign="top">'.$langs->trans('NotePublic').'</td>';
|
||||
print '<td valign="top" colspan="2">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note_public',GETPOST('note_public','alpha'),600,200,'dolibarr_notes','In',false,true,true,ROWS_8,100);
|
||||
|
||||
$doleditor = new DolEditor('note_public', GETPOST('note_public', 'alpha'), 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, 100);
|
||||
print $doleditor->Create(1);
|
||||
|
||||
print '</td></tr>';
|
||||
|
||||
// Private note
|
||||
@ -306,9 +310,10 @@ if ($action == 'create')
|
||||
print '<tr>';
|
||||
print '<td class="border" valign="top">'.$langs->trans('NotePrivate').'</td>';
|
||||
print '<td valign="top" colspan="2">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note_private',GETPOST('note_private','alpha'),600,200,'dolibarr_notes','In',false,true,true,ROWS_8,100);
|
||||
|
||||
$doleditor = new DolEditor('note_private', GETPOST('note_private', 'alpha'), 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, 100);
|
||||
print $doleditor->Create(1);
|
||||
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
@ -332,6 +337,9 @@ else if ($id)
|
||||
|
||||
if ($action == 'edit' && $user->rights->deplacement->creer)
|
||||
{
|
||||
//WYSIWYG Editor
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
$soc = new Societe($db);
|
||||
if ($object->socid)
|
||||
{
|
||||
@ -382,9 +390,10 @@ else if ($id)
|
||||
// Public note
|
||||
print '<tr><td valign="top">'.$langs->trans("NotePublic").'</td>';
|
||||
print '<td valign="top" colspan="3">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note_public',$object->note_public,600,200,'dolibarr_notes','In',false,true,true,ROWS_8,'100');
|
||||
|
||||
$doleditor = new DolEditor('note_public', $object->note_public, 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, '100');
|
||||
print $doleditor->Create(1);
|
||||
|
||||
print "</td></tr>";
|
||||
|
||||
// Private note
|
||||
@ -392,9 +401,10 @@ else if ($id)
|
||||
{
|
||||
print '<tr><td valign="top">'.$langs->trans("NotePrivate").'</td>';
|
||||
print '<td valign="top" colspan="3">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note_private',$object->note_private,600,200,'dolibarr_notes','In',false,true,true,ROWS_8,'100');
|
||||
|
||||
$doleditor = new DolEditor('note_private', $object->note_private, 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, '100');
|
||||
print $doleditor->Create(1);
|
||||
|
||||
print "</td></tr>";
|
||||
}
|
||||
|
||||
|
||||
@ -40,7 +40,7 @@ function mailmanspip_admin_prepare_head($object)
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT.'/adherents/admin/spip.php';
|
||||
$head[$h][1] = $langs->trans("Spip");
|
||||
$head[$h][1] = $langs->trans("SPIP");
|
||||
$head[$h][2] = 'spip';
|
||||
$h++;
|
||||
|
||||
|
||||
@ -43,14 +43,14 @@ function calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $txlocalta
|
||||
|
||||
$result=array();
|
||||
|
||||
// We work to define prices using the price without tax
|
||||
$tot_sans_remise = $pu * $qty;
|
||||
$tot_avec_remise_ligne = $tot_sans_remise * (1 - ($remise_percent_ligne / 100));
|
||||
$tot_avec_remise = $tot_avec_remise_ligne * (1 - ($remise_percent_global / 100));
|
||||
|
||||
//dol_syslog("price.lib::calcul_price_total $qty, $pu, $remise_percent_ligne, $txtva, $price_base_type $info_bits");
|
||||
if ($price_base_type == 'HT')
|
||||
{
|
||||
// We work to define prices using the price without tax
|
||||
$tot_sans_remise = $pu * $qty;
|
||||
$tot_avec_remise_ligne = $tot_sans_remise * (1 - ($remise_percent_ligne / 100));
|
||||
$tot_avec_remise = $tot_avec_remise_ligne * (1 - ($remise_percent_global / 100));
|
||||
|
||||
$result[6] = price2num($tot_sans_remise, 'MT');
|
||||
$result[8] = price2num($tot_sans_remise * (1 + ( (($info_bits & 1)?0:$txtva) / 100)), 'MT'); // Selon TVA NPR ou non
|
||||
$result8bis= price2num($tot_sans_remise * (1 + ( $txtva / 100)), 'MT'); // Si TVA consideree normale (non NPR)
|
||||
@ -69,11 +69,6 @@ function calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $txlocalta
|
||||
}
|
||||
else
|
||||
{
|
||||
// We work to define prices using the price with tax
|
||||
$tot_sans_remise = $pu * $qty;
|
||||
$tot_avec_remise_ligne = $tot_sans_remise * (1 - ($remise_percent_ligne / 100));
|
||||
$tot_avec_remise = $tot_avec_remise_ligne * (1 - ($remise_percent_global / 100));
|
||||
|
||||
$result[8] = price2num($tot_sans_remise, 'MT');
|
||||
$result[6] = price2num($tot_sans_remise / (1 + ((($info_bits & 1)?0:$txtva) / 100)), 'MT'); // Selon TVA NPR ou non
|
||||
$result6bis= price2num($tot_sans_remise / (1 + ($txtva / 100)), 'MT'); // Si TVA consideree normale (non NPR)
|
||||
|
||||
@ -670,7 +670,7 @@ function print_left_eldy_menu($db,$menu_array_before,$menu_array_after)
|
||||
$newmenu->add("/admin/limits.php?mainmenu=home", $langs->trans("MenuLimits"),1);
|
||||
$newmenu->add("/admin/pdf.php?mainmenu=home", $langs->trans("PDF"),1);
|
||||
$newmenu->add("/admin/mails.php?mainmenu=home", $langs->trans("Emails"),1);
|
||||
$newmenu->add("/admin/sms.php?mainmenu=home", $langs->trans("Sms"),1);
|
||||
$newmenu->add("/admin/sms.php?mainmenu=home", $langs->trans("SMS"),1);
|
||||
$newmenu->add("/admin/dict.php?mainmenu=home", $langs->trans("DictionnarySetup"),1);
|
||||
$newmenu->add("/admin/const.php?mainmenu=home", $langs->trans("OtherSetup"),1);
|
||||
}
|
||||
|
||||
@ -1118,7 +1118,7 @@ else if ($id > 0 || ! empty($ref))
|
||||
print '<td align="center" nowrap="nowrap">';
|
||||
$timearray=dol_getdate(mktime());
|
||||
if (!GETPOST('diday','int')) $timewithnohour=dol_mktime(0,0,0,$timearray['mon'],$timearray['mday'],$timearray['year']);
|
||||
else $timewithnohour=dol_mktime(GETPOST('dihour','int'),GETPOST('dimin','int'),GETPOST('disec','int'),GETPOST('dimonth','int'),GETPOST('diday','int'),GETPOST('diyear','int'));
|
||||
else $timewithnohour=dol_mktime(GETPOST('dihour','int'),GETPOST('dimin','int'), 0,GETPOST('dimonth','int'),GETPOST('diday','int'),GETPOST('diyear','int'));
|
||||
$form->select_date($timewithnohour,'di',1,1,0,"addinter");
|
||||
print '</td>';
|
||||
|
||||
|
||||
@ -1346,6 +1346,9 @@ if ($id > 0 || ! empty($ref))
|
||||
*/
|
||||
if ($object->statut == 0 && $user->rights->fournisseur->commande->creer && $action <> 'editline')
|
||||
{
|
||||
//WYSIWYG Editor
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>';
|
||||
print '<a name="add"></a>'; // ancre
|
||||
@ -1372,11 +1375,9 @@ if ($id > 0 || ! empty($ref))
|
||||
if ($forceall || ($conf->product->enabled && $conf->service->enabled)
|
||||
|| (empty($conf->product->enabled) && empty($conf->service->enabled))) print '<br>';
|
||||
|
||||
// Editor wysiwyg
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$nbrows=ROWS_2;
|
||||
if (! empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) $nbrows=$conf->global->MAIN_INPUT_DESC_HEIGHT;
|
||||
$doleditor=new DolEditor('dp_desc',$_POST["dp_desc"],'',100,'dolibarr_details','',false,true,$conf->global->FCKEDITOR_ENABLE_DETAILS,$nbrows,70);
|
||||
$doleditor = new DolEditor('dp_desc', $_POST["dp_desc"], '', 100, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_DETAILS, $nbrows, 70);
|
||||
$doleditor->Create();
|
||||
|
||||
print '</td>';
|
||||
@ -1430,11 +1431,9 @@ if ($id > 0 || ! empty($ref))
|
||||
echo $hookmanager->executeHooks('formCreateProductSupplierOptions',$parameters,$object,$action);
|
||||
}
|
||||
|
||||
// Editor wysiwyg
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$nbrows=ROWS_2;
|
||||
if (! empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) $nbrows=$conf->global->MAIN_INPUT_DESC_HEIGHT;
|
||||
$doleditor=new DolEditor('np_desc',$_POST["np_desc"],'',100,'dolibarr_details','',false,true,$conf->global->FCKEDITOR_ENABLE_DETAILS,$nbrows,70);
|
||||
$doleditor = new DolEditor('np_desc', $_POST["np_desc"], '', 100, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_DETAILS, $nbrows, 70);
|
||||
$doleditor->Create();
|
||||
|
||||
print '</td>';
|
||||
|
||||
@ -574,7 +574,6 @@ Port=الميناء
|
||||
VirtualServerName=اسم الخادم الافتراضي
|
||||
AllParameters=جميع البارامترات
|
||||
OS=نظام التشغيل
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=وحدات
|
||||
PhpConf=Conf
|
||||
|
||||
@ -376,8 +376,8 @@ Module85Name=Bancs i caixes
|
||||
Module85Desc=Gestió dels comptes financers de tipus comptes bancaris, postals o efectiu
|
||||
Module100Name=External site
|
||||
Module100Desc=Inclou qualsevol lloc web extern en els menús de Dolibarr, veient-lo en un frame
|
||||
Module105Name=Mailman i Sip
|
||||
Module105Desc=Interface amb Mailman o Spip per al mòdul Membres
|
||||
Module105Name=Mailman i SPIP
|
||||
Module105Desc=Interface amb Mailman o SPIP per al mòdul Membres
|
||||
Module200Name=LDAP
|
||||
Module200Desc=sincronització amb un anuari LDAP
|
||||
Module210Name=PostNuke
|
||||
@ -710,7 +710,6 @@ Port=Port
|
||||
VirtualServerName=Nom del servidor virtual
|
||||
AllParameters=Tots els paràmetres
|
||||
OS=SO
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Mòduls
|
||||
PhpConf=Conf
|
||||
@ -1296,7 +1295,7 @@ BankOrderGlobalDesc=Ordre de visualització general
|
||||
BankOrderES=Espanyol
|
||||
BankOrderESDesc=Ordre de visualització espanyol
|
||||
##### MailmanSpip #####
|
||||
MailmanSpipSetup=Configuració del mòdul Mailman i Spip
|
||||
MailmanSpipSetup=Configuració del mòdul Mailman i SPIP
|
||||
##### Multicompany #####
|
||||
MultiCompanySetup=Configuració del mòdul Multi-empresa
|
||||
##### Suppliers #####
|
||||
|
||||
@ -505,7 +505,6 @@ Port=Port
|
||||
VirtualServerName=Virtual Server navn
|
||||
AllParameters=Alle parametre
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Moduler
|
||||
PhpConf=Conf
|
||||
|
||||
@ -499,7 +499,6 @@ Port=Port
|
||||
VirtualServerName=Virtual Server Name
|
||||
AllParameters=Alle Parameter
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Module
|
||||
PhpConf=Conf
|
||||
|
||||
@ -383,8 +383,8 @@ Module85Name=Banken und Geld
|
||||
Module85Desc=Verwaltung von Bank- oder Bargeldkonten
|
||||
Module100Name=Externe Website
|
||||
Module100Desc=Erlaubt die Einbindung einer externen Website in die Menüs von dolibarr und die Anzeige der Seite innerhalb eines Frames
|
||||
Module105Name=Mailman und Sip
|
||||
Module105Desc=Mailman oder Spip Schnittstelle für die Mitgliedsmodul
|
||||
Module105Name=Mailman und SPIP
|
||||
Module105Desc=Mailman oder SPIP Schnittstelle für die Mitgliedsmodul
|
||||
Module200Name=LDAP
|
||||
Module200Desc=LDAP-Verzeichnissynchronisation
|
||||
Module210Name=PostNuke
|
||||
@ -711,7 +711,6 @@ Port=Port
|
||||
VirtualServerName=Name des Virtual-Server
|
||||
AllParameters=Alle Parameter
|
||||
OS=OS
|
||||
Php=PHP
|
||||
PhpEnv=Env
|
||||
PhpModules=Module
|
||||
PhpConf=Config
|
||||
@ -1291,7 +1290,7 @@ BankOrderGlobalDesc=Allgemeine Anzeige-Reihenfolge
|
||||
BankOrderES=Spanisch
|
||||
BankOrderESDesc=Spanisch Anzeigereihenfolge
|
||||
##### MailmanSpip #####
|
||||
MailmanSpipSetup=Mailman und Spip Modul-Setup
|
||||
MailmanSpipSetup=Mailman und SPIP Modul-Setup
|
||||
##### Multicompany #####
|
||||
MultiCompanySetup=Multi-Company-Moduleinstellungen
|
||||
##### Suppliers #####
|
||||
|
||||
@ -530,7 +530,6 @@ Port=Θύρα
|
||||
VirtualServerName=Virtual server name
|
||||
AllParameters=Όλοι οι παράμετροι
|
||||
OS=Λ.Σ.
|
||||
Php=Php
|
||||
PhpEnv=Περ/λλον
|
||||
PhpModules=Αρθρώματα
|
||||
PhpConf=Conf
|
||||
|
||||
@ -376,8 +376,8 @@ Module85Name=Banks and cash
|
||||
Module85Desc=Management of bank or cash accounts
|
||||
Module100Name=External site
|
||||
Module100Desc=Include any external web site into Dolibarr menus and view it into a Dolibarr frame
|
||||
Module105Name=Mailman and Sip
|
||||
Module105Desc=Mailman or Spip interface for member module
|
||||
Module105Name=Mailman and SPIP
|
||||
Module105Desc=Mailman or SPIP interface for member module
|
||||
Module200Name=LDAP
|
||||
Module200Desc=LDAP directory synchronisation
|
||||
Module210Name=PostNuke
|
||||
@ -704,7 +704,6 @@ Port=Port
|
||||
VirtualServerName=Virtual server name
|
||||
AllParameters=All parameters
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Modules
|
||||
PhpConf=Conf
|
||||
@ -1285,7 +1284,8 @@ BankOrderGlobalDesc=General display order
|
||||
BankOrderES=Spanish
|
||||
BankOrderESDesc=Spanish display order
|
||||
##### MailmanSpip #####
|
||||
MailmanSpipSetup=Mailman and Spip module Setup
|
||||
MailmanSpipSetup=Mailman and SPIP module Setup
|
||||
MailmanTitle=Mailman mailing list system
|
||||
##### Multicompany #####
|
||||
MultiCompanySetup=Multi-company module setup
|
||||
##### Suppliers #####
|
||||
|
||||
@ -61,7 +61,9 @@ PreviewNotAvailable=Vista previa no disponible
|
||||
ThemeCurrentlyActive=Tema actualmente activo
|
||||
CurrentTimeZone=Zona horaria PHP (Servidor)
|
||||
Space=Área
|
||||
Table=Tabla
|
||||
Fields=Campos
|
||||
Index=Índice
|
||||
Mask=Máscara
|
||||
NextValue=Próximo valor
|
||||
NextValueForInvoices=Próximo valor (facturas)
|
||||
@ -88,7 +90,7 @@ NotConfigured=No configurado
|
||||
Setup=Configuración
|
||||
Activation=Activación
|
||||
Active=Activo
|
||||
SetupShort=Config
|
||||
SetupShort=Config.
|
||||
OtherOptions=Otras opciones
|
||||
OtherSetup=Varios
|
||||
CurrentValueSeparatorDecimal=Separador decimal
|
||||
@ -156,6 +158,7 @@ ImportPostgreSqlDesc=Para importar una copia de seguridad, debe usar el comando
|
||||
ImportMySqlCommand=%s %s < miarchivobackup.sql
|
||||
ImportPostgreSqlCommand=%s %s miarchivobackup.sql
|
||||
FileNameToGenerate=Nombre del archivo a generar
|
||||
Compression=Compresión
|
||||
CommandsToDisableForeignKeysForImport=Comando para desactivar las claves excluyentes a la importación
|
||||
ExportCompatibility=Compatibilidad del archivo de exportación generado
|
||||
MySqlExportParameters=Parámetros de la exportación MySql
|
||||
@ -169,7 +172,7 @@ AddDropTable=Añadir órdenes DROP TABLE
|
||||
Datas=Datos
|
||||
NameColumn=Nombre las columnas
|
||||
ExtendedInsert=Instrucciones INSERT extendidas
|
||||
NoLockBeforeInsert=Sin intrucción LOCK antes del INSERT
|
||||
NoLockBeforeInsert=Sin instrucción LOCK antes del INSERT
|
||||
DelayedInsert=Inserciones con retraso
|
||||
EncodeBinariesInHexa=Codificar los campos binarios en hexadecimal
|
||||
IgnoreDuplicateRecords=Ignorar los errores de duplicación (INSERT IGNORE)
|
||||
@ -247,7 +250,7 @@ MAIN_MAIL_SMS_FROM=Número de teléfono por defecto para los envíos SMS
|
||||
FeatureNotAvailableOnLinux=Funcionalidad no disponible en sistemas Unix. Pruebe su sendmail localmente.
|
||||
SubmitTranslation=Si la traducción de este idioma es incompleta o si encuentra errores, puede corregirlos mediante la edición de los archivos en el directorio <b>langs/%s</b> y envíe los cambios al foro www.dolibarr.es.
|
||||
ModuleSetup=Configuración del módulo
|
||||
ModulesSetup=configuración de los módulos
|
||||
ModulesSetup=Configuración de los módulos
|
||||
ModuleFamilyBase=Sistema
|
||||
ModuleFamilyCrm=Gestión cliente (CRM)
|
||||
ModuleFamilyProducts=Gestión productos
|
||||
@ -356,8 +359,8 @@ Module53Name=Servicios
|
||||
Module53Desc=Gestión de servicios
|
||||
Module54Name=Contratos
|
||||
Module54Desc=Gestión de contratos
|
||||
Module55Name=Códigos de barra
|
||||
Module55Desc=Gestión de los códigos de barra
|
||||
Module55Name=Códigos de barras
|
||||
Module55Desc=Gestión de los códigos de barras
|
||||
Module56Name=Telefonía
|
||||
Module56Desc=Gestión de la telefonía
|
||||
Module57Name=Domiciliaciones
|
||||
@ -374,12 +377,12 @@ Module80Name=Expediciones
|
||||
Module80Desc=Gestión de expediciones y recepciones
|
||||
Module85Name=Bancos y cajas
|
||||
Module85Desc=Gestión de las cuentas financieras de tipo cuentas bancarias, postales o efectivo
|
||||
Module100Name=External site
|
||||
Module100Name=Sitio web externo
|
||||
Module100Desc=Incluye cualquier sitio web externo en los menús de Dolibarr, viéndolo en un frame
|
||||
Module105Name=Mailman y Sip
|
||||
Module105Desc=Interface con Mailman o Spip para el módulo Miembros
|
||||
Module105Name=Mailman y SPIP
|
||||
Module105Desc=Interfaz con Mailman o SPIP para el módulo Miembros
|
||||
Module200Name=LDAP
|
||||
Module200Desc=sincronización con un anuario LDAP
|
||||
Module200Desc=Sincronización con un anuario LDAP
|
||||
Module210Name=PostNuke
|
||||
Module210Desc=Integración con PostNuke
|
||||
Module240Name=Exportaciones de datos
|
||||
@ -426,6 +429,7 @@ Module2600Name=WebServices
|
||||
Module2600Desc=Activa los servicios de servidor web services de Dolibarr
|
||||
Module2700Name=Gravatar
|
||||
Module2700Desc=Utiliza el servicio en línea de Gravatar (www.gravatar.com) para mostrar fotos de los usuarios/miembros (que se encuentran en sus mensajes de correo electrónico). Necesita un acceso a Internet
|
||||
Module2800Desc=Cliente FTP
|
||||
Module2900Name=GeoIPMaxmind
|
||||
Module2900Desc=Capacidades de conversión GeoIP Maxmind
|
||||
Module5000Name=Multi-empresa
|
||||
@ -571,9 +575,9 @@ Permission286=Exportar los contactos
|
||||
Permission291=Consultar tarifas
|
||||
Permission292=Definir permisos sobre las tarifas
|
||||
Permission293=Modificar tarifas de clientes
|
||||
Permission300=Consultar códigos de barra
|
||||
Permission301=Crear/modificar códigos de barra
|
||||
Permission302=Eliminar código de barra
|
||||
Permission300=Consultar códigos de barras
|
||||
Permission301=Crear/modificar códigos de barras
|
||||
Permission302=Eliminar código de barras
|
||||
Permission311=Consultar servicios
|
||||
Permission312=Asignar servicios a un contrato
|
||||
Permission331=Consultar marcadores
|
||||
@ -710,17 +714,17 @@ Port=Puerto
|
||||
VirtualServerName=Nombre del servidor virtual
|
||||
AllParameters=Todos los parámetros
|
||||
OS=SO
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Módulos
|
||||
PhpConf=Conf
|
||||
PhpWebLink=Vínculo Web-PHP
|
||||
Pear=Pear
|
||||
PearPackages=Paquetes Pear
|
||||
Browser=Navegador
|
||||
Database=Base de datos
|
||||
DatabaseServer=Host de la base de datos
|
||||
DatabaseName=Nombre de la base de datos
|
||||
DatabasePort=puerto de la base de datos
|
||||
DatabasePort=Puerto de la base de datos
|
||||
DatabaseUser=Login de la base de datos
|
||||
DatabasePassword=Contraseña de la base de datos
|
||||
DatabaseConfiguration=Configuración de la base de datos
|
||||
@ -1147,19 +1151,19 @@ ErrorUnknownSyslogConstant=La constante %s no es una constante syslog conocida
|
||||
DonationsSetup=Configuración del módulo subvenciones
|
||||
DonationsReceiptModel=Modelo recepción de subvenciones
|
||||
##### Barcode #####
|
||||
BarcodeSetup=Configuración de los códigos de barra
|
||||
BarcodeSetup=Configuración de los códigos de barras
|
||||
PaperFormatModule=Módulos de formatos de impresión
|
||||
BarcodeEncodeModule=Módulos de codificación de los códigos de barra
|
||||
UseBarcodeInProductModule=Utilizar los códigos de barra en los productos
|
||||
BarcodeEncodeModule=Módulos de codificación de los códigos de barras
|
||||
UseBarcodeInProductModule=Utilizar los códigos de barras en los productos
|
||||
CodeBarGenerator=Generador del código
|
||||
ChooseABarCode=Ningún generador seleccionado
|
||||
FormatNotSupportedByGenerator=Formato no generado por este generador
|
||||
BarcodeDescEAN8=Códigos de barra tipo EAN8
|
||||
BarcodeDescEAN13=Códigos de barra tipo EAN13
|
||||
BarcodeDescUPC=Códigos de barra tipo UPC
|
||||
BarcodeDescISBN=Códigos de barra tipo ISBN
|
||||
BarcodeDescC39=Códigos de barra tipo C39
|
||||
BarcodeDescC128=Códigos de barra tipo C128
|
||||
BarcodeDescEAN8=Códigos de barras tipo EAN8
|
||||
BarcodeDescEAN13=Códigos de barras tipo EAN13
|
||||
BarcodeDescUPC=Códigos de barras tipo UPC
|
||||
BarcodeDescISBN=Códigos de barras tipo ISBN
|
||||
BarcodeDescC39=Códigos de barras tipo C39
|
||||
BarcodeDescC128=Códigos de barras tipo C128
|
||||
##### Prelevements #####
|
||||
WithdrawalsSetup=Configuración del módulo domiciliaciones
|
||||
##### ExternalRSS #####
|
||||
@ -1291,7 +1295,8 @@ BankOrderGlobalDesc=Orden de visualización general
|
||||
BankOrderES=Español
|
||||
BankOrderESDesc=Orden de visualización español
|
||||
##### MailmanSpip #####
|
||||
MailmanSpipSetup=Configuración del módulo Mailman y Spip
|
||||
MailmanSpipSetup=Configuración del módulo Mailman y SPIP
|
||||
MailmanTitle=Sistema de listas de correo Mailman
|
||||
##### Multicompany #####
|
||||
MultiCompanySetup=Configuración del módulo Multi-empresa
|
||||
##### Suppliers #####
|
||||
|
||||
@ -88,7 +88,7 @@ WrongCustomerCode=Código cliente incorrecto
|
||||
WrongSupplierCode=Código proveedor incorrecto
|
||||
CustomerCodeModel=Modelo de código cliente
|
||||
SupplierCodeModel=Modelo de código proveedor
|
||||
Gencod=Código de barra
|
||||
Gencod=Código de barras
|
||||
##### Professionnal ID #####=
|
||||
ProfId1Short=Prof. id 1
|
||||
ProfId2Short=Prof. id 2
|
||||
|
||||
@ -102,7 +102,7 @@ ErrorLoginDoesNotExists=La cuenta de usuario de <b>%s</b> no se ha encontrado.
|
||||
ErrorLoginHasNoEmail=Este usuario no tiene e-mail. Imposible continuar.
|
||||
ErrorBadValueForCode=Valor incorrecto para el código. Vuelva a intentar con un nuevo valor...
|
||||
ErrorBothFieldCantBeNegative=Los campos %s y %s no pueden ser negativos
|
||||
ErrorNoActivatedBarcode=Ningún tipo de código de barra activado
|
||||
ErrorNoActivatedBarcode=Ningún tipo de código de barras activado
|
||||
ErrorWebServerUserHasNotPermission=La cuenta de ejecución del servidor web <b>%s</b> no dispone de los permisos para esto
|
||||
ErrorNoActivatedBarcode=No hay activado ningún tipo de código de barras
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# Dolibarr language file - es_ES - interventions
|
||||
CHARSET= UTF-8
|
||||
CHARSET=UTF-8
|
||||
Intervention=Intervención
|
||||
Interventions=Intervenciones
|
||||
InterventionCard=Ficha intervención
|
||||
@ -23,6 +23,7 @@ ConfirmModifyIntervention=¿Está seguro de querer modificar esta intervención?
|
||||
ConfirmDeleteInterventionLine=¿Está seguro de querer eliminar esta linea?
|
||||
NameAndSignatureOfInternalContact=Nombre y firma del participante:
|
||||
NameAndSignatureOfExternalContact=Nombre y firma del cliente:
|
||||
DocumentModelStandard=Documento modelo estándar para intervenciones
|
||||
InterventionCardsAndInterventionLines=Fichas y líneas de intervención
|
||||
InterId=Id intervención
|
||||
InterRef=Ref. intervención
|
||||
|
||||
@ -504,7 +504,7 @@ ShowCustomerPreview=Ver historial cliente
|
||||
ShowSupplierPreview=Ver historial proveedor
|
||||
ShowProspectPreview=Ver historial cliente potencial
|
||||
ShowAccountancyPreview=Ver historial contable
|
||||
RefCustomer=Ref. client
|
||||
RefCustomer=Ref. cliente
|
||||
Currency=Divisa
|
||||
InfoAdmin=Información para los administradores
|
||||
Undo=Anular
|
||||
@ -623,6 +623,8 @@ BySalesRepresentative=Por comercial
|
||||
LinkedToSpecificUsers=Enlazado a un contacto de usuario particular
|
||||
DeleteAFile=Eliminación de archivo
|
||||
ConfirmDeleteAFile=Confirma la eliminación del archivo
|
||||
View=Ver
|
||||
Server=Servidor
|
||||
|
||||
# Week day
|
||||
Monday=Lunes
|
||||
|
||||
@ -64,7 +64,7 @@ UnvalidateOrder=Desvalidar el pedido
|
||||
DeleteOrder=Eliminar el pedido
|
||||
CancelOrder=Anular el pedido
|
||||
AddOrder=Crear pedido
|
||||
AddToMyOrders=añadir a mis pedidos
|
||||
AddToMyOrders=Añadir a mis pedidos
|
||||
AddToOtherOrders=Añadir a otros pedidos
|
||||
ShowOrder=Mostrar pedido
|
||||
NoOpenedOrders=Níngun pedido borrador
|
||||
|
||||
@ -100,10 +100,10 @@ NoCat=Su producto no pertenece a ninguna categoría
|
||||
PrimaryWay=Ruta Primaria:
|
||||
DeleteFromCat=Eliminar de la categoría
|
||||
PriceRemoved=Precio eliminado
|
||||
BarCode=Código de barra
|
||||
BarCode=Código de barras
|
||||
BarcodeType=Tipo de código de barras
|
||||
BarcodeValue=Valor del código de barras
|
||||
GenbarcodeLocation=Herramienta generación código de barra en línea de pedido (utilizado por el motor phpbar para determinados tipos de códigos barra)
|
||||
GenbarcodeLocation=Herramienta generación código de barras en línea de pedido (utilizado por el motor phpbar para determinados tipos de códigos barra)
|
||||
SetDefaultBarcodeType=Defina el tipo de código de barras
|
||||
NoteNotVisibleOnBill=Nota (no visible en las facturas, presupuestos, etc.)
|
||||
CreateCopy=Crear cópia
|
||||
@ -156,7 +156,7 @@ ServiceNb=Servicio no %s
|
||||
ListProductServiceByPopularity=Listado de productos/servicios por popularidad
|
||||
ListProductByPopularity=Listado de productos/servicios por popularidad
|
||||
ListServiceByPopularity=Listado de servicios por popularidad
|
||||
Finished=Producto manofacturado
|
||||
Finished=Producto manufacturado
|
||||
RowMaterial=Materia prima
|
||||
CloneProduct=Clonar producto/servicio
|
||||
ConfirmCloneProduct=¿Está seguro de querer clonar el producto o servicio <b>%s</b>?
|
||||
|
||||
@ -380,8 +380,8 @@ Module85Name=Pangad ja raha
|
||||
Module85Desc=Juhtimine pangas või sularaha raamatupidamise
|
||||
Module100Name=Väline veebileht
|
||||
Module100Desc=Sisalda mingeid väliseid WWW Dolibarr menüüd ja vaadata selle Dolibarr raam
|
||||
Module105Name=Mailman ja Sip
|
||||
Module105Desc=Mailman või Spip liides liige moodul
|
||||
Module105Name=Mailman ja SPIP
|
||||
Module105Desc=Mailman või SPIP liides liige moodul
|
||||
Module200Name=LDAP
|
||||
Module200Desc=LDAP kataloogi sünkroniseerimine
|
||||
Module210Name=PostNuke
|
||||
@ -707,7 +707,6 @@ Port=Port
|
||||
VirtualServerName=Virtual server name
|
||||
AllParameters=Kõik parameetrid
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Moodulid
|
||||
PhpConf=Conf
|
||||
@ -1248,7 +1247,7 @@ BankOrderGlobal=Üldine
|
||||
BankOrderGlobalDesc=General kuvamise
|
||||
BankOrderES=Hispaania
|
||||
BankOrderESDesc=Hispaania kuvamise
|
||||
MailmanSpipSetup=Mailman ja Spip moodul Setup
|
||||
MailmanSpipSetup=Mailman ja SPIP moodul Setup
|
||||
MultiCompanySetup=Mitme firma moodul setup
|
||||
SuppliersSetup=Tarnija moodul setup
|
||||
SuppliersCommandModel=Täielik malli tarnija järjekorras (logo. ..)
|
||||
|
||||
@ -585,7 +585,6 @@ Port=الميناء
|
||||
VirtualServerName=اسم الخادم الافتراضي
|
||||
AllParameters=جميع البارامترات
|
||||
OS=نظام التشغيل
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=وحدات
|
||||
PhpConf=Conf
|
||||
|
||||
@ -504,7 +504,6 @@ Port=Port
|
||||
VirtualServerName=Virtuaali-palvelimen nimi
|
||||
AllParameters=Kaikki parametrit
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Moduulit
|
||||
PhpConf=Conf
|
||||
|
||||
@ -377,8 +377,8 @@ Module85Name= Banques et caisses
|
||||
Module85Desc= Gestion des comptes financiers de type Comptes bancaires, postaux ou Caisses liquides
|
||||
Module100Name=External site
|
||||
Module100Desc=Ajoute un site Web externe dans les menus Dolibarr et l'affiche dans un frame Dolibarr
|
||||
Module105Name=Mailman and Sip
|
||||
Module105Desc=Interface vers Mailman ou Spip pour le module Adhérent
|
||||
Module105Name=Mailman and SPIP
|
||||
Module105Desc=Interface vers Mailman ou SPIP pour le module Adhérent
|
||||
Module200Name= LDAP
|
||||
Module200Desc= Synchronisation avec un annuaire LDAP
|
||||
Module210Name= PostNuke
|
||||
@ -711,7 +711,6 @@ Port= Port
|
||||
VirtualServerName= Nom du serveur virtuel
|
||||
AllParameters= Tous les paramètres
|
||||
OS= OS
|
||||
Php= Php
|
||||
PhpEnv= Env
|
||||
PhpModules= Modules
|
||||
PhpConf= Conf
|
||||
@ -1292,7 +1291,7 @@ BankOrderGlobalDesc=Ordre d'affichage général
|
||||
BankOrderES=Espagnol
|
||||
BankOrderESDesc=Ordre d'affichage Espagnol
|
||||
##### MailmanSpip #####
|
||||
MailmanSpipSetup=Configuration du module Mailman et Spip
|
||||
MailmanSpipSetup=Configuration du module Mailman et SPIP
|
||||
##### Multicompany #####
|
||||
MultiCompanySetup=Configuration du module Multi-société
|
||||
##### Suppliers #####
|
||||
|
||||
@ -381,7 +381,7 @@ Module85Desc=ניהול חשבונות בנק או במזומן
|
||||
Module100Name=באתר חיצוני
|
||||
Module100Desc=כולל כל אתר אינטרנט חיצוני בתפריטים Dolibarr ולצפות בו למסגרת Dolibarr
|
||||
Module105Name=הדוור וללגום
|
||||
Module105Desc=הדוור או Spip ממשק מודול חבר
|
||||
Module105Desc=הדוור או SPIP ממשק מודול חבר
|
||||
Module200Name=LDAP
|
||||
Module200Desc=במדריך LDAP סינכרון
|
||||
Module210Name=PostNuke
|
||||
@ -707,7 +707,6 @@ Port=נמל
|
||||
VirtualServerName=שרת וירטואלי שם
|
||||
AllParameters=כל הפרמטרים
|
||||
OS=מערכת ההפעלה
|
||||
Php=PHP
|
||||
PhpEnv=Env
|
||||
PhpModules=מודולים
|
||||
PhpConf=Conf
|
||||
@ -1250,7 +1249,7 @@ BankOrderGlobal=כללי
|
||||
BankOrderGlobalDesc=התצוגה כללי סדר
|
||||
BankOrderES=ספרדית
|
||||
BankOrderESDesc=התצוגה ספרדית כדי
|
||||
MailmanSpipSetup=הדוור ותוכנית ההתקנה Spip מודול
|
||||
MailmanSpipSetup=הדוור ותוכנית ההתקנה SPIP מודול
|
||||
MultiCompanySetup=רב החברה מודול ההתקנה
|
||||
SuppliersSetup=מודול הספק ההתקנה
|
||||
SuppliersCommandModel=תבנית שלמה של הסדר הספק (logo. ..)
|
||||
|
||||
@ -707,7 +707,6 @@ Port=Kikötő
|
||||
VirtualServerName=Virtuális szerver neve
|
||||
AllParameters=Minden paraméter
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Modulok
|
||||
PhpConf=Conf
|
||||
|
||||
@ -634,7 +634,6 @@ Port=Port
|
||||
VirtualServerName=Raunverulegur framreiðslumaður nafn
|
||||
AllParameters=Allir þættir
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Modules
|
||||
PhpConf=Conf
|
||||
@ -1216,8 +1215,8 @@ UrlGenerationParameters=Breytur til að tryggja vefslóðir
|
||||
SecurityTokenIsUnique=Nota einstakt securekey breytu fyrir hvert slóð
|
||||
EnterRefToBuildUrl=Sláðu inn tilvísun til %s mótmæla
|
||||
GetSecuredUrl=Fá reiknað slóð
|
||||
Module105Name=Mailman og Sip
|
||||
Module105Desc=Mailman eða Spip tengi fyrir einingu aðildarríkja
|
||||
Module105Name=Mailman og SPIP
|
||||
Module105Desc=Mailman eða SPIP tengi fyrir einingu aðildarríkja
|
||||
Module50000Name=PayBox
|
||||
Module50000Desc=Module til að bjóða upp á netinu greiðslu síðu með kreditkorti með PayBox
|
||||
Module50200Name=Paypal
|
||||
@ -1288,6 +1287,6 @@ BankOrderGlobal=Almennt
|
||||
BankOrderGlobalDesc=Almennt sýna til
|
||||
BankOrderES=Spænska
|
||||
BankOrderESDesc=Spænska sýna til
|
||||
MailmanSpipSetup=Mailman og Spip mát Skipulag
|
||||
MailmanSpipSetup=Mailman og SPIP mát Skipulag
|
||||
SuppliersInvoiceModel=Heill sniðmát af reikningi birgis (logo. ..)
|
||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 16:28:04).
|
||||
|
||||
@ -534,7 +534,7 @@ LogEvents =Eventi di audit di sicurezza
|
||||
MailingEMailError =Indirizzo email per le mail di errore (Errors-to)
|
||||
MailingEMailFrom =Mittente email (Da) per le email inviate dal modulo mailing
|
||||
MailingSetup =Impostazioni modulo mailing
|
||||
MailmanSpipSetup =Impostazioni Mailman e modulo Spip
|
||||
MailmanSpipSetup =Impostazioni Mailman e modulo SPIP
|
||||
MainDbPasswordFileConfEncrypted =Password del database crittata in conf.php (raccomandato)
|
||||
MAIN_DISABLE_ALL_MAILS =Disabilitare la spedizione di tutti i messaggi email (per test o demo)
|
||||
MAIN_DISABLE_ALL_SMS =Disabilitare tutti gli invii SMS (per scopi di test o demo)
|
||||
@ -618,8 +618,8 @@ Module10000Desc =Modulo per offrire il pagamento online con carta di c
|
||||
Module10000Name =Paybox
|
||||
Module100Desc =Includi un sito esterno nei menu di Dolibarr e visualizzalo in un frame
|
||||
Module100Name =Sito esterno
|
||||
Module105Desc =Interfaccia Mailman o Spip per il modulo membri
|
||||
Module105Name =Mailman e Spip
|
||||
Module105Desc =Interfaccia Mailman o SPIP per il modulo membri
|
||||
Module105Name =Mailman e SPIP
|
||||
Module10Desc =Gestione contabile semplice (fatture e pagamenti)
|
||||
Module10Name =Contabilità
|
||||
Module1200Desc =Integrazione Mantis
|
||||
|
||||
@ -707,7 +707,6 @@ Port=ポート
|
||||
VirtualServerName=仮想サーバー名
|
||||
AllParameters=すべてのパラメータ
|
||||
OS=OS
|
||||
Php=PHP
|
||||
PhpEnv=ENV
|
||||
PhpModules=モジュール
|
||||
PhpConf=confに
|
||||
|
||||
@ -501,7 +501,6 @@ Port=Port
|
||||
VirtualServerName=Virtual server name
|
||||
AllParameters=Alle parametere
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Moduler
|
||||
PhpConf=Conf
|
||||
@ -1244,8 +1243,8 @@ UrlGenerationParameters=Parametre for å sikre nettadresser
|
||||
SecurityTokenIsUnique=Bruk en unik securekey parameter for hver webadresse
|
||||
EnterRefToBuildUrl=Oppgi referanse for objektets %s
|
||||
GetSecuredUrl=Få beregnet URL
|
||||
Module105Name=Mailman og Sip
|
||||
Module105Desc=Mailman eller Spip grensesnitt for medlem modulen
|
||||
Module105Name=Mailman og SPIP
|
||||
Module105Desc=Mailman eller SPIP grensesnitt for medlem modulen
|
||||
Module50000Name=PAYBOX
|
||||
Module50000Desc=Modul å tilby en online betaling side med kredittkort med PAYBOX
|
||||
Module50200Name=Paypal
|
||||
@ -1316,6 +1315,6 @@ BankOrderGlobal=Generelt
|
||||
BankOrderGlobalDesc=Generell visningsrekkefølgen
|
||||
BankOrderES=Spansk
|
||||
BankOrderESDesc=Spansk visningsrekkefølgen
|
||||
MailmanSpipSetup=Mailman og Spip modul Setup
|
||||
MailmanSpipSetup=Mailman og SPIP modul Setup
|
||||
SuppliersInvoiceModel=Komplett mal av leverandør faktura (logo. ..)
|
||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:08:28).
|
||||
|
||||
@ -498,7 +498,6 @@ Port=Port
|
||||
VirtualServerName=Virtuele server naam
|
||||
AllParameters=Alle parameters
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Modules
|
||||
PhpConf=Conf
|
||||
|
||||
@ -1321,8 +1321,8 @@ GetSecuredUrl=Get berekend URL
|
||||
// Reference language: en_US -> nl_NL
|
||||
WebUserGroup=Webserver gebruiker / groep
|
||||
NoLockBeforeInsert=Geen lock-opdrachten rond INSERT
|
||||
Module105Name=Mailman en Sip
|
||||
Module105Desc=Mailman of Spip-interface voor leden-module
|
||||
Module105Name=Mailman en SPIP
|
||||
Module105Desc=Mailman of SPIP-interface voor leden-module
|
||||
Permission50001=Gebruik Verkooppunten
|
||||
SecurityEventsPurged=Beveiliging gebeurtenissen verwijderd
|
||||
ExtraFieldHasWrongValue=Toe te schrijven %s heeft een verkeerde waarde.
|
||||
@ -1330,5 +1330,5 @@ SendmailOptionMayHurtBuggedMTA=Feature om e-mails met behulp van methode "P
|
||||
ServiceSetup=Services module setup
|
||||
ProductServiceSetup=Producten en Diensten modules setup
|
||||
ViewProductDescInThirdpartyLanguageAbility=Visualisatie van producten die beschrijvingen in de thirdparty taal
|
||||
MailmanSpipSetup=Mailman en Spip module Setup
|
||||
MailmanSpipSetup=Mailman en SPIP module Setup
|
||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:12:32).
|
||||
|
||||
@ -505,7 +505,6 @@ Port=Port
|
||||
VirtualServerName=Wirtualne nazwy serwera
|
||||
AllParameters=Wszystkie parametry
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Moduły
|
||||
PhpConf=Conf.
|
||||
|
||||
@ -565,7 +565,6 @@ Port=Porta
|
||||
VirtualServerName=Nome do servidor virtual
|
||||
AllParameters=Todos os parâmetros
|
||||
OS=SO
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Módulos
|
||||
PhpConf=Conf
|
||||
|
||||
@ -545,7 +545,6 @@ Port=Porta
|
||||
VirtualServerName=Nome do servidor virtual
|
||||
AllParameters=Todos os parâmetros
|
||||
OS=SO
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Módulos
|
||||
PhpConf=Conf
|
||||
@ -1244,8 +1243,8 @@ UrlGenerationParameters=Parâmetros para garantir URLs
|
||||
SecurityTokenIsUnique=Use um parâmetro securekey exclusivo para cada URL
|
||||
EnterRefToBuildUrl=Digite referência para %s objeto
|
||||
GetSecuredUrl=Obter URL calculado
|
||||
Module105Name=Mailman e Sip
|
||||
Module105Desc=Mailman ou Spip interface para o módulo membro
|
||||
Module105Name=Mailman e SPIP
|
||||
Module105Desc=Mailman ou SPIP interface para o módulo membro
|
||||
Module50000Name=Paybox
|
||||
Module50000Desc=Módulo para oferecer uma página de pagamento online por cartão de crédito com paybox
|
||||
Module50200Name=Paypal
|
||||
@ -1316,6 +1315,6 @@ BankOrderGlobal=Geral
|
||||
BankOrderGlobalDesc=Ordem de exibição Geral
|
||||
BankOrderES=Espanhol
|
||||
BankOrderESDesc=Ordem de apresentação espanhol
|
||||
MailmanSpipSetup=Mailman e Spip instalação do módulo
|
||||
MailmanSpipSetup=Mailman e SPIP instalação do módulo
|
||||
SuppliersInvoiceModel=Modelo completo da fatura do fornecedor (logo. ..)
|
||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 15:47:43).
|
||||
|
||||
@ -504,7 +504,6 @@ Port=Port
|
||||
VirtualServerName=Virtual server de nume
|
||||
AllParameters=Toţi parametrii
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Module
|
||||
PhpConf=Conf.
|
||||
|
||||
@ -656,7 +656,6 @@ Port=Port
|
||||
VirtualServerName=Wirtualne nazwy serwera
|
||||
AllParameters=Wszystkie parametry
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Moduły
|
||||
PhpConf=Conf.
|
||||
|
||||
@ -503,7 +503,6 @@ Port=Порт
|
||||
VirtualServerName=Виртуальный сервер Имя
|
||||
AllParameters=Все параметры
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Модули
|
||||
PhpConf=Conf
|
||||
|
||||
@ -1288,8 +1288,8 @@ UrlGenerationParameters=Parametri za zagotovitev URL
|
||||
SecurityTokenIsUnique=Uporabite edinstven parameter securekey za vsako URL
|
||||
EnterRefToBuildUrl=Vnesite sklic za predmet %s
|
||||
GetSecuredUrl=Get izračuna URL
|
||||
Module105Name=Mailman in Sip
|
||||
Module105Desc=Mailman ali Spip vmesnik za modul člana
|
||||
Module105Name=Mailman in SPIP
|
||||
Module105Desc=Mailman ali SPIP vmesnik za modul člana
|
||||
SecurityEventsPurged=Varnostni dogodki očistimo
|
||||
ExtraFieldHasWrongValue=Pripišejo %s ima napačno vrednost.
|
||||
SendmailOptionMayHurtBuggedMTA=Funkcija za pošiljanje pošte z uporabo metode "PHP mail DIRECT" bo ustvarila poštno sporočilo, ki ga ni mogoče pravilno razčleniti z nekaterimi, ki so prejemali poštnih strežnikov. Posledica tega je, da so nekatere pošte ne berejo ljudje, ki jih gosti thoose bugged platforme. To je veljalo za nekaj internetnih ponudnikov (npr.: Orange v Franciji). To ni problem v Dolibarr niti v PHP, ampak na prejemanje poštni strežnik. Lahko pa dodate možnost MAIN_FIX_FOR_BUGGED_MTA 1. v setup - drugo spremeniti Dolibarr, da bi se temu izognili. Vendar pa lahko pride do težav z drugimi strežniki, ki spoštujejo strogo standardni SMTP. Druga rešitev (priporočile) je uporaba metode "SMTP socket knjižnice", ki nima slabosti.
|
||||
@ -1300,5 +1300,5 @@ ServiceSetup=Storitve modul nastavitev
|
||||
ProductServiceSetup=Izdelki in storitve moduli za nastavitev
|
||||
ViewProductDescInThirdpartyLanguageAbility=Vizualizacija Poimenovanja izdelkov v thirdparty jeziku
|
||||
AccountancyCode=Računovodstvo zakonik
|
||||
MailmanSpipSetup=Mailman in namestitveni modul Spip
|
||||
MailmanSpipSetup=Mailman in namestitveni modul SPIP
|
||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:31:09).
|
||||
|
||||
@ -640,7 +640,6 @@ Port=Port
|
||||
VirtualServerName=Virtuell server namn
|
||||
AllParameters=Alla parametrar
|
||||
OS=OS
|
||||
Php=Php
|
||||
PhpEnv=Env
|
||||
PhpModules=Moduler
|
||||
PhpConf=Conf
|
||||
|
||||
@ -627,7 +627,6 @@ Port=Port
|
||||
VirtualServerName=Sanal sunucu adı
|
||||
AllParameters=Tüm parametreler
|
||||
OS=İşletim Sistemi
|
||||
Php=Php
|
||||
PhpEnv=Ortam
|
||||
PhpModules=Modüller
|
||||
PhpConf=Yapı
|
||||
@ -1271,7 +1270,7 @@ ProjectsModelModule=Proje raporu belge modeli
|
||||
Permission50001=Satış Noktası kullanın.
|
||||
WebUserGroup=Web sunucusu kullanıcısı/grubu
|
||||
NoLockBeforeInsert=ARAYAEKLE etrafında kilit komutu yok
|
||||
Module105Name=Postacı (Mailman) ve Spip
|
||||
Module105Name=Postacı (Mailman) ve SPIP
|
||||
Module105Desc=Üye modülleri için Postacı (Mailman) ya da SPIP arayüzü
|
||||
SecurityEventsPurged=Güvenlik eylemleri temizlendi
|
||||
ExtraFieldHasWrongValue=Öznitelik %s yanlış bir değerdir.
|
||||
|
||||
@ -631,7 +631,6 @@ Port=港口
|
||||
VirtualServerName=虚拟服务器名称
|
||||
AllParameters=所有参数
|
||||
OS=操作系统
|
||||
Php=腓
|
||||
PhpEnv=包膜
|
||||
PhpModules=模块
|
||||
PhpConf=机密档案
|
||||
|
||||
@ -667,7 +667,10 @@ $helpurl='';
|
||||
if (GETPOST("type") == '0') $helpurl='EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
|
||||
if (GETPOST("type") == '1') $helpurl='EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios';
|
||||
|
||||
llxHeader('',$langs->trans("CardProduct".$_GET["type"]),$helpurl);
|
||||
if (isset($_GET['type'])) $title = $langs->trans('CardProduct'.$_GET['type']);
|
||||
else $title = $langs->trans('ProductServiceCard');
|
||||
|
||||
llxHeader('', $title, $helpurl);
|
||||
|
||||
$form = new Form($db);
|
||||
$formproduct = new FormProduct($db);
|
||||
@ -694,6 +697,9 @@ else
|
||||
// -----------------------------------------
|
||||
if ($action == 'create' && ($user->rights->produit->creer || $user->rights->service->creer))
|
||||
{
|
||||
//WYSIWYG Editor
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
print '<form action="fiche.php" method="post">';
|
||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||
print '<input type="hidden" name="action" value="add">';
|
||||
@ -744,8 +750,7 @@ else
|
||||
// Description (used in invoice, propal...)
|
||||
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td>';
|
||||
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('desc',$_POST["desc"],'',160,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,4,90);
|
||||
$doleditor = new DolEditor('desc', $_POST["desc"], '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 4, 90);
|
||||
$doleditor->Create();
|
||||
|
||||
print "</td></tr>";
|
||||
@ -820,8 +825,8 @@ else
|
||||
|
||||
// Note (private, no output on invoices, propales...)
|
||||
print '<tr><td valign="top">'.$langs->trans("NoteNotVisibleOnBill").'</td><td>';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note',$_POST["note"],'',180,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,8,70);
|
||||
|
||||
$doleditor = new DolEditor('note', $_POST["note"], '', 180, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 8, 70);
|
||||
$doleditor->Create();
|
||||
|
||||
print "</td></tr>";
|
||||
@ -877,6 +882,9 @@ else
|
||||
// Fiche en mode edition
|
||||
if ($action == 'edit' && ($user->rights->produit->creer || $user->rights->service->creer))
|
||||
{
|
||||
//WYSIWYG Editor
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
$type = $langs->trans('Product');
|
||||
if ($object->isservice()) $type = $langs->trans('Service');
|
||||
print_fiche_titre($langs->trans('Modify').' '.$type.' : '.$object->ref, "");
|
||||
@ -931,9 +939,10 @@ else
|
||||
|
||||
// Description (used in invoice, propal...)
|
||||
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td colspan="2">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('desc',$object->description,'',160,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,4,90);
|
||||
|
||||
$doleditor = new DolEditor('desc', $object->description, '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 4, 90);
|
||||
$doleditor->Create();
|
||||
|
||||
print "</td></tr>";
|
||||
print "\n";
|
||||
|
||||
@ -1023,9 +1032,10 @@ else
|
||||
|
||||
// Note
|
||||
print '<tr><td valign="top">'.$langs->trans("NoteNotVisibleOnBill").'</td><td colspan="2">';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note',$object->note,'',200,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,8,70);
|
||||
|
||||
$doleditor = new DolEditor('note', $object->note, '', 200, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 8, 70);
|
||||
$doleditor->Create();
|
||||
|
||||
print "</td></tr>";
|
||||
print '</table>';
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ $transAreaType = $langs->trans("ProductsAndServicesArea");
|
||||
$helpurl='';
|
||||
if (! isset($_GET["type"]))
|
||||
{
|
||||
$transAreaType = $langs->trans("ProductsArea");
|
||||
$transAreaType = $langs->trans("ProductsAndServicesArea");
|
||||
$helpurl='EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
|
||||
}
|
||||
if ((isset($_GET["type"]) && $_GET["type"] == 0) || empty($conf->service->enabled))
|
||||
|
||||
@ -157,6 +157,9 @@ print '</table>';
|
||||
|
||||
if ($_GET["action"] == 'edit')
|
||||
{
|
||||
//WYSIWYG Editor
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
print '<form action="" method="POST">';
|
||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||
print '<input type="hidden" name="action" value="vedit">';
|
||||
@ -168,14 +171,16 @@ if ($_GET["action"] == 'edit')
|
||||
print '<table class="border" width="100%">';
|
||||
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Label').'</td><td><input name="libelle-'.$key.'" size="40" value="'.$product->multilangs[$key]["libelle"].'"></td></tr>';
|
||||
print '<tr><td valign="top" width="15%">'.$langs->trans('Description').'</td><td>';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('desc-'.$key.'',$product->multilangs[$key]["description"],'',160,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
||||
|
||||
$doleditor = new DolEditor("desc-$key", $product->multilangs[$key]["description"], '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
||||
$doleditor->Create();
|
||||
|
||||
print '</td></tr>';
|
||||
print '<tr><td valign="top" width="15%">'.$langs->trans('Note').'</td><td>';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note-'.$key.'',$product->multilangs[$key]["note"],'',160,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
||||
|
||||
$doleditor = new DolEditor("note-$key", $product->multilangs[$key]["note"], '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
||||
$doleditor->Create();
|
||||
|
||||
print '</td></tr>';
|
||||
print '</tr>';
|
||||
print '</table>';
|
||||
@ -232,6 +237,9 @@ print "\n</div>\n";
|
||||
|
||||
if ($_GET["action"] == 'add' && ($user->rights->produit->creer || $user->rights->service->creer))
|
||||
{
|
||||
//WYSIWYG Editor
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
|
||||
print '<br>';
|
||||
print '<form action="" method="post">';
|
||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||
@ -244,14 +252,16 @@ if ($_GET["action"] == 'add' && ($user->rights->produit->creer || $user->rights-
|
||||
print '</td></tr>';
|
||||
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Label').'</td><td><input name="libelle" size="40"></td></tr>';
|
||||
print '<tr><td valign="top" width="15%">'.$langs->trans('Description').'</td><td>';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('desc','','',160,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
||||
|
||||
$doleditor = new DolEditor('desc', '', '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
||||
$doleditor->Create();
|
||||
|
||||
print '</td></tr>';
|
||||
print '<tr><td valign="top" width="15%">'.$langs->trans('Note').'</td><td>';
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||
$doleditor=new DolEditor('note','','',160,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
||||
|
||||
$doleditor = new DolEditor('note', '', '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
||||
$doleditor->Create();
|
||||
|
||||
print '</td></tr>';
|
||||
print '</tr>';
|
||||
print '</table>';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user