diff --git a/Core/Options.lua b/Core/Options.lua index 626aa112..a65e238e 100644 --- a/Core/Options.lua +++ b/Core/Options.lua @@ -1,5 +1,6 @@ local W, F, E, L, V, P, G = unpack((select(2, ...))) local tinsert = tinsert +local tconcat = table.concat -- Add ElvUI move category tinsert(E.ConfigModeLayouts, "WINDTOOLS") @@ -42,3 +43,50 @@ E.PopupDialogs.WINDTOOLS_EDITBOX = { preferredIndex = 3, hideOnEscape = 1, } + +local function green(str) + return "|cff00d1b2" .. str .. "|r" +end + +local function red(str) + return "|cffff3860" .. str .. "|r" +end + +local function grey(str) + return "|cffbbbbbb" .. str .. "|r" +end + +local qqGroupNumbers = tconcat({ + format("%s (%d): %s (%s)", L["QQ Group"], 1, "336069019", grey(L["Almost full"])), + format("%s (%d): %s (%s)", L["QQ Group"], 2, "948518444", grey(L["Almost full"])), + format("%s (%d): %s (%s)", L["QQ Group"], 3, "687772809", green(L["Recommended"])), +}, "\n") + +local qqGroupDescription = tconcat({ + L["This the QQ group for Wind Addons users."], + red(L["!! No talking about specific UI sets !!"]), + "", + L["Click [%s] to show the QQ groups."]:format(green(L["I got it!"])), +}, "\n") + +E.PopupDialogs.WINDTOOLS_QQ_GROUP_DIALOG = { + text = qqGroupDescription, + button1 = L["I got it!"], + button2 = _G.CANCEL, + OnAccept = function(self) + self:Hide() + E:StaticPopup_Show("WINDTOOLS_QQ_GROUP_NUMBER_DIALOG") + end, + whileDead = 1, + preferredIndex = 3, + hideOnEscape = 1, +} + +E.PopupDialogs.WINDTOOLS_QQ_GROUP_NUMBER_DIALOG = { + text = qqGroupNumbers, + button1 = _G.OKAY, + OnAccept = E.noop, + whileDead = 1, + preferredIndex = 3, + hideOnEscape = 1, +} \ No newline at end of file diff --git a/Locales/deDE.lua b/Locales/deDE.lua index b1df692f..09d55bc2 100644 --- a/Locales/deDE.lua +++ b/Locales/deDE.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "deDE") +L["!! No talking about specific UI sets !!"] = true L["!keys Command"] = "!keys Kommando" L["%month%-%day%-%year%"] = true L["%player% cast %spell% -> %target%"] = "%player% zaubert %spell% -> %target%" @@ -156,6 +157,7 @@ L["All Versions"] = "Alle Versionen" L["All nets can be collected"] = "Alle Netze können eingesammelt werden" L["Alliance"] = "Allianz" L["Allow you to use Delete Key for confirming deleting."] = "Ermöglicht die Verwendung der Entf-Taste zum Bestätigen des Löschens." +L["Almost full"] = true L["Alpha"] = "Transparenz" L["Alpha Max"] = "Transparenz Max" L["Alpha Min"] = "Transparenz Min" @@ -359,6 +361,7 @@ L["Clear All"] = "Lösche Alles" L["Clear History"] = "Lösche History" L["Clear the alt list."] = "Lösche die Alt-Liste." L["Click Binding"] = "Klick Bindung" +L["Click [%s] to show the QQ groups."] = true L["Click to clear all marks."] = "Klicke, um alle Markierungen zu löschen." L["Click to confirm"] = "Klicke zur Bestätigung" L["Click to open the weekly rewards frame."] = "Klicke um das wöchentliche Belohnungsfenster zu öffnen." @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = "Beschleunigung der Raw Maus" L["Ready"] = "Fertig" L["Ready Check"] = "Bereitschaftscheck" L["Realm"] = "Server" +L["Recommended"] = true L["Rectangle Minimap"] = "Rechteck Format Minikarte" L["Reenable the addons that disabled by debug mode."] = "Aktiviere die Addons, die durch den Debug Modus deaktiviert wurden." L["Reference"] = "Hinweis" @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = "Dieses Mo L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = "Dieses Modul zeigt beim Betreten und Verlassen des Kampfes ein Warnfenster an. \n Du kannst Animationen und Texteffekte anpassen." L["This module will help you to reveal and resize maps."] = "Dieses Modul hilft Dir, beim Anzeigen und Ändern der Kartengröße." L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = "Dieses Modul zeichnet Flüstern für den Wechsel auf. \n Hier kannst Du die Ablaufzeit festlegen, um eine Auswahlliste der letzten Ziele zu erstellen." +L["This the QQ group for Wind Addons users."] = true L["Threat Transfer"] = "Bedrohungsübertragung" L["Ticket Status"] = "Ticketstaus" L["Tier Set"] = "Tier-Set" diff --git a/Locales/enUS.lua b/Locales/enUS.lua index 06730f48..80ccb4ff 100644 --- a/Locales/enUS.lua +++ b/Locales/enUS.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "enUS", true, true) +L["!! No talking about specific UI sets !!"] = true L["!keys Command"] = true L["%month%-%day%-%year%"] = true L["%player% cast %spell% -> %target%"] = true @@ -156,6 +157,7 @@ L["All Versions"] = true L["All nets can be collected"] = true L["Alliance"] = true L["Allow you to use Delete Key for confirming deleting."] = true +L["Almost full"] = true L["Alpha"] = true L["Alpha Max"] = true L["Alpha Min"] = true @@ -359,6 +361,7 @@ L["Clear All"] = true L["Clear History"] = true L["Clear the alt list."] = true L["Click Binding"] = true +L["Click [%s] to show the QQ groups."] = true L["Click to clear all marks."] = true L["Click to confirm"] = true L["Click to open the weekly rewards frame."] = true @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = true L["Ready"] = true L["Ready Check"] = true L["Realm"] = true +L["Recommended"] = true L["Rectangle Minimap"] = true L["Reenable the addons that disabled by debug mode."] = true L["Reference"] = true @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = true L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = true L["This module will help you to reveal and resize maps."] = true L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = true +L["This the QQ group for Wind Addons users."] = true L["Threat Transfer"] = true L["Ticket Status"] = true L["Tier Set"] = true diff --git a/Locales/esMX.lua b/Locales/esMX.lua index 0d122b3d..f2e38f62 100644 --- a/Locales/esMX.lua +++ b/Locales/esMX.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "esMX") +L["!! No talking about specific UI sets !!"] = true L["!keys Command"] = "Comando !keys" L["%month%-%day%-%year%"] = "%month%-%day%-%year%" L["%player% cast %spell% -> %target%"] = "%player% lanza %spell% -> %target%" @@ -156,6 +157,7 @@ L["All Versions"] = "Todas las versiones" L["All nets can be collected"] = "Todas las redes se pueden recoger" L["Alliance"] = "Alianza" L["Allow you to use Delete Key for confirming deleting."] = "Permitir el uso de la tecla de borrado para confirmar el borrado" +L["Almost full"] = true L["Alpha"] = "Transparencia" L["Alpha Max"] = "Transparencia Max" L["Alpha Min"] = "Transparencia Min" @@ -359,6 +361,7 @@ L["Clear All"] = "Limpiar todo" L["Clear History"] = "Borrar el historial" L["Clear the alt list."] = "Limpiar la lista de personajes alternativos" L["Click Binding"] = "Asignación de clics" +L["Click [%s] to show the QQ groups."] = true L["Click to clear all marks."] = "Hacer clic para borrar todas las marcas" L["Click to confirm"] = "Haga clic para confirmar" L["Click to open the weekly rewards frame."] = "Hacer clic para abrir el marco de recompensas semanales." @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = "Aceleración del ratón bruto" L["Ready"] = "Listo" L["Ready Check"] = "Comprobación de la preparación" L["Realm"] = "Reino" +L["Recommended"] = true L["Rectangle Minimap"] = "Mapa en rectángulo" L["Reenable the addons that disabled by debug mode."] = "Reactivar los addons que fueron deshabilitados por el modo de depuración." L["Reference"] = "Referencia" @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = "Este mód L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = "Este módulo mostrará una alerta cuando entres y sales de combate.\nPuedes personalizar animaciones y efectos de texto." L["This module will help you to reveal and resize maps."] = "Este módulo te ayudará a revelar y redimensionar mapas." L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = "Este módulo registrará susurros para cambiar.\n Puedes establecer el tiempo de expiración aquí para hacer una lista corta de objetivos recientes." +L["This the QQ group for Wind Addons users."] = true L["Threat Transfer"] = "Transferencia de amenaza" L["Ticket Status"] = "Estado de la solicitud" L["Tier Set"] = "Conjunto de nivel" diff --git a/Locales/frFR.lua b/Locales/frFR.lua index 44915f5c..72adf778 100644 --- a/Locales/frFR.lua +++ b/Locales/frFR.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "frFR") +L["!! No talking about specific UI sets !!"] = true L["!keys Command"] = true L["%month%-%day%-%year%"] = "%month%-%day%-%year%" L["%player% cast %spell% -> %target%"] = "%player% lance %spell% -> %target%" @@ -156,6 +157,7 @@ L["All Versions"] = "Toutes les versions" L["All nets can be collected"] = "Tous les filets peuvent être collectés" L["Alliance"] = "Alliance" L["Allow you to use Delete Key for confirming deleting."] = "Utiliser la touche Suppr pour confirmer la suppression de l'objet." +L["Almost full"] = true L["Alpha"] = "Transparence" L["Alpha Max"] = "Alpha Max" L["Alpha Min"] = "Alpha Min" @@ -359,6 +361,7 @@ L["Clear All"] = "Tout effacer" L["Clear History"] = "Effacer l'historique" L["Clear the alt list."] = "Effacer la liste des personnages secondaires." L["Click Binding"] = "Cliquez sur le lien" +L["Click [%s] to show the QQ groups."] = true L["Click to clear all marks."] = "Cliquer pour effacer toutes les marques." L["Click to confirm"] = "Cliquer pour confirmer" L["Click to open the weekly rewards frame."] = "Cliquez pour ouvrir le cadre des récompenses hebdomadaires. " @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = "Accélération de la souris" L["Ready"] = "Prêt" L["Ready Check"] = "Vérifier si les joueurs sont prêts" L["Realm"] = "Royaume" +L["Recommended"] = true L["Rectangle Minimap"] = "Minimap rectangulaire" L["Reenable the addons that disabled by debug mode."] = "Réactiver les addons qui ont été désactivés par le mode débogage." L["Reference"] = "Référence" @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = "Ce module L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = "Ce module affiche un cadre d'alerte quand vous entrez ou sortez d'un combat.\nVous pouvez personnaliser les animations et les effets de texte." L["This module will help you to reveal and resize maps."] = "Ce module embellira et redimensionnera les cartes." L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = "Ce module enregistrera les chuchotements pour la commutation. Vous pouvez régler le temps d'expiration ici pour faire une liste restreinte des cibles récentes." +L["This the QQ group for Wind Addons users."] = true L["Threat Transfer"] = "Transfert de menace" L["Ticket Status"] = "Statut du ticket" L["Tier Set"] = "Ensemble du Set" diff --git a/Locales/itIT.lua b/Locales/itIT.lua index 1e9bbf78..68eb7f87 100644 --- a/Locales/itIT.lua +++ b/Locales/itIT.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "itIT") +L["!! No talking about specific UI sets !!"] = true L["!keys Command"] = true L["%month%-%day%-%year%"] = true L["%player% cast %spell% -> %target%"] = true @@ -156,6 +157,7 @@ L["All Versions"] = true L["All nets can be collected"] = true L["Alliance"] = true L["Allow you to use Delete Key for confirming deleting."] = true +L["Almost full"] = true L["Alpha"] = true L["Alpha Max"] = true L["Alpha Min"] = true @@ -359,6 +361,7 @@ L["Clear All"] = true L["Clear History"] = true L["Clear the alt list."] = true L["Click Binding"] = true +L["Click [%s] to show the QQ groups."] = true L["Click to clear all marks."] = true L["Click to confirm"] = true L["Click to open the weekly rewards frame."] = true @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = true L["Ready"] = true L["Ready Check"] = true L["Realm"] = true +L["Recommended"] = true L["Rectangle Minimap"] = true L["Reenable the addons that disabled by debug mode."] = true L["Reference"] = true @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = true L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = true L["This module will help you to reveal and resize maps."] = true L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = true +L["This the QQ group for Wind Addons users."] = true L["Threat Transfer"] = true L["Ticket Status"] = true L["Tier Set"] = true diff --git a/Locales/koKR.lua b/Locales/koKR.lua index 345ca17c..db946df3 100644 --- a/Locales/koKR.lua +++ b/Locales/koKR.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "koKR") +L["!! No talking about specific UI sets !!"] = true L["!keys Command"] = true L["%month%-%day%-%year%"] = "%year%년 %month%월 %day%일" L["%player% cast %spell% -> %target%"] = "%player% 시전 %spell% -> %target%" @@ -156,6 +157,7 @@ L["All Versions"] = true L["All nets can be collected"] = true L["Alliance"] = "얼라이언스" L["Allow you to use Delete Key for confirming deleting."] = "아이템 파괴 확인을 위해 Delete 키를 사용합니다." +L["Almost full"] = true L["Alpha"] = "투명도" L["Alpha Max"] = "최대 알파 값" L["Alpha Min"] = "최소 알파 값" @@ -359,6 +361,7 @@ L["Clear All"] = true L["Clear History"] = "기록 초기화" L["Clear the alt list."] = true L["Click Binding"] = "클릭 바인딩" +L["Click [%s] to show the QQ groups."] = true L["Click to clear all marks."] = "모든 징표를 제거하려면 클릭하십시오." L["Click to confirm"] = "승인하려면 클릭하세요." L["Click to open the weekly rewards frame."] = "금고 보상 보기" @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = true L["Ready"] = "준비" L["Ready Check"] = "전투 준비 확인" L["Realm"] = "서버명" +L["Recommended"] = true L["Rectangle Minimap"] = "미니맵 비율 조정" L["Reenable the addons that disabled by debug mode."] = "디버그 모드에서 비활성화된 애드온을 다시 활성화합니다." L["Reference"] = true @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = "이 모 L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = "이 모듈은 전투가 시작되거나 종료될 때 알림창을 표시합니다.\n애니메이션과 텍스트 효과를 설정할 수 있습니다." L["This module will help you to reveal and resize maps."] = "이 모듈은 지도를 표시하고 크기를 조정합니다." L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = "이 모듈은 귓속말을 기록합니다.\n최근 대상 목록을 만들기 위해 만료 시간을 설정할 수 있습니다." +L["This the QQ group for Wind Addons users."] = true L["Threat Transfer"] = "위협 이전" L["Ticket Status"] = "GM 대기표 상태" L["Tier Set"] = "티어 셋트" diff --git a/Locales/ptBR.lua b/Locales/ptBR.lua index 464c6bda..b6223017 100644 --- a/Locales/ptBR.lua +++ b/Locales/ptBR.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "ptBR") +L["!! No talking about specific UI sets !!"] = true L["!keys Command"] = true L["%month%-%day%-%year%"] = true L["%player% cast %spell% -> %target%"] = true @@ -156,6 +157,7 @@ L["All Versions"] = true L["All nets can be collected"] = true L["Alliance"] = true L["Allow you to use Delete Key for confirming deleting."] = true +L["Almost full"] = true L["Alpha"] = "Transparência" L["Alpha Max"] = true L["Alpha Min"] = true @@ -359,6 +361,7 @@ L["Clear All"] = true L["Clear History"] = true L["Clear the alt list."] = true L["Click Binding"] = true +L["Click [%s] to show the QQ groups."] = true L["Click to clear all marks."] = true L["Click to confirm"] = true L["Click to open the weekly rewards frame."] = true @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = true L["Ready"] = true L["Ready Check"] = true L["Realm"] = true +L["Recommended"] = true L["Rectangle Minimap"] = true L["Reenable the addons that disabled by debug mode."] = true L["Reference"] = true @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = true L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = true L["This module will help you to reveal and resize maps."] = true L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = true +L["This the QQ group for Wind Addons users."] = true L["Threat Transfer"] = true L["Ticket Status"] = true L["Tier Set"] = true diff --git a/Locales/ruRU.lua b/Locales/ruRU.lua index 237a7986..f63a4f14 100644 --- a/Locales/ruRU.lua +++ b/Locales/ruRU.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "ruRU") +L["!! No talking about specific UI sets !!"] = true L["!keys Command"] = "Команда !keys" L["%month%-%day%-%year%"] = "%day%-%month%-%year%" L["%player% cast %spell% -> %target%"] = "%player% применяет %spell% -> %target%" @@ -156,6 +157,7 @@ L["All Versions"] = "Все версии" L["All nets can be collected"] = "Все сети могут быть собраны" L["Alliance"] = "Альянс" L["Allow you to use Delete Key for confirming deleting."] = "Разрешить Вам использовать кнопку удаления для подтверждения удаления." +L["Almost full"] = true L["Alpha"] = "Прозрачность" L["Alpha Max"] = "Максимальная прозрачность" L["Alpha Min"] = "Минимальная прозрачность" @@ -359,6 +361,7 @@ L["Clear All"] = "Очистить все" L["Clear History"] = "Очистить историю" L["Clear the alt list."] = "Очистить список альтов." L["Click Binding"] = "Привязка нажатия" +L["Click [%s] to show the QQ groups."] = true L["Click to clear all marks."] = "Нажмите, чтобы удалить все отметки." L["Click to confirm"] = "Подтвердить" L["Click to open the weekly rewards frame."] = "Нажмите, чтобы открыть фрейм еженедельных наград." @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = "Ускорение мыши" L["Ready"] = "Готово" L["Ready Check"] = "Проверка готовности" L["Realm"] = "Игровой мир" +L["Recommended"] = true L["Rectangle Minimap"] = "Прямоугольная миникарта" L["Reenable the addons that disabled by debug mode."] = "Повторно включите аддоны, отключенные режимом отладки." L["Reference"] = "Ссылка" @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = "Этот L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = "Этот модуль будет отображать фрейм предупреждения при входе в бой и выходе из него.\nВы можете настроить анимацию и текстовые эффекты." L["This module will help you to reveal and resize maps."] = "Этот модуль поможет Вам открывать карты и изменять их размер." L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = "Этот модуль будет записывать шепоты для переключения. \n Вы можете установить время истечения для получения краткого списка последних целей." +L["This the QQ group for Wind Addons users."] = true L["Threat Transfer"] = "Перенаправление угрозы" L["Ticket Status"] = "Статус тикета" L["Tier Set"] = "Комплекты брони" diff --git a/Locales/zhCN.lua b/Locales/zhCN.lua index 254f4f15..053f94f0 100644 --- a/Locales/zhCN.lua +++ b/Locales/zhCN.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "zhCN") +L["!! No talking about specific UI sets !!"] = "!! 不允许讨论 插件整合包 !!" L["!keys Command"] = "!keys 命令" L["%month%-%day%-%year%"] = "%year%年%month%月%day%日" L["%player% cast %spell% -> %target%"] = "%player%使用了%spell% -> %target%" @@ -156,6 +157,7 @@ L["All Versions"] = "所有版本" L["All nets can be collected"] = "所有渔网都可收集" L["Alliance"] = "联盟" L["Allow you to use Delete Key for confirming deleting."] = "允许你用 Del 按键来确认删除." +L["Almost full"] = "接近满员" L["Alpha"] = "透明度" L["Alpha Max"] = "最大透明度" L["Alpha Min"] = "最小透明度" @@ -359,6 +361,7 @@ L["Clear All"] = "清除全部" L["Clear History"] = "清除历史" L["Clear the alt list."] = "清空小号列表." L["Click Binding"] = "点击绑定" +L["Click [%s] to show the QQ groups."] = "点击 [%s] 来显示 QQ 群." L["Click to clear all marks."] = "点选清除所有标记" L["Click to confirm"] = "点击确认" L["Click to open the weekly rewards frame."] = "点击打开每周奖励框体." @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = "原生鼠标信号加速" L["Ready"] = "就绪" L["Ready Check"] = "准备确认" L["Realm"] = "服务器" +L["Recommended"] = "推荐" L["Rectangle Minimap"] = "矩形小地图" L["Reenable the addons that disabled by debug mode."] = "重新启用调试模式时禁用的插件." L["Reference"] = "参考手册" @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = "这个模 L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = "这个模块将会在你进入战斗及离开战斗时显示一个提醒框体.\n你可以自由的设定动画和文字效果." L["This module will help you to reveal and resize maps."] = "这个模块将会帮助你全亮地图及设置地图大小." L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = "此模块会自动记录密语目标以方便切换.\n您可以设定过期时间, 让模块自动生成您想要的密语目标列表." +L["This the QQ group for Wind Addons users."] = "这是 Wind 系列插件的交流群." L["Threat Transfer"] = "仇恨转移" L["Ticket Status"] = "客服工单状态" L["Tier Set"] = "套装" diff --git a/Locales/zhTW.lua b/Locales/zhTW.lua index 600a3612..5d48ad62 100644 --- a/Locales/zhTW.lua +++ b/Locales/zhTW.lua @@ -2,6 +2,7 @@ -- https://github.com/wind-addons/WindToolsScripts/tree/master/MergeLocales local L = ElvUI[1].Libs.ACL:NewLocale("ElvUI", "zhTW") +L["!! No talking about specific UI sets !!"] = "!! 請勿討論 UI整合包 !!" L["!keys Command"] = "!keys 指令" L["%month%-%day%-%year%"] = "%year%年%month%月%day%日" L["%player% cast %spell% -> %target%"] = "%player%使用了%spell% -> %target%" @@ -156,6 +157,7 @@ L["All Versions"] = "所有版本" L["All nets can be collected"] = "所有漁網都可收集" L["Alliance"] = "聯盟" L["Allow you to use Delete Key for confirming deleting."] = "允許你用 Del 按鍵來確認刪除." +L["Almost full"] = "幾乎滿員" L["Alpha"] = "透明度" L["Alpha Max"] = "最大透明度" L["Alpha Min"] = "最小透明度" @@ -359,6 +361,7 @@ L["Clear All"] = "清除全部" L["Clear History"] = "清除歷史" L["Clear the alt list."] = "清空分身名單." L["Click Binding"] = "點擊綁定" +L["Click [%s] to show the QQ groups."] = "點擊 [%s] 顯示 QQ 群." L["Click to clear all marks."] = "點選清除所有標記" L["Click to confirm"] = "點擊以確認" L["Click to open the weekly rewards frame."] = "點擊開啟每週獎勵框架." @@ -1078,6 +1081,7 @@ L["Raw Mouse Acceleration"] = "原生滑鼠訊號加速" L["Ready"] = "就緒" L["Ready Check"] = "準備確認" L["Realm"] = "伺服器" +L["Recommended"] = "推薦" L["Rectangle Minimap"] = "矩形小地圖" L["Reenable the addons that disabled by debug mode."] = "重新啟用偵錯模式禁用的插件." L["Reference"] = "參考資料" @@ -1407,6 +1411,7 @@ L["This module will change the channel when Tab has been pressed."] = "這個模 L["This module will display a alert frame when entering and leaving combat.\nYou can customize animations and text effects."] = "這個模組將會在你進入戰鬥及離開戰鬥時顯示一個提醒框架.\n你可以自由的設定動畫和文字效果." L["This module will help you to reveal and resize maps."] = "這個模組將會幫助你全亮地圖及設定地圖尺寸." L["This module will record whispers for switching.\n You can set the expiration time here for making a shortlist of recent targets."] = "此模塊會自動記錄密語目標以方便切換.\n您可以設定過期時間, 讓模塊自動生成您想要的密語目標列表." +L["This the QQ group for Wind Addons users."] = "這是 Wind 系列插件的交流群." L["Threat Transfer"] = "仇恨轉移" L["Ticket Status"] = "GM 回報單狀況" L["Tier Set"] = "套裝" diff --git a/Options/Information.lua b/Options/Information.lua index e384f2cc..5ee335b0 100644 --- a/Options/Information.lua +++ b/Options/Information.lua @@ -162,7 +162,7 @@ options.help = { name = L["QQ Group"], image = W.Media.Icons.qq, func = function() - E:StaticPopup_Show("WINDTOOLS_EDITBOX", nil, nil, "948518444") + E:StaticPopup_Show("WINDTOOLS_QQ_GROUP_DIALOG") end, width = 0.7, },