Skip to content

Commit

Permalink
Automated localization update
Browse files Browse the repository at this point in the history
  • Loading branch information
Phanx committed Nov 5, 2015
1 parent bd51627 commit efdc79c
Showing 1 changed file with 34 additions and 12 deletions.
46 changes: 34 additions & 12 deletions Localization.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--[[--------------------------------------------------------------------
!ClassColors
Change class colors without breaking the Blizzard UI.
Copyright (c) 2009-2014 Phanx <[email protected]>. All rights reserved.
Copyright (c) 2009-2015 Phanx <[email protected]>. All rights reserved.
http://www.wowinterface.com/downloads/info12513-ClassColors.html
http://www.curse.com/addons/wow/classcolors
----------------------------------------------------------------------]]
Expand All @@ -24,15 +24,19 @@ end })
-- THE REST OF THIS FILE IS AUTOMATICALLY GENERATED. SEE:
-- http://wow.curseforge.com/addons/classcolors/localization/

------------------------------------------------------------------------
-- English
------------------------------------------------------------------------

L.NOTES = "Change class colors without breaking the Blizzard UI."
L.NOTES_DESC = "Note that not all addons support this, and you may need to reload the UI before your changes are recognized by all compatible addons."
L.RESET_DESC = "Reset all class colors to their Blizzard defaults."

------------------------------------------------------------------------

local CURRENT_LOCALE = GetLocale()
if CURRENT_LOCALE == "enUS" then return end

------------------------------------------------------------------------
-- German
------------------------------------------------------------------------

if CURRENT_LOCALE == "deDE" then
Expand All @@ -43,6 +47,8 @@ L.RESET_DESC = "Die Klassenfarben auf die Standardverte zurücksetzen."

return end

------------------------------------------------------------------------
-- Spanish
------------------------------------------------------------------------

if CURRENT_LOCALE == "esES" then
Expand All @@ -53,6 +59,8 @@ L.RESET_DESC = "Restaurar los colores de las clases por el defecto."

return end

------------------------------------------------------------------------
-- Latin American Spanish
------------------------------------------------------------------------

if CURRENT_LOCALE == "esMX" then
Expand All @@ -63,6 +71,8 @@ L.RESET_DESC = "Restaurar los colores de las clases por el defecto."

return end

------------------------------------------------------------------------
-- French
------------------------------------------------------------------------

if CURRENT_LOCALE == "frFR" then
Expand All @@ -72,6 +82,8 @@ L.RESET_DESC = "Réinitialisez les couleurs des classes par défaut."

return end

------------------------------------------------------------------------
-- Italian
------------------------------------------------------------------------

if CURRENT_LOCALE == "itIT" then
Expand All @@ -82,15 +94,7 @@ L.RESET_DESC = "Ripristina i colori delle classi di default."
return end

------------------------------------------------------------------------

if CURRENT_LOCALE == "koKR" then

L.NOTES = "블리자드 UI를 변경하지 않고 클래스의 색상을 변경합니다." -- Needs review
L.NOTES_DESC = "모든 애드온이이 기능을 지원합니다, 변경 사항이 애드온에 의해 인식되기 전에 UI를 다시 로드해야 할 수 있습니다." -- Needs review
L.RESET_DESC = "직업 색상을 기본값으로 되돌립니다."

return end

-- Brazilian Portuguese
------------------------------------------------------------------------

if CURRENT_LOCALE == "ptBR" then
Expand All @@ -101,6 +105,8 @@ L.RESET_DESC = "Redefinir todas as cores de classes para o padrão."

return end

------------------------------------------------------------------------
-- Russian
------------------------------------------------------------------------

if CURRENT_LOCALE == "ruRU" then
Expand All @@ -111,6 +117,20 @@ L.RESET_DESC = "Сбросить окраску классов на значен

return end

------------------------------------------------------------------------
-- Korean
------------------------------------------------------------------------

if CURRENT_LOCALE == "koKR" then

L.NOTES = "블리자드 UI를 변경하지 않고 클래스의 색상을 변경합니다."
L.NOTES_DESC = "모든 애드온이이 기능을 지원합니다, 변경 사항이 애드온에 의해 인식되기 전에 UI를 다시 로드해야 할 수 있습니다."
L.RESET_DESC = "직업 색상을 기본값으로 되돌립니다."

return end

------------------------------------------------------------------------
-- Simplified Chinese
------------------------------------------------------------------------

if CURRENT_LOCALE == "zhCN" then
Expand All @@ -121,6 +141,8 @@ L.RESET_DESC = "重置职业颜色为默认。"

return end

------------------------------------------------------------------------
-- Traditional Chinese
------------------------------------------------------------------------

if CURRENT_LOCALE == "zhTW" then
Expand Down

0 comments on commit efdc79c

Please sign in to comment.