Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Help

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

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

Odoberať

Get notified when there's activity on this post

This question has been flagged
translation
1 Odpoveď
22910 Zobrazenia
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
Zrušiť
Avatar
Martin
Autor Best Answer

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
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Translations for the top menu URL's
translation
Avatar
0
dec 24
2090
downloading the po file
translation
Avatar
Avatar
Avatar
2
feb 24
3507
Language translation through .po file
translation
Avatar
Avatar
Avatar
Avatar
4
nov 23
4531
Unable to change Javascript translation
translation
Avatar
1
aug 22
4325
How to translate content of text fields from records Solved
translation
Avatar
Avatar
1
sep 20
13559
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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