@qooxdoo/framework 7.0.0-beta.3 → 7.0.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/Manifest.json +1 -1
- package/README.md +9 -3
- package/lib/compiler/compile-info.json +60 -58
- package/lib/compiler/index.js +3242 -1883
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/theme/custom/css/custom.css.map +1 -1
- package/lib/resource/qx/tool/loadsass.js +6 -4
- package/lib/resource/qx/tool/schema/compile-1-0-0.json +6 -11
- package/package.json +17 -3
- package/source/class/qx/Bootstrap.js +22 -1
- package/source/class/qx/bom/Blocker.js +2 -1
- package/source/class/qx/core/Environment.js +3 -12
- package/source/class/qx/core/MProperty.js +1 -1
- package/source/class/qx/dev/unit/Sinon.js +1 -1
- package/source/class/qx/io/__init__.js +5 -3
- package/source/class/qx/io/exception/Cancel.js +34 -0
- package/source/class/qx/io/exception/Exception.js +38 -0
- package/source/class/qx/io/exception/Protocol.js +26 -0
- package/source/class/qx/io/exception/Transport.js +39 -0
- package/source/class/qx/io/exception/__init__.js +4 -0
- package/source/class/qx/io/graphql/Client.js +112 -0
- package/source/class/qx/io/graphql/__init__.js +9 -0
- package/source/class/qx/io/graphql/protocol/Message.js +65 -0
- package/source/class/qx/io/graphql/protocol/Request.js +95 -0
- package/source/class/qx/io/graphql/protocol/Response.js +61 -0
- package/source/class/qx/io/graphql/protocol/__init__.js +6 -0
- package/source/class/qx/io/jsonrpc/Client.js +323 -0
- package/source/class/qx/io/jsonrpc/__init__.js +15 -0
- package/source/class/qx/io/jsonrpc/protocol/Batch.js +97 -0
- package/source/class/qx/io/jsonrpc/protocol/Error.js +63 -0
- package/source/class/qx/io/jsonrpc/protocol/Message.js +48 -0
- package/source/class/qx/io/jsonrpc/protocol/Notification.js +45 -0
- package/source/class/qx/io/jsonrpc/protocol/Parser.js +81 -0
- package/source/class/qx/io/jsonrpc/protocol/Request.js +93 -0
- package/source/class/qx/io/jsonrpc/protocol/Result.js +48 -0
- package/source/class/qx/io/jsonrpc/protocol/__init__.js +5 -0
- package/source/class/qx/io/request/authentication/Bearer.js +52 -0
- package/source/class/qx/io/transport/AbstractClient.js +100 -0
- package/source/class/qx/io/transport/AbstractTransport.js +41 -0
- package/source/class/qx/io/transport/Fetch.js +95 -0
- package/source/class/qx/io/transport/ITransport.js +40 -0
- package/source/class/qx/io/transport/PostMessage.js +55 -0
- package/source/class/qx/io/transport/Websocket.js +97 -0
- package/source/class/qx/io/transport/Xhr.js +139 -0
- package/source/class/qx/io/transport/__init__.js +18 -0
- package/source/class/qx/test/core/Assert.js +1 -1
- package/source/class/qx/test/core/Environment.js +0 -3
- package/source/class/qx/test/io/MAssert.js +46 -0
- package/source/class/qx/test/io/graphql/Client.js +169 -0
- package/source/class/qx/test/io/graphql/ClientFetch.js +34 -0
- package/source/class/qx/test/io/graphql/Request.js +42 -0
- package/source/class/qx/test/io/jsonrpc/Client.js +267 -0
- package/source/class/qx/test/io/jsonrpc/Protocol.js +80 -0
- package/source/class/qx/test/io/transport/PostMessage.js +56 -0
- package/source/class/qx/test/io/transport/Websocket.js +63 -0
- package/source/class/qx/test/ui/embed/Iframe.js +1 -1
- package/source/class/qx/test/util/DateFormat.js +45 -6
- package/source/class/qx/tool/cli/Cli.js +1 -0
- package/source/class/qx/tool/cli/commands/Compile.js +13 -3
- package/source/class/qx/tool/cli/commands/Es6ify.js +93 -0
- package/source/class/qx/tool/cli/commands/package/Install.js +1 -1
- package/source/class/qx/tool/cli/commands/package/Publish.js +14 -0
- package/source/class/qx/tool/compiler/ClassFile.js +67 -27
- package/source/class/qx/tool/compiler/Es6ify.js +368 -0
- package/source/class/qx/tool/compiler/makers/AppMaker.js +2 -1
- package/source/class/qx/tool/compiler/targets/Target.js +57 -47
- package/source/class/qx/tool/compiler/targets/meta/AbstractJavascriptMeta.js +25 -18
- package/source/class/qx/tool/compiler/targets/meta/BootJs.js +16 -16
- package/source/class/qx/tool/compiler/targets/meta/PolyfillJs.js +11 -3
- package/source/class/qx/tool/compiler/targets/meta/Uglify.js +10 -10
- package/source/class/qx/ui/core/Widget.js +70 -0
- package/source/class/qx/ui/decoration/MLinearBackgroundGradient.js +2 -1
- package/source/class/qx/ui/form/ComboBox.js +8 -3
- package/source/class/qx/ui/form/DateField.js +16 -1
- package/source/class/qx/ui/form/MenuButton.js +8 -4
- package/source/class/qx/ui/form/SelectBox.js +8 -3
- package/source/class/qx/ui/menu/AbstractButton.js +12 -8
- package/source/class/qx/ui/menu/Menu.js +18 -8
- package/source/class/qx/ui/table/pane/Model.js +10 -4
- package/source/class/qx/ui/window/Window.js +8 -0
- package/source/class/qx/util/format/DateFormat.js +44 -17
- package/source/resource/qx/tool/loadsass.js +6 -4
- package/source/resource/qx/tool/schema/compile-1-0-0.json +6 -11
- package/source/translation/hr.po +297 -0
- package/lib/resource/qx/static/blank.gif +0 -0
- package/source/class/qx/io/remote/Exchange.js +0 -1063
- package/source/class/qx/io/remote/Request.js +0 -1021
- package/source/class/qx/io/remote/RequestQueue.js +0 -521
- package/source/class/qx/io/remote/Response.js +0 -137
- package/source/class/qx/io/remote/Rpc.js +0 -1075
- package/source/class/qx/io/remote/RpcError.js +0 -198
- package/source/class/qx/io/remote/__init__.js +0 -88
- package/source/class/qx/io/remote/transport/Abstract.js +0 -513
- package/source/class/qx/io/remote/transport/Iframe.js +0 -652
- package/source/class/qx/io/remote/transport/Script.js +0 -475
- package/source/class/qx/io/remote/transport/XmlHttp.js +0 -1019
- package/source/class/qx/io/remote/transport/__init__.js +0 -3
- package/source/class/qx/test/io/remote/AbstractRequest.js +0 -150
- package/source/class/qx/test/io/remote/RequestIframe.js +0 -105
- package/source/class/qx/test/io/remote/RequestXhr.js +0 -151
- package/source/class/qx/test/io/remote/Rpc.js +0 -205
- package/source/class/qx/test/io/remote/__init__.js +0 -4
- package/source/class/qx/test/io/remote/transport/Iframe.js +0 -67
- package/source/class/qx/test/io/remote/transport/XmlHttp.js +0 -133
- package/source/class/qx/test/io/remote/transport/__init__.js +0 -4
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
# Croatian
|
|
2
|
+
#
|
|
3
|
+
msgid ""
|
|
4
|
+
msgstr ""
|
|
5
|
+
"Project-Id-Version: qooxdoo framework\n"
|
|
6
|
+
"Report-Msgid-Bugs-To: \n"
|
|
7
|
+
"POT-Creation-Date: 2008-05-19 10:11+0200\n"
|
|
8
|
+
"PO-Revision-Date: 2021-12-28 14:40+0100\n"
|
|
9
|
+
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
|
|
10
|
+
"Language-Team: Croatian <https://hosted.weblate.org/projects/qooxdoo/"
|
|
11
|
+
"framework/hr/>\n"
|
|
12
|
+
"Language: hr\n"
|
|
13
|
+
"MIME-Version: 1.0\n"
|
|
14
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
15
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
16
|
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
|
17
|
+
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
|
18
|
+
"X-Generator: Poedit 3.0\n"
|
|
19
|
+
|
|
20
|
+
msgid "%1 does not fit %2."
|
|
21
|
+
msgstr "%1 ne poklapa se s %2."
|
|
22
|
+
|
|
23
|
+
msgid "%1 is not a color! %2"
|
|
24
|
+
msgstr "%1 nije boja! %2"
|
|
25
|
+
|
|
26
|
+
msgid "%1 is not a number."
|
|
27
|
+
msgstr "%1 nije broj."
|
|
28
|
+
|
|
29
|
+
msgid "%1 is not a string."
|
|
30
|
+
msgstr "%1 nije znakovni niz."
|
|
31
|
+
|
|
32
|
+
msgid "%1 is not an url."
|
|
33
|
+
msgstr "%1 nije url."
|
|
34
|
+
|
|
35
|
+
msgid "%1 is not in %2"
|
|
36
|
+
msgstr "%1 nije u %2"
|
|
37
|
+
|
|
38
|
+
msgid "%1 is not in the range from [%2, %3]."
|
|
39
|
+
msgstr "%1 nije u rasponu od [%2, %3]."
|
|
40
|
+
|
|
41
|
+
msgid "'%1' is not an email address."
|
|
42
|
+
msgstr "„%1” nije e-mail adresa."
|
|
43
|
+
|
|
44
|
+
msgid "Automatic"
|
|
45
|
+
msgstr "Automatski"
|
|
46
|
+
|
|
47
|
+
msgid "Basic Colors"
|
|
48
|
+
msgstr "Osnovne boje"
|
|
49
|
+
|
|
50
|
+
msgid "Cancel"
|
|
51
|
+
msgstr "Odustani"
|
|
52
|
+
|
|
53
|
+
msgid "Color Selector"
|
|
54
|
+
msgstr "Birač boja"
|
|
55
|
+
|
|
56
|
+
msgid "Details"
|
|
57
|
+
msgstr "Detalji"
|
|
58
|
+
|
|
59
|
+
msgid "HSB"
|
|
60
|
+
msgstr "HSB"
|
|
61
|
+
|
|
62
|
+
msgid "Hex"
|
|
63
|
+
msgstr "Heksadecimalne"
|
|
64
|
+
|
|
65
|
+
msgid "Last month"
|
|
66
|
+
msgstr "Prošli mjesec"
|
|
67
|
+
|
|
68
|
+
msgid "Last year"
|
|
69
|
+
msgstr "Prošla godina"
|
|
70
|
+
|
|
71
|
+
msgid "Next month"
|
|
72
|
+
msgstr "Sljedeći mjesec"
|
|
73
|
+
|
|
74
|
+
msgid "Next year"
|
|
75
|
+
msgstr "Sljedeća godina"
|
|
76
|
+
|
|
77
|
+
msgid "OK"
|
|
78
|
+
msgstr "U redu"
|
|
79
|
+
|
|
80
|
+
msgid "Open ColorSelector"
|
|
81
|
+
msgstr "Otvori birač boja"
|
|
82
|
+
|
|
83
|
+
msgid "Presets"
|
|
84
|
+
msgstr "Predodređene postavke"
|
|
85
|
+
|
|
86
|
+
msgid "Preview (Old/New)"
|
|
87
|
+
msgstr "Pregled (stari/novi)"
|
|
88
|
+
|
|
89
|
+
msgid "RGB"
|
|
90
|
+
msgstr "RBG"
|
|
91
|
+
|
|
92
|
+
msgid "Recent Colors"
|
|
93
|
+
msgstr "Nedavne boje"
|
|
94
|
+
|
|
95
|
+
msgid "Reset column widths"
|
|
96
|
+
msgstr "Obnovi širine stupaca"
|
|
97
|
+
|
|
98
|
+
msgid "This field is required"
|
|
99
|
+
msgstr "Ovo je obavezno polje"
|
|
100
|
+
|
|
101
|
+
msgid "Visual"
|
|
102
|
+
msgstr "Vizualni"
|
|
103
|
+
|
|
104
|
+
msgid "key_full_Alt"
|
|
105
|
+
msgstr "Alt"
|
|
106
|
+
|
|
107
|
+
msgid "key_full_Apps"
|
|
108
|
+
msgstr "Aplikacije"
|
|
109
|
+
|
|
110
|
+
msgid "key_full_Backspace"
|
|
111
|
+
msgstr "Backspace"
|
|
112
|
+
|
|
113
|
+
msgid "key_full_CapsLock"
|
|
114
|
+
msgstr "CapsLock"
|
|
115
|
+
|
|
116
|
+
msgid "key_full_Control"
|
|
117
|
+
msgstr "Control"
|
|
118
|
+
|
|
119
|
+
msgid "key_full_Control_Mac"
|
|
120
|
+
msgstr "Control_Mac"
|
|
121
|
+
|
|
122
|
+
msgid "key_full_Delete"
|
|
123
|
+
msgstr "Izbriši"
|
|
124
|
+
|
|
125
|
+
msgid "key_full_Down"
|
|
126
|
+
msgstr "Dolje"
|
|
127
|
+
|
|
128
|
+
msgid "key_full_End"
|
|
129
|
+
msgstr "Kraj"
|
|
130
|
+
|
|
131
|
+
msgid "key_full_Enter"
|
|
132
|
+
msgstr "Enter"
|
|
133
|
+
|
|
134
|
+
msgid "key_full_Escape"
|
|
135
|
+
msgstr "Escape"
|
|
136
|
+
|
|
137
|
+
msgid "key_full_Home"
|
|
138
|
+
msgstr "Početak"
|
|
139
|
+
|
|
140
|
+
msgid "key_full_Insert"
|
|
141
|
+
msgstr "Umetni"
|
|
142
|
+
|
|
143
|
+
msgid "key_full_Left"
|
|
144
|
+
msgstr "LIjevo"
|
|
145
|
+
|
|
146
|
+
msgid "key_full_Meta"
|
|
147
|
+
msgstr "Meta"
|
|
148
|
+
|
|
149
|
+
msgid "key_full_NumLock"
|
|
150
|
+
msgstr "Brojčani blok"
|
|
151
|
+
|
|
152
|
+
msgid "key_full_PageDown"
|
|
153
|
+
msgstr "Stranica dolje"
|
|
154
|
+
|
|
155
|
+
msgid "key_full_PageUp"
|
|
156
|
+
msgstr "Stranica gore"
|
|
157
|
+
|
|
158
|
+
msgid "key_full_Pause"
|
|
159
|
+
msgstr "Pauza"
|
|
160
|
+
|
|
161
|
+
msgid "key_full_PrintScreen"
|
|
162
|
+
msgstr "Ispis ekrana"
|
|
163
|
+
|
|
164
|
+
msgid "key_full_Right"
|
|
165
|
+
msgstr "Desno"
|
|
166
|
+
|
|
167
|
+
msgid "key_full_Scroll"
|
|
168
|
+
msgstr "Listanje"
|
|
169
|
+
|
|
170
|
+
msgid "key_full_Shift"
|
|
171
|
+
msgstr "Shift"
|
|
172
|
+
|
|
173
|
+
msgid "key_full_Space"
|
|
174
|
+
msgstr "Razmaknica"
|
|
175
|
+
|
|
176
|
+
msgid "key_full_Tab"
|
|
177
|
+
msgstr "Tabulator"
|
|
178
|
+
|
|
179
|
+
msgid "key_full_Up"
|
|
180
|
+
msgstr "Gore"
|
|
181
|
+
|
|
182
|
+
msgid "key_full_Win"
|
|
183
|
+
msgstr "Win"
|
|
184
|
+
|
|
185
|
+
msgid "key_short_Alt"
|
|
186
|
+
msgstr "Alt"
|
|
187
|
+
|
|
188
|
+
msgid "key_short_Apps"
|
|
189
|
+
msgstr "Aplikacije"
|
|
190
|
+
|
|
191
|
+
msgid "key_short_Backspace"
|
|
192
|
+
msgstr "Backspace"
|
|
193
|
+
|
|
194
|
+
msgid "key_short_CapsLock"
|
|
195
|
+
msgstr "CapsLock"
|
|
196
|
+
|
|
197
|
+
msgid "key_short_Control"
|
|
198
|
+
msgstr "Control"
|
|
199
|
+
|
|
200
|
+
msgid "key_short_Control_Mac"
|
|
201
|
+
msgstr "Control_Mac"
|
|
202
|
+
|
|
203
|
+
msgid "key_short_Delete"
|
|
204
|
+
msgstr "Izbriši"
|
|
205
|
+
|
|
206
|
+
msgid "key_short_Down"
|
|
207
|
+
msgstr "Dolje"
|
|
208
|
+
|
|
209
|
+
msgid "key_short_End"
|
|
210
|
+
msgstr "Kraj"
|
|
211
|
+
|
|
212
|
+
msgid "key_short_Enter"
|
|
213
|
+
msgstr "Enter"
|
|
214
|
+
|
|
215
|
+
msgid "key_short_Escape"
|
|
216
|
+
msgstr "Escape"
|
|
217
|
+
|
|
218
|
+
msgid "key_short_Home"
|
|
219
|
+
msgstr "Početna"
|
|
220
|
+
|
|
221
|
+
msgid "key_short_Insert"
|
|
222
|
+
msgstr "Umetni"
|
|
223
|
+
|
|
224
|
+
msgid "key_short_Left"
|
|
225
|
+
msgstr "Lijevo"
|
|
226
|
+
|
|
227
|
+
msgid "key_short_Meta"
|
|
228
|
+
msgstr "Meta"
|
|
229
|
+
|
|
230
|
+
msgid "key_short_NumLock"
|
|
231
|
+
msgstr "Brojčani blok"
|
|
232
|
+
|
|
233
|
+
msgid "key_short_PageDown"
|
|
234
|
+
msgstr "Stranica dolje"
|
|
235
|
+
|
|
236
|
+
msgid "key_short_PageUp"
|
|
237
|
+
msgstr "Stranica gore"
|
|
238
|
+
|
|
239
|
+
msgid "key_short_Pause"
|
|
240
|
+
msgstr "Pauza"
|
|
241
|
+
|
|
242
|
+
msgid "key_short_PrintScreen"
|
|
243
|
+
msgstr "Ispis ekrana"
|
|
244
|
+
|
|
245
|
+
msgid "key_short_Right"
|
|
246
|
+
msgstr "Desno"
|
|
247
|
+
|
|
248
|
+
msgid "key_short_Scroll"
|
|
249
|
+
msgstr "Listanje"
|
|
250
|
+
|
|
251
|
+
msgid "key_short_Shift"
|
|
252
|
+
msgstr "Shift"
|
|
253
|
+
|
|
254
|
+
msgid "key_short_Space"
|
|
255
|
+
msgstr "Razmaknica"
|
|
256
|
+
|
|
257
|
+
msgid "key_short_Tab"
|
|
258
|
+
msgstr "Tabulator"
|
|
259
|
+
|
|
260
|
+
msgid "key_short_Up"
|
|
261
|
+
msgstr "Gore"
|
|
262
|
+
|
|
263
|
+
msgid "key_short_Win"
|
|
264
|
+
msgstr "Win"
|
|
265
|
+
|
|
266
|
+
msgid "one of one row"
|
|
267
|
+
msgid_plural "%1 of %2 rows"
|
|
268
|
+
msgstr[0] "jedan od jednog retka"
|
|
269
|
+
msgstr[1] "%1 od %2 retka"
|
|
270
|
+
msgstr[2] "%1 od %2 retka"
|
|
271
|
+
|
|
272
|
+
msgid "one row"
|
|
273
|
+
msgid_plural "%1 rows"
|
|
274
|
+
msgstr[0] "%1 redak"
|
|
275
|
+
msgstr[1] "%1 retka"
|
|
276
|
+
msgstr[2] "%1 redaka"
|
|
277
|
+
|
|
278
|
+
msgid "test Hello %1!"
|
|
279
|
+
msgstr "test Hello %1!"
|
|
280
|
+
|
|
281
|
+
msgid "test Jonny"
|
|
282
|
+
msgstr "test Jonny"
|
|
283
|
+
|
|
284
|
+
msgid "test One car"
|
|
285
|
+
msgid_plural "test %1 cars"
|
|
286
|
+
msgstr[0] "test %1 auto"
|
|
287
|
+
msgstr[1] "test %1 auta"
|
|
288
|
+
msgstr[2] "test %1 auta"
|
|
289
|
+
|
|
290
|
+
msgid "test affe"
|
|
291
|
+
msgstr "test affe"
|
|
292
|
+
|
|
293
|
+
msgid "test one"
|
|
294
|
+
msgstr "test jedan"
|
|
295
|
+
|
|
296
|
+
msgid "test two"
|
|
297
|
+
msgstr "test dva"
|
|
Binary file
|