forked from javascript-tutorial/uk.javascript.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
images.yml
151 lines (131 loc) · 3.79 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
# 1-js/02-first-steps/04-variables/variable.svg
variable.svg:
"Hello!":
text: "Привіт!"
position: "center"
"message":
text: "Повідомлення"
position: "center"
# 1-js/02-first-steps/04-variables/variable-change.svg
variable-change.svg:
"Hello!":
text: "Привіт!"
position: "center"
"World!":
text: "Світ!"
position: "center"
"message":
text: "Повідомлення"
position: "center"
ifelse_task2.svg:
Begin: ''
You don't know?: ''
“ECMAScript”!: ''
Right!: ''
What's the: ''
“official” name of: ''
JavaScript?: ''
Other: ''
ECMAScript: ''
ifelse_task.svg:
Begin: ''
Canceled: ''
Welcome!: ''
I don't know you: ''
Wrong password: ''
Who's there?: ''
Password?: ''
Cancel: ''
Admin: ''
TheMaster: ''
Other: ''
# 1-js/03-code-quality/01-debugging-chrome/chrome-open-sources.svg
chrome-open-sources.svg:
"open sources":
text: "показати вихідні файли"
# 1-js/03-code-quality/01-debugging-chrome/chrome-sources-breakpoint.svg
chrome-sources-breakpoint.svg:
"here's the list":
text: "список всіх точок в цьому файлі"
position: "right"
"breakpoints":
text: "точки зупинки"
# 1-js/03-code-quality/01-debugging-chrome/chrome-sources-debugger-pause.svg
chrome-sources-debugger-pause.svg:
"see the outer call details":
text: "перегляд деталей зовнішнього виклику"
position: "right"
"watch expressions":
text: "перегляд виразів"
position: "right"
"current variables":
text: "поточні змінні"
position: "right"
# 1-js/03-code-quality/01-debugging-chrome/chrome-sources-debugger-trace-1.svg
chrome-sources-debugger-trace-1.svg:
"nested calls":
text: "вкладені виклики"
toolbarButtonGlyphs.svg: {}
code-style.svg:
'2': ''
No space: ''
between the function name and parentheses: ''
between the parentheses and the parameter: ''
Indentation: ''
2 spaces: ''
'A space ': ''
after for/if/while…: ''
'} else { without a line break': ''
Spaces around a nested call: ''
An empty line: ''
between logical blocks: ''
Lines are not very long: ''
A semicolon ;: ''
is mandatory: ''
Spaces: ''
around operators: ''
'Curly brace {': ''
'on the same line, after a space': ''
A space: ''
between: ''
parameters: ''
A space between parameters: ''
recursion-pow.svg:
'pow(x,n)': ''
x: ''
'x * pow(x, n-1)': ''
n == 1 ?: ''
'Yes': ''
'No': ''
recursive call until n==1: ''
try-catch-flow.svg:
Begin: "Початок"
No Errors: "Помилка не виникає"
An error occured in the code: "Помилка виникає"
Ignore catch block: "Ігнорування catch блоку"
Ignore the rest of try: "Ігнорування решти try блоку"
Execute catch block: "Виконання catch блоку"
'try {': ''
'': ''
'}': ''
// code...: '// код...'
promise-handler-variants.svg:
_defaults:
position: "center"
...with the result: '...з результатом'
of the new promise...: 'нового промісу...'
'the call of .then(handler) always returns a promise:': 'виклик .then(handler) завжди повертає проміс:'
if handler ends with…: 'якщо handler завершується…'
return value: 'поверненням значення'
return promise: 'поверненням промісу'
throw error: 'помилкою'
'that promise settles with:': 'цей проміс завершується з:'
statusbarButtonGlyphs.svg:
'!': ''
field.svg: {}
placeholder.svg: {}
logo-fetch.svg: {}
demo.svg:
'1': ''
before-prepend-append-after.svg:
(…nodes-or-strings): "(...вузли або рядки)"