├── Artwork └── LeaveVehicle.tga ├── .editorconfig ├── locale ├── deDE.lua ├── frFR.lua ├── itIT.lua ├── koKR.lua ├── ptBR.lua ├── ruRU.lua ├── zhCN.lua ├── zhTW.lua ├── esES.lua ├── enUS.lua ├── locale.xml ├── wowace-locale-import.sh └── find-locale-strings.lua ├── .github ├── workflows │ ├── pull_request.yml │ └── packager.yml └── FUNDING.yml ├── ArtBarTemplates.xml ├── Options ├── VehicleBar.lua ├── MultiCastBar.lua ├── StanceBar.lua ├── StatusTrackingBar.lua ├── PetBar.lua ├── ExtraActionBar.lua ├── XPBarClassic.lua ├── MicroMenu.lua ├── BagBar.lua ├── BlizzardArt.lua ├── ButtonBar.lua ├── AceGUIWidget-NumberEditBox.lua ├── StateBar.lua ├── ActionBar.lua └── PresetsClassic.lua ├── .pkgmeta ├── MultiCastBar.lua ├── Bartender4.toc ├── libs ├── LibDataBroker-1.1.lua └── SimpleSticky.lua ├── StatusTrackingBar.lua ├── XPBarClassic.lua ├── HideBlizzard.lua ├── VehicleBar.lua ├── BagBarClassic.lua ├── ExtraActionBar.lua ├── BagBar.lua ├── .luacheckrc ├── PetBar.lua ├── HideBlizzardClassic.lua ├── ButtonBar.lua ├── StanceBar.lua ├── PetButton.lua ├── MicroMenu.lua ├── Bindings.xml ├── ActionBars.lua └── Bindings_Mainline.xml /Artwork/LeaveVehicle.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/Bartender4/HEAD/Artwork/LeaveVehicle.tga -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | indent_size = 4 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [{*.yml,.pkgmeta}] 11 | indent_style = space 12 | indent_size = 2 13 | -------------------------------------------------------------------------------- /locale/deDE.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "deDE") 6 | if not L then return end 7 | 8 | --@localization(locale="deDE", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/frFR.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "frFR") 6 | if not L then return end 7 | 8 | --@localization(locale="frFR", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/itIT.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "itIT") 6 | if not L then return end 7 | 8 | --@localization(locale="itIT", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/koKR.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "koKR") 6 | if not L then return end 7 | 8 | --@localization(locale="koKR", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/ptBR.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "ptBR") 6 | if not L then return end 7 | 8 | --@localization(locale="ptBR", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/ruRU.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "ruRU") 6 | if not L then return end 7 | 8 | --@localization(locale="ruRU", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/zhCN.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "zhCN") 6 | if not L then return end 7 | 8 | --@localization(locale="zhCN", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/zhTW.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "zhTW") 6 | if not L then return end 7 | 8 | --@localization(locale="zhTW", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/esES.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "esES") or LibStub("AceLocale-3.0"):NewLocale("Bartender4", "esMX") 6 | if not L then return end 7 | 8 | --@localization(locale="esES", format="lua_additive_table", handle-unlocalized="ignore")@ 9 | -------------------------------------------------------------------------------- /locale/enUS.lua: -------------------------------------------------------------------------------- 1 | -- Bartender4 Locale 2 | -- Please use the Localization App on WoWAce to Update this 3 | -- http://www.wowace.com/projects/bartender4/localization/ ;¶ 4 | 5 | local debug = false 6 | --@debug@ 7 | debug = true 8 | --@end-debug@ 9 | 10 | local L = LibStub("AceLocale-3.0"):NewLocale("Bartender4", "enUS", true, debug) 11 | 12 | --@localization(locale="enUS", format="lua_additive_table", same-key-is-true=true)@ 13 | -------------------------------------------------------------------------------- /locale/locale.xml: -------------------------------------------------------------------------------- 1 | 3 |