-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathLocale.lua
75 lines (72 loc) · 4.86 KB
/
Locale.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
local _, L = ...
L.spamBlocked = "BadBoy: Spam blocked"
L.clickToReport = "|cffeda55fClick|r to report, |cffeda55fAlt-Click|r to dismiss."
L.spamTooltip = "Show spam in button tooltip"
L.noAnimate = "Disable button pulse animation"
L.frequentButton = "Show the button more frequently"
L.frequentButtonTip = "To reduce player annoyance the report button will not always show.\nEnable this to always show the button asking to report and show it faster."
local loc = GetLocale()
if loc == "frFR" then
L.spamBlocked = "BadBoy : Spam bloqué"
L.spamTooltip = "Afficher le spam dans une infobulle"
L.noAnimate = "Désactiver l'animation d'impulsion du bouton."
L.clickToReport = "|cffeda55fClic|r pour signaler, |cffeda55fAlt-Clic|r pour faire disparaître."
L.frequentButton = "Afficher le bouton plus fréquemment"
L.frequentButtonTip = "Pour réduire les désagréments, le bouton de rapport s'affichera de en temps en temps. Activez cette option pour toujours afficher le bouton demandant le rapport et l'afficher plus rapidement."
elseif loc == "deDE" then
L.spamBlocked = "BadBoy: Spam geblockt"
--L.spamTooltip = "Show spam in button tooltip"
--L.noAnimate = "Disable button pulse animation"
--L.clickToReport = "|cffeda55fClick|r to report, |cffeda55fAlt-Click|r to dismiss."
--L.frequentButton = "Show the button more frequently"
--L.frequentButtonTip = "To reduce player annoyance the report button will not always show.\nEnable this to always show the button asking to report and show it faster."
elseif loc == "zhTW" then
L.spamBlocked = "BadBoy: 垃圾訊息已被阻擋"
--L.spamTooltip = "Show spam in button tooltip"
--L.noAnimate = "Disable button pulse animation"
--L.clickToReport = "|cffeda55fClick|r to report, |cffeda55fAlt-Click|r to dismiss."
--L.frequentButton = "Show the button more frequently"
--L.frequentButtonTip = "To reduce player annoyance the report button will not always show.\nEnable this to always show the button asking to report and show it faster."
elseif loc == "zhCN" then
L.spamBlocked = "BadBoy: 垃圾信息已被拦截"
--L.spamTooltip = "Show spam in button tooltip"
--L.noAnimate = "Disable button pulse animation"
--L.clickToReport = "|cffeda55fClick|r to report, |cffeda55fAlt-Click|r to dismiss."
--L.frequentButton = "Show the button more frequently"
--L.frequentButtonTip = "To reduce player annoyance the report button will not always show.\nEnable this to always show the button asking to report and show it faster."
elseif loc == "esES" or loc == "esMX" then
L.spamBlocked = "BadBoy: Spam bloqueado"
L.spamTooltip = "Mostrar spam en la descripción emergente del botón"
L.noAnimate = "Desactivar animación del botón"
L.clickToReport = "|cffeda55fClick|r para reportar, |cffeda55fAlt-Click|r para descartar."
L.frequentButton = "Mostrar el botón más a menudo"
L.frequentButtonTip = "Para reducir las molestias al jugador, el botón de reporte no se muestra siempre.\nActive esto para mostrar siempre y de manera más rápida el botón de reporte."
elseif loc == "ruRU" then
L.spamBlocked = "BadBoy: Спам заблокирован"
--L.spamTooltip = "Show spam in button tooltip"
--L.noAnimate = "Disable button pulse animation"
--L.clickToReport = "|cffeda55fClick|r to report, |cffeda55fAlt-Click|r to dismiss."
--L.frequentButton = "Show the button more frequently"
--L.frequentButtonTip = "To reduce player annoyance the report button will not always show.\nEnable this to always show the button asking to report and show it faster."
elseif loc == "koKR" then
L.spamBlocked = "BadBoy: 스팸 차단"
--L.spamTooltip = "Show spam in button tooltip"
--L.noAnimate = "Disable button pulse animation"
--L.clickToReport = "|cffeda55fClick|r to report, |cffeda55fAlt-Click|r to dismiss."
--L.frequentButton = "Show the button more frequently"
--L.frequentButtonTip = "To reduce player annoyance the report button will not always show.\nEnable this to always show the button asking to report and show it faster."
elseif loc == "ptBR" then
L.spamBlocked = "BadBoy: Spam bloqueado"
--L.spamTooltip = "Show spam in button tooltip"
--L.noAnimate = "Disable button pulse animation"
--L.clickToReport = "|cffeda55fClick|r to report, |cffeda55fAlt-Click|r to dismiss."
--L.frequentButton = "Show the button more frequently"
--L.frequentButtonTip = "To reduce player annoyance the report button will not always show.\nEnable this to always show the button asking to report and show it faster."
elseif loc == "itIT" then
L.spamBlocked = "BadBoy: Spam bloccata"
--L.spamTooltip = "Show spam in button tooltip"
--L.noAnimate = "Disable button pulse animation"
--L.clickToReport = "|cffeda55fClick|r to report, |cffeda55fAlt-Click|r to dismiss."
--L.frequentButton = "Show the button more frequently"
--L.frequentButtonTip = "To reduce player annoyance the report button will not always show.\nEnable this to always show the button asking to report and show it faster."
end