Advertisement
Guest User

localization.lua

a guest
Mar 10th, 2023
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.62 KB | None | 0 0
  1. -- American English and British English as default
  2.     AM_SPLIT = "------------------------------------------------------------";
  3.     AM_LOAD1 = "Answering Machine ";
  4.     AM_LOAD2 = " is loaded.";
  5.     AM_ON1 = "Your answering machine is now |cffFF80FFon.|r";
  6.     AM_ON2 = "All whispers and AH messages will be recorded.";
  7.     AM_OFF = "Your answering machine is now |cffFF80FFoff.|r";
  8.     AM_NO_MESSAGES = "You have no new whispers.";
  9.     AM_1_MESSAGE = "You have 1 new whisper.";
  10.     AM_1PLUS_MESSAGES1 = "You have ";
  11.     AM_1PLUS_MESSAGES2 = " new whispers.";
  12.     AM_AWAY_MSG = "Answering Machine: Im AFK but your message have been put right after the beep.";  
  13.  
  14.     -- AH messages
  15.     AM_AH_OUTBID = "You have been outbid"
  16.     AM_AH_WON = "You won an auction for "
  17.     AM_AH_EXPIRE = "Your auction of .+ expired%."
  18.     AM_AH_SOLD = "Your auction of .+ sold%."
  19.     AM_AH_BID = "A buyer has been found for your auction of"
  20.  
  21.     AM_AH_NONE = "You have no new Auction House messages."
  22.     AM_AH_1_MESSAGE = "You have 1 new Auction House message."
  23.     AM_AH_1PLUS_MESSAGES1 = "You have "
  24.     AM_AH_1PLUS_MESSAGES2 = " new Auction House messages."
  25.    
  26. -- if (GetLocale() == "deDE") then -- German
  27.  
  28. -- elseif (GetLocale() == "frFR") then -- French
  29.  
  30. -- elseif (GetLocale() == "ruRU") then -- Russian
  31.    
  32. -- elseif (GetLocale() == "esES") then -- Spanish (Spain)
  33.    
  34. -- elseif (GetLocale() == "esMX") then -- Spanish (Mexico)
  35.    
  36. -- elseif (GetLocale() == "zhCN") then -- Chinese (simplified)
  37.    
  38. -- elseif (GetLocale() == "zhTW") then -- Chinese (traditional)
  39.    
  40. -- elseif (GetLocale() == "koKR") then -- Korean
  41.    
  42. -- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement