Robert Pelnar d27211a8a7 New ML support - migration - fixed parsing and new data for german пре 6 година
..
src 82af3f1a93 New ML support - upgrade scripts and source пре 6 година
!upgrade.sh 82af3f1a93 New ML support - upgrade scripts and source пре 6 година
clean.sh 82af3f1a93 New ML support - upgrade scripts and source пре 6 година
find_msgs.sh 82af3f1a93 New ML support - upgrade scripts and source пре 6 година
fix_1.out 2cf20c8c99 New ML support - migration - fix_source_1.sh script (replace 'MSG_xx' with '_T(MSG_xx)') пре 6 година
fix_source_1.sh 2cf20c8c99 New ML support - migration - fix_source_1.sh script (replace 'MSG_xx' with '_T(MSG_xx)') пре 6 година
make_lang_en.sh 4e14e6cdbb New ML support - dictionary generators (scripts) and dictionaries: пре 6 година
make_lang_en_cz.sh 4e14e6cdbb New ML support - dictionary generators (scripts) and dictionaries: пре 6 година
make_lang_en_de.sh e7a8f94b6b New ML support - migration - make_lang_en_xx.sh for all languages пре 6 година
make_lang_en_es.sh e7a8f94b6b New ML support - migration - make_lang_en_xx.sh for all languages пре 6 година
make_lang_en_it.sh e7a8f94b6b New ML support - migration - make_lang_en_xx.sh for all languages пре 6 година
make_lang_en_pl.sh e7a8f94b6b New ML support - migration - make_lang_en_xx.sh for all languages пре 6 година
make_msgs.out bb01e20ad6 New ML support - migration - generated files пре 6 година
make_msgs.sh d27211a8a7 New ML support - migration - fixed parsing and new data for german пре 6 година
make_source.sh 4e14c2cdae Upgrade script make_source.sh пре 6 година
msgs_common.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_common_unused.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_common_used_more.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_common_used_once.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_cz.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_de.txt d27211a8a7 New ML support - migration - fixed parsing and new data for german пре 6 година
msgs_en.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_en_unused.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_en_used_more.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_en_used_once.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_es.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_it.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_pl.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
msgs_usage.txt bb01e20ad6 New ML support - migration - generated files пре 6 година
readme.txt 82af3f1a93 New ML support - upgrade scripts and source пре 6 година
replace_common.out bb01e20ad6 New ML support - migration - generated files пре 6 година
replace_en.out bb01e20ad6 New ML support - migration - generated files пре 6 година

readme.txt

lang_upgrade - scripts for migration to new multilanguage support design

upgrade.sh - entire process:
Run scripts: clean.sh, make_msgs.sh, find_msgs.sh, make_source.sh.
Backup (move) all language*.h and language*.cpp files from source to folder '../lang_backup'.
Copy folder ./source/*.* to ../Firmware, new files will be messages.h, messages.c, language.h, language.c and other source will be replaced.
After this step should be source compilable in english version, LANG_MODE in config.h is set to 0 (primary language only)


0. clean.sh
delete all output files

1. make_msgs.sh
Process all language_xx.h files and extract informations to msgs_xx.txt files in simple format.
Every line in msgs_en.txt has following format: MSG_xx c=cc r=rr "text".
Every line in other msgs_xx.txt has simpler format: MSG_xx "text".
MSG_xx is original message identifier, cc is column count (originaly length) and rr is row count (originaly lines).
Output files msgs_xx.txt are sorted by message identifier (ascending order).
make_msgs.sh also reports number of messages in each language_xx.h file and total number of characters in program memory.

2. find_msgs.sh
Find usage of each message and output listing in to file msgs_usage.txt in format: MSG_xx nn.
MSG_xx is identifier, nn is number of occurrences. Output is sorted by number of occurrences (ascending order).
Generate filtered msgs_en.txt and msgs_common.txt files. Each file is sorted to three output files - unused, used once and used more.
Output files will be:
msgs_common_unused.txt, msgs_common_used_more.txt, msgs_common_used_once.txt
msgs_en_unused.txt, msgs_en_used_more.txt, msgs_en_used_once.txt

3. make_source.sh
Copy all source files to folder ./source
Replace all messages used once in all ./source/*.c* files directly with the english version string constant and comment at end of line.
Generate messages.h and messages.c source files with messages used twice and more.
Replace line '' in Marlin_main.cpp with comment.