Re: [Dolibarr-dev] Translation of table llx_c_forme_juridique

2014-06-29 Par sujet Oli Sennhauser
Hello Laurent, First of all it is not clear to me how translation of table llx_c_forme_juridique and others is done. Something like a language flag seems to be missing: CREATE TABLE `llx_c_forme_juridique` ( `rowid` int(11) NOT NULL AUTO_INCREMENT, `code` int(11) NOT NULL, `fk_pays` int

Re: [Dolibarr-dev] Translation of table llx_c_forme_juridique

2014-06-28 Par sujet Destailleur Laurent
Thanks Oli. Another contributor send us this for juridical type of companies for germany: insert into llx_c_forme_juridique (fk_pays, code, libelle) values (5, '500', 'GmbH - Gesellschaft mit beschränkter Haftung'); insert into llx_c_forme_juridique (fk_pays, code, libelle) values (5, '501', 'AG

[Dolibarr-dev] Translation of table llx_c_forme_juridique

2014-06-28 Par sujet Oli Sennhauser
Hello all, how is the translation of the forme_juridicque table done? Is this in transifex? Quick and dirty this worked for me: UPDATE llx_c_forme_juridique SET libelle = 'Einzelfirma' WHERE rowid = 124; UPDATE llx_c_forme_juridique SET libelle = 'Einfache Gesellschaft' WHERE rowid = 125; UP