-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
images.yml
606 lines (529 loc) · 14.9 KB
/
images.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
code-style.svg:
"A space between parameters":
text: "Mezera mezi parametry"
"No space":
text: "Bez mezer"
position: "center"
"between the function name and parentheses":
position: "center"
text: "mezi názvem funkcí a závorkou"
"between the parentheses and the parameter":
position: "center"
text: "mezi závorkou a parametrem"
"Indentation":
position: "center"
text: "Odsazení"
"2 spaces":
position: "center"
text: "2 mezery"
"A space ":
position: "center"
text: "Mezera"
"after for/if/while…":
position: "center"
text: "za for/if/while…"
"} else { without a line break": "} else { bez konce řádku"
"Spaces around a nested call":
position: "center"
text: "Mezery kolem vnořeného volání"
"An empty line":
position: "center"
text: "Prázdný řádek"
"between logical blocks":
position: "center"
text: "mezi logickými bloky"
"Lines are not very long": "Řádky nejsou příliš dlouhé"
"A semicolon ;": "Středník ;"
"is mandatory": "je povinný"
"Spaces":
position: "center"
text: "Mezery"
"around operators":
position: "center"
text: "kolem operátorů"
"Curly brace {":
position: "center"
text: "Složená závorka {"
"on the same line, after a space":
position: "center"
text: "na stejném řádku za mezerou"
"A space":
position: "center"
text: "Mezera"
"between":
position: "center"
text: "mezi"
"parameters":
position: "center"
text: "parametry"
"arguments":
position: "center"
text: "argumenty"
"A space between arguments":
position: "center"
text: "Mezera mezi argumenty"
try-catch-flow.svg:
"Begin":
text: "Začátek"
position: "center"
"No Errors":
text: "Bez chyb"
position: "center"
"An error occured in the code":
text: "V kódu nastala chyba"
position: "center"
"// code...": "// kód..."
"Ignore catch block":
text: "Ignoruj blok catch"
position: "center"
"Ignore the rest of try":
text: "Ignoruj zbytek try"
position: "center"
"Execute catch block":
text: "Vykonej blok catch"
position: "center"
recursion-pow.svg:
"Yes":
text: "Ano"
position: "center"
"No":
text: "Ne"
"recursive call until n==1": "rekurzívní volání až do n==1"
hello-world-render.svg:
"1. The browser shows this part": "1. Prohlížeč zobrazí tuto část"
"2. Then runs the script": "2. Pak spustí skript"
"3. Then shows the rest": "3. Pak zobrazí zbytek"
ifelse_task2.svg:
"Begin":
text: "Začátek"
position: "center"
"Other":
text: "Jiné"
position: "center"
"You don't know?":
text: "Vy to nevíte?"
position: "center"
"Right!":
text: "Správně!"
position: "center"
"What's the":
text: "Jaký je"
position: "center"
"“official” name of":
text: "\"oficiální\" název"
position: "center"
"JavaScript?":
text: "JavaScriptu?"
position: "center"
"Иначе": ""
ifelse_task.svg:
"Begin": "Začátek"
"Canceled":
position: "center"
text: "Zrušeno"
"Welcome!":
text: "Vítejte!"
position: "center"
"I don't know you": "Neznám vás"
"Wrong password":
position: "center"
text: "Chybné heslo"
"Who's there?":
position: "center"
text: "Kdo je tam?"
"Password?": "Heslo?"
"Cancel": "Zrušeno"
"Admin": "Správce"
"TheMaster": "Vládce"
"Other": "Jiné"
chrome-sources-breakpoint.svg:
"here's the list":
text: "zde je seznam"
position: "right"
"breakpoints":
text: "zarážky"
chrome-sources-debugger-pause.svg:
"see the outer call details":
text: "viz detaily vnějšího volání"
position: "right"
"watch expressions":
text: "sledování výrazů"
position: "right"
"current variables":
text: "aktuální proměnné"
position: "right"
chrome-sources-debugger-trace-1.svg:
"nested calls":
text: "vnořená volání"
position: "right"
chrome-open-sources.svg:
open sources: 'Otevřete záložku se zdrojovými soubory'
object-user-empty.svg:
empty:
text: prázdný
position: "center"
user: uživatel
garbage-collection-5.svg:
unreachables:
text: nedosažitelný
array-shift.svg:
clear:
text: vymazat
position: "center"
move: posunout
elements: prvky
to the left: doleva
array-pop.svg:
clear:
text: vymazat
position: "center"
decorator-makecaching-wrapper.svg:
wrapper: 'wrapper'
around the function: 'kolem funkce'
xhr-another-domain.svg:
_defaults:
position: "center"
Browser: 'Prohlížeč'
Server: 'Server'
HTTP-request: 'HTTP požadavek'
HTTP-response: 'HTTP odpověď'
'* OR https://javascript.info': '* NEBO https://javascript.info'
'if the header allows, then success,': 'pokud to hlavička umožní, pak úspěch,'
otherwise fail: 'jinak chyba'
xhr-preflight.svg:
_defaults:
position: "center"
Browser: 'Prohlížeč'
Server: 'Server'
Main HTTP-response: 'Hlavní HTTP odpověď'
otherwise error: 'jinak chyba'
'if allowed: success,': 'je-li povoleno, úspěch,'
Main HTTP-request: 'Hlavní HTTP požadavek'
preflight:
text: 'předlet'
position: 'right'
if allowed:
text: 'je-li povoleno'
position: 'right'
cors-gmail-messages.svg:
_defaults:
position: "center"
got the cookie?: 'máme cookie?'
okay!: 'ok!'
websocket-handshake.svg:
_defaults:
position: "center"
Browser: 'Prohlížeč'
Server: 'Server'
HTTP-request: 'HTTP požadavek'
'"Hey, server, let''s talk WebSocket?"': '„Servere, popovídáme si na WebSocketu?“'
HTTP-response: 'HTTP odpověď'
'"Okay!"': 'Dobře!'
WebSocket protocol: 'Protokol WebSocket'
long-polling.svg:
_defaults:
position: "center"
Browser: 'Prohlížeč'
Server: 'Server'
request: 'požadavek'
connection: 'spojení'
hangs: 'visí'
connection breaks: 'spojení přerušeno'
end of request: 'konec požadavku'
data: 'data'
genYield2-2.svg:
_defaults:
position: "center"
Generator: 'Generátor'
Calling code: 'Volající kód'
genYield2.svg:
_defaults:
position: "center"
Generator: 'Generátor'
Calling code: 'Volající kód'
question = "2 + 2 = ?": 'otázka = "2 + 2 = ?"'
promise-handler-variants.svg:
_defaults:
position: "center"
...with the result: '...s výsledkem'
of the new promise...: 'nového příslibu...'
'the call of .then(handler) always returns a promise:': 'volání .then(handler) vždy vrátí příslib:'
if handler ends with…: 'pokud handler skončí…'
return value: 'vrácením hodnoty'
return promise: 'vrácením příslibu'
throw error: 'chybou'
'that promise settles with:': 'tento příslib se usadí s:'
'result: value': 'result: hodnota'
'result: error': 'result: chyba'
promiseQueue.svg:
'"code finished"': '"konec kódu"'
handler enqueued: 'handler ve frontě'
queued handler runs: 'spouští se handler z fronty'
script execution finished: 'výkon skriptu ukončen'
eventLoop-full.svg:
script: 'skript'
event:
text: 'událost'
position: 'center'
loop:
text: 'cyklus'
position: 'center'
microtasks: 'mikroúlohy'
render: 'renderování'
eventLoop.svg:
script: 'skript'
event:
text: 'událost'
position: 'center'
loop:
text: 'cyklus'
position: 'center'
macrotask:
text: 'makroúloha'
position: 'center'
queue:
text: 'fronta'
position: 'center'
cookie-xsrf.svg:
_defaults:
position: "center"
got the cookie?: 'máme cookie?'
okay!: 'ok!'
lexical-environment-global-3.svg:
execution start: 'začátek výkonu'
lexenv-nested-makecounter-5.svg:
'<empty>':
text: '<prázdno>'
position: 'center'
lexical-environment-global-2.svg:
execution start: 'začátek výkonu'
'<empty>': '<prázdno>'
lexenv-makearmy.svg:
for block: 'pro blok'
lexical-environment-simple.svg:
'LexicalEnvironment for the call': 'LexicalEnvironment pro toto volání'
lexenv-nested-makecounter-2.svg:
global LexicalEnvironment: 'globální LexicalEnvironment'
'of makeCounter() call': 'volání makeCounter()'
lexenv-nested-makecounter-6.svg:
modified here: 'zde změněno'
proxy-inherit.svg:
'_name: "Guest"': '_name: "Host"'
user (proxied):
text: 'uživatel (proxy)'
position: "center"
original user:
text: 'původní uživatel'
position: "center"
proxy-inherit-admin.svg:
'_name: "Guest"': '_name: "Host"'
'_name: "Admin"': '_name: "Admin"'
user (proxied):
text: 'uživatel (proxy)'
position: "center"
original user:
text: 'původní uživatel'
position: "center"
selection-firefox.svg:
selection: 'výběr'
selection-direction-backward.svg:
focus: 'zaměření'
anchor: 'kotva'
selection-direction-forward.svg:
focus: 'zaměření'
anchor: 'kotva'
object-prototype-empty.svg:
'object': 'objekt'
'prototype object': 'prototypový objekt'
rabbit-prototype-constructor.svg:
'default "prototype"': 'defaultně "prototype"'
'Rabbit': 'Králík'
'rabbit': 'králík'
function-prototype-constructor.svg:
'default "prototype"': 'defaultní "prototype"'
'Rabbit': 'Králík'
rabbit-animal-independent-animal.svg:
'name: "My animal"': 'jméno: "Moje zvíře"'
'Animal': 'Zvíře'
'Animal.prototype': 'Zvíře.prototype'
'constructor: Animal': 'constructor: Zvíře'
'run: function': 'běž: function'
'stop: function': 'stůj: function'
'new Animal': 'new Zvíře'
rabbit-animal-independent-rabbit.svg:
'name: "My rabbit"': 'jméno: "Můj králík"'
animal-rabbit-extends.svg:
'name: "White Rabbit"': 'jméno: "Bílý králík"'
'Animal': 'Zvíře'
'Animal.prototype': 'Zvíře.prototype'
'Rabbit': 'Králík'
'Rabbit.prototype': 'Králík.prototype'
'constructor: Animal': 'constructor: Zvíře'
'run: function': 'běž: function'
'stop: function': 'stůj: function'
'constructor: Rabbit': 'constructor: Králík'
'hide: function': 'schovejSe: function'
'new Rabbit': 'new Králík'
animal-rabbit-static.svg:
'name: "White Rabbit"': 'jméno: "Bílý králík"'
'Animal': 'Zvíře'
'Animal.prototype': 'Zvíře.prototype'
'Rabbit': 'Králík'
'Rabbit.prototype': 'Králík.prototype'
'constructor: Animal': 'constructor: Zvíře'
'run: function': 'běž: function'
'constructor: Rabbit': 'constructor: Králík'
'hide: function': 'schovejSe: function'
'compare': 'porovnej'
'rabbit': 'králík'
class-inheritance-rabbit-animal.svg:
'methods of Animal': 'metody Zvířete'
'methods of Rabbit': 'metody Králíka'
'properties of rabbit': 'vlastnosti králíka'
proto-animal-rabbit-walk-3.svg:
'name: "White Rabbit"': 'jméno: "Bílý králík"'
'animal': 'zvíře'
'walk: function': 'jdi: function'
'sleep: function': 'spi: function'
'rabbit': 'králík'
'isSleeping: true': 'jeSpící: true'
class-inheritance-rabbit-animal-2.svg:
'name: "White Rabbit"': 'jméno: "Bílý králík"'
event-order-bubbling.svg:
_defaults:
position: "center"
'Most deeply': 'Nejhlouběji'
'nested element': 'vnořený prvek'
proto-animal-rabbit.svg:
'animal': 'zvíře'
'rabbit': 'králík'
'eats: true': 'žere: true'
'jumps: true': 'skáče: true'
proto-constructor-animal-rabbit.svg:
'Rabbit': 'Králík'
'animal': 'zvíře'
'eats: true': 'žere: true'
'rabbit': 'králík'
'name: "White Rabbit"': 'jméno: "Bílý králík"'
native-prototypes-classes.svg:
'other object methods': 'jiné metody objektů'
'other array methods': 'jiné metody polí'
'other function methods': 'jiné metody funkcí'
'other number methods': 'jiné metody čísel'
proto-animal-rabbit-walk.svg:
'animal': 'zvíře'
'eats: true': 'žere: true'
'walk: function': 'jdi: function'
'rabbit': 'králík'
'jumps: true': 'skáče: true'
proto-animal-rabbit-chain.svg:
'animal': 'zvíře'
'eats: true': 'žere: true'
'walk: function': 'jdi: function'
'rabbit': 'králík'
'jumps: true': 'skáče: true'
'longEar': 'dlouhouchý'
'earLength': 'délkaUcha'
proto-animal-rabbit-walk-2.svg:
'animal': 'zvíře'
'eats: true': 'žere: true'
'walk: function': 'jdi: function'
'rabbit': 'králík'
rabbit-animal-object.svg:
'animal': 'zvíře'
'eats: true': 'žere: true'
'rabbit': 'králík'
'jumps: true': 'skáče: true'
class-user.svg:
'User': 'Uživatel'
'name': 'jméno'
'sayHi: function': 'řekniAhoj: function'
'constructor(name) {': 'constructor(jméno) {'
' this.name = name;': ' this.jméno = jméno;'
'constructor: User': 'constructor: Uživatel'
'User.prototype': 'Uživatel.prototype'
this-super-loop.svg:
'rabbit': 'králík'
'animal': 'zvíře'
'eat': 'žer'
'longEar': 'dlouhouchý'
'let rabbit = {': 'let králík = {'
' __proto__: animal': ' __proto__: zvíře'
' __proto__: rabbit': ' __proto__: králík'
' eat() {': ' žer() {'
' this.__proto__.žer.call(this); (*)': ' this.__proto__.eat.call(this); (*)'
' this.__proto__.žer.call(this); (**)': ' this.__proto__.eat.call(this); (**)'
super-homeobject-wrong.svg:
'animal': 'zvíře'
'plant': 'rostlina'
'sayHi': 'řekniAhoj'
'rabbit': 'králík'
'tree': 'strom'
variable.svg:
'"Hello!"': '"Ahoj!"'
'message': 'zpráva'
variable-change.svg:
'"Hello!"': '"Ahoj!"'
'"World!"': '"světe!"'
'message': 'zpráva'
rabbit-extends-object.svg:
'class Rabbit': 'class Králík'
'class Rabbit extends Object': 'class Králík extends Object'
'Rabbit': 'Králík'
object-date-inheritance.svg:
'1 Jan 2019': '1. leden 2019'
instanceof.svg:
'Animal.prototype': 'Zvíře.prototype'
'= Animal.prototype?': '= Zvíře.prototype?'
'rabbit': 'králík'
'Rabbit.prototype': 'Králík.prototype'
mixin-inheritance.svg:
'sayMixin': 'mixinŘekni'
'say: function': 'řekni: function'
'User.prototype': 'Uživatel: prototype'
'constructor: User': 'constructor: Uživatel'
'sayHi: function': 'řekniAhoj: function'
'sayBye: function': 'řekniNashle: function'
'user': 'uživatel'
'name: ...': 'jméno: ...'
'sayHiMixin': 'mixinŘekniAhoj'
promise-resolve-reject.svg:
'resolve(value)': 'resolve(hodnota)'
'reject(error)': 'reject(chyba)'
'result: value': 'result: hodnota'
'result: error': 'result: chyba'
'new Promise(executor)': 'new Promise(exekutor)'
promise-resolve-1.svg:
'resolve("done")': 'resolve("hotovo")'
'result: "done"': 'result: "hotovo"'
'new Promise(executor)': 'new Promise(exekutor)'
promise-reject-1.svg:
'reject(error)': 'reject(chyba)'
'result: error': 'result: chyba'
'new Promise(executor)': 'new Promise(exekutor)'
generateSequence-1.svg:
'generateSequence': 'generujPosloupnost'
proxy.svg:
'target': 'cíl'
object.svg:
key1: klíč1
key2: klíč2
key3: klíč3
object-user.svg:
user: uživatel
name: jméno
age: věk
object-user-isadmin.svg:
user: uživatel
name: jméno
age: věk
isAdmin: jeAdmin
object-user-delete.svg:
user: uživatel
name: jméno
isAdmin: jeAdmin
object-user-props.svg:
user: uživatel
name: jméno
age: věk
likes birds: má rád ptáky