vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 -- FileName Localization
3 -- "English Localization"
4 --
5 -- English By: Mugendai
6 -- Contact: mugekun@gmail.com
7 --
8 -- $Id: localization.lua 2640 2005-10-17 09:22:31Z mugendai $
9 -- $Rev: 2640 $
10 -- $LastChangedBy: mugendai $
11 -- $Date: 2005-10-17 04:22:31 -0500 (Mon, 17 Oct 2005) $
12 --]]
13  
14 --------------------------------------------------
15 --
16 -- MCom Versioning System, DO NOT CHANGE!
17 --
18 --------------------------------------------------
19 --MCom version number
20 MCOM_VERSION = 1.49;
21  
22 --Should we use this version of MCom
23 MCom_Update = nil;
24  
25 --If there is no MCom, make one
26 if (not MCom) then
27 MCom = {};
28 end
29  
30 --Check the version, and decide if we should update
31 if (MCom.VERSION) then
32 if (MCOM_VERSION > MCom.VERSION) then
33 MCom_Update = true;
34 MCom.VERSION = MCOM_VERSION;
35 end
36 else
37 MCom_Update = true;
38 MCom.VERSION = MCOM_VERSION;
39 end
40  
41 --------------------------------------------------
42 --
43 -- Copyable locale starts here
44 --
45 --------------------------------------------------
46 --Only overwrite if version is newer, be sure to include this(but not the above part) in localizations
47 if (MCom_Update) then
48 --------------------------------------------------
49 --
50 -- MCom types
51 --
52 --------------------------------------------------
53 MCOM_BOOLT = "B";
54 MCOM_NUMT = "N";
55 MCOM_MULTIT = "M";
56 MCOM_STRINGT = "S";
57 MCOM_SIMPLET = "E";
58 MCOM_CHOICET = "C";
59 MCOM_COLORT = "K";
60  
61 --------------------------------------------------
62 --
63 -- MCom help text
64 --
65 --------------------------------------------------
66 MCOM_CHAT_COM_ALIAS = "Command aliases: %s";
67 MCOM_CHAT_COM_COMMANDS = "Commands:\ncommand/alias - type (state)\ndetails";
68 MCOM_CHAT_COM_SUBCOMMAND_S = "\124c00FFC000%s\124r - %s\n%s";
69 MCOM_CHAT_COM_SUBCOMMAND = "\124c00FFC000%s\124r - %s \124c0000FF00(%s\124c0000FF00)\124r\n%s";
70 MCOM_CHAT_COM_NOINFO = "No additonal info available.";
71 MCOM_CHAT_COM_CLIST = "Choices: %s";
72 MCOM_CHAT_COM_USAGE = "When using commands don't include the parenthesis or brackets, or the letter between the parenthesis."
73 MCOM_CHAT_COM_USAGE_B = "On on/off options, if you don't pass anything to them, they will flip to the opposite state."
74 MCOM_CHAT_COM_USAGE_B_M = "On options that allow you to specify both on/off and another value, such as a "..MCOM_BOOLT.."%s type, which lets you "..
75 "Set an on/off and %s, you can specify only the on/off portion if you wish, and leave the second "..
76 "part as it is.";
77 MCOM_CHAT_COM_USAGE_B_N = "a number";
78 MCOM_CHAT_COM_USAGE_B_S = "a string";
79 MCOM_CHAT_COM_USAGE_B_C = "a choice";
80 MCOM_CHAT_COM_USAGE_B_K = "a color";
81  
82 MCOM_CHAT_C_M = MCOM_CHOICET.."M"; --Letter indicator that this is a multiple choice option
83 MCOM_CHAT_K_O = MCOM_COLORT.."O"; --Letter indicator that this is a color option with opacity
84  
85 MCOM_CHAT_COM_B = "[on/off]";
86 MCOM_CHAT_COM_N = "[number]";
87 MCOM_CHAT_COM_N_MIN = "Min: %s";
88 MCOM_CHAT_COM_N_MAX = "Max: %s";
89 MCOM_CHAT_COM_N_RANGE = " \124c0064DCFF[%s]\124r";
90 MCOM_CHAT_COM_S = "[string]";
91 MCOM_CHAT_COM_C = "[choice]";
92 MCOM_CHAT_COM_C_M = "[choice[ morechoices]]";
93 MCOM_CHAT_COM_K = "[red green blue]";
94 MCOM_CHAT_COM_K_O = "[red green blue [opacity]]";
95  
96 MCOM_CHAT_COM_K_R = "R:%s";
97 MCOM_CHAT_COM_K_G = "G:%s";
98 MCOM_CHAT_COM_K_B = "B:%s";
99 MCOM_CHAT_COM_K_O = "O:%s";
100 MCOM_CHAT_COM_K_X = "\124c%sExample\124r";
101  
102 MCOM_CHAT_COM_USAGE_S_E = "Usage %s";
103 MCOM_CHAT_COM_USAGE_S_S = "Usage %s %s";
104 MCOM_CHAT_COM_USAGE_S_M = "Usage %s "..MCOM_CHAT_COM_B.." %s";
105  
106 MCOM_CHAT_COM_USAGE_E = "Usage for ("..MCOM_SIMPLET..") %s [option]";
107 MCOM_CHAT_COM_USAGE_S = "Usage for (%s) %s [option] %s";
108 MCOM_CHAT_COM_USAGE_M = "Usage for (%s) %s [option] "..MCOM_CHAT_COM_B.." %s";
109  
110 MCOM_CHAT_COM_EXAMPLE = "Example Usage:";
111  
112 MCOM_CHAT_COM_EXAMPLE_O_B = "on";
113 MCOM_CHAT_COM_EXAMPLE_O_N = "1";
114 MCOM_CHAT_COM_EXAMPLE_O_S = "somestring";
115 MCOM_CHAT_COM_EXAMPLE_O_K = "20 56 100";
116 MCOM_CHAT_COM_EXAMPLE_O_K_O = "20 56 100 62";
117  
118 MCOM_CHAT_COM_EXAMPLE_S_E = "%s";
119 MCOM_CHAT_COM_EXAMPLE_S_S = "%s %s";
120 MCOM_CHAT_COM_EXAMPLE_S_M = "%s "..MCOM_CHAT_COM_EXAMPLE_O_B.." %s";
121  
122 MCOM_CHAT_COM_EXAMPLE_E = "%s %s";
123 MCOM_CHAT_COM_EXAMPLE_S = "%s %s %s";
124 MCOM_CHAT_COM_EXAMPLE_M = "%s %s "..MCOM_CHAT_COM_EXAMPLE_O_B.." %s";
125  
126 MCOM_CHAT_ENABLED = "enabled";
127 MCOM_CHAT_DISABLED = "disabled";
128 MCOM_CHAT_ON = "On";
129 MCOM_CHAT_OFF = "Off";
130  
131 MCOM_CHAT_STATUS_B = "%s %%s";
132 MCOM_CHAT_STATUS_N = "%s set to %%s";
133 MCOM_CHAT_STATUS_S = "%s set to %%s";
134 MCOM_CHAT_STATUS_C = "%s set to %%s";
135 MCOM_CHAT_STATUS_K = "%s set to %%s";
136  
137 MCOM_FEEDBACK_CHECK = "%s %s";
138 MCOM_FEEDBACK_RADIO = "%s set to %s";
139 MCOM_FEEDBACK_SLIDER = "%s set to %s";
140 MCOM_FEEDBACK_SLIDER_M = "%s, and set to %s";
141 MCOM_FEEDBACK_EDITBOX = "%s set to %s";
142 MCOM_FEEDBACK_EDITBOX_M = "%s, and set to %s";
143 MCOM_FEEDBACK_COLOR = "|c%s%s color changed|r";
144 MCOM_FEEDBACK_COLOR_M = "|c%s%s|r";
145 MCOM_FEEDBACK_CHOICE = "%s set to %s";
146 MCOM_FEEDBACK_CHOICE_M = "%s, and set to %s";
147  
148 MCOM_PAGE_TEXT = "Page (%s/%s)";
149 MCOM_HELP_COMMAND = "help";
150 MCOM_HELP_CONFIG = "%s Help";
151 MCOM_HELP_CONFIG_INFO = "Will display a screen showing helpful information about %s.";
152 MCOM_HELP_GENERIC = "Will display a screen showing helpful information about this addon.";
153 MCOM_HELP_TITLE = "%s Help";
154 MCOM_HELP_GENERIC_TITLE = "Help";
155 end