Skip to content

Commit

Permalink
Fix [ bug #742 ]
Browse files Browse the repository at this point in the history
and translation of constant description
  • Loading branch information
FHenry committed Mar 3, 2013
1 parent 924d012 commit b0212fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions htdocs/core/modules/modCommande.class.php
Expand Up @@ -80,14 +80,14 @@ function __construct($db)
$this->const[$r][0] = "COMMANDE_ADDON_PDF";
$this->const[$r][1] = "chaine";
$this->const[$r][2] = "einstein";
$this->const[$r][3] = 'Nom du gestionnaire de generation des commandes en PDF';
$this->const[$r][3] = 'Name of PDF model of order';
$this->const[$r][4] = 0;

$r++;
$this->const[$r][0] = "COMMANDE_ADDON";
$this->const[$r][1] = "chaine";
$this->const[$r][2] = "mod_commande_marbre";
$this->const[$r][3] = 'Nom du gestionnaire de numerotation des commandes';
$this->const[$r][3] = 'Name of numbering numerotation rules of order';
$this->const[$r][4] = 0;

$r++;
Expand Down
6 changes: 5 additions & 1 deletion htdocs/core/modules/modFacture.class.php
Expand Up @@ -78,11 +78,15 @@ function __construct($db)
$this->const[$r][0] = "FACTURE_ADDON_PDF";
$this->const[$r][1] = "chaine";
$this->const[$r][2] = "crabe";
$this->const[$r][3] = 'Name of PDF model of invoice';
$this->const[$r][4] = 0;
$r++;

$this->const[$r][0] = "FACTURE_ADDON";
$this->const[$r][1] = "chaine";
$this->const[$r][2] = "terre";
$this->const[$r][2] = "mod_facture_terre";
$this->const[$r][3] = 'Name of numbering numerotation rules of invoice';
$this->const[$r][4] = 0;
$r++;

$this->const[$r][0] = "FACTURE_ADDON_PDF_ODT_PATH";
Expand Down

0 comments on commit b0212fc

Please sign in to comment.