Fix EN typos

- Corrections for en_US language.
- Some whitespace sanitation.

git-svn-id: svn://kolibrios.org@10068 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Andrew 2024-05-30 20:45:33 +00:00
parent ae43d8f454
commit 09cb62069d
9 changed files with 47 additions and 47 deletions

View File

@ -1295,9 +1295,9 @@ align 4
;-------------------------------------- ;--------------------------------------
align 4 align 4
@@: @@:
; DEBUGF 1, "K : SHIT HAPPENS: %x %x \n", ecx,ebx ; DEBUGF 1, "K : ERRORS HAPPEN: %x %x \n", ecx,ebx
pop ebx pop ebx
jmp .sh ; SORRY! SHIT HAPPENS! jmp .sh ; SORRY! ERRORS HAPPEN!
;-------------------------------------- ;--------------------------------------
align 4 align 4
.ok: .ok:

View File

@ -367,7 +367,7 @@ put_image_end_16_new:
; check mouse area for putpixel ; check mouse area for putpixel
call check_mouse_area_for_putpixel_new.1 call check_mouse_area_for_putpixel_new.1
cmp ecx, -1 ; SHIT HAPPENS? cmp ecx, -1 ; MISTAKES HAPPEN?
jne .no_mouse_area jne .no_mouse_area
mov ecx, [esp] mov ecx, [esp]
@ -504,7 +504,7 @@ put_image_end_24_new:
; check mouse area for putpixel ; check mouse area for putpixel
call check_mouse_area_for_putpixel_new.1 call check_mouse_area_for_putpixel_new.1
cmp ecx, -1 ; SHIT HAPPENS? cmp ecx, -1 ; MISTAKES HAPPEN?
jne .no_mouse_area jne .no_mouse_area
mov ecx, [esp] mov ecx, [esp]

View File

@ -171,7 +171,7 @@ CDICT_VAL_T cdict_get_v(CDict *s, CDICT_KEY_T key);
#endif #endif
#ifdef CDICT_HASHTAB_ITEM_ALLOCATORS_OVERRIDDEN #ifdef CDICT_HASHTAB_ITEM_ALLOCATORS_OVERRIDDEN
#error "FUCK!" #error "PROBLEM!"
#endif #endif
/// Replacement for assert from <assert.h> /// Replacement for assert from <assert.h>

View File

@ -1,4 +1,4 @@
; EntropyView - file entropy visualisation ; EntropyView - file entropy visualization
; rgimad 2021 ; rgimad 2021
; header: ; header:
@ -215,7 +215,7 @@ endp
align 4 align 4
proc _memset stdcall, dest:dword, val:byte, cnt:dword ; doesnt clobber any registers proc _memset stdcall, dest:dword, val:byte, cnt:dword ; doesn't clobber any registers
;DEBUGF DBG_INFO, "memset(%x, %u, %u)\n", [dest], [val], [cnt] ;DEBUGF DBG_INFO, "memset(%x, %u, %u)\n", [dest], [val], [cnt]
push eax ecx edi push eax ecx edi
mov edi, dword [dest] mov edi, dword [dest]

View File

@ -64,7 +64,7 @@ shape_window:
mcall mcall
mov eax,50 ; give the shape scale 32 x 32 -> 128 x 128 mov eax,50 ; give the shape scale 32 x 32 -> 128 x 128
mov ebx,1 ; you dont have to give this, scale is 1:1 by default mov ebx,1 ; you don't have to give this, scale is 1:1 by default
mov ecx,2 mov ecx,2
mcall mcall

View File

@ -116,7 +116,7 @@ still: ; wait here for event
draw_window_main: draw_window_main:
mov eax,12 ; function 12:tell os about windowdraw mov eax,12 ; function 12: tell os about windowdraw
mov ebx,1 ; 1, start of draw mov ebx,1 ; 1, start of draw
mcall mcall
@ -185,7 +185,7 @@ text:
db ' ' db ' '
db ' OPEN CHOOSE BOX ' db ' OPEN CHOOSE BOX '
db 'x <- END MARKER, DONT DELETE ' db 'x <- END MARKER, DO NOT DELETE '
labelt: labelt:
db 'EXAMPLE APPLICATION' db 'EXAMPLE APPLICATION'

View File

@ -387,7 +387,7 @@ text:
db ' ' db ' '
db ' ' db ' '
db 'RECEIVED: POP ' db 'RECEIVED: POP '
db 'x' ; <- END MARKER, DONT DELETE db 'x' ; <- END MARKER, DO NOT DELETE
title db 'IPC - START AT LEAST 2',0 title db 'IPC - START AT LEAST 2',0

View File

@ -171,7 +171,7 @@ CDICT_VAL_T cdict_get_v(CDict *s, CDICT_KEY_T key);
#endif #endif
#ifdef CDICT_HASHTAB_ITEM_ALLOCATORS_OVERRIDDEN #ifdef CDICT_HASHTAB_ITEM_ALLOCATORS_OVERRIDDEN
#error "FUCK!" #error "PROBLEM!"
#endif #endif
/// Replacement for assert from <assert.h> /// Replacement for assert from <assert.h>

View File

@ -48,7 +48,7 @@ HISTORY:
- function 70 for *all* file operations (including diamond's fixes) - function 70 for *all* file operations (including diamond's fixes)
- use memory manager instead of statically allocated region - use memory manager instead of statically allocated region
- case-insensitive filenames input, to be able to open/save files with - case-insensitive filenames input, to be able to open/save files with
non-latin chars in name (russian etc.) non-latin chars in name (Russian etc.)
- reduced flickering (changes checker) - reduced flickering (changes checker)
- overall code cleanup - overall code cleanup
new features: new features:
@ -71,7 +71,7 @@ HISTORY:
changes: changes:
- function 70 instead of 58 for files loading/saving - function 70 instead of 58 for files loading/saving
- clientarea-relative drawing (less code) - clientarea-relative drawing (less code)
- every line's dword is now splitted into 2 words; - every line's dword is now split into 2 words;
low word - line block length, so max line length is 64KB now low word - line block length, so max line length is 64KB now
high word - various flags. for now, only 2 of 16 bits are used: high word - various flags. for now, only 2 of 16 bits are used:
if bit #0 is set, line was modified since file open if bit #0 is set, line was modified since file open
@ -113,9 +113,9 @@ HISTORY:
4.0 beta 1 (mike.dld) 4.0 beta 1 (mike.dld)
menu bar and popup menu; menu bar and popup menu;
removed buttons from the top and input fields from the bottom since removed buttons from the top and input fields from the bottom since
now they're accesible through main/popup menu; now they're accessible through main/popup menu;
improved keyboard handling (using 66th function); improved keyboard handling (using 66th function);
support for almost all FASMW keyboard shourtcuts; support for almost all FASMW keyboard shortcuts;
added text selection ability, standard selection operations added text selection ability, standard selection operations
(copy,cut,paste); (copy,cut,paste);
new integrated dialogs (open, save, find) new integrated dialogs (open, save, find)
@ -162,10 +162,10 @@ HISTORY:
rewrote save_file from scratch; bugfix in loadfile; rewrote save_file from scratch; bugfix in loadfile;
3.74 3.74
optimisation optimization
3.73 3.73
completly new load_file function completely new load_file function
3.72 3.72
speed++ speed++