-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocalization.lua
More file actions
877 lines (860 loc) · 65.8 KB
/
Localization.lua
File metadata and controls
877 lines (860 loc) · 65.8 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
-- Postal Locale File
-- THIS CONTENTS OF THIS FILE IS AUTO-GENERATED BY THE WOWACE PACKAGER
-- Please use the Localization App on WoWAce to update this
-- at http://www.wowace.com/projects/postal/localization/
local AL3 = LibStub("AceLocale-3.0")
local debug = false
--[===[@debug@
debug = true
--@end-debug@]===]
local L = AL3:NewLocale("Postal", "enUS", true, debug)
if L then
L["A button that collects all attachments and coins from mail."] = true
L["AH-related mail"] = true
L["Add Contact"] = true
L["Add check boxes to the inbox for multiple mail operations."] = true
L["Add multiple item mail tooltips"] = true
L["Adds a contact list next to the To: field."] = true
L["Allows you to copy the contents of a mail."] = true
L["Alts"] = true
L["Auto-Send on Alt-Click"] = true
L["Autofill last person mailed"] = true
L["BlackBook"] = true
L["Block incoming trade requests while in a mail session."] = true
L["CarbonCopy"] = true
L["Choose"] = true
L["Clear list"] = true
L["Collected"] = true
L["Contacts"] = true
L["Copy From"] = true
L["Copy this mail"] = true
L["Delete"] = true
L["Disable Blizzard's auto-completion popup menu"] = true
L["DoNotWant"] = true
L["Enable Alt-Click to send mail"] = true
L["Exclude randoms you interacted with"] = true
L["Express"] = true
L["Friends"] = true
L["Guild"] = true
L["Help"] = true
L["In Progress"] = true
L["Keep free space"] = true
L["Mouse click short cuts for mail."] = true
L["Mousewheel to scroll Inbox"] = true
L["Name auto-completion options"] = true
L["New Profile"] = true
L["New Profile Name:"] = true
L["Non-AH related mail"] = true
L["Not all messages are shown, refreshing mailbox soon to continue Open All..."] = true
L["Not taking more items as there are now only %d regular bagslots free."] = true
L["Open"] = true
L["Open All"] = true
L["Open all Auction cancelled mail"] = true
L["Open all Auction expired mail"] = true
L["Open all Auction successful mail"] = true
L["Open all Auction won mail"] = true
L["Open all Outbid on mail"] = true
L["Open all mail with attachments"] = true
L["OpenAll"] = true
L["Opening Speed"] = true
L["Other options"] = true
L["Part %d"] = true
L["Please post bugs or suggestions at the wowace forums thread at |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. When posting bugs, indicate your locale and Postal's version number v%s."] = true
L["Prints the amount of money collected during a mail session."] = true
L["Processing Message"] = true
L["Profile"] = true
L["Rake"] = true
L["Recently Mailed"] = true
L["Refreshing mailbox..."] = true
L["Remove Contact"] = true
L["Reset Profile"] = true
L["Return"] = true
L["Select"] = true
L["Set subject field to value of coins sent if subject is blank."] = true
L["Shows a clickable visual icon as to whether a mail will be returned or deleted on expiry."] = true
L["Skipping"] = true
L["Some Messages May Have Been Skipped."] = true
L["There are %i more messages not currently shown."] = true
L["There are %i more messages not currently shown. More should become available in %i seconds."] = true
L["TradeBlock"] = true
L["Use Postal's auto-complete"] = true
L["Verbose mode"] = true
L["Wire"] = true
L[ [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = true
L[ [=[|cFFFFCC00*|r Shift-Click to take item/money from mail.
|cFFFFCC00*|r Ctrl-Click to return mail.
|cFFFFCC00*|r Alt-Click to move an item from your inventory to the current outgoing mail (same as right click in default UI).
|cFFFFCC00*|r Mousewheel to scroll the inbox.]=] ] = true
L[ [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = true
L[ [=[|cFFFFCC00*|r This module will list your contacts, friends, guild mates, alts and track the last 10 people you mailed.
|cFFFFCC00*|r It will also autocomplete all names in your BlackBook.]=] ] = true
L["|cffeda55fAlt-Click|r to send this item to %s."] = true
L["|cffeda55fCtrl-Click|r to return it to sender."] = true
L["|cffeda55fShift-Click|r to take the contents."] = true
if GetLocale() == "enUS" or GetLocale() == "enGB" then return end
end
local L = AL3:NewLocale("Postal", "deDE")
if L then
L["A button that collects all attachments and coins from mail."] = "Eine Taste, die alle Anhänge und Geld von Nachrichten entnimmt."
L["AH-related mail"] = "Auktionshaus Nachrichten"
L["Add Contact"] = "Kontakt hinzufügen"
L["Add check boxes to the inbox for multiple mail operations."] = "Fügt dem Posteingang Kontrollkästchen für zusätzliche Bearbeitungsmöglichkeiten von Nachrichten hinzu."
L["Add multiple item mail tooltips"] = "Füge mehrere Gegenstandstooltips den Mails hinzu."
L["Adds a contact list next to the To: field."] = "Setzt eine Kontaktliste neben das Empfängerfeld."
L["Allows you to copy the contents of a mail."] = "Erlaubt Dir die Inhalte einer Nachricht zu kopieren."
L["Alts"] = "Twinks"
L["Auto-Send on Alt-Click"] = "Auto-Senden bei Alt-Klick"
L["Autofill last person mailed"] = "Autoeinfügen des Namens der zuletzt angeschriebenen Person."
L["BlackBook"] = "Schwarzes Buch"
L["Block incoming trade requests while in a mail session."] = "Blockt eingehende Handelsversuche von Spielern solange der Briefkasten geöffnet ist."
L["CarbonCopy"] = "Kopie"
L["Choose"] = "Auswählen"
L["Clear list"] = "Liste leeren"
L["Collected"] = "Gesammelt"
L["Contacts"] = "Kontakte"
L["Copy From"] = "Kopieren von"
L["Copy this mail"] = "Diese Nachricht kopieren"
L["Delete"] = "Löschen"
L["Disable Blizzard's auto-completion popup menu"] = "Deaktiviere Blizzard's Auto-Vervollständigungs-Popup-Menü"
L["DoNotWant"] = "Post Status"
L["Enable Alt-Click to send mail"] = "Aktiviere Alt-Klick zum Senden von Nachrichten."
L["Exclude randoms you interacted with"] = "Schließe Zufallsspieler aus mit denen Du Kontakt hattest"
L["Express"] = "Express"
L["Friends"] = "Freunde"
L["Guild"] = "Gilde"
L["Help"] = "Hilfe"
L["In Progress"] = "In Bearbeitung"
L["Keep free space"] = "Platz freihalten"
L["Mouse click short cuts for mail."] = "Mauskürzel für Nachrichten."
L["Mousewheel to scroll Inbox"] = "Mausrad zum Durchblättern des Posteingangs"
L["Name auto-completion options"] = "Optionen für automatisch Namen vervollständigen"
L["New Profile"] = "Neues Profil"
L["New Profile Name:"] = "Neuer Profilname:"
L["Non-AH related mail"] = "Nicht-AH betreffende Nachricht"
L["Not all messages are shown, refreshing mailbox soon to continue Open All..."] = "Es werden nicht alle Nachrichten angezeigt, aktualisiere den Posteingang umgehend um mit \"Öffne Alle\" fortzufahren."
L["Not taking more items as there are now only %d regular bagslots free."] = "Es werden keine weiteren Gegenstände angenommen, weil nur mehr %s reguläre Taschenplätze frei sind."
L["Open"] = "Öffnen"
L["Open All"] = "Alle öffnen"
L["Open all Auction cancelled mail"] = "Öffne alle 'Auktion abgebrochen'-Nachrichten"
L["Open all Auction expired mail"] = "Öffne alle 'Auktion abgelaufen'-Nachrichten"
L["Open all Auction successful mail"] = "Öffne alle 'Auktion erfolgreich'-Nachrichten"
L["Open all Auction won mail"] = "Öffne alle 'Auktion gewonnen'-Nachrichten"
L["Open all Outbid on mail"] = "Öffne alle 'Überboten'-Nachrichten"
L["Open all mail with attachments"] = "Öffne alle Nachrichten mit Anhängen"
L["OpenAll"] = "Öffne alles"
L["Opening Speed"] = "Öffnungsgeschwindigkeit"
L["Other options"] = "Weitere Optionen"
L["Part %d"] = "Teil %d"
L["Please post bugs or suggestions at the wowace forums thread at |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. When posting bugs, indicate your locale and Postal's version number v%s."] = "Bitte melde Fehler oder Anregungen im Wowace-Forumsthread unter |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. Wenn du Fehler meldest, gebe bitte deine Sprache und Postals Versionsnummer v%s an."
L["Prints the amount of money collected during a mail session."] = "Gibt im Chat aus wieviel Gold bei einer Nachrichten-Sitzung am Briefkasten entnommen wurde."
L["Processing Message"] = "Bearbeite Nachricht"
L["Profile"] = "Profil"
L["Rake"] = "Scheffeln"
L["Recently Mailed"] = "Kürzlich versendet"
L["Refreshing mailbox..."] = "Aktualisiere Posteingang..."
L["Remove Contact"] = "Kontakt entfernen"
L["Reset Profile"] = "Profil zurücksetzen"
L["Return"] = "Zurück"
L["Select"] = "Auswählen"
L["Set subject field to value of coins sent if subject is blank."] = "Setzt den Betreff auf die Menge des verschickten Goldes falls dieser leer ist."
L["Shows a clickable visual icon as to whether a mail will be returned or deleted on expiry."] = "Zeigt ein anklickbares visuelles Symbol, ob eine Mail zurückgeschickt oder nach ihrem Ablauf gelöscht werden wird"
L["Skipping"] = "Überspringe"
L["Some Messages May Have Been Skipped."] = "Einige Nachrichten können ausgelassen worden sein."
L["There are %i more messages not currently shown."] = "Es gibt %i weitere Nachrichten die im Moment nicht angezeigt werden."
L["There are %i more messages not currently shown. More should become available in %i seconds."] = "Es gibt %i weitere Nachrichten die im Moment nicht angezeigt werden. Weitere sollten in %i Sekunden verfügbar sein."
L["TradeBlock"] = "Handelsblock"
L["Use Postal's auto-complete"] = "Postal's autom. Vervollständigung verwenden"
L["Verbose mode"] = "Ausführlicher Modus"
L["Wire"] = "AutoGold"
L[ [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r Ausgewählte Nachrichten werden alle geöffnet oder zurückgeschickt bei Klick auf Öffnen oder Zurückschicken.
|cFFFFCC00*|r Du kannst auf zwei Kontrollkästchen Shift-Klicken um alle Nachrichten dazwischen auszuwählen.
|cFFFFCC00*|r Du kannst mit Strg-Klick auf ein Kontrollkästchen alle Nachrichten dieses Absenders aus- oder abwählen.
|cFFFFCC00*|r "Auswählen" löscht nie Nachrichten (Nachrichten ohne Text werden automatisch vom Spiel gelöscht sobald alle angehängten Gegenstände oder Gold entnommen wurden).
|cFFFFCC00*|r "Auswählen" überspringt Nachnahmesendungen und Nachrichten von Blizzard.
|cFFFFCC00*|r Deaktiviere den ausführlichen Modus um den Chatspam beim Öffnen von Post abzustellen.]=]
L[ [=[|cFFFFCC00*|r Shift-Click to take item/money from mail.
|cFFFFCC00*|r Ctrl-Click to return mail.
|cFFFFCC00*|r Alt-Click to move an item from your inventory to the current outgoing mail (same as right click in default UI).
|cFFFFCC00*|r Mousewheel to scroll the inbox.]=] ] = [=[|cFFFFCC00*|r Shift-Klick um Gegenstände/Gold aus Nachrichten zu entnehmen.
|cFFFFCC00*|r Strg-Klick um die Nachricht zurückzuschicken.
|cFFFFCC00*|r Alt-Klick um einen Gegenstand aus dem Inventar an die ausgehende Nachricht anzuhängen (gleich dem Rechtsklick der Standard-UI).
|cFFFFCC00*|r Ermöglicht das Durchblättern des Postfachs mit dem Mausrad.]=]
L[ [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r Einfache Filter sind für verschiedene Nachrichtstypen verfügbar.
|cFFFFCC00*|r Shift-Klick auf den "Alle öffnen"-Knopf ignoriert Filter und öffnet alle Nachrichten.
|cFFFFCC00*|r "Alle öffnen" löscht niemals Nachrichten (Nachrichten ohne Text werden automatisch vom Spiel gelöscht sobald alle angehängten Gegenstände oder Gold entnommen wurden).
|cFFFFCC00*|r "Alle öffnen" überspringt Nachnahmesendungen und Nachrichten von Blizzard.
|cFFFFCC00*|r Deaktiviere den ausführlichen Modus um den Chatspam beim Öffnen von Post abzustellen.]=]
L[ [=[|cFFFFCC00*|r This module will list your contacts, friends, guild mates, alts and track the last 10 people you mailed.
|cFFFFCC00*|r It will also autocomplete all names in your BlackBook.]=] ] = [=[|cFFFFCC00*|r Dieses Modul zeigt eine Liste deiner Kontakte, Freunde, Gildenmitglieder und Alts und merkt sich die letzten 10 Empfänger gesendeter Nachrichten.
|cFFFFCC00*|r Außerdem vervollständigt es automatisch alle Namen in deinem schwarzen Buch.]=]
L["|cffeda55fAlt-Click|r to send this item to %s."] = "|cffeda55fAlt+Klick|r um diesen Gegenstand an %s zu senden."
L["|cffeda55fCtrl-Click|r to return it to sender."] = "|cffeda55fStrg+Klick|r um diesen Gegenstand zurückzusenden."
L["|cffeda55fShift-Click|r to take the contents."] = "|cffeda55fShift+Klick|r um Gegenstand zu entnehmen."
return
end
local L = AL3:NewLocale("Postal", "esES") or AL3:NewLocale("Postal", "esMX")
if L then
L["A button that collects all attachments and coins from mail."] = "Un botón que recoge todos los adjuntos y el dinero del correo."
L["AH-related mail"] = "Correo relacionado con la Casa de Subastas"
L["Add Contact"] = "Añadir Contacto"
L["Add check boxes to the inbox for multiple mail operations."] = "Añade casillas de verificación a la bandeja de entrada para múltiples operaciones de correo."
L["Add multiple item mail tooltips"] = "Añadir tooltips en correos con múltiples objetos"
L["Adds a contact list next to the To: field."] = "Añade una lista de contactos al lado del campo Para:"
L["Allows you to copy the contents of a mail."] = "Te permite copiar el contenido de un correo."
L["Alts"] = "Alts"
L["Auto-Send on Alt-Click"] = "Auto-Enviar con Alt-click"
L["Autofill last person mailed"] = "AutoRellenar última persona enviada por correo"
L["BlackBook"] = "Libro Negro"
L["Block incoming trade requests while in a mail session."] = "Bloquea las solicitudes entrantes de comercio mientras se está en una sesión de correo."
L["CarbonCopy"] = "CopiaCarboncillo"
L["Choose"] = "Escoger"
L["Clear list"] = "Limpiar lista"
L["Collected"] = "Recogido"
L["Contacts"] = "Contactos"
L["Copy From"] = "Copiar Desde"
L["Copy this mail"] = "Copiar este correo"
L["Delete"] = "Borrar"
L["Disable Blizzard's auto-completion popup menu"] = "Desactivar la ventana emergente de auto completado de Blizzard"
L["DoNotWant"] = "No quieres"
L["Enable Alt-Click to send mail"] = "Habilitar Alt-Click para enviar correo"
L["Exclude randoms you interacted with"] = "Excluir aleatorios que interactuaron con"
L["Express"] = "Rápido"
L["Friends"] = "Amigos"
L["Guild"] = "Hermandad"
L["Help"] = "Ayuda"
L["In Progress"] = "En Progreso"
L["Keep free space"] = "Guardar espacio libre"
L["Mouse click short cuts for mail."] = "Atajos de click del ratón para el correo."
L["Mousewheel to scroll Inbox"] = "Rueda del ratón para desplazarse en la Bandeja de entrada"
L["Name auto-completion options"] = "Opciones de auto completado de nombre"
L["New Profile"] = "Perfil Nuevo"
L["New Profile Name:"] = "Nombre del Perfil Nuevo:"
L["Non-AH related mail"] = "Correo no relacionado con la Casa de Subastas"
-- L["Not all messages are shown, refreshing mailbox soon to continue Open All..."] = "Not all messages are shown, refreshing mailbox soon to continue Open All..."
L["Not taking more items as there are now only %d regular bagslots free."] = "No cogeré mas objetos ya que ahora solo quedan %d espacios libres en las bolsas."
L["Open"] = "Abrir"
L["Open All"] = "Abrir Todo"
L["Open all Auction cancelled mail"] = "Abrir todo el correo de cancelaciones de Subasta"
L["Open all Auction expired mail"] = "Abrir todo el correo de expiraciones de Subasta"
L["Open all Auction successful mail"] = "Abrir todo el correo de Subastas con éxito"
L["Open all Auction won mail"] = "Abrir todo el correo de Subastas ganadas"
L["Open all Outbid on mail"] = "Abrir todo el correo en Sobrepujas"
L["Open all mail with attachments"] = "Abrir todo el correo con adjuntos"
L["OpenAll"] = "Abrir Todo"
L["Opening Speed"] = "Velocidad de Apertura"
L["Other options"] = "Otras opciones"
L["Part %d"] = "Parte %d"
L["Please post bugs or suggestions at the wowace forums thread at |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. When posting bugs, indicate your locale and Postal's version number v%s."] = "Por favor, informe de fallos o sugerencias en el hilo del foro de wowace en |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. Al publicar errores, indique su localización y el número de versión de Postal v %s."
L["Prints the amount of money collected during a mail session."] = "Imprime la cantidad de dinero reunida durante una sesión de correo."
L["Processing Message"] = "Procesando Mensaje"
L["Profile"] = "Perfil"
L["Rake"] = "Rastrillo"
L["Recently Mailed"] = "Enviado Recientemente "
-- L["Refreshing mailbox..."] = "Refreshing mailbox..."
L["Remove Contact"] = "Eliminar Contacto"
L["Reset Profile"] = "Restablecer Perfil"
L["Return"] = "Devolver"
L["Select"] = "Seleccionar"
L["Set subject field to value of coins sent if subject is blank."] = "Establecer el campo asunto con el valor de monedas enviado si el asunto está en blanco."
L["Shows a clickable visual icon as to whether a mail will be returned or deleted on expiry."] = "Muestra un icono visual clickable donde podrás devolver o borrar un correo."
L["Skipping"] = "Omitir"
L["Some Messages May Have Been Skipped."] = "Algunos mensajes pueden haberse omitido."
L["There are %i more messages not currently shown."] = "Hay %i mensajes mas por mostrar."
L["There are %i more messages not currently shown. More should become available in %i seconds."] = "Hay %i mensajes mas por mostrar. Estarán disponibles en %i segundos."
L["TradeBlock"] = "Bloquear Comercio"
L["Use Postal's auto-complete"] = "Usar el auto completar de Postal"
L["Verbose mode"] = "Modo \"Info Extra\""
L["Wire"] = "Cable"
--[==[ L[ [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ]==]
L[ [=[|cFFFFCC00*|r Shift-Click to take item/money from mail.
|cFFFFCC00*|r Ctrl-Click to return mail.
|cFFFFCC00*|r Alt-Click to move an item from your inventory to the current outgoing mail (same as right click in default UI).
|cFFFFCC00*|r Mousewheel to scroll the inbox.]=] ] = [=[|cFFFFCC00*|r Shift-Click para coger objetos/dinero del correo.
|cFFFFCC00*|r Ctrl-Click para devolver el correo.
|cFFFFCC00*|r Alt-Click para mover un objeto del inventario al correo de salida actual (igual que click derecho en UI predeterminado).
|cFFFFCC00*|r Rueda del ratón para desplazarse en la bandeja de entrada.]=]
--[==[ L[ [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ]==]
L[ [=[|cFFFFCC00*|r This module will list your contacts, friends, guild mates, alts and track the last 10 people you mailed.
|cFFFFCC00*|r It will also autocomplete all names in your BlackBook.]=] ] = [=[|cFFFFCC00*|r Este modulo te mostrara tus contactos, amigos, compañeros de hermandad, alters y listara los ultimas 10 personas a las que tu mandaste un correo.
|cFFFFCC00*|r Ademas auto completara todos los nombres en tu Libro Negro.]=]
L["|cffeda55fAlt-Click|r to send this item to %s."] = "|cffeda55fAlt-Clic|r para enviar este objeto a %s"
L["|cffeda55fCtrl-Click|r to return it to sender."] = "|cffeda55fCtrl-Clic|r para devolverlo al que te lo ha enviado"
L["|cffeda55fShift-Click|r to take the contents."] = "|cffeda55fMayúsculas-Clic|r para coger el contenido"
return
end
local L = AL3:NewLocale("Postal", "frFR")
if L then
L["A button that collects all attachments and coins from mail."] = "Un bouton qui récolte toutes les pièces jointes ainsi que l'argent du courrier."
L["AH-related mail"] = "Courriers relatifs à l'HV"
L["Add Contact"] = "Ajouter un contact"
L["Add check boxes to the inbox for multiple mail operations."] = "Ajoute des cases à cocher à la boîte de réception afin d'opérer sur plusieurs courriers en même temps."
L["Add multiple item mail tooltips"] = "Ajouter plusieurs article à l'info bulles du courrier"
L["Adds a contact list next to the To: field."] = "Ajoute une liste des contacts à côté du champ \"À :\"."
L["Allows you to copy the contents of a mail."] = "T'autorises de copier le contenu d'un courrier."
L["Alts"] = "Rerolls"
L["Auto-Send on Alt-Click"] = "Envoi auto. au Alt-clic gauche"
L["Autofill last person mailed"] = "Resaisir la dernière personne contactée"
L["BlackBook"] = "BlackBook"
L["Block incoming trade requests while in a mail session."] = "Bloque les demandes d'échange lors de la consultation du courrier."
L["CarbonCopy"] = "Copie identique"
L["Choose"] = "Choisir"
L["Clear list"] = "Effacer la liste"
L["Collected"] = "Récupéré"
L["Contacts"] = "Contacts"
L["Copy From"] = "Copier à partir de"
L["Copy this mail"] = "Copier ce mail"
L["Delete"] = "Supprimer"
L["Disable Blizzard's auto-completion popup menu"] = "Désactiver le pop-up d'auto-complétion de Blizzard"
L["DoNotWant"] = "VeuxPas"
L["Enable Alt-Click to send mail"] = "Activer Alt-clic gauche pour envoyer le courrier"
L["Exclude randoms you interacted with"] = "Exclure les interactions aléatoires "
L["Express"] = "Express"
L["Friends"] = "Amis"
L["Guild"] = "Guilde"
L["Help"] = "Aide"
L["In Progress"] = "En cours"
L["Keep free space"] = "Garder l'espace libre"
L["Mouse click short cuts for mail."] = "Raccourcis souris pour le courrier."
L["Mousewheel to scroll Inbox"] = "Molette pour faire défiler la boîte de réception"
L["Name auto-completion options"] = "Options d'auto-complétion de nom"
L["New Profile"] = "Nouveau profil"
L["New Profile Name:"] = "Nom du nouveau profil :"
L["Non-AH related mail"] = "Courriers non relatifs à l'HV"
L["Not all messages are shown, refreshing mailbox soon to continue Open All..."] = "Tous les courriers ne sont pas affichés, réouvrir la boîte aux lettres dans quelques secondes pour pouvoir tous les ouvrir..."
L["Not taking more items as there are now only %d regular bagslots free."] = "N'accepte pas plus d'items puisqu'il n'y a que %d espaces libres dans les sacs réguliers"
L["Open"] = "Ouvrir"
L["Open All"] = "Tout ouvrir"
L["Open all Auction cancelled mail"] = "Ouvrir tous les courriers des enchères annulées"
L["Open all Auction expired mail"] = "Ouvrir tous les courriers des enchères expirées"
L["Open all Auction successful mail"] = "Ouvrir tous les courriers des enchères réussies"
L["Open all Auction won mail"] = "Ouvrir tous les courriers des enchères gagnées"
L["Open all Outbid on mail"] = "Ouvrir tous les courriers des enchères surenchéries"
L["Open all mail with attachments"] = "Ouvrir tous les courriers avec pièces jointes"
L["OpenAll"] = "OpenAll"
L["Opening Speed"] = "Vitesse d'ouverture"
L["Other options"] = "Autres options"
L["Part %d"] = "Partie %d"
L["Please post bugs or suggestions at the wowace forums thread at |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. When posting bugs, indicate your locale and Postal's version number v%s."] = "Merci de signaler les bogues ou de faire part de vos suggestions sur le sujet du forum WoWAce dédié à Postal : |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. Lors du signalement d'un bogue, indiquez la langue de votre jeu ainsi que le numéro de version de Postal v%s."
L["Prints the amount of money collected during a mail session."] = "Indique la quantité d'argent récolté pendant la consultation du courrier."
L["Processing Message"] = "En cours"
L["Profile"] = "Profil"
L["Rake"] = "Rake"
L["Recently Mailed"] = "Récents"
L["Refreshing mailbox..."] = "Rafraichir la boîte aux lettres..."
L["Remove Contact"] = "Supprimer un contact"
L["Reset Profile"] = "Réinitialiser le profil"
L["Return"] = "Renvoi"
L["Select"] = "Select"
L["Set subject field to value of coins sent if subject is blank."] = "Indique dans le sujet le montant d'argent envoyé si le sujet est blanc."
L["Shows a clickable visual icon as to whether a mail will be returned or deleted on expiry."] = "Affiche une icône visuelle cliquable pour savoir si un mail vous sera retournée ou supprimés à l'expiration."
L["Skipping"] = "Passe"
L["Some Messages May Have Been Skipped."] = "Certains messages n'ont peut-être pas été ouverts."
L["There are %i more messages not currently shown."] = "Il y a %i messages supplémentaires non-affichés"
L["There are %i more messages not currently shown. More should become available in %i seconds."] = "Il ya des messages %i de plus ne sont pas actuellement affichés."
L["TradeBlock"] = "TradeBlock"
L["Use Postal's auto-complete"] = "Utiliser l'auto-complétion de Postal"
L["Verbose mode"] = "Mode verbose"
L["Wire"] = "Wire"
L[ [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r Les courriers sélectionnés seront soit ouverts soit renvoyés selon si vous avez cliqué respectivement sur Ouvrir ou Renvoi.
|cFFFFCC00*|r Vous pouvez faire Shift-clic gauche sur 2 cases à cocher afin de sélectionner tous les courriers présents entre ces 2 cases.
|cFFFFCC00*|r Vous pouvez faire Ctrl-clic gauche sur une case à cocher pour (dé)sélectionner tous les courriers de cet expéditeur.
|cFFFFCC00*|r Select ne supprimera jamais un seul courrier (les courriers sans texte sont automatiquement supprimés par le jeu quand tous les objets joints et tout l'argent ont été pris).
|cFFFFCC00*|r Select n'ouvrira pas les couriers C.R. ainsi que ceux provenant de Blizzard.
|cFFFFCC00*|r Désactiver l'option Verbose pour enlever le spam de la fenêtre de discussion pendant l'ouverture du courrier.]=]
L[ [=[|cFFFFCC00*|r Shift-Click to take item/money from mail.
|cFFFFCC00*|r Ctrl-Click to return mail.
|cFFFFCC00*|r Alt-Click to move an item from your inventory to the current outgoing mail (same as right click in default UI).
|cFFFFCC00*|r Mousewheel to scroll the inbox.]=] ] = [=[|cFFFFCC00*|r Shift-clic gauche pour prendre le contenu du courrier.
|cFFFFCC00*|r Ctrl-clic gauche pour renvoyer le courrier.
|cFFFFCC00*|r Alt-clic gauche pour déplacer un objet de votre inventaire vers le courrier sortant actuel (même comportement que le clic droit dans l'IU par défaut).
|cFFFFCC00*|r Molette de la souris pour faire défiler la boîte de réception.]=]
L[ [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r De simple filtres sont disponibles pour divers types de courrier.
|cFFFFCC00*|r Shift-clic gauche sur le bouton "Tout ouvrir" pour outrepasser les filtres et ouvrir TOUS les courriers.
|cFFFFCC00*|r OpenAll ne supprimera jamais un seul courrier (les courriers sans texte sont automatiquement supprimés par le jeu quand tous les objets joints et tout l'argent ont été pris).
|cFFFFCC00*|r OpenAll n'ouvrira pas les couriers C.R. ainsi que ceux provenant de Blizzard.
|cFFFFCC00*|r Désactiver l'option Verbose pour enlever le spam de la fenêtre de discussion pendant l'ouverture du courrier.]=]
L[ [=[|cFFFFCC00*|r This module will list your contacts, friends, guild mates, alts and track the last 10 people you mailed.
|cFFFFCC00*|r It will also autocomplete all names in your BlackBook.]=] ] = [=[|cFFFFCC00*|r Ce module affichera vos contacts, vos amis, vos guild mates, vos rerolls ainsi que les 10 dernières personnes contactées.
|cFFFFCC00*|r Il remplira également automatiquement tous les noms présents dans votre BlackBook.]=]
L["|cffeda55fAlt-Click|r to send this item to %s."] = "|cffeda55fAlt-clic gauche|r pour envoyer cet objet à %s."
L["|cffeda55fCtrl-Click|r to return it to sender."] = "|cffeda55fCtrl-clic gauche|r pour renvoyer à l'expéditeur."
L["|cffeda55fShift-Click|r to take the contents."] = "|cffeda55fMaj-clic gauche|r pour prendre le contenu."
return
end
local L = AL3:NewLocale("Postal", "koKR")
if L then
L["A button that collects all attachments and coins from mail."] = "편지의 모든 첨부물과 돈 받는 버튼"
L["AH-related mail"] = "경매장 우편"
L["Add Contact"] = "접속 목록에 추가"
L["Add check boxes to the inbox for multiple mail operations."] = "동시에 우편을 여러 개 받을 수 있도록 체크박스 추가"
L["Add multiple item mail tooltips"] = "다중 우편물 툴팁들 추가"
L["Adds a contact list next to the To: field."] = "다음 접속 목록에 추가하려면 To: field"
L["Allows you to copy the contents of a mail."] = "현재 우편을 복사합니다."
L["Alts"] = "내 캐릭터"
L["Auto-Send on Alt-Click"] = "Alt+클릭으로 자동보내기"
L["Autofill last person mailed"] = "마지막 수신자 자동완성"
L["BlackBook"] = "주소록"
L["Block incoming trade requests while in a mail session."] = "우편함을 열고 있는 동안 거래 자동 불가"
L["CarbonCopy"] = "복사본"
L["Choose"] = "선택"
L["Clear list"] = "목록 삭제"
L["Collected"] = "수집"
L["Contacts"] = "접속 목록"
L["Copy From"] = "복사"
L["Copy this mail"] = "현재 우편 복사"
L["Delete"] = "삭제"
L["Disable Blizzard's auto-completion popup menu"] = "Blizzard의 자동완성 팝업메뉴 비활성화"
L["DoNotWant"] = "원하지 않음"
L["Enable Alt-Click to send mail"] = "Alt-클릭으로 우편 보내기"
L["Exclude randoms you interacted with"] = "당신과 불규칙적인 거래자 제외" -- Needs review
L["Express"] = "빠른 우편"
L["Friends"] = "친구"
L["Guild"] = "길드"
L["Help"] = "도움말"
L["In Progress"] = "처리중"
L["Keep free space"] = "빈칸 유지"
L["Mouse click short cuts for mail."] = "마우스 클릭으로 빠른 우편 보내기"
L["Mousewheel to scroll Inbox"] = "마우스휠로 우편함 스크롤"
L["Name auto-completion options"] = "이름 자동완성 설정"
L["New Profile"] = "새로운 프로필"
L["New Profile Name:"] = "새로운 프로필 이름:"
L["Non-AH related mail"] = "나머지 우편"
L["Not all messages are shown, refreshing mailbox soon to continue Open All..."] = "모든 메시지가 표시되지 않습니다. 모두 열기를 시작하면 우편함이 갱신 됩니다."
L["Not taking more items as there are now only %d regular bagslots free."] = "현재 가방에 %d 공간이 남아 있어 더이상 아이템 가질 수 없습니다."
L["Open"] = "열기"
L["Open All"] = "모두 열기"
L["Open all Auction cancelled mail"] = "경매 취소 우편 모두 열기"
L["Open all Auction expired mail"] = "기한만료 우편 모두 열기"
L["Open all Auction successful mail"] = "경매 성사된 우편 모두 열기"
L["Open all Auction won mail"] = "경매 낙찰된 우편 모두 열기"
L["Open all Outbid on mail"] = "경매 상위 입찰된 우편 모두 열기"
L["Open all mail with attachments"] = "첨부된 우편 모두 열기"
L["OpenAll"] = "모두 열기"
L["Opening Speed"] = "열기 속도"
L["Other options"] = "기타 설정들"
L["Part %d"] = "부분 %d"
L["Please post bugs or suggestions at the wowace forums thread at |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. When posting bugs, indicate your locale and Postal's version number v%s."] = "|cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r.wowace wowace 포럼에서 보다 나은 제안이나 버그 제보를 할수 있습니다.버그 제보시, 귀하의 지역 언어와 버전 번호(v%s)를 알려 주십시오."
L["Prints the amount of money collected during a mail session."] = "우편함을 열고 있는 동안의 총 사용/획득 금액을 대화창에 출력"
L["Processing Message"] = "메시지 처리중"
L["Profile"] = "프로필"
L["Rake"] = "우편 금액"
L["Recently Mailed"] = "최근 우편"
L["Refreshing mailbox..."] = "우편함 갱신중"
L["Remove Contact"] = "접속 목록에서 제거"
L["Reset Profile"] = "프로필 초기화"
L["Return"] = "반송"
L["Select"] = "선택"
L["Set subject field to value of coins sent if subject is blank."] = "우편으로 골드를 보낼시 제목에 자동으로 금액 표시"
L["Shows a clickable visual icon as to whether a mail will be returned or deleted on expiry."] = "만료되어 반송되었거나 삭제된 메일에 대해 클릭할 수 있는 시각적 아이콘을 보여줍니다."
L["Skipping"] = "무시"
L["Some Messages May Have Been Skipped."] = "몇몇의 메시지가 무시될 수 있습니다."
L["There are %i more messages not currently shown."] = "%i 이상의 메세지가 현재 보여지지 않습니다."
L["There are %i more messages not currently shown. More should become available in %i seconds."] = "%i 이상의 메세지가 현재 보여지지 않습니다. %i초 안에 사용가능합니다."
L["TradeBlock"] = "거래 불가"
L["Use Postal's auto-complete"] = "Postal의 자동완성 기능 사용"
L["Verbose mode"] = "대화창 메시지 표시"
L["Wire"] = "금액 표시"
L[ [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r 선택한 우편물을 모두 열거나 보낸 사람에게 일괄 반환 됩니다.
|cFFFFCC00*|r Shift-클릭으로 바로 우편물을 받습니다.
|cFFFFCC00*|r Ctrl-클릭으로 모든 우편물을 선택하거나 해제 합니다.
|cFFFFCC00*|r 선택된 우편물 내용을 삭제하지 않습니다 (기본적으로 우편물은 아이템/돈만 취득하고 우편물 내용은 자동 삭제 됩니다).
|cFFFFCC00*|r 선택된 블라자드 우편물을 받지 않고 무시 합니다.
|cFFFFCC00*|r 우편함을 열고있는 동안 우편 알림을 중지 합니다.]=]
L[ [=[|cFFFFCC00*|r Shift-Click to take item/money from mail.
|cFFFFCC00*|r Ctrl-Click to return mail.
|cFFFFCC00*|r Alt-Click to move an item from your inventory to the current outgoing mail (same as right click in default UI).
|cFFFFCC00*|r Mousewheel to scroll the inbox.]=] ] = [=[|cFFFFCC00*|r Shift-클릭으로 우편에서 아이템/돈을 바로 취득 합니다.
|cFFFFCC00*|r Ctrl-클릭으로 우편 반송 합니다.
|cFFFFCC00*|r Alt-클릭으로 가방에서 아이템을 우편함으로 바로 등록 합니다.(기본 UI의 우-클릭과 같은 기능).
|cFFFFCC00*|r 마우스휠로 우편함을 스크롤 합니다.]=]
L[ [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r 간단한 필터는 메일에 다양한 형식으로 사용 될수 있습니다.
|cFFFFCC00*|r Shift-클릭으로 체크 유무를 무시 하고 모든 우편물을 바로 받습니다.
|cFFFFCC00*|r 모든 우편물 내용을 삭제하지 않습니다. (기본적으로 우편물은 아이템/돈만 취득하고 우편물 내용은 자동 삭제 됩니다).
|cFFFFCC00*|r 모든 블리자드로 부터 온 우편물을 무시합니다.
|cFFFFCC00*|r 우편함을 열고있는 동안 우편 알림을 중지합니다.]=]
L[ [=[|cFFFFCC00*|r This module will list your contacts, friends, guild mates, alts and track the last 10 people you mailed.
|cFFFFCC00*|r It will also autocomplete all names in your BlackBook.]=] ] = [=[|cFFFFCC00*|r 이 모듈은 당신의 접속 목록, 친구, 길드, 내 캐릭터 등 마지막 10명의 인원만 기억 됩니다.
|cFFFFCC00*|r 또한 주소록에 있는 이름들도 자동 완성됩니다.]=]
L["|cffeda55fAlt-Click|r to send this item to %s."] = "|cffeda55fAlt-클릭|r %s님에게 아이템 보냄"
L["|cffeda55fCtrl-Click|r to return it to sender."] = "|cffeda55fCtrl-클릭|r 아이템 반송"
L["|cffeda55fShift-Click|r to take the contents."] = "|cffeda55fShift-클릭|r 아이템 수취"
return
end
local L = AL3:NewLocale("Postal", "ruRU")
if L then
L["A button that collects all attachments and coins from mail."] = "Кнопка, которая собирает все монеты и вложения с почты."
L["AH-related mail"] = "Аукционные письма"
L["Add Contact"] = "Добавить контакт"
L["Add check boxes to the inbox for multiple mail operations."] = "Добавляет окно для пометки во входящей почте, для многочисленных операций."
L["Add multiple item mail tooltips"] = "Добавить подсказку для почты с множеством вещей."
L["Adds a contact list next to the To: field."] = "Добавляет список контактов в поле адресата."
L["Allows you to copy the contents of a mail."] = "Позволяет скопировать содержимое письма."
L["Alts"] = "Альты"
L["Auto-Send on Alt-Click"] = "Автопосылка по Alt+Щелчок мыши"
L["Autofill last person mailed"] = "Ввести в строку адреса ник последнего, кому было отправлено письмо"
L["BlackBook"] = "Черный список"
L["Block incoming trade requests while in a mail session."] = "Блокировать все запросы на торговлю во время отправки массовой почты"
-- L["CarbonCopy"] = "CarbonCopy"
L["Choose"] = "Выбор"
L["Clear list"] = "Очистить список"
L["Collected"] = "Собрано"
L["Contacts"] = "Контакты"
L["Copy From"] = "Копировать из"
L["Copy this mail"] = "Скопировать письмо"
L["Delete"] = "Удалить"
L["Disable Blizzard's auto-completion popup menu"] = "Выключить всплывающее меню \"Метелицы\" об авто-заполнении"
L["DoNotWant"] = "НеХоЧу!"
L["Enable Alt-Click to send mail"] = "Включить посылку почты по Alt+Щелчок мыши"
L["Exclude randoms you interacted with"] = "Исключать ПУГов, с которыми вы встречались."
L["Express"] = "Доставка"
L["Friends"] = "Друзья"
L["Guild"] = "Гильдия"
L["Help"] = "Справка"
L["In Progress"] = "Обрабатывается!"
L["Keep free space"] = "Оставлять свободное место"
L["Mouse click short cuts for mail."] = "Щелчки мыши при открытой почте применяются как ссылки"
L["Mousewheel to scroll Inbox"] = "Листать почту колёсиком мыши"
L["Name auto-completion options"] = "Опции авто-заполнения имён"
L["New Profile"] = "Новый профиль"
L["New Profile Name:"] = "Имя нового профиля:"
L["Non-AH related mail"] = "Почта не с аукциона"
-- L["Not all messages are shown, refreshing mailbox soon to continue Open All..."] = "Not all messages are shown, refreshing mailbox soon to continue Open All..."
L["Not taking more items as there are now only %d regular bagslots free."] = "Не брать больше вещей если в сумках осталось только %d свободных мест."
L["Open"] = "Открыть"
L["Open All"] = "Открыть всё"
L["Open all Auction cancelled mail"] = "Открывать все письма о прерванных аукционах"
L["Open all Auction expired mail"] = "Открывать все письма с несостоявшегося аукциона"
L["Open all Auction successful mail"] = "Открыть все письма с успешных аукционов"
L["Open all Auction won mail"] = "Открыть все письма с выигранным товаром"
L["Open all Outbid on mail"] = "Открыть все письма с перебитыми ставками"
L["Open all mail with attachments"] = "Окрыть все письма с вложениями"
L["OpenAll"] = "Открыть Всё"
L["Opening Speed"] = "Скорость открытия"
L["Other options"] = "Прочие опции"
L["Part %d"] = "Часть %d"
L["Please post bugs or suggestions at the wowace forums thread at |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. When posting bugs, indicate your locale and Postal's version number v%s."] = "Пожалуйста, сообщите об ошибках или предложениях на форуме wowace |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. Во время отправки ошибки, сообщите язык вашего клиента и номер версии Postalа v%s."
L["Prints the amount of money collected during a mail session."] = "Сообщить сумму денег, собранных за сеанс работы с почтой"
L["Processing Message"] = "Обработка сообщения"
L["Profile"] = "Профиль"
L["Rake"] = "Сбор"
L["Recently Mailed"] = "Недавние корреспонденты"
-- L["Refreshing mailbox..."] = "Refreshing mailbox..."
L["Remove Contact"] = "Удалить контакт"
L["Reset Profile"] = "Сброс профиля"
L["Return"] = "Вернуть"
L["Select"] = "Выбор"
L["Set subject field to value of coins sent if subject is blank."] = "Писать в теме письма количество монет, если тема не задана"
L["Shows a clickable visual icon as to whether a mail will be returned or deleted on expiry."] = "Показывать кликабельную визуальную иконку, не важно была ли почта возвращена или удалена."
L["Skipping"] = "Пропускаем"
L["Some Messages May Have Been Skipped."] = "Некоторые сообщения могли быть пропущены."
L["There are %i more messages not currently shown."] = "Ещё %i сообщений не показано в данный момент"
L["There are %i more messages not currently shown. More should become available in %i seconds."] = "Ещё %i сообщений не показано в данный момент. Они будут доставлены через %i секунд."
L["TradeBlock"] = "Блокировать торговлю"
L["Use Postal's auto-complete"] = "Авто-завершение использования Postal'а."
L["Verbose mode"] = "Детальный режим"
L["Wire"] = "Оценка"
L[ [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r Выбранная почта будет вся открыта или возвращена отправителю, нажав кнопку "Открыть" или "Возвращение".
|cFFFFCC00*|r Вы можете нажать Shift-клик на 2 кнопки для масс выбора почты между этими 2 омеченными кнопками.
|cFFFFCC00*|r Вы можете нажать Ctrl-Клик по кнопке для масс выбора или отмены выбора всей почты данного отправителя.
|cFFFFCC00*|r Выбрав, почты некогда не будет удаляться (почта без текста авто-удаляется игрой после получения с неё приложенных к ней предметов или денег).
|cFFFFCC00*|r Выбрав, будет пропускаться CoD почта и почта от Blizzardа.
|cFFFFCC00*|r Отключите Детальный режим для прекращения спама в чате при открытии почты.]=]
L[ [=[|cFFFFCC00*|r Shift-Click to take item/money from mail.
|cFFFFCC00*|r Ctrl-Click to return mail.
|cFFFFCC00*|r Alt-Click to move an item from your inventory to the current outgoing mail (same as right click in default UI).
|cFFFFCC00*|r Mousewheel to scroll the inbox.]=] ] = [=[|cFFFFCC00*|r Shift-Клик снятие с почты предметов/денег.
|cFFFFCC00*|r Ctrl-Клик возвращает почту.
|cFFFFCC00*|r Alt-Клик помещает предмет из вашего инвентаря в исходящую почту (в стандартном UI,правый-клик).
|cFFFFCC00*|r Колесо мыши прокручивает ящик входящей почты.]=]
L[ [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r Простые фильтры доступны для различных типов почты.
|cFFFFCC00*|r Shift-Клик по кнопке "Открыть все" аннулирует фильтры и снимет всю почты.
|cFFFFCC00*|r "Открыть все" не будет удалять почту (почта без текста авто-удаляется игрой после получения с неё приложенных к ней предметов или денег).
|cFFFFCC00*|r "Открыть все" будет пропускать платежную почту и почту от Blizzardа.
|cFFFFCC00*|r Отключите Детальный режим для прекращения спама в чате при открытии почты.]=]
L[ [=[|cFFFFCC00*|r This module will list your contacts, friends, guild mates, alts and track the last 10 people you mailed.
|cFFFFCC00*|r It will also autocomplete all names in your BlackBook.]=] ] = [=[|cFFFFCC00*|r Этот модуль будет выводить список ваших контактов, друзей, товарищей гильдии, альтов и отслеживать последних 10 людей, которым вы отправили почту.
|cFFFFCC00*|r Будут также автозаполнены все имена в вашем Черном Списке.]=]
L["|cffeda55fAlt-Click|r to send this item to %s."] = "|cffeda55fAlt+Щелчок|r выслать предмет в адрес %s."
L["|cffeda55fCtrl-Click|r to return it to sender."] = "|cffeda55fCtrl+Щелчок|r вернуть отправителю."
L["|cffeda55fShift-Click|r to take the contents."] = "|cffeda55fShift+Щелчок|r взять содержимое."
return
end
local L = AL3:NewLocale("Postal", "zhCN")
if L then
L["A button that collects all attachments and coins from mail."] = "收取所有邮件的附件和金币。"
L["AH-related mail"] = "拍卖相关邮件"
L["Add Contact"] = "添加联系人"
L["Add check boxes to the inbox for multiple mail operations."] = "增加可选框以便于对多个邮件进行操作。"
L["Add multiple item mail tooltips"] = "添加多个物品的邮件提示"
L["Adds a contact list next to the To: field."] = "添加联系人列表到收件人栏。"
L["Allows you to copy the contents of a mail."] = "允许你复制信的内容物。"
L["Alts"] = "小号"
L["Auto-Send on Alt-Click"] = "Alt-点击 自动发送"
L["Autofill last person mailed"] = "自动填写最后的收件人"
L["BlackBook"] = "黑名单"
L["Block incoming trade requests while in a mail session."] = "在进行邮件操作中阻止交易请求。"
L["CarbonCopy"] = "复本"
L["Choose"] = "选择"
L["Clear list"] = "清空列表"
L["Collected"] = "已收取"
L["Contacts"] = "联系人"
L["Copy From"] = "从...复制"
L["Copy this mail"] = "复制这封信"
L["Delete"] = "删除"
L["Disable Blizzard's auto-completion popup menu"] = "关闭Blizzard的自动完成弹出菜单"
L["DoNotWant"] = "不想要"
L["Enable Alt-Click to send mail"] = "允许 Alt-点击 发送邮件"
L["Exclude randoms you interacted with"] = "防止你随意地受到影响"
L["Express"] = "快件"
L["Friends"] = "好友"
L["Guild"] = "公会"
L["Help"] = "帮助"
L["In Progress"] = "处理中"
L["Keep free space"] = "保留背包空间"
L["Mouse click short cuts for mail."] = "鼠标快捷方式。"
L["Mousewheel to scroll Inbox"] = "鼠标滚动收件箱"
L["Name auto-completion options"] = "姓名自动完成选项"
L["New Profile"] = "新配置"
L["New Profile Name:"] = "新配置名称:"
L["Non-AH related mail"] = "非拍卖相关邮件"
L["Not all messages are shown, refreshing mailbox soon to continue Open All..."] = "尚有邮件未能显示,请重整收件匣后继续开启..."
L["Not taking more items as there are now only %d regular bagslots free."] = "无法拿取更多物品, 目前仅有 %d 个背包位置."
L["Open"] = "打开"
L["Open All"] = "打开所有"
L["Open all Auction cancelled mail"] = "打开所有取消拍卖的邮件"
L["Open all Auction expired mail"] = "打开所有拍卖过期的邮件"
L["Open all Auction successful mail"] = "打开所有拍卖成功的邮件"
L["Open all Auction won mail"] = "打开所有赢得拍卖的邮件"
L["Open all Outbid on mail"] = "打开所有超过出价的邮件"
L["Open all mail with attachments"] = "打开所有带有附件的邮件"
L["OpenAll"] = "打开所有"
L["Opening Speed"] = "收信速度"
L["Other options"] = "其他选项"
L["Part %d"] = "第 %d 组"
L["Please post bugs or suggestions at the wowace forums thread at |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. When posting bugs, indicate your locale and Postal's version number v%s."] = "请到Wowace的论坛|cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r报告Bug或者提交建议。报告Bug时请说明Postal的版本 v%s。"
L["Prints the amount of money collected during a mail session."] = "显示在一次邮件操作中所收到的金币。"
L["Processing Message"] = "正在处理邮件"
L["Profile"] = "配置"
L["Rake"] = "收款显示"
L["Recently Mailed"] = "最近邮寄"
L["Refreshing mailbox..."] = "重新整理收件匣..."
L["Remove Contact"] = "删除联系人"
L["Reset Profile"] = "重置配置"
L["Return"] = "退信"
L["Select"] = "选择"
L["Set subject field to value of coins sent if subject is blank."] = "在主题为空时将主题自动填充为金币数量。"
L["Shows a clickable visual icon as to whether a mail will be returned or deleted on expiry."] = "显示一个可点击的图标以确定邮件将被退回或是到期删除。"
L["Skipping"] = "忽略"
L["Some Messages May Have Been Skipped."] = "部分邮件可能被忽略。"
L["There are %i more messages not currently shown."] = "还有 %i 或更多的邮件没有显示。"
L["There are %i more messages not currently shown. More should become available in %i seconds."] = "当前还有 %i 条信息没有显示. 将在 %i 内显示."
L["TradeBlock"] = "阻止交易"
L["Use Postal's auto-complete"] = "使用 Postal 的自动完成"
L["Verbose mode"] = "消息模式"
L["Wire"] = "填充标题"
L[ [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r 点击打开或者退信,被选中的邮件会被批量打开或退回。
|cFFFFCC00*|r 按住Shift键点击分别点击2封信的复选框,会将这2封信之前的所有新选中。
|cFFFFCC00*|r 按住Ctrl键点击一封信的复选框,可以将所有来自该发件人的信选中或者取消选中。
|cFFFFCC00*|r 选中则不删除任何邮件(游戏默认当一封没有任何文字的信中的附件被取走之后自动删除该邮件)。
|cFFFFCC00*|r 选中将跳过付款取信的邮件以及来自暴雪的邮件。
|cFFFFCC00*|r 关闭消息模式,取信时聊天窗口将不再显示信息。]=]
L[ [=[|cFFFFCC00*|r Shift-Click to take item/money from mail.
|cFFFFCC00*|r Ctrl-Click to return mail.
|cFFFFCC00*|r Alt-Click to move an item from your inventory to the current outgoing mail (same as right click in default UI).
|cFFFFCC00*|r Mousewheel to scroll the inbox.]=] ] = [=[|cFFFFCC00*|r 按住shift点击取走信中的金币或者物品。
|cFFFFCC00*|r 按住Ctrl点击退信。
|cFFFFCC00*|r 按住Alt点击背包中的物品,将其添加到附件中(同游戏本身的右键点击)。
|cFFFFCC00*|r 鼠标滚轮翻页。]=]
L[ [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r各种邮件类型都有简单的过滤条件可用。
|cFFFFCC00*|rShift+点击“打开所有”按钮可以忽略这些过滤并收取所有邮件。
|cFFFFCC00*|rOpenAll功能将不会删除任何邮件(无内容邮件将在附件和金钱被收取后自动删除)。
|cFFFFCC00*|rOpenAll功能将会阻止付款取信邮件和暴雪发送的邮件。
|cFFFFCC00*|r请关闭详细信息选项来取消打开邮件时的聊天窗口信息。]=]
L[ [=[|cFFFFCC00*|r This module will list your contacts, friends, guild mates, alts and track the last 10 people you mailed.
|cFFFFCC00*|r It will also autocomplete all names in your BlackBook.]=] ] = [=[|cFFFFCC00*|r该模块将列出你所有的联系人、好友、公会成员、小号和你最近发送邮件的10个人。
|cFFFFCC00*|r同时还将自动完成通讯簿中的所有名字。]=]
L["|cffeda55fAlt-Click|r to send this item to %s."] = "|cffeda55fAlt-点击|r 将该物品发送给%s。"
L["|cffeda55fCtrl-Click|r to return it to sender."] = "|cffeda55fCtrl-点击|r 将信退给发件人。"
L["|cffeda55fShift-Click|r to take the contents."] = "|cffeda55fShift-点击|r 获得该邮件的内容副本。"
return
end
local L = AL3:NewLocale("Postal", "zhTW")
if L then
L["A button that collects all attachments and coins from mail."] = "一個收取全部附件及金錢的按鈕。"
L["AH-related mail"] = "拍賣相關信件"
L["Add Contact"] = "新增聯絡人"
L["Add check boxes to the inbox for multiple mail operations."] = "增加勾選框以供多重信件指令使用。"
L["Add multiple item mail tooltips"] = "新增多個物品的郵件提示框"
L["Adds a contact list next to the To: field."] = "在收件人輸入框旁邊添加一個聯絡列表。"
L["Allows you to copy the contents of a mail."] = "允許你複製信的內容物。"
L["Alts"] = "分身"
L["Auto-Send on Alt-Click"] = "Alt-點擊 自動發送"
L["Autofill last person mailed"] = "自動填寫最後曾郵寄的人名"
L["BlackBook"] = "聯絡人名冊"
L["Block incoming trade requests while in a mail session."] = "在處理信件期間拒絕交易要求。"
L["CarbonCopy"] = "複本"
L["Choose"] = "選取"
L["Clear list"] = "清空列表"
L["Collected"] = "已領取"
L["Contacts"] = "聯絡人"
L["Copy From"] = "複製自"
L["Copy this mail"] = "複製這封信"
L["Delete"] = "刪除"
L["Disable Blizzard's auto-completion popup menu"] = "停用內建彈出自動完成的選單"
L["DoNotWant"] = "不想要"
L["Enable Alt-Click to send mail"] = "開啟Alt-點擊 發送信件"
L["Exclude randoms you interacted with"] = "防止你隨意地受到影響"
L["Express"] = "快速收發"
L["Friends"] = "好友"
L["Guild"] = "公會"
L["Help"] = "幫助"
L["In Progress"] = "正在處理"
L["Keep free space"] = "保持背包空位"
L["Mouse click short cuts for mail."] = "點擊快速收發信件。"
L["Mousewheel to scroll Inbox"] = "滑鼠滾動收件欄"
L["Name auto-completion options"] = "名字自動完成選項"
L["New Profile"] = "新設定檔"
L["New Profile Name:"] = "新設定檔名稱:"
L["Non-AH related mail"] = "非拍賣相關信件"
L["Not all messages are shown, refreshing mailbox soon to continue Open All..."] = "尚有郵件未能顯示,請重整收件匣後繼續開啟..."
L["Not taking more items as there are now only %d regular bagslots free."] = "無法拾取更多物品,因目前只有%d個背包空位。"
L["Open"] = "開啟"
L["Open All"] = "收取全部"
L["Open all Auction cancelled mail"] = "打開所有取消拍賣的信件"
L["Open all Auction expired mail"] = "打開所有拍賣過期的信件"
L["Open all Auction successful mail"] = "打開所有拍賣成功的信件"
L["Open all Auction won mail"] = "打開所有赢得拍賣的信件"
L["Open all Outbid on mail"] = "打開所有超過出價的信件"
L["Open all mail with attachments"] = "打開所有帶有附件的信件"
L["OpenAll"] = "收取全部"
L["Opening Speed"] = "收取速度"
L["Other options"] = "其他選項"
L["Part %d"] = "分組%d"
L["Please post bugs or suggestions at the wowace forums thread at |cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. When posting bugs, indicate your locale and Postal's version number v%s."] = "如要回報錯誤或建議請往wowace論壇|cFF00FFFFhttp://forums.wowace.com/showthread.php?t=3909|r. 發帖時,說明你的語系和Postal的版本編號 v%s."
L["Prints the amount of money collected during a mail session."] = "顯示這次收取的金錢。"
L["Processing Message"] = "正在處理訊息"
L["Profile"] = "設定檔"
L["Rake"] = "報告"
L["Recently Mailed"] = "最近寄出的郵件"
L["Refreshing mailbox..."] = "重新整理收件匣..."
L["Remove Contact"] = "移除聯絡人"
L["Reset Profile"] = "重置設定檔"
L["Return"] = "返回"
L["Select"] = "選擇"
L["Set subject field to value of coins sent if subject is blank."] = "在「主題:」欄位自動填寫寄件金額。"
L["Shows a clickable visual icon as to whether a mail will be returned or deleted on expiry."] = "視覺顯示點擊圖示是否郵件將被退回或刪除期滿。"
L["Skipping"] = "略過"
L["Some Messages May Have Been Skipped."] = "部份訊息可能會被略過。"
L["There are %i more messages not currently shown."] = "有%i更多訊息沒有在目前顯示。"
L["There are %i more messages not currently shown. More should become available in %i seconds."] = "有%i更多訊息沒有在目前顯示。在%i秒內將會顯示更多。"
L["TradeBlock"] = "拒絕交易"
L["Use Postal's auto-complete"] = "使用Postal的自動完成"
L["Verbose mode"] = "消息模式"
L["Wire"] = "自動填寫金額"
L[ [=[|cFFFFCC00*|r Selected mail will be batch opened or returned to sender by clicking Open or Return.
|cFFFFCC00*|r You can Shift-Click 2 checkboxes to mass select every mail between the 2 checkboxes.
|cFFFFCC00*|r You can Ctrl-Click a checkbox to mass select or unselect every mail from that sender.
|cFFFFCC00*|r Select will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r Select will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r |cFFFFCC00*|r 選定的信件將批次開啟或通過點擊打開或返回來退還給發件人。
|cFFFFCC00*|r 您可以Shift-點擊兩個複選框來選擇兩個複選框之間的所有信件。
|cFFFFCC00*|r 您可以按Ctrl-點擊一個複選框來選定或取消選定一切來自該發件人的信件。
|cFFFFCC00*|r 選擇 永遠不會刪除任何信件(當所有附在信件的物品和金錢被提取後,遊戲會自動刪除郵箱裡沒有文字的信件) 。
|cFFFFCC00*|r 選擇 將跳過CoD信件和暴雪的信件。
|cFFFFCC00*|r 關閉 消息模式 選項來停止當開啟信件時在聊天框的洗頻。]=]
L[ [=[|cFFFFCC00*|r Shift-Click to take item/money from mail.
|cFFFFCC00*|r Ctrl-Click to return mail.
|cFFFFCC00*|r Alt-Click to move an item from your inventory to the current outgoing mail (same as right click in default UI).
|cFFFFCC00*|r Mousewheel to scroll the inbox.]=] ] = [=[|cFFFFCC00*|r Shift-點擊將從郵件拿取物品/金錢。
|cFFFFCC00*|r 按Ctrl -點擊將退還信件。
|cFFFFCC00*|r 按Alt-點擊一件物品將從您的背包移到目前的外寄信件(等同UI默認的右鍵點擊 ) 。
|cFFFFCC00*|r 用滑鼠滾輪滾動收件匣。]=]
L[ [=[|cFFFFCC00*|r Simple filters are available for various mail types.
|cFFFFCC00*|r Shift-Click the Open All button to override the filters and take ALL mail.
|cFFFFCC00*|r OpenAll will never delete any mail (mail without text is auto-deleted by the game when all attached items and gold are taken).
|cFFFFCC00*|r OpenAll will skip CoD mails and mails from Blizzard.
|cFFFFCC00*|r Disable the Verbose option to stop the chat spam while opening mail.]=] ] = [=[|cFFFFCC00*|r 簡單的篩選器可用於篩選各種信件類型。
|cFFFFCC00*|r Shift-點擊 收取全部 按鈕將覆蓋所有的篩選器,並提取所有的信件。
|cFFFFCC00*|r 收取全部 永遠不會刪除任何信件(當所有附在信件的物品和金錢被提取後,遊戲會自動刪除郵箱裡沒有文字的信件) 。
|cFFFFCC00*|r 收取全部 將跳過CoD信件和暴雪的信件。
|cFFFFCC00*|r 關閉 消息模式 選項來停止當開啟信件時在聊天框的洗頻。]=]
L[ [=[|cFFFFCC00*|r This module will list your contacts, friends, guild mates, alts and track the last 10 people you mailed.
|cFFFFCC00*|r It will also autocomplete all names in your BlackBook.]=] ] = [=[|cFFFFCC00*|r 此模組將您的聯絡人名單,朋友,公會隊友,分身,並追踪過去您曾郵寄的10人。
|cFFFFCC00*|r 它也將自動填寫已在您的黑名單內所有的名字。]=]
L["|cffeda55fAlt-Click|r to send this item to %s."] = "|cffeda55fAlt-點擊: |r將物品寄給%s。"
L["|cffeda55fCtrl-Click|r to return it to sender."] = "|cffeda55fCtrl-點擊: |r返回信件。"
L["|cffeda55fShift-Click|r to take the contents."] = "|cffeda55fShift-點擊: |r收取信件。"
return
end