aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* remove trailing spacesBrandon Aaron2009-03-2311-77/+77
|
* moving dimension related unit tests to dimensions test moduleBrandon Aaron2009-03-222-56/+56
|
* decoupling styles retrieval from the attr methodBrandon Aaron2009-03-2214-257/+4177
|
* moving some vars from manipulations.js to attributes.jsBrandon Aaron2009-03-222-5/+5
|
* fix for #4399, removing unused variablesBrandon Aaron2009-03-221-3/+1
|
* fix for #4189, live/die now work with contexts other than just documentBrandon Aaron2009-03-202-3/+21
|
* Added some more information to the unload event cleanup.John Resig2009-03-191-0/+3
|
* fix for #4115Brandon Aaron2009-03-191-4/+3
|
* fix for #4263, better support for nested fixed position elementsBrandon Aaron2009-03-191-1/+6
|
* breaking jquery out into smaller modules. added attributes.js, ↵Brandon Aaron2009-03-1812-2200/+2221
| | | | manipulation.js, and traversing.js
* fix for #4374, gap in :hidden, :visible logicBrandon Aaron2009-03-182-2/+17
|
* fix for #4204, fadeTo shows hidden elements before animatingBrandon Aaron2009-03-181-1/+2
|
* fix for #4074, pass context to jQuery.clean for jQuery.cloneBrandon Aaron2009-03-181-3/+3
|
* fix for #3688, setting type attribute on button causes IE to throw errorBrandon Aaron2009-03-173-3/+13
|
* using parseFloat for offset and position methods and removed num helper methodBrandon Aaron2009-03-172-16/+11
|
* return null when no matched elements exist for offset and positionBrandon Aaron2009-03-171-29/+29
|
* some clean up in the offset methodBrandon Aaron2009-03-171-10/+11
|
* Backed out commit [6260], was causing too many problems. We'll have to bite ↵John Resig2009-03-172-15/+17
| | | | the bullet and assume that the incoming result set has array methods. Un-fixes jQuery bug #4250.
* jquery dimensions: removed redundant codeAriel Flesler2009-03-061-5/+3
|
* jquery core: Fixed a typo in a comment, closes #4294.Ariel Flesler2009-03-051-1/+1
|
* Removed the objectAll check from jQuery.support, was causing problems with ↵John Resig2009-02-281-6/+1
| | | | broken ActiveX controls. Fixes bug #4017.
* Simplified the structure of the .css() and .attr() methods (reducing the ↵John Resig2009-02-282-34/+29
| | | | number of calls). Need to optimize $.css/$.curCSS/$.attr still. Fixes #4269.
* Moved to a generic solution for copying methods over for ↵John Resig2009-02-271-4/+3
| | | | querySelectorAll-using browsers.
* No longer use arguments.callee or RegExp (use new RegExp, instead) for ES ↵John Resig2009-02-263-7/+7
| | | | 3.1 and Caja compatibility. Fixes jQuery bug #4251.
* As it turns out, the context was being started at a higher root than needed ↵John Resig2009-02-261-1/+1
| | | | - fixing this speeds up > selectors.
* Removed the need for the results set to have array methods. Resolves jQuery ↵John Resig2009-02-252-15/+13
| | | | bug #4250.
* Made some changes to how .find() works, inlined the duplicate check - should ↵John Resig2009-02-251-10/+18
| | | | change other methods to act similarly. Goes towards fixing #4240.
* Simplified the isXML function, no need to use recursion.John Resig2009-02-252-4/+7
|
* Expose the sort/unique code from Sizzle as Sizzle.uniqueSort().John Resig2009-02-251-10/+13
|
* Cut down on some more function calls for jQuery(...). Everything points back ↵John Resig2009-02-251-21/+18
| | | | to the same root jQuery(document) object now. Going towards ticket #4240.
* Reduced the number of function calls required for .find() (single element ↵John Resig2009-02-251-9/+27
| | | | root), optimized some calls to jQuery() as well. Goes towards fixing #4240.
* Landed some improvements for improving the performance of ID-rooted queries ↵John Resig2009-02-251-23/+36
| | | | (e.g. '#foo p'). Fixes jQuery bug #4236.
* Overhauled the .remove() and .empty() methods to be much more efficient. ↵John Resig2009-02-231-8/+21
| | | | Fixes bug #4222.
* jquery event: Fixing event.currentTarget for live().Ariel Flesler2009-02-232-1/+13
|
* Tagged the Sizzle 1.0 release.John Resig2009-02-201-3/+2
|
* Made sure that .remove now uses multiFilter. Fixes bug #4205.John Resig2009-02-202-2/+5
|
* Bumping the version up to 1.3.3pre.John Resig2009-02-191-1/+1
|
* Tagging the 1.3.2 release.John Resig2009-02-191-1/+1
|
* Fixed one of the selector tests that was reporting incorrectly in browsers ↵John Resig2009-02-191-1/+1
| | | | that actually supported type="search" inputs.
* Disabled some of the animation tests that were being flaky.John Resig2009-02-191-5/+8
|
* Missed an other search-related test.John Resig2009-02-181-1/+1
|
* Fixed some tests that were changed (fixed!) by fixing #3966.John Resig2009-02-181-6/+6
|
* Made it so that search input elements are now serialized. Fixes bug #4107.John Resig2009-02-184-8/+9
|
* Made it so that appendTo, etc. return the inserted elements (thus using ↵John Resig2009-02-182-11/+35
| | | | pushStack, as well). Fixes bugs #3966 and #4182.
* A speedup for .remove() (which also speeds up .html()). Fixes #4178.John Resig2009-02-181-1/+1
|
* Updated the show() tests to work without the use of jQuery.browser (the test ↵John Resig2009-02-171-7/+10
| | | | suite now passes 100% in IE8).
* Reorganized and disabled some of the height/width tests. Need to look in to ↵John Resig2009-02-171-16/+18
| | | | better abornormal-padding/margin/border support at some point.
* Updated the JAR Makefile command to support UTF-8.John Resig2009-02-171-1/+1
|
* Disable building the lite and packed versions of jQuery by default (no ↵John Resig2009-02-171-1/+1
| | | | longer needed).
* Switch to using createRange for element comparision instead of Array indexOf ↵John Resig2009-02-171-7/+9
| | | | checks - thanks for the tip, Ioseb.
kport/48510/stable25'>backport/48510/stable25 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/l10n/ko/core.po
blob: afa21fdc40055acbbe9ef3b9a4e91dd3cef0c4c0 (plain)
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
607
608
609
610
611
612
613
614
615
616
617
618