public
Description: WoW Powerleveling addon
Homepage: http://www.tekkub.net/
Clone URL: git://github.com/tekkub/tourguide.git
Click here to lend your support to: tourguide and make a donation at www.pledgie.com !
Add ruRUssian localization
tekkub (author)
Fri Jul 18 16:35:08 -0700 2008
commit  4bd485976220a03160abcc7310bdb84ca54fe69e
tree    0e98f101f0a7bd73234ac7a4c078b57cd92f0982
parent  46809a541b04b93f3dfbbf070a1f0502381e9b7a
...
44
45
46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
48
49
...
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
0
@@ -44,6 +44,20 @@ if loc == "frFR" then localized = {
0
 } end
0
 
0
 
0
+----------------------
0
+-- Russian --
0
+----------------------
0
+
0
+if loc == "ruRU" then localized = {
0
+ PART_GSUB = "%s%(\208\167\208\176\209\129\209\130\209\140 %d+%)",
0
+ PART_FIND = "(.+)%s%(\208\167\208\176\209\129\209\130\209\140 %d+%)",
0
+ ["(.*) is now your home."] = "\208\146\208\176\209\136 \208\189\208\190\208\178\209\139\208\185 \208\180\208\190\208\188 - (.*).",
0
+ ["Quest accepted: (.*)"] = "\208\159\208\190\208\187\209\131\209\135\208\181\208\189\208\190 \208\183\208\176\208\180\208\176\208\189\208\184\208\181: (.*)",
0
+ ["^You .*Hitem:(%d+).*(%[.+%])"] = "^\208\146\208\176\209\136\208\176 .*H\208\180\208\190\208\177\209\139\209\135\208\176:(%d+).*(%[.+%])",
0
+ ["|cffff4500This quest is not listed in your current guide"] = "|cffff4500\208\173\209\130\208\190\208\179\208\190 \208\183\208\176\208\180\208\176\208\189\208\184\209\143 \208\189\208\181\209\130 \208\178 \208\178\209\139\208\177\209\128\208\176\208\189\208\189\208\190\208\188 \209\128\209\131\208\186\208\190\208\178\208\190\208\180\209\129\209\130\208\178\208\181",
0
+} end
0
+
0
+
0
 -- Metatable majicks... makes localized table fallback to engrish, or fallback to the index requested.
0
 -- This ensures we ALWAYS get a value back, even if it's the index we requested originally
0
 TOURGUIDE_LOCALE = localized and setmetatable(localized, {__index = function(t,i) return engrish[i] or i end})

Comments

    No one has commented yet.