Cast -> Cast Spell

This commit is contained in:
Nick Winter 2014-02-19 18:20:21 -08:00
parent 7c2960f2ce
commit f85a55c8b7
2 changed files with 2 additions and 2 deletions
app
locale
views/play/level/tome

View file

@ -191,7 +191,7 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr
tome_minion_spells: "Your Minions' Spells"
tome_read_only_spells: "Read-Only Spells"
tome_other_units: "Other Units"
tome_cast_button_castable: "Cast"
tome_cast_button_castable: "Cast Spell"
tome_cast_button_casting: "Casting"
tome_cast_button_cast: "Spell Cast"
tome_autocast_delay: "Autocast Delay"

View file

@ -76,7 +76,7 @@ module.exports = class CastButtonView extends View
if @casting
s = $.i18n.t("play_level.tome_cast_button_casting", defaultValue: "Casting")
else if castable
s = $.i18n.t("play_level.tome_cast_button_castable", defaultValue: "Cast") + " " + @castShortcut
s = $.i18n.t("play_level.tome_cast_button_castable", defaultValue: "Cast Spell") + " " + @castShortcut
else
s = $.i18n.t("play_level.tome_cast_button_cast", defaultValue: "Spell Cast")
@castButton.text s