mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Cast -> Cast Spell
This commit is contained in:
parent
7c2960f2ce
commit
f85a55c8b7
2 changed files with 2 additions and 2 deletions
app
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue