mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-22 02:34:59 -04:00
* fix(security): handle special characters in `.env` key values and improve insertion logic - Escape backslashes and dollar signs in `applyEnvKeyReplacement` to prevent unintended value corruption. - Ensure new keys are inserted after `encryption.key` for better organization and manageability. - Add explicit cast to int to prevent wrong concatenation operator warning. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(security): handle null return in `applyEnvKeyReplacement` and ensure proper `.env` updates - Update `applyEnvKeyReplacement` to return `null` on failure, improving error handling. - Adjust calls to `atomicWriteFile` with updated content to prevent unintended behavior. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(security): improve error logging and exception messages in file locking - Add detailed logging for file open and locking errors in `security_helper`. - Remove unused `helper` and `checkThrottleEncryption` calls from `Events` for cleanup. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(security): improve atomic file write and handle encryption key placement - Throw `RandomException` for better error reporting in `atomicWriteFile`. - Simplify Windows-specific `rename()` fallback logic. - Fix `encryption.key` assignment order to ensure consistency in `.env` updates. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(security): improve `.env` file handling and add unit tests for helper functions - Suppress warnings in `file_get_contents` to prevent unnecessary error logs. - Update `applyEnvKeyReplacement` to use `preg_replace_callback` for better safety. - Add comprehensive unit tests for `security_helper` functions to ensure `.env` updates and key management work as expected. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(security): enhance `.env` update logic and add robust exception handling - Add `RandomException` to improve error reporting in encryption key management. - Introduce environment file locking for safer `.env` updates. - Ensure `applyEnvKeyReplacement` properly handles and inserts old key comments. - Replace direct file writes with `atomicWriteFile` for consistency. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(security): refactor `.env` file initialization and encryption key handling - Introduce `initializeEnvFile` for reusable `.env` setup logic. - Add `backupEnvFile` and `writeNewEncryptionKey` for robust key management with backups. - Simplify and clean up redundant `.env` handling code paths. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(security): clarify `checkEncryption` docblock return value description Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(security): escape backslashes and dollar signs in `applyEnvKeyReplacement` - Ensure `applyEnvKeyReplacement` properly escapes special characters when inserting or appending `.env` keys. - Add new unit tests to validate correct handling of backslashes and dollar signs. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * fix(i18n): add localized error messages and improve error reporting in `security_helper` - Add missing translations for error messages across multiple language files. - Update `security_helper` to use localized exception messages with placeholders. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> * Redesign encryption/throttle key provisioning as read-only runtime - checkEncryption()/checkThrottleEncryption() are now read-only guards that throw when no valid key is provisioned, instead of writing .env at request time. - Add rotateEncryptionKey() and provisionThrottleKey() for explicit, idempotent provisioning. - Add php spark env:provision (app/Commands/EnvProvision.php) so Docker can provision keys once at container startup before any request. - Add app/Libraries/CI3SecretConverter.php shared CI3->CI4 secret converter (AES-128-CBC decrypt + CI4 re-encrypt/verify/save) used by both the interactive migration and the docker startup path. - Refactor convertToCI4 migration to use the shared converter. - Persist .env in a named volume and run spark env:provision on boot; stop baking .env into the shipped image. - Add guard/rotation/throttle + converter tests; clean up orphaned msg_pwd_required language keys across all locales. * fix: save CI4 ciphertext in env:provision and bind-mount a .env file Addresses CodeRabbit review on PR #4656: - env:provision CI3 branch was persisting *plaintext* secrets (saveAll($plain)) instead of the CI4 ciphertext, unlike the ConvertToCI4 migration. Now encrypts with encryptAll(), verifies the round trip, and saves the ciphertext. - The ospos_env named volume mounted at /app/.env made .env a directory, so atomicWriteFile's rename() failed and spark env:provision could not start apache. Switch to a bind mount of a host file (./.env) which persists and stays a file. - Add a regression test asserting the command persists ciphertext (not plaintext). * chore: trim redundant docblocks in EnvProvision and provision throttle.key in CI Follow up on @objecttothis review comments: - app/Commands/EnvProvision.php: remove the boilerplate docblocks the property names already convey (group/name/usage/description, run()), the two inline step comments, the anyNonEmpty() param docblock, and the legacySecretsPresent() docblock. Keeps the class-level docblock since it is the only place that states the read-only runtime design + the never-persist-plaintext invariant. - .github/workflows/phpunit.yml: provision a per-run throttle.key the same way the encryption key is already provisioned. The PR makes checkThrottleEncryption() a read-only guard that throws when env('throttle.key') is unset; CI only started exporting ENCRYPTION_KEY, so every test that goes through the Throttle filter (7 ThrottleTest cases + 4 LoginTest cases) failed with "No throttle key is provisioned. Run `php spark env:provision`". Writing `throttle.key=<KEY>` into .env matches what `php spark env:provision` does on a real container start. * fix(ci): write throttle.key into .env instead of exporting an OS env var The previous attempt exported throttle.key via GITHUB_ENV, but CodeIgniter's env() helper resolves in the order $_ENV[$key] ?? $_SERVER[$key] ?? getenv($key), and DotEnv populates $_ENV['throttle.key'] from the .env file first. Because the .env (copied from .env.example) ships with the empty placeholder throttle.key='', that $_ENV entry exists as '' and short-circuits the ?? chain before getenv() is reached — so the OS env var was never consulted and every Throttle/Login test still threw 'No throttle key is provisioned'. Write the per-run key into the .env file itself (sed-replacing the empty placeholder), which is exactly what `php spark env:provision` does in production and is the single source env() actually reads from. Verify the replacement happened (grep -Eq '^throttle\.key=.') so a future change to the placeholder format fails the run loudly instead of silently breaking the 11 throttle-dependent tests. * fix(security): restore CI3->CI4 auto-provisioning gated by .env writability checkEncryption()/checkThrottleEncryption() again provision the keys inline when .env is writable (empty key -> generate; short key -> decrypt, rotate, re-encrypt, verify, persist legacy CI3 secrets). When .env is not writable they assume the key was provisioned externally (e.g. docker env:provision) and throw. Update helper tests to match and correct the EnvProvision docblock that claimed the runtime was strictly read-only. * test(security): make short-key conversion branch injectable and test it checkEncryption() now accepts an optional CI3SecretConverter so the CI3->CI4 conversion branch can be exercised in unit tests without a database. Adds testCheckEncryptionConvertsCi3ShortKeyWhenEnvWritable which seeds CI3-era ciphertexts via a fake Appconfig model and asserts the key is rotated and the payload verifies back to the original plaintext. * fix(security): abort on backup/read/saveAll failure to avoid data loss Three related data-integrity fixes: - backupEnvFile() now returns true/false based on whether the backup actually exists and is readable. rotateEncryptionKey() aborts before destroying the key when the backup could not be written to disk. - rotateEncryptionKey() and provisionThrottleKey() throw RuntimeException(Error.unable_to_read_env_file) when the .env read fails, instead of silently replacing the whole file with an empty string. This prevents a permission error from wiping all keys. - checkEncryption() and EnvProvision::run() now both roll back to the backup with abortEncryptionConversion() when the post-rotation saveAll() throws, matching the migration path (which already did this). A failing fake Appconfig is used to exercise this in the new testCheckEncryptionRollsBackWhenSaveAllFails test. * fix(ci): skip comment job in deploy-pr.yml when prepare was not run The comment job had if: always(), so it ran even when the prepare job was skipped (e.g. review was not approved). With PR_NUMBER empty the gh api call posted to issues//comments, received a 404, and the entire run showed up as failure. Guard the job with needs.prepare.result == 'success' so it only runs when PR_NUMBER is valid. * address coderabbit open items: placeholder guards, message neutrality, ar-EG alignment - backupEnvFile(): fail when mkdir() or either chmod() fails, so the pre-rotation backup is actually persisted before the key is replaced - email/message config views: only show the 'already set' placeholder when the secret is actually present (prevented false positives on fresh installs) - Error.unable_to_create_env_file / .unable_to_read_env_file (en + en-GB): use key-neutral wording since both keys are provisioned with the same keys - ar-EG/Error.php: align all => arrows on the longest key Item 7 (filesystem test isolation) is a larger refactor — the tests are serial on CI and tearDown() restores state per test. Left for follow-up. * test(security): isolate helper FS tests via Config\SecurityEnv Introduce Config\SecurityEnv holding envPath/backupPath/lockPath so the security helper reads its target paths from shared configuration instead of hardcoded ROOTPATH/WRITEPATH literals. security_helperTest.php now redirects all three to a unique per-run sandbox under sys_get_temp_dir() and tears it down in tearDown(), so the suite no longer reads/writes the repository's real .env and is safe to run in parallel. No helper signature changes; production callers unaffected. Addresses CodeRabbit item 7 (issue #4700). Co-Authored-By: opencode <bot@opencode.ai> * fix(security): run key-conversion as one locked transaction Address CodeRabbit Major findings from the 4th re-review of the env helper and its callers: 1. Hold .env.lock for the entire CI3 -> CI4 conversion transaction (backup -> rotate -> re-encrypt -> verify -> persist -> cleanup) so a concurrent worker cannot interleave a key write between the rotation and the ciphertext save. Split rotateEncryptionKey into a lock-free core (rotateEncryptionKeyUnlock) plus the existing lock wrapper and a new rotateEncryptionKeyTransaction that owns the lock across the full unit and performs both the in-lock rollback (abortEncryptionConversion) and the in-lock backup removal on success. 2. Treat the legacy value '0' as non-empty data so key rotation still persists the re-encrypted ciphertext when '0' is the only stored secret (array_filter would have dropped it and skipped saveAll). 3. Wrap the post-rotation re-encrypt/verify/saveAll sequence in a catch (Throwable) across all three call-sites so CI4 EncryptionException, ReflectionException from batch_save, a failed round-trip verify, and any other failure all roll the .env key back to the pre-rotation state. 4. In Docker Compose, use long-syntax bind with create_host_path: false and document in INSTALL.md that the host .env must be a regular file (a missing one is no longer auto-created as a directory, and the mount now rejects a missing source on Compose implementations that support the flag). Files touched: app/Helpers/security_helper.php, app/Commands/EnvProvision.php, app/Database/Migrations/20220127000000_convertToCI4.php, docker-compose.yml, INSTALL.md. All 4 existing helper tests still pass via CI. * fix(security): make abortEncryptionConversion fail loudly on restore failure The rollback path restored the .env backup with a suppressed file_put_contents() and an unchecked file_get_contents(). If the restore failed after the key had already been rotated, .env was left holding the new CI4 key while the DB still held CI3-era ciphertext, so the data became undecryptable after the next restart. Now the backup read is checked for false and the restore goes through the existing atomicWriteFile() helper; either failure throws so the error is surfaced instead of silently corrupting the config. Adds a regression test that forces an unreadable backup and asserts the throw plus that .env is left untouched. * fix(security): guard abortEncryptionConversion backup read before touching it Validate the backup is a regular readable file (is_file/is_readable) before reading it, so a missing/malformed backup fails loudly instead of emitting a file_get_contents() warning. The unreadable-backup regression test now exercises this guard rather than relying on a promoted warning. --------- Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com> Co-authored-by: jekkos <jeroen.peelaerts@gmail.com> Co-authored-by: jekkos <jekkos@users.noreply.github.com> Co-authored-by: opencode <bot@opencode.ai>
335 lines
27 KiB
PHP
335 lines
27 KiB
PHP
<?php
|
|
|
|
return [
|
|
'address' => "Adresse de l'entreprise",
|
|
'address_required' => "L'adresse de l'entreprise est un champ obligatoire.",
|
|
'all_set' => 'Toutes les permissions de fichier sont correctement configurées !',
|
|
'allow_duplicate_barcodes' => 'Autoriser les codes à barres en double',
|
|
'apostrophe' => 'apostrophe',
|
|
'backup_button' => 'Sauvegarde',
|
|
'backup_database' => 'Sauvegarder la base de données',
|
|
'barcode' => 'Code à barre',
|
|
'barcode_company' => "Nom de l'entreprise",
|
|
'barcode_configuration' => 'Configuration du code à barre',
|
|
'barcode_content' => 'Contenu du code à barre',
|
|
'barcode_first_row' => 'Ligne 1',
|
|
'barcode_font' => "Police d'écriture",
|
|
'barcode_formats' => "Formats d'entrée",
|
|
'barcode_generate_if_empty' => 'Générer si vide.',
|
|
'barcode_height' => 'Hauteur (px)',
|
|
'barcode_id' => "Id/Nom d'article",
|
|
'barcode_info' => 'Configuration des informations du code à barre',
|
|
'barcode_layout' => 'Disposition du code à barre',
|
|
'barcode_name' => 'Nom',
|
|
'barcode_number' => 'Code à barre',
|
|
'barcode_number_in_row' => 'Numéro dans la ligne',
|
|
'barcode_page_cellspacing' => "Afficher l'espacement de cellules de la page.",
|
|
'barcode_page_width' => 'Afficher la largeur de la page',
|
|
'barcode_price' => 'Prix',
|
|
'barcode_second_row' => 'Ligne 2',
|
|
'barcode_third_row' => 'Ligne 3',
|
|
'barcode_tooltip' => "Avertissement : cette fonctionnalité peut entraîner l'importation ou la création de doublons. Ne pas utiliser si vous ne voulez pas de codes à barres en double.",
|
|
'barcode_type' => 'Type de Code à barre',
|
|
'barcode_width' => 'Largeur (px)',
|
|
'bottom' => 'Pied de page',
|
|
'cash_button' => '',
|
|
'cash_button_1' => '',
|
|
'cash_button_2' => '',
|
|
'cash_button_3' => '',
|
|
'cash_button_4' => '',
|
|
'cash_button_5' => '',
|
|
'cash_button_6' => '',
|
|
'cash_decimals' => 'Décimales',
|
|
'cash_decimals_tooltip' => 'Si les décimales et les décimales monétaires sont les mêmes, aucun arrondi ne sera effectué.',
|
|
'cash_rounding' => 'Arrondis de trésorerie',
|
|
'category_dropdown' => 'Afficher les catégories dans un menu déroulant',
|
|
'center' => 'Centre',
|
|
'change_apperance_tooltip' => '',
|
|
'comma' => 'virgule',
|
|
'company' => "Nome de l'Entreprise",
|
|
'company_avatar' => '',
|
|
'company_change_image' => "Changer l'image",
|
|
'company_logo' => "Logo de l'Entreprise",
|
|
'company_remove_image' => "Supprimer l'image",
|
|
'company_required' => "Le nom d'entreprise est requis",
|
|
'company_select_image' => "Sélectionner l'image",
|
|
'company_website_url' => "Le site Web de l'entreprise n'est pas une URL valide (http: //...).",
|
|
'country_codes' => 'Codes de pays',
|
|
'country_codes_tooltip' => "Liste des codes de pays, séparés par des virgules, pour la recherche d'adresses nominatives.",
|
|
'currency_code' => 'Code de devise',
|
|
'currency_decimals' => 'Décimales',
|
|
'currency_symbol' => 'Symbole Monétaire',
|
|
'current_employee_only' => '',
|
|
'customer_reward' => 'Récompense',
|
|
'customer_reward_duplicate' => 'La récompense doit être unique.',
|
|
'customer_reward_enable' => 'Activer les récompenses client',
|
|
'customer_reward_invalid_chars' => "La récompense ne peut pas contenir '_'",
|
|
'customer_reward_required' => 'La récompense est un champ obligatoire',
|
|
'customer_sales_tax_support' => 'Soutien à la taxe de vente au client',
|
|
'date_or_time_format' => "Filtre de date et d'heure",
|
|
'datetimeformat' => "Format de la date et de l'heure",
|
|
'decimal_point' => 'Virgule',
|
|
'default_barcode_font_size_number' => 'La taille de la police du code-barres par défaut doit être un nombre.',
|
|
'default_barcode_font_size_required' => 'La taille de police du code-barres par défaut est un champ obligatoire.',
|
|
'default_barcode_height_number' => 'La hauteur du code-barres par défaut doit être un nombre.',
|
|
'default_barcode_height_required' => 'La hauteur du code-barres par défaut est un champ obligatoire.',
|
|
'default_barcode_num_in_row_number' => 'Le numéro de code-barres par défaut dans la ligne doit être un nombre.',
|
|
'default_barcode_num_in_row_required' => 'Le numéro de code-barres par défaut dans la ligne est un champ obligatoire.',
|
|
'default_barcode_page_cellspacing_number' => "Page de codes-barres par défaut L'espace-cellule doit être un nombre.",
|
|
'default_barcode_page_cellspacing_required' => "Page Barcode par défaut L'espacement des cellules est un champ obligatoire.",
|
|
'default_barcode_page_width_number' => 'La largeur de page du code à barres par défaut doit être un nombre.',
|
|
'default_barcode_page_width_required' => 'Largeur de page de code-barres par défaut est un champ obligatoire.',
|
|
'default_barcode_width_number' => 'La largeur de code à barres par défaut doit être un nombre.',
|
|
'default_barcode_width_required' => 'La largeur de code à barres par défaut est un champ obligatoire.',
|
|
'default_item_columns' => "Colonnes d'article visibles par défaut",
|
|
'default_origin_tax_code' => "Code de taxe d'origine par défaut",
|
|
'default_receivings_discount' => 'Rabais de réception par défaut',
|
|
'default_receivings_discount_number' => 'Rabais de réception par défaut doit être numérique.',
|
|
'default_receivings_discount_required' => 'Rabais de réception par défaut est requis.',
|
|
'default_sales_discount' => 'Remboursement des ventes par défaut %',
|
|
'default_sales_discount_number' => 'Le rabais de vente par défaut doit être un nombre.',
|
|
'default_sales_discount_required' => 'La remise sur les ventes par défaut est un champ obligatoire.',
|
|
'default_tax_category' => 'Catégorie fiscale par défaut',
|
|
'default_tax_code' => 'Code fiscal par défaut',
|
|
'default_tax_jurisdiction' => 'Juridiction fiscale par défaut',
|
|
'default_tax_name_number' => 'Le nom de taxe par défaut doit être une chaîne.',
|
|
'default_tax_name_required' => 'Le nom de taxe par défaut est un champ obligatoire.',
|
|
'default_tax_rate' => "Taux d'Imposition par Défaut",
|
|
'default_tax_rate_1' => "Taux d'Imposition 1",
|
|
'default_tax_rate_2' => "Taux d'Imposition 2",
|
|
'default_tax_rate_3' => '',
|
|
'default_tax_rate_number' => 'Le taux de taxe par défaut doit être un nombre.',
|
|
'default_tax_rate_required' => 'Le taux de taxe par défaut est un champ obligatoire.',
|
|
'derive_sale_quantity' => 'Autoriser la quantité de vente dérivée',
|
|
'derive_sale_quantity_tooltip' => "Si coché, un nouveau type d'article sera fourni pour les articles commandés par montant étendu",
|
|
'dinner_table' => 'Table',
|
|
'dinner_table_duplicate' => 'La table doit être unique.',
|
|
'dinner_table_enable' => 'Activer les tables de dîner',
|
|
'dinner_table_invalid_chars' => "Le nom de la table ne peut pas contenir '_'.",
|
|
'dinner_table_required' => 'La table est un champ obligatoire.',
|
|
'dot' => 'point',
|
|
'email' => 'Courriel',
|
|
'email_configuration' => 'Email Configuration',
|
|
'email_mailpath' => 'Path de Sendmail',
|
|
'email_protocol' => 'Protocol',
|
|
'email_receipt_check_behaviour' => 'Case à cocher Reçu de courrier électronique',
|
|
'email_receipt_check_behaviour_always' => 'Toujours vérifié',
|
|
'email_receipt_check_behaviour_last' => 'Se souvenir de la dernière sélection',
|
|
'email_receipt_check_behaviour_never' => 'Toujours décoché',
|
|
'email_smtp_crypto' => 'SMTP Cryptage',
|
|
'email_smtp_host' => 'SMTP Serveur',
|
|
'email_smtp_pass' => 'Mot de passe SMTP',
|
|
'email_smtp_port' => 'Port SMTP',
|
|
'email_smtp_timeout' => 'Délai SMTP (s)',
|
|
'email_smtp_user' => "Nom d'utilisateur SMTP",
|
|
'enable_avatar' => '',
|
|
'enable_avatar_tooltip' => '',
|
|
'enable_dropdown_tooltip' => '',
|
|
'enable_new_look' => '',
|
|
'enable_right_bar' => '',
|
|
'enable_right_bar_tooltip' => '',
|
|
'enforce_privacy' => 'Appliquer la confidentialité',
|
|
'enforce_privacy_tooltip' => 'Protéger la confidentialité des clients en imposant le brouillage des données en cas de suppression de leurs données',
|
|
'fax' => 'Fax',
|
|
'file_perm' => 'Il y a des problèmes avec les permissions de fichier. Veuillez corriger et recharger la page.',
|
|
'financial_year' => "Début de l'année fiscale",
|
|
'financial_year_apr' => '1er avril',
|
|
'financial_year_aug' => '1er août',
|
|
'financial_year_dec' => '1er décembre',
|
|
'financial_year_feb' => '1er février',
|
|
'financial_year_jan' => '1er janvier',
|
|
'financial_year_jul' => '1er juillet',
|
|
'financial_year_jun' => '1er juin',
|
|
'financial_year_mar' => '1er mars',
|
|
'financial_year_may' => '1er mai',
|
|
'financial_year_nov' => '1er novembre',
|
|
'financial_year_oct' => '1er octobre',
|
|
'financial_year_sep' => '1er septembre',
|
|
'floating_labels' => 'Étiquettes flottantes',
|
|
'gcaptcha_enable' => 'Page de connexion reCAPTCHA',
|
|
'gcaptcha_secret_key' => 'clé secrète reCAPTCHA',
|
|
'gcaptcha_secret_key_required' => 'La clé secrète reCAPTCHA est un champ obligatoire',
|
|
'gcaptcha_site_key' => 'clé de site reCAPTCHA',
|
|
'gcaptcha_site_key_required' => 'La clé de site reCAPTCHA est un champ obligatoire',
|
|
'gcaptcha_tooltip' => "Protégez la page de connexion avec Google reCAPTCHA, cliquez sur l'icône d'une paire de clés API.",
|
|
'general' => 'General',
|
|
'general_configuration' => 'General Configuration',
|
|
'giftcard_number' => 'Numéro de carte-cadeau',
|
|
'giftcard_random' => 'Générer aléatoire',
|
|
'giftcard_series' => 'Générer en série',
|
|
'image_allowed_file_types' => 'Types de fichier autorisés',
|
|
'image_max_height_tooltip' => "Hauteur maximale autorisée en pixels pour le téléversement d'images.",
|
|
'image_max_size_tooltip' => "Taille de fichier maximale autorisée en kilobytes pour le téléversement d'images.",
|
|
'image_max_width_tooltip' => "Largeur maximale autorisée en pixels pour le téléversement d'images.",
|
|
'image_restrictions' => "Restrictions sur le téléversement d'images",
|
|
'include_hsn' => 'Prise en charge des codes HSN',
|
|
'info' => 'Entreprise',
|
|
'info_configuration' => "Çonfiguration de l'Entreprise",
|
|
'input_groups' => "Groupes d'entrée",
|
|
'integrations' => 'Intégrations',
|
|
'integrations_configuration' => 'Intégration de parties tierces',
|
|
'invoice' => 'Facture',
|
|
'invoice_configuration' => "Paramètres d'impression de facture",
|
|
'invoice_default_comments' => 'Commentaires par facture par défaut',
|
|
'invoice_email_message' => 'Modèle de courrier électronique de facture',
|
|
'invoice_enable' => 'Activer la facturation',
|
|
'invoice_printer' => 'Imprimante de facture',
|
|
'invoice_type' => 'Type de facturation',
|
|
'is_readable' => 'est lisible, mais les permissions sont incorrectes. Définir à 640 ou 660 et rafraîchir.',
|
|
'is_writable' => 'is écrivable, mais les permissions sont plus hautes que 750.',
|
|
'item_markup' => '',
|
|
'jsprintsetup_required' => "Attention: Cette fonctionnalité ne sera active que si l'extension FireFox jsPrintSetup est installée. Enregistrer quand même ?",
|
|
'language' => 'Langue',
|
|
'last_used_invoice_number' => 'Dernier numéro de facture utilisé',
|
|
'last_used_quote_number' => 'Dernier numéro de devis utilisé',
|
|
'last_used_work_order_number' => 'Dernier numéro W / O utilisé',
|
|
'left' => 'Gauche',
|
|
'license' => 'Licence',
|
|
'license_configuration' => 'Déclaration de licence',
|
|
'line_sequence' => 'Séquence de lignes',
|
|
'lines_per_page' => 'Lignes par page',
|
|
'lines_per_page_number' => 'Les lignes par page doivent être un nombre.',
|
|
'lines_per_page_required' => 'Lignes par page est un champ obligatoire.',
|
|
'locale' => 'Localisation',
|
|
'locale_configuration' => 'Configuration de localisation',
|
|
'locale_info' => 'Informations de configuration de localisation',
|
|
'location' => 'Inventaire',
|
|
'location_configuration' => 'Emplacements de stock',
|
|
'location_info' => "Informations de configuration de l'emplacement",
|
|
'login_form' => 'Style du formulaire de connexion',
|
|
'logout' => 'Voulez-vous faire une sauvegarde avant de vous déconnecter ? Cliquez sur [OK] pour sauvegarder ou sur [Annuler] pour vous déconnecter.',
|
|
'mailchimp' => 'MailChimp',
|
|
'mailchimp_api_key' => 'Clé API MailChimp',
|
|
'mailchimp_configuration' => 'Configuration de MailChimp',
|
|
'mailchimp_key_successfully' => 'La clé API est valide.',
|
|
'mailchimp_key_unsuccessfully' => "La clé de l'API est invalide.",
|
|
'mailchimp_lists' => 'Liste(s) MailChimp',
|
|
'mailchimp_tooltip' => "Cliquez sur l'icône pour une clé API.",
|
|
'message' => 'Message',
|
|
'message_configuration' => 'Message Configuration',
|
|
'msg_msg' => 'Message texte enregistré',
|
|
'msg_msg_placeholder' => 'Si vous souhaitez utiliser un modèle de SMS, enregistrez votre message ici. Sinon, laisser la boîte en blanc.',
|
|
'msg_pwd' => 'SMS-API Password',
|
|
'msg_src' => "ID de l'expéditeur de SMS-API",
|
|
'msg_src_required' => "L'ID de l'expéditeur de SMS-API est un champ obligatoire",
|
|
'msg_uid' => "Nom d'utilisateur de l'API SMS",
|
|
'msg_uid_required' => "Le nom d'utilisateur de l'API SMS est un champ obligatoire",
|
|
'multi_pack_enabled' => 'Ensembles multiples par article',
|
|
'no_risk' => 'Pas de risques de sécurité/vulnérabilité.',
|
|
'none' => 'none',
|
|
'notify_alignment' => 'Position contextuelle de notification',
|
|
'number_format' => 'Number Format',
|
|
'number_locale' => 'Localisation',
|
|
'number_locale_invalid' => "L'environnement local entré est invalide. Vérifiez le lien dans l'info-bulle pour trouver un environnement local valide.",
|
|
'number_locale_required' => 'Number Locale est un champ obligatoire.',
|
|
'number_locale_tooltip' => 'Trouvez un lieu approprié grâce à ce lien.',
|
|
'os_timezone' => "Fuseau horaire d'OSPOS :",
|
|
'ospos_info' => "Informations d'installation d'OSPOS",
|
|
'payment_options_order' => 'Ordre des options de paiement',
|
|
'payment_reference_code_length_limits' => 'Code de référence de paiement<br>Limites de longueur',
|
|
'payment_reference_code_length_max_label' => 'Max',
|
|
'payment_reference_code_length_min_label' => 'Min',
|
|
'perm_risk' => 'Des permissions incorrectement définies exposent ce logiciel a des risques de sécurité.',
|
|
'phone' => 'Téléphone',
|
|
'phone_required' => "Téléphone de l'entreprise est un champ obligatoire.",
|
|
'print_bottom_margin' => 'Marge Bas',
|
|
'print_bottom_margin_number' => 'La marge inférieure doit être un nombre.',
|
|
'print_bottom_margin_required' => 'La marge inférieure est un champ obligatoire.',
|
|
'print_delay_autoreturn' => 'Retour automatique a la vente retarde',
|
|
'print_delay_autoreturn_number' => 'Retour automatique à la vente retarde est un champ obligatoire.',
|
|
'print_delay_autoreturn_required' => 'Retour automatique à la vente retarde doit être un nombre.',
|
|
'print_footer' => 'Pied de page imprimante',
|
|
'print_header' => "Imprimer l'en-tête du navigateur",
|
|
'print_left_margin' => 'Marge Gauche',
|
|
'print_left_margin_number' => 'La marge gauche par défaut doit être un nombre.',
|
|
'print_left_margin_required' => 'La marge gauche par défaut est un champ obligatoire.',
|
|
'print_receipt_check_behaviour' => 'Imprimer la case à cocher Reçu',
|
|
'print_receipt_check_behaviour_always' => 'Toujours vérifié',
|
|
'print_receipt_check_behaviour_last' => 'Se souvenir de la dernière sélection',
|
|
'print_receipt_check_behaviour_never' => 'Toujours décoché',
|
|
'print_right_margin' => 'Marge Droit',
|
|
'print_right_margin_number' => 'La marge droite par défaut doit être un nombre.',
|
|
'print_right_margin_required' => 'La marge droite par défaut est un champ obligatoire.',
|
|
'print_silently' => 'Afficher la boîte de dialogue Imprimer',
|
|
'print_top_margin' => 'Margin Superieure',
|
|
'print_top_margin_number' => 'Margin Top doit être un nombre.',
|
|
'print_top_margin_required' => 'Margin Top est un champ obligatoire.',
|
|
'quantity_decimals' => 'Nombre de décimales',
|
|
'quick_cash_enable' => '',
|
|
'quote_default_comments' => 'Commentaires de devis par défaut',
|
|
'receipt' => 'Le reçu',
|
|
'receipt_category' => '',
|
|
'receipt_configuration' => "Paramètres d'impression du reçu",
|
|
'receipt_default' => 'Défaut',
|
|
'receipt_font_size' => 'Taille de font',
|
|
'receipt_font_size_number' => 'La taille de la font doit être un nombre.',
|
|
'receipt_font_size_required' => 'Taille de la font est un champ obligatoire.',
|
|
'receipt_info' => 'Informations de configuration du reçu',
|
|
'receipt_printer' => 'Imprimante de tickets',
|
|
'receipt_short' => 'Court',
|
|
'receipt_show_company_name' => "Afficher le nom de l'entreprise",
|
|
'receipt_show_description' => 'Montrer la description',
|
|
'receipt_show_serialnumber' => 'Afficher le numéro de série',
|
|
'receipt_show_tax_ind' => 'Afficher les indicateurs de taxe',
|
|
'receipt_show_taxes' => 'Afficher les taxes',
|
|
'receipt_show_total_discount' => 'Afficher le rabais total',
|
|
'receipt_template' => 'Modèle de reçu',
|
|
'receiving_calculate_average_price' => 'Calc. prix moyen (Réception)',
|
|
'recv_invoice_format' => 'Format de la facture des factures',
|
|
'register_mode_default' => 'Mode de registre par défaut',
|
|
'report_an_issue' => 'Signaler un problème',
|
|
'return_policy_required' => 'Le Message est un champ requis.',
|
|
'reward' => 'Récompense',
|
|
'reward_configuration' => 'Configuration de récompense',
|
|
'right' => 'Droite',
|
|
'sales_invoice_format' => 'Format de la facture de vente',
|
|
'sales_quote_format' => 'Format de devis de vente',
|
|
'mailpath_invalid' => 'Chemin sendmail invalide. Seuls les lettres, chiffres, tirets, traits de soulignement, barres obliques, antislashs, deux-points, espaces et points sont autorisés.',
|
|
'saved_successfully' => 'Configuration enregistrer avec succès.',
|
|
'saved_unsuccessfully' => "L'enregistrement de configuration a échoué.",
|
|
'security_issue' => 'Avertissement de faille de sécurité',
|
|
'server_notice' => 'Veuillez utiliser les informations ci-dessous pour signaler un problème.',
|
|
'service_charge' => '',
|
|
'show_due_enable' => '',
|
|
'show_office_group' => "Afficher l'icône du bureau",
|
|
'statistics' => 'Envoyer des statistiques',
|
|
'statistics_tooltip' => "Envoyer des statistiques pour le développement et l'amélioration des fonctionnalités.",
|
|
'stock_location' => 'Emplacement du stock',
|
|
'stock_location_duplicate' => "L'emplacement du stock doit être unique.",
|
|
'stock_location_invalid_chars' => "L'emplacement de stockage ne peut pas contenir '_'.",
|
|
'stock_location_required' => "L'emplacement du stock est un champ obligatoire.",
|
|
'suggestions_fifth_column' => '',
|
|
'suggestions_first_column' => 'Colonne 1',
|
|
'suggestions_fourth_column' => '',
|
|
'suggestions_layout' => 'Présentation des suggestions de recherche',
|
|
'suggestions_second_column' => 'Colonne 2',
|
|
'suggestions_third_column' => 'Colonne 3',
|
|
'system_conf' => 'Paramètres & Configuration',
|
|
'system_info' => 'System Info',
|
|
'table' => 'Table',
|
|
'table_configuration' => 'Configuration de la table',
|
|
'takings_printer' => 'Imprimante de reçu',
|
|
'tax' => 'Taxe',
|
|
'tax_category' => 'Catégorie fiscale',
|
|
'tax_category_duplicate' => 'La catégorie de taxe saisie existe déjà.',
|
|
'tax_category_invalid_chars' => 'La catégorie de taxe entrée est invalide.',
|
|
'tax_category_required' => 'La catégorie de taxe est requise.',
|
|
'tax_category_used' => 'La catégorie de taxe ne peut pas être supprimée car elle est utilisée.',
|
|
'tax_configuration' => "Configuration de l'impôt",
|
|
'tax_decimals' => 'Décimales fiscales',
|
|
'tax_id' => 'Id de taxe',
|
|
'tax_included' => 'Taxe inclu',
|
|
'theme' => 'Thème',
|
|
'theme_preview' => 'Aperçu du thème :',
|
|
'thousands_separator' => 'Séparateur de milliers',
|
|
'timezone' => 'Fuseau Horaire',
|
|
'timezone_error' => "Le fuseau horaire d'OSPOS est différent de votre fuseau horaire local.",
|
|
'top' => 'Haut',
|
|
'use_destination_based_tax' => 'Utiliser la taxe basée sur la destination',
|
|
'user_timezone' => 'Fuseau horaire local :',
|
|
'website' => 'Site Internet',
|
|
'wholesale_markup' => '',
|
|
'work_order_enable' => 'Support de commande de travail',
|
|
'work_order_format' => 'Format de bon de travail',
|
|
];
|