wow_i18n 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1d47e9dde6cbfdf89076f2613902bb471a2ff719
4
+ data.tar.gz: 3c9643f06d4b7e3d3b4051cd39280c2425c986d9
5
+ SHA512:
6
+ metadata.gz: a7886af2aa4e5c27db72b1d17b3dfb0818c99ab420d5ecd9777a60babf6da92f099d1398c9b6ad326a056ab34501208771fd9f10357dde5a5a78e304f4e15fc2
7
+ data.tar.gz: ce5711cab8e066aa2807c5f0bace9c8ab3af0af54c12fc2a50dfe161af6b0927f22a5975f0b8ca9d667192430001f5ca8ef1aa0e5c12271d7757f7a8bc4442bc
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
@@ -0,0 +1,13 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1.0
6
+ - 2.2.0
7
+
8
+ branches:
9
+ only:
10
+ - master
11
+
12
+ script:
13
+ - bundle exec rake travis
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Nils Landt
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,36 @@
1
+ # wow_i18n
2
+
3
+ Provides i18n compatible translations related to World of Warcraft.
4
+
5
+ # Usage
6
+
7
+ ## Rails application
8
+
9
+ Use the [wow_i18n_rails](https://www.github.com/promisedlandt/wow_i18n_rails) gem.
10
+
11
+ ## Non-Rails application
12
+
13
+ In a non-Rails application, install the gem and add
14
+
15
+ ```ruby
16
+ require "wow_i18n"
17
+ WowI18n.import
18
+ ```
19
+
20
+ By default, all locale data will be loaded.
21
+ If you would like to only load translations for certain locales, you can pass those locales to import.
22
+
23
+ ```ruby
24
+ require "wow_i18n"
25
+
26
+ # Only load German and French translations
27
+ WowI18n.import(:de, :fr)
28
+ # this also works
29
+ WowI18n.import([:de, :fr])
30
+ ```
31
+
32
+ # Contributing
33
+
34
+ If you add a key to any locale, make sure to add it to every locale.
35
+
36
+ Only pull requests that pass the spec (run `rake`) will be accepted.
@@ -0,0 +1,14 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ require "rspec/core"
5
+ require "rspec/core/rake_task"
6
+ RSpec::Core::RakeTask.new(:spec) do |spec|
7
+ spec.pattern = FileList["spec/**/*_spec.rb"]
8
+ end
9
+
10
+ desc "for travis-ci run"
11
+ task travis: :default
12
+
13
+ task default: :spec
14
+
@@ -0,0 +1,14 @@
1
+ require "wow_i18n/version"
2
+
3
+ module WowI18n
4
+ class << self
5
+ def import(*requested_locales)
6
+ locales = Array(requested_locales).compact
7
+
8
+ pattern = locales.empty? ? "*" : "{#{ locales.join "," }}"
9
+
10
+ files = Dir[File.join(File.dirname(__FILE__), "..", "translations/#{ pattern }.yml")]
11
+ I18n.load_path.concat(files)
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,3 @@
1
+ module WowI18n
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,13 @@
1
+ require "spec_helper"
2
+
3
+ all_locale_yml_files.each do |locale_file|
4
+ describe "file validity" do
5
+ it_behaves_like "a valid locale file", locale_file
6
+ end
7
+ end
8
+
9
+ all_non_english_locale_yml_files.each do |locale_file|
10
+ describe locale_file do
11
+ it { is_expected.to be_a_complete_translation_of english_locale_yml_file }
12
+ end
13
+ end
@@ -0,0 +1,20 @@
1
+ require "rspec"
2
+ require "i18n-spec"
3
+
4
+ def all_locale_yml_files
5
+ @all_locale_yml_files ||= Dir[File.join(locale_yml_files_dir, "translations/*.yml")]
6
+ end
7
+
8
+ def all_non_english_locale_yml_files
9
+ @all_non_english_locale_yml_files ||= all_locale_yml_files - [english_locale_yml_file]
10
+ end
11
+
12
+ def english_locale_yml_file
13
+ @english_locale_yml_file ||= File.join(locale_yml_files_dir, "translations/en.yml")
14
+ end
15
+
16
+ private
17
+
18
+ def locale_yml_files_dir
19
+ @locale_yml_files_dir ||= File.join(File.dirname(__FILE__), "..")
20
+ end
@@ -0,0 +1,231 @@
1
+ de:
2
+ classes: &classes
3
+ death_knight: "Todesritter"
4
+ druid: "Druide"
5
+ hunter: "Jäger"
6
+ mage: "Magier"
7
+ monk: "Mönch"
8
+ paladin: "Paladin"
9
+ priest: "Priester"
10
+ rogue: "Schurke"
11
+ shaman: "Schamane"
12
+ warlock: "Hexenmeister"
13
+ warrior: "Krieger"
14
+
15
+ class_specializations: &class_specializations
16
+ death_knight:
17
+ blood: "Blut"
18
+ frost: "Frost"
19
+ unholy: "Unheilig"
20
+ druid:
21
+ balance: "Gleichgewicht"
22
+ guardian: "Wildheit"
23
+ feral: "Wächter"
24
+ restoration: "Wiederherstellung"
25
+ hunter:
26
+ beast_mastery: "Tierherrschaft"
27
+ marksmanship: "Treffsicherheit"
28
+ survival: "Überleben"
29
+ mage:
30
+ arcane: "Arkan"
31
+ fire: "Feuer"
32
+ frost: "Frost"
33
+ monk:
34
+ brewmaster: "Braumeister"
35
+ mistweaver: "Nebelwirker"
36
+ windwalker: "Windläufer"
37
+ paladin:
38
+ holy: "Heilig"
39
+ protection: "Schutz"
40
+ retribution: "Vergeltung"
41
+ priest:
42
+ discipline: "Disziplin"
43
+ holy: "Heilig"
44
+ shadow: "Schatten"
45
+ rogue:
46
+ assassination: "Meucheln"
47
+ combat: "Kampf"
48
+ subtlety: "Täuschung"
49
+ shaman:
50
+ elemental: "Elementar"
51
+ enhancement: "Verstärkung"
52
+ restoration: "Wiederherstellung"
53
+ warlock:
54
+ affliction: "Gebrechen"
55
+ demonology: "Dämonologie"
56
+ destruction: "Zerstörung"
57
+ warrior:
58
+ arms: "Waffen"
59
+ fury: "Furor"
60
+ protection: "Schutz"
61
+
62
+ follower_classes:
63
+ <<: *classes
64
+
65
+ follower_specializations:
66
+ <<: *class_specializations
67
+
68
+ missions:
69
+ names:
70
+ cant_go_home_this_way: "Auf der grimm'schen Eisenbahn"
71
+ magical_mystery_tour: "Spurlos verschwunden"
72
+ griefing_with_the_enemy: "Geliebter Feind"
73
+ whos_the_boss: "Wer ist hier der Boss?"
74
+ elemental_territory: "Elementargebiet"
75
+ the_basilisks_stare: "Der Blick des Basilisken"
76
+
77
+ mission_threats:
78
+ danger_zones: "Gefahrenzone"
79
+ deadly_minions: "Tödliche Diener"
80
+ group_damage: "Gruppenschaden"
81
+ magic_debuff: "Schwächungsmagie"
82
+ massive_strike: "Massiver Hieb"
83
+ minion_swarms: "Dienerschwärme"
84
+ powerful_spell: "Mächtiger Zauber"
85
+ timed_battle: "Zeitbegrenzung"
86
+ wild_aggression: "Wilde Aggression"
87
+
88
+ follower_abilities:
89
+ anti_magic_shell: "Antimagische Hülle"
90
+ bone_shield: "Knochenschild"
91
+ dark_command: "Dunkler Befehl"
92
+ death_and_decay: "Tod und Verfall"
93
+ empower_rune_weapon: "Runenwaffe verstärken"
94
+ mind_freeze: "Gedankenfrost"
95
+ barkskin: "Baumrinde"
96
+ berserk: "Berserker"
97
+ celestial_alignment: "Himmlische Ausrichtung"
98
+ dash: "Spurt"
99
+ entangling_roots: "Wucherwurzeln"
100
+ growl: "Knurren"
101
+ hurricane: "Hurrikan"
102
+ innervate: "Anregen"
103
+ nature's_cure: "Heilung der Natur"
104
+ wild_growth: "Wildwuchs"
105
+ counter_shot: "Gegenschuss"
106
+ deterrence: "Abschreckung"
107
+ disengage: "Rückzug"
108
+ feign_death: "Totstellen"
109
+ freezing_trap: "Eiskältefalle"
110
+ multi_shot: "Mehrfachschuss"
111
+ rapid_fire: "Schnellfeuer"
112
+ blink: "Blinzeln"
113
+ blizzard: "Blizzard"
114
+ conjure_food: "Essen herbeizaubern"
115
+ counterspell: "Gegenzauber"
116
+ ice_block: "Eisblock"
117
+ polymorph: "Verwandlung"
118
+ time_warp: "Zeitkrümmung"
119
+ chi_wave: "Chiwelle"
120
+ detox: "Entgiftung"
121
+ energizing_brew: "Belebendes Gebräu"
122
+ guard: "Schutz"
123
+ mana_tea: "Manatee"
124
+ paralysis: "Paralyse"
125
+ provoke: "Provokation"
126
+ roll: "Rollen"
127
+ spear_hand_strike: "Speerhandstoß"
128
+ avenging_wrath: "Zornige Vergeltung"
129
+ cleanse: "Läuterung"
130
+ divine_plea: "Göttliche Bitte"
131
+ divine_shield: "Gottesschild"
132
+ divine_storm: "Göttlicher Sturm"
133
+ holy_radiance: "Heiliges Strahlen"
134
+ rebuke: "Zurechtweisung"
135
+ reckoning: "Abrechnung"
136
+ repentance: "Buße"
137
+ dispel_magic: "Magiebannung"
138
+ dominate_mind: "Gedankenkontrolle"
139
+ leap_of_faith: "Glaubenssprung"
140
+ mind_sear: "Gedankenexplosion"
141
+ power_infusion: "Seele der Macht"
142
+ prayer_of_healing: "Gebet der Heilung"
143
+ shadowfiend: "Schattengeist"
144
+ evasion: "Entrinnen"
145
+ fan_of_knives: "Dolchfächer"
146
+ kick: "Tritt"
147
+ marked_for_death: "Todesurteil"
148
+ sap: "Kopfnuss"
149
+ sprint: "Sprint"
150
+ ascendance: "Aszendenz"
151
+ chain_heal: "Kettenheilung"
152
+ chain_lightning: "Kettenblitzschlag"
153
+ ghost_wolf: "Geisterwolf"
154
+ hex: "Verhexen"
155
+ purify_spirit: "Geistreinigung"
156
+ water_shield: "Wasserschild"
157
+ wind_shear: "Windstoß"
158
+ drain_life: "Blutsauger"
159
+ fear: "Furcht"
160
+ metamorphosis: "Metamorphose"
161
+ rain_of_fire: "Feuerregen"
162
+ singe_magic: "Magie versengen"
163
+ spell_lock: "Zaubersperre"
164
+ summon_infernal: "Höllenbestie beschwören"
165
+ unending_resolve: "Erbarmungslose Entschlossenheit"
166
+ cleave: "Spalten"
167
+ heroic_leap: "Heldenhafter Sprung"
168
+ pummel: "Zuschlagen"
169
+ recklessness: "Tollkühnheit"
170
+ shield_wall: "Schildwall"
171
+ taunt: "Spott"
172
+
173
+ follower_traits:
174
+ extra_training: "Zusätzliches Training"
175
+ fast_learner: "Schneller Lerner"
176
+ scavenger: "Wiederverwertung"
177
+ treasure_hunter: "Schatzjäger"
178
+ alchemy: "Alchemie"
179
+ blacksmithing: "Schmiedekunst"
180
+ enchanting: "Verzauberkunst"
181
+ engineering: "Ingenieurskunst"
182
+ herbalism: "Kräuterkunde"
183
+ inscription: "Inschriftenkunde"
184
+ jewelcrafting: "Juwelierskunst"
185
+ leatherworking: "Lederverarbeitung"
186
+ mining: "Bergbau"
187
+ skinning: "Kürschnerei"
188
+ tailoring: "Schneiderei"
189
+ beastslayer: "Wildtiertöter"
190
+ demonslayer: "Dämonentöter"
191
+ furyslayer: "Zorntöter"
192
+ gronnslayer: "Gronntöter"
193
+ ogreslayer: "Ogertöter"
194
+ orcslayer: "Orctöter"
195
+ primalslayer: "Ursprünglichentöter"
196
+ talonslayer: "Krallentöter"
197
+ voidslayer: "Leerentöter"
198
+ cave_dweller: "Höhlenbewohner"
199
+ cold_blooded: "Kaltblütig"
200
+ guerilla_fighter: "Guerillakrieger"
201
+ marshwalker: "Marschenläufer"
202
+ mountaineer: "Bergsteiger"
203
+ naturalist: "Naturalist"
204
+ plainsrunner: "Ebenenläufer"
205
+ wastelander: "Ödlandbewohner"
206
+ ally_of_argus: "Verbündeter von Argus"
207
+ brew_aficionado: "Bräuliebhaber"
208
+ canine_companion: "Hündischer Begleiter"
209
+ child_of_draenor: "Kind Draenors"
210
+ child_of_the_moon: "Kind des Mondes"
211
+ death_fascination: "Vom Tod fasziniert"
212
+ dwarvenborn: "Zwergischen Ursprungs"
213
+ economist: "Ökonom"
214
+ elvenkind: "Elfenfreund"
215
+ gnome_lover: "Freund der Gnome"
216
+ humanist: "Humanist"
217
+ totemist: "Totemträger"
218
+ voodoo_zealot: "Voodoozelot"
219
+ wildling: "Wildling"
220
+ mechano_affictionado: "Mechaniker"
221
+ bird_watcher : "Ornithologe"
222
+ ogre_buddy: "Ogerkumpel"
223
+ burst_of_power: "Kraftspurt"
224
+ epic_mount: "Episches Reittier"
225
+ high_stamina: "Große Ausdauer"
226
+ speed_of_light : "Geschwindigkeit des Lichts"
227
+ lone_wolf: "Einsamer Wolf"
228
+ master_assassin: "Meiserassassine"
229
+ mentor: "Mentor"
230
+ dancer: "Tänzer"
231
+ hearthstone_pro: "Hearthstone-Profi"
@@ -0,0 +1,231 @@
1
+ en:
2
+ classes: &classes
3
+ death_knight: "Death Knight"
4
+ druid: "Druid"
5
+ hunter: "Hunter"
6
+ mage: "Mage"
7
+ monk: "Monk"
8
+ paladin: "Paladin"
9
+ priest: "Priest"
10
+ rogue: "Rogue"
11
+ shaman: "Shaman"
12
+ warlock: "Warlock"
13
+ warrior: "Warrior"
14
+
15
+ class_specializations: &class_specializations
16
+ death_knight:
17
+ blood: "Blood"
18
+ frost: "Frost"
19
+ unholy: "Unholy"
20
+ druid:
21
+ balance: "Balance"
22
+ guardian: "Guardian"
23
+ feral: "Feral"
24
+ restoration: "Restoration"
25
+ hunter:
26
+ beast_mastery: "Beast Mastery"
27
+ marksmanship: "Marksmanship"
28
+ survival: "Survival"
29
+ mage:
30
+ arcane: "Arcane"
31
+ fire: "Fire"
32
+ frost: "Frost"
33
+ monk:
34
+ brewmaster: "Brewmaster"
35
+ mistweaver: "Mistweaver"
36
+ windwalker: "Windwalker"
37
+ paladin:
38
+ holy: "Holy"
39
+ protection: "Protection"
40
+ retribution: "Retribution"
41
+ priest:
42
+ discipline: "Discipline"
43
+ holy: "Holy"
44
+ shadow: "Shadow"
45
+ rogue:
46
+ assassination: "Assassination"
47
+ combat: "Combat"
48
+ subtlety: "Subtlety"
49
+ shaman:
50
+ elemental: "Elemental"
51
+ enhancement: "Enhancement"
52
+ restoration: "Restoration"
53
+ warlock:
54
+ affliction: "Affliction"
55
+ demonology: "Demonology"
56
+ destruction: "Destruction"
57
+ warrior:
58
+ arms: "Arms"
59
+ fury: "Fury"
60
+ protection: "Protection"
61
+
62
+ follower_classes:
63
+ <<: *classes
64
+
65
+ follower_specializations:
66
+ <<: *class_specializations
67
+
68
+ missions:
69
+ names:
70
+ cant_go_home_this_way: "Can't Go Home This Way"
71
+ magical_mystery_tour: "Magical Mystery Tour"
72
+ griefing_with_the_enemy: "Griefing with the Enemy"
73
+ whos_the_boss: "Who's the Boss?"
74
+ elemental_territory: "Elemental Territory"
75
+ the_basilisks_stare: "The Basilisk's Stare"
76
+
77
+ mission_threats:
78
+ danger_zones: "Danger Zones"
79
+ deadly_minions: "Deadly Minions"
80
+ group_damage: "Group Damage"
81
+ magic_debuff: "Magic Debuff"
82
+ massive_strike: "Massive Strike"
83
+ minion_swarms: "Minion Swarms"
84
+ powerful_spell: "Powerful Spell"
85
+ timed_battle: "Timed Battle"
86
+ wild_aggression: "Wild Aggression"
87
+
88
+ follower_abilities:
89
+ anti_magic_shell: "Anti-Magic Shell"
90
+ bone_shield: "Bone Shield"
91
+ dark_command: "Dark Command"
92
+ death_and_decay: "Death and Decay"
93
+ empower_rune_weapon: "Empower Rune Weapon"
94
+ mind_freeze: "Mind Freeze"
95
+ barkskin: "Barkskin"
96
+ berserk: "Berserk"
97
+ celestial_alignment: "Celestial Alignment"
98
+ dash: "Dash"
99
+ entangling_roots: "Entangling Roots"
100
+ growl: "Growl"
101
+ hurricane: "Hurricane"
102
+ innervate: "Innervate"
103
+ nature's_cure: "Nature's Cure"
104
+ wild_growth: "Wild Growth"
105
+ counter_shot: "Counter Shot"
106
+ deterrence: "Deterrence"
107
+ disengage: "Disengage"
108
+ feign_death: "Feign Death"
109
+ freezing_trap: "Freezing Trap"
110
+ multi_shot: "Multi-Shot"
111
+ rapid_fire: "Rapid Fire"
112
+ blink: "Blink"
113
+ blizzard: "Blizzard"
114
+ conjure_food: "Conjure Food"
115
+ counterspell: "Counterspell"
116
+ ice_block: "Ice Block"
117
+ polymorph: "Polymorph"
118
+ time_warp: "Time Warp"
119
+ chi_wave: "Chi Wave"
120
+ detox: "Detox"
121
+ energizing_brew: "Energizing Brew"
122
+ guard: "Guard"
123
+ mana_tea: "Mana Tea"
124
+ paralysis: "Paralysis"
125
+ provoke: "Provoke"
126
+ roll: "Roll"
127
+ spear_hand_strike: "Spear Hand Strike"
128
+ avenging_wrath: "Avenging Wrath"
129
+ cleanse: "Cleanse"
130
+ divine_plea: "Divine Plea"
131
+ divine_shield: "Divine Shield"
132
+ divine_storm: "Divine Storm"
133
+ holy_radiance: "Holy Radiance"
134
+ rebuke: "Rebuke"
135
+ reckoning: "Reckoning"
136
+ repentance: "Repentance"
137
+ dispel_magic: "Dispel Magic"
138
+ dominate_mind: "Dominate Mind"
139
+ leap_of_faith: "Leap of Faith"
140
+ mind_sear: "Mind Sear"
141
+ power_infusion: "Power Infusion"
142
+ prayer_of_healing: "Prayer of Healing"
143
+ shadowfiend: "Shadowfiend"
144
+ evasion: "Evasion"
145
+ fan_of_knives: "Fan of Knives"
146
+ kick: "Kick"
147
+ marked_for_death: "Marked for Death"
148
+ sap: "Sap"
149
+ sprint: "Sprint"
150
+ ascendance: "Ascendance"
151
+ chain_heal: "Chain Heal"
152
+ chain_lightning: "Chain Lightning"
153
+ ghost_wolf: "Ghost Wolf"
154
+ hex: "Hex"
155
+ purify_spirit: "Purify Spirit"
156
+ water_shield: "Water Shield"
157
+ wind_shear: "Wind Shear"
158
+ drain_life: "Drain Life"
159
+ fear: "Fear"
160
+ metamorphosis: "Metamorphosis"
161
+ rain_of_fire: "Rain of Fire"
162
+ singe_magic: "Singe Magic"
163
+ spell_lock: "Spell Lock"
164
+ summon_infernal: "Summon Infernal"
165
+ unending_resolve: "Unending Resolve"
166
+ cleave: "Cleave"
167
+ heroic_leap: "Heroic Leap"
168
+ pummel: "Pummel"
169
+ recklessness: "Recklessness"
170
+ shield_wall: "Shield Wall"
171
+ taunt: "Taunt"
172
+
173
+ follower_traits:
174
+ extra_training: "Extra Training"
175
+ fast_learner: "Fast Learner"
176
+ scavenger: "Scavenger"
177
+ treasure_hunter: "Treasure Hunter"
178
+ alchemy: "Alchemy"
179
+ blacksmithing: "Blacksmithing"
180
+ enchanting: "Enchanting"
181
+ engineering: "Engineering"
182
+ herbalism: "Herbalism"
183
+ inscription: "Inscription"
184
+ jewelcrafting: "Jewelcrafting"
185
+ leatherworking: "Leatherworking"
186
+ mining: "Mining"
187
+ skinning: "Skinning"
188
+ tailoring: "Tailoring"
189
+ beastslayer: "Beastslayer"
190
+ demonslayer: "Demonslayer"
191
+ furyslayer: "Furyslayer"
192
+ gronnslayer: "Gronnslayer"
193
+ ogreslayer: "Ogreslayer"
194
+ orcslayer: "Orcslayer"
195
+ primalslayer: "Primalslayer"
196
+ talonslayer: "Talonslayer"
197
+ voidslayer: "Voidslayer"
198
+ cave_dweller: "Cave Dweller"
199
+ cold_blooded: "Cold-Blooded"
200
+ guerilla_fighter: "Guerilla Fighter"
201
+ marshwalker: "Marshwalker"
202
+ mountaineer: "Mountaineer"
203
+ naturalist: "Naturalist"
204
+ plainsrunner: "Plainsrunner"
205
+ wastelander: "Wastelander"
206
+ ally_of_argus: "Ally of Argus"
207
+ brew_aficionado: "Brew Aficionado"
208
+ canine_companion: "Canine Companion"
209
+ child_of_draenor: "Child of Draenor"
210
+ child_of_the_moon: "Child of the Moon"
211
+ death_fascination: "Death Fascination"
212
+ dwarvenborn: "Dwarvenborn"
213
+ economist: "Economist"
214
+ elvenkind: "Elvenkind"
215
+ gnome_lover: "Gnome-Lover"
216
+ humanist: "Humanist"
217
+ totemist: "Totemist"
218
+ voodoo_zealot: "Voodoo Zealot"
219
+ wildling: "Wildling"
220
+ mechano_affictionado: "Mechano Affictionado"
221
+ bird_watcher: "Bird Watcher"
222
+ ogre_buddy: "Ogre Buddy"
223
+ burst_of_power: "Burst of Power"
224
+ epic_mount: "Epic Mount"
225
+ high_stamina: "High Stamina"
226
+ speed_of_light: "Speed of Light"
227
+ lone_wolf: "Lone Wolf"
228
+ master_assassin: "Master Assassin"
229
+ mentor: "Mentor"
230
+ dancer: "Dancer"
231
+ hearthstone_pro: "Hearthstone Pro"
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "wow_i18n/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "wow_i18n"
8
+ spec.version = WowI18n::VERSION
9
+ spec.authors = ["Nils Landt"]
10
+ spec.email = ["nils@promisedlandt.de"]
11
+ spec.summary = %q{I18n for World of Warcraft for Ruby}
12
+ spec.homepage = "https://www.github.com/promisedlandt/wow_i18n"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_runtime_dependency "i18n", "~> 0.7"
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.7"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec", "~> 3.2"
25
+ spec.add_development_dependency "i18n-spec", "~> 0.6.0"
26
+ end
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wow_i18n
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Nils Landt
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: i18n
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.2'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.2'
69
+ - !ruby/object:Gem::Dependency
70
+ name: i18n-spec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.6.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.6.0
83
+ description:
84
+ email:
85
+ - nils@promisedlandt.de
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".travis.yml"
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - lib/wow_i18n.rb
97
+ - lib/wow_i18n/version.rb
98
+ - spec/locales_spec.rb
99
+ - spec/spec_helper.rb
100
+ - translations/de.yml
101
+ - translations/en.yml
102
+ - wow_i18n.gemspec
103
+ homepage: https://www.github.com/promisedlandt/wow_i18n
104
+ licenses:
105
+ - MIT
106
+ metadata: {}
107
+ post_install_message:
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubyforge_project:
123
+ rubygems_version: 2.4.5
124
+ signing_key:
125
+ specification_version: 4
126
+ summary: I18n for World of Warcraft for Ruby
127
+ test_files:
128
+ - spec/locales_spec.rb
129
+ - spec/spec_helper.rb