Consistent use of KolibriOS name

- Ensure consistent naming for brand integrity.

git-svn-id: svn://kolibrios.org@10049 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Andrew 2024-05-22 10:10:18 +00:00
parent bcfae55643
commit a7816e7613
30 changed files with 62 additions and 63 deletions

View File

@ -406,7 +406,7 @@ KOSAPI int __strcmp(const char* s1, const char* s2)
} }
/* ####################################################################### */ /* ####################################################################### */
/* ############### С wrappers for system calls Kolibri OS ################ */ /* ############### С wrappers for system calls KolibriOS ################# */
/* ####################################################################### */ /* ####################################################################### */
/*=============== Function -1 - terminate thread/process ===============*/ /*=============== Function -1 - terminate thread/process ===============*/

View File

@ -19,4 +19,3 @@ start:
; --------------------------------------------------------------------------- ; ---------------------------------------------------------------------------
msg db 'This is KolibriOS device driver.',0Dh,0Ah,'$',0 msg db 'This is KolibriOS device driver.',0Dh,0Ah,'$',0

View File

@ -380,7 +380,7 @@ KOSAPI int __strcmp(const char* s1, const char* s2)
} }
/* ####################################################################### */ /* ####################################################################### */
/* ############### С wrappers for system calls Kolibri OS ################ */ /* ############### С wrappers for system calls KolibriOS ################# */
/* ####################################################################### */ /* ####################################################################### */
/*=============== Function -1 - terminate thread/process ===============*/ /*=============== Function -1 - terminate thread/process ===============*/

View File

@ -35,7 +35,7 @@ bool w_redraw=true;
#endif #endif
#if LANG == RUS #if LANG == RUS
const char windowTitle[] = "Š®á¨«ª  ¤«ï Š®«¨¡à¨"; const char windowTitle[] = "Š®á¨«ª  ¤«ï Š®«¨¡à¨Ž‘";
const char version[] = "‚¥àá¨ï 1.16"; const char version[] = "‚¥àá¨ï 1.16";
const char win[] = "‚ë ¢ë¨£à «¨!"; const char win[] = "‚ë ¢ë¨£à «¨!";
const char press_q[] = "<­ ¦¬¨â¥ <q> ¤«ï ¢®§¢à â  ¢ ¬¥­î>"; const char press_q[] = "<­ ¦¬¨â¥ <q> ¤«ï ¢®§¢à â  ¢ ¬¥­î>";
@ -69,7 +69,7 @@ bool w_redraw=true;
const char about10[] = "‚ᥬ, ªâ® ¨£à ¥â ¢ íâã ¨£àã :-) !"; const char about10[] = "‚ᥬ, ªâ® ¨£à ¥â ¢ íâã ¨£àã :-) !";
const char about11[] = "­ ¦¬¨â¥ <BACKSPACE> ¤«ï ¢®§¢à â  ¢ ¬¥­î"; const char about11[] = "­ ¦¬¨â¥ <BACKSPACE> ¤«ï ¢®§¢à â  ¢ ¬¥­î";
#else #else
const char windowTitle[] = "Kosilka for Kolibri"; const char windowTitle[] = "Kosilka for KolibriOS";
const char version[] = " Ver. 1.16"; const char version[] = " Ver. 1.16";
const char win[] = " You won! "; const char win[] = " You won! ";
const char press_q[] = "<press <q> to return to the menu>"; const char press_q[] = "<press <q> to return to the menu>";
@ -341,7 +341,7 @@ void draw_window(void){
kos_DrawBar(631-151,0,151,480,0xEEEEEE); kos_DrawBar(631-151,0,151,480,0xEEEEEE);
kos_WriteTextToWindow(500,30,0x80, 0, (char*)k_o_s_i_l_2,19); kos_WriteTextToWindow(500,30,0x80, 0, (char*)k_o_s_i_l_2,19);
kos_WriteTextToWindow(517,40,0x80, 0, (char*)for_kolibri,14); kos_WriteTextToWindow(517,40,0x80, 0, (char*)for_kolibri,13);
kos_WriteTextToWindow(495,80,0x80, 0, (char*)level_label,6); kos_WriteTextToWindow(495,80,0x80, 0, (char*)level_label,6);
kos_DisplayNumberToWindow(level,3,605,80,0x0000FF,nbDecimal,false); kos_DisplayNumberToWindow(level,3,605,80,0x0000FF,nbDecimal,false);
@ -392,7 +392,7 @@ void draw_window(void){
} }
kos_WriteTextToWindow(255, 200,0x80, 0xFFFFFF, (char*)k_o_s_i_l_k, 19); kos_WriteTextToWindow(255, 200,0x80, 0xFFFFFF, (char*)k_o_s_i_l_k, 19);
kos_WriteTextToWindow(290, 220,0x80, 0xFFFFFF, (char*)for_kolibri, 14); kos_WriteTextToWindow(290, 220,0x80, 0xFFFFFF, (char*)for_kolibri, 13);
kos_WriteTextToWindow(239, 240,0x80, 0xFFFFFF, (char*)press_enter, 30); kos_WriteTextToWindow(239, 240,0x80, 0xFFFFFF, (char*)press_enter, 30);
kos_WriteTextToWindow(30, 380,0x80, 0xFFFFFF, (char*)press_g, 53); kos_WriteTextToWindow(30, 380,0x80, 0xFFFFFF, (char*)press_g, 53);
kos_WriteTextToWindow(30, 400,0x80, 0xFFFFFF, (char*)press_a, 41); kos_WriteTextToWindow(30, 400,0x80, 0xFFFFFF, (char*)press_a, 41);
@ -436,7 +436,7 @@ void draw_window(void){
} }
} }
kos_WriteTextToWindow(40,40,0x80, 0xFFFFFF, (char*)windowTitle,22); kos_WriteTextToWindow(40,40,0x80, 0xFFFFFF, (char*)windowTitle,21);
kos_WriteTextToWindow(40,60,0x80, 0xFFFFFF, (char*)version,12); kos_WriteTextToWindow(40,60,0x80, 0xFFFFFF, (char*)version,12);
kos_WriteTextToWindow(40,75,0x80, 0xFFFFFF, "________________________________________",40); kos_WriteTextToWindow(40,75,0x80, 0xFFFFFF, "________________________________________",40);