diff --git a/Locales/deDE.lua b/Locales/deDE.lua index 30eb1502..b1df692f 100644 --- a/Locales/deDE.lua +++ b/Locales/deDE.lua @@ -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" diff --git a/Locales/enUS.lua b/Locales/enUS.lua index 01178402..06730f48 100644 --- a/Locales/enUS.lua +++ b/Locales/enUS.lua @@ -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 diff --git a/Locales/esMX.lua b/Locales/esMX.lua index fbf8c436..0d122b3d 100644 --- a/Locales/esMX.lua +++ b/Locales/esMX.lua @@ -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" diff --git a/Locales/frFR.lua b/Locales/frFR.lua index 052d1894..44915f5c 100644 --- a/Locales/frFR.lua +++ b/Locales/frFR.lua @@ -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 diff --git a/Locales/itIT.lua b/Locales/itIT.lua index 40dc58e8..1e9bbf78 100644 --- a/Locales/itIT.lua +++ b/Locales/itIT.lua @@ -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 diff --git a/Locales/koKR.lua b/Locales/koKR.lua index bf5c396a..345ca17c 100644 --- a/Locales/koKR.lua +++ b/Locales/koKR.lua @@ -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 diff --git a/Locales/ptBR.lua b/Locales/ptBR.lua index 6c4a31e2..464c6bda 100644 --- a/Locales/ptBR.lua +++ b/Locales/ptBR.lua @@ -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 diff --git a/Locales/ruRU.lua b/Locales/ruRU.lua index 7f4c7cc6..237a7986 100644 --- a/Locales/ruRU.lua +++ b/Locales/ruRU.lua @@ -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"] = "Кубическая плавность" diff --git a/Locales/zhCN.lua b/Locales/zhCN.lua index 337097ad..254f4f15 100644 --- a/Locales/zhCN.lua +++ b/Locales/zhCN.lua @@ -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)" diff --git a/Locales/zhTW.lua b/Locales/zhTW.lua index 0bd67304..600a3612 100644 --- a/Locales/zhTW.lua +++ b/Locales/zhTW.lua @@ -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)" diff --git a/Options/Information.lua b/Options/Information.lua index ade06414..e384f2cc 100644 --- a/Options/Information.lua +++ b/Options/Information.lua @@ -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", }, ", "), @@ -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"), },