Files
libdogtag-unit-3-0/Localization/zhCN.lua
ckknight 59bf88f214 - add categories Abbrev and Talent.
- Talent uses LibTalentQuery-1.0
2008-03-23 01:32:12 +00:00

128 lines
2.8 KiB
Lua

local MAJOR_VERSION = "LibDogTag-Unit-3.0"
local MINOR_VERSION = tonumber(("$Revision$"):match("%d+")) or 0
_G.DogTag_Unit_MINOR_VERSION = MINOR_VERSION
if GetLocale() == "zhCN" then
DogTag_Unit_funcs[#DogTag_Unit_funcs+1] = function()
local L = DogTag_Unit.L
-- races
L["Blood Elf"] = "血精灵"
L["Draenei"] = "德莱尼"
L["Dwarf"] = "矮人"
L["Gnome"] = "侏儒"
L["Human"] = "人类"
L["Night Elf"] = "暗夜精灵"
L["Orc"] = "兽人"
L["Tauren"] = "牛头人"
L["Troll"] = "巨魔"
L["Undead"] = "亡灵"
-- short races
L["Blood Elf_short"] = ""
L["Draenei_short"] = ""
L["Dwarf_short"] = ""
L["Gnome_short"] = ""
L["Human_short"] = ""
L["Night Elf_short"] = ""
L["Orc_short"] = ""
L["Tauren_short"] = ""
L["Troll_short"] = ""
L["Undead_short"] = ""
-- classes
L["Warrior"] = "战士"
L["Priest"] = "牧师"
L["Mage"] = "法师"
L["Shaman"] = "萨满祭司"
L["Paladin"] = "圣骑士"
L["Warlock"] = "术士"
L["Druid"] = "德鲁伊"
L["Rogue"] = "潜行者"
L["Hunter"] = "猎人"
-- short classes
L["Warrior_short"] = ""
L["Priest_short"] = ""
L["Mage_short"] = ""
L["Shaman_short"] = ""
L["Paladin_short"] = ""
L["Warlock_short"] = ""
L["Druid_short"] = ""
L["Rogue_short"] = ""
L["Hunter_short"] = ""
--使用wow自身local
L["Player"] = PLAYER
L["Target"] = TARGET
L["Focus-target"] = FOCUS
L["Mouse-over"] = "鼠标目标"
L["%s's pet"] = "%s的宠物"
L["%s's target"] = "%s的目标"
L["Party member #%d"] = "队伍成员#%d"
L["Raid member #%d"] = "团队成员#%d"
-- classifications
L["Rare"] = "稀有"
L["Rare-Elite"] = "稀有" .. "-" .. ELITE
L["Elite"] = "精英"
L["Boss"] = BOSS
-- short classifications
L["Rare_short"] = ""
L["Rare-Elite_short"] = "稀+"
L["Elite_short"] = "+"
L["Boss_short"] = ""
L["Feigned Death"] = "假死"
L["Stealthed"] = "潜行"
L["Soulstoned"] = "灵魂已保存"
L["Dead"] = "死亡"
L["Ghost"] = "鬼魂"
L["Offline"] = "离线"
L["Online"] = "在线"
L["Combat"] = "战斗"
L["Resting"] = "休息"
L["Tapped"] = "已被攻击"
L["AFK"] = "暂离"
L["DND"] = "勿扰"
L["Rage"] = "怒气值"
L["Focus"] = "集中值"
L["Energy"] = "能量值"
L["Mana"] = "魔法值"
L["PvP"] = PVP
L["FFA"] = "FFA"
-- genders
L["Male"] = ""
L["Female"] = ""
-- forms
L["Bear"] = ""
L["Cat"] = "猎豹"
L["Moonkin"] = "枭兽"
L["Aquatic"] = "水栖"
L["Flight"] = "飞行"
L["Travel"] = "旅行"
L["Tree"] = ""
L["Bear_short"] = ""
L["Cat_short"] = ""
L["Moonkin_short"] = ""
L["Aquatic_short"] = ""
L["Flight_short"] = ""
L["Travel_short"] = ""
L["Tree_short"] = ""
-- shortgenders
L["Male_short"] = ""
L["Female_short"] = ""
L["Leader"] = "队长"
end
end