Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How to generate translation terms for field values? "translate=True" did not work.

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
translation
1 Répondre
22908 Vues
Avatar
Martin

According to documentation and many forum posts, the fields with translate=True should generate Translated Terms available in settings and in table ir.translation.

So, I start from scratch.

1) I add a field to my model:

transme = fields.Char('Transme', translate=True)

2) I do an upgrade on my module. The field appears in the database.

3) I do an SQL update on that field to set test values. I set transme for all records to text value "dummy" just for test.

4) I go to Settings -> Translations -> Generate missing terms

5) I look in the translations list and find the latest added values. Also checking ir.translation in the database.

But I see only 

"ir.model.fields,field_description";"model";"Transme"

record.

There is no translation generated for the field value "dummy".

What am I missing here? How do I generate translation terms for field values of my new field?


Using Odoo v13.

0
Avatar
Ignorer
Avatar
Martin
Auteur Meilleure réponse

After some "reverse engineering" and lots of experiments here's what I found.

Initially, when reading Odoo documentation there is this sentence:

if their translate attribute is set to True, all of their existing values (across all records) are exported

From this formulation, I imagined that "Generate missing terms" will run something like 'SELECT DISTINCT myfield' to collect all possible values and generate corresponding ir.translation records. However, Odoo does not do that.

If I want to translate all possible field values, I have to create Selection field like this:

transme= fields.Selection([

        ('one', 'Onny'),

        ('two', 'Twoy'),

        ('none', 'Nonny')

    ], default='none', String=Transme', translate=True)


Then  "Generate missing terms" will generate all the values for Selection. A caveat - the keys will be generated with Selection value names, not values. That is, you won't find one,two,none in translations but will have to look for Onny,Twoy,Nonny.

WARNING: do not try to copy translation term rows directly in Translated Terms grid!

Copied records do not always work because some important hidden information does not get copied correctly. Always use "Generate missing terms" after adding new translate=True and other translated strings.

Another caveat - when displaying translated values in views, use t-field and not t-esc. Only t-field values get translated.

Returning to my original example:

transme = fields.Char('Transme', translate=True)

this will only make it possible to translate specific records one-by-one, when opening their edit view and using the translation icon in the corner of the field. Translations added to one record will not automagically translate other records, even if they have the same values. So, yeah, "existing values (across all records) are exported" is a bit misleading. You have to always use selections or relations to translate existing values across all records.

If there's some other way how to make Odoo translate all existing Char string values across all records without actually attaching to specific record, then please let me know. For the time being, I'll have to use Selection.

2
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Translations for the top menu URL's
translation
Avatar
0
déc. 24
2089
downloading the po file
translation
Avatar
Avatar
Avatar
2
févr. 24
3507
Language translation through .po file
translation
Avatar
Avatar
Avatar
Avatar
4
nov. 23
4530
Unable to change Javascript translation
translation
Avatar
1
août 22
4324
How to translate content of text fields from records Résolu
translation
Avatar
Avatar
1
sept. 20
13559
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now