From ba86c5647d44820638d8ae6155f05e4009a90c2f Mon Sep 17 00:00:00 2001 From: Crum Date: Thu, 15 Nov 2018 20:10:27 -0600 Subject: [PATCH] locales --- ElvUI/Locales/Chinese_UI.lua | 32 ++++---- ElvUI/Locales/English_UI.lua | 4 + ElvUI/Locales/French_UI.lua | 64 ++++++++-------- ElvUI/Locales/German_UI.lua | 40 +++++----- ElvUI/Locales/Korean_UI.lua | 80 ++++++++++---------- ElvUI/Locales/Portuguese_UI.lua | 128 ++++++++++++++++---------------- ElvUI/Locales/Russian_UI.lua | 8 +- ElvUI/Locales/Spanish_UI.lua | 48 ++++++------ ElvUI/Locales/Taiwanese_UI.lua | 34 +++++---- 9 files changed, 237 insertions(+), 201 deletions(-) diff --git a/ElvUI/Locales/Chinese_UI.lua b/ElvUI/Locales/Chinese_UI.lua index 241460a..a5b6919 100644 --- a/ElvUI/Locales/Chinese_UI.lua +++ b/ElvUI/Locales/Chinese_UI.lua @@ -1,8 +1,12 @@ -- Chinese localization file for zhCN. -local AceLocale = LibStub:GetLibrary("AceLocale-3.0") -local L = AceLocale:NewLocale("ElvUI", "zhCN") +local AceLocale = LibStub:GetLibrary("AceLocale-3.0"); +local L = AceLocale:NewLocale("ElvUI", "zhCN"); if not L then return end +--GlobalStrings Override +GUILD_STATUS = "公会状态" +PLAYER_STATUS = "玩家状态" + --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "插件 %s 不相容于 ElvUI 的 %s 模组, 请停用不相容的插件, 或停用模组." @@ -42,8 +46,8 @@ L["Vendor / Delete Grays"] = "出售/删除灰色物品" --Chat L["AFK"] = "离开" --Also used in datatexts and tooltip -L["BG"] = true; -L["BGL"] = true; +L["BG"] = true +L["BGL"] = true L["DND"] = "忙碌" --Also used in datatexts and tooltip L["G"] = "公会" L["Invalid Target"] = "无效的目标" @@ -63,7 +67,7 @@ L["Avoidance Breakdown"] = "免伤统计" L["Character: "] = "角色: " L["Chest"] = "胸" L["Combat"] = "战斗" -L["Combat Time"] = true; +L["Combat Time"] = true L["Coords"] = "坐标" L["copperabbrev"] = "|cffeda55f铜|r" L["Deficit:"] = "赤字:" @@ -79,14 +83,14 @@ L["Home Latency:"] = "本机延迟:" L["HP"] = "生命值" L["HPS"] = "治疗输出" L["lvl"] = "等级" -L["Miss Chance"] = true; +L["Miss Chance"] = true L["Mitigation By Level: "] = "等级减伤: " L["No Guild"] = "没有公会" L["Profit:"] = "利润:" L["Realm time:"] = "服务器时间:" -L["Reload UI"] = true; +L["Reload UI"] = true L["Reset Data: Hold Shift + Right Click"] = "重置数据: 按住 Shift + 右键点击" -L["Right Click: Reset CPU Usage"] = true; +L["Right Click: Reset CPU Usage"] = true L["Saved Raid(s)"] = "已有进度的副本" L["Server: "] = "服务器: " L["Session:"] = "本次登陆:" @@ -100,7 +104,7 @@ L["Total CPU:"] = "CPU占用" L["Total Memory:"] = "总内存:" L["Total: "] = "合计: " L["Unhittable:"] = "未命中:" -L["Wintergrasp"] = true; +L["Wintergrasp"] = true --DebugTools L["%s: %s tried to call the protected function '%s'."] = "%s: %s 尝试调用保护函数 '%s'." @@ -190,7 +194,7 @@ L["Disband Group"] = "解散队伍" L["Empty Slot"] = "空拾取位" L["Enable"] = "启用" L["Experience"] = "经验/声望条" -L["Farm Mode"] = true; +L["Farm Mode"] = true L["Fishy Loot"] = "贪婪" L["Left Click:"] = "左键:" L["Mouse"] = "老鼠" @@ -247,10 +251,10 @@ L["Target Frame"] = "目标框架" L["Target Powerbar"] = "目标能量条" L["TargetTarget Frame"] = "目标的目标框架" L["TargetTargetTarget Frame"] = "目标的目标的目标框架" -L["Time Manager Frame"] = true; +L["Time Manager Frame"] = true L["Tooltip"] = "鼠标提示" -L["Watch Frame"] = true; -L["Weapons"] = true; +L["Watch Frame"] = true +L["Weapons"] = true L["DESC_MOVERCONFIG"] = "Movers unlocked. Move them now and click Lock when you are done./nOptions:/nShift + RightClick - Hides mover temporarily./nCtrl + RightClick - Resets mover position to default." --Plugin Installer @@ -301,7 +305,7 @@ L["Discard"] = "取消" L["Do you enjoy the new ElvUI?"] = "你喜欢新的ElvUI么?" L["Do you swear not to post in technical support about something not working without first disabling the addon/module combination first?"] = "你发誓在你没停用其他插件前不会到技术支持询问某些功能失效吗?" L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/ElvUI-Vanilla/ElvUI/"] = "ElvUI已过期5个或者更多的版本。你可以在 https://github.com/ElvUI-Vanilla/ElvUI/ 下载到最新的版本" -L["ElvUI is out of date. You can download the newest version from https://github.com/ElvUI-Vanilla/ElvUI/"] = true; +L["ElvUI is out of date. You can download the newest version from https://github.com/ElvUI-Vanilla/ElvUI/"] = true L["ElvUI needs to perform database optimizations please be patient."] = "ElvUI需要进行数据库优化, 请耐性等待." L["Hover your mouse over any actionbutton or spellbook button to bind it. Press the escape key or right click to clear the current actionbutton's keybinding."] = "移动鼠标到动作条或技能书按钮上绑定快捷键. 按ESC或鼠标右键取消目前快捷键" L["I Swear"] = "我承诺" diff --git a/ElvUI/Locales/English_UI.lua b/ElvUI/Locales/English_UI.lua index c4db124..7021d0a 100644 --- a/ElvUI/Locales/English_UI.lua +++ b/ElvUI/Locales/English_UI.lua @@ -3,6 +3,10 @@ local AceLocale = LibStub:GetLibrary("AceLocale-3.0"); local L = AceLocale:NewLocale("ElvUI", "enUS", true, true); if not L then return; end +--GlobalStrings Override +GUILD_STATUS = "Guild Status" +PLAYER_STATUS = "Player Status" + --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "The addon %s is not compatible with ElvUI's %s module. Please select either the addon or the ElvUI module to disable." diff --git a/ElvUI/Locales/French_UI.lua b/ElvUI/Locales/French_UI.lua index 3b65d6d..b2ba571 100644 --- a/ElvUI/Locales/French_UI.lua +++ b/ElvUI/Locales/French_UI.lua @@ -1,7 +1,11 @@ -- French localization file for frFR. local AceLocale = LibStub:GetLibrary("AceLocale-3.0"); local L = AceLocale:NewLocale("ElvUI", "frFR"); -if not L then return; end +if not L then return end + +--GlobalStrings Override +GUILD_STATUS = "Statut joueur" +PLAYER_STATUS = "État de la guilde" --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "L'addon %s n'est pas compatible avec le module %s d'ElvUI. Merci de sélectionner soit l'addon ou le module d'ElvUI pour le désactiver." @@ -42,8 +46,8 @@ L["Vendor / Delete Grays"] = true --Chat L["AFK"] = "ABS" --Also used in datatexts and tooltip -L["BG"] = true; -L["BGL"] = true; +L["BG"] = true +L["BGL"] = true L["DND"] = "NPD" --Also used in datatexts and tooltip L["G"] = "G" L["Invalid Target"] = "Cible incorrecte" @@ -63,15 +67,15 @@ L["Avoidance Breakdown"] = "Répartition de l'évitement" L["Character: "] = "Personnage: " L["Chest"] = "Torse" L["Combat"] = "Combat" -L["Combat Time"] = true; -L["Coords"] = true; +L["Combat Time"] = true +L["Coords"] = true L["copperabbrev"] = "|cffeda55fc|r" --Also used in Bags L["Deficit:"] = "Déficit:" L["DPS"] = "DPS" L["Earned:"] = "Gagné:" L["Friends List"] = "Liste d'amis" L["Friends"] = "Amis" --Also in Skins -L["Gold"] = true; +L["Gold"] = true L["goldabbrev"] = "|cffffd700g|r" --Also used in Bags L["Hit"] = "Toucher" L["Hold Shift + Right Click:"] = "Maintenir Majuscule + Clic droit" @@ -79,28 +83,28 @@ L["Home Latency:"] = "Latence du Domicile:" L["HP"] = "PdS" L["HPS"] = "HPS" L["lvl"] = "niveau" -L["Miss Chance"] = true; +L["Miss Chance"] = true L["Mitigation By Level: "] = "Réduction par niveau: " L["No Guild"] = "Pas de Guilde" L["Profit:"] = "Profit:" L["Realm time:"] = "Heure du royaume :" -L["Reload UI"] = true; +L["Reload UI"] = true L["Reset Data: Hold Shift + Right Click"] = "RAZ des données: MAJ + Clic droit" -L["Right Click: Reset CPU Usage"] = true; +L["Right Click: Reset CPU Usage"] = true L["Saved Raid(s)"] = "Raid(s) Sauvegardé(s)" L["Server: "] = "Serveur: " L["Session:"] = "Session:" L["silverabbrev"] = "|cffc7c7cfs|r" --Also used in Bags L["SP"] = "PdS" -L["Spell/Heal Power"] = true; +L["Spell/Heal Power"] = true L["Spent:"] = "Dépensé: " L["Stats For:"] = "Stats pour:" -L["System"] = true; +L["System"] = true L["Total CPU:"] = "Charge du CPU:" L["Total Memory:"] = "Mémoire totale:" L["Total: "] = "Total: " L["Unhittable:"] = "Intouchable:" -L["Wintergrasp"] = true; +L["Wintergrasp"] = true --DebugTools L["%s: %s tried to call the protected function '%s'."] = "%s: %s a essayé d'appeler la fonction protégée '%s'." @@ -187,10 +191,10 @@ L["Bars"] = "Barres" --Also used in UnitFrames L["Calendar"] = "Calendrier" L["Can't Roll"] = "Ne peut pas jeter les dés" L["Disband Group"] = "Dissoudre le groupe" -L["Empty Slot"] = true; +L["Empty Slot"] = true L["Enable"] = "Activer" --Doesn't fit a section since it's used a lot of places L["Experience"] = "Expérience" -L["Farm Mode"] = true; +L["Farm Mode"] = true L["Fishy Loot"] = "Butin de pêche" L["Left Click:"] = "Clique Gauche:" --layout\layout.lua L["Mouse"] = "Souris" @@ -205,12 +209,12 @@ L["XP:"] = "XP:" L["You don't have permission to mark targets."] = "Vous n'avez pas la permission de marquer les cibles." --Movers -L["Bag Mover (Grow Down)"] = true; -L["Bag Mover (Grow Up)"] = true; -L["Bag Mover"] = true; +L["Bag Mover (Grow Down)"] = true +L["Bag Mover (Grow Up)"] = true +L["Bag Mover"] = true L["Bags"] = "Sacs" --Also in DataTexts -L["Bank Mover (Grow Down)"] = true; -L["Bank Mover (Grow Up)"] = true; +L["Bank Mover (Grow Down)"] = true +L["Bank Mover (Grow Up)"] = true L["Bar "] = "Barre " --Also in ActionBars L["Classbar"] = "Barre de Classe" L["Experience Bar"] = "Barre d'expérience" @@ -247,18 +251,18 @@ L["Target Frame"] = "Cadre de la cible" --Also used in UnitFrames L["Target Powerbar"] = "Barre de pouvoir de la cible" -- need review. L["TargetTarget Frame"] = "Cadre de la cible de votre cible" --Also used in UnitFrames L["TargetTargetTarget Frame"] = "Cadre de la cible de la cible de la cible" -L["Time Manager Frame"] = true; +L["Time Manager Frame"] = true L["Tooltip"] = "Infobulle" -L["Watch Frame"] = true; -L["Weapons"] = true; +L["Watch Frame"] = true +L["Weapons"] = true L["DESC_MOVERCONFIG"] = "Movers unlocked. Move them now and click Lock when you are done./nOptions:/nShift + RightClick - Hides mover temporarily./nCtrl + RightClick - Resets mover position to default." --Plugin Installer -L["ElvUI Plugin Installation"] = true; -L["In Progress"] = true; -L["List of installations in queue:"] = true; -L["Pending"] = true; -L["Steps"] = true; +L["ElvUI Plugin Installation"] = true +L["In Progress"] = true +L["List of installations in queue:"] = true +L["Pending"] = true +L["Steps"] = true --Prints L[" |cff00ff00bound to |r"] = "|cff00ff00assigné à |r" @@ -272,7 +276,7 @@ L["Binds Saved"] = "Raccourcis sauvegardés" L["Confused.. Try Again!"] = "Confus...Essayez à nouveau!" L["No gray items to delete."] = "Aucun objet gris à détruire." L["The spell '%s' has been added to the Blacklist unitframe aura filter."] = "Le sort '%s' a bien été ajouté à la liste noire des filtres des cadres d'unités." -L["This setting caused a conflicting anchor point, where '%s' would be attached to itself. Please check your anchor points. Setting '%s' to be attached to '%s'."] = true; +L["This setting caused a conflicting anchor point, where '%s' would be attached to itself. Please check your anchor points. Setting '%s' to be attached to '%s'."] = true L["Vendored gray items for:"] = "Objets gris vendus pour:" L["You don't have enough money to repair."] = "Vous n'avez pas assez d'argent pour réparer votre équipement." L["You must be at a vendor."] = "Vous devez être chez un marchand." @@ -289,7 +293,7 @@ L["Track"] = "Suivi" L["A setting you have changed will change an option for this character only. This setting that you have changed will be uneffected by changing user profiles. Changing this setting requires that you reload your User Interface."] = "Un réglage que vous avez modifié ne s'appliquera que pour ce personnage. La modification de ce réglage ne sera pas affecté par un changement de profil. Changer ce réglage requiert de relancer l'interface." L["Accepting this will reset your Filter Priority lists for all auras on NamePlates. Are you sure?"] = true L["Accepting this will reset your Filter Priority lists for all auras on UnitFrames. Are you sure?"] = "En acceptant, votre liste de priorités des filtres sera réinitialisée pour les auras des cadres d'unités. Êtes-vous sûr ?" -L["Are you sure you want to apply this font to all ElvUI elements?"] = true; +L["Are you sure you want to apply this font to all ElvUI elements?"] = true L["Are you sure you want to disband the group?"] = "Êtes-vous sûr de vouloir dissoudre le groupe ? " L["Are you sure you want to reset all the settings on this profile?"] = "Êtes-vous sûr de vouloir réinitialiser tous les réglages sur ce profile?" L["Are you sure you want to reset every mover back to it's default position?"] = "Êtes-vous sûr de vouloir réinitialiser tous les cadres à leur position par défaut ?" @@ -314,7 +318,7 @@ L["The profile you tried to import already exists. Choose a new name or accept t L["Type /hellokitty to revert to old settings."] = "Tapez /hellokitty pour recharger les anciennes configurations" L["Using the healer layout it is highly recommended you download the addon Clique if you wish to have the click-to-heal function."] = "Si vous utilisez l'agencement Soigneur, il est hautement recommandé de télécharger l'Addon Clique si vous souhaitez avoir la fonction cliquer-pour-soigner." L["Yes, Keep Changes!"] = "Oui, garder les changements!" -L["You have changed the Thin Border Theme option. You will have to complete the installation process to remove any graphical bugs."] = true; +L["You have changed the Thin Border Theme option. You will have to complete the installation process to remove any graphical bugs."] = true L["You have changed your UIScale, however you still have the AutoScale option enabled in ElvUI. Press accept if you would like to disable the Auto Scale option."] = "Vous venez de changer l'échelle de votre interface, alors que votre option d'échelle automatique est encore activée dans ElvUI. Cliquer sur accepter si vous voulez désactiver l'option d'échelle automatique." L["You have imported settings which may require a UI reload to take effect. Reload now?"] = "Vous avez importé des paramètes qui requierent un rechargement de l'interface. Recharger maintenant ?" L["You must purchase a bank slot first!"] = "Vous devez d'abord acheter un emplacement de banque!" diff --git a/ElvUI/Locales/German_UI.lua b/ElvUI/Locales/German_UI.lua index b846775..2e5a6fc 100644 --- a/ElvUI/Locales/German_UI.lua +++ b/ElvUI/Locales/German_UI.lua @@ -1,8 +1,12 @@ -- German localization file for deDE. -local AceLocale = LibStub:GetLibrary("AceLocale-3.0") -local L = AceLocale:NewLocale("ElvUI", "deDE") +local AceLocale = LibStub:GetLibrary("AceLocale-3.0"); +local L = AceLocale:NewLocale("ElvUI", "deDE"); if not L then return end +--GlobalStrings Override +GUILD_STATUS = "Gildenstatus" +PLAYER_STATUS = "Spielerstatus" + --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "Das Addon %s ist nicht mit dem ElvUI %s Modul kompatibel. Bitte deaktiviere entweder das Addon oder deaktiviere das ElvUI Modul." @@ -30,7 +34,7 @@ L["Remove Bar %d Action Page"] = "Entferne Leiste %d Aktion Seite" L["Trigger"] = "Auslöser" --Bags -L["Bank"] = true; +L["Bank"] = true L["Hold Control + Right Click:"] = "Halte Steuerung + Rechtsklick:" L["Hold Shift + Drag:"] = "Halte Shift + Ziehen:" L["Purchase Bags"] = "Taschen kaufen" @@ -42,8 +46,8 @@ L["Vendor / Delete Grays"] = "Verkaufe / Lösche graue Gegenstände" --Chat L["AFK"] = "AFK" --Also used in datatexts and tooltip -L["BG"] = true; -L["BGL"] = true; +L["BG"] = true +L["BGL"] = true L["DND"] = "DND" --Also used in datatexts and tooltip L["G"] = "G" L["Invalid Target"] = "Ungültiges Ziel" @@ -64,14 +68,14 @@ L["Character: "] = "Charakter: " L["Chest"] = "Brust" L["Combat"] = "Kampf" L["Combat Time"] = "Kampf Zeit" -L["Coords"] = true; +L["Coords"] = true L["copperabbrev"] = "|cffeda55fc|r" --Also used in Bags L["Deficit:"] = "Defizit:" L["DPS"] = "DPS" L["Earned:"] = "Verdient:" L["Friends List"] = "Freundesliste" L["Friends"] = "Freunde" --Also in Skins -L["Gold"] = true; +L["Gold"] = true L["goldabbrev"] = "|cffffd700g|r" --Also used in gold datatext L["Hit"] = "Hit" L["Hold Shift + Right Click:"] = "Halte Umschalt + Rechts Klick:" @@ -79,28 +83,28 @@ L["Home Latency:"] = "Standort Latenz" L["HP"] = "HP" L["HPS"] = "HPS" L["lvl"] = "lvl" -L["Miss Chance"] = true; +L["Miss Chance"] = true L["Mitigation By Level: "] = "Milderung durch Stufe:" L["No Guild"] = "Keine Gilde" L["Profit:"] = "Gewinn:" L["Realm time:"] = "Serverzeit:" -L["Reload UI"] = true; +L["Reload UI"] = true L["Reset Data: Hold Shift + Right Click"] = "Daten zurücksetzen: Halte Shift + Rechtsklick" -L["Right Click: Reset CPU Usage"] = true; +L["Right Click: Reset CPU Usage"] = true L["Saved Raid(s)"] = "Gespeicherte Schlachtzüge" L["Server: "] = "Server: " L["Session:"] = "Sitzung:" L["silverabbrev"] = "|cffc7c7cfs|r" --Also used in Bags L["SP"] = "SP" -L["Spell/Heal Power"] = true; +L["Spell/Heal Power"] = true L["Spent:"] = "Ausgegeben:" L["Stats For:"] = "Stats Für:" -L["System"] = true; +L["System"] = true L["Total CPU:"] = "Gesamt CPU:" L["Total Memory:"] = "Gesamte Speichernutzung:" L["Total: "] = "Gesamt: " L["Unhittable:"] = "Unhittable:" -L["Wintergrasp"] = true; +L["Wintergrasp"] = true --DebugTools L["%s: %s tried to call the protected function '%s'."] = "%s: %s versucht die geschützte Funktion aufrufen '%s'." @@ -190,7 +194,7 @@ L["Disband Group"] = "Gruppe auflösen" L["Empty Slot"] = "Leerer Platz" L["Enable"] = "Eingeschaltet" --Doesn't fit a section since it's used a lot of places L["Experience"] = "Erfahrung" -L["Farm Mode"] = true; +L["Farm Mode"] = true L["Fishy Loot"] = "Faule Beute" L["Left Click:"] = "Linksklick:" --layout\layout.lua L["Mouse"] = "Maus" @@ -247,14 +251,14 @@ L["Target Frame"] = "Zielfenster" --Also used in UnitFrames L["Target Powerbar"] = "Ziel Kraftleiste" L["TargetTarget Frame"] = "Ziel des Ziels Fenster" --Also used in UnitFrames L["TargetTargetTarget Frame"] = "Ziel des Ziels des Ziels Fenster" -L["Time Manager Frame"] = true; +L["Time Manager Frame"] = true L["Tooltip"] = "Tooltip" -L["Watch Frame"] = true; -L["Weapons"] = true; +L["Watch Frame"] = true +L["Weapons"] = true L["DESC_MOVERCONFIG"] = "Movers unlocked. Move them now and click Lock when you are done./nOptions:/nShift + RightClick - Hides mover temporarily./nCtrl + RightClick - Resets mover position to default." --Plugin Installer -L["ElvUI Plugin Installation"] = true; +L["ElvUI Plugin Installation"] = true L["In Progress"] = "In Bearbeitung" L["List of installations in queue:"] = "Liste von Installationen in Warteschlange:" L["Pending"] = "Ausstehend" diff --git a/ElvUI/Locales/Korean_UI.lua b/ElvUI/Locales/Korean_UI.lua index 77c711b..0e64a24 100644 --- a/ElvUI/Locales/Korean_UI.lua +++ b/ElvUI/Locales/Korean_UI.lua @@ -1,8 +1,12 @@ -- Korean localization file for koKR. -local AceLocale = LibStub:GetLibrary("AceLocale-3.0") -local L = AceLocale:NewLocale("ElvUI", "koKR") +local AceLocale = LibStub:GetLibrary("AceLocale-3.0"); +local L = AceLocale:NewLocale("ElvUI", "koKR"); if not L then return end +--GlobalStrings Override +GUILD_STATUS = "길드 정보" +PLAYER_STATUS = "플레이어 정보" + --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "%s 애드온의 기능이 ElvUI의 %s 모듈과 상충됩니다. 그 애드온을 쓰지 않거나 ElvUI의 기능을 사용해제하세요." @@ -42,8 +46,8 @@ L["Vendor / Delete Grays"] = "잡템 자동판매/삭제" --Chat L["AFK"] = "자리비움" -L["BG"] = true; -L["BGL"] = true; +L["BG"] = true +L["BGL"] = true L["DND"] = "다른 용무중" L["G"] = "길드" L["Invalid Target"] = "잘못된 대상" @@ -63,48 +67,48 @@ L["Avoidance Breakdown"] = "방어율 목록" L["Character: "] = "캐릭터:" L["Chest"] = "가슴" L["Combat"] = "전투" -L["Combat Time"] = true; -L["Coords"] = true; +L["Combat Time"] = true +L["Coords"] = true L["copperabbrev"] = "|TInterface\\MoneyFrame\\UI-MoneyIcons:0:0:1:0:64:16:33:48:1:16|t" --"|cffeda55f●|r" L["Deficit:"] = "손해:" L["DPS"] = "DPS" L["Earned:"] = "수입:" L["Friends List"] = "친구 목록" L["Friends"] = "친구" -L["Gold"] = true; +L["Gold"] = true L["goldabbrev"] = "|TInterface\\MoneyFrame\\UI-MoneyIcons:0:0:1:0:64:16:1:16:1:16|t" --"|cffffd700●|r" L["Hit"] = "적중도" -L["Hold Shift + Right Click:"] = true; +L["Hold Shift + Right Click:"] = true L["Home Latency:"] = "지연 시간:" L["HP"] = "주문력" L["HPS"] = "HPS" L["lvl"] = "레벨" -L["Miss Chance"] = true; +L["Miss Chance"] = true L["Mitigation By Level: "] = "레벨별 데미지 경감률" L["No Guild"] = "길드 없음" L["Profit:"] = "이익:" L["Realm time:"] = "서버 시간:" -L["Reload UI"] = true; +L["Reload UI"] = true L["Reset Data: Hold Shift + Right Click"] = "기록 리셋: Shift + 우클릭" -L["Right Click: Reset CPU Usage"] = true; +L["Right Click: Reset CPU Usage"] = true L["Saved Raid(s)"] = "귀속된 던전" L["Server: "] = "서버:" L["Session:"] = "현재 접속:" L["silverabbrev"] = "|TInterface\\MoneyFrame\\UI-MoneyIcons:0:0:1:0:64:16:17:32:1:16|t" --"|cffc7c7cf●|r" L["SP"] = "주문력" -L["Spell/Heal Power"] = true; +L["Spell/Heal Power"] = true L["Spent:"] = "지출:" L["Stats For:"] = "점수:" -L["System"] = true; +L["System"] = true L["Total CPU:"] = "전체 CPU 사용량:" L["Total Memory:"] = "전체 메모리:" L["Total: "] = "합계:" L["Unhittable:"] = "100% 방어행동까지" -L["Wintergrasp"] = true; +L["Wintergrasp"] = true --DebugTools L["%s: %s tried to call the protected function '%s'."] = "%s: %s 기능이 사용할 수 없는 %s 함수를 사용하려 합니다." -L["No locals to dump"] = true; --Currently not used +L["No locals to dump"] = true --Currently not used --Distributor L["%s is attempting to share his filters with you. Would you like to accept the request?"] = "%s 유저가 필터설정을 전송하려 합니다. 받으시겠습니까?" @@ -187,10 +191,10 @@ L["Bars"] = "바" L["Calendar"] = "달력" L["Can't Roll"] = "주사위를 굴릴 수 없습니다." L["Disband Group"] = "그룹 해산" -L["Empty Slot"] = true; +L["Empty Slot"] = true L["Enable"] = "사용" L["Experience"] = "경험치" -L["Farm Mode"] = true; +L["Farm Mode"] = true L["Fishy Loot"] = "낚시 전리품" L["Left Click:"] = "왼 클릭 :" L["Mouse"] = "쥐" @@ -205,12 +209,12 @@ L["XP:"] = "경험치:" L["You don't have permission to mark targets."] = "레이드 아이콘을 지정할 권한이 없습니다." --Movers -L["Bag Mover (Grow Down)"] = true; -L["Bag Mover (Grow Up)"] = true; -L["Bag Mover"] = true; +L["Bag Mover (Grow Down)"] = true +L["Bag Mover (Grow Up)"] = true +L["Bag Mover"] = true L["Bags"] = "가방" -L["Bank Mover (Grow Down)"] = true; -L["Bank Mover (Grow Up)"] = true; +L["Bank Mover (Grow Down)"] = true +L["Bank Mover (Grow Up)"] = true L["Bar "] = "바 " L["Classbar"] = "직업바" L["Experience Bar"] = "경험치 바" @@ -224,7 +228,7 @@ L["Loot Frame"] = "전리품 프레임" L["MA Frames"] = "지원공격 전담 프레임" L["Micro Bar"] = "메뉴모음 바" L["Minimap"] = "미니맵" -L["MirrorTimer"] = true; +L["MirrorTimer"] = true L["MT Frames"] = "방어전담 프레임" L["Party Frames"] = "파티 프레임" L["Pet Bar"] = "소환수 바" @@ -235,7 +239,7 @@ L["Player Buffs"] = "플레이어 버프" L["Player Castbar"] = "플레이어 시전바" L["Player Debuffs"] = "플레이어 디버프" L["Player Frame"] = "플레이어 프레임" -L["Player Powerbar"] = true; +L["Player Powerbar"] = true L["Raid Frames"] = "레이드 프레임" L["Raid Pet Frames"] = "레이드 소환수 프레임" L["Raid-40 Frames"] = "레이드 프레임(40인)" @@ -244,21 +248,21 @@ L["Right Chat"] = "우측 패널" L["Stance Bar"] = "태세 바" L["Target Castbar"] = "대상 시전바" L["Target Frame"] = "대상 프레임" -L["Target Powerbar"] = true; +L["Target Powerbar"] = true L["TargetTarget Frame"] = "대상의대상 프레임" L["TargetTargetTarget Frame"] = "대상의대상의대상 프레임" -L["Time Manager Frame"] = true; +L["Time Manager Frame"] = true L["Tooltip"] = "툴팁" -L["Watch Frame"] = true; -L["Weapons"] = true; +L["Watch Frame"] = true +L["Weapons"] = true L["DESC_MOVERCONFIG"] = "Movers unlocked. Move them now and click Lock when you are done./nOptions:/nShift + RightClick - Hides mover temporarily./nCtrl + RightClick - Resets mover position to default." --Plugin Installer -L["ElvUI Plugin Installation"] = true; -L["In Progress"] = true; -L["List of installations in queue:"] = true; -L["Pending"] = true; -L["Steps"] = true; +L["ElvUI Plugin Installation"] = true +L["In Progress"] = true +L["List of installations in queue:"] = true +L["Pending"] = true +L["Steps"] = true --Prints L[" |cff00ff00bound to |r"] = " 키로 다음의 행동을 실행합니다: |cff2eb7e4" @@ -272,7 +276,7 @@ L["Binds Saved"] = "단축키가 저장되었습니다." L["Confused.. Try Again!"] = "작업에 혼선이 있었습니다. 다시 시도해 주세요." L["No gray items to delete."] = "잡동사니가 없습니다." L["The spell '%s' has been added to the Blacklist unitframe aura filter."] = "%s 주문이 차단 목록에 등록되었습니다." -L["This setting caused a conflicting anchor point, where '%s' would be attached to itself. Please check your anchor points. Setting '%s' to be attached to '%s'."] = true; +L["This setting caused a conflicting anchor point, where '%s' would be attached to itself. Please check your anchor points. Setting '%s' to be attached to '%s'."] = true L["Vendored gray items for:"] = "모든 잡동사니를 팔았습니다:" L["You don't have enough money to repair."] = "수리 비용이 부족합니다." L["You must be at a vendor."] = "상인을 만나야 가능합니다." @@ -289,7 +293,7 @@ L["Track"] = "추적" L["A setting you have changed will change an option for this character only. This setting that you have changed will be uneffected by changing user profiles. Changing this setting requires that you reload your User Interface."] = "이 설정은 캐릭터별로 따로 저장되므로|n프로필에 영향을 주지도, 받지도 않습니다.|n|n설정 적용을 위해 리로드 하시겠습니까?" L["Accepting this will reset your Filter Priority lists for all auras on NamePlates. Are you sure?"] = true L["Accepting this will reset your Filter Priority lists for all auras on UnitFrames. Are you sure?"] = true -L["Are you sure you want to apply this font to all ElvUI elements?"] = true; +L["Are you sure you want to apply this font to all ElvUI elements?"] = true L["Are you sure you want to disband the group?"] = "현재 그룹을 해산하시겠습니까?" L["Are you sure you want to reset all the settings on this profile?"] = "현재 사용중인 프로필을 초기화 하시겠습니까?" L["Are you sure you want to reset every mover back to it's default position?"] = "모든 프레임을 기본 위치로 초기화 하시겠습니까?" @@ -310,13 +314,13 @@ L["Oh lord, you have got ElvUI and Tukui both enabled at the same time. Select a L["One or more of the changes you have made require a ReloadUI."] = "변경 사항을 적용하려면 애드온을 리로드 해야합니다." L["One or more of the changes you have made will effect all characters using this addon. You will have to reload the user interface to see the changes you have made."] = "이 설정은 모든 캐릭터에게 동일하게 적용됩니다.|n|n설정 적용을 위해 리로드 하시겠습니까?" L["Save"] = "저장" -L["The profile you tried to import already exists. Choose a new name or accept to overwrite the existing profile."] = true; +L["The profile you tried to import already exists. Choose a new name or accept to overwrite the existing profile."] = true L["Type /hellokitty to revert to old settings."] = "/hellokitty 를 입력해서 예전 세팅으로 돌릴 수 있습니다." L["Using the healer layout it is highly recommended you download the addon Clique if you wish to have the click-to-heal function."] = "힐러 레이아웃을 사용할 거라면 Clique 애드온을 같이 써 클릭캐스팅 기능을 이용할 것을 강력히 추천합니다." L["Yes, Keep Changes!"] = "네! 이대로 할래요!" L["You have changed the Thin Border Theme option. You will have to complete the installation process to remove any graphical bugs."] = "Thin Border Theme 선택을 바꾸었습니다. 설치과정을 끝까지 밟아 그래픽 관련 버그를 미연에 방지하는 걸 추천합니다." L["You have changed your UIScale, however you still have the AutoScale option enabled in ElvUI. Press accept if you would like to disable the Auto Scale option."] = "UI 배율이 변경되었지만 ElvUI의 UI크기 자동조절 기능이 켜져있습니다. UI크기 자동조절 기능을 끄고 싶다면 '수락'을 누르세요." -L["You have imported settings which may require a UI reload to take effect. Reload now?"] = true; +L["You have imported settings which may require a UI reload to take effect. Reload now?"] = true L["You must purchase a bank slot first!"] = "우선 은행가방 칸을 구입해야됩니다!" --Tooltip @@ -341,6 +345,6 @@ L["You can toggle the microbar by using your middle mouse button on the minimap L["You can use the /resetui command to reset all of your movers. You can also use the command to reset a specific mover, /resetui .\nExample: /resetui Player Frame"] = "|cff2eb7e4/resetui|r 입력으로 움직였던 모든 프레임의 위치를 초기화할 수 있습니다. |cff2eb7e4 /resetui 프레임이름|r 으로 특정 프레임만 초기화도 가능합니다." --UnitFrames -L["Dead"] = true; +L["Dead"] = true L["Ghost"] = "유령" L["Offline"] = "오프라인" diff --git a/ElvUI/Locales/Portuguese_UI.lua b/ElvUI/Locales/Portuguese_UI.lua index e505fb2..f9bc40a 100644 --- a/ElvUI/Locales/Portuguese_UI.lua +++ b/ElvUI/Locales/Portuguese_UI.lua @@ -1,8 +1,12 @@ -- Portuguese localization file for ptBR. -local AceLocale = LibStub:GetLibrary("AceLocale-3.0") -local L = AceLocale:NewLocale("ElvUI", "ptBR") +local AceLocale = LibStub:GetLibrary("AceLocale-3.0"); +local L = AceLocale:NewLocale("ElvUI", "ptBR"); if not L then return end +--GlobalStrings Override +GUILD_STATUS = "Status da guilda" +PLAYER_STATUS = "Status do Jogador" + --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "The addon %s is not compatible with ElvUI's %s module. Please select either the addon or the ElvUI module to disable." @@ -30,10 +34,10 @@ L["Remove Bar %d Action Page"] = "Remover paginação de ação da barra %d." L["Trigger"] = "Gatilho" --Bags -L["Bank"] = true; +L["Bank"] = true L["Hold Control + Right Click:"] = "Segurar Control + Clique Direito:" L["Hold Shift + Drag:"] = "Segurar Shift + Arrastar:" -L["Purchase Bags"] = true; +L["Purchase Bags"] = true L["Reset Position"] = "Redefinir Posição" L["Sort Bags"] = "Organizar Bolsas" L["Temporary Move"] = "Mover Temporariamente" @@ -42,8 +46,8 @@ L["Vendor / Delete Grays"] = true --Chat L["AFK"] = "LDT" -L["BG"] = true; -L["BGL"] = true; +L["BG"] = true +L["BGL"] = true L["DND"] = "NP" L["G"] = "G" L["Invalid Target"] = "Alvo inválido" @@ -62,45 +66,45 @@ L["(Hold Shift) Memory Usage"] = "(Segurar Shift) Memória em Uso" L["Avoidance Breakdown"] = "Separação de Anulação" L["Character: "] = "Personagem: " L["Chest"] = "Torso" -L["Combat"] = true; -L["Combat Time"] = true; -L["Coords"] = true; +L["Combat"] = true +L["Combat Time"] = true +L["Coords"] = true L["copperabbrev"] = "|cffeda55fc|r" L["Deficit:"] = "Défice:" L["DPS"] = "DPS" L["Earned:"] = "Ganho:" L["Friends List"] = "Lista de Amigos" L["Friends"] = "Amigos" -L["Gold"] = true; +L["Gold"] = true L["goldabbrev"] = "|cffffd700g|r" L["Hit"] = "Acerto" -L["Hold Shift + Right Click:"] = true; +L["Hold Shift + Right Click:"] = true L["Home Latency:"] = "Latência de Casa:" L["HP"] = "PV" L["HPS"] = "PVS" L["lvl"] = "nível" -L["Miss Chance"] = true; +L["Miss Chance"] = true L["Mitigation By Level: "] = "Mitigação por nível" L["No Guild"] = "Sem Guilda" L["Profit:"] = "Lucro:" L["Realm time:"] = "Hora do reino:" -L["Reload UI"] = true; +L["Reload UI"] = true L["Reset Data: Hold Shift + Right Click"] = "Redefinir Dados: Segurar Shifr + Clique Direito" -L["Right Click: Reset CPU Usage"] = true; +L["Right Click: Reset CPU Usage"] = true L["Saved Raid(s)"] = "Raide(s) Salva(s)" L["Server: "] = "Servidor: " L["Session:"] = "Sessão:" L["silverabbrev"] = "|cffc7c7cfs|r" L["SP"] = "PM" -L["Spell/Heal Power"] = true; +L["Spell/Heal Power"] = true L["Spent:"] = "Gasto:" L["Stats For:"] = "Estatísticas para:" -L["System"] = true; +L["System"] = true L["Total CPU:"] = "CPU Total:" L["Total Memory:"] = "Memória Total:" L["Total: "] = "Total: " L["Unhittable:"] = "Inacertável" -L["Wintergrasp"] = true; +L["Wintergrasp"] = true --DebugTools L["%s: %s tried to call the protected function '%s'."] = "%s: %s tentou chamar a função protegida '%s'." @@ -119,9 +123,9 @@ L["Request was denied by user."] = "Pedido negado pelo usuário." L["Your profile was successfully recieved by the player."] = "Seu perfil foi recebido com sucesso pelo jogador." --Install -L["Aura Bars & Icons"] = true; +L["Aura Bars & Icons"] = true L["Auras Set"] = "Auras configuradas" -L["Auras"] = true; +L["Auras"] = true L["Caster DPS"] = "DPS Lançador" L["Chat Set"] = "Bate-Papo configurado" L["Choose a theme layout you wish to use for your initial setup."] = "Escolha o tema de layout que deseje usar inicialmente." @@ -156,7 +160,7 @@ L["Please click the button below to setup your CVars."] = "Por favor, clique no L["Please press the continue button to go onto the next step."] = "Por favor, pressione o botão Continuar para passar à próxima etapa." L["Resolution Style Set"] = "Estilo de Resolução defenido" L["Resolution"] = "Resolução" -L["Select the type of aura system you want to use with ElvUI's unitframes. Set to Aura Bar & Icons to use both aura bars and icons, set to icons only to only see icons."] = true; +L["Select the type of aura system you want to use with ElvUI's unitframes. Set to Aura Bar & Icons to use both aura bars and icons, set to icons only to only see icons."] = true L["Setup Chat"] = "Configurar Bate-papo" L["Setup CVars"] = "Configurar CVars" L["Skip Process"] = "Pular Processo" @@ -172,7 +176,7 @@ L["This part of the installation process sets up your chat windows names, positi L["This part of the installation process sets up your World of Warcraft default options it is recommended you should do this step for everything to behave properly."] = "Esta parte da instalação serve para definir as suas opcões padrão do WoW, é recomendado fazer isto para que tudo funcione corretamente." L["This resolution doesn't require that you change settings for the UI to fit on your screen."] = "Esta resolução não exige que altere as definições para que a interface caiba no seu ecrã (monitor)." L["This resolution requires that you change some settings to get everything to fit on your screen."] = "Esta resolução requer que altere algumas definições para que tudo caiba no seu ecrã (monitor)." -L["This will change the layout of your unitframes and actionbars."] = true; +L["This will change the layout of your unitframes and actionbars."] = true L["Trade"] = "Comércio" L["Welcome to ElvUI version %s!"] = "Bem-vindo à versão %s da ElvUI!" L["You are now finished with the installation process. If you are in need of technical support please visit us at https://github.com/ElvUI-Vanilla/ElvUI"] = "O processo de instalação está agora terminado. Se precisar de suporte técnico por favor visite-nos no site https://github.com/ElvUI-Vanilla/ElvUI" @@ -187,10 +191,10 @@ L["Bars"] = "Barras" L["Calendar"] = "Calendário" L["Can't Roll"] = "Não pode rolar" L["Disband Group"] = "Dissolver Grupo" -L["Empty Slot"] = true; +L["Empty Slot"] = true L["Enable"] = "Ativar" L["Experience"] = "Experiência" -L["Farm Mode"] = true; +L["Farm Mode"] = true L["Fishy Loot"] = "Saque de Peixes" L["Left Click:"] = "Clique Esquerdo:" L["Mouse"] = "rato" @@ -205,12 +209,12 @@ L["XP:"] = "XP:" L["You don't have permission to mark targets."] = "Você não tem permissão para marcar alvos." --Movers -L["Bag Mover (Grow Down)"] = true; -L["Bag Mover (Grow Up)"] = true; -L["Bag Mover"] = true; +L["Bag Mover (Grow Down)"] = true +L["Bag Mover (Grow Up)"] = true +L["Bag Mover"] = true L["Bags"] = "Bolsas" -L["Bank Mover (Grow Down)"] = true; -L["Bank Mover (Grow Up)"] = true; +L["Bank Mover (Grow Down)"] = true +L["Bank Mover (Grow Up)"] = true L["Bar "] = "Barra " L["Classbar"] = "Barra da Classe" L["Experience Bar"] = "Barra de Experiência" @@ -220,45 +224,45 @@ L["FocusTarget Frame"] = "Quadro do Alvo do Foco" L["GM Ticket Frame"] = "Quadro de Consulta com GM" L["Left Chat"] = "Bate-papo esquerdo" L["Loot / Alert Frames"] = "Quadro de Saque / Alerta" -L["Loot Frame"] = true; +L["Loot Frame"] = true L["MA Frames"] = "Quadro do Assistente Principal" L["Micro Bar"] = "Micro Barra" L["Minimap"] = "Minimapa" -L["MirrorTimer"] = true; +L["MirrorTimer"] = true L["MT Frames"] = "Quadro do Tank Principal" L["Party Frames"] = "Quadros de Grupo" L["Pet Bar"] = "Barra do Ajudante" -L["Pet Castbar"] = true; +L["Pet Castbar"] = true L["Pet Frame"] = "Quadro do Ajudante" L["PetTarget Frame"] = "Quadro do Alvo do Ajudante" -L["Player Buffs"] = true; +L["Player Buffs"] = true L["Player Castbar"] = "Barra de lançamento do Jogador" -L["Player Debuffs"] = true; +L["Player Debuffs"] = true L["Player Frame"] = "Quadro do Jogador" -L["Player Powerbar"] = true; -L["Raid Frames"] = true; -L["Raid Pet Frames"] = true; -L["Raid-40 Frames"] = true; +L["Player Powerbar"] = true +L["Raid Frames"] = true +L["Raid Pet Frames"] = true +L["Raid-40 Frames"] = true L["Reputation Bar"] = "Barra de Reputação" L["Right Chat"] = "Bate-papo direito" L["Stance Bar"] = "Barra de Postura" L["Target Castbar"] = "Barra de lançamento do Alvo" L["Target Frame"] = "Quadro do Alvo" -L["Target Powerbar"] = true; +L["Target Powerbar"] = true L["TargetTarget Frame"] = "Quadro do Alvo do Alvo" -L["TargetTargetTarget Frame"] = true; -L["Time Manager Frame"] = true; +L["TargetTargetTarget Frame"] = true +L["Time Manager Frame"] = true L["Tooltip"] = "Tooltip" -L["Watch Frame"] = true; -L["Weapons"] = true; +L["Watch Frame"] = true +L["Weapons"] = true L["DESC_MOVERCONFIG"] = "Movers unlocked. Move them now and click Lock when you are done./nOptions:/nShift + RightClick - Hides mover temporarily./nCtrl + RightClick - Resets mover position to default." --Plugin Installer -L["ElvUI Plugin Installation"] = true; -L["In Progress"] = true; -L["List of installations in queue:"] = true; -L["Pending"] = true; -L["Steps"] = true; +L["ElvUI Plugin Installation"] = true +L["In Progress"] = true +L["List of installations in queue:"] = true +L["Pending"] = true +L["Steps"] = true --Prints L[" |cff00ff00bound to |r"] = " |cff00ff00Ligado a |r" @@ -272,7 +276,7 @@ L["Binds Saved"] = "Ligações Salvas" L["Confused.. Try Again!"] = "Confuso... Tente novamente!" L["No gray items to delete."] = "Nenhum item cinzento para destruir." L["The spell '%s' has been added to the Blacklist unitframe aura filter."] = "O feitiço '%s' foi adicionado à Lista Negra dos filtros das auras de unidades." -L["This setting caused a conflicting anchor point, where '%s' would be attached to itself. Please check your anchor points. Setting '%s' to be attached to '%s'."] = true; +L["This setting caused a conflicting anchor point, where '%s' would be attached to itself. Please check your anchor points. Setting '%s' to be attached to '%s'."] = true L["Vendored gray items for:"] = "Vendeu os itens cinzentos por:" L["You don't have enough money to repair."] = "Você não tem dinheiro suficiente para reparar." L["You must be at a vendor."] = "Tem de estar num vendedor." @@ -289,7 +293,7 @@ L["Track"] = "Listar" L["A setting you have changed will change an option for this character only. This setting that you have changed will be uneffected by changing user profiles. Changing this setting requires that you reload your User Interface."] = "A definição que você alterou afetará apenas este personagem. Esta definição que você alterou não será afetada por mudanças de perfil. Alterar esta difinição requer que você recarregue a sua interface." L["Accepting this will reset your Filter Priority lists for all auras on NamePlates. Are you sure?"] = true L["Accepting this will reset your Filter Priority lists for all auras on UnitFrames. Are you sure?"] = true -L["Are you sure you want to apply this font to all ElvUI elements?"] = true; +L["Are you sure you want to apply this font to all ElvUI elements?"] = true L["Are you sure you want to disband the group?"] = "Tem a certeza de que quer dissolver o grupo?" L["Are you sure you want to reset all the settings on this profile?"] = "Tem certeza que quer redefinir todas as configurações desse perfil?" L["Are you sure you want to reset every mover back to it's default position?"] = "Tem a certeza de que deseja restaurar todos os movedores de volta para a sua posição padrão?" @@ -298,31 +302,31 @@ L["Can't buy anymore slots!"] = "Não é possível comprar mais espaços!" L["Delete gray items?"] = true L["Disable Warning"] = "Desativar Aviso" L["Discard"] = "Descartar" -L["Do you enjoy the new ElvUI?"] = true; +L["Do you enjoy the new ElvUI?"] = true L["Do you swear not to post in technical support about something not working without first disabling the addon/module combination first?"] = "Você jura não postar no suporte técnico sobre alguma coisa não funcionando sem antes desabilitar a combinação addon/módulo?" -L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/ElvUI-Vanilla/ElvUI/"] = true; -L["ElvUI is out of date. You can download the newest version from https://github.com/ElvUI-Vanilla/ElvUI/"] = true; -L["ElvUI needs to perform database optimizations please be patient."] = true; +L["ElvUI is five or more revisions out of date. You can download the newest version from https://github.com/ElvUI-Vanilla/ElvUI/"] = true +L["ElvUI is out of date. You can download the newest version from https://github.com/ElvUI-Vanilla/ElvUI/"] = true +L["ElvUI needs to perform database optimizations please be patient."] = true L["Hover your mouse over any actionbutton or spellbook button to bind it. Press the escape key or right click to clear the current actionbutton's keybinding."] = "Paire com o seu rato (mouse) sobre qualquer botão de ação ou botão do grimório para fazer uma Ligação. Pressione a tecla Escape ou clique com o botão direito para limpar o atalho atual." L["I Swear"] = "Eu Juro" -L["No, Revert Changes!"] = true; +L["No, Revert Changes!"] = true L["Oh lord, you have got ElvUI and Tukui both enabled at the same time. Select an addon to disable."] = "Oh senhor, você está com os addons ElvUI e Tuki ativos ao mesmo tempo. Selecione um para desativar." L["One or more of the changes you have made require a ReloadUI."] = "Uma ou mais das alterações que fez requerem que recarregue a IU." L["One or more of the changes you have made will effect all characters using this addon. You will have to reload the user interface to see the changes you have made."] = "Uma ou mais das alterações que fez afetará todos os personagens que usam este addon. Você terá que recarregar a interface para ver as alterações que fez." L["Save"] = "Salvar" -L["The profile you tried to import already exists. Choose a new name or accept to overwrite the existing profile."] = true; -L["Type /hellokitty to revert to old settings."] = true; +L["The profile you tried to import already exists. Choose a new name or accept to overwrite the existing profile."] = true +L["Type /hellokitty to revert to old settings."] = true L["Using the healer layout it is highly recommended you download the addon Clique if you wish to have the click-to-heal function."] = "Ao usar o leioute de curandeiro é altamente recomendado que você baixe o addon Clique se quiser ter a função de clicar-para-curar." -L["Yes, Keep Changes!"] = true; -L["You have changed the Thin Border Theme option. You will have to complete the installation process to remove any graphical bugs."] = true; +L["Yes, Keep Changes!"] = true +L["You have changed the Thin Border Theme option. You will have to complete the installation process to remove any graphical bugs."] = true L["You have changed your UIScale, however you still have the AutoScale option enabled in ElvUI. Press accept if you would like to disable the Auto Scale option."] = "Você mudou a Escala da sua IU, no entanto ainda tem a opção de dimensionamento automático ativa na ElvUI. Pressione Aceitar se gostaria de desativar a opção de dimensionamento automático." -L["You have imported settings which may require a UI reload to take effect. Reload now?"] = true; +L["You have imported settings which may require a UI reload to take effect. Reload now?"] = true L["You must purchase a bank slot first!"] = "Você deve comprar um espaço no banco primeiro!" --Tooltip L["Count"] = "Contar" -L["Item Level:"] = true; -L["Talent Specialization:"] = true; +L["Item Level:"] = true +L["Talent Specialization:"] = true L["Targeted By:"] = "Sendo Alvo de:" --Tutorials @@ -341,6 +345,6 @@ L["You can toggle the microbar by using your middle mouse button on the minimap L["You can use the /resetui command to reset all of your movers. You can also use the command to reset a specific mover, /resetui .\nExample: /resetui Player Frame"] = "Você pode usar o comando /resetui para restaurar todos os movedores. Pode usar este comando também para restaurar um movedor especifico escrevendo /resetui \nExemplo: /resetui Player Frame" --UnitFrames -L["Dead"] = true; +L["Dead"] = true L["Ghost"] = "Fantasma" L["Offline"] = "Desconectado" diff --git a/ElvUI/Locales/Russian_UI.lua b/ElvUI/Locales/Russian_UI.lua index 5ae6944..c828eff 100644 --- a/ElvUI/Locales/Russian_UI.lua +++ b/ElvUI/Locales/Russian_UI.lua @@ -1,7 +1,11 @@ -- Russian localization file for ruRU. local AceLocale = LibStub:GetLibrary("AceLocale-3.0") local L = AceLocale:NewLocale("ElvUI", "ruRU") -if not L then return; end +if not L then return end + +--GlobalStrings Override +GUILD_STATUS = "Данные гильдии" +PLAYER_STATUS = "Данные игрока" --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "Аддон %s не совместим с модулем %s ElvUI. Пожалуйста, выберите отключить ли несовместимый аддон или модуль." @@ -247,7 +251,7 @@ L["Target Frame"] = "Цель" --Also used in UnitFrames L["Target Powerbar"] = "Полоса ресурса цели" L["TargetTarget Frame"] = "Цель цели" --Also used in UnitFrames L["TargetTargetTarget Frame"] = "Цель цели цели" -L["Time Manager Frame"] = true; +L["Time Manager Frame"] = true L["Tooltip"] = "Подсказка" L["Watch Frame"] = "Задания" L["Weapons"] = "Оружие" diff --git a/ElvUI/Locales/Spanish_UI.lua b/ElvUI/Locales/Spanish_UI.lua index a099d02..a2530b8 100644 --- a/ElvUI/Locales/Spanish_UI.lua +++ b/ElvUI/Locales/Spanish_UI.lua @@ -1,8 +1,12 @@ -- Spanish localization file for esES and esMX. -local AceLocale = LibStub:GetLibrary("AceLocale-3.0") -local L = AceLocale:NewLocale("ElvUI", "esES") or AceLocale:NewLocale("ElvUI", "esMX") +local AceLocale = LibStub:GetLibrary("AceLocale-3.0"); +local L = AceLocale:NewLocale("ElvUI", "esES") or AceLocale:NewLocale("ElvUI", "esMX"); if not L then return end +--GlobalStrings Override +GUILD_STATUS = "Estado herm." +PLAYER_STATUS = "Estado del jugador" + --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "The addon %s is not compatible with ElvUI's %s module. Please select either the addon or the ElvUI module to disable." @@ -42,8 +46,8 @@ L["Vendor / Delete Grays"] = true --Chat L["AFK"] = "Ausente" -L["BG"] = true; -L["BGL"] = true; +L["BG"] = true +L["BGL"] = true L["DND"] = "Oc" L["G"] = "H" L["Invalid Target"] = "Objetivo Inválido" @@ -63,8 +67,8 @@ L["Avoidance Breakdown"] = "Desglose de Evasión" L["Character: "] = "Personaje: " L["Chest"] = "Pecho" L["Combat"] = "Combate" -L["Combat Time"] = true; -L["Coords"] = true; +L["Combat Time"] = true +L["Coords"] = true L["copperabbrev"] = "|cffeda55fc|r" L["Deficit:"] = "Déficit:" L["DPS"] = "DPS" @@ -74,33 +78,33 @@ L["Friends"] = "Amigos" L["Gold"] = "Oro" L["goldabbrev"] = "|cffffd700g|r" L["Hit"] = "Golpe" -L["Hold Shift + Right Click:"] = true; +L["Hold Shift + Right Click:"] = true L["Home Latency:"] = "Latencia Local:" L["HP"] = "Salud" L["HPS"] = "VPS" L["lvl"] = "Niv" -L["Miss Chance"] = true; +L["Miss Chance"] = true L["Mitigation By Level: "] = "Mitigación Por Nivel: " L["No Guild"] = "Sin Hermandad" L["Profit:"] = "Ganancia:" L["Realm time:"] = "Hora del reino:" -L["Reload UI"] = true; +L["Reload UI"] = true L["Reset Data: Hold Shift + Right Click"] = "Restablecer Datos: Mantén Shift + Clic Derecho" -L["Right Click: Reset CPU Usage"] = true; +L["Right Click: Reset CPU Usage"] = true L["Saved Raid(s)"] = "Banda(s) Guardada(s)" L["Server: "] = "Servidor: " L["Session:"] = "Sesión:" L["silverabbrev"] = "|cffc7c7cfs|r" L["SP"] = "PH" -L["Spell/Heal Power"] = true; +L["Spell/Heal Power"] = true L["Spent:"] = "Gastada:" L["Stats For:"] = "Estadísticas para:" -L["System"] = true; +L["System"] = true L["Total CPU:"] = "CPU Total:" L["Total Memory:"] = "Memoria Total:" L["Total: "] = "Total: " L["Unhittable:"] = "Imbatible:" -L["Wintergrasp"] = true; +L["Wintergrasp"] = true --DebugTools L["%s: %s tried to call the protected function '%s'."] = "%s: %s intentó llamar a la función protegida '%s'." @@ -121,7 +125,7 @@ L["Your profile was successfully recieved by the player."] = "Tu perfil ha sido --Install L["Aura Bars & Icons"] = "Barras de Auras e Iconos" L["Auras Set"] = "Auras Configuradas" -L["Auras"] = true; +L["Auras"] = true L["Caster DPS"] = "DPS Hechizos" L["Chat Set"] = "Chat Configurado" L["Choose a theme layout you wish to use for your initial setup."] = "Elige un tema de distribución para usar en tu configuración inicial." @@ -187,10 +191,10 @@ L["Bars"] = "Barras" L["Calendar"] = "Calendario" L["Can't Roll"] = "No puede tirar dados" L["Disband Group"] = "Disolver Grupo" -L["Empty Slot"] = true; +L["Empty Slot"] = true L["Enable"] = "Habilitar" L["Experience"] = "Experiencia" -L["Farm Mode"] = true; +L["Farm Mode"] = true L["Fishy Loot"] = "Botín Sospechoso" L["Left Click:"] = "Click Izquierdo" L["Mouse"] = "Ratón" @@ -224,7 +228,7 @@ L["Loot Frame"] = "Marco de Botín" L["MA Frames"] = "Marcos de AP" L["Micro Bar"] = "Micro Barra" L["Minimap"] = "Minimapa" -L["MirrorTimer"] = true; +L["MirrorTimer"] = true L["MT Frames"] = "Marcos de TP" L["Party Frames"] = "Marco de Grupo" L["Pet Bar"] = "Barra de Mascota" @@ -247,10 +251,10 @@ L["Target Frame"] = "Marco de Objetivo" L["Target Powerbar"] = "Barra de Poder del Objetivo" L["TargetTarget Frame"] = "Marco de Objetivo de Objetivo" L["TargetTargetTarget Frame"] = "Marco del Objetivo del Objetivo del Objetivo" -L["Time Manager Frame"] = true; +L["Time Manager Frame"] = true L["Tooltip"] = "Descripción Emergente" -L["Watch Frame"] = true; -L["Weapons"] = true; +L["Watch Frame"] = true +L["Weapons"] = true L["DESC_MOVERCONFIG"] = "Movers unlocked. Move them now and click Lock when you are done./nOptions:/nShift + RightClick - Hides mover temporarily./nCtrl + RightClick - Resets mover position to default." --Plugin Installer @@ -289,7 +293,7 @@ L["Track"] = "Seguim." L["A setting you have changed will change an option for this character only. This setting that you have changed will be uneffected by changing user profiles. Changing this setting requires that you reload your User Interface."] = "La opción que has cambiado se aplicará sólo para este personaje. Esta opción no se verá alterada al cambiar el perfil de usuario. Cambiar esta opción requiere que recargues tu Interfaz de Usuario." L["Accepting this will reset your Filter Priority lists for all auras on NamePlates. Are you sure?"] = true L["Accepting this will reset your Filter Priority lists for all auras on UnitFrames. Are you sure?"] = true -L["Are you sure you want to apply this font to all ElvUI elements?"] = true; +L["Are you sure you want to apply this font to all ElvUI elements?"] = true L["Are you sure you want to disband the group?"] = "¿Estás seguro que quieres deshacer el grupo?" L["Are you sure you want to reset all the settings on this profile?"] = "¿Estás seguro que deseas restablecer todos los ajustes de este perfil?" L["Are you sure you want to reset every mover back to it's default position?"] = "¿Estás seguro que quieres resetear cada fijador a su posición por defecto?" @@ -341,6 +345,6 @@ L["You can toggle the microbar by using your middle mouse button on the minimap L["You can use the /resetui command to reset all of your movers. You can also use the command to reset a specific mover, /resetui .\nExample: /resetui Player Frame"] = "Puedes usar el commando /resetui para restablecer todos tus fijadores. También puedes usar el comando para restablecer alguno en específico, /resetui . PE: /resetui Player Frame" --UnitFrames -L["Dead"] = true; +L["Dead"] = true L["Ghost"] = "Fantasma" L["Offline"] = "Fuera de Línea" diff --git a/ElvUI/Locales/Taiwanese_UI.lua b/ElvUI/Locales/Taiwanese_UI.lua index d3eb4c2..479bb6b 100644 --- a/ElvUI/Locales/Taiwanese_UI.lua +++ b/ElvUI/Locales/Taiwanese_UI.lua @@ -3,6 +3,10 @@ local AceLocale = LibStub:GetLibrary("AceLocale-3.0") local L = AceLocale:NewLocale("ElvUI", "zhTW") if not L then return end +--GlobalStrings Override +GUILD_STATUS = "公會狀態" +PLAYER_STATUS = "玩家狀態" + --*_ADDON locales L["INCOMPATIBLE_ADDON"] = "插件 %s 與 ElvUI 的 %s 模組不相容。請停用不相容的插件,或停用相關的模組." @@ -42,8 +46,8 @@ L["Vendor / Delete Grays"] = true --Chat L["AFK"] = "暫離" --Also used in datatexts and tooltip -L["BG"] = true; -L["BGL"] = true; +L["BG"] = true +L["BGL"] = true L["DND"] = "忙碌" --Also used in datatexts and tooltip L["G"] = "公會" L["Invalid Target"] = "無效的目標" @@ -63,8 +67,8 @@ L["Avoidance Breakdown"] = "免傷統計" L["Character: "] = "角色: " L["Chest"] = "胸部" L["Combat"] = "戰鬥" -L["Combat Time"] = true; -L["Coords"] = true; +L["Combat Time"] = true +L["Coords"] = true L["copperabbrev"] = "|cffeda55f銅|r" --Also used in Bags L["Deficit:"] = "赤字:" L["DPS"] = "傷害輸出" @@ -79,28 +83,28 @@ L["Home Latency:"] = "本機延遲:" L["HP"] = "生命值" L["HPS"] = "治療輸出" L["lvl"] = "等級" -L["Miss Chance"] = true; +L["Miss Chance"] = true L["Mitigation By Level: "] = "等級減傷: " L["No Guild"] = "沒有公會" L["Profit:"] = "利潤: " L["Realm time:"] = "伺服器時間:" -L["Reload UI"] = true; +L["Reload UI"] = true L["Reset Data: Hold Shift + Right Click"] = "重置數據: 按住 Shift + 右鍵點擊" -L["Right Click: Reset CPU Usage"] = true; +L["Right Click: Reset CPU Usage"] = true L["Saved Raid(s)"] = "已有進度的副本" L["Server: "] = "伺服器: " L["Session:"] = "本次登入:" L["silverabbrev"] = "|cffc7c7cf銀|r" --Also used in Bags L["SP"] = "法術能量" -L["Spell/Heal Power"] = true; +L["Spell/Heal Power"] = true L["Spent:"] = "花費:" L["Stats For:"] = "統計:" -L["System"] = true; +L["System"] = true L["Total CPU:"] = "CPU佔用" L["Total Memory:"] = "總記憶體:" L["Total: "] = "合計: " L["Unhittable:"] = "未命中:" -L["Wintergrasp"] = true; +L["Wintergrasp"] = true --DebugTools L["%s: %s tried to call the protected function '%s'."] = "%s: %s 嘗試調用保護函數'%s'." @@ -187,10 +191,10 @@ L["Bars"] = "條" --Also used in UnitFrames L["Calendar"] = "日曆" L["Can't Roll"] = "無法需求此裝備" L["Disband Group"] = "解散隊伍" -L["Empty Slot"] = true; +L["Empty Slot"] = true L["Enable"] = "啟用" --Doesn't fit a section since it's used a lot of places L["Experience"] = "經驗/聲望條" -L["Farm Mode"] = true; +L["Farm Mode"] = true L["Fishy Loot"] = "貪婪" L["Left Click:"] = "滑鼠左鍵:" --layout\layout.lua L["Mouse"] = "滑鼠" @@ -247,10 +251,10 @@ L["Target Frame"] = "目標框架" --Also used in UnitFrames L["Target Powerbar"] = "目標能量條" L["TargetTarget Frame"] = "目標的目標框架" --Also used in UnitFrames L["TargetTargetTarget Frame"] = "目標的目標的目標框架" -L["Time Manager Frame"] = true; +L["Time Manager Frame"] = true L["Tooltip"] = "浮動提示" -L["Watch Frame"] = true; -L["Weapons"] = true; +L["Watch Frame"] = true +L["Weapons"] = true L["DESC_MOVERCONFIG"] = "Movers unlocked. Move them now and click Lock when you are done./nOptions:/nShift + RightClick - Hides mover temporarily./nCtrl + RightClick - Resets mover position to default." --Plugin Installer