22 lines
688 B
Plaintext
22 lines
688 B
Plaintext
--[[
|
||
lua中所有字符串配置
|
||
--]]
|
||
Words = Words or {}
|
||
Words.GetString = function(key)
|
||
return Words.Config[key]
|
||
end
|
||
|
||
Words.Config = {
|
||
-- 神秘宝箱活动
|
||
mystical_select_box_desribe = [[<color=#E3D161>从每个奖池<color=#88FD7C>分别选取</color>想要的道具参加抽奖</color>]],
|
||
mystical_total_num_desribe = [[<color=#E3D161>当前数量<color=#FE5E26>(%d/%d)</color></color>]],
|
||
mystical_please_seleted_all_tips = [[请选择完所有道具再抽奖]],
|
||
mystical_over_selected_num_tips = [[已经超过该类最大选择数]],
|
||
mystical_free = [[免费]],
|
||
mystical_left_reset_times = [[<color=#E3D161>剩余重置<color=#FE5E26>%d</color>次</color>]],
|
||
}
|
||
|
||
|
||
|
||
|