forked from KolibriOS/kolibrios
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:
parent
ae43d8f454
commit
09cb62069d
@ -1295,9 +1295,9 @@ 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
|
||||
jmp .sh ; SORRY! SHIT HAPPENS!
|
||||
jmp .sh ; SORRY! ERRORS HAPPEN!
|
||||
;--------------------------------------
|
||||
align 4
|
||||
.ok:
|
||||
|
@ -367,7 +367,7 @@ put_image_end_16_new:
|
||||
|
||||
; check mouse area for putpixel
|
||||
call check_mouse_area_for_putpixel_new.1
|
||||
cmp ecx, -1 ; SHIT HAPPENS?
|
||||
cmp ecx, -1 ; MISTAKES HAPPEN?
|
||||
jne .no_mouse_area
|
||||
|
||||
mov ecx, [esp]
|
||||
@ -504,7 +504,7 @@ put_image_end_24_new:
|
||||
|
||||
; check mouse area for putpixel
|
||||
call check_mouse_area_for_putpixel_new.1
|
||||
cmp ecx, -1 ; SHIT HAPPENS?
|
||||
cmp ecx, -1 ; MISTAKES HAPPEN?
|
||||
jne .no_mouse_area
|
||||
|
||||
mov ecx, [esp]
|
||||
|
@ -171,7 +171,7 @@ CDICT_VAL_T cdict_get_v(CDict *s, CDICT_KEY_T key);
|
||||
#endif
|
||||
|
||||
#ifdef CDICT_HASHTAB_ITEM_ALLOCATORS_OVERRIDDEN
|
||||
#error "FUCK!"
|
||||
#error "PROBLEM!"
|
||||
#endif
|
||||
|
||||
/// Replacement for assert from <assert.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
; EntropyView - file entropy visualisation
|
||||
; EntropyView - file entropy visualization
|
||||
; rgimad 2021
|
||||
|
||||
; header:
|
||||
@ -215,7 +215,7 @@ endp
|
||||
|
||||
|
||||
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]
|
||||
push eax ecx edi
|
||||
mov edi, dword [dest]
|
||||
|
@ -64,7 +64,7 @@ shape_window:
|
||||
mcall
|
||||
|
||||
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
|
||||
mcall
|
||||
|
||||
|
@ -185,7 +185,7 @@ text:
|
||||
db ' '
|
||||
db ' OPEN CHOOSE BOX '
|
||||
|
||||
db 'x <- END MARKER, DONT DELETE '
|
||||
db 'x <- END MARKER, DO NOT DELETE '
|
||||
|
||||
labelt:
|
||||
db 'EXAMPLE APPLICATION'
|
||||
|
@ -387,7 +387,7 @@ text:
|
||||
db ' '
|
||||
db ' '
|
||||
db 'RECEIVED: POP '
|
||||
db 'x' ; <- END MARKER, DONT DELETE
|
||||
db 'x' ; <- END MARKER, DO NOT DELETE
|
||||
|
||||
|
||||
title db 'IPC - START AT LEAST 2',0
|
||||
|
@ -171,7 +171,7 @@ CDICT_VAL_T cdict_get_v(CDict *s, CDICT_KEY_T key);
|
||||
#endif
|
||||
|
||||
#ifdef CDICT_HASHTAB_ITEM_ALLOCATORS_OVERRIDDEN
|
||||
#error "FUCK!"
|
||||
#error "PROBLEM!"
|
||||
#endif
|
||||
|
||||
/// Replacement for assert from <assert.h>
|
||||
|
@ -48,7 +48,7 @@ HISTORY:
|
||||
- function 70 for *all* file operations (including diamond's fixes)
|
||||
- use memory manager instead of statically allocated region
|
||||
- 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)
|
||||
- overall code cleanup
|
||||
new features:
|
||||
@ -71,7 +71,7 @@ HISTORY:
|
||||
changes:
|
||||
- function 70 instead of 58 for files loading/saving
|
||||
- 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
|
||||
high word - various flags. for now, only 2 of 16 bits are used:
|
||||
if bit #0 is set, line was modified since file open
|
||||
@ -113,9 +113,9 @@ HISTORY:
|
||||
4.0 beta 1 (mike.dld)
|
||||
menu bar and popup menu;
|
||||
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);
|
||||
support for almost all FASMW keyboard shourtcuts;
|
||||
support for almost all FASMW keyboard shortcuts;
|
||||
added text selection ability, standard selection operations
|
||||
(copy,cut,paste);
|
||||
new integrated dialogs (open, save, find)
|
||||
@ -162,10 +162,10 @@ HISTORY:
|
||||
rewrote save_file from scratch; bugfix in loadfile;
|
||||
|
||||
3.74
|
||||
optimisation
|
||||
optimization
|
||||
|
||||
3.73
|
||||
completly new load_file function
|
||||
completely new load_file function
|
||||
|
||||
3.72
|
||||
speed++
|
||||
|
Loading…
Reference in New Issue
Block a user