From ad3dc1f53081d0d237341988919f3c452f973041 Mon Sep 17 00:00:00 2001 From: "Kirill Lipatov (Leency)" Date: Tue, 28 Apr 2020 23:28:46 +0000 Subject: [PATCH] return to commot 'lang eq' git-svn-id: svn://kolibrios.org@7838 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/develop/fasm/1.73/traslations.inc | 32 ++++++++++------------ 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/programs/develop/fasm/1.73/traslations.inc b/programs/develop/fasm/1.73/traslations.inc index b8b0b8e34a..ec05516d10 100644 --- a/programs/develop/fasm/1.73/traslations.inc +++ b/programs/develop/fasm/1.73/traslations.inc @@ -1,23 +1,21 @@ include 'lang.inc' -match =en,lang { -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 -} - -match =ru,lang { -text db ' ВхФайл:','ВыхФайл:',' Путь:' - .line_size = ($-text)/3 -s_compile db 'Компил.' -s_run db ' Пуск ' -s_debug db 'Отладка' -s_dbgdescr db 'Создавать отладочную информацию',0 -} +if lang eq ru + text db ' ВхФайл:','ВыхФайл:',' Путь:' + .line_size = ($-text)/3 + s_compile db 'Компил.' + s_run db ' Пуск ' + s_debug db 'Отладка' + s_dbgdescr db 'Создавать отладочную информацию',0 +else + 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 +end if sz_EPnotFound db 'Not found entry point to ',0 sizeof.sz_EPnotFound = $-sz_EPnotFound