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
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
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