-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlocalization.lua
More file actions
886 lines (885 loc) · 44.7 KB
/
localization.lua
File metadata and controls
886 lines (885 loc) · 44.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
local _, L = ...
local locale = GetLocale()
if locale == "deDE" then -- translated by Morbis
L["CC"] = "CC"
L["Silence"] = "Stille"
L["Interrupt"] = "Interrupt"
L["Disarm"] = "Entwaffnen"
L["Root"] = "Wurzeln"
L["Snare"] = "Verlangsamung"
L["Immune"] = "Immun"
L["ImmuneSpell"] = "Immun gegen Zauber"
L["ImmunePhysical"] = "Immune to Physical"
L["Other"] = "Andere"
L["PvE"] = "PvE"
L["player"] = "Spieler"
L["pet"] = "Haustier"
L["target"] = "Ziel"
L["targettarget"] = "TargetTarget"
L["focus"] = "Fokus"
L["focustarget"] = "FocusTarget"
L["party"] = "Gruppenmitglied"
L["party1"] = "Gruppenmitglied 1"
L["party2"] = "Gruppenmitglied 2"
L["party3"] = "Gruppenmitglied 3"
L["party4"] = "Gruppenmitglied 4"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "Arena-Feind"
L["arena1"] = "Arena-Feind 1"
L["arena2"] = "Arena-Feind 2"
L["arena3"] = "Arena-Feind 3"
L["arena4"] = "Arena-Feind 4"
L["arena5"] = "Arena-Feind 5"
L["None"] = "Kein"
L["Position"] = "Position"
L["Position:"] = "Position:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "Einheit-Konfiguration"
L["Enabled"] = "Aktivieren"
L["DisableInBG"] = "Deaktivieren Sie in Battlegrounds"
L["DisableInArena"] = "Disable in Arena"
L["DisableInRaid"] = "Deaktivieren Sie in raid (ignored in arena and BGs)"
L["DisableInterrupts"] = "Disable Interrupt category for this unit"
L["ShowNPCInterrupts"] = "Also show Interrupts for NPC units"
L["DisablePlayerTargetTarget"] = "Disable when unit is Player"
L["DisableTargetTargetTarget"] = "Disable when unit is Target"
L["DisablePlayerTargetPlayerTargetTarget"] = "Disabe when unit and Target are Player"
L["DisableTargetDeadTargetTarget"] = "Disable when Target is a dead unit"
L["DisableFocusFocusTarget"] = "Disable when unit is Focus"
L["DisablePlayerFocusPlayerFocusTarget"] = "Disabe when unit and Focus are Player"
L["DisableFocusDeadFocusTarget"] = "Disable when Focus is a dead unit"
L["DuplicatePlayerPortrait"] = "Duplicate Icon to show in Portrait"
L["EnabledPartyPlayerIcon"] = "Enable Party Icon for Player unit"
L["EnableElementalSchoolMiniIcon"] = "Enable Elemental multi-school Interrupt MiniIcon"
L["EnableChaosSchoolMiniIcon"] = "Enable Chaos multi-school Interrupt MiniIcon"
L["UseSpellInsteadSchoolMiniIcon"] = "Use Spell as Interrupt MiniIcon instead School"
L["SwipeCooldownOpacity"] = "Swipe Cooldown Opacity"
L["Anchor"] = "Anker"
L["anchor:"] = "anker:"
L["icon anchor:"] = "symbol anker:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anchored to:"
L["AnchorPositionDropDownAnchorLabel"] = "unit anchor: "
L["CategoriesEnabledLabel"] = "Enabled for the following categories (|cff00ff00[F]|r is friendly unit, |cffff0000[E]|r is enemy unit, |cff134d56[B]|r is helpful aura, \n|cff543f16[D]|r is harmful aura):"
L["AdditionalOptionsLabel"] = "Additional options:"
L["InterruptBackgroundOpacity"] = "Interrupt Background Opacity"
L["InterruptBackgroundColor"] = "Interrupt Background Color Mask"
L["InterruptMiniIconsOpacity"] = "Interrupt MiniIcons Opacity"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "Strata"
L["Icon Size"] = "Symbolgröße"
L["Opacity"] = "Transparenz"
L["Unlock"] = "Symbole entriegeln"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = " (Ziehen um Symbole zu bewegen)"
L["Disable OmniCC Support"] = "Deaktiviere OmniCC Unterstützung"
L["Disable Blizzard Countdown"] = "Disable Blizzard Countdown"
L["DisableLossOfControlCooldownText"] = "Disable Cooldown on player bars for CC effects"
L["NeedsReload"] = "Needs ReloadUI to take effect"
L["Priority"] = "Priorität"
L["PriorityDescription"] = "Legen Sie die Priorität für jeden Zauberspruch Kategorie aus. Höhere Zahlen haben mehr Priorität. 0 deaktiviert die Kategorie."
L["BlizzardLossOfControl"] = "Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlCombatWarning"] = "Can't modify these options in combat"
L["BlizzardLossOfControlDescription"] = "Control the WoW CVars to enable/disable the CC alerts implemented by Blizzard by default (only for the \nPlayer unit). It is recommended to disable them and use the addon CC alerts instead."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Enable Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlGeneralTextChecked"] = "Enable Blizzard LossOfControl Alerts (recommendation: disable this option)"
L["Off"] = "Off"
L["Only Alert"] = "Only Alert"
L["Show Full Duration"] = "Show Full Duration"
L["LoseControl reset."] = "LoseControl zurücksetzen."
elseif locale == "esES" or locale == "esMX" then -- translated by Babelfish and millanzarreta
L["CC"] = "CC"
L["Silence"] = "Silencio"
L["Interrupt"] = "Interrupción"
L["Disarm"] = "Desarme"
L["Root"] = "Inmovilización"
L["Snare"] = "Relantización"
L["Immune"] = "Inmune"
L["ImmuneSpell"] = "Inmune a los hechizos"
L["ImmunePhysical"] = "Inmune a físico"
L["Other"] = "Otro"
L["PvE"] = "PvE"
L["player"] = "Jugador"
L["pet"] = "Mascota"
L["target"] = "Objetivo"
L["targettarget"] = "Objetivo del Objetivo"
L["focus"] = "Foco"
L["focustarget"] = "Objetivo del Foco"
L["party"] = "Grupo"
L["party1"] = "Grupo 1"
L["party2"] = "Grupo 2"
L["party3"] = "Grupo 3"
L["party4"] = "Grupo 4"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "Enemigos de la arena"
L["arena1"] = "Enemigo de la arena 1"
L["arena2"] = "Enemigo de la arena 2"
L["arena3"] = "Enemigo de la arena 3"
L["arena4"] = "Enemigo de la arena 4"
L["arena5"] = "Enemigo de la arena 5"
L["None"] = "Ninguno"
L["Position"] = "Posición"
L["Position:"] = "Posición:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "Configuración de la unidad"
L["Enabled"] = "Permitido"
L["DisableInBG"] = "Deshabilitar en los campos de batalla"
L["DisableInArena"] = "Deshabilitar en arenas"
L["DisableInRaid"] = "Deshabilitar en grupo de banda (ignorado en arenas y BGs)"
L["DisableInterrupts"] = "Desactivar la categoría de Interrupciones para esta unidad"
L["ShowNPCInterrupts"] = "Mostrar también Interrupciones para unidades NPC"
L["DisablePlayerTargetTarget"] = "Deshabilitar cuando la unidad sea el Jugador"
L["DisableTargetTargetTarget"] = "Deshabilitar cuando la unidad sea el Objetivo"
L["DisablePlayerTargetPlayerTargetTarget"] = "Deshabilitar cuando la unidad y el Objetivo sean el Jugador"
L["DisableTargetDeadTargetTarget"] = "Deshabilitar cuando el Objetivo esté muerto"
L["DisableFocusFocusTarget"] = "Deshabilitar cuando la unidad sea el Foco"
L["DisablePlayerFocusPlayerFocusTarget"] = "Deshabilitar cuando la unidad y el Foco sean el Jugador"
L["DisableFocusDeadFocusTarget"] = "Deshabilitar cuando el Foco esté muerto"
L["DuplicatePlayerPortrait"] = "Duplicar Icono para mostralo en el Portrait"
L["EnabledPartyPlayerIcon"] = "Habilitar Icono de Grupo para la unidad Jugador"
L["EnableElementalSchoolMiniIcon"] = "Habilitar el MiniIcono multi-escuela Elemental"
L["EnableChaosSchoolMiniIcon"] = "Habilitar el MiniIcono multi-escuela Caos"
L["UseSpellInsteadSchoolMiniIcon"] = "Usar la Habilidad como MiniIcono, no la Escuela"
L["SwipeCooldownOpacity"] = "Opacidad Espiral Cooldown"
L["Anchor"] = "Anclaje"
L["anchor:"] = "anclaje:"
L["icon anchor:"] = "anclaje icono:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anclado a:"
L["AnchorPositionDropDownAnchorLabel"] = "anclaje unidad: "
L["CategoriesEnabledLabel"] = "Activar para las siguientes categorías (|cff00ff00[F]|r es unidad amistosa, |cffff0000[E]|r es unidad enemiga, \n|cff134d56[B]|r es aura beneficiosa, |cff543f16[D]|r es aura perjudicial):"
L["AdditionalOptionsLabel"] = "Opciones adicionales:"
L["InterruptBackgroundOpacity"] = "Opacidad Fondo Interrupciones"
L["InterruptBackgroundColor"] = "Máscara de Color Fondo Interrupciones"
L["InterruptMiniIconsOpacity"] = "Opacidad MiniIconos Interrupciones"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "Strata"
L["Icon Size"] = "Tamaño del icono"
L["Opacity"] = "Opacidad"
L["Unlock"] = "Desbloquear"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = " (arrastre el icono para moverlo)"
L["Disable OmniCC Support"] = "Neutralización OmniCC"
L["Disable Blizzard Countdown"] = "Neutralización Contador de Blizzard"
L["DisableLossOfControlCooldownText"] = "Deshabilita el Cooldown en las barras del jugador para los efectos de CC"
L["NeedsReload"] = "ReloadUI necesario para que tenga efecto"
L["Priority"] = "Prioridad"
L["PriorityDescription"] = "Establece la prioridad de cada categoría. Los números más altos tienen más prioridad. 0 la deshabilita."
L["BlizzardLossOfControl"] = "Alertas LossOfControl de Blizzard"
L["BlizzardLossOfControlCombatWarning"] = "No se pueden modificar estas opciones en combate"
L["BlizzardLossOfControlDescription"] = "Controla las CVar de WoW para activar/desactivar las alertas de CC implementadas por defecto por Blizzard \n(solo para la unidad Jugador). Se recomienda desactivarlas y utilizar las alertas de CC del addon en su lugar."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Activar las Alertas LossOfControl de Blizzard"
L["BlizzardLossOfControlGeneralTextChecked"] = "Activar las Alertas LossOfControl de Blizzard (se recomienda deshabilitar esta opción)"
L["Off"] = "Desactivado"
L["Only Alert"] = "Solo Alerta"
L["Show Full Duration"] = "Mostrar Duración Completa "
L["LoseControl reset."] = "LoseControl reajuste."
elseif locale == "frFR" then -- translated by Adirelle
L["CC"] = "CC"
L["Silence"] = "Silence"
L["Interrupt"] = "Interrupt"
L["Disarm"] = "Désarmement"
L["Root"] = "Immobilisation"
L["Snare"] = "Ralentissement"
L["Immune"] = "Immunisé"
L["ImmuneSpell"] = "Immunisé to Spells"
L["ImmunePhysical"] = "Immune to Physical"
L["Other"] = "Autre"
L["PvE"] = "PvE"
L["player"] = "Joueur"
L["pet"] = "Animal"
L["target"] = "Cible"
L["targettarget"] = "TargetTarget"
L["focus"] = "Focalisation"
L["focustarget"] = "FocusTarget"
L["party"] = "Membre du groupe"
L["party1"] = "Membre du groupe n°1"
L["party2"] = "Membre du groupe n°2"
L["party3"] = "Membre du groupe n°3"
L["party4"] = "Membre du groupe n°4"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "Ennemi d'arène"
L["arena1"] = "Ennemi d'arène n°1"
L["arena2"] = "Ennemi d'arène n°2"
L["arena3"] = "Ennemi d'arène n°3"
L["arena4"] = "Ennemi d'arène n°4"
L["arena5"] = "Ennemi d'arène n°5"
L["None"] = "Aucun"
L["Position"] = "Position"
L["Position:"] = "Position:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "Configuration d'unité"
L["Enabled"] = "Activé"
L["DisableInBG"] = "Désactiver en champ de bataille"
L["DisableInArena"] = "Disable in Arena"
L["DisableInRaid"] = "Désactiver en raid (ignored in arena and BGs)"
L["DisableInterrupts"] = "Disable Interrupt category for this unit"
L["ShowNPCInterrupts"] = "Also show Interrupts for NPC units"
L["DisablePlayerTargetTarget"] = "Disable when unit is Player"
L["DisableTargetTargetTarget"] = "Disable when unit is Target"
L["DisablePlayerTargetPlayerTargetTarget"] = "Disabe when unit and Target are Player"
L["DisableTargetDeadTargetTarget"] = "Disable when Target is a dead unit"
L["DisableFocusFocusTarget"] = "Disable when unit is Focus"
L["DisablePlayerFocusPlayerFocusTarget"] = "Disabe when unit and Focus are Player"
L["DisableFocusDeadFocusTarget"] = "Disable when Focus is a dead unit"
L["DuplicatePlayerPortrait"] = "Duplicate Icon to show in Portrait"
L["EnabledPartyPlayerIcon"] = "Enable Party Icon for Player unit"
L["EnableElementalSchoolMiniIcon"] = "Enable Elemental multi-school Interrupt MiniIcon"
L["EnableChaosSchoolMiniIcon"] = "Enable Chaos multi-school Interrupt MiniIcon"
L["UseSpellInsteadSchoolMiniIcon"] = "Use Spell as Interrupt MiniIcon instead School"
L["SwipeCooldownOpacity"] = "Swipe Cooldown Opacity"
L["Anchor"] = "Ancre"
L["anchor:"] = "ancre:"
L["icon anchor:"] = "ancre icône:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anchored to:"
L["AnchorPositionDropDownAnchorLabel"] = "unit anchor: "
L["CategoriesEnabledLabel"] = "Enabled for the following categories (|cff00ff00[F]|r is friendly unit, |cffff0000[E]|r is enemy unit, |cff134d56[B]|r is helpful aura, \n|cff543f16[D]|r is harmful aura):"
L["AdditionalOptionsLabel"] = "Additional options:"
L["InterruptBackgroundOpacity"] = "Interrupt Background Opacity"
L["InterruptBackgroundColor"] = "Interrupt Background Color Mask"
L["InterruptMiniIconsOpacity"] = "Interrupt MiniIcons Opacity"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "Strata"
L["Icon Size"] = "Taille d'icône"
L["Opacity"] = "Opacité"
L["Unlock"] = "Déverrouiller"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = " (déplacez un icône par glisser/traînez l'icône pour le)"
L["Disable OmniCC Support"] = "Désactiver OmniCC"
L["Disable Blizzard Countdown"] = "Disable Blizzard Countdown"
L["DisableLossOfControlCooldownText"] = "Disable Cooldown on player bars for CC effects"
L["NeedsReload"] = "Needs ReloadUI to take effect"
L["Priority"] = "Priorité"
L["PriorityDescription"] = "Définissez la priorité de chaque catégorie sort ci-dessous. Un nombre plus élevé ont une plus grande priorité. 0 désactive la catégorie."
L["BlizzardLossOfControl"] = "Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlCombatWarning"] = "Can't modify these options in combat"
L["BlizzardLossOfControlDescription"] = "Control the WoW CVars to enable/disable the CC alerts implemented by Blizzard by default (only for the \nPlayer unit). It is recommended to disable them and use the addon CC alerts instead."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Enable Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlGeneralTextChecked"] = "Enable Blizzard LossOfControl Alerts (recommendation: disable this option)"
L["Off"] = "Off"
L["Only Alert"] = "Only Alert"
L["Show Full Duration"] = "Show Full Duration"
L["LoseControl reset."] = "Remettre à zéro."
elseif locale == "koKR" then -- translated by zuximus
L["CC"] = "군중제어"
L["Silence"] = "침묵"
L["Interrupt"] = "Interrupt"
L["Disarm"] = "무장 해제"
L["Root"] = "뿌리묶기"
L["Snare"] = "덫"
L["Immune"] = "면역성이 있는"
L["ImmuneSpell"] = "면역성이 있는 to Spells"
L["ImmunePhysical"] = "Immune to Physical"
L["Other"] = "다른"
L["PvE"] = "PvE"
L["player"] = "플레이어"
L["pet"] = "애완 동물"
L["target"] = "대상"
L["targettarget"] = "TargetTarget"
L["focus"] = "주시대상"
L["focustarget"] = "FocusTarget"
L["party"] = "파티원"
L["party1"] = "파티원 1"
L["party2"] = "파티원 2"
L["party3"] = "파티원 3"
L["party4"] = "파티원 4"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "투기장"
L["arena1"] = "투기장 1"
L["arena2"] = "투기장 2"
L["arena3"] = "투기장 3"
L["arena4"] = "투기장 4"
L["arena5"] = "투기장 5"
L["None"] = "없음"
L["Position"] = "Position"
L["Position:"] = "Position:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "유닛 설정"
L["Enabled"] = "활성화"
L["DisableInBG"] = "전장에서 사용 안함"
L["DisableInArena"] = "Disable in Arena"
L["DisableInRaid"] = "Disable in raid group (ignored in arena and BGs)"
L["DisableInterrupts"] = "Disable Interrupt category for this unit"
L["ShowNPCInterrupts"] = "Also show Interrupts for NPC units"
L["DisablePlayerTargetTarget"] = "Disable when unit is Player"
L["DisableTargetTargetTarget"] = "Disable when unit is Target"
L["DisablePlayerTargetPlayerTargetTarget"] = "Disabe when unit and Target are Player"
L["DisableTargetDeadTargetTarget"] = "Disable when Target is a dead unit"
L["DisableFocusFocusTarget"] = "Disable when unit is Focus"
L["DisablePlayerFocusPlayerFocusTarget"] = "Disabe when unit and Focus are Player"
L["DisableFocusDeadFocusTarget"] = "Disable when Focus is a dead unit"
L["DuplicatePlayerPortrait"] = "Duplicate Icon to show in Portrait"
L["EnabledPartyPlayerIcon"] = "Enable Party Icon for Player unit"
L["EnableElementalSchoolMiniIcon"] = "Enable Elemental multi-school Interrupt MiniIcon"
L["EnableChaosSchoolMiniIcon"] = "Enable Chaos multi-school Interrupt MiniIcon"
L["UseSpellInsteadSchoolMiniIcon"] = "Use Spell as Interrupt MiniIcon instead School"
L["SwipeCooldownOpacity"] = "Swipe Cooldown Opacity"
L["Anchor"] = "기준"
L["anchor:"] = "기준:"
L["icon anchor:"] = "아이콘 기준:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anchored to:"
L["AnchorPositionDropDownAnchorLabel"] = "unit anchor: "
L["CategoriesEnabledLabel"] = "Enabled for the following categories (|cff00ff00[F]|r is friendly unit, |cffff0000[E]|r is enemy unit, |cff134d56[B]|r is helpful aura, \n|cff543f16[D]|r is harmful aura):"
L["AdditionalOptionsLabel"] = "Additional options:"
L["InterruptBackgroundOpacity"] = "Interrupt Background Opacity"
L["InterruptBackgroundColor"] = "Interrupt Background Color Mask"
L["InterruptMiniIconsOpacity"] = "Interrupt MiniIcons Opacity"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "프레임 우선순위"
L["Icon Size"] = "아이콘 크기"
L["Opacity"] = "불투명도"
L["Unlock"] = "잠금 해제"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = " (마우스로 아이콘을 끌면 이동함)"
L["Disable OmniCC Support"] = "OmniCC 비활성"
L["Disable Blizzard Countdown"] = "Disable Blizzard Countdown"
L["DisableLossOfControlCooldownText"] = "Disable Cooldown on player bars for CC effects"
L["NeedsReload"] = "Needs ReloadUI to take effect"
L["Priority"] = "앞서 기"
L["PriorityDescription"] = "아래의 각 맞춤법 카테고리의 우선 순위를 설정합니다. 높은 숫자가 더 우선 순위가 있습니다. 0 범주를 사용할 수 없습니다."
L["BlizzardLossOfControl"] = "Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlCombatWarning"] = "Can't modify these options in combat"
L["BlizzardLossOfControlDescription"] = "Control the WoW CVars to enable/disable the CC alerts implemented by Blizzard by default (only for the \nPlayer unit). It is recommended to disable them and use the addon CC alerts instead."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Enable Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlGeneralTextChecked"] = "Enable Blizzard LossOfControl Alerts (recommendation: disable this option)"
L["Off"] = "Off"
L["Only Alert"] = "Only Alert"
L["Show Full Duration"] = "Show Full Duration"
L["LoseControl reset."] = "LoseControl 초기화."
elseif locale == "ptBR" then -- translated by Google translate :(
L["CC"] = "CC"
L["Silence"] = "Silêncio"
L["Interrupt"] = "Interrupt"
L["Disarm"] = "Desarmar"
L["Root"] = "Imobilizar"
L["Snare"] = "Laço"
L["Immune"] = "Imune"
L["ImmuneSpell"] = "Imune a magias"
L["ImmunePhysical"] = "Immune to Physical"
L["Other"] = "Outro"
L["PvE"] = "PvE"
L["player"] = "Jogador"
L["pet"] = "Animal de estimação"
L["target"] = "Alvo"
L["targettarget"] = "TargetTarget"
L["focus"] = "Foco"
L["focustarget"] = "FocusTarget"
L["party"] = "Partido"
L["party1"] = "Partido 1"
L["party2"] = "Partido 2"
L["party3"] = "Partido 3"
L["party4"] = "Partido 4"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "Arena"
L["arena1"] = "Arena 1"
L["arena2"] = "Arena 2"
L["arena3"] = "Arena 3"
L["arena4"] = "Arena 4"
L["arena5"] = "Arena 5"
L["None"] = "Nenhum"
L["Position"] = "Position"
L["Position:"] = "Position:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "Configuração da unidade"
L["Enabled"] = "Habilitado"
L["DisableInBG"] = "Desativar em Battlegrounds"
L["DisableInArena"] = "Disable in Arena"
L["DisableInRaid"] = "Desativar em raid (ignored in arena and BGs)"
L["DisableInterrupts"] = "Disable Interrupt category for this unit"
L["ShowNPCInterrupts"] = "Also show Interrupts for NPC units"
L["DisablePlayerTargetTarget"] = "Disable when unit is Player"
L["DisableTargetTargetTarget"] = "Disable when unit is Target"
L["DisablePlayerTargetPlayerTargetTarget"] = "Disabe when unit and Target are Player"
L["DisableTargetDeadTargetTarget"] = "Disable when Target is a dead unit"
L["DisableFocusFocusTarget"] = "Disable when unit is Focus"
L["DisablePlayerFocusPlayerFocusTarget"] = "Disabe when unit and Focus are Player"
L["DisableFocusDeadFocusTarget"] = "Disable when Focus is a dead unit"
L["DuplicatePlayerPortrait"] = "Duplicate Icon to show in Portrait"
L["EnabledPartyPlayerIcon"] = "Enable Party Icon for Player unit"
L["EnableElementalSchoolMiniIcon"] = "Enable Elemental multi-school Interrupt MiniIcon"
L["EnableChaosSchoolMiniIcon"] = "Enable Chaos multi-school Interrupt MiniIcon"
L["UseSpellInsteadSchoolMiniIcon"] = "Use Spell as Interrupt MiniIcon instead School"
L["SwipeCooldownOpacity"] = "Swipe Cooldown Opacity"
L["Anchor"] = "Âncora"
L["anchor:"] = "âncora:"
L["icon anchor:"] = "âncora ícone:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anchored to:"
L["AnchorPositionDropDownAnchorLabel"] = "unit anchor: "
L["CategoriesEnabledLabel"] = "Enabled for the following categories (|cff00ff00[F]|r is friendly unit, |cffff0000[E]|r is enemy unit, |cff134d56[B]|r is helpful aura, \n|cff543f16[D]|r is harmful aura):"
L["AdditionalOptionsLabel"] = "Additional options:"
L["InterruptBackgroundOpacity"] = "Interrupt Background Opacity"
L["InterruptBackgroundColor"] = "Interrupt Background Color Mask"
L["InterruptMiniIconsOpacity"] = "Interrupt MiniIcons Opacity"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "Strata"
L["Icon Size"] = "Tamanho do ícone"
L["Opacity"] = "Opacidade"
L["Unlock"] = "Destravar"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = " (arrastar um ícone para mover)"
L["Disable OmniCC Support"] = "Desativar OmniCC Suporte"
L["Disable Blizzard Countdown"] = "Disable Blizzard Countdown"
L["DisableLossOfControlCooldownText"] = "Disable Cooldown on player bars for CC effects"
L["NeedsReload"] = "Needs ReloadUI to take effect"
L["Priority"] = "Prioridade"
L["PriorityDescription"] = "Definir a prioridade de cada categoria feitiço abaixo. Os números mais altos têm mais prioridade. 0 desativa a categoria."
L["BlizzardLossOfControl"] = "Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlCombatWarning"] = "Can't modify these options in combat"
L["BlizzardLossOfControlDescription"] = "Control the WoW CVars to enable/disable the CC alerts implemented by Blizzard by default (only for the \nPlayer unit). It is recommended to disable them and use the addon CC alerts instead."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Enable Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlGeneralTextChecked"] = "Enable Blizzard LossOfControl Alerts (recommendation: disable this option)"
L["Off"] = "Off"
L["Only Alert"] = "Only Alert"
L["Show Full Duration"] = "Show Full Duration"
L["LoseControl reset."] = "LoseControl redefinir."
elseif locale == "ruRU" then -- translated by Termoshpuntik
L["CC"] = "Потеря контроля"
L["Silence"] = "Антимагия"
L["Interrupt"] = "Interrupt"
L["Disarm"] = "Разоружение"
L["Root"] = "Удержание на месте"
L["Snare"] = "Замедление"
L["Immune"] = "Иммуно"
L["ImmuneSpell"] = "Иммуно to Spells"
L["ImmunePhysical"] = "Immune to Physical"
L["Other"] = "другой"
L["PvE"] = "PvE"
L["player"] = "Игрок"
L["pet"] = "домашнее животное"
L["target"] = "Цель"
L["targettarget"] = "TargetTarget"
L["focus"] = "Фокус"
L["focustarget"] = "FocusTarget"
L["party"] = "член группы"
L["party1"] = "1-й член группы"
L["party2"] = "2-й член группы"
L["party3"] = "3-й член группы"
L["party4"] = "4-й член группы"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "Противник арены"
L["arena1"] = "Противник арены 1"
L["arena2"] = "Противник арены 2"
L["arena3"] = "Противник арены 3"
L["arena4"] = "Противник арены 4"
L["arena5"] = "Противник арены 5"
L["None"] = "Никакие"
L["Position"] = "Position"
L["Position:"] = "Position:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "Конфигурация блока"
L["Enabled"] = "Включить"
L["DisableInBG"] = "Отключить в поле боя"
L["DisableInArena"] = "Disable in Arena"
L["DisableInRaid"] = "Отключить в набег (ignored in arena and BGs)"
L["DisableInterrupts"] = "Disable Interrupt category for this unit"
L["ShowNPCInterrupts"] = "Also show Interrupts for NPC units"
L["DisablePlayerTargetTarget"] = "Disable when unit is Player"
L["DisableTargetTargetTarget"] = "Disable when unit is Target"
L["DisablePlayerTargetPlayerTargetTarget"] = "Disabe when unit and Target are Player"
L["DisableTargetDeadTargetTarget"] = "Disable when Target is a dead unit"
L["DisableFocusFocusTarget"] = "Disable when unit is Focus"
L["DisablePlayerFocusPlayerFocusTarget"] = "Disabe when unit and Focus are Player"
L["DisableFocusDeadFocusTarget"] = "Disable when Focus is a dead unit"
L["DuplicatePlayerPortrait"] = "Duplicate Icon to show in Portrait"
L["EnabledPartyPlayerIcon"] = "Enable Party Icon for Player unit"
L["EnableElementalSchoolMiniIcon"] = "Enable Elemental multi-school Interrupt MiniIcon"
L["EnableChaosSchoolMiniIcon"] = "Enable Chaos multi-school Interrupt MiniIcon"
L["UseSpellInsteadSchoolMiniIcon"] = "Use Spell as Interrupt MiniIcon instead School"
L["SwipeCooldownOpacity"] = "Swipe Cooldown Opacity"
L["Anchor"] = "Анкер"
L["anchor:"] = "aнкер:"
L["icon anchor:"] = "aнкер значка:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anchored to:"
L["AnchorPositionDropDownAnchorLabel"] = "unit anchor: "
L["CategoriesEnabledLabel"] = "Enabled for the following categories (|cff00ff00[F]|r is friendly unit, |cffff0000[E]|r is enemy unit, |cff134d56[B]|r is helpful aura, \n|cff543f16[D]|r is harmful aura):"
L["AdditionalOptionsLabel"] = "Additional options:"
L["InterruptBackgroundOpacity"] = "Interrupt Background Opacity"
L["InterruptBackgroundColor"] = "Interrupt Background Color Mask"
L["InterruptMiniIconsOpacity"] = "Interrupt MiniIcons Opacity"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "Strata"
L["Icon Size"] = "Размер значка"
L["Opacity"] = "Прозрачность"
L["Unlock"] = "Разблокировать"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = " (перемещайте значок с помошью курсора мыши)"
L["Disable OmniCC Support"] = "Отключить OmniCC"
L["Disable Blizzard Countdown"] = "Disable Blizzard Countdown"
L["DisableLossOfControlCooldownText"] = "Disable Cooldown on player bars for CC effects"
L["NeedsReload"] = "Needs ReloadUI to take effect"
L["Priority"] = "приоритет"
L["PriorityDescription"] = "Установить приоритет для каждого заклинания категории ниже. Более высокие значения имеют больший приоритет. 0 отключает эту категорию."
L["BlizzardLossOfControl"] = "Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlCombatWarning"] = "Can't modify these options in combat"
L["BlizzardLossOfControlDescription"] = "Control the WoW CVars to enable/disable the CC alerts implemented by Blizzard by default (only for the \nPlayer unit). It is recommended to disable them and use the addon CC alerts instead."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Enable Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlGeneralTextChecked"] = "Enable Blizzard LossOfControl Alerts (recommendation: disable this option)"
L["Off"] = "Off"
L["Only Alert"] = "Only Alert"
L["Show Full Duration"] = "Show Full Duration"
L["LoseControl reset."] = "Сброс настроек LoseControl."
elseif locale == "zhCN" then -- translated by 狂飙
L["CC"] = "控制类技能"
L["Silence"] = "沉默类技能"
L["Interrupt"] = "Interrupt"
L["Disarm"] = "缴械类技能"
L["Root"] = "定身类技能"
L["Snare"] = "减速类技能"
L["Immune"] = "免疫"
L["ImmuneSpell"] = "法术免疫"
L["ImmunePhysical"] = "Immune to Physical"
L["Other"] = "其他"
L["PvE"] = "PvE"
L["player"] = "玩家"
L["pet"] = "宠物"
L["target"] = "目标"
L["targettarget"] = "TargetTarget"
L["focus"] = "焦点"
L["focustarget"] = "FocusTarget"
L["party"] = "队友"
L["party1"] = "队友1"
L["party2"] = "队友2"
L["party3"] = "队友3"
L["party4"] = "队友4"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "竞技场敌人"
L["arena1"] = "竞技场敌人1"
L["arena2"] = "竞技场敌人2"
L["arena3"] = "竞技场敌人3"
L["arena4"] = "竞技场敌人4"
L["arena5"] = "竞技场敌人5"
L["None"] = "无"
L["Position"] = "Position"
L["Position:"] = "Position:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "单位配置"
L["Enabled"] = "启用"
L["DisableInBG"] = "禁止在戰場"
L["DisableInArena"] = "Disable in Arena"
L["DisableInRaid"] = "Disable in raid group (ignored in arena and BGs)"
L["DisableInterrupts"] = "Disable Interrupt category for this unit"
L["ShowNPCInterrupts"] = "Also show Interrupts for NPC units"
L["DisablePlayerTargetTarget"] = "Disable when unit is Player"
L["DisableTargetTargetTarget"] = "Disable when unit is Target"
L["DisablePlayerTargetPlayerTargetTarget"] = "Disabe when unit and Target are Player"
L["DisableTargetDeadTargetTarget"] = "Disable when Target is a dead unit"
L["DisableFocusFocusTarget"] = "Disable when unit is Focus"
L["DisablePlayerFocusPlayerFocusTarget"] = "Disabe when unit and Focus are Player"
L["DisableFocusDeadFocusTarget"] = "Disable when Focus is a dead unit"
L["DuplicatePlayerPortrait"] = "Duplicate Icon to show in Portrait"
L["EnabledPartyPlayerIcon"] = "Enable Party Icon for Player unit"
L["EnableElementalSchoolMiniIcon"] = "Enable Elemental multi-school Interrupt MiniIcon"
L["EnableChaosSchoolMiniIcon"] = "Enable Chaos multi-school Interrupt MiniIcon"
L["UseSpellInsteadSchoolMiniIcon"] = "Use Spell as Interrupt MiniIcon instead School"
L["SwipeCooldownOpacity"] = "Swipe Cooldown Opacity"
L["Anchor"] = "锚点"
L["anchor:"] = "锚点:"
L["icon anchor:"] = "图标 锚点:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anchored to:"
L["AnchorPositionDropDownAnchorLabel"] = "unit anchor: "
L["CategoriesEnabledLabel"] = "Enabled for the following categories (|cff00ff00[F]|r is friendly unit, |cffff0000[E]|r is enemy unit, |cff134d56[B]|r is helpful aura, \n|cff543f16[D]|r is harmful aura):"
L["AdditionalOptionsLabel"] = "Additional options:"
L["InterruptBackgroundOpacity"] = "Interrupt Background Opacity"
L["InterruptBackgroundColor"] = "Interrupt Background Color Mask"
L["InterruptMiniIconsOpacity"] = "Interrupt MiniIcons Opacity"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "层级"
L["Icon Size"] = "大小"
L["Opacity"] = "透明度"
L["Unlock"] = "解锁"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = "(拖动图标移动)"
L["Disable OmniCC Support"] = "禁用 OmniCC 支持"
L["Disable Blizzard Countdown"] = "Disable Blizzard Countdown"
L["DisableLossOfControlCooldownText"] = "Disable Cooldown on player bars for CC effects"
L["NeedsReload"] = "Needs ReloadUI to take effect"
L["Priority"] = "优先"
L["PriorityDescription"] = "设置优先级为每个法术类。数字越大,有更高的优先级。 0禁用之类的。"
L["BlizzardLossOfControl"] = "Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlCombatWarning"] = "Can't modify these options in combat"
L["BlizzardLossOfControlDescription"] = "Control the WoW CVars to enable/disable the CC alerts implemented by Blizzard by default (only for the \nPlayer unit). It is recommended to disable them and use the addon CC alerts instead."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Enable Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlGeneralTextChecked"] = "Enable Blizzard LossOfControl Alerts (recommendation: disable this option)"
L["Off"] = "Off"
L["Only Alert"] = "Only Alert"
L["Show Full Duration"] = "Show Full Duration"
L["LoseControl reset."] = "LoseControl 已重置"
elseif locale == "zhTW" then -- translated by 狂飙
L["CC"] = "控制類技能"
L["Silence"] = "沉默類技能"
L["Interrupt"] = "Interrupt"
L["Disarm"] = "繳械類技能"
L["Root"] = "定身類技能"
L["Snare"] = "減速類技能"
L["Immune"] = "免疫"
L["ImmuneSpell"] = "法術免疫"
L["ImmunePhysical"] = "Immune to Physical"
L["Other"] = "其他"
L["PvE"] = "PvE"
L["player"] = "玩家"
L["pet"] = "寵物"
L["target"] = "目標"
L["targettarget"] = "TargetTarget"
L["focus"] = "焦點"
L["focustarget"] = "FocusTarget"
L["party"] = "隊友"
L["party1"] = "隊友1"
L["party2"] = "隊友2"
L["party3"] = "隊友3"
L["party4"] = "隊友4"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "競技場敵人"
L["arena1"] = "競技場敵人1"
L["arena2"] = "競技場敵人2"
L["arena3"] = "競技場敵人3"
L["arena4"] = "競技場敵人4"
L["arena5"] = "競技場敵人5"
L["None"] = "無"
L["Position"] = "Position"
L["Position:"] = "Position:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "單位配置"
L["Enabled"] = "啟用"
L["DisableInBG"] = "禁止在战场"
L["DisableInArena"] = "Disable in Arena"
L["DisableInRaid"] = "Disable in raid group (ignored in arena and BGs)"
L["DisableInterrupts"] = "Disable Interrupt category for this unit"
L["ShowNPCInterrupts"] = "Also show Interrupts for NPC units"
L["DisablePlayerTargetTarget"] = "Disable when unit is Player"
L["DisableTargetTargetTarget"] = "Disable when unit is Target"
L["DisablePlayerTargetPlayerTargetTarget"] = "Disabe when unit and Target are Player"
L["DisableTargetDeadTargetTarget"] = "Disable when Target is a dead unit"
L["DisableFocusFocusTarget"] = "Disable when unit is Focus"
L["DisablePlayerFocusPlayerFocusTarget"] = "Disabe when unit and Focus are Player"
L["DisableFocusDeadFocusTarget"] = "Disable when Focus is a dead unit"
L["DuplicatePlayerPortrait"] = "Duplicate Icon to show in Portrait"
L["EnabledPartyPlayerIcon"] = "Enable Party Icon for Player unit"
L["EnableElementalSchoolMiniIcon"] = "Enable Elemental multi-school Interrupt MiniIcon"
L["EnableChaosSchoolMiniIcon"] = "Enable Chaos multi-school Interrupt MiniIcon"
L["UseSpellInsteadSchoolMiniIcon"] = "Use Spell as Interrupt MiniIcon instead School"
L["SwipeCooldownOpacity"] = "Swipe Cooldown Opacity"
L["Anchor"] = "錨點"
L["anchor:"] = "錨點:"
L["icon anchor:"] = "偶像 錨點:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anchored to:"
L["AnchorPositionDropDownAnchorLabel"] = "unit anchor: "
L["CategoriesEnabledLabel"] = "Enabled for the following categories (|cff00ff00[F]|r is friendly unit, |cffff0000[E]|r is enemy unit, |cff134d56[B]|r is helpful aura, \n|cff543f16[D]|r is harmful aura):"
L["AdditionalOptionsLabel"] = "Additional options:"
L["InterruptBackgroundOpacity"] = "Interrupt Background Opacity"
L["InterruptBackgroundColor"] = "Interrupt Background Color Mask"
L["InterruptMiniIconsOpacity"] = "Interrupt MiniIcons Opacity"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "層級"
L["Icon Size"] = "大小"
L["Opacity"] = "透明度"
L["Unlock"] = "解鎖"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = "(拖動圖示移動)"
L["Disable OmniCC Support"] = "禁用 OmniCC 支持"
L["Disable Blizzard Countdown"] = "Disable Blizzard Countdown"
L["DisableLossOfControlCooldownText"] = "Disable Cooldown on player bars for CC effects"
L["NeedsReload"] = "Needs ReloadUI to take effect"
L["Priority"] = "優先"
L["PriorityDescription"] = "設置優先級為每個法術類。數字越大,有更高的優先級。 0禁用之類的。"
L["BlizzardLossOfControl"] = "Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlCombatWarning"] = "Can't modify these options in combat"
L["BlizzardLossOfControlDescription"] = "Control the WoW CVars to enable/disable the CC alerts implemented by Blizzard by default (only for the \nPlayer unit). It is recommended to disable them and use the addon CC alerts instead."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Enable Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlGeneralTextChecked"] = "Enable Blizzard LossOfControl Alerts (recommendation: disable this option)"
L["Off"] = "Off"
L["Only Alert"] = "Only Alert"
L["Show Full Duration"] = "Show Full Duration"
L["LoseControl reset."] = "LoseControl 已重置"
else -- default English
L["CC"] = "CC"
L["Silence"] = "Silence"
L["Interrupt"] = "Interrupt"
L["Disarm"] = "Disarm"
L["Root"] = "Root"
L["Snare"] = "Snare"
L["Immune"] = "Immune"
L["ImmuneSpell"] = "Immune to Spells"
L["ImmunePhysical"] = "Immune to Physical"
L["Other"] = "Other"
L["PvE"] = "PvE"
L["player"] = "Player"
L["pet"] = "Pet"
L["target"] = "Target"
L["targettarget"] = "TargetTarget"
L["focus"] = "Focus"
L["focustarget"] = "FocusTarget"
L["party"] = "Party"
L["party1"] = "Party 1"
L["party2"] = "Party 2"
L["party3"] = "Party 3"
L["party4"] = "Party 4"
L["raid"] = "Raid"
L["nameplate"] = "Nameplate"
L["arena"] = "Arena Enemies"
L["arena1"] = "Arena Enemy 1"
L["arena2"] = "Arena Enemy 2"
L["arena3"] = "Arena Enemy 3"
L["arena4"] = "Arena Enemy 4"
L["arena5"] = "Arena Enemy 5"
L["None"] = "None"
L["Position"] = "Position"
L["Position:"] = "Position:"
L["x:"] = "x:"
L["y:"] = "y:"
L["r:"] = "r:"
L["g:"] = "g:"
L["b:"] = "b:"
L["Unit Configuration"] = "Unit Configuration"
L["Enabled"] = "Enabled"
L["DisableInBG"] = "Disable in Battlegrounds"
L["DisableInArena"] = "Disable in Arena"
L["DisableInRaid"] = "Disable in raid group (ignored in arena and BGs)"
L["DisableInterrupts"] = "Disable Interrupt category for this unit"
L["ShowNPCInterrupts"] = "Also show Interrupts for NPC units"
L["DisablePlayerTargetTarget"] = "Disable when unit is Player"
L["DisableTargetTargetTarget"] = "Disable when unit is Target"
L["DisablePlayerTargetPlayerTargetTarget"] = "Disabe when unit and Target are Player"
L["DisableTargetDeadTargetTarget"] = "Disable when Target is a dead unit"
L["DisableFocusFocusTarget"] = "Disable when unit is Focus"
L["DisablePlayerFocusPlayerFocusTarget"] = "Disabe when unit and Focus are Player"
L["DisableFocusDeadFocusTarget"] = "Disable when Focus is a dead unit"
L["DuplicatePlayerPortrait"] = "Duplicate Icon to show in Portrait"
L["EnabledPartyPlayerIcon"] = "Enable Party Icon for Player unit"
L["EnableElementalSchoolMiniIcon"] = "Enable Elemental multi-school Interrupt MiniIcon"
L["EnableChaosSchoolMiniIcon"] = "Enable Chaos multi-school Interrupt MiniIcon"
L["UseSpellInsteadSchoolMiniIcon"] = "Use Spell as Interrupt MiniIcon instead School"
L["SwipeCooldownOpacity"] = "Swipe Cooldown Opacity"
L["Anchor"] = "Anchor"
L["anchor:"] = "anchor:"
L["icon anchor:"] = "icon anchor:"
L["frame strata:"] = "frame strata:"
L["frame level:"] = "frame level:"
L["Anchored to:"] = "Anchored to:"
L["AnchorPositionDropDownAnchorLabel"] = "unit anchor: "
L["CategoriesEnabledLabel"] = "Enabled for the following categories (|cff00ff00[F]|r is friendly unit, |cffff0000[E]|r is enemy unit, |cff134d56[B]|r is helpful aura, \n|cff543f16[D]|r is harmful aura):"
L["AdditionalOptionsLabel"] = "Additional options:"
L["InterruptBackgroundOpacity"] = "Interrupt Background Opacity"
L["InterruptBackgroundColor"] = "Interrupt Background Color Mask"
L["InterruptMiniIconsOpacity"] = "Interrupt MiniIcons Opacity"
L["CatFriendly"] = "|cff00ff00[F]|r"
L["CatEnemy"] = "|cffff0000[E]|r"
L["CatFriendlyBuff"] = "|cff00ff00[F]|r|cff134d56[B]|r"
L["CatFriendlyDebuff"] = "|cff00ff00[F]|r|cff543f16[D]|r"
L["CatEnemyBuff"] = "|cffff0000[E]|r|cff134d56[B]|r"
L["CatEnemyDebuff"] = "|cffff0000[E]|r|cff543f16[D]|r"
L["Strata"] = "Strata"
L["Icon Size"] = "Icon Size"
L["Opacity"] = "Opacity"
L["Unlock"] = "Unlock"
L["ReloadUI"] = "ReloadUI"
L[" (drag an icon to move)"] = " (drag an icon to move)"
L["Disable OmniCC Support"] = "Disable OmniCC Support"
L["Disable Blizzard Countdown"] = "Disable Blizzard Countdown"
L["DisableLossOfControlCooldownText"] = "Disable Cooldown on player bars for CC effects"
L["NeedsReload"] = "Needs ReloadUI to take effect"
L["Priority"] = "Priority"
L["PriorityDescription"] = "Set the priority for each spell category below. Higher numbers have more priority. 0 disables the category."
L["BlizzardLossOfControl"] = "Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlCombatWarning"] = "Can't modify these options in combat"
L["BlizzardLossOfControlDescription"] = "Control the WoW CVars to enable/disable the CC alerts implemented by Blizzard by default (only for the \nPlayer unit). It is recommended to disable them and use the addon CC alerts instead."
L["BlizzardLossOfControlGeneralTextUnchecked"] = "Enable Blizzard LossOfControl Alerts"
L["BlizzardLossOfControlGeneralTextChecked"] = "Enable Blizzard LossOfControl Alerts (recommendation: disable this option)"
L["Off"] = "Off"
L["Only Alert"] = "Only Alert"
L["Show Full Duration"] = "Show Full Duration"
L["LoseControl reset."] = "LoseControl reset."
end