-
Notifications
You must be signed in to change notification settings - Fork 2
/
state_of_js.yml
240 lines (197 loc) · 7.44 KB
/
state_of_js.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
locale: pl-PL
namespace: js
translations:
###########################################################################
# General
###########################################################################
- key: general.state_of_js.intro
t: >
Światu JavaScript przydałoby się trochę klasyifkacji.
Od 2016, w ramach tej ankiety każdego roku gromadzimy dane od ponad 20 000 deweloperów w celu określenia obecnych i nadchodzących trendów.
Wypełnij ankietę i pomóż nam dowiedzieć się, jakich bibliotek chcą uczyć się programiści, które mają największy współczynnik zadowolenia i nie tylko.
###########################################################################
# Sections
###########################################################################
- key: sections.syntax.title
t: Składnia
- key: sections.syntax.description
t: Gramatyka JavaScript-u.
- key: sections.language.title
t: Język
- key: sections.language.description
t: Słownictwo JavaScript.
- key: sections.data_structures.title
t: Struktury Danych
- key: sections.data_structures.description
t: Sposób przechowywania i przetwarzania danych.
- key: sections.browser_apis.title
t: API Przeglądarek
- key: sections.browser_apis.description
t: Funkcjonalność oferowana przez przeglądarkę.
- key: sections.other_features.title
t: Inna Funkcjonalność
- key: sections.other_features.description
t: Inne technologie i wzorce
- key: sections.patterns.title
t: Wzorce
- key: sections.patterns.description
t: Jaki sposób pisania kodu preferujesz
- key: sections.javascript_flavors.title
t: Odmiany JavaScript
- key: sections.javascript_flavors.description
t: Języki, które kompilują się do JavaScript
- key: sections.front_end_frameworks.title
t: Frameworki Front-endowe
- key: sections.front_end_frameworks.description
t: Frameworki i biblioteki front-endowe
- key: sections.datalayer.title
t: Warstwa Danych
- key: sections.datalayer.description
t: Ładowanie i zarządzanie danymi w twojej aplikacji
- key: sections.back_end_frameworks.title
t: Frameworki Back-endowe
- key: sections.back_end_frameworks.description
t: JavaScript na serwerze
- key: sections.testing.title
t: Testowanie
- key: sections.testing.description
t: Narzędzia do testowania kodu
- key: sections.mobile_desktop.title
t: Urządzenia Mobilne i Stacjonarne
- key: sections.mobile_desktop.description
t: JavaScript dla urządzeń mobilnych i aplikacji desktopowych
- key: sections.build_tools.title
t: Narzędzia Buildujące
- key: sections.build_tools.description
t: Kompilowanie i bundlowanie kodu
- key: sections.tools.title
t: Inne Narzędzia
- key: sections.tools.description
t: Inne narzędzia JavaScript.
###########################################################################
# Options
###########################################################################
###########################################################################
# Features
###########################################################################
# syntax
- key: features.destructuring
t: Destrukturyzacja
- key: features.spread_operator
t: Spread operator
- key: features.arrow_functions
t: Funkcje Strzałkowe
- key: features.nullish_coalescing
t: Nullish Coalescing
- key: features.optional_chaining
t: Optional Chaining
- key: features.private_fields
t: Private Fields
# language
- key: features.proxies
t: Proxy
- key: features.async_await
t: Async/Await
- key: features.promises
t: Promises
- key: features.decorators
t: Dekoratory
- key: features.decorators.description
t: >
W najprostszej formie dekorator to po prostu sposób na owinięcie jednego kawałka kodu drugim - dosłownie „dekorowanie” go.
- key: features.dynamic_import
t: Import Dynamiczny
# data structures
- key: features.maps
t: Mapy
- key: features.sets
t: Sety
- key: features.typed_arrays
t: Tablice Typowane
- key: array_prototype_flat
t: Array.prototype.flat
# browser apis
- key: features.service_workers
t: Service Workers
- key: features.local_storage
t: LocalStorage
- key: features.i18n
t: i18n
- key: features.web_components
t: Web Components
- key: features.web_audio
t: Web Audio API
- key: features.webgl
t: WebGL
- key: features.web_animations
t: Web Animations API
- key: features.webrtc
t: WebRTC
- key: features.web_speech
t: Web Speech API
- key: features.webvr
t: WebVR
- key: features.websocket
t: Websocket
- key: features.fetch
t: Fetch API
# other features
- key: features.pwa
t: Progressive Web Apps (PWA)
- key: features.wasm
t: WebAssembly (WASM)
# patterns
- key: patterns.object_oriented_programming
t: Programowanie Obiektowe
- key: features.functional_programming
t: Programowanie Funkcjonalne
- key: features.reactive_programming
t: Programowanie Reaktywne
###########################################################################
# Tools
###########################################################################
- key: tools.angular.description
t: >
Zwróć uwagę, że to pytanie dotyczy tylko środowiska [Angular](https://angular.io/), a konkretnie *nie* dotyczy przestarzałego [AngularJS](https://angularjs.org/).
###########################################################################
# Other Tools
###########################################################################
- key: tools.runtimes
t: Runtime-y JavaScript
- key: tools.runtimes.question
t: Z jakich silników/runtime-ów/środowisk wykonawczych regularnie korzystasz?
- key: tools.runtimes.others
t: Inne Runtime-y
- key: tools.runtimes.others.description
t: Inne odpowiedzi (wolne pole).
- key: tools.package_registries
t: Rejestry Pakietów
- key: tools.package_registries.question
t: Z których rejestrów pakietów regularnie pobierasz pakiety?
- key: tools.package_registries.others
t: Inne Rejestry Pakietów
- key: tools.package_registries.others.description
t: Inne odpowiedzi (wolne pole).
###########################################################################
# Opinions
###########################################################################
- key: opinions.js_moving_in_right_direction
t: JavaScript idzie w dobrym kierunku
- key: opinions.building_js_apps_overly_complex
t: Tworzenie aplikacji JavaScript jest obecnie zbyt skomplikowane
- key: opinions.js_over_used_online
t: JavaScript jest nadużywany w Internecie
- key: opinions.enjoy_building_js_apps
t: Lubię tworzyć aplikacje JavaScript
- key: opinions.would_like_js_to_be_main_lang
t: Chciałbym, aby JavaScript był moim głównym językiem programowania
- key: opinions.js_ecosystem_changing_to_fast
t: Ekosystem JavaScript zmienia się zbyt szybko
- key: opinions_others.missing_from_js.others
t: Czego Twoim zdaniem obecnie brakuje w JavaScript?
- key: opinions_others.missing_from_js.others.description
t: Funkcjonalność, którą chciałbyś kiedyś zobaczyć w JavaScript.
- key: happiness.state_of_the_web
t: Jak bardzo jesteś zadowolony z ogólnego stanu technologii web-owych?
- key: happiness.state_of_js
t: Jak bardzo jesteś zadowolony z ogólnego stanu JavaScript?