Trad: Traduction des modules de numérotation sociétés
This commit is contained in:
parent
891a783910
commit
856b871f74
@ -79,12 +79,13 @@ print "<br>";
|
|||||||
|
|
||||||
// Choix du module de gestion des codes clients / fournisseurs
|
// Choix du module de gestion des codes clients / fournisseurs
|
||||||
|
|
||||||
print_titre($langs->trans("CustomerCodeChecker"));
|
print_titre($langs->trans("CompanyCodeChecker"));
|
||||||
|
|
||||||
print "<table class=\"noborder\" width=\"100%\">\n";
|
print "<table class=\"noborder\" width=\"100%\">\n";
|
||||||
print "<tr class=\"liste_titre\">\n";
|
print "<tr class=\"liste_titre\">\n";
|
||||||
print ' <td>'.$langs->trans("Name").'</td>';
|
print ' <td>'.$langs->trans("Name").'</td>';
|
||||||
print ' <td>'.$langs->trans("Description").'</td>';
|
print ' <td>'.$langs->trans("Description").'</td>';
|
||||||
|
print ' <td>'.$langs->trans("Example").'</td>';
|
||||||
print ' <td align="center">'.$langs->trans("Activated").'</td>';
|
print ' <td align="center">'.$langs->trans("Activated").'</td>';
|
||||||
print ' <td> </td>';
|
print ' <td> </td>';
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
@ -104,11 +105,12 @@ if ($handle)
|
|||||||
|
|
||||||
require_once(DOL_DOCUMENT_ROOT ."/includes/modules/societe/".$file.".php");
|
require_once(DOL_DOCUMENT_ROOT ."/includes/modules/societe/".$file.".php");
|
||||||
|
|
||||||
$modCodeClient = new $file;
|
$modCodeTiers = new $file;
|
||||||
$var = !$var;
|
$var = !$var;
|
||||||
print "<tr ".$bc[$var].">\n <td width=\"140\">".$modCodeClient->nom."</td>\n <td>";
|
print "<tr ".$bc[$var].">\n <td width=\"140\">".$modCodeTiers->nom."</td>\n <td>";
|
||||||
print $modCodeClient->info();
|
print $modCodeTiers->info($langs);
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
|
print '<td nowrap="nowrap">'.$modCodeTiers->getExample($langs)."</td>\n";
|
||||||
|
|
||||||
if ($conf->global->SOCIETE_CODECLIENT_ADDON == "$file")
|
if ($conf->global->SOCIETE_CODECLIENT_ADDON == "$file")
|
||||||
{
|
{
|
||||||
@ -142,6 +144,7 @@ print '<table class="noborder" width="100%">';
|
|||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td>'.$langs->trans("Name").'</td>';
|
print '<td>'.$langs->trans("Name").'</td>';
|
||||||
print '<td>'.$langs->trans("Description").'</td>';
|
print '<td>'.$langs->trans("Description").'</td>';
|
||||||
|
print '<td>'.$langs->trans("Example").'</td>';
|
||||||
print '<td align="center">'.$langs->trans("Activated").'</td>';
|
print '<td align="center">'.$langs->trans("Activated").'</td>';
|
||||||
print '<td> </td>';
|
print '<td> </td>';
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
@ -164,9 +167,11 @@ if ($handle)
|
|||||||
$modCodeCompta = new $file;
|
$modCodeCompta = new $file;
|
||||||
$var = !$var;
|
$var = !$var;
|
||||||
|
|
||||||
print '<tr '.$bc[$var].'><td width="140">'.$modCodeCompta->nom."</td><td>\n";
|
print '<tr '.$bc[$var].'>';
|
||||||
print $modCodeCompta->info();
|
print '<td width="140">'.$modCodeCompta->nom."</td><td>\n";
|
||||||
|
print $modCodeCompta->info($langs);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
print '<td nowrap="nowrap">'.$modCodeCompta->getExample($langs)."</td>\n";
|
||||||
|
|
||||||
if ($conf->global->SOCIETE_CODECOMPTA_ADDON == "$file")
|
if ($conf->global->SOCIETE_CODECOMPTA_ADDON == "$file")
|
||||||
{
|
{
|
||||||
@ -192,5 +197,5 @@ print "</table>\n";
|
|||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooter();
|
llxFooter('$Date$ - $Revision$');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -336,8 +336,11 @@ RuleForGeneratedPasswords=Rule to generate suggested passwords
|
|||||||
DoNotSuggest=Do not suggest any password
|
DoNotSuggest=Do not suggest any password
|
||||||
##### Company setup #####
|
##### Company setup #####
|
||||||
CompanySetup=Companies module setup
|
CompanySetup=Companies module setup
|
||||||
CustomerCodeChecker=Module for checking customer's code
|
CompanyCodeChecker=Module for checking third parties code (customer or supplier)
|
||||||
AccountCodeManager=Module for managing accountancy code
|
AccountCodeManager=Module for managing accountancy code (customer or supplier)
|
||||||
|
ModuleCompanyCodeAquarium=Return an accountancy code built by "401" followed by third party supplier code for a supplier accountancy code, and "411" followed by third party customer code for a customer accountancy code
|
||||||
|
ModuleCompanyCodePanicum=Return an accountancy code that is always same than the one typed. For test use
|
||||||
|
ModuleCompanyCodeDigitaria=Accountancy code depends on third party code. Le code est composé du caractère 'C' en première position suivi des 5 premiers caractères du code tiers.
|
||||||
##### Webcal setup #####
|
##### Webcal setup #####
|
||||||
WebCalSetup=Webcalendar link setup
|
WebCalSetup=Webcalendar link setup
|
||||||
WebCalSyncro=Add Dolibarr events to WebCalendar
|
WebCalSyncro=Add Dolibarr events to WebCalendar
|
||||||
|
|||||||
@ -336,8 +336,11 @@ RuleForGeneratedPasswords=R
|
|||||||
DoNotSuggest=Ne pas proposer
|
DoNotSuggest=Ne pas proposer
|
||||||
##### Company setup #####
|
##### Company setup #####
|
||||||
CompanySetup=Configuration du module Sociétés
|
CompanySetup=Configuration du module Sociétés
|
||||||
CustomerCodeChecker=Module de contrôle des codes clients
|
CompanyCodeChecker=Module de contrôle des codes tiers (clients/fournisseurs)
|
||||||
AccountCodeManager=Module de gestion des codes compta
|
AccountCodeManager=Module de gestion des codes compta (clients/fournisseurs)
|
||||||
|
ModuleCompanyCodeAquarium=Renvoie un code compta composé de 401 suivi du code tiers fournisseur pour le code compta fournisseur, et 411 suivi du code tiers client pour le code compta client
|
||||||
|
ModuleCompanyCodePanicum=Renvoie un code compta identique à celui saisi. Module dédié aux tests
|
||||||
|
ModuleCompanyCodeDigitaria=Renvoie un code compta composé suivant le code tiers. Le code est composé du caractère 'C' en première position suivi des 5 premiers caractères du code tiers.
|
||||||
##### Webcal setup #####
|
##### Webcal setup #####
|
||||||
WebCalSetup=Configuration du lien vers le calendrier Webcalendar
|
WebCalSetup=Configuration du lien vers le calendrier Webcalendar
|
||||||
WebCalSyncro=Intégrer les évênements Dolibarr dans WebCalendar
|
WebCalSyncro=Intégrer les évênements Dolibarr dans WebCalendar
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user