forked from funkydude/BugSack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
locales.lua
605 lines (600 loc) · 46.7 KB
/
locales.lua
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
local addonName, addon = ...
local L = {}
L["All bugs"] = "All bugs"
L["All stored bugs have been exterminated painfully."] = "All stored bugs have been exterminated painfully."
L["altWipeDesc"] = "Allows an alt-click on the minimap icon to wipe all stored bugs."
L["autoDesc"] = "Makes the BugSack open automatically when an error is encountered, but not while you are in combat."
L["Auto popup"] = "Auto popup"
L.minimapHint = "|cffeda55fClick|r to open BugSack with the last bug. |cffeda55fShift-Click|r to reload the user interface. |cffeda55fRight-Click|r to open options."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"
L["chatFrameDesc"] = "Prints a reminder to the chat frame when an error is encountered. Doesn't print the whole error, just a reminder!"
L["Chatframe output"] = "Chatframe output"
L["compactFormatDesc"] = "Use a compact stack trace format."
L["Current session"] = "Current session"
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d bugs have been sent to %s. He must have BugSack to be able to examine them."
L["Failure to deserialize incoming data from %s."] = "Failure to deserialize incoming data from %s."
L["Filter"] = "Filter"
L["Filter addon mistakes"] = "Filter addon mistakes"
L["filterDesc"] = "Whether BugSack should treat ADDON_ACTION_BLOCKED and ADDON_ACTION_FORBIDDEN events as bugs or not. If that doesn't make sense, just ignore this option."
L["Font size"] = "Font size"
L["Large"] = "Large"
L["Limit"] = "Limit"
L["Local (%s)"] = "Local (%s)"
L["Medium"] = "Medium"
L["minimapDesc"] = "Shows the BugSack icon around your minimap."
L["Minimap icon"] = "Minimap icon"
L["Minimap icon alt-click wipe"] = "Minimap icon alt-click wipe"
L["Mute"] = "Mute"
L["muteDesc"] = "Prevents BugSack from playing the any sound when a bug is detected, no matter what you select in the dropdown below."
L["Next >"] = "Next >"
L["Player needs to be a valid name."] = "Player needs to be a valid name."
L["< Previous"] = "< Previous"
L["Previous session"] = "Previous session"
L["saveDesc"] = "Saves the bugs in the database. If this is off, bugs will not persist in the sack from session to session."
L["Save errors"] = "Save errors"
L["Send"] = "Send"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "Send all bugs from the currently viewed session (%d) in the sack to the player specified below."
L["Send bugs"] = "Send bugs"
L["Sent by %s (%s)"] = "Sent by %s (%s)"
L["Small"] = "Small"
L["Sound"] = "Sound"
L["There's a bug in your soup!"] = "There's a bug in your soup!"
L["Throttle at excessive amount"] = "Throttle at excessive amount"
L["throttleDesc"] = "Sometimes addons can generate hundreds of bugs per second, which can lock up the game. Enabling this option will throttle bug grabbing, preventing lockup when this happens."
L["Today"] = "Today"
L["Toggle the minimap icon."] = "Toggle the minimap icon."
L["Quick tips"] = "Quick tips"
L["quickTipsDesc"] = "|cff44ff44Double-click|r to filter bug reports. After you are done with the search results, return to the full sack by selecting a tab at the bottom. |cff44ff44Left-click|r and drag to move the window. |cff44ff44Right-click|r to close the sack and open the interface options for BugSack."
L["wipeDesc"] = "Exterminates all stored bugs from the database."
L["Wipe saved bugs"] = "Wipe saved bugs"
L["X-Large"] = "X-Large"
L["You have no bugs, yay!"] = "You have no bugs, yay!"
L["You've received %d bugs from %s."] = "You've received %d bugs from %s."
L.useMaster = "Use 'Master' sound channel"
L.useMasterDesc = "Play the chosen error sound over the 'Master' sound channel instead of the default one."
L.addonCompartment = "Addon compartment icon"
L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
local locale = GetLocale()
if locale == "deDE" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d Fehler wurden an %s gesendet. Er muss BugSack haben, um in der Lage zu sein, die Fehler zu lesen."
L.minimapHint = "|cffeda55fKlicken|r, um BugSack mit dem letzten Fehler anzuzeigen. |cffeda55fShift-Klicken|r, um das UI neu zu laden. |cffeda55fRight-Click|r to open options."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack benötigt das |r|cff44ff44!BugGrabber|r|cffff4411 Addon, das von der Seite heruntergeladen werden kann, wo du auch BugSack bekommen hast.|r"
L["< Previous"] = "< Vorheriger"
L["All bugs"] = "Alle Fehler"
L["All stored bugs have been exterminated painfully."] = "Alle gespeicherten Fehler wurden auf schmerzvollste Art gelöscht."
--L["altWipeDesc"] = "Allows an alt-click on the minimap icon to wipe all stored bugs."
L["Auto popup"] = "Automatisches Aufpoppen"
L["autoDesc"] = "Öffnet BugSack automatisch, sobald ein Fehler auftritt, außer man befindet sich im Kampf."
L["Chatframe output"] = "Chatfensterausgabe"
L["chatFrameDesc"] = "Gibt eine Erinnerung im Chatfenster aus, dass ein Fehler aufgetreten ist. Zeigt nicht den kompletten Fehler an!"
L["Current session"] = "Derzeitige Sitzung"
L["Failure to deserialize incoming data from %s."] = "Fehler beim Deserialisieren eingehender Daten von %s."
--L["Filter"] = "Filter"
L["Filter addon mistakes"] = "Falsche Addonfehler filtern"
L["filterDesc"] = "Bestimmt, ob BugSack die Events ADDON_ACTION_BLOCKED und ADDON_ACTION_FORBIDDEN als Fehler betrachten soll oder nicht. Falls dies keinen Sinn ergibt, ignoriere die Option."
L["Font size"] = "Schriftgröße"
L["Large"] = "Groß"
L["Limit"] = "Begrenzung"
L["Local (%s)"] = "Lokal (%s)"
L["Medium"] = "Mittel"
L["Minimap icon"] = "Minikartensymbol"
--L["Minimap icon alt-click wipe"] = "Minimap icon alt-click wipe"
L["minimapDesc"] = "Zeigt oder versteckt das BugSack-Symbol an deiner Minikarte."
L["Mute"] = "Stumm"
L["muteDesc"] = "Hindert BugSack daran, den 'Worms'-Sound abzuspielen, sobald ein Fehler entdeckt wurde."
L["Next >"] = "Nächster >"
L["Player needs to be a valid name."] = "Spieler muss ein gültiger Name sein."
L["Previous session"] = "Vorherige Sitzung"
L["Save errors"] = "Fehler speichern"
L["saveDesc"] = "Speichert Fehler in der Datenbank. Falls diese Option ausgeschalten ist, werden Fehler nicht von Sitzung zu Sitzung im Sack bleiben."
L["Send"] = "Senden"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "Sendet alle Fehler der momentanen Sitzung (%d) im Sack an den unten stehenden Spieler."
L["Send bugs"] = "Sende Fehler"
L["Sent by %s (%s)"] = "Gesendet von %s (%s)"
L["Small"] = "Klein"
L["Sound"] = "Sound"
L["There's a bug in your soup!"] = "Du hast einen Fehler entdeckt!"
L["Throttle at excessive amount"] = "Bei Übermaß temporär drosseln"
L["throttleDesc"] = "Manchmal können Addons hunderte von Fehlern pro Sekunde generieren, was wiederum das Spiel einfrieren lassen kann. Das Aktivieren dieser Option drosselt die Fehleraufzeichnung und verhindert das Einfrieren des Spiels."
L["Today"] = "Heute"
L["Toggle the minimap icon."] = "Zeigt oder versteckt das Minikartensymbol."
--L["Quick tips"] = "Quick tips"
--L["quickTipsDesc"] = "|cff44ff44Double-click|r to filter bug reports. After you are done with the search results, return to the full sack by selecting a tab at the bottom. |cff44ff44Left-click|r and drag to move the window. |cff44ff44Right-click|r to close the sack and open the interface options for BugSack."
L["Wipe saved bugs"] = "Gespeich. Fehler löschen"
L["wipeDesc"] = "Löscht alle gespeicherten Fehler aus der Datenbank."
L["X-Large"] = "Sehr groß"
L["You have no bugs, yay!"] = "Du hast keine Fehler, jeehaa!"
L["You've received %d bugs from %s."] = "Du hast %d Fehler von %s empfangen."
--L.useMaster = "Use 'Master' sound channel"
--L.useMasterDesc = "Play the chosen error sound over the 'Master' sound channel instead of the default one."
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
elseif locale == "esES" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "Enviado %s errores a %s. Él o ella debe tener BugSack para verlos."
L.minimapHint = "|cffeda55fClic|r para abrir BugSack con el último error. |cffeda55fMayús clic|r para volver a cargar la interfaz. |cffeda55fRight-Click|r to open options."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack requirere el accesorio |r|cff44ff44!BugGrabber|r|cffff4411, que puedes descargar desde el mismo lugar que has descargado BugSack.|r"
L["< Previous"] = "< Previo"
L["All bugs"] = "Todos errores"
L["All stored bugs have been exterminated painfully."] = "Todos los errores almacenados se han limpiado."
--L["altWipeDesc"] = "Allows an alt-click on the minimap icon to wipe all stored bugs."
L["Auto popup"] = "Auto aparecen"
L["autoDesc"] = "Aparecer la BugSack automáticamente cuando se produce un error, pero no cuando estás en combate."
L["Chatframe output"] = "Salida en chat"
L["chatFrameDesc"] = "Mostrar un aviso en la ventana de chat cuando se produce un error."
L["Current session"] = "Sesión actual"
L["Failure to deserialize incoming data from %s."] = "No se puede deserializar el dato recibido de %s."
--L["Filter"] = "Filter"
L["Filter addon mistakes"] = "Ignorar los eventos"
L["filterDesc"] = "Si esta opción está activada, BugSack tratará los eventos ADDON_ACTION_BLOCKED y ADDON_ACTION_FORBIDDEN como errores. Si no entiendes esto, simplemente ignorarlo."
L["Font size"] = "Tamaño de fuente"
L["Large"] = "Grande"
L["Limit"] = "Límite"
L["Local (%s)"] = "Local (%s)"
L["Medium"] = "Medio"
L["Minimap icon"] = "Icono en minimapa"
--L["Minimap icon alt-click wipe"] = "Minimap icon alt-click wipe"
L["minimapDesc"] = "Mostrar el icono de BugSack en la minimapa."
L["Mute"] = "Silenciar"
L["muteDesc"] = "No reproducir un sonido cuando se produce un error."
L["Next >"] = "Siguiente >"
L["Player needs to be a valid name."] = "Nombre no válido."
L["Previous session"] = "Sesión anterior"
L["Save errors"] = "Almacenar errores"
L["saveDesc"] = "Almacenar errores entre sesiones."
L["Send"] = "Enviar"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "Enviar todos los errores de la sesión seleccionada (%d) al jugador se especifican abajo."
L["Send bugs"] = "Enviar errores"
L["Sent by %s (%s)"] = "Enviado por %s (%s)"
L["Small"] = "Pequeño"
L["Sound"] = "Sonido"
L["There's a bug in your soup!"] = "Ha ocurrido un error!"
L["Throttle at excessive amount"] = "Limitar en cantidad excesiva"
L["throttleDesc"] = "A veces accesorios puede generar cientos de errores por segundo, lo que puede bloquear el juego. Al habilitar esta opción, se limitará la captura de errores, evitando el bloqueo cuando esto ocurre."
L["Today"] = "Hoy"
L["Toggle the minimap icon."] = "Mostrar u ocultar el icono del minimapa"
--L["Quick tips"] = "Quick tips"
--L["quickTipsDesc"] = "|cff44ff44Double-click|r to filter bug reports. After you are done with the search results, return to the full sack by selecting a tab at the bottom. |cff44ff44Left-click|r and drag to move the window. |cff44ff44Right-click|r to close the sack and open the interface options for BugSack."
L["Wipe saved bugs"] = "Limpiar errores almacenados"
L["wipeDesc"] = "Borrar todos los errores almacenados."
L["X-Large"] = "Extra grande"
L["You have no bugs, yay!"] = "No tienes ningún errores! ¡Hurra!"
L["You've received %d bugs from %s."] = "Has recibido %d errores por %s."
--L.useMaster = "Use 'Master' sound channel"
--L.useMasterDesc = "Play the chosen error sound over the 'Master' sound channel instead of the default one."
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
elseif locale == "esMX" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "Enviado %s errores a %s. Él o ella debe tener BugSack para verlos."
L.minimapHint = "|cffeda55fClic|r para abrir BugSack con el último error. |cffeda55fMayús clic|r para volver a cargar la interfaz. |cffeda55fRight-Click|r to open options."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack requirere el accesorio |r|cff44ff44!BugGrabber|r|cffff4411, que puedes descargar desde el mismo lugar que has descargado BugSack.|r"
L["< Previous"] = "< Previo"
L["All bugs"] = "Todos errores"
L["All stored bugs have been exterminated painfully."] = "Todos los errores almacenados se han limpiado."
--L["altWipeDesc"] = "Allows an alt-click on the minimap icon to wipe all stored bugs."
L["Auto popup"] = "Auto aparecen"
L["autoDesc"] = "Aparecer la BugSack automáticamente cuando se produce un error, pero no cuando estás en combate."
L["Chatframe output"] = "Salida en chat"
L["chatFrameDesc"] = "Mostrar un aviso en la ventana de chat cuando se produce un error."
L["Current session"] = "Sesión actual"
L["Failure to deserialize incoming data from %s."] = "No se puede deserializar el dato recibido de %s."
--L["Filter"] = "Filter"
L["Filter addon mistakes"] = "Ignorar los eventos"
L["filterDesc"] = "Si esta opción está activada, BugSack tratará los eventos ADDON_ACTION_BLOCKED y ADDON_ACTION_FORBIDDEN como errores. Si no entiendes esto, simplemente ignorarlo."
L["Font size"] = "Tamaño de fuente"
L["Large"] = "Grande"
L["Limit"] = "Límite"
L["Local (%s)"] = "Local (%s)"
L["Medium"] = "Medio"
L["Minimap icon"] = "Icono en minimapa"
--L["Minimap icon alt-click wipe"] = "Minimap icon alt-click wipe"
L["minimapDesc"] = "Mostrar el icono de BugSack en la minimapa."
L["Mute"] = "Silenciar"
L["muteDesc"] = "No reproducir un sonido cuando se produce un error."
L["Next >"] = "Siguiente >"
L["Player needs to be a valid name."] = "Nombre no válido."
L["Previous session"] = "Sesión anterior"
L["Save errors"] = "Almacenar errores"
L["saveDesc"] = "Almacenar errores entre sesiones."
L["Send"] = "Enviar"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "Enviar todos los errores de la sesión seleccionada (%d) al jugador se especifican abajo."
L["Send bugs"] = "Enviar errores"
L["Sent by %s (%s)"] = "Enviado por %s (%s)"
L["Small"] = "Pequeño"
L["Sound"] = "Sonido"
L["There's a bug in your soup!"] = "Ha ocurrido un error!"
L["Throttle at excessive amount"] = "Limitar en cantidad excesiva"
L["throttleDesc"] = "A veces accesorios puede generar cientos de errores por segundo, lo que puede bloquear el juego. Al habilitar esta opción, se limitará la captura de errores, evitando el bloqueo cuando esto ocurre."
L["Today"] = "Hoy"
L["Toggle the minimap icon."] = "Mostrar u ocultar el icono del minimapa"
--L["Quick tips"] = "Quick tips"
--L["quickTipsDesc"] = "|cff44ff44Double-click|r to filter bug reports. After you are done with the search results, return to the full sack by selecting a tab at the bottom. |cff44ff44Left-click|r and drag to move the window. |cff44ff44Right-click|r to close the sack and open the interface options for BugSack."
L["Wipe saved bugs"] = "Limpiar errores almacenados"
L["wipeDesc"] = "Borrar todos los errores almacenados."
L["X-Large"] = "Extra grande"
L["You have no bugs, yay!"] = "No tienes ningún errores! ¡Hurra!"
L["You've received %d bugs from %s."] = "Has recibido %d errores por %s."
--L.useMaster = "Use 'Master' sound channel"
--L.useMasterDesc = "Play the chosen error sound over the 'Master' sound channel instead of the default one."
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
elseif locale == "frFR" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d erreurs ont été transmises à %s. Il doit avoir BugSack pour pouvoir les examiner."
L.minimapHint = "|cffeda55fClic|r pour ouvrir BugSack sur la dernière erreur. |cffeda55fMaj-Clic|r pour recharger l'interface utilisateur. |cffeda55fRight-Click|r to open options."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack a besoin de l'addon |r|cff44ff44!BugGrabber|r|cffff4411, que vous pouvez télécharger depuis le même endroit que BugSack. Bonne chasse aux bugs!|r"
L["< Previous"] = "< Précédent"
L["All bugs"] = "Tous les bugs"
L["All stored bugs have been exterminated painfully."] = "Toutes les erreurs sauvegardées ont été effacées péniblement."
--L["altWipeDesc"] = "Allows an alt-click on the minimap icon to wipe all stored bugs."
L["Auto popup"] = "Popup automatique"
L["autoDesc"] = "Fait en sorte que BugSack s'ouvre automatiquement quand une erreur est rencontrée."
L["Chatframe output"] = "Sortie fenêtre de conversation"
L["chatFrameDesc"] = "Affiche un rappel dans la fenêtre de conversation quand une erreur est rencontrée. N'affiche pas l'erreur complète, juste un rappel!"
L["Current session"] = "Session actuelle"
L["Failure to deserialize incoming data from %s."] = "Impossible de dé-sérialiser les données de %s."
--L["Filter"] = "Filter"
L["Filter addon mistakes"] = "Filtrer les erreurs des addons"
L["filterDesc"] = "Défini si BugSack devrait traiter les évènements ADDON_ACTION_BLOCKED et ADDON_ACTION_FORBIDDEN comme des erreurs ou non. Si cela n'a aucun sens, ignorez cette option."
L["Font size"] = "Taille de la police"
L["Large"] = "Grand"
L["Limit"] = "Limite"
L["Local (%s)"] = "Local (%s)"
L["Medium"] = "Moyen"
L["Minimap icon"] = "Icône de la minicarte"
--L["Minimap icon alt-click wipe"] = "Minimap icon alt-click wipe"
L["minimapDesc"] = "Affiche l'icône de BugSack autour de votre minicarte."
L["Mute"] = "Muet"
L["muteDesc"] = "Empêche BugSack de jouer le son 'Worms' lorsqu'un bug est détecté."
L["Next >"] = "Suivant >"
L["Player needs to be a valid name."] = "Le joueur doit avoir un nom valide"
L["Previous session"] = "Session précédente"
L["Save errors"] = "Sauver les erreurs"
L["saveDesc"] = "Saves the bugs in the database. If this is off, bugs will not persist in the sack from session to session."
L["Send"] = "Envoyé"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "Envoyer toutes les erreurs de la session courante (%d) dans le sac du joueur spécifié ci-dessous."
L["Send bugs"] = "Envoyer les erreurs"
L["Sent by %s (%s)"] = "Envoyé par (%s)"
L["Small"] = "Petit"
L["Sound"] = "Son"
L["There's a bug in your soup!"] = "Vous avec un insecte dans votre soupe!"
L["Throttle at excessive amount"] = "Réduire à partir un certain nombre"
L["throttleDesc"] = "Parfois, les addons peuvent générer des centaines d'erreurs par secondes, ceci peut entrainer un bloquage du jeu. Activer cette option permettra de réduire la récupération des erreurs, prévenant le blocage quand cela se produit."
L["Today"] = "Aujourd'hui"
L["Toggle the minimap icon."] = "Afficher l'icône de la minicarte"
--L["Quick tips"] = "Quick tips"
--L["quickTipsDesc"] = "|cff44ff44Double-click|r to filter bug reports. After you are done with the search results, return to the full sack by selecting a tab at the bottom. |cff44ff44Left-click|r and drag to move the window. |cff44ff44Right-click|r to close the sack and open the interface options for BugSack."
L["Wipe saved bugs"] = "Suppr. les erreurs"
L["wipeDesc"] = "Effacer toutes les erreurs sauvegardées de la base."
L["X-Large"] = "Très grande"
L["You have no bugs, yay!"] = "Vous n'avez aucune erreur, youpi!"
L["You've received %d bugs from %s."] = "Vous avez reçu %d erreurs de %s."
--L.useMaster = "Use 'Master' sound channel"
--L.useMasterDesc = "Play the chosen error sound over the 'Master' sound channel instead of the default one."
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
elseif locale == "koKR" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d개의 버그를 %s님에게 보냈습니다. 버그를 검사하려면 BugSack이 설치되어 있어야 합니다."
L.minimapHint = "|cffeda55f클릭|r을 하면 최근 버그가 있는 BugSack을 엽니다. |cffeda55fShift-클릭|r을 하면 사용자 인터페이스를 다시 불러옵니다. |cffeda55f오른쪽-클릭|r을 하면 옵션을 엽니다."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack|r은 |cff44ff44!BugGrabber|r|cffff4411 애드온을 필요로 하며, BugSack을 다운로드한 같은 곳에서 다운로드할 수 있습니다. 그럼 즐거운 버그 사냥되세요!|r"
L["< Previous"] = "< 이전"
L["All bugs"] = "모든 버그"
L["All stored bugs have been exterminated painfully."] = "저장된 모든 버그는 고통스럽게 박멸되었습니다."
L["altWipeDesc"] = "미니맵 아이콘을 Alt-클릭을 하면 저장된 모든 버그를 지울 수 있습니다."
L["Auto popup"] = "자동 팝업"
L["autoDesc"] = "오류가 발생하면 자동으로 BugSack을 열지만, 전투 중에는 열지 않습니다."
L["Chatframe output"] = "대화창 출력"
L["chatFrameDesc"] = "오류가 발생하면 대화창에 알림을 출력합니다. 전체 오류를 출력하지 않고 알림만 출력합니다!"
L["Current session"] = "현재 세션"
L["Failure to deserialize incoming data from %s."] = "%s|1으로;로;부터 들어오는 데이터의 역직렬화에 실패했습니다."
L["Filter"] = "필터"
L["Filter addon mistakes"] = "애드온 실수 필터"
L["filterDesc"] = "BugSack이 ADDON_ACTION_BLOCKED 및 ADDON_ACTION_FORBIDDEN 이벤트를 버그로 처리할지 여부를 결정합니다. 이 설명이 이해되지 않는다면 이 옵션을 무시하세요."
L["Font size"] = "글꼴 크기"
L["Large"] = "크게"
L["Limit"] = "제한"
L["Local (%s)"] = "로컬 (%s)"
L["Medium"] = "중간"
L["Minimap icon"] = "미니맵 아이콘"
L["Minimap icon alt-click wipe"] = "미니맵 아이콘에 Alt-클릭으로 지우기"
L["minimapDesc"] = "미니맵 주위에 BugSack 아이콘을 표시합니다."
L["Mute"] = "음소거"
L["muteDesc"] = "아래 드롭다운에서 무엇을 선택하든 버그를 감지했을 때 BugSack이 아무 소리도 재생하지 않도록 합니다."
L["Next >"] = "다음 >"
L["Player needs to be a valid name."] = "플레이어는 올바른 이름이어야 합니다."
L["Previous session"] = "이전 세션"
L["Save errors"] = "오류 저장"
L["saveDesc"] = "데이터베이스에 버그를 저장합니다. 이 옵션이 꺼져 있으면 세션이 바뀔 때마다 버그가 자루에 유지되지 않습니다."
L["Send"] = "보내기"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "현재 표시된 세션(%d)의 모든 버그를 아래에 지정된 플레이어에게 보냅니다."
L["Send bugs"] = "버그 보내기"
L["Sent by %s (%s)"] = "%s님에게 보냄 (%s)"
L["Small"] = "작게"
L["Sound"] = "소리"
L["There's a bug in your soup!"] = "수프에 벌레가 있습니다!"
L["Throttle at excessive amount"] = "과도한 양의 스로틀"
L["throttleDesc"] = "때로는 애드온이 초당 수백 개의 버그를 생성하여 게임이 잠금 상태가 될 수 있습니다. 이 옵션을 활성화하면 버그 수집을 스로틀링하여 이러한 상황이 발생했을 때 게임이 잠기는 것을 방지할 수 있습니다."
L["Today"] = "오늘"
L["Toggle the minimap icon."] = "미니맵 아이콘을 토글합니다."
L["Quick tips"] = "빠른 팁"
L["quickTipsDesc"] = "|cff44ff44더블-클릭|r하여 버그 보고서를 필터링합니다. 검색 결과를 모두 확인한 후에는 아래의 탭을 선택하여 전체 자루로 돌아갑니다. |cff44ff44왼쪽-클릭|r을 하고 드래그하면 창을 이동합니다. |cff44ff44오른쪽-클릭|r을 하면 자루를 닫고 BugSack의 인터페이스 옵션을 엽니다."
L["Wipe saved bugs"] = "저장된 버그 지우기"
L["wipeDesc"] = "데이터베이스에 저장된 모든 버그를 박멸합니다."
L["X-Large"] = "매우 크게"
L["You have no bugs, yay!"] = "버그가 없습니다. 야호!"
L["You've received %d bugs from %s."] = "%s님으로부터 %d개의 버그를 받았습니다."
L.useMaster = "'주' 음성 채널 사용"
L.useMasterDesc = "선택한 오류 소리를 기본 음성 채널 대신 '주' 음성 채널을 통해 재생합니다."
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
elseif locale == "ruRU" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d багов было отослано получателю %s. Получатель должен иметь установленный BugSack для просмотра."
L.minimapHint = "|cffeda55f[ЛКМ]|r - открыть BugSack с последним пойманным багом.\n|cffeda55f[Shift+ЛКМ]|r - перегрузить пользовательский интерфейс.\n|cffeda55f[ПКМ]|r - открыть настройки."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack'у необходим аддон |r|cff44ff44!BugGrabber|r|cffff4411, который можно скачать там же, где Вы взяли BugSack. Удачной охоты на баги!|r"
L["< Previous"] = "< Предыдущие"
L["All bugs"] = "Все баги"
L["All stored bugs have been exterminated painfully."] = "Все сохраненные баги были жестоко удалены."
L["altWipeDesc"] = "Позволить alt-щелчок по иконке на миникарте, чтобы очистить все накопленные ошибки."
L["Auto popup"] = "Автовсплытие"
L["autoDesc"] = "Открывает окошко BugSack автоматически при ошибке, но только если не в бою."
L["Chatframe output"] = "Вывод в окно чата"
L["chatFrameDesc"] = "Выводит в чат напоминание, что произошла ошибка. Не ошибку, а напоминание!"
L["Current session"] = "Текущая сессия"
L["Failure to deserialize incoming data from %s."] = "Не смог разобрать входящие данные от %s."
L["Filter"] = "Фильтр"
L["Filter addon mistakes"] = "Фильтровать ошибки аддонов"
L["filterDesc"] = "Как BugSack'у реагировать на события ADDON_ACTION_BLOCKED и ADDON_ACTION_FORBIDDEN - баги или нет. Если для Вас не имеет значения, просто игнорируйте данную опцию."
L["Font size"] = "Размер шрифта"
L["Large"] = "Большой"
L["Limit"] = "Лимит"
L["Local (%s)"] = "Локально (%s)"
L["Medium"] = "Средний"
L["Minimap icon"] = "Иконка у миникарты"
L["Minimap icon alt-click wipe"] = "Сбросить все баги по Alt-щелчку по иконке на миникарте"
L["minimapDesc"] = "Показывает иконку BugSack около миникарты."
L["Mute"] = "Без звука"
L["muteDesc"] = "Отучивает BugSack проигрывать звук в стиле 'Worms', когда произошла ошибка."
L["Next >"] = "Следующие >"
L["Player needs to be a valid name."] = "Необходимо правильное имя игрока."
L["Previous session"] = "Предыдущая сессия"
L["Save errors"] = "Сохранить ошибки"
L["saveDesc"] = "Сохранять баги в базе. Если отключено, список и описание багов сохраняться между сессиями не будут."
L["Send"] = "Отослать"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "Отослать все баги из текущей просматриваемой сессии (%d) игроку, указанному ниже."
L["Send bugs"] = "Отослать баги"
L["Sent by %s (%s)"] = "Прислано от %s (%s)"
L["Small"] = "Маленький"
L["Sound"] = "Звук"
L["There's a bug in your soup!"] = "У тебя муха в супе!"
L["Throttle at excessive amount"] = "Притормаживать при спаме багов"
L["throttleDesc"] = "Иногда аддоны могут генерировать сотни багов в секунду, что может заблокировать игру. Включение этой опции позволит прерывать перехват ошибок, если будет слишком большой поток."
L["Today"] = "Сегодня"
L["Toggle the minimap icon."] = "Вкл./Выкл. иконку у миникарты."
L["Quick tips"] = "Быстрые советы"
L["quickTipsDesc"] = "|cff44ff44Двойной щелчок|r, чтобы отфильтровать баги. После того, как Вы закончите с результатами поиска, вернитесь в полный мешок, выбрав вкладку внизу.\n|cff44ff44ЛКМ + перемещение|r, чтобы переместить окно.\n|cff44ff44ПКМ|r, чтобы закрыть мешок и открыть настройки BugSack."
L["Wipe saved bugs"] = "Удалить сохраненные баги"
L["wipeDesc"] = "Удаляет все сохраненные баги из базы."
L["X-Large"] = "Очень большой"
L["You have no bugs, yay!"] = "Ух ты, нет багов!"
L["You've received %d bugs from %s."] = "Вы получили %d багов от %s."
L.useMaster = "Использовать канал звука 'Master'"
L.useMasterDesc = "Воспроизводить выбранный звук ошибки в канале звука 'Master'."
L.addonCompartment = "Значок отделения для аддона"
L.addonCompartment_desc = "Создает пункт меню в 'Отделении для аддонов' для BugSack."
elseif locale == "zhCN" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d个错误已经发送给%s。他必须安装 BugSack 插件才能查看错误信息。"
L.minimapHint = "|cffeda55f点击|r打开 BugSack 及最后一错误信息。|cffeda55fShift-点击|r重新加载用户界面。|cffeda55f右击|r 打开选项。"
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack 需要 |r|cff44ff44!BugGrabber|r|cffff4411 插件, 你可以从相同地方下载 BugSack。猎虫愉快!|r"
L["< Previous"] = "<前一个"
L["All bugs"] = "全部错误"
L["All stored bugs have been exterminated painfully."] = "所有已保存的错误已经被清除。"
L["altWipeDesc"] = "允许 ALT-点击小地图按钮清除所有存储的错误。"
L["Auto popup"] = "自动弹出"
L["autoDesc"] = "遇到错误是否自动弹出 BugSack 窗口。"
L["Chatframe output"] = "聊天栏输出"
L["chatFrameDesc"] = "当发生错误的时,在聊天栏中显示。不是整个错误,只是一个提醒!"
L["Current session"] = "目前节录"
L["Failure to deserialize incoming data from %s."] = "反序列化失败输入数据来自 %s。"
L["Filter"] = "过滤"
L["Filter addon mistakes"] = "过滤插件错误"
L["filterDesc"] = "不论 BugSack 可能对 ADDON_ACTION_BLOCKED 和 ADDON_ACTION_FORBIDDEN 事件认为错误与否。如果这样做没有意义,忽略这个选项。"
L["Font size"] = "字体尺寸"
L["Large"] = "大"
L["Limit"] = "限制"
L["Local (%s)"] = "本地(%s)"
L["Medium"] = "中"
L["Minimap icon"] = "小地图按钮"
L["Minimap icon alt-click wipe"] = "小地图按钮 ALT-点击清除"
L["minimapDesc"] = "显示此 BugSack 图标环绕小地图。"
L["Mute"] = "静音"
L["muteDesc"] = "当一个错误被检测到时阻止 BugSack 播放任何音效,无视下面的下拉列表中选择。"
L["Next >"] = "下一个>"
L["Player needs to be a valid name."] = "玩家需要有一个有效的名字。"
L["Previous session"] = "在节录之前"
L["Save errors"] = "保存错误"
L["saveDesc"] = "保存在数据库中的错误。如果次选项关闭,错误也不会从会话到会话。"
L["Send"] = "发送"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "发送当前查看会话(%d)所有错误给下列玩家。"
L["Send bugs"] = "发送错误"
L["Sent by %s (%s)"] = "%s发送(%s)"
L["Small"] = "小"
L["Sound"] = "音效"
L["There's a bug in your soup!"] = "这里有一个恶心的错误!"
L["Throttle at excessive amount"] = "过度错误数量过滤"
L["throttleDesc"] = "一些插件可能每秒生成成百个错误,从而影响了正常游戏。启用此选项,将会截流错误,防止发生影响正常游戏。"
L["Today"] = "今日"
L["Toggle the minimap icon."] = "切换小地图按钮。"
L["Quick tips"] = "快速提示"
L["quickTipsDesc"] = "|cff44ff44双击|r 过滤错误报告。完成搜索结果后,通过选择底部的选项卡返回完整汇总。|cff44ff44点击|r 并拖动窗口。|cff44ff44右击|r 关闭汇总并打开 BugSack 界面选项。"
L["Wipe saved bugs"] = "清除已保存错误"
L["wipeDesc"] = "清除数据库中所有已保存错误。"
L["X-Large"] = "超大"
L["You have no bugs, yay!"] = "没有发生错误。\\^o^/"
L["You've received %d bugs from %s."] = "你已接收到%d个错误从%s。"
L.useMaster = "使用“主”声道"
L.useMasterDesc = "通过“主”声道而不是默认声道播放所选的错误音效。"
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
elseif locale == "zhTW" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d個錯誤已經傳送給%s。他必須有BugSack來查看錯誤訊息。"
L.minimapHint = "|cffeda55f點擊|r開啟BugSack最後錯誤訊息。|cffeda55fShift-點擊|r重新載入使用者介面。 |cffeda55fRight-Click|r to open options."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack需要|r|cff44ff44!BugGrabber|r|cffff4411插件,你可以從你下載BugSack相同的地方來下載。獵蟲愉快!|r"
L["< Previous"] = "< 上一個"
L["All bugs"] = "全部錯誤"
L["All stored bugs have been exterminated painfully."] = "所有儲存的錯誤已經被清除。"
--L["altWipeDesc"] = "Allows an alt-click on the minimap icon to wipe all stored bugs."
L["Auto popup"] = "自動彈出"
L["autoDesc"] = "當發生錯誤時自動開啟BugSack,但是不在戰鬥中開啟。"
L["Chatframe output"] = "聊天框架輸出"
L["chatFrameDesc"] = "當發生錯誤時輸出提醒到聊天框架。不是輸出所有錯誤,只是一個提醒!"
L["Current session"] = "這次"
L["Failure to deserialize incoming data from %s."] = "從%s傳來的資料反序列化失敗。"
--L["Filter"] = "Filter"
L["Filter addon mistakes"] = "過濾插件錯誤"
L["filterDesc"] = "不論BugSack可能對ADDON_ACTION_BLOCKED 和 ADDON_ACTION_FORBIDDEN事件認為是錯誤與否。如果這樣做沒有意義,只要忽略這個設定。"
L["Font size"] = "字型大小"
L["Large"] = "大"
L["Limit"] = "限制"
L["Local (%s)"] = "本地 (%s)"
L["Medium"] = "中"
L["Minimap icon"] = "小地圖圖示"
--L["Minimap icon alt-click wipe"] = "Minimap icon alt-click wipe"
L["minimapDesc"] = "在小地圖四周顯示BugSack圖示。"
L["Mute"] = "靜音"
L["muteDesc"] = "預防BugSack發現有錯誤時播放任何聲音,不管你在下列選項選了什麼。"
L["Next >"] = "下一個 >"
L["Player needs to be a valid name."] = "玩家需要有一個有效的名字。"
L["Previous session"] = "上一次"
L["Save errors"] = "儲存錯誤"
L["saveDesc"] = "儲存錯誤在資料庫。如果此設定關閉,將不會儲存每一次錯誤。"
L["Send"] = "傳送"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "傳送這次(%d)所有錯誤給以下玩家。"
L["Send bugs"] = "傳送錯誤"
L["Sent by %s (%s)"] = "由%s傳送(%s)"
L["Small"] = "小"
L["Sound"] = "音效"
L["There's a bug in your soup!"] = "在你的湯裡有一隻臭蟲啊!"
L["Throttle at excessive amount"] = "調節錯誤數量"
L["throttleDesc"] = "有時插件可能每秒產生上百個錯誤,進而影響遊戲。啟用此設定,將會扼殺錯誤,防止發生影響遊戲。"
L["Today"] = "今天"
L["Toggle the minimap icon."] = "切換小地圖圖示。"
--L["Quick tips"] = "Quick tips"
--L["quickTipsDesc"] = "|cff44ff44Double-click|r to filter bug reports. After you are done with the search results, return to the full sack by selecting a tab at the bottom. |cff44ff44Left-click|r and drag to move the window. |cff44ff44Right-click|r to close the sack and open the interface options for BugSack."
L["Wipe saved bugs"] = "清除儲存的錯誤"
L["wipeDesc"] = "清除資料庫中所有儲存的錯誤。"
L["X-Large"] = "超大"
L["You have no bugs, yay!"] = "你沒有發生錯誤。\\^o^//"
L["You've received %d bugs from %s."] = "從%s收到%d個錯誤。"
--L.useMaster = "Use 'Master' sound channel"
--L.useMasterDesc = "Play the chosen error sound over the 'Master' sound channel instead of the default one."
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
elseif locale == "ptBR" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d falhas foram enviadas para %s. Ele deve ter o BugSack para poder examiná-las."
L.minimapHint = "|cffeda55fClique|r para abrir o BugSack com a última falha. |cffeda55fShift+Clique|r para recarregar a interface de usuário. |cffeda55fRight-Click|r to open options."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack requer o addon |r|cff44ff44!BugGrabber|r|cffff4411, que você pode baixar do mesmo lugar que você baixou o BugSack. Feliz caça aos insetos (falhas)!|r"
L["< Previous"] = "< Anterior"
L["All bugs"] = "Todas as falhas"
L["All stored bugs have been exterminated painfully."] = "Todas as falhas armazenadas foram exterminadas dolorosamente."
--L["altWipeDesc"] = "Allows an alt-click on the minimap icon to wipe all stored bugs."
L["Auto popup"] = "Janela automática"
L["autoDesc"] = "Faz o BugSack abrir automaticamente quando um erro for encontrado, mas não enquanto você estiver em combate."
L["Chatframe output"] = "Saída do quadro de chat"
L["chatFrameDesc"] = "Imprime um lembrete no quadro de chat quando um erro for encontrado. Não imprime o erro completo, só um lembrete!"
L["Current session"] = "Sessão atual"
L["Failure to deserialize incoming data from %s."] = "Falha ao desserializar dados que chegam de %s."
--L["Filter"] = "Filter"
L["Filter addon mistakes"] = "Filtrar enganos de addons"
L["filterDesc"] = "Se o BugSack deveria tratar os eventos ADDON_ACTION_BLOCKED e ADDON_ACTION_FORBIDDEN como falhas ou não. Se isso não fizer sentido, apenas ignore essa opção."
L["Font size"] = "Tamanho da fonte"
L["Large"] = "Grande"
L["Limit"] = "Limite"
L["Local (%s)"] = "Local (%s)"
L["Medium"] = "Médio"
L["Minimap icon"] = "Ícone do minimapa"
--L["Minimap icon alt-click wipe"] = "Minimap icon alt-click wipe"
L["minimapDesc"] = "Mostra o ícone do BugSack ao redor do seu minimapa."
L["Mute"] = "Mudo"
L["muteDesc"] = "Previne o BugSack de tocar o qualquer som quando uma falha for detectada, independente do que estiver selecionado na caixa abaixo."
L["Next >"] = "Próximo >"
L["Player needs to be a valid name."] = "O jogador precisa ter um nome válido."
L["Previous session"] = "Sessão anterior"
L["Save errors"] = "Salvar erros"
L["saveDesc"] = "Salva as falhas no banco de dados. Se isso estiver desativado, as falhas não irão persistir de sessão para outra."
L["Send"] = "Enviar"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "Enviar todas as falhas da atual sessão visualizada (%d) no saco para o jogador especificado abaixo."
L["Send bugs"] = "Enviar falhas"
L["Sent by %s (%s)"] = "Enviado por %s (%s)"
L["Small"] = "Pequeno"
L["Sound"] = "Som"
L["There's a bug in your soup!"] = "Tem um inseto (falha) em sua sopa!"
L["Throttle at excessive amount"] = "Suprimir quando em grande quantidade"
L["throttleDesc"] = "Algumas vezes addons podem gerar centenas de falhas por segundo, o que pode travar o jogo. Ao habilitar essa opção acontecerá uma regulação na captura de falhas, prevenindo travamentos quando isso acontecer."
L["Today"] = "Hoje"
L["Toggle the minimap icon."] = "Ligar ícone no minimapa."
--L["Quick tips"] = "Quick tips"
--L["quickTipsDesc"] = "|cff44ff44Double-click|r to filter bug reports. After you are done with the search results, return to the full sack by selecting a tab at the bottom. |cff44ff44Left-click|r and drag to move the window. |cff44ff44Right-click|r to close the sack and open the interface options for BugSack."
L["Wipe saved bugs"] = "Descartar falhas salvas"
L["wipeDesc"] = "Extermina todas as falhas salvas no banco de dados."
L["X-Large"] = "X-Grande"
L["You have no bugs, yay!"] = "Você não possui falhas, êêê!"
L["You've received %d bugs from %s."] = "Você recebeu %d falhas de %s."
--L.useMaster = "Use 'Master' sound channel"
--L.useMasterDesc = "Play the chosen error sound over the 'Master' sound channel instead of the default one."
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
elseif locale == "itIT" then
L["%d bugs have been sent to %s. He must have BugSack to be able to examine them."] = "%d bugs sono stati inviati a %s. Devi avere BugSack installato per poterli esaminarli."
L.minimapHint = "|cffeda55fFai click|r per aprire BugSack con l'ultimo bug. |cffeda55fFai Maiusc-Click|r per ricaricare gli addon. |cffeda55fRight-Click|r to open options."
L["|cffff4411BugSack requires the |r|cff44ff44!BugGrabber|r|cffff4411 addon, which you can download from the same place you got BugSack. Happy bug hunting!|r"] = "|cffff4411BugSack richiede l'addon |r|cff44ff44!BugGrabber|r|cffff4411, che puoi scaricare dallo stesso posto da cui hai scaricato BugSack.|r"
L["< Previous"] = "< Precedente"
L["All bugs"] = "Tutti i bug"
L["All stored bugs have been exterminated painfully."] = "Tutti i bug registrati sono stati eliminati con dolore."
--L["altWipeDesc"] = "Allows an alt-click on the minimap icon to wipe all stored bugs."
L["Auto popup"] = "Auto popup"
L["autoDesc"] = "Apre automaticamente BugSack quando viene rilevato un errore, ma non se sei in combattimento."
L["Chatframe output"] = "Output nella chat"
L["chatFrameDesc"] = "Scrive un avvertimento sulla chat quando un errore viene rilevato. Non scrive l'errore completo, solo un messaggio di attenzione!"
L["Current session"] = "Sessione corrente"
L["Failure to deserialize incoming data from %s."] = "Impossibile leggere i dati inviati da %s."
--L["Filter"] = "Filter"
L["Filter addon mistakes"] = "Filtra errori addon"
L["filterDesc"] = "Scegli se BugSack deve trattare gli eventi ADDON_ACTION_BLOCKED e ADDON_ACTION_FORBIDDEN come bug oppure no. Se non capisci il significato di questa opzione, ignorala."
L["Font size"] = "Dimensione font"
L["Large"] = "Largo"
L["Limit"] = "Limite"
L["Local (%s)"] = "Locale (%s)"
L["Medium"] = "Medio"
L["Minimap icon"] = "Icona minimappa"
--L["Minimap icon alt-click wipe"] = "Minimap icon alt-click wipe"
L["minimapDesc"] = "Mostra l'icona di BugSack intorno alla minimappa."
L["Mute"] = "Muto"
L["muteDesc"] = "Impedisce a BugSack di riprodurre alcun suono quando un bug viene rilevato, indipendentemente da cosa scegli nel menu qui sotto."
L["Next >"] = "Successivo >"
L["Player needs to be a valid name."] = "Il giocatore deve avere un nome valido."
L["Previous session"] = "Sessione precedente"
L["Save errors"] = "Salva errori"
L["saveDesc"] = "Salva i bug nel database. Se disattivato, i bug verranno eliminati alla fine della sessione."
L["Send"] = "Invia"
L["Send all bugs from the currently viewed session (%d) in the sack to the player specified below."] = "Invia tutti i bug dalla sessione selezionata (%d) al giocatore specificato."
L["Send bugs"] = "Invia bug"
L["Sent by %s (%s)"] = "Inviati da %s (%s)"
L["Small"] = "Piccolo"
L["Sound"] = "Suono"
L["There's a bug in your soup!"] = "Un bug è stato rilevato!"
L["Throttle at excessive amount"] = "Blocca ad una quantità eccessiva"
L["throttleDesc"] = "Alcune volte gli addon possono generare centinaia di bug al secondo, cosa che può bloccare il gioco. Abilitare questa opzione accelererà la cattura dei bug, in modo da impedire un blocco del gioco."
L["Today"] = "Oggi"
L["Toggle the minimap icon."] = "Attiva/Disattiva l'icona della minimappa."
--L["Quick tips"] = "Quick tips"
--L["quickTipsDesc"] = "|cff44ff44Double-click|r to filter bug reports. After you are done with the search results, return to the full sack by selecting a tab at the bottom. |cff44ff44Left-click|r and drag to move the window. |cff44ff44Right-click|r to close the sack and open the interface options for BugSack."
L["Wipe saved bugs"] = "Elimina bug salvati"
L["wipeDesc"] = "Elimina tutti i bug dal database."
L["X-Large"] = "Molto largo"
L["You have no bugs, yay!"] = "Nessun bug rilevato!"
L["You've received %d bugs from %s."] = "Hai ricevuto %d bug da %s."
--L.useMaster = "Use 'Master' sound channel"
--L.useMasterDesc = "Play the chosen error sound over the 'Master' sound channel instead of the default one."
--L.addonCompartment = "Addon compartment icon"
--L.addonCompartment_desc = "Creates a menu entry in the 'Addon Compartment' for BugSack."
end
setmetatable(L,{__index=function(t,k) return k end})
addon.L = L