mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-11-22 00:51:23 +03:00
Compare commits
4 Commits
7bc53a51c5
...
f9ccbf528d
Author | SHA1 | Date | |
---|---|---|---|
|
f9ccbf528d | ||
|
4a166ede82 | ||
|
46e816c366 | ||
|
65239bc359 |
@ -31,10 +31,11 @@ A1. Fine. You will need a corresponding compiler, obviously.
|
||||
If the compiler produces an error "file not found" regarding 'lang.inc',
|
||||
the program can be compiled using different languages of interface.
|
||||
Create a file 'lang.inc' in the same folder as <input.asm> like follows:
|
||||
lang fix en
|
||||
lang fix en_US
|
||||
Here the last word selects the language. Valid languages are
|
||||
en, ru, et, it, sp. Not all programs provide all translations,
|
||||
en should always be available, ru is the most frequent after en.
|
||||
en_US, ru_RU, et_EE, it_IT, es_ES, ca_ES. Not all programs provide all
|
||||
translations, en_US should always be available, ru_RU is the most frequent
|
||||
after en_US.
|
||||
|
||||
* For a NASM program, get NASM at http://www.nasm.us/.
|
||||
To compile, find the main .asm file of the program and run
|
||||
@ -42,7 +43,7 @@ A1. Fine. You will need a corresponding compiler, obviously.
|
||||
Multi-language is rarely supported in this category, but you could still
|
||||
see sometimes an error "file not found" regarding 'lang_nasm.inc'. If so,
|
||||
create a file 'lang_nasm.inc' in the same folder as <input.asm> like follows:
|
||||
%define lang 'en'
|
||||
%define lang 'en_US'
|
||||
Read the entry about fasm for description of valid languages.
|
||||
|
||||
* For a c-- program, try to avoid compiling it and instead rewrite the code
|
||||
|
@ -1,6 +1,6 @@
|
||||
FASM=fasm
|
||||
FLAGS=-m 65536
|
||||
languages=en|ru|ge|et|sp
|
||||
languages=en_US|ru_RU|de_DE|et_EE|es_ES
|
||||
|
||||
.PHONY: all kernel bootloader clean
|
||||
|
||||
|
@ -11,8 +11,8 @@ pause
|
||||
goto :eof
|
||||
|
||||
:Target_kernel
|
||||
rem valid languages: en ru ge et sp
|
||||
set lang=en
|
||||
rem valid languages: en_US ru_RU de_DE et_EE es_ES
|
||||
set lang=en_US
|
||||
|
||||
echo *** building kernel with language '%lang%' ...
|
||||
|
||||
|
@ -6,7 +6,7 @@ KERPACK=$HOME/kolibrios/programs/other/kpack/kerpack_linux/kerpack
|
||||
KOLIBRI_IMG=$HOME/nightly/kolibri.img
|
||||
|
||||
replace=0; # Replace kernel in the image file?
|
||||
echo 'lang fix en' > lang.inc
|
||||
echo 'lang fix en_US' > lang.inc
|
||||
fasm -m 65536 bootbios.asm bootbios.bin
|
||||
fasm -m 65536 kernel.asm kernel.mnt
|
||||
$KERPACK kernel.mnt kernel.mnt
|
||||
|
@ -144,21 +144,21 @@ n_slot rd 1
|
||||
ctx_menu_PID rd 1
|
||||
;------------------------------------------------------------------------------
|
||||
lsz ctx_menu_text,\
|
||||
ru, <"X ‡ ªàëâì Alt + F4",0>,\
|
||||
en, <"X Close Alt + F4",0>,\
|
||||
et, <"X Sulge Alt + F4",0>,\
|
||||
ru_RU, <"X ‡ ªàëâì Alt + F4",0>,\
|
||||
en_US, <"X Close Alt + F4",0>,\
|
||||
et_EE, <"X Sulge Alt + F4",0>,\
|
||||
;------------------------------------------------------------------------------
|
||||
lsz ctx_menu_text2,\
|
||||
ru, <25," ‘¢¥àãâì ",0>,\
|
||||
en, <25," Minimize ",0>,\
|
||||
et, <25," Minimeeri ",0>,\
|
||||
ru_RU, <25," ‘¢¥àãâì ",0>,\
|
||||
en_US, <25," Minimize ",0>,\
|
||||
et_EE, <25," Minimeeri ",0>,\
|
||||
;------------------------------------------------------------------------------
|
||||
lsz ctx_menu_text3,\
|
||||
ru, <24," ‚®ááâ ®¢¨âì ",0>,\
|
||||
en, <24," Restore ",0>,\
|
||||
et, <24," Taasta ",0>
|
||||
ru_RU, <24," ‚®ááâ ®¢¨âì ",0>,\
|
||||
en_US, <24," Restore ",0>,\
|
||||
et_EE, <24," Taasta ",0>
|
||||
;------------------------------------------------------------------------------
|
||||
ctx_menu_title:
|
||||
db 'KolibriOS'
|
||||
ctx_menu_title_end:
|
||||
;------------------------------------------------------------------------------
|
||||
;------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user