From 60efe5734f570bda58acb2ec39695e9d526d1054 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 27 Feb 2014 09:36:09 +0100 Subject: [PATCH 1/4] anglicized --- htdocs/barcode/codeinit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/barcode/codeinit.php b/htdocs/barcode/codeinit.php index f01e592d1d5..24f9a6b779b 100644 --- a/htdocs/barcode/codeinit.php +++ b/htdocs/barcode/codeinit.php @@ -28,7 +28,7 @@ $langs->load("admin"); $langs->load("members"); $langs->load("errors"); -// Choix de l'annee d'impression ou annee courante. +// Choice of print year or current year. $now = dol_now(); $year=dol_print_date($now,'%Y'); $month=dol_print_date($now,'%m'); From 4a6fab2b0084f0c09b78964c813c298395c2d46a Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 27 Feb 2014 09:42:00 +0100 Subject: [PATCH 2/4] anglicized --- htdocs/barcode/printsheet.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/barcode/printsheet.php b/htdocs/barcode/printsheet.php index aa2be8d136f..ea3175d9277 100644 --- a/htdocs/barcode/printsheet.php +++ b/htdocs/barcode/printsheet.php @@ -32,7 +32,7 @@ $langs->load("admin"); $langs->load("members"); $langs->load("errors"); -// Choix de l'annee d'impression ou annee courante. +// Choice of print year or current year. $now = dol_now(); $year=dol_print_date($now,'%Y'); $month=dol_print_date($now,'%m'); @@ -57,7 +57,7 @@ $thirdpartytmp=new Societe($db); if (GETPOST('submitproduct') && GETPOST('submitproduct')) { - $action=''; // We reset because we dont want to build doc + $action=''; // We reset because we don't want to build doc if (GETPOST('productid') > 0) { $producttmp->fetch(GETPOST('productid')); @@ -74,7 +74,7 @@ if (GETPOST('submitproduct') && GETPOST('submitproduct')) } if (GETPOST('submitthirdparty') && GETPOST('submitthirdparty')) { - $action=''; // We reset because we dont want to build doc + $action=''; // We reset because we don't want to build doc if (GETPOST('socid') > 0) { $thirdpartytmp->fetch(GETPOST('socid')); From 1223e6a08b4a48c02647f3c5fb543a0b13024dc8 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 27 Feb 2014 09:54:31 +0100 Subject: [PATCH 3/4] anglicized --- .../barcode/mod_barcode_product_standard.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/htdocs/core/modules/barcode/mod_barcode_product_standard.php b/htdocs/core/modules/barcode/mod_barcode_product_standard.php index c7a48c80b2f..2d298712162 100644 --- a/htdocs/core/modules/barcode/mod_barcode_product_standard.php +++ b/htdocs/core/modules/barcode/mod_barcode_product_standard.php @@ -33,17 +33,17 @@ require_once DOL_DOCUMENT_ROOT.'/core/modules/barcode/modules_barcode.class.php' */ class mod_barcode_product_standard extends ModeleNumRefBarCode { - var $nom='Standard'; // Nom du modele - var $code_modifiable; // Code modifiable - var $code_modifiable_invalide; // Code modifiable si il est invalide - var $code_modifiable_null; // Code modifiables si il est null - var $code_null; // Code facultatif + var $nom='Standard'; // Model Name + var $code_modifiable; // Editable code + var $code_modifiable_invalide; // Modified code if it is invalid + var $code_modifiable_null; // Modified code if it is null + var $code_null; // Optional code var $version='dolibarr'; // 'development', 'experimental', 'dolibarr' - var $code_auto; // Numerotation automatique + var $code_auto; // Automatic Numbering - var $searchcode; // String de recherche - var $numbitcounter; // Nombre de chiffres du compteur - var $prefixIsRequired; // Le champ prefix du tiers doit etre renseigne quand on utilise {pre} + var $searchcode; // Search string + var $numbitcounter; // Number of digits the counter + var $prefixIsRequired; // The prefix field of third party must be filled when using {pre} /** From 5c4ceb1a5319a0725c1a4d080aeec8a03f5dfc58 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 27 Feb 2014 10:06:11 +0100 Subject: [PATCH 4/4] anglicized --- .../modules/barcode/modules_barcode.class.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/htdocs/core/modules/barcode/modules_barcode.class.php b/htdocs/core/modules/barcode/modules_barcode.class.php index 888d714d63a..345ed5ef16d 100644 --- a/htdocs/core/modules/barcode/modules_barcode.class.php +++ b/htdocs/core/modules/barcode/modules_barcode.class.php @@ -25,7 +25,7 @@ require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php'; /** - * Parent class for barcode document modules + * Parent class for barcode document models */ abstract class ModeleBarCode { @@ -33,9 +33,9 @@ abstract class ModeleBarCode /** - * Return if a module can be used or not + * Return if a model can be used or not * - * @return boolean true if module can be used + * @return boolean true if model can be used */ function isEnabled() { @@ -46,16 +46,16 @@ abstract class ModeleBarCode /** - * Parent class for barcode numbering modules + * Parent class for barcode numbering models */ abstract class ModeleNumRefBarCode { var $error=''; - /** Renvoi la description par defaut du modele de numerotation + /** Return default description of numbering model * * @param Translate $langs Object langs - * @return string Texte descripif + * @return string Descriptive text */ function info($langs) { @@ -63,17 +63,17 @@ abstract class ModeleNumRefBarCode return $langs->trans("NoDescription"); } - /** Renvoi nom module + /** Return model name * * @param Translate $langs Object langs - * @return string Nom du module + * @return string Model name */ function getNom($langs) { return $this->nom; } - /** Renvoi un exemple de numerotation + /** Return a numbering example * * @param Translate $langs Object langs * @return string Example