Subversion Repositories Kolibri OS

Rev

Rev 7838 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. include 'lang.inc'
  3.  
  4. if lang eq ru
  5.  
  6. text            db ' ‚å” ©«:','‚ë唠©«:','   ãâì:'
  7.         .line_size = ($-text)/3
  8.  
  9. s_compile       db 'Š®¬¯¨«.'
  10. s_run           db ' ã᪠ '
  11. s_debug         db 'Žâ« ¤ª '
  12. s_dbgdescr      db '‘®§¤ ¢ âì ®â« ¤®ç­ãî ¨­ä®à¬ æ¨î',0
  13.  
  14. sz_EPnotFound   db 'Not found entry point to ',0
  15. sizeof.sz_EPnotFound = $-sz_EPnotFound
  16.  
  17. sz_cantLL       db 'Can not load library ',0
  18. sizeof.sz_cantLL = $-sz_cantLL
  19.  
  20. sz_system_error db 'System error: ',0
  21. sizeof.sz_system_error = $-sz_system_error
  22.  
  23. else
  24.  
  25. text    db    ' InFile:','OutFile:','   Path:'
  26.         .line_size = ($-text)/3
  27.  
  28. s_compile       db    'COMPILE'
  29. s_run           db    '  RUN  '
  30. s_debug         db    ' DEBUG '
  31. s_dbgdescr      db    'Generate debug information',0
  32.  
  33. sz_EPnotFound   db 'Not found entry point to ',0
  34. sizeof.sz_EPnotFound = $-sz_EPnotFound
  35.  
  36. sz_cantLL       db 'Can not load library ',0
  37. sizeof.sz_cantLL = $-sz_cantLL
  38.  
  39. sz_system_error db 'System error: ',0
  40. sizeof.sz_system_error = $-sz_system_error
  41.  
  42. end if
  43.  
  44.