forked from KolibriOS/kolibrios
Andrew
f222e98a09
- Update language codes and add comments. - Correct `en_US` translations. - Some whitespace clean-up (mainly EOL sanitation). Reviewed-on: KolibriOS/kolibrios#76 Co-authored-by: Andrew <dent.ace@gmail.com> Co-committed-by: Andrew <dent.ace@gmail.com>
43 lines
980 B
PHP
43 lines
980 B
PHP
|
||
include 'lang.inc' ; Language support for locales: ru_RU (CP866), en_US.
|
||
|
||
if lang eq ru_RU
|
||
|
||
text db ' ‚å” ©«:','‚ëå” ©«:',' <20>ãâì:'
|
||
.line_size = ($-text)/3
|
||
|
||
s_compile db 'Š®¬¯¨«.'
|
||
s_run db ' <20>ã᪠'
|
||
s_debug db 'Žâ« ¤ª '
|
||
s_dbgdescr db '‘®§¤ ¢ âì ®â« ¤®çãî ¨ä®à¬ æ¨î',0
|
||
|
||
sz_EPnotFound db 'Not found entry point to ',0
|
||
sizeof.sz_EPnotFound = $-sz_EPnotFound
|
||
|
||
sz_cantLL db 'Cannot load library ',0
|
||
sizeof.sz_cantLL = $-sz_cantLL
|
||
|
||
sz_system_error db 'System error: ',0
|
||
sizeof.sz_system_error = $-sz_system_error
|
||
|
||
else ; Default to en_US
|
||
|
||
text db ' InFile:','OutFile:',' Path:'
|
||
.line_size = ($-text)/3
|
||
|
||
s_compile db 'COMPILE'
|
||
s_run db ' RUN '
|
||
s_debug db ' DEBUG '
|
||
s_dbgdescr db 'Generate debug information',0
|
||
|
||
sz_EPnotFound db 'Not found entry point to ',0
|
||
sizeof.sz_EPnotFound = $-sz_EPnotFound
|
||
|
||
sz_cantLL db 'Cannot load library ',0
|
||
sizeof.sz_cantLL = $-sz_cantLL
|
||
|
||
sz_system_error db 'System error: ',0
|
||
sizeof.sz_system_error = $-sz_system_error
|
||
|
||
end if
|