i18n/README
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Thu, 28 Apr 2016 12:58:58 +0300
changeset 1506 b9b8978dbc9d
parent 814 5743cbdff669
child 1714 64ea7c86a74c
permissions -rw-r--r--
Fix error about missing attribute 'timeout' that happens sometimes during compilation

The fix [1476:49f1763a5613] of the problem with following trace was wrong.
Traceback (most recent call last):
File "./Beremiz.py", line 1229, in run_with_except_hook
run_old(*args, **kw)
File
"/home/developer/WorkData/PLC/beremiz/beremiz/util/ProcessLogger.py",
line 68, in run
self.endcallback(self.Proc.pid, err)
File
"/home/developer/WorkData/PLC/beremiz/beremiz/util/ProcessLogger.py",
line 169, in finish
if self.timeout: self.timeout.cancel()
AttributeError: ProcessLogger instance has no attribute 'timeout'
The problem was that compilation process was finished before the timeout attribute is set.
Now timeout is set before launcing of compilation process.
361
331d698e1118 Adding support for internationalization
laurent
parents:
diff changeset
     1
To generate message.pot file:
331d698e1118 Adding support for internationalization
laurent
parents:
diff changeset
     2
331d698e1118 Adding support for internationalization
laurent
parents:
diff changeset
     3
	python mki18n.py -p --domain=Beremiz
331d698e1118 Adding support for internationalization
laurent
parents:
diff changeset
     4
	
331d698e1118 Adding support for internationalization
laurent
parents:
diff changeset
     5
To generate .mo files for all languages:
331d698e1118 Adding support for internationalization
laurent
parents:
diff changeset
     6
331d698e1118 Adding support for internationalization
laurent
parents:
diff changeset
     7
	python mki18n.py -m --moTarget=../locale --domain=Beremiz
734
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 361
diff changeset
     8
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 361
diff changeset
     9
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 361
diff changeset
    10
To generate app.fil:
5c42cafaee15 Moved LPC sources to a separate project
Edouard Tisserant
parents: 361
diff changeset
    11
	
814
5743cbdff669 Integration of PLCOpenEditor into Beremiz
Laurent Bessard
parents: 734
diff changeset
    12
    find .. -name "*.py" -exec grep -q '_(' {} ';' -print -o -name "*XSD*" -print -o -name "*.csv" -print | grep -v '/build/' | grep -v '/pyjs/' > app.fil