@react-aria/dnd 3.0.0-alpha.10 → 3.0.0-alpha.11

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/dist/main.js CHANGED
@@ -9,30 +9,18 @@ var $4vY0V$reactdom = require("react-dom");
9
9
  function $parcel$export(e, n, v, s) {
10
10
  Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
11
11
  }
12
- function $parcel$exportWildcard(dest, source) {
13
- Object.keys(source).forEach(function(key) {
14
- if (key === 'default' || key === '__esModule' || dest.hasOwnProperty(key)) {
15
- return;
16
- }
17
-
18
- Object.defineProperty(dest, key, {
19
- enumerable: true,
20
- get: function get() {
21
- return source[key];
22
- }
23
- });
24
- });
25
-
26
- return dest;
27
- }
28
12
  function $parcel$interopDefault(a) {
29
13
  return a && a.__esModule ? a.default : a;
30
14
  }
31
15
 
16
+ $parcel$export(module.exports, "useDrag", () => $dc204e8ec58447a6$export$7941f8aafa4b6021);
17
+ $parcel$export(module.exports, "useDrop", () => $1ca228bc9257ca16$export$ccdee5eaf73cf661);
18
+ $parcel$export(module.exports, "useDroppableCollection", () => $7f93a158ac20b90a$export$f4e2f423c21f7b04);
19
+ $parcel$export(module.exports, "useDroppableItem", () => $fc1876157e07bcec$export$f7b0c5d28b66b6a5);
20
+ $parcel$export(module.exports, "useDropIndicator", () => $c5557edbed563ebf$export$8d0e41d2815afac5);
21
+ $parcel$export(module.exports, "useDraggableItem", () => $0cbbd00cda972c67$export$b35afafff42da2d9);
22
+ $parcel$export(module.exports, "useClipboard", () => $74f3dedaa4d234b4$export$2314ca2a3e892862);
32
23
  $parcel$export(module.exports, "DragPreview", () => $2dccaca1f4baa446$export$905ab40ac2179daa);
33
- var $dc204e8ec58447a6$exports = {};
34
-
35
- $parcel$export($dc204e8ec58447a6$exports, "useDrag", () => $dc204e8ec58447a6$export$7941f8aafa4b6021);
36
24
 
37
25
 
38
26
 
@@ -278,6 +266,7 @@ function $4620ae0dc40f0031$var$getEntryFile(entry) {
278
266
 
279
267
 
280
268
 
269
+
281
270
  let $28e10663603f5ea1$var$dropTargets = new Map();
282
271
  let $28e10663603f5ea1$var$dropItems = new Map();
283
272
  let $28e10663603f5ea1$var$dragSession = null;
@@ -296,12 +285,12 @@ function $28e10663603f5ea1$export$aef80212ac99c003(item) {
296
285
  $28e10663603f5ea1$var$dropItems.delete(item.element);
297
286
  };
298
287
  }
299
- function $28e10663603f5ea1$export$549dbcf8649bf3b2(target, formatMessage) {
288
+ function $28e10663603f5ea1$export$549dbcf8649bf3b2(target, stringFormatter) {
300
289
  if ($28e10663603f5ea1$var$dragSession) throw new Error('Cannot begin dragging while already dragging');
301
- $28e10663603f5ea1$var$dragSession = new $28e10663603f5ea1$var$DragSession(target, formatMessage);
290
+ $28e10663603f5ea1$var$dragSession = new $28e10663603f5ea1$var$DragSession(target, stringFormatter);
302
291
  requestAnimationFrame(()=>{
303
292
  $28e10663603f5ea1$var$dragSession.setup();
304
- if ($4620ae0dc40f0031$export$1fb2158d224b542c() === 'keyboard') $28e10663603f5ea1$var$dragSession.next();
293
+ if ($4620ae0dc40f0031$export$1fb2158d224b542c() === 'keyboard' || $4620ae0dc40f0031$export$1fb2158d224b542c() === 'touch' && $4vY0V$reactariainteractions.getInteractionModality() === 'virtual') $28e10663603f5ea1$var$dragSession.next();
305
294
  });
306
295
  for (let cb of $28e10663603f5ea1$var$subscriptions)cb();
307
296
  }
@@ -370,7 +359,7 @@ class $28e10663603f5ea1$var$DragSession {
370
359
  this.mutationObserver = new MutationObserver(()=>this.updateValidDropTargets()
371
360
  );
372
361
  this.updateValidDropTargets();
373
- $4vY0V$reactarialiveannouncer.announce(this.formatMessage($28e10663603f5ea1$var$MESSAGES[$4620ae0dc40f0031$export$1fb2158d224b542c()]));
362
+ $4vY0V$reactarialiveannouncer.announce(this.stringFormatter.format($28e10663603f5ea1$var$MESSAGES[$4620ae0dc40f0031$export$1fb2158d224b542c()]));
374
363
  }
375
364
  teardown() {
376
365
  document.removeEventListener('keydown', this.onKeyDown, true);
@@ -381,7 +370,6 @@ class $28e10663603f5ea1$var$DragSession {
381
370
  for (let event of $28e10663603f5ea1$var$CANCELED_EVENTS)document.removeEventListener(event, this.cancelEvent, true);
382
371
  this.mutationObserver.disconnect();
383
372
  this.restoreAriaHidden();
384
- if (this.mutationImmediate) clearImmediate(this.mutationImmediate);
385
373
  }
386
374
  onKeyDown(e) {
387
375
  var ref;
@@ -586,7 +574,7 @@ class $28e10663603f5ea1$var$DragSession {
586
574
  cancel() {
587
575
  this.end();
588
576
  if (!this.dragTarget.element.closest('[aria-hidden="true"]')) this.dragTarget.element.focus();
589
- $4vY0V$reactarialiveannouncer.announce(this.formatMessage('dropCanceled'));
577
+ $4vY0V$reactarialiveannouncer.announce(this.stringFormatter.format('dropCanceled'));
590
578
  }
591
579
  drop(item1) {
592
580
  if (!this.currentDropTarget) {
@@ -618,7 +606,7 @@ class $28e10663603f5ea1$var$DragSession {
618
606
  }, item1 === null || item1 === void 0 ? void 0 : item1.target);
619
607
  }
620
608
  this.end();
621
- $4vY0V$reactarialiveannouncer.announce(this.formatMessage('dropComplete'));
609
+ $4vY0V$reactarialiveannouncer.announce(this.stringFormatter.format('dropComplete'));
622
610
  }
623
611
  activate() {
624
612
  if (this.currentDropTarget && typeof this.currentDropTarget.onDropActivate === 'function') {
@@ -630,9 +618,9 @@ class $28e10663603f5ea1$var$DragSession {
630
618
  });
631
619
  }
632
620
  }
633
- constructor(target, formatMessage){
621
+ constructor(target, stringFormatter){
634
622
  this.dragTarget = target;
635
- this.formatMessage = formatMessage;
623
+ this.stringFormatter = stringFormatter;
636
624
  this.onKeyDown = this.onKeyDown.bind(this);
637
625
  this.onFocus = this.onFocus.bind(this);
638
626
  this.onBlur = this.onBlur.bind(this);
@@ -665,139 +653,1229 @@ function $28e10663603f5ea1$var$isVirtualPointerEvent(event) {
665
653
 
666
654
  var $d624b4da796f302a$exports = {};
667
655
  var $12ee6b0bfb4232ad$exports = {};
668
- $12ee6b0bfb4232ad$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"اضغط Enter لبدء السحب.\",\"dragDescriptionTouch\":\"اضغط مرتين لبدء السحب.\",\"dragDescriptionVirtual\":\"انقر لبدء السحب.\",\"dragItem\":\"اسحب {itemText}\",\"dragSelectedItems\":\"اسحب {count, plural, one {# عنصر محدد} other {# عناصر محددة}}\",\"dragStartedKeyboard\":\"بدأ السحب. اضغط Tab للانتقال إلى موضع الإفلات، ثم اضغط Enter للإفلات، أو اضغط Escape للإلغاء.\",\"dragStartedTouch\":\"بدأ السحب. انتقل إلى موضع الإفلات، ثم اضغط مرتين للإفلات.\",\"dragStartedVirtual\":\"بدأ السحب. انتقل إلى مكان الإفلات، ثم انقر أو اضغط Enter للإفلات.\",\"dropCanceled\":\"تم إلغاء الإفلات.\",\"dropComplete\":\"اكتمل الإفلات.\",\"dropDescriptionKeyboard\":\"اضغط Enter للإفلات. اضغط Escape لإلغاء السحب.\",\"dropDescriptionTouch\":\"اضغط مرتين للإفلات.\",\"dropDescriptionVirtual\":\"انقر للإفلات.\",\"dropIndicator\":\"مؤشر الإفلات\",\"dropOnItem\":\"إفلات {itemText}\",\"dropOnRoot\":\"الإفلات\",\"endDragKeyboard\":\"السحب. اضغط Enter لإلغاء السحب.\",\"endDragTouch\":\"السحب. اضغط مرتين لإلغاء السحب.\",\"endDragVirtual\":\"السحب. انقر لإلغاء السحب.\",\"insertAfter\":\"أدخل بعد {itemText}\",\"insertBefore\":\"أدخل قبل {itemText}\",\"insertBetween\":\"أدخل بين {beforeItemText} و {afterItemText}\"}");
656
+ $12ee6b0bfb4232ad$exports = {
657
+ "dragDescriptionKeyboard": `اضغط Enter لبدء السحب.`,
658
+ "dragDescriptionTouch": `اضغط مرتين لبدء السحب.`,
659
+ "dragDescriptionVirtual": `انقر لبدء السحب.`,
660
+ "dragItem": (args)=>`اسحب ${args.itemText}`
661
+ ,
662
+ "dragSelectedItems": (args, formatter)=>`اسحب ${formatter.plural(args.count, {
663
+ one: ()=>`${formatter.number(args.count)} عنصر محدد`
664
+ ,
665
+ other: ()=>`${formatter.number(args.count)} عناصر محددة`
666
+ })}`
667
+ ,
668
+ "dragStartedKeyboard": `بدأ السحب. اضغط Tab للانتقال إلى موضع الإفلات، ثم اضغط Enter للإفلات، أو اضغط Escape للإلغاء.`,
669
+ "dragStartedTouch": `بدأ السحب. انتقل إلى موضع الإفلات، ثم اضغط مرتين للإفلات.`,
670
+ "dragStartedVirtual": `بدأ السحب. انتقل إلى مكان الإفلات، ثم انقر أو اضغط Enter للإفلات.`,
671
+ "dropCanceled": `تم إلغاء الإفلات.`,
672
+ "dropComplete": `اكتمل الإفلات.`,
673
+ "dropDescriptionKeyboard": `اضغط Enter للإفلات. اضغط Escape لإلغاء السحب.`,
674
+ "dropDescriptionTouch": `اضغط مرتين للإفلات.`,
675
+ "dropDescriptionVirtual": `انقر للإفلات.`,
676
+ "dropIndicator": `مؤشر الإفلات`,
677
+ "dropOnItem": (args)=>`إفلات ${args.itemText}`
678
+ ,
679
+ "dropOnRoot": `الإفلات`,
680
+ "endDragKeyboard": `السحب. اضغط Enter لإلغاء السحب.`,
681
+ "endDragTouch": `السحب. اضغط مرتين لإلغاء السحب.`,
682
+ "endDragVirtual": `السحب. انقر لإلغاء السحب.`,
683
+ "insertAfter": (args)=>`أدخل بعد ${args.itemText}`
684
+ ,
685
+ "insertBefore": (args)=>`أدخل قبل ${args.itemText}`
686
+ ,
687
+ "insertBetween": (args)=>`أدخل بين ${args.beforeItemText} و ${args.afterItemText}`
688
+ };
669
689
 
670
690
 
671
691
  var $e21ef7c55796c5e1$exports = {};
672
- $e21ef7c55796c5e1$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Натиснете „Enter“, за да започнете да плъзгате.\",\"dragDescriptionTouch\":\"Натиснете двукратно, за да започнете да плъзгате.\",\"dragDescriptionVirtual\":\"Щракнете, за да започнете да плъзгате.\",\"dragItem\":\"Плъзни {itemText}\",\"dragSelectedItems\":\"Плъзни {count, plural, one {# избран елемент} other {# избрани елемента}}\",\"dragStartedKeyboard\":\"Започна плъзгане. Натиснете „Tab“, за да се придвижите до целта, след което натиснете „Enter“ за пускане или натиснете „Escape“ за отмяна.\",\"dragStartedTouch\":\"Започна плъзгане. Придвижете се до целта, след което натиснете двукратно, за да пуснете.\",\"dragStartedVirtual\":\"Започна плъзгане. Придвижете се до целта, след което щракнете или натиснете „Enter“ за пускане.\",\"dropCanceled\":\"Пускането е отменено.\",\"dropComplete\":\"Пускането е завършено.\",\"dropDescriptionKeyboard\":\"Натиснете „Enter“ за пускане. Натиснете „Escape“ за отмяна на плъзгането.\",\"dropDescriptionTouch\":\"Натиснете двукратно за пускане.\",\"dropDescriptionVirtual\":\"Щракнете за пускане.\",\"dropIndicator\":\"индикатор за пускане\",\"dropOnItem\":\"Пусни върху {itemText}\",\"dropOnRoot\":\"Пусни върху\",\"endDragKeyboard\":\"Плъзгане. Натиснете „Enter“ за отмяна на плъзгането.\",\"endDragTouch\":\"Плъзгане. Натиснете двукратно за отмяна на плъзгането.\",\"endDragVirtual\":\"Плъзгане. Щракнете за отмяна.\",\"insertAfter\":\"Вмъкни след {itemText}\",\"insertBefore\":\"Вмъкни преди {itemText}\",\"insertBetween\":\"Вмъкни между {beforeItemText} и {afterItemText}\"}");
692
+ $e21ef7c55796c5e1$exports = {
693
+ "dragDescriptionKeyboard": `Натиснете „Enter“, за да започнете да плъзгате.`,
694
+ "dragDescriptionTouch": `Натиснете двукратно, за да започнете да плъзгате.`,
695
+ "dragDescriptionVirtual": `Щракнете, за да започнете да плъзгате.`,
696
+ "dragItem": (args)=>`Плъзни ${args.itemText}`
697
+ ,
698
+ "dragSelectedItems": (args, formatter)=>`Плъзни ${formatter.plural(args.count, {
699
+ one: ()=>`${formatter.number(args.count)} избран елемент`
700
+ ,
701
+ other: ()=>`${formatter.number(args.count)} избрани елемента`
702
+ })}`
703
+ ,
704
+ "dragStartedKeyboard": `Започна плъзгане. Натиснете „Tab“, за да се придвижите до целта, след което натиснете „Enter“ за пускане или натиснете „Escape“ за отмяна.`,
705
+ "dragStartedTouch": `Започна плъзгане. Придвижете се до целта, след което натиснете двукратно, за да пуснете.`,
706
+ "dragStartedVirtual": `Започна плъзгане. Придвижете се до целта, след което щракнете или натиснете „Enter“ за пускане.`,
707
+ "dropCanceled": `Пускането е отменено.`,
708
+ "dropComplete": `Пускането е завършено.`,
709
+ "dropDescriptionKeyboard": `Натиснете „Enter“ за пускане. Натиснете „Escape“ за отмяна на плъзгането.`,
710
+ "dropDescriptionTouch": `Натиснете двукратно за пускане.`,
711
+ "dropDescriptionVirtual": `Щракнете за пускане.`,
712
+ "dropIndicator": `индикатор за пускане`,
713
+ "dropOnItem": (args)=>`Пусни върху ${args.itemText}`
714
+ ,
715
+ "dropOnRoot": `Пусни върху`,
716
+ "endDragKeyboard": `Плъзгане. Натиснете „Enter“ за отмяна на плъзгането.`,
717
+ "endDragTouch": `Плъзгане. Натиснете двукратно за отмяна на плъзгането.`,
718
+ "endDragVirtual": `Плъзгане. Щракнете за отмяна.`,
719
+ "insertAfter": (args)=>`Вмъкни след ${args.itemText}`
720
+ ,
721
+ "insertBefore": (args)=>`Вмъкни преди ${args.itemText}`
722
+ ,
723
+ "insertBetween": (args)=>`Вмъкни между ${args.beforeItemText} и ${args.afterItemText}`
724
+ };
673
725
 
674
726
 
675
727
  var $dfa9cd1c2317d9aa$exports = {};
676
- $dfa9cd1c2317d9aa$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Stisknutím klávesy Enter začnete s přetahováním.\",\"dragDescriptionTouch\":\"Poklepáním začnete s přetahováním.\",\"dragDescriptionVirtual\":\"Kliknutím začnete s přetahováním.\",\"dragItem\":\"Přetáhnout {itemText}\",\"dragSelectedItems\":\"Přetáhnout {count, plural, one {# vybranou položku} few {# vybrané položky} other {# vybraných položek}}\",\"dragStartedKeyboard\":\"Začněte s přetahováním. Po stisknutí klávesy Tab najděte požadovaný cíl a stisknutím klávesy Enter přetažení dokončete nebo stisknutím klávesy Esc akci zrušte.\",\"dragStartedTouch\":\"Začněte s přetahováním. Najděte požadovaný cíl a poklepáním přetažení dokončete.\",\"dragStartedVirtual\":\"Začněte s přetahováním. Najděte požadovaný cíl a kliknutím nebo stisknutím klávesy Enter přetažení dokončete.\",\"dropCanceled\":\"Přetažení bylo zrušeno.\",\"dropComplete\":\"Přetažení bylo dokončeno.\",\"dropDescriptionKeyboard\":\"Stisknutím klávesy Enter přetažení dokončete nebo stisknutím klávesy Esc akci zrušte.\",\"dropDescriptionTouch\":\"Poklepáním přetažení dokončete.\",\"dropDescriptionVirtual\":\"Kliknutím objekt přetáhněte.\",\"dropIndicator\":\"indikátor přetažení\",\"dropOnItem\":\"Přetáhnout na {itemText}\",\"dropOnRoot\":\"Přetáhnout na\",\"endDragKeyboard\":\"Probíhá přetahování. Stisknutím klávesy Enter přetažení zrušíte.\",\"endDragTouch\":\"Probíhá přetahování. Poklepáním přetažení zrušíte.\",\"endDragVirtual\":\"Probíhá přetahování. Kliknutím přetažení zrušíte.\",\"insertAfter\":\"Vložit za {itemText}\",\"insertBefore\":\"Vložit před {itemText}\",\"insertBetween\":\"Vložit mezi {beforeItemText} a {afterItemText}\"}");
728
+ $dfa9cd1c2317d9aa$exports = {
729
+ "dragDescriptionKeyboard": `Stisknutím klávesy Enter začnete s přetahováním.`,
730
+ "dragDescriptionTouch": `Poklepáním začnete s přetahováním.`,
731
+ "dragDescriptionVirtual": `Kliknutím začnete s přetahováním.`,
732
+ "dragItem": (args)=>`Přetáhnout ${args.itemText}`
733
+ ,
734
+ "dragSelectedItems": (args, formatter)=>`Přetáhnout ${formatter.plural(args.count, {
735
+ one: ()=>`${formatter.number(args.count)} vybranou položku`
736
+ ,
737
+ few: ()=>`${formatter.number(args.count)} vybrané položky`
738
+ ,
739
+ other: ()=>`${formatter.number(args.count)} vybraných položek`
740
+ })}`
741
+ ,
742
+ "dragStartedKeyboard": `Začněte s přetahováním. Po stisknutí klávesy Tab najděte požadovaný cíl a stisknutím klávesy Enter přetažení dokončete nebo stisknutím klávesy Esc akci zrušte.`,
743
+ "dragStartedTouch": `Začněte s přetahováním. Najděte požadovaný cíl a poklepáním přetažení dokončete.`,
744
+ "dragStartedVirtual": `Začněte s přetahováním. Najděte požadovaný cíl a kliknutím nebo stisknutím klávesy Enter přetažení dokončete.`,
745
+ "dropCanceled": `Přetažení bylo zrušeno.`,
746
+ "dropComplete": `Přetažení bylo dokončeno.`,
747
+ "dropDescriptionKeyboard": `Stisknutím klávesy Enter přetažení dokončete nebo stisknutím klávesy Esc akci zrušte.`,
748
+ "dropDescriptionTouch": `Poklepáním přetažení dokončete.`,
749
+ "dropDescriptionVirtual": `Kliknutím objekt přetáhněte.`,
750
+ "dropIndicator": `indikátor přetažení`,
751
+ "dropOnItem": (args)=>`Přetáhnout na ${args.itemText}`
752
+ ,
753
+ "dropOnRoot": `Přetáhnout na`,
754
+ "endDragKeyboard": `Probíhá přetahování. Stisknutím klávesy Enter přetažení zrušíte.`,
755
+ "endDragTouch": `Probíhá přetahování. Poklepáním přetažení zrušíte.`,
756
+ "endDragVirtual": `Probíhá přetahování. Kliknutím přetažení zrušíte.`,
757
+ "insertAfter": (args)=>`Vložit za ${args.itemText}`
758
+ ,
759
+ "insertBefore": (args)=>`Vložit před ${args.itemText}`
760
+ ,
761
+ "insertBetween": (args)=>`Vložit mezi ${args.beforeItemText} a ${args.afterItemText}`
762
+ };
677
763
 
678
764
 
679
765
  var $65fff3bbacfa8956$exports = {};
680
- $65fff3bbacfa8956$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Tryk på Enter for at starte med at trække.\",\"dragDescriptionTouch\":\"Dobbelttryk for at starte med at trække.\",\"dragDescriptionVirtual\":\"Klik for at starte med at trække.\",\"dragItem\":\"Træk {itemText}\",\"dragSelectedItems\":\"Træk {count, plural, one {# valgt element} other {# valgte elementer}}\",\"dragStartedKeyboard\":\"Startet med at trække. Tryk på Tab for at gå til et slip-mål, tryk derefter på Enter for at slippe, eller tryk på Escape for at annullere.\",\"dragStartedTouch\":\"Startet med at trække. Gå til et slip-mål, og dobbelttryk derefter for at slippe.\",\"dragStartedVirtual\":\"Startet med at trække. Gå til et slip-mål, og klik eller tryk derefter på enter for at slippe.\",\"dropCanceled\":\"Slip annulleret.\",\"dropComplete\":\"Slip fuldført.\",\"dropDescriptionKeyboard\":\"Tryk på Enter for at slippe. Tryk på Escape for at annullere trækning.\",\"dropDescriptionTouch\":\"Dobbelttryk for at slippe.\",\"dropDescriptionVirtual\":\"Klik for at slippe.\",\"dropIndicator\":\"slip-indikator\",\"dropOnItem\":\"Slip på {itemText}\",\"dropOnRoot\":\"Slip på\",\"endDragKeyboard\":\"Trækning. Tryk på enter for at annullere træk.\",\"endDragTouch\":\"Trækning. Dobbelttryk for at annullere træk.\",\"endDragVirtual\":\"Trækning. Klik for at annullere trækning.\",\"insertAfter\":\"Indsæt efter {itemText}\",\"insertBefore\":\"Indsæt før {itemText}\",\"insertBetween\":\"Indsæt mellem {beforeItemText} og {afterItemText}\"}");
766
+ $65fff3bbacfa8956$exports = {
767
+ "dragDescriptionKeyboard": `Tryk på Enter for at starte med at trække.`,
768
+ "dragDescriptionTouch": `Dobbelttryk for at starte med at trække.`,
769
+ "dragDescriptionVirtual": `Klik for at starte med at trække.`,
770
+ "dragItem": (args)=>`Træk ${args.itemText}`
771
+ ,
772
+ "dragSelectedItems": (args, formatter)=>`Træk ${formatter.plural(args.count, {
773
+ one: ()=>`${formatter.number(args.count)} valgt element`
774
+ ,
775
+ other: ()=>`${formatter.number(args.count)} valgte elementer`
776
+ })}`
777
+ ,
778
+ "dragStartedKeyboard": `Startet med at trække. Tryk på Tab for at gå til et slip-mål, tryk derefter på Enter for at slippe, eller tryk på Escape for at annullere.`,
779
+ "dragStartedTouch": `Startet med at trække. Gå til et slip-mål, og dobbelttryk derefter for at slippe.`,
780
+ "dragStartedVirtual": `Startet med at trække. Gå til et slip-mål, og klik eller tryk derefter på enter for at slippe.`,
781
+ "dropCanceled": `Slip annulleret.`,
782
+ "dropComplete": `Slip fuldført.`,
783
+ "dropDescriptionKeyboard": `Tryk på Enter for at slippe. Tryk på Escape for at annullere trækning.`,
784
+ "dropDescriptionTouch": `Dobbelttryk for at slippe.`,
785
+ "dropDescriptionVirtual": `Klik for at slippe.`,
786
+ "dropIndicator": `slip-indikator`,
787
+ "dropOnItem": (args)=>`Slip på ${args.itemText}`
788
+ ,
789
+ "dropOnRoot": `Slip på`,
790
+ "endDragKeyboard": `Trækning. Tryk på enter for at annullere træk.`,
791
+ "endDragTouch": `Trækning. Dobbelttryk for at annullere træk.`,
792
+ "endDragVirtual": `Trækning. Klik for at annullere trækning.`,
793
+ "insertAfter": (args)=>`Indsæt efter ${args.itemText}`
794
+ ,
795
+ "insertBefore": (args)=>`Indsæt før ${args.itemText}`
796
+ ,
797
+ "insertBetween": (args)=>`Indsæt mellem ${args.beforeItemText} og ${args.afterItemText}`
798
+ };
681
799
 
682
800
 
683
801
  var $10b7dfe45cd41c2d$exports = {};
684
- $10b7dfe45cd41c2d$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Drücken Sie die Eingabetaste, um den Ziehvorgang zu starten.\",\"dragDescriptionTouch\":\"Tippen Sie doppelt, um den Ziehvorgang zu starten.\",\"dragDescriptionVirtual\":\"Zum Starten des Ziehvorgangs klicken.\",\"dragItem\":\"{itemText} ziehen\",\"dragSelectedItems\":\"{count, plural, one {# ausgewähltes Objekt} other {# ausgewählte Objekte}} ziehen\",\"dragStartedKeyboard\":\"Ziehvorgang gestartet. Drücken Sie die Tabulatortaste, um zu einem Ablegeziel zu navigieren und drücken Sie dann die Eingabetaste, um das Objekt abzulegen, oder Escape, um den Vorgang abzubrechen.\",\"dragStartedTouch\":\"Ziehvorgang gestartet. Navigieren Sie zu einem Ablegeziel und tippen Sie doppelt, um das Objekt abzulegen.\",\"dragStartedVirtual\":\"Ziehvorgang gestartet. Navigieren Sie zu einem Ablegeziel und klicken Sie oder drücken Sie die Eingabetaste, um das Objekt abzulegen.\",\"dropCanceled\":\"Ablegen abgebrochen.\",\"dropComplete\":\"Ablegen abgeschlossen.\",\"dropDescriptionKeyboard\":\"Drücken Sie die Eingabetaste, um das Objekt abzulegen. Drücken Sie Escape, um den Vorgang abzubrechen.\",\"dropDescriptionTouch\":\"Tippen Sie doppelt, um das Objekt abzulegen.\",\"dropDescriptionVirtual\":\"Zum Ablegen klicken.\",\"dropIndicator\":\"Ablegeanzeiger\",\"dropOnItem\":\"Auf {itemText} ablegen\",\"dropOnRoot\":\"Ablegen auf\",\"endDragKeyboard\":\"Ziehvorgang läuft. Drücken Sie die Eingabetaste, um den Vorgang abzubrechen.\",\"endDragTouch\":\"Ziehvorgang läuft. Tippen Sie doppelt, um den Vorgang abzubrechen.\",\"endDragVirtual\":\"Ziehvorgang läuft. Klicken Sie, um den Vorgang abzubrechen.\",\"insertAfter\":\"Nach {itemText} einfügen\",\"insertBefore\":\"Vor {itemText} einfügen\",\"insertBetween\":\"Zwischen {beforeItemText} und {afterItemText} einfügen\"}");
802
+ $10b7dfe45cd41c2d$exports = {
803
+ "dragDescriptionKeyboard": `Drücken Sie die Eingabetaste, um den Ziehvorgang zu starten.`,
804
+ "dragDescriptionTouch": `Tippen Sie doppelt, um den Ziehvorgang zu starten.`,
805
+ "dragDescriptionVirtual": `Zum Starten des Ziehvorgangs klicken.`,
806
+ "dragItem": (args)=>`${args.itemText} ziehen`
807
+ ,
808
+ "dragSelectedItems": (args, formatter)=>`${formatter.plural(args.count, {
809
+ one: ()=>`${formatter.number(args.count)} ausgewähltes Objekt`
810
+ ,
811
+ other: ()=>`${formatter.number(args.count)} ausgewählte Objekte`
812
+ })} ziehen`
813
+ ,
814
+ "dragStartedKeyboard": `Ziehvorgang gestartet. Drücken Sie die Tabulatortaste, um zu einem Ablegeziel zu navigieren und drücken Sie dann die Eingabetaste, um das Objekt abzulegen, oder Escape, um den Vorgang abzubrechen.`,
815
+ "dragStartedTouch": `Ziehvorgang gestartet. Navigieren Sie zu einem Ablegeziel und tippen Sie doppelt, um das Objekt abzulegen.`,
816
+ "dragStartedVirtual": `Ziehvorgang gestartet. Navigieren Sie zu einem Ablegeziel und klicken Sie oder drücken Sie die Eingabetaste, um das Objekt abzulegen.`,
817
+ "dropCanceled": `Ablegen abgebrochen.`,
818
+ "dropComplete": `Ablegen abgeschlossen.`,
819
+ "dropDescriptionKeyboard": `Drücken Sie die Eingabetaste, um das Objekt abzulegen. Drücken Sie Escape, um den Vorgang abzubrechen.`,
820
+ "dropDescriptionTouch": `Tippen Sie doppelt, um das Objekt abzulegen.`,
821
+ "dropDescriptionVirtual": `Zum Ablegen klicken.`,
822
+ "dropIndicator": `Ablegeanzeiger`,
823
+ "dropOnItem": (args)=>`Auf ${args.itemText} ablegen`
824
+ ,
825
+ "dropOnRoot": `Ablegen auf`,
826
+ "endDragKeyboard": `Ziehvorgang läuft. Drücken Sie die Eingabetaste, um den Vorgang abzubrechen.`,
827
+ "endDragTouch": `Ziehvorgang läuft. Tippen Sie doppelt, um den Vorgang abzubrechen.`,
828
+ "endDragVirtual": `Ziehvorgang läuft. Klicken Sie, um den Vorgang abzubrechen.`,
829
+ "insertAfter": (args)=>`Nach ${args.itemText} einfügen`
830
+ ,
831
+ "insertBefore": (args)=>`Vor ${args.itemText} einfügen`
832
+ ,
833
+ "insertBetween": (args)=>`Zwischen ${args.beforeItemText} und ${args.afterItemText} einfügen`
834
+ };
685
835
 
686
836
 
687
837
  var $0cadcffb7abc96b8$exports = {};
688
- $0cadcffb7abc96b8$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Πατήστε Enter για έναρξη της μεταφοράς.\",\"dragDescriptionTouch\":\"Πατήστε δύο φορές για έναρξη της μεταφοράς.\",\"dragDescriptionVirtual\":\"Κάντε κλικ για να ξεκινήσετε τη μεταφορά.\",\"dragItem\":\"Μεταφορά {itemText}\",\"dragSelectedItems\":\"Μεταφορά σε {count, plural, one {# επιλεγμένο στοιχείο} other {# επιλεγμένα στοιχεία}}\",\"dragStartedKeyboard\":\"Η μεταφορά ξεκίνησε. Πατήστε το πλήκτρο Tab για να μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, πατήστε Enter για απόθεση ή πατήστε Escape για ακύρωση.\",\"dragStartedTouch\":\"Η μεταφορά ξεκίνησε. Μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, πατήστε δύο φορές για απόθεση.\",\"dragStartedVirtual\":\"Η μεταφορά ξεκίνησε. Μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, κάντε κλικ ή πατήστε Enter για απόθεση.\",\"dropCanceled\":\"Η απόθεση ακυρώθηκε.\",\"dropComplete\":\"Η απόθεση ολοκληρώθηκε.\",\"dropDescriptionKeyboard\":\"Πατήστε Enter για απόθεση. Πατήστε Escape για ακύρωση της μεταφοράς.\",\"dropDescriptionTouch\":\"Πατήστε δύο φορές για απόθεση.\",\"dropDescriptionVirtual\":\"Κάντε κλικ για απόθεση.\",\"dropIndicator\":\"δείκτης απόθεσης\",\"dropOnItem\":\"Απόθεση σε {itemText}\",\"dropOnRoot\":\"Απόθεση σε\",\"endDragKeyboard\":\"Μεταφορά σε εξέλιξη. Πατήστε Enter για ακύρωση της μεταφοράς.\",\"endDragTouch\":\"Μεταφορά σε εξέλιξη. Πατήστε δύο φορές για ακύρωση της μεταφοράς.\",\"endDragVirtual\":\"Μεταφορά σε εξέλιξη. Κάντε κλικ για ακύρωση της μεταφοράς.\",\"insertAfter\":\"Εισαγωγή μετά από {itemText}\",\"insertBefore\":\"Εισαγωγή πριν από {itemText}\",\"insertBetween\":\"Εισαγωγή μεταξύ {beforeItemText} και {afterItemText}\"}");
838
+ $0cadcffb7abc96b8$exports = {
839
+ "dragDescriptionKeyboard": `Πατήστε Enter για έναρξη της μεταφοράς.`,
840
+ "dragDescriptionTouch": `Πατήστε δύο φορές για έναρξη της μεταφοράς.`,
841
+ "dragDescriptionVirtual": `Κάντε κλικ για να ξεκινήσετε τη μεταφορά.`,
842
+ "dragItem": (args)=>`Μεταφορά ${args.itemText}`
843
+ ,
844
+ "dragSelectedItems": (args, formatter)=>`Μεταφορά σε ${formatter.plural(args.count, {
845
+ one: ()=>`${formatter.number(args.count)} επιλεγμένο στοιχείο`
846
+ ,
847
+ other: ()=>`${formatter.number(args.count)} επιλεγμένα στοιχεία`
848
+ })}`
849
+ ,
850
+ "dragStartedKeyboard": `Η μεταφορά ξεκίνησε. Πατήστε το πλήκτρο Tab για να μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, πατήστε Enter για απόθεση ή πατήστε Escape για ακύρωση.`,
851
+ "dragStartedTouch": `Η μεταφορά ξεκίνησε. Μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, πατήστε δύο φορές για απόθεση.`,
852
+ "dragStartedVirtual": `Η μεταφορά ξεκίνησε. Μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, κάντε κλικ ή πατήστε Enter για απόθεση.`,
853
+ "dropCanceled": `Η απόθεση ακυρώθηκε.`,
854
+ "dropComplete": `Η απόθεση ολοκληρώθηκε.`,
855
+ "dropDescriptionKeyboard": `Πατήστε Enter για απόθεση. Πατήστε Escape για ακύρωση της μεταφοράς.`,
856
+ "dropDescriptionTouch": `Πατήστε δύο φορές για απόθεση.`,
857
+ "dropDescriptionVirtual": `Κάντε κλικ για απόθεση.`,
858
+ "dropIndicator": `δείκτης απόθεσης`,
859
+ "dropOnItem": (args)=>`Απόθεση σε ${args.itemText}`
860
+ ,
861
+ "dropOnRoot": `Απόθεση σε`,
862
+ "endDragKeyboard": `Μεταφορά σε εξέλιξη. Πατήστε Enter για ακύρωση της μεταφοράς.`,
863
+ "endDragTouch": `Μεταφορά σε εξέλιξη. Πατήστε δύο φορές για ακύρωση της μεταφοράς.`,
864
+ "endDragVirtual": `Μεταφορά σε εξέλιξη. Κάντε κλικ για ακύρωση της μεταφοράς.`,
865
+ "insertAfter": (args)=>`Εισαγωγή μετά από ${args.itemText}`
866
+ ,
867
+ "insertBefore": (args)=>`Εισαγωγή πριν από ${args.itemText}`
868
+ ,
869
+ "insertBetween": (args)=>`Εισαγωγή μεταξύ ${args.beforeItemText} και ${args.afterItemText}`
870
+ };
689
871
 
690
872
 
691
873
  var $7e3982b34ddf1bdf$exports = {};
692
- $7e3982b34ddf1bdf$exports = JSON.parse("{\"dragItem\":\"Drag {itemText}\",\"dragSelectedItems\":\"Drag {count, plural, one {# selected item} other {# selected items}}\",\"dragDescriptionKeyboard\":\"Press Enter to start dragging.\",\"dragDescriptionTouch\":\"Double tap to start dragging.\",\"dragDescriptionVirtual\":\"Click to start dragging.\",\"dragStartedKeyboard\":\"Started dragging. Press Tab to navigate to a drop target, then press Enter to drop, or press Escape to cancel.\",\"dragStartedTouch\":\"Started dragging. Navigate to a drop target, then double tap to drop.\",\"dragStartedVirtual\":\"Started dragging. Navigate to a drop target, then click or press Enter to drop.\",\"endDragKeyboard\":\"Dragging. Press Enter to cancel drag.\",\"endDragTouch\":\"Dragging. Double tap to cancel drag.\",\"endDragVirtual\":\"Dragging. Click to cancel drag.\",\"dropDescriptionKeyboard\":\"Press Enter to drop. Press Escape to cancel drag.\",\"dropDescriptionTouch\":\"Double tap to drop.\",\"dropDescriptionVirtual\":\"Click to drop.\",\"dropCanceled\":\"Drop canceled.\",\"dropComplete\":\"Drop complete.\",\"dropIndicator\":\"drop indicator\",\"dropOnRoot\":\"Drop on\",\"dropOnItem\":\"Drop on {itemText}\",\"insertBefore\":\"Insert before {itemText}\",\"insertBetween\":\"Insert between {beforeItemText} and {afterItemText}\",\"insertAfter\":\"Insert after {itemText}\"}");
874
+ $7e3982b34ddf1bdf$exports = {
875
+ "dragItem": (args)=>`Drag ${args.itemText}`
876
+ ,
877
+ "dragSelectedItems": (args, formatter)=>`Drag ${formatter.plural(args.count, {
878
+ one: ()=>`${formatter.number(args.count)} selected item`
879
+ ,
880
+ other: ()=>`${formatter.number(args.count)} selected items`
881
+ })}`
882
+ ,
883
+ "dragDescriptionKeyboard": `Press Enter to start dragging.`,
884
+ "dragDescriptionTouch": `Double tap to start dragging.`,
885
+ "dragDescriptionVirtual": `Click to start dragging.`,
886
+ "dragStartedKeyboard": `Started dragging. Press Tab to navigate to a drop target, then press Enter to drop, or press Escape to cancel.`,
887
+ "dragStartedTouch": `Started dragging. Navigate to a drop target, then double tap to drop.`,
888
+ "dragStartedVirtual": `Started dragging. Navigate to a drop target, then click or press Enter to drop.`,
889
+ "endDragKeyboard": `Dragging. Press Enter to cancel drag.`,
890
+ "endDragTouch": `Dragging. Double tap to cancel drag.`,
891
+ "endDragVirtual": `Dragging. Click to cancel drag.`,
892
+ "dropDescriptionKeyboard": `Press Enter to drop. Press Escape to cancel drag.`,
893
+ "dropDescriptionTouch": `Double tap to drop.`,
894
+ "dropDescriptionVirtual": `Click to drop.`,
895
+ "dropCanceled": `Drop canceled.`,
896
+ "dropComplete": `Drop complete.`,
897
+ "dropIndicator": `drop indicator`,
898
+ "dropOnRoot": `Drop on`,
899
+ "dropOnItem": (args)=>`Drop on ${args.itemText}`
900
+ ,
901
+ "insertBefore": (args)=>`Insert before ${args.itemText}`
902
+ ,
903
+ "insertBetween": (args)=>`Insert between ${args.beforeItemText} and ${args.afterItemText}`
904
+ ,
905
+ "insertAfter": (args)=>`Insert after ${args.itemText}`
906
+ };
693
907
 
694
908
 
695
909
  var $cb29ce0b655c4023$exports = {};
696
- $cb29ce0b655c4023$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Pulse Intro para empezar a arrastrar.\",\"dragDescriptionTouch\":\"Pulse dos veces para iniciar el arrastre.\",\"dragDescriptionVirtual\":\"Haga clic para iniciar el arrastre.\",\"dragItem\":\"Arrastrar {itemText}\",\"dragSelectedItems\":\"Arrastrar {count, plural, one {# elemento seleccionado} other {# elementos seleccionados}}\",\"dragStartedKeyboard\":\"Se ha empezado a arrastrar. Pulse el tabulador para ir al destino de colocación y, a continuación, pulse Intro para soltar, o pulse Escape para cancelar.\",\"dragStartedTouch\":\"Se ha empezado a arrastrar. Vaya al destino de colocación y, a continuación, pulse dos veces para soltar.\",\"dragStartedVirtual\":\"Se ha empezado a arrastrar. Vaya al destino de colocación y, a continuación, haga clic o pulse Intro para soltar.\",\"dropCanceled\":\"Se ha cancelado la colocación.\",\"dropComplete\":\"Colocación finalizada.\",\"dropDescriptionKeyboard\":\"Pulse Intro para soltar. Pulse Escape para cancelar el arrastre.\",\"dropDescriptionTouch\":\"Pulse dos veces para soltar.\",\"dropDescriptionVirtual\":\"Haga clic para soltar.\",\"dropIndicator\":\"indicador de colocación\",\"dropOnItem\":\"Soltar en {itemText}\",\"dropOnRoot\":\"Soltar en\",\"endDragKeyboard\":\"Arrastrando. Pulse Intro para cancelar el arrastre.\",\"endDragTouch\":\"Arrastrando. Pulse dos veces para cancelar el arrastre.\",\"endDragVirtual\":\"Arrastrando. Haga clic para cancelar el arrastre.\",\"insertAfter\":\"Insertar después de {itemText}\",\"insertBefore\":\"Insertar antes de {itemText}\",\"insertBetween\":\"Insertar entre {beforeItemText} y {afterItemText}\"}");
910
+ $cb29ce0b655c4023$exports = {
911
+ "dragDescriptionKeyboard": `Pulse Intro para empezar a arrastrar.`,
912
+ "dragDescriptionTouch": `Pulse dos veces para iniciar el arrastre.`,
913
+ "dragDescriptionVirtual": `Haga clic para iniciar el arrastre.`,
914
+ "dragItem": (args)=>`Arrastrar ${args.itemText}`
915
+ ,
916
+ "dragSelectedItems": (args, formatter)=>`Arrastrar ${formatter.plural(args.count, {
917
+ one: ()=>`${formatter.number(args.count)} elemento seleccionado`
918
+ ,
919
+ other: ()=>`${formatter.number(args.count)} elementos seleccionados`
920
+ })}`
921
+ ,
922
+ "dragStartedKeyboard": `Se ha empezado a arrastrar. Pulse el tabulador para ir al destino de colocación y, a continuación, pulse Intro para soltar, o pulse Escape para cancelar.`,
923
+ "dragStartedTouch": `Se ha empezado a arrastrar. Vaya al destino de colocación y, a continuación, pulse dos veces para soltar.`,
924
+ "dragStartedVirtual": `Se ha empezado a arrastrar. Vaya al destino de colocación y, a continuación, haga clic o pulse Intro para soltar.`,
925
+ "dropCanceled": `Se ha cancelado la colocación.`,
926
+ "dropComplete": `Colocación finalizada.`,
927
+ "dropDescriptionKeyboard": `Pulse Intro para soltar. Pulse Escape para cancelar el arrastre.`,
928
+ "dropDescriptionTouch": `Pulse dos veces para soltar.`,
929
+ "dropDescriptionVirtual": `Haga clic para soltar.`,
930
+ "dropIndicator": `indicador de colocación`,
931
+ "dropOnItem": (args)=>`Soltar en ${args.itemText}`
932
+ ,
933
+ "dropOnRoot": `Soltar en`,
934
+ "endDragKeyboard": `Arrastrando. Pulse Intro para cancelar el arrastre.`,
935
+ "endDragTouch": `Arrastrando. Pulse dos veces para cancelar el arrastre.`,
936
+ "endDragVirtual": `Arrastrando. Haga clic para cancelar el arrastre.`,
937
+ "insertAfter": (args)=>`Insertar después de ${args.itemText}`
938
+ ,
939
+ "insertBefore": (args)=>`Insertar antes de ${args.itemText}`
940
+ ,
941
+ "insertBetween": (args)=>`Insertar entre ${args.beforeItemText} y ${args.afterItemText}`
942
+ };
697
943
 
698
944
 
699
945
  var $067d46bab80bcf4b$exports = {};
700
- $067d46bab80bcf4b$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Lohistamise alustamiseks vajutage klahvi Enter.\",\"dragDescriptionTouch\":\"Topeltpuudutage lohistamise alustamiseks.\",\"dragDescriptionVirtual\":\"Klõpsake lohistamise alustamiseks.\",\"dragItem\":\"Lohista {itemText}\",\"dragSelectedItems\":\"Lohista {count, plural, one {# valitud üksust} other {# valitud üksust}}\",\"dragStartedKeyboard\":\"Alustati lohistamist. Kukutamise sihtmärgi juurde navigeerimiseks vajutage klahvi Tab, seejärel vajutage kukutamiseks klahvi Enter või loobumiseks klahvi Escape.\",\"dragStartedTouch\":\"Alustati lohistamist. Navigeerige kukutamise sihtmärgi juurde ja topeltpuudutage kukutamiseks.\",\"dragStartedVirtual\":\"Alustati lohistamist. Navigeerige kukutamise sihtmärgi juurde ja kukutamiseks klõpsake või vajutage klahvi Enter.\",\"dropCanceled\":\"Lohistamisest loobuti.\",\"dropComplete\":\"Lohistamine on tehtud.\",\"dropDescriptionKeyboard\":\"Kukutamiseks vajutage klahvi Enter. Lohistamisest loobumiseks vajutage klahvi Escape.\",\"dropDescriptionTouch\":\"Kukutamiseks topeltpuudutage.\",\"dropDescriptionVirtual\":\"Kukutamiseks klõpsake.\",\"dropIndicator\":\"lohistamise indikaator\",\"dropOnItem\":\"Kukuta asukohta {itemText}\",\"dropOnRoot\":\"Kukuta asukohta\",\"endDragKeyboard\":\"Lohistamine. Lohistamisest loobumiseks vajutage klahvi Enter.\",\"endDragTouch\":\"Lohistamine. Lohistamisest loobumiseks topeltpuudutage.\",\"endDragVirtual\":\"Lohistamine. Lohistamisest loobumiseks klõpsake.\",\"insertAfter\":\"Sisesta {itemText} järele\",\"insertBefore\":\"Sisesta {itemText} ette\",\"insertBetween\":\"Sisesta {beforeItemText} ja {afterItemText} vahele\"}");
946
+ $067d46bab80bcf4b$exports = {
947
+ "dragDescriptionKeyboard": `Lohistamise alustamiseks vajutage klahvi Enter.`,
948
+ "dragDescriptionTouch": `Topeltpuudutage lohistamise alustamiseks.`,
949
+ "dragDescriptionVirtual": `Klõpsake lohistamise alustamiseks.`,
950
+ "dragItem": (args)=>`Lohista ${args.itemText}`
951
+ ,
952
+ "dragSelectedItems": (args, formatter)=>`Lohista ${formatter.plural(args.count, {
953
+ one: ()=>`${formatter.number(args.count)} valitud üksust`
954
+ ,
955
+ other: ()=>`${formatter.number(args.count)} valitud üksust`
956
+ })}`
957
+ ,
958
+ "dragStartedKeyboard": `Alustati lohistamist. Kukutamise sihtmärgi juurde navigeerimiseks vajutage klahvi Tab, seejärel vajutage kukutamiseks klahvi Enter või loobumiseks klahvi Escape.`,
959
+ "dragStartedTouch": `Alustati lohistamist. Navigeerige kukutamise sihtmärgi juurde ja topeltpuudutage kukutamiseks.`,
960
+ "dragStartedVirtual": `Alustati lohistamist. Navigeerige kukutamise sihtmärgi juurde ja kukutamiseks klõpsake või vajutage klahvi Enter.`,
961
+ "dropCanceled": `Lohistamisest loobuti.`,
962
+ "dropComplete": `Lohistamine on tehtud.`,
963
+ "dropDescriptionKeyboard": `Kukutamiseks vajutage klahvi Enter. Lohistamisest loobumiseks vajutage klahvi Escape.`,
964
+ "dropDescriptionTouch": `Kukutamiseks topeltpuudutage.`,
965
+ "dropDescriptionVirtual": `Kukutamiseks klõpsake.`,
966
+ "dropIndicator": `lohistamise indikaator`,
967
+ "dropOnItem": (args)=>`Kukuta asukohta ${args.itemText}`
968
+ ,
969
+ "dropOnRoot": `Kukuta asukohta`,
970
+ "endDragKeyboard": `Lohistamine. Lohistamisest loobumiseks vajutage klahvi Enter.`,
971
+ "endDragTouch": `Lohistamine. Lohistamisest loobumiseks topeltpuudutage.`,
972
+ "endDragVirtual": `Lohistamine. Lohistamisest loobumiseks klõpsake.`,
973
+ "insertAfter": (args)=>`Sisesta ${args.itemText} järele`
974
+ ,
975
+ "insertBefore": (args)=>`Sisesta ${args.itemText} ette`
976
+ ,
977
+ "insertBetween": (args)=>`Sisesta ${args.beforeItemText} ja ${args.afterItemText} vahele`
978
+ };
701
979
 
702
980
 
703
981
  var $8aa1b9a1f9d783d3$exports = {};
704
- $8aa1b9a1f9d783d3$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Aloita vetäminen painamalla Enter-näppäintä.\",\"dragDescriptionTouch\":\"Aloita vetäminen kaksoisnapauttamalla.\",\"dragDescriptionVirtual\":\"Aloita vetäminen napsauttamalla.\",\"dragItem\":\"Vedä kohdetta {itemText}\",\"dragSelectedItems\":\"Vedä {count, plural, one {# valittua kohdetta} other {# valittua kohdetta}}\",\"dragStartedKeyboard\":\"Vetäminen aloitettu. Siirry pudotuskohteeseen painamalla sarkainnäppäintä ja sitten pudota painamalla Enter-näppäintä tai peruuta painamalla Escape-näppäintä.\",\"dragStartedTouch\":\"Vetäminen aloitettu. Siirry pudotuskohteeseen ja pudota kaksoisnapauttamalla.\",\"dragStartedVirtual\":\"Vetäminen aloitettu. Siirry pudotuskohteeseen ja pudota napsauttamalla tai painamalla Enter-näppäintä.\",\"dropCanceled\":\"Pudotus peruutettu.\",\"dropComplete\":\"Pudotus suoritettu.\",\"dropDescriptionKeyboard\":\"Pudota painamalla Enter-näppäintä. Peruuta vetäminen painamalla Escape-näppäintä.\",\"dropDescriptionTouch\":\"Pudota kaksoisnapauttamalla.\",\"dropDescriptionVirtual\":\"Pudota napsauttamalla.\",\"dropIndicator\":\"pudotuksen ilmaisin\",\"dropOnItem\":\"Pudota kohteeseen {itemText}\",\"dropOnRoot\":\"Pudota kohteeseen\",\"endDragKeyboard\":\"Vedetään. Peruuta vetäminen painamalla Enter-näppäintä.\",\"endDragTouch\":\"Vedetään. Peruuta vetäminen kaksoisnapauttamalla.\",\"endDragVirtual\":\"Vedetään. Peruuta vetäminen napsauttamalla.\",\"insertAfter\":\"Lisää kohteen {itemText} jälkeen\",\"insertBefore\":\"Lisää ennen kohdetta {itemText}\",\"insertBetween\":\"Lisää kohteiden {beforeItemText} ja {afterItemText} väliin\"}");
982
+ $8aa1b9a1f9d783d3$exports = {
983
+ "dragDescriptionKeyboard": `Aloita vetäminen painamalla Enter-näppäintä.`,
984
+ "dragDescriptionTouch": `Aloita vetäminen kaksoisnapauttamalla.`,
985
+ "dragDescriptionVirtual": `Aloita vetäminen napsauttamalla.`,
986
+ "dragItem": (args)=>`Vedä kohdetta ${args.itemText}`
987
+ ,
988
+ "dragSelectedItems": (args, formatter)=>`Vedä ${formatter.plural(args.count, {
989
+ one: ()=>`${formatter.number(args.count)} valittua kohdetta`
990
+ ,
991
+ other: ()=>`${formatter.number(args.count)} valittua kohdetta`
992
+ })}`
993
+ ,
994
+ "dragStartedKeyboard": `Vetäminen aloitettu. Siirry pudotuskohteeseen painamalla sarkainnäppäintä ja sitten pudota painamalla Enter-näppäintä tai peruuta painamalla Escape-näppäintä.`,
995
+ "dragStartedTouch": `Vetäminen aloitettu. Siirry pudotuskohteeseen ja pudota kaksoisnapauttamalla.`,
996
+ "dragStartedVirtual": `Vetäminen aloitettu. Siirry pudotuskohteeseen ja pudota napsauttamalla tai painamalla Enter-näppäintä.`,
997
+ "dropCanceled": `Pudotus peruutettu.`,
998
+ "dropComplete": `Pudotus suoritettu.`,
999
+ "dropDescriptionKeyboard": `Pudota painamalla Enter-näppäintä. Peruuta vetäminen painamalla Escape-näppäintä.`,
1000
+ "dropDescriptionTouch": `Pudota kaksoisnapauttamalla.`,
1001
+ "dropDescriptionVirtual": `Pudota napsauttamalla.`,
1002
+ "dropIndicator": `pudotuksen ilmaisin`,
1003
+ "dropOnItem": (args)=>`Pudota kohteeseen ${args.itemText}`
1004
+ ,
1005
+ "dropOnRoot": `Pudota kohteeseen`,
1006
+ "endDragKeyboard": `Vedetään. Peruuta vetäminen painamalla Enter-näppäintä.`,
1007
+ "endDragTouch": `Vedetään. Peruuta vetäminen kaksoisnapauttamalla.`,
1008
+ "endDragVirtual": `Vedetään. Peruuta vetäminen napsauttamalla.`,
1009
+ "insertAfter": (args)=>`Lisää kohteen ${args.itemText} jälkeen`
1010
+ ,
1011
+ "insertBefore": (args)=>`Lisää ennen kohdetta ${args.itemText}`
1012
+ ,
1013
+ "insertBetween": (args)=>`Lisää kohteiden ${args.beforeItemText} ja ${args.afterItemText} väliin`
1014
+ };
705
1015
 
706
1016
 
707
1017
  var $9e248ec27f7dc55f$exports = {};
708
- $9e248ec27f7dc55f$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Appuyez sur Entrée pour commencer le déplacement.\",\"dragDescriptionTouch\":\"Touchez deux fois pour commencer le déplacement.\",\"dragDescriptionVirtual\":\"Cliquez pour commencer le déplacement.\",\"dragItem\":\"Déplacer {itemText}\",\"dragSelectedItems\":\"Déplacer {count, plural, one {# élément sélectionné} other {# éléments sélectionnés}}\",\"dragStartedKeyboard\":\"Déplacement commencé. Appuyez sur Tabulation pour accéder à une cible de dépôt, puis appuyez sur Entrée pour déposer, ou appuyez sur Échap pour annuler.\",\"dragStartedTouch\":\"Déplacement commencé. Accédez à une cible de dépôt, puis touchez deux fois pour déposer.\",\"dragStartedVirtual\":\"Déplacement commencé. Accédez à une cible de dépôt, puis cliquez ou appuyez sur Entrée pour déposer.\",\"dropCanceled\":\"Dépôt annulé.\",\"dropComplete\":\"Dépôt terminé.\",\"dropDescriptionKeyboard\":\"Appuyez sur Entrée pour déposer. Appuyez sur Échap pour annuler le déplacement.\",\"dropDescriptionTouch\":\"Touchez deux fois pour déposer.\",\"dropDescriptionVirtual\":\"Cliquez pour déposer.\",\"dropIndicator\":\"indicateur de dépôt\",\"dropOnItem\":\"Déposer sur {itemText}\",\"dropOnRoot\":\"Déposer sur\",\"endDragKeyboard\":\"Déplacement. Appuyez sur Entrée pour annuler le déplacement.\",\"endDragTouch\":\"Déplacement. Touchez deux fois pour annuler le déplacement.\",\"endDragVirtual\":\"Déplacement. Cliquez pour annuler le déplacement.\",\"insertAfter\":\"Insérer après {itemText}\",\"insertBefore\":\"Insérer avant {itemText}\",\"insertBetween\":\"Insérer entre {beforeItemText} et {afterItemText}\"}");
1018
+ $9e248ec27f7dc55f$exports = {
1019
+ "dragDescriptionKeyboard": `Appuyez sur Entrée pour commencer le déplacement.`,
1020
+ "dragDescriptionTouch": `Touchez deux fois pour commencer le déplacement.`,
1021
+ "dragDescriptionVirtual": `Cliquez pour commencer le déplacement.`,
1022
+ "dragItem": (args)=>`Déplacer ${args.itemText}`
1023
+ ,
1024
+ "dragSelectedItems": (args, formatter)=>`Déplacer ${formatter.plural(args.count, {
1025
+ one: ()=>`${formatter.number(args.count)} élément sélectionné`
1026
+ ,
1027
+ other: ()=>`${formatter.number(args.count)} éléments sélectionnés`
1028
+ })}`
1029
+ ,
1030
+ "dragStartedKeyboard": `Déplacement commencé. Appuyez sur Tabulation pour accéder à une cible de dépôt, puis appuyez sur Entrée pour déposer, ou appuyez sur Échap pour annuler.`,
1031
+ "dragStartedTouch": `Déplacement commencé. Accédez à une cible de dépôt, puis touchez deux fois pour déposer.`,
1032
+ "dragStartedVirtual": `Déplacement commencé. Accédez à une cible de dépôt, puis cliquez ou appuyez sur Entrée pour déposer.`,
1033
+ "dropCanceled": `Dépôt annulé.`,
1034
+ "dropComplete": `Dépôt terminé.`,
1035
+ "dropDescriptionKeyboard": `Appuyez sur Entrée pour déposer. Appuyez sur Échap pour annuler le déplacement.`,
1036
+ "dropDescriptionTouch": `Touchez deux fois pour déposer.`,
1037
+ "dropDescriptionVirtual": `Cliquez pour déposer.`,
1038
+ "dropIndicator": `indicateur de dépôt`,
1039
+ "dropOnItem": (args)=>`Déposer sur ${args.itemText}`
1040
+ ,
1041
+ "dropOnRoot": `Déposer sur`,
1042
+ "endDragKeyboard": `Déplacement. Appuyez sur Entrée pour annuler le déplacement.`,
1043
+ "endDragTouch": `Déplacement. Touchez deux fois pour annuler le déplacement.`,
1044
+ "endDragVirtual": `Déplacement. Cliquez pour annuler le déplacement.`,
1045
+ "insertAfter": (args)=>`Insérer après ${args.itemText}`
1046
+ ,
1047
+ "insertBefore": (args)=>`Insérer avant ${args.itemText}`
1048
+ ,
1049
+ "insertBetween": (args)=>`Insérer entre ${args.beforeItemText} et ${args.afterItemText}`
1050
+ };
709
1051
 
710
1052
 
711
1053
  var $6387f7228f0de45e$exports = {};
712
- $6387f7228f0de45e$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"הקש על Enter כדי להתחיל לגרור.\",\"dragDescriptionTouch\":\"הקש פעמיים כדי להתחיל בגרירה.\",\"dragDescriptionVirtual\":\"לחץ כדי להתחיל לגרור.\",\"dragItem\":\"גרור את {itemText}\",\"dragSelectedItems\":\"גרור {count, plural, one {פריט נבחר #} other {# פריטים שנבחרו}}\",\"dragStartedKeyboard\":\"התחלת לגרור. הקש על Tab כדי לנווט לנקודת הגרירה ולאחר מכן הקש על Enter כדי לשחרר או על Escape כדי לבטל.\",\"dragStartedTouch\":\"התחלת לגרור. נווט לנקודת השחרור ולאחר מכן הקש פעמיים כדי לשחרר.\",\"dragStartedVirtual\":\"התחלת לגרור. נווט לנקודת השחרור ולאחר מכן לחץ או הקש על Enter כדי לשחרר.\",\"dropCanceled\":\"השחרור בוטל.\",\"dropComplete\":\"השחרור הושלם.\",\"dropDescriptionKeyboard\":\"הקש על Enter כדי לשחרר. הקש על Escape כדי לבטל את הגרירה.\",\"dropDescriptionTouch\":\"הקש פעמיים כדי לשחרר.\",\"dropDescriptionVirtual\":\"לחץ כדי לשחרר.\",\"dropIndicator\":\"מחוון שחרור\",\"dropOnItem\":\"שחרר על {itemText}\",\"dropOnRoot\":\"שחרר על\",\"endDragKeyboard\":\"גורר. הקש על Enter כדי לבטל את הגרירה.\",\"endDragTouch\":\"גורר. הקש פעמיים כדי לבטל את הגרירה.\",\"endDragVirtual\":\"גורר. לחץ כדי לבטל את הגרירה.\",\"insertAfter\":\"הוסף אחרי {itemText}\",\"insertBefore\":\"הוסף לפני {itemText}\",\"insertBetween\":\"הוסף בין {beforeItemText} לבין {afterItemText}\"}");
1054
+ $6387f7228f0de45e$exports = {
1055
+ "dragDescriptionKeyboard": `הקש על Enter כדי להתחיל לגרור.`,
1056
+ "dragDescriptionTouch": `הקש פעמיים כדי להתחיל בגרירה.`,
1057
+ "dragDescriptionVirtual": `לחץ כדי להתחיל לגרור.`,
1058
+ "dragItem": (args)=>`גרור את ${args.itemText}`
1059
+ ,
1060
+ "dragSelectedItems": (args, formatter)=>`גרור ${formatter.plural(args.count, {
1061
+ one: ()=>`פריט נבחר ${formatter.number(args.count)}`
1062
+ ,
1063
+ other: ()=>`${formatter.number(args.count)} פריטים שנבחרו`
1064
+ })}`
1065
+ ,
1066
+ "dragStartedKeyboard": `התחלת לגרור. הקש על Tab כדי לנווט לנקודת הגרירה ולאחר מכן הקש על Enter כדי לשחרר או על Escape כדי לבטל.`,
1067
+ "dragStartedTouch": `התחלת לגרור. נווט לנקודת השחרור ולאחר מכן הקש פעמיים כדי לשחרר.`,
1068
+ "dragStartedVirtual": `התחלת לגרור. נווט לנקודת השחרור ולאחר מכן לחץ או הקש על Enter כדי לשחרר.`,
1069
+ "dropCanceled": `השחרור בוטל.`,
1070
+ "dropComplete": `השחרור הושלם.`,
1071
+ "dropDescriptionKeyboard": `הקש על Enter כדי לשחרר. הקש על Escape כדי לבטל את הגרירה.`,
1072
+ "dropDescriptionTouch": `הקש פעמיים כדי לשחרר.`,
1073
+ "dropDescriptionVirtual": `לחץ כדי לשחרר.`,
1074
+ "dropIndicator": `מחוון שחרור`,
1075
+ "dropOnItem": (args)=>`שחרר על ${args.itemText}`
1076
+ ,
1077
+ "dropOnRoot": `שחרר על`,
1078
+ "endDragKeyboard": `גורר. הקש על Enter כדי לבטל את הגרירה.`,
1079
+ "endDragTouch": `גורר. הקש פעמיים כדי לבטל את הגרירה.`,
1080
+ "endDragVirtual": `גורר. לחץ כדי לבטל את הגרירה.`,
1081
+ "insertAfter": (args)=>`הוסף אחרי ${args.itemText}`
1082
+ ,
1083
+ "insertBefore": (args)=>`הוסף לפני ${args.itemText}`
1084
+ ,
1085
+ "insertBetween": (args)=>`הוסף בין ${args.beforeItemText} לבין ${args.afterItemText}`
1086
+ };
713
1087
 
714
1088
 
715
1089
  var $34a283567735f754$exports = {};
716
- $34a283567735f754$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Pritisnite Enter da biste počeli povlačiti.\",\"dragDescriptionTouch\":\"Dvaput dodirnite da biste počeli povlačiti.\",\"dragDescriptionVirtual\":\"Kliknite da biste počeli povlačiti.\",\"dragItem\":\"Povucite stavku {itemText}\",\"dragSelectedItems\":\"Povucite {count, plural, one {# odabranu stavku} other {ovoliko odabranih stavki: #}}\",\"dragStartedKeyboard\":\"Počeli ste povlačiti. Pritisnite tipku tabulatora da biste došli do cilja ispuštanja, a zatim Enter da biste ispustili stavku ili Escape da biste prekinuli povlačenje.\",\"dragStartedTouch\":\"Počeli ste povlačiti. Dođite do cilja ispuštanja, a zatim dvaput dodirnite da biste ispustili stavku.\",\"dragStartedVirtual\":\"Počeli ste povlačiti. Dođite do cilja ispuštanja, a zatim kliknite ili pritisnite Enter da biste ispustili stavku.\",\"dropCanceled\":\"Povlačenje je prekinuto.\",\"dropComplete\":\"Ispuštanje je dovršeno.\",\"dropDescriptionKeyboard\":\"Pritisnite Enter da biste ispustili stavku. Pritisnite Escape da biste prekinuli povlačenje.\",\"dropDescriptionTouch\":\"Dvaput dodirnite da biste ispustili stavku.\",\"dropDescriptionVirtual\":\"Kliknite da biste ispustili stavku.\",\"dropIndicator\":\"pokazatelj ispuštanja\",\"dropOnItem\":\"Ispustite na stavku {itemText}\",\"dropOnRoot\":\"Ispustite na\",\"endDragKeyboard\":\"Povlačenje. Pritisnite Enter da biste prekinuli povlačenje.\",\"endDragTouch\":\"Povlačenje. Dvaput dodirnite da biste prekinuli povlačenje.\",\"endDragVirtual\":\"Povlačenje. Kliknite da biste prekinuli povlačenje.\",\"insertAfter\":\"Umetnite iza stavke {itemText}\",\"insertBefore\":\"Ispustite ispred stavke {itemText}\",\"insertBetween\":\"Umetnite između stavki {beforeItemText} i {afterItemText}\"}");
1090
+ $34a283567735f754$exports = {
1091
+ "dragDescriptionKeyboard": `Pritisnite Enter da biste počeli povlačiti.`,
1092
+ "dragDescriptionTouch": `Dvaput dodirnite da biste počeli povlačiti.`,
1093
+ "dragDescriptionVirtual": `Kliknite da biste počeli povlačiti.`,
1094
+ "dragItem": (args)=>`Povucite stavku ${args.itemText}`
1095
+ ,
1096
+ "dragSelectedItems": (args, formatter)=>`Povucite ${formatter.plural(args.count, {
1097
+ one: ()=>`${formatter.number(args.count)} odabranu stavku`
1098
+ ,
1099
+ other: ()=>`ovoliko odabranih stavki: ${formatter.number(args.count)}`
1100
+ })}`
1101
+ ,
1102
+ "dragStartedKeyboard": `Počeli ste povlačiti. Pritisnite tipku tabulatora da biste došli do cilja ispuštanja, a zatim Enter da biste ispustili stavku ili Escape da biste prekinuli povlačenje.`,
1103
+ "dragStartedTouch": `Počeli ste povlačiti. Dođite do cilja ispuštanja, a zatim dvaput dodirnite da biste ispustili stavku.`,
1104
+ "dragStartedVirtual": `Počeli ste povlačiti. Dođite do cilja ispuštanja, a zatim kliknite ili pritisnite Enter da biste ispustili stavku.`,
1105
+ "dropCanceled": `Povlačenje je prekinuto.`,
1106
+ "dropComplete": `Ispuštanje je dovršeno.`,
1107
+ "dropDescriptionKeyboard": `Pritisnite Enter da biste ispustili stavku. Pritisnite Escape da biste prekinuli povlačenje.`,
1108
+ "dropDescriptionTouch": `Dvaput dodirnite da biste ispustili stavku.`,
1109
+ "dropDescriptionVirtual": `Kliknite da biste ispustili stavku.`,
1110
+ "dropIndicator": `pokazatelj ispuštanja`,
1111
+ "dropOnItem": (args)=>`Ispustite na stavku ${args.itemText}`
1112
+ ,
1113
+ "dropOnRoot": `Ispustite na`,
1114
+ "endDragKeyboard": `Povlačenje. Pritisnite Enter da biste prekinuli povlačenje.`,
1115
+ "endDragTouch": `Povlačenje. Dvaput dodirnite da biste prekinuli povlačenje.`,
1116
+ "endDragVirtual": `Povlačenje. Kliknite da biste prekinuli povlačenje.`,
1117
+ "insertAfter": (args)=>`Umetnite iza stavke ${args.itemText}`
1118
+ ,
1119
+ "insertBefore": (args)=>`Ispustite ispred stavke ${args.itemText}`
1120
+ ,
1121
+ "insertBetween": (args)=>`Umetnite između stavki ${args.beforeItemText} i ${args.afterItemText}`
1122
+ };
717
1123
 
718
1124
 
719
1125
  var $466590c56bee4342$exports = {};
720
- $466590c56bee4342$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Nyomja le az Enter billentyűt a húzás megkezdéséhez.\",\"dragDescriptionTouch\":\"Koppintson duplán a húzás megkezdéséhez.\",\"dragDescriptionVirtual\":\"Kattintson a húzás megkezdéséhez.\",\"dragItem\":\"{itemText} húzása\",\"dragSelectedItems\":\"{count, plural, one {# kijelölt elem} other {# kijelölt elem}} húzása\",\"dragStartedKeyboard\":\"Húzás megkezdve. Nyomja le a Tab billentyűt az elengedési célhoz navigálásához, majd nyomja le az Enter billentyűt az elengedéshez, vagy nyomja le az Escape billentyűt a megszakításhoz.\",\"dragStartedTouch\":\"Húzás megkezdve. Navigáljon egy elengedési célhoz, majd koppintson duplán az elengedéshez.\",\"dragStartedVirtual\":\"Húzás megkezdve. Navigáljon egy elengedési célhoz, majd kattintson vagy nyomja le az Enter billentyűt az elengedéshez.\",\"dropCanceled\":\"Elengedés megszakítva.\",\"dropComplete\":\"Elengedés teljesítve.\",\"dropDescriptionKeyboard\":\"Nyomja le az Enter billentyűt az elengedéshez. Nyomja le az Escape billentyűt a húzás megszakításához.\",\"dropDescriptionTouch\":\"Koppintson duplán az elengedéshez.\",\"dropDescriptionVirtual\":\"Kattintson az elengedéshez.\",\"dropIndicator\":\"elengedésjelző\",\"dropOnItem\":\"Elengedés erre: {itemText}\",\"dropOnRoot\":\"Elengedés erre:\",\"endDragKeyboard\":\"Húzás folyamatban. Nyomja le az Enter billentyűt a húzás megszakításához.\",\"endDragTouch\":\"Húzás folyamatban. Koppintson duplán a húzás megszakításához.\",\"endDragVirtual\":\"Húzás folyamatban. Kattintson a húzás megszakításához.\",\"insertAfter\":\"Beszúrás {itemText} után\",\"insertBefore\":\"Beszúrás {itemText} elé\",\"insertBetween\":\"Beszúrás {beforeItemText} és {afterItemText} közé\"}");
1126
+ $466590c56bee4342$exports = {
1127
+ "dragDescriptionKeyboard": `Nyomja le az Enter billentyűt a húzás megkezdéséhez.`,
1128
+ "dragDescriptionTouch": `Koppintson duplán a húzás megkezdéséhez.`,
1129
+ "dragDescriptionVirtual": `Kattintson a húzás megkezdéséhez.`,
1130
+ "dragItem": (args)=>`${args.itemText} húzása`
1131
+ ,
1132
+ "dragSelectedItems": (args, formatter)=>`${formatter.plural(args.count, {
1133
+ one: ()=>`${formatter.number(args.count)} kijelölt elem`
1134
+ ,
1135
+ other: ()=>`${formatter.number(args.count)} kijelölt elem`
1136
+ })} húzása`
1137
+ ,
1138
+ "dragStartedKeyboard": `Húzás megkezdve. Nyomja le a Tab billentyűt az elengedési célhoz navigálásához, majd nyomja le az Enter billentyűt az elengedéshez, vagy nyomja le az Escape billentyűt a megszakításhoz.`,
1139
+ "dragStartedTouch": `Húzás megkezdve. Navigáljon egy elengedési célhoz, majd koppintson duplán az elengedéshez.`,
1140
+ "dragStartedVirtual": `Húzás megkezdve. Navigáljon egy elengedési célhoz, majd kattintson vagy nyomja le az Enter billentyűt az elengedéshez.`,
1141
+ "dropCanceled": `Elengedés megszakítva.`,
1142
+ "dropComplete": `Elengedés teljesítve.`,
1143
+ "dropDescriptionKeyboard": `Nyomja le az Enter billentyűt az elengedéshez. Nyomja le az Escape billentyűt a húzás megszakításához.`,
1144
+ "dropDescriptionTouch": `Koppintson duplán az elengedéshez.`,
1145
+ "dropDescriptionVirtual": `Kattintson az elengedéshez.`,
1146
+ "dropIndicator": `elengedésjelző`,
1147
+ "dropOnItem": (args)=>`Elengedés erre: ${args.itemText}`
1148
+ ,
1149
+ "dropOnRoot": `Elengedés erre:`,
1150
+ "endDragKeyboard": `Húzás folyamatban. Nyomja le az Enter billentyűt a húzás megszakításához.`,
1151
+ "endDragTouch": `Húzás folyamatban. Koppintson duplán a húzás megszakításához.`,
1152
+ "endDragVirtual": `Húzás folyamatban. Kattintson a húzás megszakításához.`,
1153
+ "insertAfter": (args)=>`Beszúrás ${args.itemText} után`
1154
+ ,
1155
+ "insertBefore": (args)=>`Beszúrás ${args.itemText} elé`
1156
+ ,
1157
+ "insertBetween": (args)=>`Beszúrás ${args.beforeItemText} és ${args.afterItemText} közé`
1158
+ };
721
1159
 
722
1160
 
723
1161
  var $e013896dcb6a6884$exports = {};
724
- $e013896dcb6a6884$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Premi Invio per iniziare a trascinare.\",\"dragDescriptionTouch\":\"Tocca due volte per iniziare a trascinare.\",\"dragDescriptionVirtual\":\"Fai clic per iniziare a trascinare.\",\"dragItem\":\"Trascina {itemText}\",\"dragSelectedItems\":\"Trascina {count, plural, one {# altro elemento selezionato} other {# altri elementi selezionati}}\",\"dragStartedKeyboard\":\"Hai iniziato a trascinare. Premi Tab per arrivare sull’area di destinazione, quindi premi Invio per rilasciare o Esc per annullare.\",\"dragStartedTouch\":\"Hai iniziato a trascinare. Arriva sull’area di destinazione, quindi tocca due volte per rilasciare.\",\"dragStartedVirtual\":\"Hai iniziato a trascinare. Arriva sull’area di destinazione, quindi fai clic o premi Invio per rilasciare.\",\"dropCanceled\":\"Rilascio annullato.\",\"dropComplete\":\"Rilascio completato.\",\"dropDescriptionKeyboard\":\"Premi Invio per rilasciare. Premi Esc per annullare.\",\"dropDescriptionTouch\":\"Tocca due volte per rilasciare.\",\"dropDescriptionVirtual\":\"Fai clic per rilasciare.\",\"dropIndicator\":\"indicatore di rilascio\",\"dropOnItem\":\"Rilascia su {itemText}\",\"dropOnRoot\":\"Rilascia su\",\"endDragKeyboard\":\"Trascinamento. Premi Invio per annullare.\",\"endDragTouch\":\"Trascinamento. Tocca due volte per annullare.\",\"endDragVirtual\":\"Trascinamento. Fai clic per annullare.\",\"insertAfter\":\"Inserisci dopo {itemText}\",\"insertBefore\":\"Inserisci prima di {itemText}\",\"insertBetween\":\"Inserisci tra {beforeItemText} e {afterItemText}\"}");
1162
+ $e013896dcb6a6884$exports = {
1163
+ "dragDescriptionKeyboard": `Premi Invio per iniziare a trascinare.`,
1164
+ "dragDescriptionTouch": `Tocca due volte per iniziare a trascinare.`,
1165
+ "dragDescriptionVirtual": `Fai clic per iniziare a trascinare.`,
1166
+ "dragItem": (args)=>`Trascina ${args.itemText}`
1167
+ ,
1168
+ "dragSelectedItems": (args, formatter)=>`Trascina ${formatter.plural(args.count, {
1169
+ one: ()=>`${formatter.number(args.count)} altro elemento selezionato`
1170
+ ,
1171
+ other: ()=>`${formatter.number(args.count)} altri elementi selezionati`
1172
+ })}`
1173
+ ,
1174
+ "dragStartedKeyboard": `Hai iniziato a trascinare. Premi Tab per arrivare sull’area di destinazione, quindi premi Invio per rilasciare o Esc per annullare.`,
1175
+ "dragStartedTouch": `Hai iniziato a trascinare. Arriva sull’area di destinazione, quindi tocca due volte per rilasciare.`,
1176
+ "dragStartedVirtual": `Hai iniziato a trascinare. Arriva sull’area di destinazione, quindi fai clic o premi Invio per rilasciare.`,
1177
+ "dropCanceled": `Rilascio annullato.`,
1178
+ "dropComplete": `Rilascio completato.`,
1179
+ "dropDescriptionKeyboard": `Premi Invio per rilasciare. Premi Esc per annullare.`,
1180
+ "dropDescriptionTouch": `Tocca due volte per rilasciare.`,
1181
+ "dropDescriptionVirtual": `Fai clic per rilasciare.`,
1182
+ "dropIndicator": `indicatore di rilascio`,
1183
+ "dropOnItem": (args)=>`Rilascia su ${args.itemText}`
1184
+ ,
1185
+ "dropOnRoot": `Rilascia su`,
1186
+ "endDragKeyboard": `Trascinamento. Premi Invio per annullare.`,
1187
+ "endDragTouch": `Trascinamento. Tocca due volte per annullare.`,
1188
+ "endDragVirtual": `Trascinamento. Fai clic per annullare.`,
1189
+ "insertAfter": (args)=>`Inserisci dopo ${args.itemText}`
1190
+ ,
1191
+ "insertBefore": (args)=>`Inserisci prima di ${args.itemText}`
1192
+ ,
1193
+ "insertBetween": (args)=>`Inserisci tra ${args.beforeItemText} e ${args.afterItemText}`
1194
+ };
725
1195
 
726
1196
 
727
1197
  var $d6121e4246c6e502$exports = {};
728
- $d6121e4246c6e502$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Enter キーを押してドラッグを開始してください。\",\"dragDescriptionTouch\":\"ダブルタップしてドラッグを開始します。\",\"dragDescriptionVirtual\":\"クリックしてドラッグを開始します。\",\"dragItem\":\"{itemText} をドラッグ\",\"dragSelectedItems\":\"{count, plural, one {# 個の選択項目} other {# 個の選択項目}} をドラッグ\",\"dragStartedKeyboard\":\"ドラッグを開始します。Tab キーを押してドロップターゲットにいどうし、Enter キーを押してドロップするか、Esc キーを押してキャンセルします。\",\"dragStartedTouch\":\"ドラッグを開始しました。ドロップのターゲットに移動し、ダブルタップしてドロップします。\",\"dragStartedVirtual\":\"ドラッグを開始しました。ドロップのターゲットに移動し、クリックまたは Enter キーを押してドロップします。\",\"dropCanceled\":\"ドロップがキャンセルされました。\",\"dropComplete\":\"ドロップが完了しました。\",\"dropDescriptionKeyboard\":\"Enter キーを押してドロップします。Esc キーを押してドラッグをキャンセルします。\",\"dropDescriptionTouch\":\"ダブルタップしてドロップします。\",\"dropDescriptionVirtual\":\"クリックしてドロップします。\",\"dropIndicator\":\"ドロップインジケーター\",\"dropOnItem\":\"{itemText} にドロップ\",\"dropOnRoot\":\"ドロップ場所\",\"endDragKeyboard\":\"ドラッグしています。Enter キーを押してドラッグをキャンセルします。\",\"endDragTouch\":\"ドラッグしています。ダブルタップしてドラッグをキャンセルします。\",\"endDragVirtual\":\"ドラッグしています。クリックしてドラッグをキャンセルします。\",\"insertAfter\":\"{itemText} の後に挿入\",\"insertBefore\":\"{itemText} の前に挿入\",\"insertBetween\":\"{beforeItemText} と {afterItemText} の間に挿入\"}");
1198
+ $d6121e4246c6e502$exports = {
1199
+ "dragDescriptionKeyboard": `Enter キーを押してドラッグを開始してください。`,
1200
+ "dragDescriptionTouch": `ダブルタップしてドラッグを開始します。`,
1201
+ "dragDescriptionVirtual": `クリックしてドラッグを開始します。`,
1202
+ "dragItem": (args)=>`${args.itemText} をドラッグ`
1203
+ ,
1204
+ "dragSelectedItems": (args, formatter)=>`${formatter.plural(args.count, {
1205
+ one: ()=>`${formatter.number(args.count)} 個の選択項目`
1206
+ ,
1207
+ other: ()=>`${formatter.number(args.count)} 個の選択項目`
1208
+ })} をドラッグ`
1209
+ ,
1210
+ "dragStartedKeyboard": `ドラッグを開始します。Tab キーを押してドロップターゲットにいどうし、Enter キーを押してドロップするか、Esc キーを押してキャンセルします。`,
1211
+ "dragStartedTouch": `ドラッグを開始しました。ドロップのターゲットに移動し、ダブルタップしてドロップします。`,
1212
+ "dragStartedVirtual": `ドラッグを開始しました。ドロップのターゲットに移動し、クリックまたは Enter キーを押してドロップします。`,
1213
+ "dropCanceled": `ドロップがキャンセルされました。`,
1214
+ "dropComplete": `ドロップが完了しました。`,
1215
+ "dropDescriptionKeyboard": `Enter キーを押してドロップします。Esc キーを押してドラッグをキャンセルします。`,
1216
+ "dropDescriptionTouch": `ダブルタップしてドロップします。`,
1217
+ "dropDescriptionVirtual": `クリックしてドロップします。`,
1218
+ "dropIndicator": `ドロップインジケーター`,
1219
+ "dropOnItem": (args)=>`${args.itemText} にドロップ`
1220
+ ,
1221
+ "dropOnRoot": `ドロップ場所`,
1222
+ "endDragKeyboard": `ドラッグしています。Enter キーを押してドラッグをキャンセルします。`,
1223
+ "endDragTouch": `ドラッグしています。ダブルタップしてドラッグをキャンセルします。`,
1224
+ "endDragVirtual": `ドラッグしています。クリックしてドラッグをキャンセルします。`,
1225
+ "insertAfter": (args)=>`${args.itemText} の後に挿入`
1226
+ ,
1227
+ "insertBefore": (args)=>`${args.itemText} の前に挿入`
1228
+ ,
1229
+ "insertBetween": (args)=>`${args.beforeItemText} と ${args.afterItemText} の間に挿入`
1230
+ };
729
1231
 
730
1232
 
731
1233
  var $cf48a963c482dcba$exports = {};
732
- $cf48a963c482dcba$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"드래그를 시작하려면 Enter를 누르세요.\",\"dragDescriptionTouch\":\"드래그를 시작하려면 더블 탭하세요.\",\"dragDescriptionVirtual\":\"드래그를 시작하려면 클릭하세요.\",\"dragItem\":\"{itemText} 드래그\",\"dragSelectedItems\":\"{count, plural, one {#개 선택 항목} other {#개 선택 항목}} 드래그\",\"dragStartedKeyboard\":\"드래그가 시작되었습니다. Tab을 눌러 드롭 대상으로 이동한 다음 Enter를 눌러 드롭하거나 Esc를 눌러 취소하세요.\",\"dragStartedTouch\":\"드래그가 시작되었습니다. 드롭 대상으로 이동한 다음 더블 탭하여 드롭하세요.\",\"dragStartedVirtual\":\"드래그가 시작되었습니다. 드롭 대상으로 이동한 다음 클릭하거나 Enter를 눌러 드롭하세요.\",\"dropCanceled\":\"드롭이 취소되었습니다.\",\"dropComplete\":\"드롭이 완료되었습니다.\",\"dropDescriptionKeyboard\":\"드롭하려면 Enter를 누르세요. 드래그를 취소하려면 Esc를 누르세요.\",\"dropDescriptionTouch\":\"더블 탭하여 드롭하세요.\",\"dropDescriptionVirtual\":\"드롭하려면 클릭하세요.\",\"dropIndicator\":\"드롭 표시기\",\"dropOnItem\":\"{itemText}에 드롭\",\"dropOnRoot\":\"드롭 대상\",\"endDragKeyboard\":\"드래그 중입니다. 드래그를 취소하려면 Enter를 누르세요.\",\"endDragTouch\":\"드래그 중입니다. 드래그를 취소하려면 더블 탭하세요.\",\"endDragVirtual\":\"드래그 중입니다. 드래그를 취소하려면 클릭하세요.\",\"insertAfter\":\"{itemText} 이후에 삽입\",\"insertBefore\":\"{itemText} 이전에 삽입\",\"insertBetween\":\"{beforeItemText} 및 {afterItemText} 사이에 삽입\"}");
1234
+ $cf48a963c482dcba$exports = {
1235
+ "dragDescriptionKeyboard": `드래그를 시작하려면 Enter를 누르세요.`,
1236
+ "dragDescriptionTouch": `드래그를 시작하려면 더블 탭하세요.`,
1237
+ "dragDescriptionVirtual": `드래그를 시작하려면 클릭하세요.`,
1238
+ "dragItem": (args)=>`${args.itemText} 드래그`
1239
+ ,
1240
+ "dragSelectedItems": (args, formatter)=>`${formatter.plural(args.count, {
1241
+ one: ()=>`${formatter.number(args.count)}개 선택 항목`
1242
+ ,
1243
+ other: ()=>`${formatter.number(args.count)}개 선택 항목`
1244
+ })} 드래그`
1245
+ ,
1246
+ "dragStartedKeyboard": `드래그가 시작되었습니다. Tab을 눌러 드롭 대상으로 이동한 다음 Enter를 눌러 드롭하거나 Esc를 눌러 취소하세요.`,
1247
+ "dragStartedTouch": `드래그가 시작되었습니다. 드롭 대상으로 이동한 다음 더블 탭하여 드롭하세요.`,
1248
+ "dragStartedVirtual": `드래그가 시작되었습니다. 드롭 대상으로 이동한 다음 클릭하거나 Enter를 눌러 드롭하세요.`,
1249
+ "dropCanceled": `드롭이 취소되었습니다.`,
1250
+ "dropComplete": `드롭이 완료되었습니다.`,
1251
+ "dropDescriptionKeyboard": `드롭하려면 Enter를 누르세요. 드래그를 취소하려면 Esc를 누르세요.`,
1252
+ "dropDescriptionTouch": `더블 탭하여 드롭하세요.`,
1253
+ "dropDescriptionVirtual": `드롭하려면 클릭하세요.`,
1254
+ "dropIndicator": `드롭 표시기`,
1255
+ "dropOnItem": (args)=>`${args.itemText}에 드롭`
1256
+ ,
1257
+ "dropOnRoot": `드롭 대상`,
1258
+ "endDragKeyboard": `드래그 중입니다. 드래그를 취소하려면 Enter를 누르세요.`,
1259
+ "endDragTouch": `드래그 중입니다. 드래그를 취소하려면 더블 탭하세요.`,
1260
+ "endDragVirtual": `드래그 중입니다. 드래그를 취소하려면 클릭하세요.`,
1261
+ "insertAfter": (args)=>`${args.itemText} 이후에 삽입`
1262
+ ,
1263
+ "insertBefore": (args)=>`${args.itemText} 이전에 삽입`
1264
+ ,
1265
+ "insertBetween": (args)=>`${args.beforeItemText} 및 ${args.afterItemText} 사이에 삽입`
1266
+ };
733
1267
 
734
1268
 
735
1269
  var $b156071f04f1c899$exports = {};
736
- $b156071f04f1c899$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Paspauskite „Enter“, kad pradėtumėte vilkti.\",\"dragDescriptionTouch\":\"Palieskite dukart, kad pradėtumėte vilkti.\",\"dragDescriptionVirtual\":\"Spustelėkite, kad pradėtumėte vilkti.\",\"dragItem\":\"Vilkti {itemText}\",\"dragSelectedItems\":\"Vilkti {count, plural, one {# pasirinktą elementą} other {# pasirinktus elementus}}\",\"dragStartedKeyboard\":\"Pradėta vilkti. Paspauskite „Tab“, kad pereitumėte į tiesioginę paskirties vietą, tada paspauskite „Enter“, kad numestumėte, arba „Escape“, kad atšauktumėte.\",\"dragStartedTouch\":\"Pradėta vilkti. Eikite į tiesioginę paskirties vietą, tada palieskite dukart, kad numestumėte.\",\"dragStartedVirtual\":\"Pradėta vilkti. Eikite į tiesioginę paskirties vietą ir spustelėkite arba paspauskite „Enter“, kad numestumėte.\",\"dropCanceled\":\"Numetimas atšauktas.\",\"dropComplete\":\"Numesta.\",\"dropDescriptionKeyboard\":\"Paspauskite „Enter“, kad numestumėte. Paspauskite „Escape“, kad atšauktumėte vilkimą.\",\"dropDescriptionTouch\":\"Palieskite dukart, kad numestumėte.\",\"dropDescriptionVirtual\":\"Spustelėkite, kad numestumėte.\",\"dropIndicator\":\"numetimo indikatorius\",\"dropOnItem\":\"Numesti ant {itemText}\",\"dropOnRoot\":\"Numesti ant\",\"endDragKeyboard\":\"Velkama. Paspauskite „Enter“, kad atšauktumėte vilkimą.\",\"endDragTouch\":\"Velkama. Spustelėkite dukart, kad atšauktumėte vilkimą.\",\"endDragVirtual\":\"Velkama. Spustelėkite, kad atšauktumėte vilkimą.\",\"insertAfter\":\"Įterpti po {itemText}\",\"insertBefore\":\"Įterpti prieš {itemText}\",\"insertBetween\":\"Įterpti tarp {beforeItemText} ir {afterItemText}\"}");
1270
+ $b156071f04f1c899$exports = {
1271
+ "dragDescriptionKeyboard": `Paspauskite „Enter“, kad pradėtumėte vilkti.`,
1272
+ "dragDescriptionTouch": `Palieskite dukart, kad pradėtumėte vilkti.`,
1273
+ "dragDescriptionVirtual": `Spustelėkite, kad pradėtumėte vilkti.`,
1274
+ "dragItem": (args)=>`Vilkti ${args.itemText}`
1275
+ ,
1276
+ "dragSelectedItems": (args, formatter)=>`Vilkti ${formatter.plural(args.count, {
1277
+ one: ()=>`${formatter.number(args.count)} pasirinktą elementą`
1278
+ ,
1279
+ other: ()=>`${formatter.number(args.count)} pasirinktus elementus`
1280
+ })}`
1281
+ ,
1282
+ "dragStartedKeyboard": `Pradėta vilkti. Paspauskite „Tab“, kad pereitumėte į tiesioginę paskirties vietą, tada paspauskite „Enter“, kad numestumėte, arba „Escape“, kad atšauktumėte.`,
1283
+ "dragStartedTouch": `Pradėta vilkti. Eikite į tiesioginę paskirties vietą, tada palieskite dukart, kad numestumėte.`,
1284
+ "dragStartedVirtual": `Pradėta vilkti. Eikite į tiesioginę paskirties vietą ir spustelėkite arba paspauskite „Enter“, kad numestumėte.`,
1285
+ "dropCanceled": `Numetimas atšauktas.`,
1286
+ "dropComplete": `Numesta.`,
1287
+ "dropDescriptionKeyboard": `Paspauskite „Enter“, kad numestumėte. Paspauskite „Escape“, kad atšauktumėte vilkimą.`,
1288
+ "dropDescriptionTouch": `Palieskite dukart, kad numestumėte.`,
1289
+ "dropDescriptionVirtual": `Spustelėkite, kad numestumėte.`,
1290
+ "dropIndicator": `numetimo indikatorius`,
1291
+ "dropOnItem": (args)=>`Numesti ant ${args.itemText}`
1292
+ ,
1293
+ "dropOnRoot": `Numesti ant`,
1294
+ "endDragKeyboard": `Velkama. Paspauskite „Enter“, kad atšauktumėte vilkimą.`,
1295
+ "endDragTouch": `Velkama. Spustelėkite dukart, kad atšauktumėte vilkimą.`,
1296
+ "endDragVirtual": `Velkama. Spustelėkite, kad atšauktumėte vilkimą.`,
1297
+ "insertAfter": (args)=>`Įterpti po ${args.itemText}`
1298
+ ,
1299
+ "insertBefore": (args)=>`Įterpti prieš ${args.itemText}`
1300
+ ,
1301
+ "insertBetween": (args)=>`Įterpti tarp ${args.beforeItemText} ir ${args.afterItemText}`
1302
+ };
737
1303
 
738
1304
 
739
1305
  var $5300be8ef98d39fa$exports = {};
740
- $5300be8ef98d39fa$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Nospiediet Enter, lai sāktu vilkšanu.\",\"dragDescriptionTouch\":\"Veiciet dubultskārienu, lai sāktu vilkšanu.\",\"dragDescriptionVirtual\":\"Noklikšķiniet, lai sāktu vilkšanu.\",\"dragItem\":\"Velciet {itemText}\",\"dragSelectedItems\":\"Velciet {count, plural, one {# atlasīto vienumu} other {# atlasītos vienumus}}\",\"dragStartedKeyboard\":\"Uzsākta vilkšana. Nospiediet taustiņu Tab, lai pārietu uz nomešanas mērķi, pēc tam nospiediet Enter, lai nomestu, vai nospiediet Escape, lai atceltu.\",\"dragStartedTouch\":\"Uzsākta vilkšana. Pārejiet uz nomešanas mērķi, pēc tam veiciet dubultskārienu, lai nomestu.\",\"dragStartedVirtual\":\"Uzsākta vilkšana. Pārejiet uz nomešanas mērķi, pēc tam nospiediet Enter, lai nomestu.\",\"dropCanceled\":\"Nomešana atcelta.\",\"dropComplete\":\"Nomešana pabeigta.\",\"dropDescriptionKeyboard\":\"Nospiediet Enter, lai nomestu. Nospiediet Escape, lai atceltu vilkšanu.\",\"dropDescriptionTouch\":\"Veiciet dubultskārienu, lai nomestu.\",\"dropDescriptionVirtual\":\"Noklikšķiniet, lai nomestu.\",\"dropIndicator\":\"nomešanas indikators\",\"dropOnItem\":\"Nometiet uz {itemText}\",\"dropOnRoot\":\"Nometiet uz\",\"endDragKeyboard\":\"Notiek vilkšana. Nospiediet Enter, lai atceltu vilkšanu.\",\"endDragTouch\":\"Notiek vilkšana. Veiciet dubultskārienu, lai atceltu vilkšanu.\",\"endDragVirtual\":\"Notiek vilkšana. Noklikšķiniet, lai atceltu vilkšanu.\",\"insertAfter\":\"Ievietojiet pēc {itemText}\",\"insertBefore\":\"Ievietojiet pirms {itemText}\",\"insertBetween\":\"Ievietojiet starp {beforeItemText} un {afterItemText}\"}");
1306
+ $5300be8ef98d39fa$exports = {
1307
+ "dragDescriptionKeyboard": `Nospiediet Enter, lai sāktu vilkšanu.`,
1308
+ "dragDescriptionTouch": `Veiciet dubultskārienu, lai sāktu vilkšanu.`,
1309
+ "dragDescriptionVirtual": `Noklikšķiniet, lai sāktu vilkšanu.`,
1310
+ "dragItem": (args)=>`Velciet ${args.itemText}`
1311
+ ,
1312
+ "dragSelectedItems": (args, formatter)=>`Velciet ${formatter.plural(args.count, {
1313
+ one: ()=>`${formatter.number(args.count)} atlasīto vienumu`
1314
+ ,
1315
+ other: ()=>`${formatter.number(args.count)} atlasītos vienumus`
1316
+ })}`
1317
+ ,
1318
+ "dragStartedKeyboard": `Uzsākta vilkšana. Nospiediet taustiņu Tab, lai pārietu uz nomešanas mērķi, pēc tam nospiediet Enter, lai nomestu, vai nospiediet Escape, lai atceltu.`,
1319
+ "dragStartedTouch": `Uzsākta vilkšana. Pārejiet uz nomešanas mērķi, pēc tam veiciet dubultskārienu, lai nomestu.`,
1320
+ "dragStartedVirtual": `Uzsākta vilkšana. Pārejiet uz nomešanas mērķi, pēc tam nospiediet Enter, lai nomestu.`,
1321
+ "dropCanceled": `Nomešana atcelta.`,
1322
+ "dropComplete": `Nomešana pabeigta.`,
1323
+ "dropDescriptionKeyboard": `Nospiediet Enter, lai nomestu. Nospiediet Escape, lai atceltu vilkšanu.`,
1324
+ "dropDescriptionTouch": `Veiciet dubultskārienu, lai nomestu.`,
1325
+ "dropDescriptionVirtual": `Noklikšķiniet, lai nomestu.`,
1326
+ "dropIndicator": `nomešanas indikators`,
1327
+ "dropOnItem": (args)=>`Nometiet uz ${args.itemText}`
1328
+ ,
1329
+ "dropOnRoot": `Nometiet uz`,
1330
+ "endDragKeyboard": `Notiek vilkšana. Nospiediet Enter, lai atceltu vilkšanu.`,
1331
+ "endDragTouch": `Notiek vilkšana. Veiciet dubultskārienu, lai atceltu vilkšanu.`,
1332
+ "endDragVirtual": `Notiek vilkšana. Noklikšķiniet, lai atceltu vilkšanu.`,
1333
+ "insertAfter": (args)=>`Ievietojiet pēc ${args.itemText}`
1334
+ ,
1335
+ "insertBefore": (args)=>`Ievietojiet pirms ${args.itemText}`
1336
+ ,
1337
+ "insertBetween": (args)=>`Ievietojiet starp ${args.beforeItemText} un ${args.afterItemText}`
1338
+ };
741
1339
 
742
1340
 
743
1341
  var $7484477aad199932$exports = {};
744
- $7484477aad199932$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Trykk på Enter for å begynne å dra.\",\"dragDescriptionTouch\":\"Dobbelttrykk for å begynne å dra.\",\"dragDescriptionVirtual\":\"Klikk for å begynne å dra.\",\"dragItem\":\"Dra {itemText}\",\"dragSelectedItems\":\"Dra {count, plural, one {# merket element} other {# merkede elementer}}\",\"dragStartedKeyboard\":\"Begynte å dra. Trykk på Tab for å navigere til et mål, og trykk deretter på Enter for å slippe eller på Esc for å avbryte.\",\"dragStartedTouch\":\"Begynte å dra. Naviger til et mål, og dobbelttrykk for å slippe.\",\"dragStartedVirtual\":\"Begynte å dra. Naviger til et mål, og klikk eller trykk på Enter for å slippe.\",\"dropCanceled\":\"Avbrøt slipping.\",\"dropComplete\":\"Slippingen er fullført.\",\"dropDescriptionKeyboard\":\"Trykk på Enter for å slippe. Trykk på Esc hvis du vil avbryte draingen.\",\"dropDescriptionTouch\":\"Dobbelttrykk for å slippe.\",\"dropDescriptionVirtual\":\"Klikk for å slippe.\",\"dropIndicator\":\"slippeindikator\",\"dropOnItem\":\"Slipp på {itemText}\",\"dropOnRoot\":\"Slipp på\",\"endDragKeyboard\":\"Drar. Trykk på Enter hvis du vil avbryte.\",\"endDragTouch\":\"Drar. Dobbelttrykk hvis du vil avbryte.\",\"endDragVirtual\":\"Drar. Klikk hvis du vil avbryte.\",\"insertAfter\":\"Sett inn etter {itemText}\",\"insertBefore\":\"Sett inn før {itemText}\",\"insertBetween\":\"Sett inn mellom {beforeItemText} og {afterItemText}\"}");
1342
+ $7484477aad199932$exports = {
1343
+ "dragDescriptionKeyboard": `Trykk på Enter for å begynne å dra.`,
1344
+ "dragDescriptionTouch": `Dobbelttrykk for å begynne å dra.`,
1345
+ "dragDescriptionVirtual": `Klikk for å begynne å dra.`,
1346
+ "dragItem": (args)=>`Dra ${args.itemText}`
1347
+ ,
1348
+ "dragSelectedItems": (args, formatter)=>`Dra ${formatter.plural(args.count, {
1349
+ one: ()=>`${formatter.number(args.count)} merket element`
1350
+ ,
1351
+ other: ()=>`${formatter.number(args.count)} merkede elementer`
1352
+ })}`
1353
+ ,
1354
+ "dragStartedKeyboard": `Begynte å dra. Trykk på Tab for å navigere til et mål, og trykk deretter på Enter for å slippe eller på Esc for å avbryte.`,
1355
+ "dragStartedTouch": `Begynte å dra. Naviger til et mål, og dobbelttrykk for å slippe.`,
1356
+ "dragStartedVirtual": `Begynte å dra. Naviger til et mål, og klikk eller trykk på Enter for å slippe.`,
1357
+ "dropCanceled": `Avbrøt slipping.`,
1358
+ "dropComplete": `Slippingen er fullført.`,
1359
+ "dropDescriptionKeyboard": `Trykk på Enter for å slippe. Trykk på Esc hvis du vil avbryte draingen.`,
1360
+ "dropDescriptionTouch": `Dobbelttrykk for å slippe.`,
1361
+ "dropDescriptionVirtual": `Klikk for å slippe.`,
1362
+ "dropIndicator": `slippeindikator`,
1363
+ "dropOnItem": (args)=>`Slipp på ${args.itemText}`
1364
+ ,
1365
+ "dropOnRoot": `Slipp på`,
1366
+ "endDragKeyboard": `Drar. Trykk på Enter hvis du vil avbryte.`,
1367
+ "endDragTouch": `Drar. Dobbelttrykk hvis du vil avbryte.`,
1368
+ "endDragVirtual": `Drar. Klikk hvis du vil avbryte.`,
1369
+ "insertAfter": (args)=>`Sett inn etter ${args.itemText}`
1370
+ ,
1371
+ "insertBefore": (args)=>`Sett inn før ${args.itemText}`
1372
+ ,
1373
+ "insertBetween": (args)=>`Sett inn mellom ${args.beforeItemText} og ${args.afterItemText}`
1374
+ };
745
1375
 
746
1376
 
747
1377
  var $968e09cb41d6cd76$exports = {};
748
- $968e09cb41d6cd76$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Druk op Enter om te slepen.\",\"dragDescriptionTouch\":\"Dubbeltik om te slepen.\",\"dragDescriptionVirtual\":\"Klik om met slepen te starten.\",\"dragItem\":\"{itemText} slepen\",\"dragSelectedItems\":\"{count, plural, one {# geselecteerd item} other {# geselecteerde items}} slepen\",\"dragStartedKeyboard\":\"Begonnen met slepen. Druk op Tab om naar een locatie te gaan. Druk dan op Enter om neer te zetten, of op Esc om te annuleren.\",\"dragStartedTouch\":\"Begonnen met slepen. Ga naar de gewenste locatie en dubbeltik om neer te zetten.\",\"dragStartedVirtual\":\"Begonnen met slepen. Ga naar de gewenste locatie en klik of druk op Enter om neer te zetten.\",\"dropCanceled\":\"Neerzetten geannuleerd.\",\"dropComplete\":\"Neerzetten voltooid.\",\"dropDescriptionKeyboard\":\"Druk op Enter om neer te zetten. Druk op Esc om het slepen te annuleren.\",\"dropDescriptionTouch\":\"Dubbeltik om neer te zetten.\",\"dropDescriptionVirtual\":\"Klik om neer te zetten.\",\"dropIndicator\":\"aanwijzer voor neerzetten\",\"dropOnItem\":\"Neerzetten op {itemText}\",\"dropOnRoot\":\"Neerzetten op\",\"endDragKeyboard\":\"Bezig met slepen. Druk op Enter om te annuleren.\",\"endDragTouch\":\"Bezig met slepen. Dubbeltik om te annuleren.\",\"endDragVirtual\":\"Bezig met slepen. Klik om te annuleren.\",\"insertAfter\":\"Plaatsen na {itemText}\",\"insertBefore\":\"Plaatsen vóór {itemText}\",\"insertBetween\":\"Plaatsen tussen {beforeItemText} en {afterItemText}\"}");
1378
+ $968e09cb41d6cd76$exports = {
1379
+ "dragDescriptionKeyboard": `Druk op Enter om te slepen.`,
1380
+ "dragDescriptionTouch": `Dubbeltik om te slepen.`,
1381
+ "dragDescriptionVirtual": `Klik om met slepen te starten.`,
1382
+ "dragItem": (args)=>`${args.itemText} slepen`
1383
+ ,
1384
+ "dragSelectedItems": (args, formatter)=>`${formatter.plural(args.count, {
1385
+ one: ()=>`${formatter.number(args.count)} geselecteerd item`
1386
+ ,
1387
+ other: ()=>`${formatter.number(args.count)} geselecteerde items`
1388
+ })} slepen`
1389
+ ,
1390
+ "dragStartedKeyboard": `Begonnen met slepen. Druk op Tab om naar een locatie te gaan. Druk dan op Enter om neer te zetten, of op Esc om te annuleren.`,
1391
+ "dragStartedTouch": `Begonnen met slepen. Ga naar de gewenste locatie en dubbeltik om neer te zetten.`,
1392
+ "dragStartedVirtual": `Begonnen met slepen. Ga naar de gewenste locatie en klik of druk op Enter om neer te zetten.`,
1393
+ "dropCanceled": `Neerzetten geannuleerd.`,
1394
+ "dropComplete": `Neerzetten voltooid.`,
1395
+ "dropDescriptionKeyboard": `Druk op Enter om neer te zetten. Druk op Esc om het slepen te annuleren.`,
1396
+ "dropDescriptionTouch": `Dubbeltik om neer te zetten.`,
1397
+ "dropDescriptionVirtual": `Klik om neer te zetten.`,
1398
+ "dropIndicator": `aanwijzer voor neerzetten`,
1399
+ "dropOnItem": (args)=>`Neerzetten op ${args.itemText}`
1400
+ ,
1401
+ "dropOnRoot": `Neerzetten op`,
1402
+ "endDragKeyboard": `Bezig met slepen. Druk op Enter om te annuleren.`,
1403
+ "endDragTouch": `Bezig met slepen. Dubbeltik om te annuleren.`,
1404
+ "endDragVirtual": `Bezig met slepen. Klik om te annuleren.`,
1405
+ "insertAfter": (args)=>`Plaatsen na ${args.itemText}`
1406
+ ,
1407
+ "insertBefore": (args)=>`Plaatsen vóór ${args.itemText}`
1408
+ ,
1409
+ "insertBetween": (args)=>`Plaatsen tussen ${args.beforeItemText} en ${args.afterItemText}`
1410
+ };
749
1411
 
750
1412
 
751
1413
  var $0c2c6c954dd638d7$exports = {};
752
- $0c2c6c954dd638d7$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Naciśnij Enter, aby rozpocząć przeciąganie.\",\"dragDescriptionTouch\":\"Dotknij dwukrotnie, aby rozpocząć przeciąganie.\",\"dragDescriptionVirtual\":\"Kliknij, aby rozpocząć przeciąganie.\",\"dragItem\":\"Przeciągnij {itemText}\",\"dragSelectedItems\":\"Przeciągnij {count, plural, one {# wybrany element} other {# wybranych elementów}}\",\"dragStartedKeyboard\":\"Rozpoczęto przeciąganie. Naciśnij Tab, aby wybrać miejsce docelowe, a następnie naciśnij Enter, aby upuścić, lub Escape, aby anulować.\",\"dragStartedTouch\":\"Rozpoczęto przeciąganie. Wybierz miejsce, w którym chcesz upuścić element, a następnie dotknij dwukrotnie, aby upuścić.F\",\"dragStartedVirtual\":\"Rozpoczęto przeciąganie. Wybierz miejsce, w którym chcesz upuścić element, a następnie kliknij lub naciśnij Enter, aby upuścić.\",\"dropCanceled\":\"Anulowano upuszczenie.\",\"dropComplete\":\"Zakończono upuszczanie.\",\"dropDescriptionKeyboard\":\"Naciśnij Enter, aby upuścić. Naciśnij Escape, aby anulować przeciągnięcie.\",\"dropDescriptionTouch\":\"Dotknij dwukrotnie, aby upuścić.\",\"dropDescriptionVirtual\":\"Kliknij, aby upuścić.\",\"dropIndicator\":\"wskaźnik upuszczenia\",\"dropOnItem\":\"Upuść na {itemText}\",\"dropOnRoot\":\"Upuść\",\"endDragKeyboard\":\"Przeciąganie. Naciśnij Enter, aby anulować przeciągnięcie.\",\"endDragTouch\":\"Przeciąganie. Kliknij dwukrotnie, aby anulować przeciągnięcie.\",\"endDragVirtual\":\"Przeciąganie. Kliknij, aby anulować przeciąganie.\",\"insertAfter\":\"Umieść za {itemText}\",\"insertBefore\":\"Umieść przed {itemText}\",\"insertBetween\":\"Umieść między {beforeItemText} i {afterItemText}\"}");
1414
+ $0c2c6c954dd638d7$exports = {
1415
+ "dragDescriptionKeyboard": `Naciśnij Enter, aby rozpocząć przeciąganie.`,
1416
+ "dragDescriptionTouch": `Dotknij dwukrotnie, aby rozpocząć przeciąganie.`,
1417
+ "dragDescriptionVirtual": `Kliknij, aby rozpocząć przeciąganie.`,
1418
+ "dragItem": (args)=>`Przeciągnij ${args.itemText}`
1419
+ ,
1420
+ "dragSelectedItems": (args, formatter)=>`Przeciągnij ${formatter.plural(args.count, {
1421
+ one: ()=>`${formatter.number(args.count)} wybrany element`
1422
+ ,
1423
+ other: ()=>`${formatter.number(args.count)} wybranych elementów`
1424
+ })}`
1425
+ ,
1426
+ "dragStartedKeyboard": `Rozpoczęto przeciąganie. Naciśnij Tab, aby wybrać miejsce docelowe, a następnie naciśnij Enter, aby upuścić, lub Escape, aby anulować.`,
1427
+ "dragStartedTouch": `Rozpoczęto przeciąganie. Wybierz miejsce, w którym chcesz upuścić element, a następnie dotknij dwukrotnie, aby upuścić.F`,
1428
+ "dragStartedVirtual": `Rozpoczęto przeciąganie. Wybierz miejsce, w którym chcesz upuścić element, a następnie kliknij lub naciśnij Enter, aby upuścić.`,
1429
+ "dropCanceled": `Anulowano upuszczenie.`,
1430
+ "dropComplete": `Zakończono upuszczanie.`,
1431
+ "dropDescriptionKeyboard": `Naciśnij Enter, aby upuścić. Naciśnij Escape, aby anulować przeciągnięcie.`,
1432
+ "dropDescriptionTouch": `Dotknij dwukrotnie, aby upuścić.`,
1433
+ "dropDescriptionVirtual": `Kliknij, aby upuścić.`,
1434
+ "dropIndicator": `wskaźnik upuszczenia`,
1435
+ "dropOnItem": (args)=>`Upuść na ${args.itemText}`
1436
+ ,
1437
+ "dropOnRoot": `Upuść`,
1438
+ "endDragKeyboard": `Przeciąganie. Naciśnij Enter, aby anulować przeciągnięcie.`,
1439
+ "endDragTouch": `Przeciąganie. Kliknij dwukrotnie, aby anulować przeciągnięcie.`,
1440
+ "endDragVirtual": `Przeciąganie. Kliknij, aby anulować przeciąganie.`,
1441
+ "insertAfter": (args)=>`Umieść za ${args.itemText}`
1442
+ ,
1443
+ "insertBefore": (args)=>`Umieść przed ${args.itemText}`
1444
+ ,
1445
+ "insertBetween": (args)=>`Umieść między ${args.beforeItemText} i ${args.afterItemText}`
1446
+ };
753
1447
 
754
1448
 
755
1449
  var $db510f249c1f2e00$exports = {};
756
- $db510f249c1f2e00$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Pressione Enter para começar a arrastar.\",\"dragDescriptionTouch\":\"Toque duas vezes para começar a arrastar.\",\"dragDescriptionVirtual\":\"Clique para começar a arrastar.\",\"dragItem\":\"Arrastar {itemText}\",\"dragSelectedItems\":\"Arrastar {count, plural, one {# item selecionado} other {# itens selecionados}}\",\"dragStartedKeyboard\":\"Comece a arrastar. Pressione Tab para navegar até um alvo e, em seguida, pressione Enter para soltar ou pressione Escape para cancelar.\",\"dragStartedTouch\":\"Comece a arrastar. Navegue até um alvo e toque duas vezes para soltar.\",\"dragStartedVirtual\":\"Comece a arrastar. Navegue até um alvo e clique ou pressione Enter para soltar.\",\"dropCanceled\":\"Liberação cancelada.\",\"dropComplete\":\"Liberação concluída.\",\"dropDescriptionKeyboard\":\"Pressione Enter para soltar. Pressione Escape para cancelar.\",\"dropDescriptionTouch\":\"Toque duas vezes para soltar.\",\"dropDescriptionVirtual\":\"Clique para soltar.\",\"dropIndicator\":\"indicador de liberação\",\"dropOnItem\":\"Soltar em {itemText}\",\"dropOnRoot\":\"Soltar\",\"endDragKeyboard\":\"Arrastando. Pressione Enter para cancelar.\",\"endDragTouch\":\"Arrastando. Toque duas vezes para cancelar.\",\"endDragVirtual\":\"Arrastando. Clique para cancelar.\",\"insertAfter\":\"Inserir após {itemText}\",\"insertBefore\":\"Inserir antes de {itemText}\",\"insertBetween\":\"Inserir entre {beforeItemText} e {afterItemText}\"}");
1450
+ $db510f249c1f2e00$exports = {
1451
+ "dragDescriptionKeyboard": `Pressione Enter para começar a arrastar.`,
1452
+ "dragDescriptionTouch": `Toque duas vezes para começar a arrastar.`,
1453
+ "dragDescriptionVirtual": `Clique para começar a arrastar.`,
1454
+ "dragItem": (args)=>`Arrastar ${args.itemText}`
1455
+ ,
1456
+ "dragSelectedItems": (args, formatter)=>`Arrastar ${formatter.plural(args.count, {
1457
+ one: ()=>`${formatter.number(args.count)} item selecionado`
1458
+ ,
1459
+ other: ()=>`${formatter.number(args.count)} itens selecionados`
1460
+ })}`
1461
+ ,
1462
+ "dragStartedKeyboard": `Comece a arrastar. Pressione Tab para navegar até um alvo e, em seguida, pressione Enter para soltar ou pressione Escape para cancelar.`,
1463
+ "dragStartedTouch": `Comece a arrastar. Navegue até um alvo e toque duas vezes para soltar.`,
1464
+ "dragStartedVirtual": `Comece a arrastar. Navegue até um alvo e clique ou pressione Enter para soltar.`,
1465
+ "dropCanceled": `Liberação cancelada.`,
1466
+ "dropComplete": `Liberação concluída.`,
1467
+ "dropDescriptionKeyboard": `Pressione Enter para soltar. Pressione Escape para cancelar.`,
1468
+ "dropDescriptionTouch": `Toque duas vezes para soltar.`,
1469
+ "dropDescriptionVirtual": `Clique para soltar.`,
1470
+ "dropIndicator": `indicador de liberação`,
1471
+ "dropOnItem": (args)=>`Soltar em ${args.itemText}`
1472
+ ,
1473
+ "dropOnRoot": `Soltar`,
1474
+ "endDragKeyboard": `Arrastando. Pressione Enter para cancelar.`,
1475
+ "endDragTouch": `Arrastando. Toque duas vezes para cancelar.`,
1476
+ "endDragVirtual": `Arrastando. Clique para cancelar.`,
1477
+ "insertAfter": (args)=>`Inserir após ${args.itemText}`
1478
+ ,
1479
+ "insertBefore": (args)=>`Inserir antes de ${args.itemText}`
1480
+ ,
1481
+ "insertBetween": (args)=>`Inserir entre ${args.beforeItemText} e ${args.afterItemText}`
1482
+ };
757
1483
 
758
1484
 
759
1485
  var $d734686296d37387$exports = {};
760
- $d734686296d37387$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Prima Enter para iniciar o arrasto.\",\"dragDescriptionTouch\":\"Faça duplo toque para começar a arrastar.\",\"dragDescriptionVirtual\":\"Clique para iniciar o arrasto.\",\"dragItem\":\"Arrastar {itemText}\",\"dragSelectedItems\":\"Arrastar {count, plural, one {# item selecionado} outro {# itens selecionados}}\",\"dragStartedKeyboard\":\"Arrasto iniciado. Prima a tecla de tabulação para navegar para um destino para largar, e em seguida prima Enter para largar ou prima Escape para cancelar.\",\"dragStartedTouch\":\"Arrasto iniciado. Navegue para um destino para largar, e em seguida faça duplo toque para largar.\",\"dragStartedVirtual\":\"Arrasto iniciado. Navegue para um destino para largar, e em seguida clique ou prima Enter para largar.\",\"dropCanceled\":\"Largar cancelado.\",\"dropComplete\":\"Largar completo.\",\"dropDescriptionKeyboard\":\"Prima Enter para largar. Prima Escape para cancelar o arrasto.\",\"dropDescriptionTouch\":\"Faça duplo toque para largar.\",\"dropDescriptionVirtual\":\"Clique para largar.\",\"dropIndicator\":\"Indicador de largar\",\"dropOnItem\":\"Largar em {itemText}\",\"dropOnRoot\":\"Largar em\",\"endDragKeyboard\":\"A arrastar. Prima Enter para cancelar o arrasto.\",\"endDragTouch\":\"A arrastar. Faça duplo toque para cancelar o arrasto.\",\"endDragVirtual\":\"A arrastar. Clique para cancelar o arrasto.\",\"insertAfter\":\"Inserir depois de {itemText}\",\"insertBefore\":\"Inserir antes de {itemText}\",\"insertBetween\":\"Inserir entre {beforeItemText} e {afterItemText}\"}");
1486
+ $d734686296d37387$exports = {
1487
+ "dragDescriptionKeyboard": `Prima Enter para iniciar o arrasto.`,
1488
+ "dragDescriptionTouch": `Faça duplo toque para começar a arrastar.`,
1489
+ "dragDescriptionVirtual": `Clique para iniciar o arrasto.`,
1490
+ "dragItem": (args)=>`Arrastar ${args.itemText}`
1491
+ ,
1492
+ "dragSelectedItems": (args, formatter)=>`Arrastar ${formatter.plural(args.count, {
1493
+ one: ()=>`${formatter.number(args.count)} item selecionado`
1494
+ ,
1495
+ other: ()=>`${formatter.number(args.count)} itens selecionados`
1496
+ })}`
1497
+ ,
1498
+ "dragStartedKeyboard": `Arrasto iniciado. Prima a tecla de tabulação para navegar para um destino para largar, e em seguida prima Enter para largar ou prima Escape para cancelar.`,
1499
+ "dragStartedTouch": `Arrasto iniciado. Navegue para um destino para largar, e em seguida faça duplo toque para largar.`,
1500
+ "dragStartedVirtual": `Arrasto iniciado. Navegue para um destino para largar, e em seguida clique ou prima Enter para largar.`,
1501
+ "dropCanceled": `Largar cancelado.`,
1502
+ "dropComplete": `Largar completo.`,
1503
+ "dropDescriptionKeyboard": `Prima Enter para largar. Prima Escape para cancelar o arrasto.`,
1504
+ "dropDescriptionTouch": `Faça duplo toque para largar.`,
1505
+ "dropDescriptionVirtual": `Clique para largar.`,
1506
+ "dropIndicator": `Indicador de largar`,
1507
+ "dropOnItem": (args)=>`Largar em ${args.itemText}`
1508
+ ,
1509
+ "dropOnRoot": `Largar em`,
1510
+ "endDragKeyboard": `A arrastar. Prima Enter para cancelar o arrasto.`,
1511
+ "endDragTouch": `A arrastar. Faça duplo toque para cancelar o arrasto.`,
1512
+ "endDragVirtual": `A arrastar. Clique para cancelar o arrasto.`,
1513
+ "insertAfter": (args)=>`Inserir depois de ${args.itemText}`
1514
+ ,
1515
+ "insertBefore": (args)=>`Inserir antes de ${args.itemText}`
1516
+ ,
1517
+ "insertBetween": (args)=>`Inserir entre ${args.beforeItemText} e ${args.afterItemText}`
1518
+ };
761
1519
 
762
1520
 
763
1521
  var $d239d4998a584a23$exports = {};
764
- $d239d4998a584a23$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Apăsați pe Enter pentru a începe glisarea.\",\"dragDescriptionTouch\":\"Atingeți de două ori pentru a începe să glisați.\",\"dragDescriptionVirtual\":\"Faceți clic pentru a începe glisarea.\",\"dragItem\":\"Glisați {itemText}\",\"dragSelectedItems\":\"Glisați {count, plural, one {# element selectat} other {# elemente selectate}}\",\"dragStartedKeyboard\":\"A început glisarea. Apăsați pe Tab pentru a naviga la o țintă de fixare, apoi apăsați pe Enter pentru a fixa sau apăsați pe Escape pentru a anula glisarea.\",\"dragStartedTouch\":\"A început glisarea. Navigați la o țintă de fixare, apoi atingeți de două ori pentru a fixa.\",\"dragStartedVirtual\":\"A început glisarea. Navigați la o țintă de fixare, apoi faceți clic sau apăsați pe Enter pentru a fixa.\",\"dropCanceled\":\"Fixare anulată.\",\"dropComplete\":\"Fixare finalizată.\",\"dropDescriptionKeyboard\":\"Apăsați pe Enter pentru a fixa. Apăsați pe Escape pentru a anula glisarea.\",\"dropDescriptionTouch\":\"Atingeți de două ori pentru a fixa.\",\"dropDescriptionVirtual\":\"Faceți clic pentru a fixa.\",\"dropIndicator\":\"indicator de fixare\",\"dropOnItem\":\"Fixați pe {itemText}\",\"dropOnRoot\":\"Fixare pe\",\"endDragKeyboard\":\"Se glisează. Apăsați pe Enter pentru a anula glisarea.\",\"endDragTouch\":\"Se glisează. Atingeți de două ori pentru a anula glisarea.\",\"endDragVirtual\":\"Se glisează. Faceți clic pentru a anula glisarea.\",\"insertAfter\":\"Inserați după {itemText}\",\"insertBefore\":\"Inserați înainte de {itemText}\",\"insertBetween\":\"Inserați între {beforeItemText} și {afterItemText}\"}");
1522
+ $d239d4998a584a23$exports = {
1523
+ "dragDescriptionKeyboard": `Apăsați pe Enter pentru a începe glisarea.`,
1524
+ "dragDescriptionTouch": `Atingeți de două ori pentru a începe să glisați.`,
1525
+ "dragDescriptionVirtual": `Faceți clic pentru a începe glisarea.`,
1526
+ "dragItem": (args)=>`Glisați ${args.itemText}`
1527
+ ,
1528
+ "dragSelectedItems": (args, formatter)=>`Glisați ${formatter.plural(args.count, {
1529
+ one: ()=>`${formatter.number(args.count)} element selectat`
1530
+ ,
1531
+ other: ()=>`${formatter.number(args.count)} elemente selectate`
1532
+ })}`
1533
+ ,
1534
+ "dragStartedKeyboard": `A început glisarea. Apăsați pe Tab pentru a naviga la o țintă de fixare, apoi apăsați pe Enter pentru a fixa sau apăsați pe Escape pentru a anula glisarea.`,
1535
+ "dragStartedTouch": `A început glisarea. Navigați la o țintă de fixare, apoi atingeți de două ori pentru a fixa.`,
1536
+ "dragStartedVirtual": `A început glisarea. Navigați la o țintă de fixare, apoi faceți clic sau apăsați pe Enter pentru a fixa.`,
1537
+ "dropCanceled": `Fixare anulată.`,
1538
+ "dropComplete": `Fixare finalizată.`,
1539
+ "dropDescriptionKeyboard": `Apăsați pe Enter pentru a fixa. Apăsați pe Escape pentru a anula glisarea.`,
1540
+ "dropDescriptionTouch": `Atingeți de două ori pentru a fixa.`,
1541
+ "dropDescriptionVirtual": `Faceți clic pentru a fixa.`,
1542
+ "dropIndicator": `indicator de fixare`,
1543
+ "dropOnItem": (args)=>`Fixați pe ${args.itemText}`
1544
+ ,
1545
+ "dropOnRoot": `Fixare pe`,
1546
+ "endDragKeyboard": `Se glisează. Apăsați pe Enter pentru a anula glisarea.`,
1547
+ "endDragTouch": `Se glisează. Atingeți de două ori pentru a anula glisarea.`,
1548
+ "endDragVirtual": `Se glisează. Faceți clic pentru a anula glisarea.`,
1549
+ "insertAfter": (args)=>`Inserați după ${args.itemText}`
1550
+ ,
1551
+ "insertBefore": (args)=>`Inserați înainte de ${args.itemText}`
1552
+ ,
1553
+ "insertBetween": (args)=>`Inserați între ${args.beforeItemText} și ${args.afterItemText}`
1554
+ };
765
1555
 
766
1556
 
767
1557
  var $a06126b47eabe64f$exports = {};
768
- $a06126b47eabe64f$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Нажмите клавишу Enter для начала перетаскивания.\",\"dragDescriptionTouch\":\"Дважды нажмите для начала перетаскивания.\",\"dragDescriptionVirtual\":\"Щелкните для начала перетаскивания.\",\"dragItem\":\"Перетащить {itemText}\",\"dragSelectedItems\":\"Перетащить {count, plural, one {# выбранный элемент} other {# выбранных элем}}\",\"dragStartedKeyboard\":\"Начато перетаскивание. Нажмите клавишу Tab для выбора цели, затем нажмите клавишу Enter, чтобы применить перетаскивание, или клавишу Escape для отмены действия.\",\"dragStartedTouch\":\"Начато перетаскивание. Выберите цель, затем дважды нажмите, чтобы применить перетаскивание.\",\"dragStartedVirtual\":\"Начато перетаскивание. Нажмите клавишу Tab для выбора цели, затем нажмите клавишу Enter, чтобы применить перетаскивание.\",\"dropCanceled\":\"Перетаскивание отменено.\",\"dropComplete\":\"Перетаскивание завершено.\",\"dropDescriptionKeyboard\":\"Нажмите клавишу Enter, чтобы применить перетаскивание. Нажмите клавишу Escape для отмены.\",\"dropDescriptionTouch\":\"Дважды нажмите, чтобы применить перетаскивание.\",\"dropDescriptionVirtual\":\"Щелкните, чтобы применить перетаскивание.\",\"dropIndicator\":\"индикатор перетаскивания\",\"dropOnItem\":\"Перетащить на {itemText}\",\"dropOnRoot\":\"Перетащить на\",\"endDragKeyboard\":\"Перетаскивание. Нажмите клавишу Enter для отмены.\",\"endDragTouch\":\"Перетаскивание. Дважды нажмите для отмены.\",\"endDragVirtual\":\"Перетаскивание. Щелкните для отмены.\",\"insertAfter\":\"Вставить после {itemText}\",\"insertBefore\":\"Вставить перед {itemText}\",\"insertBetween\":\"Вставить между {beforeItemText} и {afterItemText}\"}");
1558
+ $a06126b47eabe64f$exports = {
1559
+ "dragDescriptionKeyboard": `Нажмите клавишу Enter для начала перетаскивания.`,
1560
+ "dragDescriptionTouch": `Дважды нажмите для начала перетаскивания.`,
1561
+ "dragDescriptionVirtual": `Щелкните для начала перетаскивания.`,
1562
+ "dragItem": (args)=>`Перетащить ${args.itemText}`
1563
+ ,
1564
+ "dragSelectedItems": (args, formatter)=>`Перетащить ${formatter.plural(args.count, {
1565
+ one: ()=>`${formatter.number(args.count)} выбранный элемент`
1566
+ ,
1567
+ other: ()=>`${formatter.number(args.count)} выбранных элем`
1568
+ })}`
1569
+ ,
1570
+ "dragStartedKeyboard": `Начато перетаскивание. Нажмите клавишу Tab для выбора цели, затем нажмите клавишу Enter, чтобы применить перетаскивание, или клавишу Escape для отмены действия.`,
1571
+ "dragStartedTouch": `Начато перетаскивание. Выберите цель, затем дважды нажмите, чтобы применить перетаскивание.`,
1572
+ "dragStartedVirtual": `Начато перетаскивание. Нажмите клавишу Tab для выбора цели, затем нажмите клавишу Enter, чтобы применить перетаскивание.`,
1573
+ "dropCanceled": `Перетаскивание отменено.`,
1574
+ "dropComplete": `Перетаскивание завершено.`,
1575
+ "dropDescriptionKeyboard": `Нажмите клавишу Enter, чтобы применить перетаскивание. Нажмите клавишу Escape для отмены.`,
1576
+ "dropDescriptionTouch": `Дважды нажмите, чтобы применить перетаскивание.`,
1577
+ "dropDescriptionVirtual": `Щелкните, чтобы применить перетаскивание.`,
1578
+ "dropIndicator": `индикатор перетаскивания`,
1579
+ "dropOnItem": (args)=>`Перетащить на ${args.itemText}`
1580
+ ,
1581
+ "dropOnRoot": `Перетащить на`,
1582
+ "endDragKeyboard": `Перетаскивание. Нажмите клавишу Enter для отмены.`,
1583
+ "endDragTouch": `Перетаскивание. Дважды нажмите для отмены.`,
1584
+ "endDragVirtual": `Перетаскивание. Щелкните для отмены.`,
1585
+ "insertAfter": (args)=>`Вставить после ${args.itemText}`
1586
+ ,
1587
+ "insertBefore": (args)=>`Вставить перед ${args.itemText}`
1588
+ ,
1589
+ "insertBetween": (args)=>`Вставить между ${args.beforeItemText} и ${args.afterItemText}`
1590
+ };
769
1591
 
770
1592
 
771
1593
  var $0983413fc05d96fb$exports = {};
772
- $0983413fc05d96fb$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Stlačením klávesu Enter začnete presúvanie.\",\"dragDescriptionTouch\":\"Dvojitým kliknutím začnete presúvanie.\",\"dragDescriptionVirtual\":\"Kliknutím začnete presúvanie.\",\"dragItem\":\"Presunúť položku {itemText}\",\"dragSelectedItems\":\"Presunúť {count, plural, one {# vybratú položku} other {# vybraté položky}}\",\"dragStartedKeyboard\":\"Presúvanie sa začalo. Do cieľového umiestnenia prejdete stlačením klávesu Tab. Ak chcete položku umiestniť, stlačte kláves Enter alebo stlačte kláves Esc, ak chcete presúvanie zrušiť.\",\"dragStartedTouch\":\"Presúvanie sa začalo. Prejdite na cieľové umiestnenie a dvojitým kliknutím umiestnite položku.\",\"dragStartedVirtual\":\"Presúvanie sa začalo. Prejdite na cieľové umiestnenie a kliknutím alebo stlačením klávesu Enter umiestnite položku.\",\"dropCanceled\":\"Umiestnenie zrušené.\",\"dropComplete\":\"Umiestnenie dokončené.\",\"dropDescriptionKeyboard\":\"Stlačením klávesu Enter umiestnite položku. Stlačením klávesu Esc zrušíte presúvanie.\",\"dropDescriptionTouch\":\"Dvojitým kliknutím umiestnite položku.\",\"dropDescriptionVirtual\":\"Kliknutím umiestnite položku.\",\"dropIndicator\":\"indikátor umiestnenia\",\"dropOnItem\":\"Umiestniť na položku {itemText}\",\"dropOnRoot\":\"Umiestniť na\",\"endDragKeyboard\":\"Prebieha presúvanie. Ak ho chcete zrušiť, stlačte kláves Enter.\",\"endDragTouch\":\"Prebieha presúvanie. Dvojitým kliknutím ho môžete zrušiť.\",\"endDragVirtual\":\"Prebieha presúvanie.\",\"insertAfter\":\"Vložiť za položku {itemText}\",\"insertBefore\":\"Vložiť pred položku {itemText}\",\"insertBetween\":\"Vložiť medzi položky {beforeItemText} a {afterItemText}\"}");
1594
+ $0983413fc05d96fb$exports = {
1595
+ "dragDescriptionKeyboard": `Stlačením klávesu Enter začnete presúvanie.`,
1596
+ "dragDescriptionTouch": `Dvojitým kliknutím začnete presúvanie.`,
1597
+ "dragDescriptionVirtual": `Kliknutím začnete presúvanie.`,
1598
+ "dragItem": (args)=>`Presunúť položku ${args.itemText}`
1599
+ ,
1600
+ "dragSelectedItems": (args, formatter)=>`Presunúť ${formatter.plural(args.count, {
1601
+ one: ()=>`${formatter.number(args.count)} vybratú položku`
1602
+ ,
1603
+ other: ()=>`${formatter.number(args.count)} vybraté položky`
1604
+ })}`
1605
+ ,
1606
+ "dragStartedKeyboard": `Presúvanie sa začalo. Do cieľového umiestnenia prejdete stlačením klávesu Tab. Ak chcete položku umiestniť, stlačte kláves Enter alebo stlačte kláves Esc, ak chcete presúvanie zrušiť.`,
1607
+ "dragStartedTouch": `Presúvanie sa začalo. Prejdite na cieľové umiestnenie a dvojitým kliknutím umiestnite položku.`,
1608
+ "dragStartedVirtual": `Presúvanie sa začalo. Prejdite na cieľové umiestnenie a kliknutím alebo stlačením klávesu Enter umiestnite položku.`,
1609
+ "dropCanceled": `Umiestnenie zrušené.`,
1610
+ "dropComplete": `Umiestnenie dokončené.`,
1611
+ "dropDescriptionKeyboard": `Stlačením klávesu Enter umiestnite položku. Stlačením klávesu Esc zrušíte presúvanie.`,
1612
+ "dropDescriptionTouch": `Dvojitým kliknutím umiestnite položku.`,
1613
+ "dropDescriptionVirtual": `Kliknutím umiestnite položku.`,
1614
+ "dropIndicator": `indikátor umiestnenia`,
1615
+ "dropOnItem": (args)=>`Umiestniť na položku ${args.itemText}`
1616
+ ,
1617
+ "dropOnRoot": `Umiestniť na`,
1618
+ "endDragKeyboard": `Prebieha presúvanie. Ak ho chcete zrušiť, stlačte kláves Enter.`,
1619
+ "endDragTouch": `Prebieha presúvanie. Dvojitým kliknutím ho môžete zrušiť.`,
1620
+ "endDragVirtual": `Prebieha presúvanie.`,
1621
+ "insertAfter": (args)=>`Vložiť za položku ${args.itemText}`
1622
+ ,
1623
+ "insertBefore": (args)=>`Vložiť pred položku ${args.itemText}`
1624
+ ,
1625
+ "insertBetween": (args)=>`Vložiť medzi položky ${args.beforeItemText} a ${args.afterItemText}`
1626
+ };
773
1627
 
774
1628
 
775
1629
  var $c66896a0464692f1$exports = {};
776
- $c66896a0464692f1$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Pritisnite tipko Enter za začetek vlečenja.\",\"dragDescriptionTouch\":\"Dvotapnite za začetek vlečenja.\",\"dragDescriptionVirtual\":\"Kliknite za začetek vlečenja.\",\"dragItem\":\"Povleci {itemText}\",\"dragSelectedItems\":\"Povlecite {count, plural, one {# izbran element} other {izbrane elemente (#)}}\",\"dragStartedKeyboard\":\"Vlečenje se je začelo. Pritisnite tipko Tab za pomik na mesto, kamor želite spustiti elemente, in pritisnite tipko Enter, da jih spustite, ali tipko Escape, da prekličete postopek.\",\"dragStartedTouch\":\"Vlečenje se je začelo. Pomaknite se na mesto, kamor želite spustiti elemente, in dvotapnite, da jih spustite.\",\"dragStartedVirtual\":\"Vlečenje se je začelo. Pomaknite se na mesto, kamor želite spustiti elemente, in kliknite ali pritisnite tipko Enter, da jih spustite.\",\"dropCanceled\":\"Spust je preklican.\",\"dropComplete\":\"Spust je končan.\",\"dropDescriptionKeyboard\":\"Pritisnite tipko Enter, da spustite. Pritisnite tipko Escape, da prekličete vlečenje.\",\"dropDescriptionTouch\":\"Dvotapnite, da spustite.\",\"dropDescriptionVirtual\":\"Kliknite, da spustite.\",\"dropIndicator\":\"indikator spusta\",\"dropOnItem\":\"Spusti na mesto {itemText}\",\"dropOnRoot\":\"Spusti na mesto\",\"endDragKeyboard\":\"Vlečenje. Pritisnite tipko Enter za preklic vlečenja.\",\"endDragTouch\":\"Vlečenje. Dvotapnite za preklic vlečenja.\",\"endDragVirtual\":\"Vlečenje. Kliknite, da prekličete vlečenje.\",\"insertAfter\":\"Vstavi za {itemText}\",\"insertBefore\":\"Vstavi pred {itemText}\",\"insertBetween\":\"Vstavi med {beforeItemText} in {afterItemText}\"}");
1630
+ $c66896a0464692f1$exports = {
1631
+ "dragDescriptionKeyboard": `Pritisnite tipko Enter za začetek vlečenja.`,
1632
+ "dragDescriptionTouch": `Dvotapnite za začetek vlečenja.`,
1633
+ "dragDescriptionVirtual": `Kliknite za začetek vlečenja.`,
1634
+ "dragItem": (args)=>`Povleci ${args.itemText}`
1635
+ ,
1636
+ "dragSelectedItems": (args, formatter)=>`Povlecite ${formatter.plural(args.count, {
1637
+ one: ()=>`${formatter.number(args.count)} izbran element`
1638
+ ,
1639
+ other: ()=>`izbrane elemente (${formatter.number(args.count)})`
1640
+ })}`
1641
+ ,
1642
+ "dragStartedKeyboard": `Vlečenje se je začelo. Pritisnite tipko Tab za pomik na mesto, kamor želite spustiti elemente, in pritisnite tipko Enter, da jih spustite, ali tipko Escape, da prekličete postopek.`,
1643
+ "dragStartedTouch": `Vlečenje se je začelo. Pomaknite se na mesto, kamor želite spustiti elemente, in dvotapnite, da jih spustite.`,
1644
+ "dragStartedVirtual": `Vlečenje se je začelo. Pomaknite se na mesto, kamor želite spustiti elemente, in kliknite ali pritisnite tipko Enter, da jih spustite.`,
1645
+ "dropCanceled": `Spust je preklican.`,
1646
+ "dropComplete": `Spust je končan.`,
1647
+ "dropDescriptionKeyboard": `Pritisnite tipko Enter, da spustite. Pritisnite tipko Escape, da prekličete vlečenje.`,
1648
+ "dropDescriptionTouch": `Dvotapnite, da spustite.`,
1649
+ "dropDescriptionVirtual": `Kliknite, da spustite.`,
1650
+ "dropIndicator": `indikator spusta`,
1651
+ "dropOnItem": (args)=>`Spusti na mesto ${args.itemText}`
1652
+ ,
1653
+ "dropOnRoot": `Spusti na mesto`,
1654
+ "endDragKeyboard": `Vlečenje. Pritisnite tipko Enter za preklic vlečenja.`,
1655
+ "endDragTouch": `Vlečenje. Dvotapnite za preklic vlečenja.`,
1656
+ "endDragVirtual": `Vlečenje. Kliknite, da prekličete vlečenje.`,
1657
+ "insertAfter": (args)=>`Vstavi za ${args.itemText}`
1658
+ ,
1659
+ "insertBefore": (args)=>`Vstavi pred ${args.itemText}`
1660
+ ,
1661
+ "insertBetween": (args)=>`Vstavi med ${args.beforeItemText} in ${args.afterItemText}`
1662
+ };
777
1663
 
778
1664
 
779
1665
  var $f0d9abe43a1bcdf6$exports = {};
780
- $f0d9abe43a1bcdf6$exports = JSON.parse("{\"dragItem\":\"Prevucite {itemText}\",\"dragSelectedItems\":\"Prevucite {count, plural, one {# izabranu stavku} other {# izabrane stavke}}\",\"dragDescriptionKeyboard\":\"Pritisnite Enter da biste započeli prevlačenje..\",\"dragDescriptionTouch\":\"Dvaput dodirnite za otpuštanje.\",\"dragDescriptionVirtual\":\"Kliknite da biste započeli prevlačenje.\",\"dragStartedKeyboard\":\"Prevlačenje je započeto. Pritisnite Tab da biste otišli do cilja za otpuštanje, zatim pritisnite Enter za ispuštanje ili pritisnite Escape za otkazivanje.\",\"dragStartedTouch\":\"Prevlačenje je započeto. Idite do cilja za otpuštanje, a zatim dvaput dodirnite za otpuštanje.\",\"dragStartedVirtual\":\"Prevlačenje je započeto. Idite do cilja za otpuštanje, a zatim kliknite ili pritinite Enter za otpuštanje.\",\"endDragKeyboard\":\"Prevlačenje u toku. Pritisnite Enter da biste otkazali prevlačenje.\",\"endDragTouch\":\"Prevlačenje u toku. Dvaput dodirnite da biste otkazali prevlačenje.\",\"endDragVirtual\":\"Prevlačenje u toku. Kliknite da biste otkazali prevlačenje.\",\"dropDescriptionKeyboard\":\"Pritisnite Enter da biste otpustili. Pritisnite Escape da biste otkazali prevlačenje.\",\"dropDescriptionTouch\":\"Dvaput dodirnite za otpuštanje.\",\"dropDescriptionVirtual\":\"Kliknite za otpuštanje.\",\"dropCanceled\":\"Otpuštanje je otkazano.\",\"dropComplete\":\"Prevlačenje je završeno.\",\"dropIndicator\":\"Indikator otpuštanja\",\"dropOnRoot\":\"Otpusti na\",\"dropOnItem\":\"Otpusti na {itemText}\",\"insertBefore\":\"Umetnite ispred {itemText}\",\"insertBetween\":\"Umetnite između {beforeItemText} i {afterItemText}\",\"insertAfter\":\"Umetnite posle {itemText}\"}");
1666
+ $f0d9abe43a1bcdf6$exports = {
1667
+ "dragItem": (args)=>`Prevucite ${args.itemText}`
1668
+ ,
1669
+ "dragSelectedItems": (args, formatter)=>`Prevucite ${formatter.plural(args.count, {
1670
+ one: ()=>`${formatter.number(args.count)} izabranu stavku`
1671
+ ,
1672
+ other: ()=>`${formatter.number(args.count)} izabrane stavke`
1673
+ })}`
1674
+ ,
1675
+ "dragDescriptionKeyboard": `Pritisnite Enter da biste započeli prevlačenje..`,
1676
+ "dragDescriptionTouch": `Dvaput dodirnite za otpuštanje.`,
1677
+ "dragDescriptionVirtual": `Kliknite da biste započeli prevlačenje.`,
1678
+ "dragStartedKeyboard": `Prevlačenje je započeto. Pritisnite Tab da biste otišli do cilja za otpuštanje, zatim pritisnite Enter za ispuštanje ili pritisnite Escape za otkazivanje.`,
1679
+ "dragStartedTouch": `Prevlačenje je započeto. Idite do cilja za otpuštanje, a zatim dvaput dodirnite za otpuštanje.`,
1680
+ "dragStartedVirtual": `Prevlačenje je započeto. Idite do cilja za otpuštanje, a zatim kliknite ili pritinite Enter za otpuštanje.`,
1681
+ "endDragKeyboard": `Prevlačenje u toku. Pritisnite Enter da biste otkazali prevlačenje.`,
1682
+ "endDragTouch": `Prevlačenje u toku. Dvaput dodirnite da biste otkazali prevlačenje.`,
1683
+ "endDragVirtual": `Prevlačenje u toku. Kliknite da biste otkazali prevlačenje.`,
1684
+ "dropDescriptionKeyboard": `Pritisnite Enter da biste otpustili. Pritisnite Escape da biste otkazali prevlačenje.`,
1685
+ "dropDescriptionTouch": `Dvaput dodirnite za otpuštanje.`,
1686
+ "dropDescriptionVirtual": `Kliknite za otpuštanje.`,
1687
+ "dropCanceled": `Otpuštanje je otkazano.`,
1688
+ "dropComplete": `Prevlačenje je završeno.`,
1689
+ "dropIndicator": `Indikator otpuštanja`,
1690
+ "dropOnRoot": `Otpusti na`,
1691
+ "dropOnItem": (args)=>`Otpusti na ${args.itemText}`
1692
+ ,
1693
+ "insertBefore": (args)=>`Umetnite ispred ${args.itemText}`
1694
+ ,
1695
+ "insertBetween": (args)=>`Umetnite između ${args.beforeItemText} i ${args.afterItemText}`
1696
+ ,
1697
+ "insertAfter": (args)=>`Umetnite posle ${args.itemText}`
1698
+ };
781
1699
 
782
1700
 
783
1701
  var $f3e2ce4b6d6cc4ac$exports = {};
784
- $f3e2ce4b6d6cc4ac$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Tryck på enter för att börja dra.\",\"dragDescriptionTouch\":\"Dubbeltryck för att börja dra.\",\"dragDescriptionVirtual\":\"Klicka för att börja dra.\",\"dragItem\":\"Dra {itemText}\",\"dragSelectedItems\":\"Dra {count, plural, one {# valt objekt} other {# valda objekt}}\",\"dragStartedKeyboard\":\"Börja dra. Tryck på tabb för att navigera till målet, tryck på enter för att släppa eller på escape för att avbryta.\",\"dragStartedTouch\":\"Börja dra. Navigera till ett mål och dubbeltryck för att släppa.\",\"dragStartedVirtual\":\"Börja dra. Navigera till ett mål och klicka eller tryck på enter för att släppa.\",\"dropCanceled\":\"Släppåtgärd avbröts.\",\"dropComplete\":\"Släppåtgärd klar.\",\"dropDescriptionKeyboard\":\"Tryck på enter för att släppa. Tryck på escape för att avbryta dragåtgärd.\",\"dropDescriptionTouch\":\"Dubbeltryck för att släppa.\",\"dropDescriptionVirtual\":\"Klicka för att släppa.\",\"dropIndicator\":\"släppindikator\",\"dropOnItem\":\"Släpp på {itemText}\",\"dropOnRoot\":\"Släpp på\",\"endDragKeyboard\":\"Drar. Tryck på enter för att avbryta dragåtgärd.\",\"endDragTouch\":\"Drar. Dubbeltryck för att avbryta dragåtgärd.\",\"endDragVirtual\":\"Drar. Klicka för att avbryta dragåtgärd.\",\"insertAfter\":\"Infoga efter {itemText}\",\"insertBefore\":\"Infoga före {itemText}\",\"insertBetween\":\"Infoga mellan {beforeItemText} och {afterItemText}\"}");
1702
+ $f3e2ce4b6d6cc4ac$exports = {
1703
+ "dragDescriptionKeyboard": `Tryck på enter för att börja dra.`,
1704
+ "dragDescriptionTouch": `Dubbeltryck för att börja dra.`,
1705
+ "dragDescriptionVirtual": `Klicka för att börja dra.`,
1706
+ "dragItem": (args)=>`Dra ${args.itemText}`
1707
+ ,
1708
+ "dragSelectedItems": (args, formatter)=>`Dra ${formatter.plural(args.count, {
1709
+ one: ()=>`${formatter.number(args.count)} valt objekt`
1710
+ ,
1711
+ other: ()=>`${formatter.number(args.count)} valda objekt`
1712
+ })}`
1713
+ ,
1714
+ "dragStartedKeyboard": `Börja dra. Tryck på tabb för att navigera till målet, tryck på enter för att släppa eller på escape för att avbryta.`,
1715
+ "dragStartedTouch": `Börja dra. Navigera till ett mål och dubbeltryck för att släppa.`,
1716
+ "dragStartedVirtual": `Börja dra. Navigera till ett mål och klicka eller tryck på enter för att släppa.`,
1717
+ "dropCanceled": `Släppåtgärd avbröts.`,
1718
+ "dropComplete": `Släppåtgärd klar.`,
1719
+ "dropDescriptionKeyboard": `Tryck på enter för att släppa. Tryck på escape för att avbryta dragåtgärd.`,
1720
+ "dropDescriptionTouch": `Dubbeltryck för att släppa.`,
1721
+ "dropDescriptionVirtual": `Klicka för att släppa.`,
1722
+ "dropIndicator": `släppindikator`,
1723
+ "dropOnItem": (args)=>`Släpp på ${args.itemText}`
1724
+ ,
1725
+ "dropOnRoot": `Släpp på`,
1726
+ "endDragKeyboard": `Drar. Tryck på enter för att avbryta dragåtgärd.`,
1727
+ "endDragTouch": `Drar. Dubbeltryck för att avbryta dragåtgärd.`,
1728
+ "endDragVirtual": `Drar. Klicka för att avbryta dragåtgärd.`,
1729
+ "insertAfter": (args)=>`Infoga efter ${args.itemText}`
1730
+ ,
1731
+ "insertBefore": (args)=>`Infoga före ${args.itemText}`
1732
+ ,
1733
+ "insertBetween": (args)=>`Infoga mellan ${args.beforeItemText} och ${args.afterItemText}`
1734
+ };
785
1735
 
786
1736
 
787
1737
  var $da91b0d12d273475$exports = {};
788
- $da91b0d12d273475$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Sürüklemeyi başlatmak için Enter'a basın.\",\"dragDescriptionTouch\":\"Sürüklemeyi başlatmak için çift tıklayın.\",\"dragDescriptionVirtual\":\"Sürüklemeyi başlatmak için tıklayın.\",\"dragItem\":\"{itemText}’i sürükle\",\"dragSelectedItems\":\"Sürükle {count, plural, one {# seçili öge} other {# seçili öge}}\",\"dragStartedKeyboard\":\"Sürükleme başlatıldı. Bir bırakma hedefine gitmek için Tab’a basın, ardından bırakmak için Enter’a basın veya iptal etmek için Escape’e basın.\",\"dragStartedTouch\":\"Sürükleme başlatıldı. Bir bırakma hedefine gidin, ardından bırakmak için çift tıklayın.\",\"dragStartedVirtual\":\"Sürükleme başlatıldı. Bir bırakma hedefine gidin, ardından bırakmak için Enter’a tıklayın veya basın.\",\"dropCanceled\":\"Bırakma iptal edildi.\",\"dropComplete\":\"Bırakma tamamlandı.\",\"dropDescriptionKeyboard\":\"Bırakmak için Enter'a basın. Sürüklemeyi iptal etmek için Escape'e basın.\",\"dropDescriptionTouch\":\"Bırakmak için çift tıklayın.\",\"dropDescriptionVirtual\":\"Bırakmak için tıklayın.\",\"dropIndicator\":\"bırakma göstergesi\",\"dropOnItem\":\"{itemText} üzerine bırak\",\"dropOnRoot\":\"Bırakın\",\"endDragKeyboard\":\"Sürükleme. Sürüklemeyi iptal etmek için Enter'a basın.\",\"endDragTouch\":\"Sürükleme. Sürüklemeyi iptal etmek için çift tıklayın.\",\"endDragVirtual\":\"Sürükleme. Sürüklemeyi iptal etmek için tıklayın.\",\"insertAfter\":\"{itemText}’den sonra gir\",\"insertBefore\":\"{itemText}’den önce gir\",\"insertBetween\":\"{beforeItemText} ve {afterItemText} arasına gir\"}");
1738
+ $da91b0d12d273475$exports = {
1739
+ "dragDescriptionKeyboard": `Sürüklemeyi başlatmak için Enter'a basın.`,
1740
+ "dragDescriptionTouch": `Sürüklemeyi başlatmak için çift tıklayın.`,
1741
+ "dragDescriptionVirtual": `Sürüklemeyi başlatmak için tıklayın.`,
1742
+ "dragItem": (args)=>`${args.itemText}’i sürükle`
1743
+ ,
1744
+ "dragSelectedItems": (args, formatter)=>`Sürükle ${formatter.plural(args.count, {
1745
+ one: ()=>`${formatter.number(args.count)} seçili öge`
1746
+ ,
1747
+ other: ()=>`${formatter.number(args.count)} seçili öge`
1748
+ })}`
1749
+ ,
1750
+ "dragStartedKeyboard": `Sürükleme başlatıldı. Bir bırakma hedefine gitmek için Tab’a basın, ardından bırakmak için Enter’a basın veya iptal etmek için Escape’e basın.`,
1751
+ "dragStartedTouch": `Sürükleme başlatıldı. Bir bırakma hedefine gidin, ardından bırakmak için çift tıklayın.`,
1752
+ "dragStartedVirtual": `Sürükleme başlatıldı. Bir bırakma hedefine gidin, ardından bırakmak için Enter’a tıklayın veya basın.`,
1753
+ "dropCanceled": `Bırakma iptal edildi.`,
1754
+ "dropComplete": `Bırakma tamamlandı.`,
1755
+ "dropDescriptionKeyboard": `Bırakmak için Enter'a basın. Sürüklemeyi iptal etmek için Escape'e basın.`,
1756
+ "dropDescriptionTouch": `Bırakmak için çift tıklayın.`,
1757
+ "dropDescriptionVirtual": `Bırakmak için tıklayın.`,
1758
+ "dropIndicator": `bırakma göstergesi`,
1759
+ "dropOnItem": (args)=>`${args.itemText} üzerine bırak`
1760
+ ,
1761
+ "dropOnRoot": `Bırakın`,
1762
+ "endDragKeyboard": `Sürükleme. Sürüklemeyi iptal etmek için Enter'a basın.`,
1763
+ "endDragTouch": `Sürükleme. Sürüklemeyi iptal etmek için çift tıklayın.`,
1764
+ "endDragVirtual": `Sürükleme. Sürüklemeyi iptal etmek için tıklayın.`,
1765
+ "insertAfter": (args)=>`${args.itemText}’den sonra gir`
1766
+ ,
1767
+ "insertBefore": (args)=>`${args.itemText}’den önce gir`
1768
+ ,
1769
+ "insertBetween": (args)=>`${args.beforeItemText} ve ${args.afterItemText} arasına gir`
1770
+ };
789
1771
 
790
1772
 
791
1773
  var $d6f72e28f0f4871c$exports = {};
792
- $d6f72e28f0f4871c$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"Натисніть Enter, щоб почати перетягування.\",\"dragDescriptionTouch\":\"Натисніть двічі, щоб почати перетягування.\",\"dragDescriptionVirtual\":\"Натисніть, щоб почати перетягування.\",\"dragItem\":\"Перетягнути {itemText}\",\"dragSelectedItems\":\"Перетягніть {count, plural, one {# вибраний елемент} other {# вибраних елем}}\",\"dragStartedKeyboard\":\"Перетягування почалося. Натисніть Tab, щоб перейти до цілі перетягування, потім натисніть Enter, щоб перетягнути, або Escape, щоб скасувати.\",\"dragStartedTouch\":\"Перетягування почалося. Перейдіть до цілі перетягування, потім натисніть двічі, щоб перетягнути.\",\"dragStartedVirtual\":\"Перетягування почалося. Перейдіть до цілі перетягування, потім натисніть Enter, щоб перетягнути.\",\"dropCanceled\":\"Перетягування скасовано.\",\"dropComplete\":\"Перетягування завершено.\",\"dropDescriptionKeyboard\":\"Натисніть Enter, щоб перетягнути. Натисніть Escape, щоб скасувати перетягування.\",\"dropDescriptionTouch\":\"Натисніть двічі, щоб перетягнути.\",\"dropDescriptionVirtual\":\"Натисніть, щоб перетягнути.\",\"dropIndicator\":\"індикатор перетягування\",\"dropOnItem\":\"Перетягнути на {itemText}\",\"dropOnRoot\":\"Перетягнути на\",\"endDragKeyboard\":\"Триває перетягування. Натисніть Enter, щоб скасувати перетягування.\",\"endDragTouch\":\"Триває перетягування. Натисніть двічі, щоб скасувати перетягування.\",\"endDragVirtual\":\"Триває перетягування. Натисніть, щоб скасувати перетягування.\",\"insertAfter\":\"Вставити після {itemText}\",\"insertBefore\":\"Вставити перед {itemText}\",\"insertBetween\":\"Вставити між {beforeItemText} і {afterItemText}\"}");
1774
+ $d6f72e28f0f4871c$exports = {
1775
+ "dragDescriptionKeyboard": `Натисніть Enter, щоб почати перетягування.`,
1776
+ "dragDescriptionTouch": `Натисніть двічі, щоб почати перетягування.`,
1777
+ "dragDescriptionVirtual": `Натисніть, щоб почати перетягування.`,
1778
+ "dragItem": (args)=>`Перетягнути ${args.itemText}`
1779
+ ,
1780
+ "dragSelectedItems": (args, formatter)=>`Перетягніть ${formatter.plural(args.count, {
1781
+ one: ()=>`${formatter.number(args.count)} вибраний елемент`
1782
+ ,
1783
+ other: ()=>`${formatter.number(args.count)} вибраних елем`
1784
+ })}`
1785
+ ,
1786
+ "dragStartedKeyboard": `Перетягування почалося. Натисніть Tab, щоб перейти до цілі перетягування, потім натисніть Enter, щоб перетягнути, або Escape, щоб скасувати.`,
1787
+ "dragStartedTouch": `Перетягування почалося. Перейдіть до цілі перетягування, потім натисніть двічі, щоб перетягнути.`,
1788
+ "dragStartedVirtual": `Перетягування почалося. Перейдіть до цілі перетягування, потім натисніть Enter, щоб перетягнути.`,
1789
+ "dropCanceled": `Перетягування скасовано.`,
1790
+ "dropComplete": `Перетягування завершено.`,
1791
+ "dropDescriptionKeyboard": `Натисніть Enter, щоб перетягнути. Натисніть Escape, щоб скасувати перетягування.`,
1792
+ "dropDescriptionTouch": `Натисніть двічі, щоб перетягнути.`,
1793
+ "dropDescriptionVirtual": `Натисніть, щоб перетягнути.`,
1794
+ "dropIndicator": `індикатор перетягування`,
1795
+ "dropOnItem": (args)=>`Перетягнути на ${args.itemText}`
1796
+ ,
1797
+ "dropOnRoot": `Перетягнути на`,
1798
+ "endDragKeyboard": `Триває перетягування. Натисніть Enter, щоб скасувати перетягування.`,
1799
+ "endDragTouch": `Триває перетягування. Натисніть двічі, щоб скасувати перетягування.`,
1800
+ "endDragVirtual": `Триває перетягування. Натисніть, щоб скасувати перетягування.`,
1801
+ "insertAfter": (args)=>`Вставити після ${args.itemText}`
1802
+ ,
1803
+ "insertBefore": (args)=>`Вставити перед ${args.itemText}`
1804
+ ,
1805
+ "insertBetween": (args)=>`Вставити між ${args.beforeItemText} і ${args.afterItemText}`
1806
+ };
793
1807
 
794
1808
 
795
1809
  var $187738fbdc896f75$exports = {};
796
- $187738fbdc896f75$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"按 Enter 开始拖动。\",\"dragDescriptionTouch\":\"双击开始拖动。\",\"dragDescriptionVirtual\":\"单击开始拖动。\",\"dragItem\":\"拖动 {itemText}\",\"dragSelectedItems\":\"拖动 {count, plural, one {# 选中项目} other {# 选中项目}}\",\"dragStartedKeyboard\":\"已开始拖动。按 Tab 导航到放置目标,然后按 Enter 放置或按 Escape 取消。\",\"dragStartedTouch\":\"已开始拖动。导航到放置目标,然后双击放置。\",\"dragStartedVirtual\":\"已开始拖动。导航到放置目标,然后单击或按 Enter 放置。\",\"dropCanceled\":\"放置已取消。\",\"dropComplete\":\"放置已完成。\",\"dropDescriptionKeyboard\":\"按 Enter 放置。按 Escape 取消拖动。\",\"dropDescriptionTouch\":\"双击放置。\",\"dropDescriptionVirtual\":\"单击放置。\",\"dropIndicator\":\"放置标记\",\"dropOnItem\":\"放置于 {itemText}\",\"dropOnRoot\":\"放置于\",\"endDragKeyboard\":\"正在拖动。按 Enter 取消拖动。\",\"endDragTouch\":\"正在拖动。双击取消拖动。\",\"endDragVirtual\":\"正在拖动。单击取消拖动。\",\"insertAfter\":\"插入到 {itemText} 之后\",\"insertBefore\":\"插入到 {itemText} 之前\",\"insertBetween\":\"插入到 {beforeItemText} 和 {afterItemText} 之间\"}");
1810
+ $187738fbdc896f75$exports = {
1811
+ "dragDescriptionKeyboard": `按 Enter 开始拖动。`,
1812
+ "dragDescriptionTouch": `双击开始拖动。`,
1813
+ "dragDescriptionVirtual": `单击开始拖动。`,
1814
+ "dragItem": (args)=>`拖动 ${args.itemText}`
1815
+ ,
1816
+ "dragSelectedItems": (args, formatter)=>`拖动 ${formatter.plural(args.count, {
1817
+ one: ()=>`${formatter.number(args.count)} 选中项目`
1818
+ ,
1819
+ other: ()=>`${formatter.number(args.count)} 选中项目`
1820
+ })}`
1821
+ ,
1822
+ "dragStartedKeyboard": `已开始拖动。按 Tab 导航到放置目标,然后按 Enter 放置或按 Escape 取消。`,
1823
+ "dragStartedTouch": `已开始拖动。导航到放置目标,然后双击放置。`,
1824
+ "dragStartedVirtual": `已开始拖动。导航到放置目标,然后单击或按 Enter 放置。`,
1825
+ "dropCanceled": `放置已取消。`,
1826
+ "dropComplete": `放置已完成。`,
1827
+ "dropDescriptionKeyboard": `按 Enter 放置。按 Escape 取消拖动。`,
1828
+ "dropDescriptionTouch": `双击放置。`,
1829
+ "dropDescriptionVirtual": `单击放置。`,
1830
+ "dropIndicator": `放置标记`,
1831
+ "dropOnItem": (args)=>`放置于 ${args.itemText}`
1832
+ ,
1833
+ "dropOnRoot": `放置于`,
1834
+ "endDragKeyboard": `正在拖动。按 Enter 取消拖动。`,
1835
+ "endDragTouch": `正在拖动。双击取消拖动。`,
1836
+ "endDragVirtual": `正在拖动。单击取消拖动。`,
1837
+ "insertAfter": (args)=>`插入到 ${args.itemText} 之后`
1838
+ ,
1839
+ "insertBefore": (args)=>`插入到 ${args.itemText} 之前`
1840
+ ,
1841
+ "insertBetween": (args)=>`插入到 ${args.beforeItemText} 和 ${args.afterItemText} 之间`
1842
+ };
797
1843
 
798
1844
 
799
1845
  var $80cfc1f1f7d356d3$exports = {};
800
- $80cfc1f1f7d356d3$exports = JSON.parse("{\"dragDescriptionKeyboard\":\"按 Enter 鍵以開始拖曳。\",\"dragDescriptionTouch\":\"輕點兩下以開始拖曳。\",\"dragDescriptionVirtual\":\"按一下滑鼠以開始拖曳。\",\"dragItem\":\"拖曳「{itemText}」\",\"dragSelectedItems\":\"拖曳 {count, plural, one {# 個選定項目} other {# 個選定項目}}\",\"dragStartedKeyboard\":\"已開始拖曳。按 Tab 鍵以瀏覽至放置目標,然後按 Enter 鍵以放置,或按 Escape 鍵以取消。\",\"dragStartedTouch\":\"已開始拖曳。瀏覽至放置目標,然後輕點兩下以放置。\",\"dragStartedVirtual\":\"已開始拖曳。瀏覽至放置目標,然後按一下滑鼠或按 Enter 鍵以放置。\",\"dropCanceled\":\"放置已取消。\",\"dropComplete\":\"放置已完成。\",\"dropDescriptionKeyboard\":\"按 Enter 鍵以放置。按 Escape 鍵以取消拖曳。\",\"dropDescriptionTouch\":\"輕點兩下以放置。\",\"dropDescriptionVirtual\":\"按一下滑鼠以放置。\",\"dropIndicator\":\"放置指示器\",\"dropOnItem\":\"放置在「{itemText}」上\",\"dropOnRoot\":\"放置在\",\"endDragKeyboard\":\"拖曳中。按 Enter 鍵以取消拖曳。\",\"endDragTouch\":\"拖曳中。輕點兩下以取消拖曳。\",\"endDragVirtual\":\"拖曳中。按一下滑鼠以取消拖曳。\",\"insertAfter\":\"插入至「{itemText}」之後\",\"insertBefore\":\"插入至「{itemText}」之前\",\"insertBetween\":\"插入至「{beforeItemText}」和「{afterItemText}」之間\"}");
1846
+ $80cfc1f1f7d356d3$exports = {
1847
+ "dragDescriptionKeyboard": `按 Enter 鍵以開始拖曳。`,
1848
+ "dragDescriptionTouch": `輕點兩下以開始拖曳。`,
1849
+ "dragDescriptionVirtual": `按一下滑鼠以開始拖曳。`,
1850
+ "dragItem": (args)=>`拖曳「${args.itemText}」`
1851
+ ,
1852
+ "dragSelectedItems": (args, formatter)=>`拖曳 ${formatter.plural(args.count, {
1853
+ one: ()=>`${formatter.number(args.count)} 個選定項目`
1854
+ ,
1855
+ other: ()=>`${formatter.number(args.count)} 個選定項目`
1856
+ })}`
1857
+ ,
1858
+ "dragStartedKeyboard": `已開始拖曳。按 Tab 鍵以瀏覽至放置目標,然後按 Enter 鍵以放置,或按 Escape 鍵以取消。`,
1859
+ "dragStartedTouch": `已開始拖曳。瀏覽至放置目標,然後輕點兩下以放置。`,
1860
+ "dragStartedVirtual": `已開始拖曳。瀏覽至放置目標,然後按一下滑鼠或按 Enter 鍵以放置。`,
1861
+ "dropCanceled": `放置已取消。`,
1862
+ "dropComplete": `放置已完成。`,
1863
+ "dropDescriptionKeyboard": `按 Enter 鍵以放置。按 Escape 鍵以取消拖曳。`,
1864
+ "dropDescriptionTouch": `輕點兩下以放置。`,
1865
+ "dropDescriptionVirtual": `按一下滑鼠以放置。`,
1866
+ "dropIndicator": `放置指示器`,
1867
+ "dropOnItem": (args)=>`放置在「${args.itemText}」上`
1868
+ ,
1869
+ "dropOnRoot": `放置在`,
1870
+ "endDragKeyboard": `拖曳中。按 Enter 鍵以取消拖曳。`,
1871
+ "endDragTouch": `拖曳中。輕點兩下以取消拖曳。`,
1872
+ "endDragVirtual": `拖曳中。按一下滑鼠以取消拖曳。`,
1873
+ "insertAfter": (args)=>`插入至「${args.itemText}」之後`
1874
+ ,
1875
+ "insertBefore": (args)=>`插入至「${args.itemText}」之前`
1876
+ ,
1877
+ "insertBetween": (args)=>`插入至「${args.beforeItemText}」和「${args.afterItemText}」之間`
1878
+ };
801
1879
 
802
1880
 
803
1881
  $d624b4da796f302a$exports = {
@@ -857,7 +1935,7 @@ const $dc204e8ec58447a6$var$MESSAGES = {
857
1935
  }
858
1936
  };
859
1937
  function $dc204e8ec58447a6$export$7941f8aafa4b6021(options) {
860
- let formatMessage = $4vY0V$reactariai18n.useMessageFormatter((/*@__PURE__*/$parcel$interopDefault($d624b4da796f302a$exports)));
1938
+ let stringFormatter = $4vY0V$reactariai18n.useLocalizedStringFormatter((/*@__PURE__*/$parcel$interopDefault($d624b4da796f302a$exports)));
861
1939
  let state = $4vY0V$react.useRef({
862
1940
  options: options,
863
1941
  x: 0,
@@ -962,11 +2040,11 @@ function $dc204e8ec58447a6$export$7941f8aafa4b6021(options) {
962
2040
  setDragging(false);
963
2041
  if (typeof state.options.onDragEnd === 'function') state.options.onDragEnd(e);
964
2042
  }
965
- }, formatMessage);
2043
+ }, stringFormatter);
966
2044
  setDragging(true);
967
2045
  };
968
2046
  let modality = $4620ae0dc40f0031$export$49bac5d6d4b352ea();
969
- let descriptionProps = $4vY0V$reactariautils.useDescription(formatMessage(!isDragging ? $dc204e8ec58447a6$var$MESSAGES[modality].start : $dc204e8ec58447a6$var$MESSAGES[modality].end));
2047
+ let descriptionProps = $4vY0V$reactariautils.useDescription(stringFormatter.format(!isDragging ? $dc204e8ec58447a6$var$MESSAGES[modality].start : $dc204e8ec58447a6$var$MESSAGES[modality].end));
970
2048
  return {
971
2049
  dragProps: {
972
2050
  draggable: 'true',
@@ -983,9 +2061,6 @@ function $dc204e8ec58447a6$export$7941f8aafa4b6021(options) {
983
2061
  }
984
2062
 
985
2063
 
986
- var $1ca228bc9257ca16$exports = {};
987
-
988
- $parcel$export($1ca228bc9257ca16$exports, "useDrop", () => $1ca228bc9257ca16$export$ccdee5eaf73cf661);
989
2064
 
990
2065
 
991
2066
 
@@ -1002,10 +2077,10 @@ const $419982e205c8e8dc$var$MESSAGES = {
1002
2077
  virtual: 'dropDescriptionVirtual'
1003
2078
  };
1004
2079
  function $419982e205c8e8dc$export$62447ad3d2ec7da6() {
1005
- let formatMessage = $4vY0V$reactariai18n.useMessageFormatter((/*@__PURE__*/$parcel$interopDefault($d624b4da796f302a$exports)));
2080
+ let stringFormatter = $4vY0V$reactariai18n.useLocalizedStringFormatter((/*@__PURE__*/$parcel$interopDefault($d624b4da796f302a$exports)));
1006
2081
  let modality = $4620ae0dc40f0031$export$49bac5d6d4b352ea();
1007
2082
  let dragSession = $28e10663603f5ea1$export$418e185dd3f1b968();
1008
- let descriptionProps = $4vY0V$reactariautils.useDescription(dragSession ? formatMessage($419982e205c8e8dc$var$MESSAGES[modality]) : '');
2083
+ let descriptionProps = $4vY0V$reactariautils.useDescription(dragSession ? stringFormatter.format($419982e205c8e8dc$var$MESSAGES[modality]) : '');
1009
2084
  return {
1010
2085
  dropProps: {
1011
2086
  ...descriptionProps,
@@ -1191,9 +2266,6 @@ function $1ca228bc9257ca16$var$effectAllowedToOperations(effectAllowed) {
1191
2266
  }
1192
2267
 
1193
2268
 
1194
- var $7f93a158ac20b90a$exports = {};
1195
-
1196
- $parcel$export($7f93a158ac20b90a$exports, "useDroppableCollection", () => $7f93a158ac20b90a$export$f4e2f423c21f7b04);
1197
2269
 
1198
2270
 
1199
2271
 
@@ -1624,9 +2696,6 @@ function $7f93a158ac20b90a$export$f4e2f423c21f7b04(props, state1, ref2) {
1624
2696
  }
1625
2697
 
1626
2698
 
1627
- var $fc1876157e07bcec$exports = {};
1628
-
1629
- $parcel$export($fc1876157e07bcec$exports, "useDroppableItem", () => $fc1876157e07bcec$export$f7b0c5d28b66b6a5);
1630
2699
 
1631
2700
 
1632
2701
 
@@ -1665,9 +2734,6 @@ function $fc1876157e07bcec$export$f7b0c5d28b66b6a5(options, state, ref) {
1665
2734
  }
1666
2735
 
1667
2736
 
1668
- var $c5557edbed563ebf$exports = {};
1669
-
1670
- $parcel$export($c5557edbed563ebf$exports, "useDropIndicator", () => $c5557edbed563ebf$export$8d0e41d2815afac5);
1671
2737
 
1672
2738
 
1673
2739
 
@@ -1677,7 +2743,7 @@ $parcel$export($c5557edbed563ebf$exports, "useDropIndicator", () => $c5557edbed5
1677
2743
  function $c5557edbed563ebf$export$8d0e41d2815afac5(props, state, ref1) {
1678
2744
  let { target: target } = props;
1679
2745
  let { collection: collection } = state;
1680
- let formatMessage = $4vY0V$reactariai18n.useMessageFormatter((/*@__PURE__*/$parcel$interopDefault($d624b4da796f302a$exports)));
2746
+ let stringFormatter = $4vY0V$reactariai18n.useLocalizedStringFormatter((/*@__PURE__*/$parcel$interopDefault($d624b4da796f302a$exports)));
1681
2747
  let dragSession = $28e10663603f5ea1$export$418e185dd3f1b968();
1682
2748
  let { dropProps: dropProps } = $fc1876157e07bcec$export$f7b0c5d28b66b6a5(props, state, ref1);
1683
2749
  let id = $4vY0V$reactariautils.useId();
@@ -1688,22 +2754,22 @@ function $c5557edbed563ebf$export$8d0e41d2815afac5(props, state, ref1) {
1688
2754
  let label = '';
1689
2755
  let labelledBy;
1690
2756
  if (target.type === 'root') {
1691
- label = formatMessage('dropOnRoot');
2757
+ label = stringFormatter.format('dropOnRoot');
1692
2758
  labelledBy = `${id} ${$4620ae0dc40f0031$export$3093291712f09a77(state)}`;
1693
- } else if (target.dropPosition === 'on') label = formatMessage('dropOnItem', {
2759
+ } else if (target.dropPosition === 'on') label = stringFormatter.format('dropOnItem', {
1694
2760
  itemText: getText(target.key)
1695
2761
  });
1696
2762
  else {
1697
2763
  let before = target.dropPosition === 'before' ? collection.getKeyBefore(target.key) : target.key;
1698
2764
  let after = target.dropPosition === 'after' ? collection.getKeyAfter(target.key) : target.key;
1699
- if (before && after) label = formatMessage('insertBetween', {
2765
+ if (before && after) label = stringFormatter.format('insertBetween', {
1700
2766
  beforeItemText: getText(before),
1701
2767
  afterItemText: getText(after)
1702
2768
  });
1703
- else if (before) label = formatMessage('insertAfter', {
2769
+ else if (before) label = stringFormatter.format('insertAfter', {
1704
2770
  itemText: getText(before)
1705
2771
  });
1706
- else if (after) label = formatMessage('insertBefore', {
2772
+ else if (after) label = stringFormatter.format('insertBefore', {
1707
2773
  itemText: getText(after)
1708
2774
  });
1709
2775
  }
@@ -1711,7 +2777,7 @@ function $c5557edbed563ebf$export$8d0e41d2815afac5(props, state, ref1) {
1711
2777
  dropIndicatorProps: {
1712
2778
  ...dropProps,
1713
2779
  id: id,
1714
- 'aria-roledescription': formatMessage('dropIndicator'),
2780
+ 'aria-roledescription': stringFormatter.format('dropIndicator'),
1715
2781
  'aria-label': label,
1716
2782
  'aria-labelledby': labelledBy,
1717
2783
  'aria-hidden': !dragSession ? 'true' : dropProps['aria-hidden'],
@@ -1721,14 +2787,11 @@ function $c5557edbed563ebf$export$8d0e41d2815afac5(props, state, ref1) {
1721
2787
  }
1722
2788
 
1723
2789
 
1724
- var $0cbbd00cda972c67$exports = {};
1725
-
1726
- $parcel$export($0cbbd00cda972c67$exports, "useDraggableItem", () => $0cbbd00cda972c67$export$b35afafff42da2d9);
1727
2790
 
1728
2791
 
1729
2792
 
1730
2793
  function $0cbbd00cda972c67$export$b35afafff42da2d9(props, state) {
1731
- let formatMessage = $4vY0V$reactariai18n.useMessageFormatter((/*@__PURE__*/$parcel$interopDefault($d624b4da796f302a$exports)));
2794
+ let stringFormatter = $4vY0V$reactariai18n.useLocalizedStringFormatter((/*@__PURE__*/$parcel$interopDefault($d624b4da796f302a$exports)));
1732
2795
  let { dragProps: dragProps , dragButtonProps: dragButtonProps } = $dc204e8ec58447a6$export$7941f8aafa4b6021({
1733
2796
  getItems () {
1734
2797
  return state.getItems(props.key);
@@ -1749,10 +2812,10 @@ function $0cbbd00cda972c67$export$b35afafff42da2d9(props, state) {
1749
2812
  let isSelected = state.selectionManager.isSelected(props.key);
1750
2813
  let message;
1751
2814
  var ref;
1752
- if (isSelected && numKeysForDrag > 1) message = formatMessage('dragSelectedItems', {
2815
+ if (isSelected && numKeysForDrag > 1) message = stringFormatter.format('dragSelectedItems', {
1753
2816
  count: numKeysForDrag
1754
2817
  });
1755
- else message = formatMessage('dragItem', {
2818
+ else message = stringFormatter.format('dragItem', {
1756
2819
  itemText: (ref = item === null || item === void 0 ? void 0 : item.textValue) !== null && ref !== void 0 ? ref : ''
1757
2820
  });
1758
2821
  return {
@@ -1765,9 +2828,6 @@ function $0cbbd00cda972c67$export$b35afafff42da2d9(props, state) {
1765
2828
  }
1766
2829
 
1767
2830
 
1768
- var $74f3dedaa4d234b4$exports = {};
1769
-
1770
- $parcel$export($74f3dedaa4d234b4$exports, "useClipboard", () => $74f3dedaa4d234b4$export$2314ca2a3e892862);
1771
2831
 
1772
2832
 
1773
2833
 
@@ -1887,13 +2947,6 @@ function $2dccaca1f4baa446$var$DragPreview(props, ref) {
1887
2947
  let $2dccaca1f4baa446$export$905ab40ac2179daa = /*#__PURE__*/ ($parcel$interopDefault($4vY0V$react)).forwardRef($2dccaca1f4baa446$var$DragPreview);
1888
2948
 
1889
2949
 
1890
- $parcel$exportWildcard(module.exports, $dc204e8ec58447a6$exports);
1891
- $parcel$exportWildcard(module.exports, $1ca228bc9257ca16$exports);
1892
- $parcel$exportWildcard(module.exports, $7f93a158ac20b90a$exports);
1893
- $parcel$exportWildcard(module.exports, $fc1876157e07bcec$exports);
1894
- $parcel$exportWildcard(module.exports, $c5557edbed563ebf$exports);
1895
- $parcel$exportWildcard(module.exports, $0cbbd00cda972c67$exports);
1896
- $parcel$exportWildcard(module.exports, $74f3dedaa4d234b4$exports);
1897
2950
 
1898
2951
 
1899
2952
  //# sourceMappingURL=main.js.map