diff --git a/Options/Options.lua b/Options/Options.lua index 0bfc9db..e1fac65 100644 --- a/Options/Options.lua +++ b/Options/Options.lua @@ -1,5 +1,4 @@ local L = LibStub("AceLocale-3.0"):GetLocale("Bartender4") -local FAQ = LibStub("AceLocale-3.0"):GetLocale("Bartender4_FAQ") local AceConfigDialog = LibStub("AceConfigDialog-3.0") @@ -196,7 +195,7 @@ local function getOptions() args = { faq = { type = "description", - name = FAQ["FAQ_TEXT"], + name = L["FAQ_TEXT"], }, }, }, diff --git a/locale/Babelfish.lua b/locale/Babelfish.lua index f25fe89..2ddcd74 100644 --- a/locale/Babelfish.lua +++ b/locale/Babelfish.lua @@ -44,25 +44,7 @@ local files = { "Options/VehicleBar.lua", } ---[[ - The Language your addon was originally written in -]] -local baseLocale = "enUS" - ---[[ - The supported Languages - -- DO NOT INCLUDE the base locale here! -]] -local locale = { - "deDE", - "frFR", - "esES", - "esMX", - "zhCN", - "zhTW", - "koKR", - "ruRU" -} +local out = "Strings.lua" -- CODE -- local strings = {} @@ -83,54 +65,9 @@ local work = {} for k,v in pairs(strings) do table.insert(work, k) end table.sort(work) -local AceLocaleHeader = "local L =" -local BabbleFishHeader = "L = {} -- " - -local function replaceHeader(content) - return content:gsub(AceLocaleHeader, BabbleFishHeader):gsub("\\", "\\\\"):gsub("\\\"", "\\\\\"") -end - -local localizedStrings = {} - -table.insert(locale, baseLocale) --- load existing data from locale files -for idx, lang in ipairs(locale) do - local file = io.open(lang .. ".lua", "r") - assert(file, "Could not open ".. lang .. ".lua for reading") - local content = file:read("*all") - content = replaceHeader(content) - assert(loadstring(content))() - localizedStrings[lang] = L - file:close() -end - -- Write locale files -for idx, lang in ipairs(locale) do - local file = io.open(lang .. ".lua", "w") - assert(file, "Could not open ".. lang .. ".lua for writing") - file:write("-- Generated by Babelfish script, do not add strings manually, only translate existing strings.\n") - if lang == baseLocale then - file:write("-- This is the base locale; values can be \"true\" so they default to their key, or any string to override that behaviour.\n") - file:write(string.format("local L = LibStub(\"AceLocale-3.0\"):NewLocale(\"%s\", \"%s\", true)\n", localeName, lang)) - file:write("\n") - else - file:write("-- Please make sure to save the file as UTF-8, BUT WITHOUT THE UTF-8 BOM HEADER; ¶\n") - file:write(string.format("local L = LibStub(\"AceLocale-3.0\"):NewLocale(\"%s\", \"%s\")\n", localeName, lang)) - file:write("if not L then return end\n") - end - file:write("\n") - local L = localizedStrings[lang] - for idx, match in ipairs(work) do - if type(L[match]) == "string" then - file:write(string.format("L[\"%s\"] = \"%s\"\n", match, L[match])) - else - if lang ~= baseLocale then - local value = type(localizedStrings[baseLocale][match]) == "string" and localizedStrings[baseLocale][match] or "true" - file:write(string.format("-- L[\"%s\"] = %s\n", match, value)) - else - file:write(string.format("L[\"%s\"] = true\n", match)) - end - end - end - file:close() +local file = io.open(out, "w") +for idx, match in ipairs(work) do + file:write(string.format("L[\"%s\"] = true\n", match)) end +file:close() diff --git a/locale/FAQ.lua b/locale/FAQ.lua deleted file mode 100644 index 82bc41b..0000000 --- a/locale/FAQ.lua +++ /dev/null @@ -1,173 +0,0 @@ -local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4_FAQ", "enUS", true) -if not L then return end - -L["FAQ_TEXT"] = [[ -|cffffd200 -I just installed Bartender4, but my keybindings do not show up on the buttons/do not work entirely. -|r -Bartender4 only converts the bindings of Bar1 to be directly usable, all other Bars will have to be re-bound to the Bartender4 keys. A direct indicator if your key-bindings are setup correctly is the hotkey display on the buttons. If the key-bindings shows correctly on your button, everything should work fine as well. - -|cffffd200 -How do I change the Bartender4 Keybindings then? -|r -Until some sort of quick-access menu is put in (Minimap/FuBar/etc.), you will have to use the |cffffff78/kb|r chat command to open the keyBound control. - -Once open, simply hover the button you want to bind, and press the key you want to be bound to that button. The keyBound tooltip and on-screen status will inform you about already existing bindings to that button, and the success of your binding attempt. - -|cffffd200 -I've found a bug! Where do I report it? -|r -You can report bugs or give suggestions at |cffffff78http://forums.wowace.com/showthread.php?t=12513|r - -Alternatively, you can also find us on |cffffff78irc://irc.freenode.org/wowace|r - -When reporting a bug, make sure you include the |cffffff78steps on how to reproduce the bug|r, supply any |cffffff78error messages|r with stack traces if possible, give the |cffffff78revision number|r of Bartender4 the problem occured in and state whether you are using an |cffffff78English client or otherwise|r. - -|cffffd200 -Who wrote this cool addon? -|r -Bartender4 was written by Nevcairiel of EU-Antonidas, the author of Bartender3! -]] - --- koKR -local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4_FAQ", "koKR") -if L then - L["FAQ_TEXT"] = [[ -|cffffd200 -방금 Bartender4를 설치했습니다. 그런데 단축키가 표시되지 않거나 전부 작동하지 않아요. -|r -Bartender4는 직접적으로 사용할 수 있는 1번 바의 단축키만 적용됩니다. 다른 바는 Bartender4의 단축키에 영향 받습니다. 단축키를 정상적으로 설정했다면 버튼에 단축키가 표시됩니다. 버튼에 단축키가 전부 정상적으로 표시된다면 모든 기능은 정상적으로 작동할 것입니다. - -|cffffd200 -그러면 어떻게 Bartender4의 단축키를 변경할 수 있나요? -|r -미니맵/FuBar/기타의 빠른 설정이 적용되기 전까지 |cffffff78/kb|r 명령어를 사용해 단축키를 설정할 수 있습니다. - -간편하게 단축키를 설정하기 위해서 버튼위에 마우스를 올려 놓고 설정할 키를 누르면 됩니다. 이미 버튼에 단축키가 지정되어 있거나 단축키 지정이 성공적으로 완료되면 keyBound 툴팁과 화면에 이를 표시합니다. - -|cffffd200 -버그를 발견했습니다! 리포팅 할려면 어떻게 해야 하나요? -|r -버고 보고나 제안은 |cffffff78http://forums.wowace.com/showthread.php?t=12513|r로 하실 수 있습니다. - -또한 |cffffff78irc://irc.freenode.org/wowace|r에서 저희를 만나실 수 있습니다. - -버그를 리포팅 하실 때 가능하다면 |cffffff78영어 또는 기타|r의 클라이언트를 사용하는지의 상황과 더불어 |cffffff78버그가 어떻게 발생하는지 단계적 내용|r과 어떤 |cffffff78오류 메세지|r가 중복 기록되는지를 발생한 Bartender4의 |cffffff78revision 숫자|r를 포함하여 알려주시기 바랍니다. - -|cffffd200 -누가 이 멋진 애드온을 만들었나요? -|r -Bartender4는 EU-Antonidas의 Nevcairiel가 만들었습니다. 바로 Bartender3의 제작자입니다! -]] -end - --- zhCN -local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4_FAQ", "zhCN") -if L then - L["FAQ_TEXT"] = [[ -|cffffd200 -我刚刚安装了Bartender4,发现我的按键绑定似乎不太正确. -|r -Bartender4仅仅将主动作条1与Bartender4的动作条1关联起来,游戏其他动作条的设置不会转移到Bartender4上,不过您之前设置的快捷键仍然是有效的,它们仅仅是被隐藏了起来而已. - -|cffffd200 -我如何才能为Bartender4的按钮设置快捷键? -|r -在聊天窗口输入命令 /kb ,会弹出一个窗口,此时移动鼠标到您需要设置快捷键的按钮上,按下您需要设置的快捷键,屏幕上会显示出您将要绑定的按键,确认无误后关闭弹出的窗口即可. - -|cffffd200 -谁写的这个插件? -|r -Bartender4是欧洲服务器Antonidas的玩家 Nevcairiel 的作品, 该玩家同时也是Bartender3的作者! -简体中文版本是由7区加里索斯服务器联盟玩家 提珞德夜行 提供的. -]] -end - --- frFR -local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4_FAQ", "frFR") -if L then - L["FAQ_TEXT"] = [[ -|cffffd200 -Je viens juste d'installer Bartender4, mais mes raccourcis ne s'affichent pas sur les boutons ou ne fonctionnent pas tous. -|r -Bartender4 convertit uniquement les raccourcis de la barre 1 afin d'être immédiatement utilisable. Toutes les autres barres devront être réassociées avec les touches de Bartender4. Un moyen rapide de voir si vos raccourcis sont correctements définis est d'activer l'affichage des raccourcis sur les buttons. Si les raccourcis s'affichent correctement sur vos boutons, tout devrait bien fonctionner. - -|cffffd200 -Comment puis-je alors changer les raccourcis de Bartender4 ? -|r -En attendant qu'un accès rapide soit mis en place (minicarte/FuBar/etc.), il vous faut utiliser la commande |cffffff78/kb|r pour ouvrir le panneau de contrôle de keyBound. - -Une fois ouvert, survolez tout simplement le bouton que vous voulez configurer, et appuyez sur la touche à associer à ce bouton. La bulle d'aide de keyBound et le statut à l'écran vous informeront si des raccourcis existent déjà sur ce bouton et du succès de votre tentative d'association. - -|cffffd200 -J'ai trouvé un bogue ! Où puis-je le signaler ? -|r -Vous pouvez signaler des bogues ou faire des suggestions sur |cffffff78http://forums.wowace.com/showthread.php?t=12513|r - -Vous pouvez également nous trouver sur |cffffff78irc://irc.freenode.org/wowace|r - -Quand vous voulez signaler un bogue, essayez de fournir les |cffffff78étapes à suivre pour reproduire ce bogue|r, indiquez les |cffffff78messages d'erreur|r que vous avez vus, donnez le |cffffff78numéro de révision|r de Bartender4 où le problème a été découvert et précisez également la |cffffff78langue de votre jeu|r. - -|cffffd200 -Qui a écrit cet addon qui déchire ? -|r -Bartender4 a été écrit par Nevcairiel (EU-Antonidas), l'auteur de Bartender3 ! -]] -end --- ruRU by Alex -local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4_FAQ", "ruRU") -if L then - L["FAQ_TEXT"] = [[ -|cffffd200 -Я только что установил Bartender4, но мои сочетания клавиш не отображаются на кнопках/не работают вовсе. -|r -Bartender4 преобразовывает только сочетания клавиш для панели №1, клавиши для всех остальных панелей должны быть переназначены на панели Bartender4. Первый признак того, что все ваши комбинации кклавиш настроены правильно - это отображение сочетаний клавиш на кнопках. Если они отображаются верно, то всё должно работать нормально. - -|cffffd200 -И каким образом я могу изменить назначенные клавиши для Bartender4? -|r -До тех пор пока я не сделаю какого-либо удобного меню (Minimap/FuBar/итд.) вам придётся использовать команду |cffffff78/kb|r для сопоставления клавиш кнопкам. - -Как только вы выполните эту команду - просто неведите указатель мыши на нужную кнопку и нажмите желаемое сочетание клавиш на клавиатуре. Всплывающая подсказка покажет вам уже назначенные для этой кнопки комбинации клавиш, равно как и результат ваших действий. - -|cffffd200 -Я нашел ошибку! Куда мне послать её описание ? -|r -Вы можете сообщить о найденных ошибках или своих предложениях на странице |cffffff78http://forums.wowace.com/showthread.php?t=12513|r - -Также вы можете найти нас на канале |cffffff78irc://irc.freenode.org/wowace|r - -При сообщении об ошибке убедитесь, что вы указали |cffffff78действия, необходимые для воспроизведения ошибки|r, а также |cffffff78сообщения об ошибках|r и содержимое стека (если есть). Укажите |cffffff78номер сборки|r Bartender4 с которым у вас возникла проблема и |cffffff78язык используемого клиента|r. - -|cffffd200 -Кто написал этот клёвый аддон? -|r -Bartender4 написал Nevcairiel с EU-Antonidas, автор Bartender3! -]] -end - --- zhTW -local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4_FAQ", "zhTW") -if L then - L["FAQ_TEXT"] = [[ -|cffffd200 -我剛剛安裝了Bartender4,發現我的按鍵綁定似乎不太正確. -|r -Bartender4只是把動作條1與Bartender4的動作條1關聯起來,遊戲其他動作條的設置不會轉移到Bartender4上,不過您之前設置的快捷鍵仍然是有效的,它們只是被隱藏了起來而已. - -|cffffd200 -我如何才能為Bartender4的按鈕設置快捷鍵? -|r -在聊天窗口輸入命令 /kb ,會彈出一個窗口,此時移動鼠標到您需要設置快捷鍵的按鈕上,按下您需要設置的快捷鍵,屏幕上會顯示出您將要綁定的按鍵,確認無誤後關閉彈出的窗口即可. - -|cffffd200 -誰人製作這超酷的插件? -|r -Bartender4是歐服Antonidas的玩家 Nevcairiel 的作品, 也是Bartender3的原作者! - -|cffffd200 -誰人那麼無聊做這些艱難的中文翻譯? -|r -|cffffff78天明|r 眾星之子 -]] -end diff --git a/locale/deDE.lua b/locale/deDE.lua index b248a92..188d870 100644 --- a/locale/deDE.lua +++ b/locale/deDE.lua @@ -1,151 +1,8 @@ --- Generated by Babelfish script, do not add strings manually, only translate existing strings. --- Please make sure to save the file as UTF-8, BUT WITHOUT THE UTF-8 BOM HEADER; ¶ +-- Bartender4 Locale +-- Please use the Localization App on WoWAce to Update this +-- http://www.wowace.com/projects/bartender4/localization/ ;¶ + local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "deDE") if not L then return end --- L["ALT"] = true --- L["ActionBar Paging"] = true --- L["Alignment"] = true --- L["Alpha"] = true --- L["Always Hide"] = true --- L["Auto-Assist"] = true --- L["Bag Bar"] = true --- L["Bar %s"] = true --- L["Bar Snapping"] = true --- L["Bar Style & Layout"] = true --- L["Bars"] = true --- L["Bars unlocked. Move them now and click Lock when you are done."] = true --- L["Bartender4"] = true --- L["Button %s"] = true --- L["Button Grid"] = true --- L["Button Lock"] = true --- L["Button Look"] = true --- L["Button Tooltip"] = true --- L["Buttons"] = true --- L["CTRL"] = true --- L["Click-Through"] = true --- L["Colors"] = true --- L["Configure the Stance Bar"] = true --- L["Configure Bar %s"] = true --- L["Configure actionbar paging when the %s key is down."] = true --- L["Configure how the Out of Range Indicator should display on the buttons."] = true --- L["Configure the Bag Bar"] = true --- L["Configure the Button Tooltip."] = true --- L["Configure the Fade Out Alpha"] = true --- L["Configure the Fade Out Delay"] = true --- L["Configure the Micro Menu"] = true --- L["Configure the Pet Bar"] = true --- L["Configure the Reputation Bar"] = true --- L["Configure the VehicleBar"] = true --- L["Configure the XP Bar"] = true --- L["Configure the alpha of the bar."] = true --- L["Configure the padding of the buttons."] = true --- L["Configure the scale of the bar."] = true --- L["Copy Conditionals"] = true --- L["Create a copy of the auto-generated conditionals in the custom configuration as a base template."] = true --- L["Custom Conditionals"] = true --- L["Default Bar State"] = true --- L["Disable any reaction to mouse events on this bar, making the bar click-through."] = true --- L["Disabled"] = true --- L["Disabled in Combat"] = true --- L["Don't Page"] = true --- L["Enable Auto-Assist for this bar.\n Auto-Assist will automatically try to cast on your target's target if your target is no valid target for the selected spell."] = true --- L["Enable Bar Switching based on the actionbar controls provided by the game. \nSee Blizzard Key Bindings for assignments - Usually Shift-Mouse Wheel and Shift+1 - Shift+6."] = true --- L["Enable State-based Button Swaping"] = true --- L["Enable the Bag Bar"] = true --- L["Enable the FadeOut mode"] = true --- L["Enable the Micro Menu"] = true --- L["Enable the PetBar"] = true --- L["Enable the Reputation Bar"] = true --- L["Enable the StanceBar"] = true --- L["Enable the Vehicle Bar"] = true --- L["Enable the XP Bar"] = true --- L["Enable the use of a custom condition, disabling all of the above."] = true --- L["Enable/Disable the bar."] = true --- L["Enabled"] = true --- L["FAQ"] = true --- L["Fade Out"] = true --- L["Fade Out Alpha"] = true --- L["Fade Out Delay"] = true --- L["Focus-Cast Modifier"] = true --- L["Focus-Cast by modifier"] = true --- L["Frequently Asked Questions"] = true --- L["Full Button Mode"] = true --- L["General Settings"] = true --- L["Hide Hotkey"] = true --- L["Hide Macro Text"] = true --- L["Hide in Combat"] = true --- L["Hide in Stance/Form"] = true --- L["Hide on Vehicle"] = true --- L["Hide out of Combat"] = true --- L["Hide the Hotkey on the buttons of this bar."] = true --- L["Hide the Macro Text on the buttons of this bar."] = true --- L["Hide this bar in a specific Stance or Form."] = true --- L["Hide this bar when you are possessing a NPC."] = true --- L["Hide this bar when you are riding on a vehicle."] = true --- L["Hide this bar when you have a pet."] = true --- L["Hide this bar when you have no pet."] = true --- L["Hide when Possessing"] = true --- L["Hide with pet"] = true --- L["Hide without pet"] = true --- L["Hotkey Mode"] = true --- L["Key Bindings"] = true --- L["Keyring"] = true --- L["Lock"] = true --- L["Lock all bars."] = true --- L["Lock the buttons."] = true --- L["Micro Menu"] = true --- L["Minimap Icon"] = true --- L["Modifier Based Switching"] = true --- L["No Display"] = true --- L["None"] = true --- L["Note: Enabling Custom Conditionals will disable all of the above settings!"] = true --- L["Number of buttons."] = true --- L["Number of rows."] = true --- L["One Bag"] = true --- L["Only show one Bag Button in the BagBar."] = true --- L["Out of Mana Indicator"] = true --- L["Out of Range Indicator"] = true --- L["Padding"] = true --- L["Page %2d"] = true --- L["Pet Bar"] = true --- L["Possess Bar"] = true --- L["Reputation Bar"] = true --- L["Right-click Self-Cast"] = true --- L["Rows"] = true --- L["SHIFT"] = true --- L["Scale"] = true --- L["Select the Focus-Cast Modifier"] = true --- L["Select the Self-Cast Modifier"] = true --- L["Self-Cast Modifier"] = true --- L["Self-Cast by modifier"] = true --- L["Show a Icon to open the config at the Minimap"] = true --- L["Show the keyring button."] = true --- L["Specify the Color of the Out of Mana Indicator"] = true --- L["Specify the Color of the Out of Range Indicator"] = true --- L["Stance Bar"] = true --- L["Stance Configuration"] = true --- L["State Configuration"] = true --- L["Switch this bar to the Possess Bar when possessing a npc (eg. Mind Control)"] = true --- L["Switch to key-binding mode"] = true --- L["The Alignment menu is still on the TODO.\n\nAs a quick preview of whats planned:\n\n\t- Absolute and relative Bar Positioning\n\t- Bars \"snapping\" together and building clusters"] = true --- L["The bar default is to be visible all the time, you can configure conditions here to control when the bar should be hidden."] = true --- L["The default behaviour of this bar when no state-based paging option affects it."] = true --- L["This bar will be hidden once you enter combat."] = true --- L["This bar will be hidden whenever you are not in combat."] = true --- L["Toggle Button Zoom\nFor more style options you need to install ButtonFacade"] = true --- L["Toggle the button grid."] = true --- L["Toggle the use of the modifier-based focus-cast functionality."] = true --- L["Toggle the use of the modifier-based self-cast functionality."] = true --- L["Toggle the use of the right-click self-cast functionality."] = true --- L["Use Custom Condition"] = true --- L["Vehicle Bar"] = true --- L["VehicleBar"] = true --- L["Visibility"] = true --- L["XP Bar"] = true --- L["You can set the bar to be always hidden, if you only wish to access it using key-bindings."] = true --- L["You can use any macro conditionals in the custom string, using \"show\" and \"hide\" as values.\n\nExample: [combat]hide;show"] = true --- L["You can use any macro conditionals in the custom string, using the number of the bar as target value.\nExample: [form:1]9;0"] = true --- L["Zoom"] = true --- L["|cffffff00Click|r to toggle bar lock"] = true --- L["|cffffff00Right-click|r to open the options menu"] = true +--@localization(locale="deDE", format="lua_additive_table", handle-unlocalized="comment")@ diff --git a/locale/enUS.lua b/locale/enUS.lua index 5629f08..fcee38e 100644 --- a/locale/enUS.lua +++ b/locale/enUS.lua @@ -1,151 +1,12 @@ --- Generated by Babelfish script, do not add strings manually, only translate existing strings. --- This is the base locale; values can be "true" so they default to their key, or any string to override that behaviour. -local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "enUS", true) +-- Bartender4 Locale +-- Please use the Localization App on WoWAce to Update this +-- http://www.wowace.com/projects/bartender4/localization/ ;¶ +local debug = false +--@debug@ +debug = true +--@end-debug@ -L["ALT"] = true -L["ActionBar Paging"] = true -L["Alignment"] = true -L["Alpha"] = true -L["Always Hide"] = true -L["Auto-Assist"] = true -L["Bag Bar"] = true -L["Bar %s"] = true -L["Bar Snapping"] = true -L["Bar Style & Layout"] = true -L["Bars"] = true -L["Bars unlocked. Move them now and click Lock when you are done."] = true -L["Bartender4"] = true -L["Button %s"] = true -L["Button Grid"] = true -L["Button Lock"] = true -L["Button Look"] = true -L["Button Tooltip"] = true -L["Buttons"] = true -L["CTRL"] = true -L["Click-Through"] = true -L["Colors"] = true -L["Configure the Stance Bar"] = true -L["Configure Bar %s"] = true -L["Configure actionbar paging when the %s key is down."] = true -L["Configure how the Out of Range Indicator should display on the buttons."] = true -L["Configure the Bag Bar"] = true -L["Configure the Button Tooltip."] = true -L["Configure the Fade Out Alpha"] = true -L["Configure the Fade Out Delay"] = true -L["Configure the Micro Menu"] = true -L["Configure the Pet Bar"] = true -L["Configure the Reputation Bar"] = true -L["Configure the VehicleBar"] = true -L["Configure the XP Bar"] = true -L["Configure the alpha of the bar."] = true -L["Configure the padding of the buttons."] = true -L["Configure the scale of the bar."] = true -L["Copy Conditionals"] = true -L["Create a copy of the auto-generated conditionals in the custom configuration as a base template."] = true -L["Custom Conditionals"] = true -L["Default Bar State"] = true -L["Disable any reaction to mouse events on this bar, making the bar click-through."] = true -L["Disabled"] = true -L["Disabled in Combat"] = true -L["Don't Page"] = true -L["Enable Auto-Assist for this bar.\n Auto-Assist will automatically try to cast on your target's target if your target is no valid target for the selected spell."] = true -L["Enable Bar Switching based on the actionbar controls provided by the game. \nSee Blizzard Key Bindings for assignments - Usually Shift-Mouse Wheel and Shift+1 - Shift+6."] = true -L["Enable State-based Button Swaping"] = true -L["Enable the Bag Bar"] = true -L["Enable the FadeOut mode"] = true -L["Enable the Micro Menu"] = true -L["Enable the PetBar"] = true -L["Enable the Reputation Bar"] = true -L["Enable the StanceBar"] = true -L["Enable the Vehicle Bar"] = true -L["Enable the XP Bar"] = true -L["Enable the use of a custom condition, disabling all of the above."] = true -L["Enable/Disable the bar."] = true -L["Enabled"] = true -L["FAQ"] = true -L["Fade Out"] = true -L["Fade Out Alpha"] = true -L["Fade Out Delay"] = true -L["Focus-Cast Modifier"] = true -L["Focus-Cast by modifier"] = true -L["Frequently Asked Questions"] = true -L["Full Button Mode"] = true -L["General Settings"] = true -L["Hide Hotkey"] = true -L["Hide Macro Text"] = true -L["Hide in Combat"] = true -L["Hide in Stance/Form"] = true -L["Hide on Vehicle"] = true -L["Hide out of Combat"] = true -L["Hide the Hotkey on the buttons of this bar."] = true -L["Hide the Macro Text on the buttons of this bar."] = true -L["Hide this bar in a specific Stance or Form."] = true -L["Hide this bar when you are possessing a NPC."] = true -L["Hide this bar when you are riding on a vehicle."] = true -L["Hide this bar when you have a pet."] = true -L["Hide this bar when you have no pet."] = true -L["Hide when Possessing"] = true -L["Hide with pet"] = true -L["Hide without pet"] = true -L["Hotkey Mode"] = true -L["Key Bindings"] = true -L["Keyring"] = true -L["Lock"] = true -L["Lock all bars."] = true -L["Lock the buttons."] = true -L["Micro Menu"] = true -L["Minimap Icon"] = true -L["Modifier Based Switching"] = true -L["No Display"] = true -L["None"] = true -L["Note: Enabling Custom Conditionals will disable all of the above settings!"] = true -L["Number of buttons."] = true -L["Number of rows."] = true -L["One Bag"] = true -L["Only show one Bag Button in the BagBar."] = true -L["Out of Mana Indicator"] = true -L["Out of Range Indicator"] = true -L["Padding"] = true -L["Page %2d"] = true -L["Pet Bar"] = true -L["Possess Bar"] = true -L["Reputation Bar"] = true -L["Right-click Self-Cast"] = true -L["Rows"] = true -L["SHIFT"] = true -L["Scale"] = true -L["Select the Focus-Cast Modifier"] = true -L["Select the Self-Cast Modifier"] = true -L["Self-Cast Modifier"] = true -L["Self-Cast by modifier"] = true -L["Show a Icon to open the config at the Minimap"] = true -L["Show the keyring button."] = true -L["Specify the Color of the Out of Mana Indicator"] = true -L["Specify the Color of the Out of Range Indicator"] = true -L["Stance Bar"] = true -L["Stance Configuration"] = true -L["State Configuration"] = true -L["Switch this bar to the Possess Bar when possessing a npc (eg. Mind Control)"] = true -L["Switch to key-binding mode"] = true -L["The Alignment menu is still on the TODO.\n\nAs a quick preview of whats planned:\n\n\t- Absolute and relative Bar Positioning\n\t- Bars \"snapping\" together and building clusters"] = true -L["The bar default is to be visible all the time, you can configure conditions here to control when the bar should be hidden."] = true -L["The default behaviour of this bar when no state-based paging option affects it."] = true -L["This bar will be hidden once you enter combat."] = true -L["This bar will be hidden whenever you are not in combat."] = true -L["Toggle Button Zoom\nFor more style options you need to install ButtonFacade"] = true -L["Toggle the button grid."] = true -L["Toggle the use of the modifier-based focus-cast functionality."] = true -L["Toggle the use of the modifier-based self-cast functionality."] = true -L["Toggle the use of the right-click self-cast functionality."] = true -L["Use Custom Condition"] = true -L["Vehicle Bar"] = true -L["VehicleBar"] = true -L["Visibility"] = true -L["XP Bar"] = true -L["You can set the bar to be always hidden, if you only wish to access it using key-bindings."] = true -L["You can use any macro conditionals in the custom string, using \"show\" and \"hide\" as values.\n\nExample: [combat]hide;show"] = true -L["You can use any macro conditionals in the custom string, using the number of the bar as target value.\nExample: [form:1]9;0"] = true -L["Zoom"] = true -L["|cffffff00Click|r to toggle bar lock"] = true -L["|cffffff00Right-click|r to open the options menu"] = true +local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "enUS", true, debug) + +--@localization(locale="enUS", format="lua_additive_table", same-key-is-true=true)@ diff --git a/locale/esES.lua b/locale/esES.lua index 93923fd..01db8c1 100644 --- a/locale/esES.lua +++ b/locale/esES.lua @@ -1,151 +1,8 @@ --- Generated by Babelfish script, do not add strings manually, only translate existing strings. --- Please make sure to save the file as UTF-8, BUT WITHOUT THE UTF-8 BOM HEADER; ¶ +-- Bartender4 Locale +-- Please use the Localization App on WoWAce to Update this +-- http://www.wowace.com/projects/bartender4/localization/ ;¶ + local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "esES") if not L then return end --- L["ALT"] = true --- L["ActionBar Paging"] = true --- L["Alignment"] = true --- L["Alpha"] = true --- L["Always Hide"] = true --- L["Auto-Assist"] = true --- L["Bag Bar"] = true --- L["Bar %s"] = true --- L["Bar Snapping"] = true --- L["Bar Style & Layout"] = true --- L["Bars"] = true --- L["Bars unlocked. Move them now and click Lock when you are done."] = true --- L["Bartender4"] = true --- L["Button %s"] = true --- L["Button Grid"] = true --- L["Button Lock"] = true --- L["Button Look"] = true --- L["Button Tooltip"] = true --- L["Buttons"] = true --- L["CTRL"] = true --- L["Click-Through"] = true --- L["Colors"] = true --- L["Configure the Stance Bar"] = true --- L["Configure Bar %s"] = true --- L["Configure actionbar paging when the %s key is down."] = true --- L["Configure how the Out of Range Indicator should display on the buttons."] = true --- L["Configure the Bag Bar"] = true --- L["Configure the Button Tooltip."] = true --- L["Configure the Fade Out Alpha"] = true --- L["Configure the Fade Out Delay"] = true --- L["Configure the Micro Menu"] = true --- L["Configure the Pet Bar"] = true --- L["Configure the Reputation Bar"] = true --- L["Configure the VehicleBar"] = true --- L["Configure the XP Bar"] = true --- L["Configure the alpha of the bar."] = true --- L["Configure the padding of the buttons."] = true --- L["Configure the scale of the bar."] = true --- L["Copy Conditionals"] = true --- L["Create a copy of the auto-generated conditionals in the custom configuration as a base template."] = true --- L["Custom Conditionals"] = true --- L["Default Bar State"] = true --- L["Disable any reaction to mouse events on this bar, making the bar click-through."] = true --- L["Disabled"] = true --- L["Disabled in Combat"] = true --- L["Don't Page"] = true --- L["Enable Auto-Assist for this bar.\n Auto-Assist will automatically try to cast on your target's target if your target is no valid target for the selected spell."] = true --- L["Enable Bar Switching based on the actionbar controls provided by the game. \nSee Blizzard Key Bindings for assignments - Usually Shift-Mouse Wheel and Shift+1 - Shift+6."] = true --- L["Enable State-based Button Swaping"] = true --- L["Enable the Bag Bar"] = true --- L["Enable the FadeOut mode"] = true --- L["Enable the Micro Menu"] = true --- L["Enable the PetBar"] = true --- L["Enable the Reputation Bar"] = true --- L["Enable the StanceBar"] = true --- L["Enable the Vehicle Bar"] = true --- L["Enable the XP Bar"] = true --- L["Enable the use of a custom condition, disabling all of the above."] = true --- L["Enable/Disable the bar."] = true --- L["Enabled"] = true --- L["FAQ"] = true --- L["Fade Out"] = true --- L["Fade Out Alpha"] = true --- L["Fade Out Delay"] = true --- L["Focus-Cast Modifier"] = true --- L["Focus-Cast by modifier"] = true --- L["Frequently Asked Questions"] = true --- L["Full Button Mode"] = true --- L["General Settings"] = true --- L["Hide Hotkey"] = true --- L["Hide Macro Text"] = true --- L["Hide in Combat"] = true --- L["Hide in Stance/Form"] = true --- L["Hide on Vehicle"] = true --- L["Hide out of Combat"] = true --- L["Hide the Hotkey on the buttons of this bar."] = true --- L["Hide the Macro Text on the buttons of this bar."] = true --- L["Hide this bar in a specific Stance or Form."] = true --- L["Hide this bar when you are possessing a NPC."] = true --- L["Hide this bar when you are riding on a vehicle."] = true --- L["Hide this bar when you have a pet."] = true --- L["Hide this bar when you have no pet."] = true --- L["Hide when Possessing"] = true --- L["Hide with pet"] = true --- L["Hide without pet"] = true --- L["Hotkey Mode"] = true --- L["Key Bindings"] = true --- L["Keyring"] = true --- L["Lock"] = true --- L["Lock all bars."] = true --- L["Lock the buttons."] = true --- L["Micro Menu"] = true --- L["Minimap Icon"] = true --- L["Modifier Based Switching"] = true --- L["No Display"] = true --- L["None"] = true --- L["Note: Enabling Custom Conditionals will disable all of the above settings!"] = true --- L["Number of buttons."] = true --- L["Number of rows."] = true --- L["One Bag"] = true --- L["Only show one Bag Button in the BagBar."] = true --- L["Out of Mana Indicator"] = true --- L["Out of Range Indicator"] = true --- L["Padding"] = true --- L["Page %2d"] = true --- L["Pet Bar"] = true --- L["Possess Bar"] = true --- L["Reputation Bar"] = true --- L["Right-click Self-Cast"] = true --- L["Rows"] = true --- L["SHIFT"] = true --- L["Scale"] = true --- L["Select the Focus-Cast Modifier"] = true --- L["Select the Self-Cast Modifier"] = true --- L["Self-Cast Modifier"] = true --- L["Self-Cast by modifier"] = true --- L["Show a Icon to open the config at the Minimap"] = true --- L["Show the keyring button."] = true --- L["Specify the Color of the Out of Mana Indicator"] = true --- L["Specify the Color of the Out of Range Indicator"] = true --- L["Stance Bar"] = true --- L["Stance Configuration"] = true --- L["State Configuration"] = true --- L["Switch this bar to the Possess Bar when possessing a npc (eg. Mind Control)"] = true --- L["Switch to key-binding mode"] = true --- L["The Alignment menu is still on the TODO.\n\nAs a quick preview of whats planned:\n\n\t- Absolute and relative Bar Positioning\n\t- Bars \"snapping\" together and building clusters"] = true --- L["The bar default is to be visible all the time, you can configure conditions here to control when the bar should be hidden."] = true --- L["The default behaviour of this bar when no state-based paging option affects it."] = true --- L["This bar will be hidden once you enter combat."] = true --- L["This bar will be hidden whenever you are not in combat."] = true --- L["Toggle Button Zoom\nFor more style options you need to install ButtonFacade"] = true --- L["Toggle the button grid."] = true --- L["Toggle the use of the modifier-based focus-cast functionality."] = true --- L["Toggle the use of the modifier-based self-cast functionality."] = true --- L["Toggle the use of the right-click self-cast functionality."] = true --- L["Use Custom Condition"] = true --- L["Vehicle Bar"] = true --- L["VehicleBar"] = true --- L["Visibility"] = true --- L["XP Bar"] = true --- L["You can set the bar to be always hidden, if you only wish to access it using key-bindings."] = true --- L["You can use any macro conditionals in the custom string, using \"show\" and \"hide\" as values.\n\nExample: [combat]hide;show"] = true --- L["You can use any macro conditionals in the custom string, using the number of the bar as target value.\nExample: [form:1]9;0"] = true --- L["Zoom"] = true --- L["|cffffff00Click|r to toggle bar lock"] = true --- L["|cffffff00Right-click|r to open the options menu"] = true +--@localization(locale="esES", format="lua_additive_table", handle-unlocalized="comment")@ diff --git a/locale/esMX.lua b/locale/esMX.lua index 4ed9c2f..5a8643b 100644 --- a/locale/esMX.lua +++ b/locale/esMX.lua @@ -1,151 +1,8 @@ --- Generated by Babelfish script, do not add strings manually, only translate existing strings. --- Please make sure to save the file as UTF-8, BUT WITHOUT THE UTF-8 BOM HEADER; ¶ +-- Bartender4 Locale +-- Please use the Localization App on WoWAce to Update this +-- http://www.wowace.com/projects/bartender4/localization/ ;¶ + local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "esMX") if not L then return end --- L["ALT"] = true --- L["ActionBar Paging"] = true --- L["Alignment"] = true --- L["Alpha"] = true --- L["Always Hide"] = true --- L["Auto-Assist"] = true --- L["Bag Bar"] = true --- L["Bar %s"] = true --- L["Bar Snapping"] = true --- L["Bar Style & Layout"] = true --- L["Bars"] = true --- L["Bars unlocked. Move them now and click Lock when you are done."] = true --- L["Bartender4"] = true --- L["Button %s"] = true --- L["Button Grid"] = true --- L["Button Lock"] = true --- L["Button Look"] = true --- L["Button Tooltip"] = true --- L["Buttons"] = true --- L["CTRL"] = true --- L["Click-Through"] = true --- L["Colors"] = true --- L["Configure the Stance Bar"] = true --- L["Configure Bar %s"] = true --- L["Configure actionbar paging when the %s key is down."] = true --- L["Configure how the Out of Range Indicator should display on the buttons."] = true --- L["Configure the Bag Bar"] = true --- L["Configure the Button Tooltip."] = true --- L["Configure the Fade Out Alpha"] = true --- L["Configure the Fade Out Delay"] = true --- L["Configure the Micro Menu"] = true --- L["Configure the Pet Bar"] = true --- L["Configure the Reputation Bar"] = true --- L["Configure the VehicleBar"] = true --- L["Configure the XP Bar"] = true --- L["Configure the alpha of the bar."] = true --- L["Configure the padding of the buttons."] = true --- L["Configure the scale of the bar."] = true --- L["Copy Conditionals"] = true --- L["Create a copy of the auto-generated conditionals in the custom configuration as a base template."] = true --- L["Custom Conditionals"] = true --- L["Default Bar State"] = true --- L["Disable any reaction to mouse events on this bar, making the bar click-through."] = true --- L["Disabled"] = true --- L["Disabled in Combat"] = true --- L["Don't Page"] = true --- L["Enable Auto-Assist for this bar.\n Auto-Assist will automatically try to cast on your target's target if your target is no valid target for the selected spell."] = true --- L["Enable Bar Switching based on the actionbar controls provided by the game. \nSee Blizzard Key Bindings for assignments - Usually Shift-Mouse Wheel and Shift+1 - Shift+6."] = true --- L["Enable State-based Button Swaping"] = true --- L["Enable the Bag Bar"] = true --- L["Enable the FadeOut mode"] = true --- L["Enable the Micro Menu"] = true --- L["Enable the PetBar"] = true --- L["Enable the Reputation Bar"] = true --- L["Enable the StanceBar"] = true --- L["Enable the Vehicle Bar"] = true --- L["Enable the XP Bar"] = true --- L["Enable the use of a custom condition, disabling all of the above."] = true --- L["Enable/Disable the bar."] = true --- L["Enabled"] = true --- L["FAQ"] = true --- L["Fade Out"] = true --- L["Fade Out Alpha"] = true --- L["Fade Out Delay"] = true --- L["Focus-Cast Modifier"] = true --- L["Focus-Cast by modifier"] = true --- L["Frequently Asked Questions"] = true --- L["Full Button Mode"] = true --- L["General Settings"] = true --- L["Hide Hotkey"] = true --- L["Hide Macro Text"] = true --- L["Hide in Combat"] = true --- L["Hide in Stance/Form"] = true --- L["Hide on Vehicle"] = true --- L["Hide out of Combat"] = true --- L["Hide the Hotkey on the buttons of this bar."] = true --- L["Hide the Macro Text on the buttons of this bar."] = true --- L["Hide this bar in a specific Stance or Form."] = true --- L["Hide this bar when you are possessing a NPC."] = true --- L["Hide this bar when you are riding on a vehicle."] = true --- L["Hide this bar when you have a pet."] = true --- L["Hide this bar when you have no pet."] = true --- L["Hide when Possessing"] = true --- L["Hide with pet"] = true --- L["Hide without pet"] = true --- L["Hotkey Mode"] = true --- L["Key Bindings"] = true --- L["Keyring"] = true --- L["Lock"] = true --- L["Lock all bars."] = true --- L["Lock the buttons."] = true --- L["Micro Menu"] = true --- L["Minimap Icon"] = true --- L["Modifier Based Switching"] = true --- L["No Display"] = true --- L["None"] = true --- L["Note: Enabling Custom Conditionals will disable all of the above settings!"] = true --- L["Number of buttons."] = true --- L["Number of rows."] = true --- L["One Bag"] = true --- L["Only show one Bag Button in the BagBar."] = true --- L["Out of Mana Indicator"] = true --- L["Out of Range Indicator"] = true --- L["Padding"] = true --- L["Page %2d"] = true --- L["Pet Bar"] = true --- L["Possess Bar"] = true --- L["Reputation Bar"] = true --- L["Right-click Self-Cast"] = true --- L["Rows"] = true --- L["SHIFT"] = true --- L["Scale"] = true --- L["Select the Focus-Cast Modifier"] = true --- L["Select the Self-Cast Modifier"] = true --- L["Self-Cast Modifier"] = true --- L["Self-Cast by modifier"] = true --- L["Show a Icon to open the config at the Minimap"] = true --- L["Show the keyring button."] = true --- L["Specify the Color of the Out of Mana Indicator"] = true --- L["Specify the Color of the Out of Range Indicator"] = true --- L["Stance Bar"] = true --- L["Stance Configuration"] = true --- L["State Configuration"] = true --- L["Switch this bar to the Possess Bar when possessing a npc (eg. Mind Control)"] = true --- L["Switch to key-binding mode"] = true --- L["The Alignment menu is still on the TODO.\n\nAs a quick preview of whats planned:\n\n\t- Absolute and relative Bar Positioning\n\t- Bars \"snapping\" together and building clusters"] = true --- L["The bar default is to be visible all the time, you can configure conditions here to control when the bar should be hidden."] = true --- L["The default behaviour of this bar when no state-based paging option affects it."] = true --- L["This bar will be hidden once you enter combat."] = true --- L["This bar will be hidden whenever you are not in combat."] = true --- L["Toggle Button Zoom\nFor more style options you need to install ButtonFacade"] = true --- L["Toggle the button grid."] = true --- L["Toggle the use of the modifier-based focus-cast functionality."] = true --- L["Toggle the use of the modifier-based self-cast functionality."] = true --- L["Toggle the use of the right-click self-cast functionality."] = true --- L["Use Custom Condition"] = true --- L["Vehicle Bar"] = true --- L["VehicleBar"] = true --- L["Visibility"] = true --- L["XP Bar"] = true --- L["You can set the bar to be always hidden, if you only wish to access it using key-bindings."] = true --- L["You can use any macro conditionals in the custom string, using \"show\" and \"hide\" as values.\n\nExample: [combat]hide;show"] = true --- L["You can use any macro conditionals in the custom string, using the number of the bar as target value.\nExample: [form:1]9;0"] = true --- L["Zoom"] = true --- L["|cffffff00Click|r to toggle bar lock"] = true --- L["|cffffff00Right-click|r to open the options menu"] = true +--@localization(locale="esMX", format="lua_additive_table", handle-unlocalized="comment")@ diff --git a/locale/frFR.lua b/locale/frFR.lua index 725e9bb..f609d03 100644 --- a/locale/frFR.lua +++ b/locale/frFR.lua @@ -1,151 +1,8 @@ --- Generated by Babelfish script, do not add strings manually, only translate existing strings. --- Please make sure to save the file as UTF-8, BUT WITHOUT THE UTF-8 BOM HEADER; ¶ +-- Bartender4 Locale +-- Please use the Localization App on WoWAce to Update this +-- http://www.wowace.com/projects/bartender4/localization/ ;¶ + local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "frFR") if not L then return end -L["ALT"] = "ALT" -L["ActionBar Paging"] = "Page d'actions" -L["Alignment"] = "Alignement" -L["Alpha"] = "Transparence" -L["Always Hide"] = "Toujours cacher" -L["Auto-Assist"] = "Soutien auto." -L["Bag Bar"] = "Barre des sacs" -L["Bar %s"] = "%s|4ère:ème; barre" -L["Bar Snapping"] = "Barres collantes" -L["Bar Style & Layout"] = "Disposition & style de la barre" -L["Bars"] = "Barres" -L["Bars unlocked. Move them now and click Lock when you are done."] = "Barres déverrouillées. Déplacez-les maintenant et cliquez sur Verr. une fois que vous avez terminé." -L["Bartender4"] = "Bartender4" --- L["Button %s"] = true -L["Button Grid"] = "Grille des boutons" -L["Button Lock"] = "Verrouiller les boutons" -L["Button Look"] = "Look des boutons" -L["Button Tooltip"] = "Bulle d'aide des boutons" -L["Buttons"] = "Boutons" -L["CTRL"] = "CTRL" --- L["Click-Through"] = true -L["Colors"] = "Couleurs" -L["Configure the Stance Bar"] = "Configure la barre des postures." -L["Configure Bar %s"] = "Configure la %s|4ère:ème; barre." -L["Configure actionbar paging when the %s key is down."] = "Configure le changement de page quand la touche %s est enfoncée." -L["Configure how the Out of Range Indicator should display on the buttons."] = "Configure la façon dont l'indicateur Hors de portée est affiché sur les boutons." -L["Configure the Bag Bar"] = "Configure la barre des sacs." -L["Configure the Button Tooltip."] = "Configure la bulle d'aide des boutons." --- L["Configure the Fade Out Alpha"] = true --- L["Configure the Fade Out Delay"] = true -L["Configure the Micro Menu"] = "Configure le micro menu." -L["Configure the Pet Bar"] = "Configure la barre du familier." -L["Configure the Reputation Bar"] = "Configure la barre de réputation." --- L["Configure the VehicleBar"] = true -L["Configure the XP Bar"] = "Configure la barre d'expérience." -L["Configure the alpha of the bar."] = "Configure la transparence de la barre." -L["Configure the padding of the buttons."] = "Configure l'espacement entre les boutons." -L["Configure the scale of the bar."] = "Configure l'échelle de la barre." -L["Copy Conditionals"] = "Copie conditionnelles" -L["Create a copy of the auto-generated conditionals in the custom configuration as a base template."] = "Créée une copie des conditionnelles auto-générées comme template de base pour la configuration personnalisée." -L["Custom Conditionals"] = "Conditionnelles personnalisées" -L["Default Bar State"] = "État par défaut de la barre" --- L["Disable any reaction to mouse events on this bar, making the bar click-through."] = true -L["Disabled"] = "Désactivée" -L["Disabled in Combat"] = "Désactivée en combat" --- L["Don't Page"] = true -L["Enable Auto-Assist for this bar.\n Auto-Assist will automatically try to cast on your target's target if your target is no valid target for the selected spell."] = "Active le soutien automatique pour cett barre.\nLe soutient automatique tentera automatiquement d'incanter le sort sur la cible de votre cible si votre cible n'est pas une cible valide pour le sort sélectionné." -L["Enable Bar Switching based on the actionbar controls provided by the game. \nSee Blizzard Key Bindings for assignments - Usually Shift-Mouse Wheel and Shift+1 - Shift+6."] = "Active la permutation des barres en se basant sur les contrôles des barres d'actions fournis par le jeu.\nRéférez-vous aux raccourcis Blizzard pour les assignements - habituellement Shift-molette souris et Shift+1 - Shift+6." -L["Enable State-based Button Swaping"] = "Active la permutation des boutons basée sur les états." -L["Enable the Bag Bar"] = "Active la barre des sacs." -L["Enable the FadeOut mode"] = "Active le mode Fondu." -L["Enable the Micro Menu"] = "Active le micro menu." -L["Enable the PetBar"] = "Active la barre du familier." -L["Enable the Reputation Bar"] = "Active la barre de réputation." -L["Enable the StanceBar"] = "Active la barre des postures." --- L["Enable the Vehicle Bar"] = true -L["Enable the XP Bar"] = "Active la barre d'expérience." -L["Enable the use of a custom condition, disabling all of the above."] = "Active l'utilisation d'une condition personnalisée, désactivant tout ce qui se trouve ci-dessus." -L["Enable/Disable the bar."] = "Active/Désactive la barre." -L["Enabled"] = "Activée" -L["FAQ"] = "FAQ" -L["Fade Out"] = "Fondu" -L["Fade Out Alpha"] = "Transparence du fondu" -L["Fade Out Delay"] = "Délai du fondu" -L["Focus-Cast Modifier"] = "Modificateur ciblage focal." -L["Focus-Cast by modifier"] = "Ciblage focal. par modificateur" -L["Frequently Asked Questions"] = "Questions fréquemment posées." -L["Full Button Mode"] = "Mode Tout le bouton" -L["General Settings"] = "Param. généraux" -L["Hide Hotkey"] = "Cacher les raccourcis" -L["Hide Macro Text"] = "Cacher texte macros" -L["Hide in Combat"] = "Cacher en combat" -L["Hide in Stance/Form"] = "Cacher en posture/forme" --- L["Hide on Vehicle"] = true -L["Hide out of Combat"] = "Cacher hors combat" -L["Hide the Hotkey on the buttons of this bar."] = "Cache les raccourcis clavier des boutons de cette barre." -L["Hide the Macro Text on the buttons of this bar."] = "Cache le texte des macros des boutons de cette barre." -L["Hide this bar in a specific Stance or Form."] = "Cache cette barre dans une posture ou une forme spécifique." -L["Hide this bar when you are possessing a NPC."] = "Cache cette barre quand vous possédez un PNJ." --- L["Hide this bar when you are riding on a vehicle."] = true -L["Hide this bar when you have a pet."] = "Cache cette barre quand vous avez un familier." -L["Hide this bar when you have no pet."] = "Cache cette barre quand vous n'avez pas de familier." -L["Hide when Possessing"] = "Cacher quand possession" -L["Hide with pet"] = "Cacher avec familier" -L["Hide without pet"] = "Cacher sans familier" -L["Hotkey Mode"] = "Mode Raccourci" -L["Key Bindings"] = "Raccourcis" -L["Keyring"] = "Trousseau de clés" -L["Lock"] = "Verr." -L["Lock all bars."] = "Verrouille toutes les barres." -L["Lock the buttons."] = "Verrouille tous les boutons." -L["Micro Menu"] = "Micro menu" -L["Minimap Icon"] = "Icône de la minicarte" -L["Modifier Based Switching"] = "Permutations basées sur les modificateurs" -L["No Display"] = "Pas d'affichage" -L["None"] = "Aucun" -L["Note: Enabling Custom Conditionals will disable all of the above settings!"] = "Note : l'activation des conditionnelles personnalisées désactivera tous les paramètres ci-dessus !" -L["Number of buttons."] = "Nombre de boutons." -L["Number of rows."] = "Nombre de rangées." -L["One Bag"] = "Un seul sac" -L["Only show one Bag Button in the BagBar."] = "Affiche un seul bouton sur la barre des sacs." -L["Out of Mana Indicator"] = "Indic. Plus de mana" -L["Out of Range Indicator"] = "Indic. Hors de portée" -L["Padding"] = "Espacement" --- L["Page %2d"] = true -L["Pet Bar"] = "Barre du familier" -L["Possess Bar"] = "Barre de possession" -L["Reputation Bar"] = "Barre de réputation" -L["Right-click Self-Cast"] = "Auto-ciblage clic droit" -L["Rows"] = "Rangées" -L["SHIFT"] = "SHIFT" -L["Scale"] = "Échelle" -L["Select the Focus-Cast Modifier"] = "Sélectionnez le modificateur de ciblage de la focalisation." -L["Select the Self-Cast Modifier"] = "Sélectionnez le modificateur d'auto-ciblage." -L["Self-Cast Modifier"] = "Modificateur auto-ciblage" -L["Self-Cast by modifier"] = "Auto-ciblage par modificateur" -L["Show a Icon to open the config at the Minimap"] = "Affiche une icône sur la minicarte permettant d'ouvrir la fenêtre de configuration." -L["Show the keyring button."] = "Affiche le bouton du trousseau de clés." -L["Specify the Color of the Out of Mana Indicator"] = "Spécifie la couleur de l'indicateur Plus de mana." -L["Specify the Color of the Out of Range Indicator"] = "Spécifie la couleur de l'indicateur Hors de portée." -L["Stance Bar"] = "Barre des postures" -L["Stance Configuration"] = "Configuration des postures" -L["State Configuration"] = "Configuration des états" -L["Switch this bar to the Possess Bar when possessing a npc (eg. Mind Control)"] = "Permute cette barre vers la barre de posssession lors du contrôle d'un PNJ (par ex. avec Contrôle mental)." -L["Switch to key-binding mode"] = "Passe au mode d'affectation des raccourcis." -L["The Alignment menu is still on the TODO.\n\nAs a quick preview of whats planned:\n\n\t- Absolute and relative Bar Positioning\n\t- Bars \"snapping\" together and building clusters"] = "Le menu Alignement est toujours sur la liste des choses à faire.\n\nVoici un bref aperçu de ce qui est prévu :\n\n\t- Positionnement absolu et relatif des barres\n\t- Barres \"collées\" les unes contre les autres et la construction de groupes" -L["The bar default is to be visible all the time, you can configure conditions here to control when the bar should be hidden."] = "Par défaut, la barre est visible tout le temps. Vous pouvez configurer ici les conditions contrôlant quand la barre doit être cachée." -L["The default behaviour of this bar when no state-based paging option affects it."] = "Le comportement par défaut de cette barre quand les options de permutation basées sur les états ne l'affecte pas." -L["This bar will be hidden once you enter combat."] = "Cache cette barre quand vous êtes en combat." -L["This bar will be hidden whenever you are not in combat."] = "Cache cette barre quand vous n'êtes pas en combat." -L["Toggle Button Zoom\nFor more style options you need to install ButtonFacade"] = "Zoome ou non sur les boutons.\nPour plus d'options de style, installez ButtonFacade." -L["Toggle the button grid."] = "Affiche ou non la grille des boutons." -L["Toggle the use of the modifier-based focus-cast functionality."] = "Utilise ou non la fonctionnalité du ciblage de la focalisation basée sur les modificateurs." -L["Toggle the use of the modifier-based self-cast functionality."] = "Utilise ou non la fonctionnalité d'auto-ciblage basée sur les modificateurs." -L["Toggle the use of the right-click self-cast functionality."] = "Utilise ou non la fonctionnalité d'auto-ciblage au clic droit." -L["Use Custom Condition"] = "Condition perso." --- L["Vehicle Bar"] = true --- L["VehicleBar"] = true -L["Visibility"] = "Visibilité" -L["XP Bar"] = "Barre d'expérience" -L["You can set the bar to be always hidden, if you only wish to access it using key-bindings."] = "Vous pouvez configurer la barre afin qu'elle soit toujours cachée si vous ne souhaitez y accéder que via des raccourcis claviers." -L["You can use any macro conditionals in the custom string, using \"show\" and \"hide\" as values.\n\nExample: [combat]hide;show"] = "Vous pouvez utiliser n'importe quelles conditionnelles des macros dans le string personnalisé, en utilisant \"show\" et \"hide\" comme valeurs.\n\nExemple : [combat]hide;show" -L["You can use any macro conditionals in the custom string, using the number of the bar as target value.\nExample: [form:1]9;0"] = "Vous pouvez utiliser n'importe quelles conditionnelles des macros dans le string personnalisé, en utilisant le numéro de la barre comme valeur-cible.\n\nExemple : [form:1]9;0" -L["Zoom"] = "Zoom" -L["|cffffff00Click|r to toggle bar lock"] = "|cffffff00Clic gauche|r pour (dé)verrouiller les barres." -L["|cffffff00Right-click|r to open the options menu"] = "|cffffff00Clic droit|r pour ouvrir le menu des options." +--@localization(locale="frFR", format="lua_additive_table", handle-unlocalized="comment")@ diff --git a/locale/koKR.lua b/locale/koKR.lua index b3135c7..d98f4a9 100644 --- a/locale/koKR.lua +++ b/locale/koKR.lua @@ -1,151 +1,8 @@ --- Generated by Babelfish script, do not add strings manually, only translate existing strings. --- Please make sure to save the file as UTF-8, BUT WITHOUT THE UTF-8 BOM HEADER; ¶ +-- Bartender4 Locale +-- Please use the Localization App on WoWAce to Update this +-- http://www.wowace.com/projects/bartender4/localization/ ;¶ + local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "koKR") if not L then return end -L["ALT"] = "ALT" -L["ActionBar Paging"] = "행동바 페이지" -L["Alignment"] = "정렬 설정" -L["Alpha"] = "투명도" -L["Always Hide"] = "항상 숨기기" -L["Auto-Assist"] = "자동-지원" -L["Bag Bar"] = "가방 바" -L["Bar %s"] = "바 %s" -L["Bar Snapping"] = "자동 붙임 기능" -L["Bar Style & Layout"] = "바 외형 & 배치" -L["Bars"] = "바" -L["Bars unlocked. Move them now and click Lock when you are done."] = "바의 이동이 가능합니다. 이동이 끝났다면 잠금 버튼을 눌러서 바가 이동하지 않도록 고정합니다." -L["Bartender4"] = "Bartender4" -L["Button %s"] = "버튼 %s" -L["Button Grid"] = "버튼 외형" -L["Button Lock"] = "버튼 잠금" -L["Button Look"] = "버튼 표시" -L["Button Tooltip"] = "버튼 툴팁" -L["Buttons"] = "버튼" -L["CTRL"] = "CTRL" --- L["Click-Through"] = true -L["Colors"] = "색상" -L["Configure the Stance Bar"] = "태세 바 설정" -L["Configure Bar %s"] = "바 %s 설정" -L["Configure actionbar paging when the %s key is down."] = "%s 키를 누를 때 행동바 페이지를 설정합니다." -L["Configure how the Out of Range Indicator should display on the buttons."] = "버튼의 시전 거리밖 지시기를 표시할 방식을 변경합니다." -L["Configure the Bag Bar"] = "가방바 설정" -L["Configure the Button Tooltip."] = "버튼 툴팁을 설정합니다." -L["Configure the Fade Out Alpha"] = "사라짐 모드에서 바의 투명도를 변경합니다." -L["Configure the Fade Out Delay"] = "사라짐 모드에서 바의 사라짐 시간을 변경합니다." -L["Configure the Micro Menu"] = "게임 메뉴 설정" -L["Configure the Pet Bar"] = "소환수 바 설정" -L["Configure the Reputation Bar"] = "평판 바 설정" -L["Configure the VehicleBar"] = "탈것 바 설정" -L["Configure the XP Bar"] = "경험치 바 설정" -L["Configure the alpha of the bar."] = "바의 투명도를 변경합니다." -L["Configure the padding of the buttons."] = "버튼 간격을 변경합니다." -L["Configure the scale of the bar."] = "바의 크기를 변경합니다." -L["Copy Conditionals"] = "조건 복사" -L["Create a copy of the auto-generated conditionals in the custom configuration as a base template."] = "사용자 설정 기반의 자동으로 생성된 조건을 복사하여 생성합니다." -L["Custom Conditionals"] = "사용자 조건 설정" -L["Default Bar State"] = "기본 상태" --- L["Disable any reaction to mouse events on this bar, making the bar click-through."] = true -L["Disabled"] = "사용하지 않음" -L["Disabled in Combat"] = "전투중 숨김" -L["Don't Page"] = "변경하지 않음" -L["Enable Auto-Assist for this bar.\n Auto-Assist will automatically try to cast on your target's target if your target is no valid target for the selected spell."] = "이 바에 대해 자동-지원 기능을 사용합니다. 자동-지원 기능은 선택된 주문에 대해 당신의 대상이 유효한 대상이 아니라면 당신의 대상의 대상에게 자동으로 시전하려고 할 것입니다." -L["Enable Bar Switching based on the actionbar controls provided by the game. \nSee Blizzard Key Bindings for assignments - Usually Shift-Mouse Wheel and Shift+1 - Shift+6."] = "게임에서 캐릭터의 상태(태세/폼/형상 등...)에 따라 행동바의 페이지를 변경할 수 있습니다.\n블리자드 행동바 단축키를 참조하세요. 보통 Shift+마우스 휠 또는 Shift+1~Shift+6으로 지정합니다." -L["Enable State-based Button Swaping"] = "캐릭터 상태(태세/폼/형상 등...)에 따른 바의 버튼 교체를 사용합니다." -L["Enable the Bag Bar"] = "가방 바를 사용합니다." -L["Enable the FadeOut mode"] = "바의 사라짐 모드를 사용합니다." -L["Enable the Micro Menu"] = "게임 메뉴를 사용합니다." -L["Enable the PetBar"] = "소환수 바를 사용합니다." -L["Enable the Reputation Bar"] = "평판 바를 사용합니다." -L["Enable the StanceBar"] = "태세 바를 사용합니다." -L["Enable the Vehicle Bar"] = "탈것 바를 사용합니다." -L["Enable the XP Bar"] = "경험치 바를 사용합니다." -L["Enable the use of a custom condition, disabling all of the above."] = "사용자 조건 설정을 적용하면, 위의 기본 설정을 사용할 수 없습니다." -L["Enable/Disable the bar."] = "바를 사용합니다." -L["Enabled"] = "사용" -L["FAQ"] = "묻고 답하기" -L["Fade Out"] = "사라짐 모드" -L["Fade Out Alpha"] = "사라짐 투명도" -L["Fade Out Delay"] = "사라짐 지연시간" -L["Focus-Cast Modifier"] = "주시대상에게 시전 기능키" -L["Focus-Cast by modifier"] = "주시대상에게 시전 기능키" -L["Frequently Asked Questions"] = "자주하는 질문에 대한 답변" -L["Full Button Mode"] = "전체 버튼 모드" -L["General Settings"] = "일반 설정" -L["Hide Hotkey"] = "단축키 숨기기" -L["Hide Macro Text"] = "매크로 이름 숨기기" -L["Hide in Combat"] = "전투중 숨기기" -L["Hide in Stance/Form"] = "태세/폼 숨기기" --- L["Hide on Vehicle"] = true -L["Hide out of Combat"] = "전투종료 숨기기" -L["Hide the Hotkey on the buttons of this bar."] = "버튼의 단축키 글자를 표시하지 않습니다." -L["Hide the Macro Text on the buttons of this bar."] = "버튼의 매크로 이름을 표시하지 않습니다." -L["Hide this bar in a specific Stance or Form."] = "현재 행동바에서 특정 태세나 폼을 숨깁니다." -L["Hide this bar when you are possessing a NPC."] = "NPC를 지배하면 바를 숨깁니다." --- L["Hide this bar when you are riding on a vehicle."] = true -L["Hide this bar when you have a pet."] = "소환수가 나타나면 바를 숨깁니다." -L["Hide this bar when you have no pet."] = "소환수가 사라지면 바를 숨깁니다." -L["Hide when Possessing"] = "지배 숨기기" -L["Hide with pet"] = "소환수 숨기기" -L["Hide without pet"] = "소환수 없음 숨기기" -L["Hotkey Mode"] = "단축키 모드" -L["Key Bindings"] = "단축키 지정" -L["Keyring"] = "열쇠 고리" -L["Lock"] = "잠금" -L["Lock all bars."] = "모든 바를 움직이지 않게 고정합니다." -L["Lock the buttons."] = "모든 버튼을 움직이지 않게 고정합니다." -L["Micro Menu"] = "게임 메뉴" -L["Minimap Icon"] = "미니맵 아이콘" -L["Modifier Based Switching"] = "기능키 기반 교체" -L["No Display"] = "표시 안함" -L["None"] = "없음" -L["Note: Enabling Custom Conditionals will disable all of the above settings!"] = "주의: 사용자 조건의 사용은 위의 기본 설정을 사용하지 않습니다." -L["Number of buttons."] = "버튼 수를 지정합니다." -L["Number of rows."] = "열의 수를 지정합니다." -L["One Bag"] = "통합 가방 버튼" -L["Only show one Bag Button in the BagBar."] = "가방 바를 하나의 가방 버튼으로 표시합니다." -L["Out of Mana Indicator"] = "마나 부족 지시기" -L["Out of Range Indicator"] = "시전 거리밖 지시기" -L["Padding"] = "간격" -L["Page %2d"] = "페이지 %2d" -L["Pet Bar"] = "소환수 바" -L["Possess Bar"] = "지배 바" -L["Reputation Bar"] = "평판 바" -L["Right-click Self-Cast"] = "오른쪽 클릭시 자신에게 시전" -L["Rows"] = "열" -L["SHIFT"] = "SHIFT" -L["Scale"] = "크기" -L["Select the Focus-Cast Modifier"] = "주시대상에게 시전할 기능키를 선택합니다." -L["Select the Self-Cast Modifier"] = "자신에게 시전할 기능키를 선택합니다." -L["Self-Cast Modifier"] = "자신에게 시전 기능키" -L["Self-Cast by modifier"] = "자신에게 시전 기능키" -L["Show a Icon to open the config at the Minimap"] = "미니맵에 버튼을 표시하여 설정할 수 있도록 합니다." -L["Show the keyring button."] = "열쇠 고리 버튼을 표시합니다." -L["Specify the Color of the Out of Mana Indicator"] = "마나 부족 지시기의 색상을 변경합니다." -L["Specify the Color of the Out of Range Indicator"] = "시전 거리밖 지시기의 색상을 변경합니다." -L["Stance Bar"] = "태세 바" -L["Stance Configuration"] = "태세 설정" -L["State Configuration"] = "상태 설정" -L["Switch this bar to the Possess Bar when possessing a npc (eg. Mind Control)"] = "npc를 지배중인 경우에 지배바로 이 바를 교체합니다. (예: 정신 지배)" -L["Switch to key-binding mode"] = "단축키 지정 모드로 전환합니다." -L["The Alignment menu is still on the TODO.\n\nAs a quick preview of whats planned:\n\n\t- Absolute and relative Bar Positioning\n\t- Bars \"snapping\" together and building clusters"] = "현재 바 정렬 설정은 미구현되어 있습니다." -L["The bar default is to be visible all the time, you can configure conditions here to control when the bar should be hidden."] = "모든 행동바를 초기상태로 표시했을 때, 바의 설정을 변경할 수 있습니다." -L["The default behaviour of this bar when no state-based paging option affects it."] = "캐릭터 상태에 따른 바 페이지 교체 설정에 영향을 미치지 않는 경우에만 기본 동작을 설정합니다." -L["This bar will be hidden once you enter combat."] = "전투에 참여하면 바가 숨겨집니다." -L["This bar will be hidden whenever you are not in combat."] = "전투가 종료되면 바가 숨겨집니다." -L["Toggle Button Zoom\nFor more style options you need to install ButtonFacade"] = "버튼 확대를 전환합니다. /n보다 더 많은 양식 옵션을 위해서는 애드온 ButtonFacade의 설치가 필요합니다." -L["Toggle the button grid."] = "빈 버튼의 외형을 표시합니다." -L["Toggle the use of the modifier-based focus-cast functionality."] = "주시대상에게 시전할 기능키를 사용합니다." -L["Toggle the use of the modifier-based self-cast functionality."] = "자신에게 시전할 기능키를 사용합니다." -L["Toggle the use of the right-click self-cast functionality."] = "마우스 오른쪽 버튼을 클릭하면 자신에게 시전하는 기능을 사용합니다." -L["Use Custom Condition"] = "사용자 조건 사용" -L["Vehicle Bar"] = "탈것 바" -L["VehicleBar"] = "탈것 바" -L["Visibility"] = "표시 설정" -L["XP Bar"] = "경험치 바" -L["You can set the bar to be always hidden, if you only wish to access it using key-bindings."] = "단축키로 지정해서 사용한다면 모든 바를 숨길 수 있습니다." -L["You can use any macro conditionals in the custom string, using \"show\" and \"hide\" as values.\n\nExample: [combat]hide;show"] = "매크로 조건을 통해 바의 상태를 변경할 수 있습니다. 예를 들어 '보기', '숨기기' 등은 [combat]hide;show와 같이 사용이 가능합니다." -L["You can use any macro conditionals in the custom string, using the number of the bar as target value.\nExample: [form:1]9;0"] = "매크로 조건을 통해 바의 상태를 변경할 수 있습니다. 예를 들어 대상 값의 숫자를 이용하거나 [form:1]9;0와 같이 사용이 가능합니다." -L["Zoom"] = "확대" -L["|cffffff00Click|r to toggle bar lock"] = "|cffffff00클릭|r하면 바를 고정합니다." -L["|cffffff00Right-click|r to open the options menu"] = "|cffffff00오른쪽 클릭|r하면 설정 창을 엽니다." +--@localization(locale="koKR", format="lua_additive_table", handle-unlocalized="comment")@ diff --git a/locale/locale.xml b/locale/locale.xml index ba02df5..2904775 100644 --- a/locale/locale.xml +++ b/locale/locale.xml @@ -9,5 +9,4 @@