comparison localization/itIT.lua @ 81:0515882856f1 v38

updated for 7.0
author yellowfive
date Tue, 19 Jul 2016 10:05:32 -0700
parents 69db1c3025ac
children b8e9664d3229
comparison
equal deleted inserted replaced
80:8f235b016212 81:0515882856f1
18 18
19 19
20 --[[---------------------------------------------------------------------- 20 --[[----------------------------------------------------------------------
21 General 21 General
22 ------------------------------------------------------------------------]] 22 ------------------------------------------------------------------------]]
23
24 L.SpecsShort = {
25 [1] = "Blood", -- DeathKnightBlood
26 [2] = "Frost", -- DeathKnightFrost
27 [3] = "Unholy", -- DeathKnightUnholy
28 [4] = "Havoc", -- DemonHunterHavoc
29 [5] = "Vengeance", -- DemonHunterVengeance
30 [6] = "Moon", -- DruidBalance
31 [7] = "Feral", -- DruidFeral
32 [8] = "Bear", -- DruidGuardian
33 [9] = "Resto", -- DruidRestoration
34 [10] = "BM", -- HunterBeastMastery
35 [11] = "Marks", -- HunterMarksmanship
36 [12] = "Survival", -- HunterSurvival
37 [13] = "Arcane", -- MageArcane
38 [14] = "Fire", -- MageFire
39 [15] = "Frost", -- MageFrost
40 [16] = "Brew", -- MonkBrewmaster
41 [17] = "Mist", -- MonkMistweaver
42 [18] = "Wind", -- MonkWindwalker
43 [19] = "Holy", -- PaladinHoly
44 [20] = "Prot", -- PaladinProtection
45 [21] = "Ret", -- PaladinRetribution
46 [22] = "Disc", -- PriestDiscipline
47 [23] = "Holy", -- PriestHoly
48 [24] = "Shadow", -- PriestShadow
49 [25] = "Assn", -- RogueAssassination
50 [26] = "Outlaw", -- RogueOutlaw
51 [27] = "Sub", -- RogueSubtlety
52 [28] = "Elem", -- ShamanElemental
53 [29] = "Enh", -- ShamanEnhancement
54 [30] = "Resto", -- ShamanRestoration
55 [31] = "Aff", -- WarlockAffliction
56 [32] = "Demo", -- WarlockDemonology
57 [33] = "Destro", -- WarlockDestruction
58 [34] = "Arms", -- WarriorArms
59 [35] = "Fury", -- WarriorFury
60 [36] = "Prot", -- WarriorProtection
61 }
23 62
24 -- stat strings for e.g. displaying gem/enchant abbreviations, make as short as possible without being confusing/ambiguous 63 -- stat strings for e.g. displaying gem/enchant abbreviations, make as short as possible without being confusing/ambiguous
25 L.StatsShort = { 64 L.StatsShort = {
26 ["Strength"] = "For", 65 ["Strength"] = "For",
27 ["Agility"] = "Agi", 66 ["Agility"] = "Agi",
143 182
144 --[[---------------------------------------------------------------------- 183 --[[----------------------------------------------------------------------
145 Gear Tab 184 Gear Tab
146 ------------------------------------------------------------------------]] 185 ------------------------------------------------------------------------]]
147 L.GearImportNote = "Clicca Importa per importare i dati dal sito." 186 L.GearImportNote = "Clicca Importa per importare i dati dal sito."
148 L.GearTabPrimary = "Spec Primaria"
149 L.GearTabSecondary = "Spec Secondaria"
150 L.GearBlank = "Non hai caricato nessun equipaggiamento per questa specializzazione." 187 L.GearBlank = "Non hai caricato nessun equipaggiamento per questa specializzazione."
151 L.GearBlank2 = "Vai su askmrrobot.com per ottimizzare l'equipaggiamento, quindi usa il pulsante Importa sulla sinistra." 188 L.GearBlank2 = "Vai su askmrrobot.com per ottimizzare l'equipaggiamento, quindi usa il pulsante Importa sulla sinistra."
152 L.GearButtonEquip = function(spec) 189 L.GearButtonEquip = function(spec)
153 -- spec 1 is primary, 2 is secondary 190 return string.format("Attiva %s Spec ed Equip", spec)
154 return string.format("Attiva %s Spec ed Equip", spec == 1 and "Primaria" or "Secondaria")
155 end 191 end
156 L.GearButtonShop = "Show Shopping List" 192 L.GearButtonShop = "Show Shopping List"
157 193
158 L.GearEquipErrorCombat = "Non puoi cambiare spec/eqiup mentre sei in combattimento!" 194 L.GearEquipErrorCombat = "Non puoi cambiare spec/eqiup mentre sei in combattimento!"
159 L.GearEquipErrorEmpty = "Nessun equipaggiamento salvato per questa Spec." 195 L.GearEquipErrorEmpty = "Nessun equipaggiamento salvato per questa Spec."
174 Oppure, puoi cliccare con il tasto destro sul pulsante sulla minimappa per cambiare equip e spec. 210 Oppure, puoi cliccare con il tasto destro sul pulsante sulla minimappa per cambiare equip e spec.
175 211
176 Oppure! Puoi usare i seguenti comandi:]] 212 Oppure! Puoi usare i seguenti comandi:]]
177 213
178 L.GearTipCommands = 214 L.GearTipCommands =
179 [[/amr equip [1 or 2] 215 [[/amr equip [1-4]
180 1 = primary 216 no arg = cycle]]
181 2 = secondary
182 no arg = toggle]]
183 -- note to translators: the slash commands are literal and should stay as english 217 -- note to translators: the slash commands are literal and should stay as english
184 218
185 219
186 --[[---------------------------------------------------------------------- 220 --[[----------------------------------------------------------------------
187 Import Dialog on Gear Tab 221 Import Dialog on Gear Tab