Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3633 → Rev 3634

/programs/system/RunOD/RunOD.asm
23,6 → 23,8
program.params dd 0
program.path dd 0
 
include 'lang.inc'
 
; ======================================================================= ;
start_:
; set.event
681,6 → 683,21
sz_SYS db "/sys",0
sz_opendial_path db "/sys/File managers/opendial",0
 
if lang eq it
sz_Program_run_successfully db "Programma eseguito correttamente",0
sz_File_not_found db "File non trovato",0
sz_File_is_not_executable db "File non eseguibile",0
sz_Too_many_processes db "Troppi processi",0
sz_Access_denied db "Accesso negato",0
sz_Out_of_memory db "Out of memory",0
sz_Unknown_error db "Errore sconosciuto",0
 
sz_Type_name_of_program db "Digita il nome del programma per eseguirlo",0
 
sz_run db "Esegui ",0
sz_browse db " Naviga",0
 
else
sz_Program_run_successfully db "Program run successfully",0
sz_File_not_found db "File not found",0
sz_File_is_not_executable db "File is not executable",0
693,7 → 710,7
 
sz_run db " Run ",0
sz_browse db " Browse ",0
 
end if
; ======================================================================= ;
end_: