Skip to content

Commit

Permalink
docs: add crypto supporter field
Browse files Browse the repository at this point in the history
  • Loading branch information
fang2hou committed Nov 23, 2024
1 parent bf18235 commit 1d2016b
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions Locales/deDE.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = "Herstellungsqualitätsstufe"
L["Credits"] = "Credits"
L["Credits & help."] = "Credits & Hilfe."
L["Crying"] = "Weinen"
L["Crypto"] = true
L["Ctrl"] = "Strg"
L["Ctrl Key"] = "Strg Taste"
L["Cubic Ease"] = "Kubische Übergang"
Expand Down
1 change: 1 addition & 0 deletions Locales/enUS.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = true
L["Credits"] = true
L["Credits & help."] = true
L["Crying"] = true
L["Crypto"] = true
L["Ctrl"] = true
L["Ctrl Key"] = true
L["Cubic Ease"] = true
Expand Down
1 change: 1 addition & 0 deletions Locales/esMX.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = "Nivel de calidad de fabricación"
L["Credits"] = "Créditos"
L["Credits & help."] = "Créditos y ayuda"
L["Crying"] = "Llorando"
L["Crypto"] = true
L["Ctrl"] = "Ctrl"
L["Ctrl Key"] = "Tecla Ctrl"
L["Cubic Ease"] = "Facilidad cúbica"
Expand Down
1 change: 1 addition & 0 deletions Locales/frFR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = "Niveau de qualité de fabrication"
L["Credits"] = "Crédits"
L["Credits & help."] = "Crédits et aide."
L["Crying"] = "Pleurer"
L["Crypto"] = true
L["Ctrl"] = true
L["Ctrl Key"] = "Touche Ctrl"
L["Cubic Ease"] = true
Expand Down
1 change: 1 addition & 0 deletions Locales/itIT.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = true
L["Credits"] = "Crediti"
L["Credits & help."] = true
L["Crying"] = true
L["Crypto"] = true
L["Ctrl"] = true
L["Ctrl Key"] = true
L["Cubic Ease"] = true
Expand Down
1 change: 1 addition & 0 deletions Locales/koKR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = true
L["Credits"] = "크레딧"
L["Credits & help."] = true
L["Crying"] = "울음소리"
L["Crypto"] = true
L["Ctrl"] = true
L["Ctrl Key"] = true
L["Cubic Ease"] = true
Expand Down
1 change: 1 addition & 0 deletions Locales/ptBR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = true
L["Credits"] = "Créditos"
L["Credits & help."] = true
L["Crying"] = true
L["Crypto"] = true
L["Ctrl"] = true
L["Ctrl Key"] = true
L["Cubic Ease"] = true
Expand Down
1 change: 1 addition & 0 deletions Locales/ruRU.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = "Уровень качества изготовле
L["Credits"] = "Благодарности"
L["Credits & help."] = "Благодарности и помощь."
L["Crying"] = "Плач"
L["Crypto"] = true
L["Ctrl"] = true
L["Ctrl Key"] = "Клавиша Ctrl"
L["Cubic Ease"] = "Кубическая плавность"
Expand Down
1 change: 1 addition & 0 deletions Locales/zhCN.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = "制作品质等级"
L["Credits"] = "呜谢"
L["Credits & help."] = "鸣谢及帮助."
L["Crying"] = "哭泣"
L["Crypto"] = "加密货币"
L["Ctrl"] = true
L["Ctrl Key"] = "Ctrl 键"
L["Cubic Ease"] = "三次缓动 (Cubic)"
Expand Down
1 change: 1 addition & 0 deletions Locales/zhTW.lua
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ L["Crafting Quality Tier"] = "製作品質等級"
L["Credits"] = "嗚謝"
L["Credits & help."] = "鳴謝及幫助."
L["Crying"] = "哭泣"
L["Crypto"] = "加密貨幣"
L["Ctrl"] = true
L["Ctrl Key"] = "Ctrl 鍵"
L["Cubic Ease"] = "三次緩動 (Cubic)"
Expand Down
6 changes: 5 additions & 1 deletion Options/Information.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ local function blue(string)
end

local donators = {
crypto = blue(L["Crypto"] .. ": ") .. tconcat({
"OpenSSH.SOL (https://openssh.app)",
}, ", "),
cdkeys = blue(L["CDKey"] .. ": ") .. tconcat({
"DakJaniels",
}, ", "),
Expand Down Expand Up @@ -60,7 +63,8 @@ options.help = {
type = "description",
fontSize = "small",
name = tconcat({
donators.patreon .. " " .. donators.cdkeys,
donators.crypto .. " " .. donators.cdkeys,
donators.patreon,
donators.aifadian,
}, "\n"),
},
Expand Down

0 comments on commit 1d2016b

Please sign in to comment.