diff --git a/ElvUI/Core/Core.lua b/ElvUI/Core/Core.lua index 8ebbf74..fcbf1a1 100644 --- a/ElvUI/Core/Core.lua +++ b/ElvUI/Core/Core.lua @@ -711,7 +711,7 @@ do end elseif message and (message > ver) then if not E.recievedOutOfDateMessage then - E:Print(L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"]) + E:Print(L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"]) if message and ((message - ver) >= 0.01) and not InCombatLockdown() then E:StaticPopup_Show("ELVUI_UPDATE_AVAILABLE") diff --git a/ElvUI/Core/StaticPopups.lua b/ElvUI/Core/StaticPopups.lua index 0749628..94cbf3e 100644 --- a/ElvUI/Core/StaticPopups.lua +++ b/ElvUI/Core/StaticPopups.lua @@ -44,13 +44,13 @@ E.PopupDialogs.ELVUI_UPDATED_WHILE_RUNNING = { } E.PopupDialogs.ELVUI_UPDATE_AVAILABLE = { - text = L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"], + text = L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"], hasEditBox = 1, OnShow = function(self) self.editBox:SetAutoFocus(false) self.editBox.width = self.editBox:GetWidth() self.editBox:Width(220) - self.editBox:SetText("https://github.com/BanditTech/ElvUI-Ascension") + self.editBox:SetText("https://github.com/Ascension-Addons/ElvUI") self.editBox:HighlightText() ChatEdit_FocusActiveWindow() end, @@ -70,8 +70,8 @@ E.PopupDialogs.ELVUI_UPDATE_AVAILABLE = { self:GetParent():Hide() end, EditBoxOnTextChanged = function(self) - if self:GetText() ~= "https://github.com/BanditTech/ElvUI-Ascension" then - self:SetText("https://github.com/BanditTech/ElvUI-Ascension") + if self:GetText() ~= "https://github.com/Ascension-Addons/ElvUI" then + self:SetText("https://github.com/Ascension-Addons/ElvUI") end self:HighlightText() self:ClearFocus() diff --git a/ElvUI/ElvUI.toc b/ElvUI/ElvUI.toc index de7a1c6..648222a 100644 --- a/ElvUI/ElvUI.toc +++ b/ElvUI/ElvUI.toc @@ -1,6 +1,6 @@ ## Interface: 30300 ## Author: Elv, Bunny -## Version: 6.10 +## Version: 6.11 ## Title: |cff1784d1E|r|cffe5e3e3lvUI|r ## Notes: User Interface replacement AddOn for World of Warcraft. ## SavedVariables: ElvDB, ElvPrivateDB diff --git a/ElvUI/Libraries/LibElvUIPlugin-1.0/LibElvUIPlugin-1.0.lua b/ElvUI/Libraries/LibElvUIPlugin-1.0/LibElvUIPlugin-1.0.lua index e0827d7..a92a73f 100644 --- a/ElvUI/Libraries/LibElvUIPlugin-1.0/LibElvUIPlugin-1.0.lua +++ b/ElvUI/Libraries/LibElvUIPlugin-1.0/LibElvUIPlugin-1.0.lua @@ -50,7 +50,7 @@ lib.plugins = {} lib.groupSize = 0 lib.index = 0 -local MSG_OUTDATED = "Your version of %s %s is out of date (latest is version %s). You can download the latest version from https://github.com/BanditTech/ElvUI-Ascension/" +local MSG_OUTDATED = "Your version of %s %s is out of date (latest is version %s). You can download the latest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI" local HDR_CONFIG = "Plugins" local HDR_INFORMATION = "LibElvUIPlugin-1.0.%d - Plugins Loaded (Green means you have current version, Red means out of date)" local INFO_BY = "by" @@ -60,7 +60,7 @@ local LIBRARY = "Library" local locale = GetLocale() if locale == "deDE" then - MSG_OUTDATED = "Deine Version von %s %s ist veraltet (akutelle Version ist %s). Du kannst die aktuelle Version von https://github.com/BanditTech/ElvUI-Ascension/ herunterrladen." + MSG_OUTDATED = "Deine Version von %s %s ist veraltet (akutelle Version ist %s). Du kannst die aktuelle Version von https://github.com/Ascension-Addons/ElvUI/ herunterrladen." HDR_CONFIG = "Plugins" HDR_INFORMATION = "LibElvUIPlugin-1.0.%d - Plugins geladen (Grün bedeutet du hast die aktuelle Version, Rot bedeutet es ist veraltet)" INFO_BY = "von" @@ -68,7 +68,7 @@ if locale == "deDE" then INFO_NEW = "Neuste:" LIBRARY = "Bibliothek" elseif locale == "ruRU" then - MSG_OUTDATED = "Ваша версия %s %s устарела (последняя версия %s). Вы можете скачать последнюю версию на https://github.com/BanditTech/ElvUI-Ascension/" + MSG_OUTDATED = "Ваша версия %s %s устарела (последняя версия %s). Вы можете скачать последнюю версию на https://github.com/Ascension-Addons/ElvUI/" HDR_CONFIG = "Плагины" HDR_INFORMATION = "LibElvUIPlugin-1.0.%d - загруженные плагины (зеленый означает, что у вас последняя версия, красный - устаревшая)" INFO_BY = "от" @@ -76,7 +76,7 @@ elseif locale == "ruRU" then INFO_NEW = "Последняя:" LIBRARY = "Библиотека" elseif locale == "zhCN" then - MSG_OUTDATED = "你的 %s %s 版本已经过期 (最新版本是 %s)。你可以从 https://github.com/BanditTech/ElvUI-Ascension/ 下载最新版本" + MSG_OUTDATED = "你的 %s %s 版本已经过期 (最新版本是 %s)。你可以从 https://github.com/Ascension-Addons/ElvUI/ 下载最新版本" HDR_CONFIG = "插件" HDR_INFORMATION = "LibElvUIPlugin-1.0.%d - 载入的插件 (绿色表示拥有当前版本, 红色表示版本已经过期)" INFO_BY = "作者" @@ -84,7 +84,7 @@ elseif locale == "zhCN" then INFO_NEW = "最新:" LIBRARY = "库" elseif locale == "zhTW" then - MSG_OUTDATED = "你的 %s %s 版本已經過期 (最新版本為 %s)。你可以透過 https://github.com/BanditTech/ElvUI-Ascension/ 下載最新的版本" + MSG_OUTDATED = "你的 %s %s 版本已經過期 (最新版本為 %s)。你可以透過 https://github.com/Ascension-Addons/ElvUI/ 下載最新的版本" HDR_CONFIG = "插件" HDR_INFORMATION = "LibElvUIPlugin-1.0.%d - 載入的插件 (綠色表示擁有當前版本, 紅色表示版本已經過期)" INFO_BY = "作者" diff --git a/ElvUI/Locales/deDE.lua b/ElvUI/Locales/deDE.lua index 51f901b..12bd1e5 100644 --- a/ElvUI/Locales/deDE.lua +++ b/ElvUI/Locales/deDE.lua @@ -90,8 +90,8 @@ L["Earned:"] = "Verdient:" L["ElvUI Installation"] = "ElvUI Installation" L["ElvUI Plugin Installation"] = true --No need to translate L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = "ElvUI hat ein Feature für Dualspezialisierungen, welches dich abhängig von deiner momentanen Spezialisierung verschiedene Profile laden lässt. Dieses Feature kannst du im Abschnitt Profil aktivieren." -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI ist seit fünf oder mehr Revisionen nicht aktuell. Du kannst die neuste Version bei https://github.com/BanditTech/ElvUI-Ascension herunterladen" -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI ist nicht aktuell. Du kannst die neuste Version bei https://github.com/BanditTech/ElvUI-Ascension herunterladen" +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI ist seit fünf oder mehr Revisionen nicht aktuell. Du kannst die neuste Version bei https://github.com/Ascension-Addons/ElvUI herunterladen" +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI ist nicht aktuell. Du kannst die neuste Version bei https://github.com/Ascension-Addons/ElvUI herunterladen" L["ElvUI needs to perform database optimizations please be patient."] = "ElvUI muss eine Datenbank Optimierung durchführen. Bitte warte eine Moment." L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = "ElvUI wurde upgedated während das Spiel noch läuft. Bitte starte das Spiel neu, damit alle Dateien richtig geupdated werden." L["Empty Slot"] = "Leerer Platz" @@ -153,7 +153,7 @@ L["KEY_PAGEUP"] = "PU" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "SpB" L["Key"] = "Taste" -L["LOGIN_MSG"] = "Willkommen zu %sElvUI|r Version %s%s|r, Tippe /ec um das Konfigurationsmenü aufzurufen. Für technische Hilfe, besuche das Supportforum unter https://github.com/BanditTech/ElvUI-Ascension oder trete unserem Discord bei: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "Willkommen zu %sElvUI|r Version %s%s|r, Tippe /ec um das Konfigurationsmenü aufzurufen. Für technische Hilfe, besuche das Supportforum unter https://github.com/Ascension-Addons/ElvUI oder trete unserem Discord bei: https://discord.gg/UXSc7nt" L["Layout Set"] = "Layout gesetzt" L["Layout"] = "Layout" L["Left Chat"] = "Linker Chat" diff --git a/ElvUI/Locales/enUS.lua b/ElvUI/Locales/enUS.lua index 5071a23..0b55763 100644 --- a/ElvUI/Locales/enUS.lua +++ b/ElvUI/Locales/enUS.lua @@ -90,8 +90,8 @@ L["Earned:"] = true L["ElvUI Installation"] = true L["ElvUI Plugin Installation"] = true L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = true -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = true -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = true +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = true +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = true L["ElvUI needs to perform database optimizations please be patient."] = true L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = true L["Empty Slot"] = true @@ -153,7 +153,7 @@ L["KEY_PAGEUP"] = "PU" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "SpB" L["Key"] = true -L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/BanditTech/ElvUI-Ascension or join our Discord: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/Ascension-Addons/ElvUI or join our Discord: https://discord.gg/UXSc7nt" L["Layout Set"] = true L["Layout"] = true L["Left Chat"] = true diff --git a/ElvUI/Locales/esMX.lua b/ElvUI/Locales/esMX.lua index 51a787c..7343041 100644 --- a/ElvUI/Locales/esMX.lua +++ b/ElvUI/Locales/esMX.lua @@ -90,8 +90,8 @@ L["Earned:"] = "Ganada:" L["ElvUI Installation"] = "Instalación de ElvUI" L["ElvUI Plugin Installation"] = "Instalación del plugin de ElvUI" L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = "ElvUI tiene la posibilidad de cargar diferentes perfiles automáticamente al cambiar de especialización de talentos. Puedes activar esta función en la pestaña de perfiles." -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI está cinco o mas revisiones desactualizado. Puedes descargar la versión más nueva de https://github.com/BanditTech/ElvUI-Ascension" -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI está desactualizado. Puedes descargar la versión más nueva de https://github.com/BanditTech/ElvUI-Ascension" +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI está cinco o mas revisiones desactualizado. Puedes descargar la versión más nueva de https://github.com/Ascension-Addons/ElvUI" +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI está desactualizado. Puedes descargar la versión más nueva de https://github.com/Ascension-Addons/ElvUI" L["ElvUI needs to perform database optimizations please be patient."] = "ElvUI necesita realizar optimizaciones de base de datos por favor se paciente." L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = "ElvUI se actualizó mientras el juego aún se está ejecutando. Vuelve a iniciar el juego, ya que es necesario para que los archivos se actualicen correctamente." L["Empty Slot"] = "Espacio vacío" @@ -153,7 +153,7 @@ L["KEY_PAGEUP"] = "PU" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "SpB" L["Key"] = "Tecla" -L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/BanditTech/ElvUI-Ascension or join our Discord: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/Ascension-Addons/ElvUI or join our Discord: https://discord.gg/UXSc7nt" L["Layout Set"] = "Distribución Establecida" L["Layout"] = "Distribución" L["Left Chat"] = "Chat Izquierdo" diff --git a/ElvUI/Locales/frFR.lua b/ElvUI/Locales/frFR.lua index fee99e6..946bdb8 100644 --- a/ElvUI/Locales/frFR.lua +++ b/ElvUI/Locales/frFR.lua @@ -90,8 +90,8 @@ L["Earned:"] = "Gagné :" L["ElvUI Installation"] = "Installation d'ElvUI" L["ElvUI Plugin Installation"] = "Installation des plugins ElvUI" L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = "ElvUI dispose d'une fonction double spécialisation qui vous permet de charger à la volée des profils différents en fonction de votre spécialisation actuelle." -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI est périmé d'au moins 5 versions. Vous pouvez télécharger la nouvelle version sur https://github.com/BanditTech/ElvUI-Ascension" -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI est périmé. Vous pouvez télécharger la nouvelle version sur https://github.com/BanditTech/ElvUI-Ascension" +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI est périmé d'au moins 5 versions. Vous pouvez télécharger la nouvelle version sur https://github.com/Ascension-Addons/ElvUI" +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI est périmé. Vous pouvez télécharger la nouvelle version sur https://github.com/Ascension-Addons/ElvUI" L["ElvUI needs to perform database optimizations please be patient."] = "ElvUI a besoin d'effectuer des optimisations de la base de données, merci de patienter." L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = true L["Empty Slot"] = "Emplacement vide" @@ -153,7 +153,7 @@ L["KEY_PAGEUP"] = "PU" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "SpB" L["Key"] = "Touche" -L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/BanditTech/ElvUI-Ascension or join our Discord: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/Ascension-Addons/ElvUI or join our Discord: https://discord.gg/UXSc7nt" L["Layout Set"] = "Disposition configurée" L["Layout"] = "Disposition" L["Left Chat"] = "Chat gauche" diff --git a/ElvUI/Locales/koKR.lua b/ElvUI/Locales/koKR.lua index 91f1285..b71bf9b 100644 --- a/ElvUI/Locales/koKR.lua +++ b/ElvUI/Locales/koKR.lua @@ -90,8 +90,8 @@ L["Earned:"] = "수입:" L["ElvUI Installation"] = "ElvUI 설치" L["ElvUI Plugin Installation"] = "ElvUI 플러그인 설치" L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = "각 전문화별로 ElvUI 설정을 따로 지정할 수 있습니다. 설정의 프로필 항목에 |cff2eb7e4[이중 프로필 사용]|r 기능을 확인하세요." -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "현재 사용하는 ElvUI가 5버전 이상 뒤쳐진 버전입니다. https://github.com/BanditTech/ElvUI-Ascension 에서 새 버전을 다운로드 받으세요" -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI가 오래된 버전입니다. https://github.com/BanditTech/ElvUI-Ascension 에서 새 버전을 다운로드 받으세요." +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "현재 사용하는 ElvUI가 5버전 이상 뒤쳐진 버전입니다. https://github.com/Ascension-Addons/ElvUI 에서 새 버전을 다운로드 받으세요" +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI가 오래된 버전입니다. https://github.com/Ascension-Addons/ElvUI 에서 새 버전을 다운로드 받으세요." L["ElvUI needs to perform database optimizations please be patient."] = "ElvUI의 데이터베이스를 조정할 필요가 있습니다. 잠시 기다려주세요." L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = true L["Empty Slot"] = "빈 칸" @@ -153,7 +153,7 @@ L["KEY_PAGEUP"] = "P▲" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "Spc" L["Key"] = "단축키" -L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/BanditTech/ElvUI-Ascension or join our Discord: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/Ascension-Addons/ElvUI or join our Discord: https://discord.gg/UXSc7nt" L["Layout Set"] = "레이아웃 설정" L["Layout"] = "레이아웃" L["Left Chat"] = "좌측 패널" diff --git a/ElvUI/Locales/ptBR.lua b/ElvUI/Locales/ptBR.lua index bb12487..a5c122d 100644 --- a/ElvUI/Locales/ptBR.lua +++ b/ElvUI/Locales/ptBR.lua @@ -90,8 +90,8 @@ L["Earned:"] = "Ganho:" L["ElvUI Installation"] = "Instalação do ElvUI" L["ElvUI Plugin Installation"] = true L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = "A ElvUI contém o modo de duas especializações, que permite que carregue perfis diferentes baseado na sua especialização atual rapidamente. Você pode ativar esta opção na guia Perfis." -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = true -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = true +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = true +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = true L["ElvUI needs to perform database optimizations please be patient."] = true L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = true L["Empty Slot"] = true @@ -154,7 +154,7 @@ L["KEY_PAGEUP"] = "PU" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "SpB" L["Key"] = "Tecla" -L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/BanditTech/ElvUI-Ascension or join our Discord: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/Ascension-Addons/ElvUI or join our Discord: https://discord.gg/UXSc7nt" L["Layout Set"] = "Definições do Layout" L["Layout"] = "Layout" L["Left Chat"] = "Bate-papo esquerdo" diff --git a/ElvUI/Locales/ruRU.lua b/ElvUI/Locales/ruRU.lua index 3fb8877..cc4949c 100644 --- a/ElvUI/Locales/ruRU.lua +++ b/ElvUI/Locales/ruRU.lua @@ -90,8 +90,8 @@ L["Earned:"] = "Заработано" L["ElvUI Installation"] = "Установка ElvUI" L["ElvUI Plugin Installation"] = "Установка плагина ElvUI" L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = "В ElvUI присутствует функция двойной специализации, которая позволит Вам использовать разные профили для разных наборов талантов. Вы можете включить эту функцию в разделе профилей." -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "Ваш ElvUI устарел более, чем на 5 версий. Обновите его на https://github.com/BanditTech/ElvUI-Ascension" -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI устарел. Вы можете скачать последнюю версию с https://github.com/BanditTech/ElvUI-Ascension" +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "Ваш ElvUI устарел более, чем на 5 версий. Обновите его на https://github.com/Ascension-Addons/ElvUI" +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI устарел. Вы можете скачать последнюю версию с https://github.com/Ascension-Addons/ElvUI" L["ElvUI needs to perform database optimizations please be patient."] = "ElvUI нужно провести оптимизацию базы данных. Подождите, пожалуйста." L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = "ElvUI обновился, пока игра была запущена. Перезапустите игру, чтобы обновления могли по человечески примениться." L["Empty Slot"] = "Пустой слот" @@ -153,7 +153,7 @@ L["KEY_PAGEUP"] = "PU" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "SpB" L["Key"] = "Клавиша" -L["LOGIN_MSG"] = "Добро пожаловать в %sElvUI|r версии %s%s|r, наберите /ec для доступа в меню настроек. Если Вам нужна техническая поддержка, посетите наш форум на https://github.com/BanditTech/ElvUI-Ascension или присоединяйтесь к серверу Discord: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "Добро пожаловать в %sElvUI|r версии %s%s|r, наберите /ec для доступа в меню настроек. Если Вам нужна техническая поддержка, посетите наш форум на https://github.com/Ascension-Addons/ElvUI или присоединяйтесь к серверу Discord: https://discord.gg/UXSc7nt" L["Layout Set"] = "Расположение установлено" L["Layout"] = "Расположение" L["Left Chat"] = "Левый чат" diff --git a/ElvUI/Locales/zhCN.lua b/ElvUI/Locales/zhCN.lua index 20f5b3b..ef505d4 100644 --- a/ElvUI/Locales/zhCN.lua +++ b/ElvUI/Locales/zhCN.lua @@ -90,8 +90,8 @@ L["Earned:"] = "赚取:" L["ElvUI Installation"] = "安装 ElvUI" L["ElvUI Plugin Installation"] = "ElvUI插件安装" L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = "ElvUI可以根据你所使用的天赋自动套用不同的设置档. 你可以在配置文件中使用此功能." -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI已过期5个或者更多的版本。你可以在https://github.com/BanditTech/ElvUI-Ascension下载到最新的版本。" -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI已过期。你可以在www.tukui.org下载到最新的版本。" +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI已过期5个或者更多的版本。你可以在https://github.com/Ascension-Addons/ElvUI下载到最新的版本。" +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI已过期。你可以在www.tukui.org下载到最新的版本。" L["ElvUI needs to perform database optimizations please be patient."] = "ElvUI需要进行数据库优化,请耐性等待。" L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = "ElvUI已更新,然而游戏仍在运行. 请重启游戏,以保证文件正确更新." L["Empty Slot"] = "空拾取位" @@ -153,7 +153,7 @@ L["KEY_PAGEUP"] = "PU" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "SpB" L["Key"] = "键" -L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/BanditTech/ElvUI-Ascension or join our Discord: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "Welcome to %sElvUI|r version %s%s|r, type /ec to access the in-game configuration menu. If you are in need of technical support you can visit us at https://github.com/Ascension-Addons/ElvUI or join our Discord: https://discord.gg/UXSc7nt" L["Layout Set"] = "界面布局设置" L["Layout"] = "界面布局" L["Left Chat"] = "左侧对话框" diff --git a/ElvUI/Locales/zhTW.lua b/ElvUI/Locales/zhTW.lua index d7d41d8..2aee1ac 100644 --- a/ElvUI/Locales/zhTW.lua +++ b/ElvUI/Locales/zhTW.lua @@ -90,8 +90,8 @@ L["Earned:"] = "賺取:" L["ElvUI Installation"] = "安裝 ElvUI" L["ElvUI Plugin Installation"] = "ElvUI 插件安裝" L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."] = "ElvUI 可以根據你所使用的天賦自動套用不同的裝備組. 你可以在設定檔中啟用此功能." -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI 已過期超過5個版本. 你可以在 https://github.com/BanditTech/ElvUI-Ascension 下載到最新的版本." -L["ElvUI is out of date. You can download the newest version from https://github.com/BanditTech/ElvUI-Ascension"] = "ElvUI 已過期. 你可以在 https://github.com/BanditTech/ElvUI-Ascension 下載到最新的版本." +L["ElvUI is five or more revisions out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI 已過期超過5個版本. 你可以在 https://github.com/Ascension-Addons/ElvUI 下載到最新的版本." +L["ElvUI is out of date. You can download the newest version from the Ascension Launcher, or https://github.com/Ascension-Addons/ElvUI"] = "ElvUI 已過期. 你可以在 https://github.com/Ascension-Addons/ElvUI 下載到最新的版本." L["ElvUI needs to perform database optimizations please be patient."] = "ElvUI 需要進行資料庫優化, 請稍待." L["ElvUI was updated while the game is still running. Please relaunch the game, as this is required for the files to be properly updated."] = "ElvUI 在遊戲運行時被更新了. 請重開遊戲以確保文件的完整更新." L["Empty Slot"] = "空格" @@ -153,7 +153,7 @@ L["KEY_PAGEUP"] = "PU" L["KEY_SHIFT"] = "S" L["KEY_SPACE"] = "SpB" L["Key"] = "鍵" -L["LOGIN_MSG"] = "歡迎使用 %sElvUI|r %s%s 版本|r, 輸入 /ec 可打開遊戲內設置介面. 如果你需要技術協助, 可訪問我們的網址 https://github.com/BanditTech/ElvUI-Ascension 或是加入我們的 Discord 伺服器: https://discord.gg/UXSc7nt" +L["LOGIN_MSG"] = "歡迎使用 %sElvUI|r %s%s 版本|r, 輸入 /ec 可打開遊戲內設置介面. 如果你需要技術協助, 可訪問我們的網址 https://github.com/Ascension-Addons/ElvUI 或是加入我們的 Discord 伺服器: https://discord.gg/UXSc7nt" L["Layout Set"] = "版面配置設定" L["Layout"] = "介面佈局" L["Left Chat"] = "左側對話框"