comparison localization.lua @ 0:edfa01041183

Census+ Mod : - TLJ guild search - searchstart at Level 1 for community events
author EmFor <EmFor.hg@mroe.de>
date Tue, 30 Mar 2010 13:42:05 +0200
parents
children 10c85be19b56
comparison
equal deleted inserted replaced
-1:000000000000 0:edfa01041183
1 --[[
2 CensusPlus for World of Warcraft(tm).
3
4 Copyright 2005 - 2006 Cooper Sellers and WarcraftRealms.com
5
6 License:
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program(see GLP.txt); if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 ]]
21 CENSUSPlusFemale = { };
22
23 CENSUSPlus_BUTTON_TEXT = "Census+";
24 CENSUSPlus_BUTTON_SUBTEXT = "Realm Census";
25 CENSUSPlus_BUTTON_TIP = "Click here to show or hide Census+.";
26 CENSUSPlus_HELP = " Use /censusplus to open and close the Census+ UI.";
27
28 CENSUSPlus_MSG1 = " Loaded - type /censusplus or /census+ to open main window";
29 CENSUSPlus_MSG2 = "Use /censusdate to set today's date in the format of MM-DD-YYYY, ie. 12-25-2004";
30
31 CENSUSPlus_UPLOAD = "Be sure to upload your CensusPlus data to www.WarcraftRealms.com!";
32 CENSUSPlus_SETTINGDATE = "Setting date to => ";
33 CENSUSPlus_PAUSE = "Pause";
34 CENSUSPlus_UNPAUSE = "Un-Pause";
35 CENSUSPlus_STOP = "Stop";
36 CENSUSPlus_PRUNE = "Prune";
37
38 CENSUSPlus_TAKECENSUS = "Take a census of players \ncurrently online on this server \nand in this faction";
39 CENSUSPlus_TAKEGUILDCENSUS = "Take a census of players \ncurrently online on this server \nand in this guild";
40 CENSUSPlus_PURGEDATABASE = "Purge the database of all data";
41 CENSUSPlus_PAUSECENSUS = "Pause the current census";
42 CENSUSPlus_UNPAUSECENSUS = "Un-Pause the current census";
43 CENSUSPlus_STOPCENSUS = "Stop the currently active CensusPlus";
44 CENSUSPlus_PRUNECENSUS = "Prune the database by removing characters not seen in 30 days.";
45
46 CENSUSPlus_PRUNEINFO = "Pruned %d characters.";
47
48 CENSUSPlus_PURGEMSG = "Purged character database.";
49 CENSUSPlus_ISINPROGRESS = "A CensusPlus is in progress, try again later";
50 CENSUSPlus_TAKINGONLINE = "Taking census of characters online...";
51 CENSUSPlus_PLZUPDATEDATE = "Please use /censusdate to set today's date for more more accurate data. Format /censusdate MM-DD-YYYY, example, /censusdate 12-25-2004";
52 CENSUSPlus_NOCENSUS = "A Census is not currently in progress";
53 CENSUSPlus_FINISHED = "Finished Taking data. Found %s new characters and saw %s. Took %s.";
54 CENSUSPlus_TOOMANY = "WARNING: Too many characters matching: %s";
55 CENSUSPlus_WAITING = "Waiting to send who request...";
56 CENSUSPlus_SENDING = "Sending /who %s";
57 CENSUSPlus_PROCESSING = "Processing %s characters.";
58
59 CENSUSPlus_REALMNAME = "Realm: %s";
60 CENSUSPlus_REALMUNKNOWN = "Realm: Unknown";
61 CENSUSPlus_FACTION = "Faction: %s";
62 CENSUSPlus_FACTIONUNKNOWN = "Faction: Unknown";
63 CENSUSPlus_LOCALE = "Locale : %s";
64 CENSUSPlus_LOCALEUNKNOWN = "Locale : Unknown";
65 CENSUSPlus_TOTALCHAR = "Total Characters: %d";
66 CENSUSPlus_TOTALCHAR_0 = "Total Characters: 0";
67 CENSUSPlus_TOTALCHARXP = "XP Factor: %d";
68 CENSUSPlus_TOTALCHARXP_0 = "XP Factor: 0";
69 CENSUSPlus_SCAN_PROGRESS = "Scan Progress: %d queries in the queue - %s";
70 CENSUSPlus_SCAN_PROGRESS_0 = "No Scan In Progress";
71 CENSUSPlus_AUTOCLOSEWHO = "Automatically Close Who";
72 CENSUSPlus_SHOWMINI = "Show Mini On Start";
73 CENSUSPlus_UNGUILDED = "(Unguilded)";
74 CENSUSPlus_TAKE = "Take";
75 CENSUSPlus_TAKEGUILD = "Take guild";
76 CENSUSPlus_TAKINGGUILD = "Taking guild";
77 CENSUSPlus_TOPGUILD = "Top Guilds By XP";
78 CENSUSPlus_RACE = "Races";
79 CENSUSPlus_CLASS = "Classes";
80 CENSUSPlus_LEVEL = "Levels";
81 CENSUSPlus_PURGE = "Purge";
82 CENSUSPlus_MAXXED = "MAXXED!";
83
84 CENSUSPlus_MAXIMIZE = "Maximize the CensusPlus Window";
85 CENSUSPlus_MINIMIZE = "Minimize the CensusPlus Window";
86 CENSUSPlus_BUTTON_MINIMIZE = "Minimize";
87
88 CENSUSPlus_DRUID = "Druid";
89 CENSUSPlus_HUNTER = "Hunter";
90 CENSUSPlus_MAGE = "Mage";
91 CENSUSPlus_PRIEST = "Priest";
92 CENSUSPlus_ROGUE = "Rogue";
93 CENSUSPlus_WARLOCK = "Warlock";
94 CENSUSPlus_WARRIOR = "Warrior";
95 CENSUSPlus_SHAMAN = "Shaman";
96 CENSUSPlus_PALADIN = "Paladin";
97 CENSUSPlus_DEATHKNIGHT = "Death Knight";
98
99 CENSUSPlus_DWARF = "Dwarf";
100 CENSUSPlus_GNOME = "Gnome";
101 CENSUSPlus_HUMAN = "Human";
102 CENSUSPlus_NIGHTELF = "Night Elf";
103 CENSUSPlus_ORC = "Orc";
104 CENSUSPlus_TAUREN = "Tauren";
105 CENSUSPlus_TROLL = "Troll";
106 CENSUSPlus_UNDEAD = "Undead";
107 CENSUSPlus_DRAENEI = "Draenei";
108 CENSUSPlus_BLOODELF = "Blood Elf";
109
110 CENSUSPlus_WarsongGulch = "Warsong Gulch";
111 CENSUSPlus_AlteracValley = "Alterac Valley";
112 CENSUSPlus_ArathiBasin = "Arathi Basin";
113 CENSUSPlus_EyeOfTheStorm = "Eye of the Storm";
114
115 CENSUSPLUS_US_LOCALE = "Select if you play on US Servers";
116 CENSUSPLUS_EU_LOCALE = "Select if you play on EURO Servers";
117 CENSUSPLUS_LOCALE_SELECT = "Select if you play on US or EURO servers";
118
119 CENSUSPlus_BUTTON_OPTIONS = "Options";
120 CENSUSPlus_OPTIONS_HEADER = "Census+ Options";
121 CENSUSPlus_ISINBG = "You are currently in a Battleground so a Census cannot be taken";
122 CENSUS_OPTIONS_BUTPOS = "Button Position";
123 CENSUS_OPTIONS_BUTSHOW = "Show Minimap Button";
124 CENSUS_OPTIONS_AUTOCENSUS = "Auto-Census";
125 CENSUS_OPTIONS_THISPROFILE = "Collect Profile for this Char";
126 CENSUS_OPTIONS_AUTOSTART = "Auto-Start";
127 CENSUS_OPTIONS_VERBOSE = "Verbose";
128 CENSUS_OPTIONS_SOUND_ON_COMPLETE = "Play Sound When Done";
129 CENSUS_OPTIONS_LOG_BARS = "Logarithmic Level Bars";
130
131 CENSUSPlus_AUTOSTART_TOOLTIP = "Enable Census+ to start automatically";
132 CENSUSPlus_VERBOSE_TOOLTIP = "Deselect to stop the spam!";
133 CENSUSPlus_AUTOCENSUS_TOOLTIP = "Enable Census+ to run automatically while playing";
134 CENSUSPlus_THISPROFILE_TOOLTIP = "Collect profile data for this character to upload to WarcraftRealms.com";
135
136 CENSUSPlus_BUTTON_CHARACTERS = "Show Chars";
137 CENSUSPlus_Characters = "Characters";
138
139 CENSUS_BUTTON_TOOLTIP = "Open CensusPlus";
140
141
142 --|cff979797[11:19:12]|r|c00000000|r |cffd8d8d8[|r|Hplayer:Rollee:93|h|cffd8d83f1|r:|cfffff468Rollee|r|h|cffd8d8d8]|r: Level 1 Troll Rogue - Durotar
143 --|Hplayer:Rollee|h[Rollee]|h: Level 1 Troll Rogue - Durotar
144 CENSUS_SINGLE_MATCH_PATTERN = "(.+)%: (%a+) (%d+) (.+) %- (.+)";
145
146 CENSUS_LEVEL_NO_GUILD = "%[(.+)%: Level (%d+) (%a+) (%a+) %- (.+)";
147 CENSUS_LEVEL_W_GUILD = "%[(.+)%: Level (%d+) (%a+) (%a+) %<(.+)%> %- (.+)";
148 CENSUS_LEVEL_W_GUILD_2 = "%[(.+)%: Level (%d+) (%a+) (%a+) (%a+) %<(.+)%> %- (.+)";
149 CENSUS_LEVEL_NO_GUILD_2 = "%[(.+)%: Level (%d+) (%a+) (%a+) (%a+) %- (.+)";
150
151 CENSUSPlus_CANCEL = "Cancel";
152
153 CENSUSPlus_OVERRIDE = "Census in progress, submitting override";
154 CENSUSPlus_OVERRIDE_COMPLETE = "Override complete resuming census";
155 CENSUSPlus_OVERRIDE_COMPLETE_BUT_PAUSED = "Override complete, but census has been paused";
156
157 CENSUSPlus_PURGE_LOCAL_CONFIRM = "Are you sure you wish to PURGE your local database?";
158 CENSUSPlus_OVERRIDE_COMPLET_PAUSED = "Override complete but Census has been paused, Click to Continue";
159
160 CENSUSPlus_YES = "Yes";
161 CENSUSPlus_NO = "No";
162 CENSUSPlus_CONTINUE = "Continue";
163
164 if ( GetLocale() == "frFR" ) then
165 -- Traduit par Juki <Unskilled>
166
167 CENSUSPlus_BUTTON_TEXT = "Census+";
168 CENSUSPlus_BUTTON_SUBTEXT = "Stats serveur";
169 CENSUSPlus_BUTTON_TIP = "Cliquez ici pour montrer ou masquer Census+.";
170 CENSUSPlus_HELP = " Utilisez /censusplus pour ouvrir et fermer Census+.";
171
172 CENSUSPlus_MSG1 = " Chargée - Tapez /censusplus ou /census+ pour ouvrir la fenêtre principale";
173 CENSUSPlus_MSG2 = "Utilisez /censusdate pour configurer la date du jour dans le format MM-DD-YYYY, ie.12-25-2004";
174
175 CENSUSPlus_UPLOAD = "";
176 CENSUSPlus_UPLOAD2 = "";
177 CENSUSPlus_SETTINGDATE = "Mise à jour de la date => ";
178 CENSUSPlus_PAUSE = "Pause";
179 CENSUSPlus_UNPAUSE = "Reprendre";
180 CENSUSPlus_STOP = "Stop";
181
182 CENSUSPlus_TAKECENSUS = "Faire un recensement des joueurs \nactuellement en ligne sur ce serveur \net dans cette faction";
183 CENSUSPlus_TAKEGUILDCENSUS = "Take a census of players \ncurrently online on this server \nand in this guild";
184 CENSUSPlus_PURGEDATABASE = "Supprime la base de donnée concernant.";
185 CENSUSPlus_PAUSECENSUS = "Mettre en pause le recensement en cours";
186 CENSUSPlus_STOPCENSUS = "Arrêter le recensement en cours"
187
188 CENSUSPlus_PURGEMSG = "Base de donnée supprimée.";
189 CENSUSPlus_ISINPROGRESS = "Un recensement est en cours, veuillez patienter";
190 CENSUSPlus_TAKINGONLINE = "Recensement des joueurs en cours ...";
191 CENSUSPlus_PLZUPDATEDATE = "SVP utilisez /censusdate pour configurer la date du jour pour des données plus précises. Format /censusdate MM-DD-YYYY, exemple, /censusdate 12-25-2004";
192 CENSUSPlus_NOCENSUS = "Aucun recensement en cours";
193 CENSUSPlus_FINISHED = "Recensement terminé. %s nouveaux personnages et %s mis à jour.";
194 CENSUSPlus_TOOMANY = "ERREUR: Trop de joueurs correspondants à : %s";
195 CENSUSPlus_WAITING = "En attente de lancement de requête /who ...";
196 CENSUSPlus_SENDING = "Envoi de requête /who %s";
197 CENSUSPlus_PROCESSING = "Analyse de %s personnages.";
198
199 CENSUSPlus_REALMNAME = "Serveur : %s";
200 CENSUSPlus_REALMUNKNOWN = "Serveur : Inconnu";
201 CENSUSPlus_FACTION = "Faction : %s";
202 CENSUSPlus_FACTIONUNKNOWN = "Faction : Inconnu";
203 CENSUSPlus_TOTALCHAR = "Nombre de personnages : %d";
204 CENSUSPlus_TOTALCHAR_0 = "Nombre de personnages : 0";
205 CENSUSPlus_AUTOCLOSEWHO = "Fermeture auto du /Who";
206 CENSUSPlus_SHOWMINI = "Montrer Mini au démarrage";
207 CENSUSPlus_UNGUILDED = "(Sans Guilde)";
208 CENSUSPlus_TAKE = "Recenser";
209 CENSUSPlus_TAKEGUILD = "Take guild";
210 CENSUSPlus_TAKINGGUILD = "Taking guild";
211 CENSUSPlus_TOPGUILD = "Meilleures guildes par XP";
212 CENSUSPlus_RACE = "Races";
213 CENSUSPlus_CLASS = "Classes";
214 CENSUSPlus_LEVEL = "Niveaux";
215 CENSUSPlus_PURGE = "Mettre à Zero";
216
217 CENSUSPlus_MAXIMIZE = "Agrandir la fenêtre CensusPlus";
218 CENSUSPlus_MINIMIZE = "Réduire la fenêtre CensusPlus";
219 CENSUSPlus_BUTTON_MINIMIZE = "Réduire";
220
221 CENSUSPlus_HORDE = "Horde";
222 CENSUSPlus_ALLIANCE = "Alliance";
223
224 CENSUSPlus_DRUID = "Druide";
225 CENSUSPlusFemale["Druidesse"] = "Druide";
226 CENSUSPlus_HUNTER = "Chasseur";
227 CENSUSPlusFemale["Chasseresse"] = "Chasseur";
228 CENSUSPlus_MAGE = "Mage";
229 CENSUSPlus_PRIEST = "Prêtre";
230 CENSUSPlusFemale["Prêtresse"] = "Prêtre";
231 CENSUSPlus_ROGUE = "Voleur";
232 CENSUSPlusFemale["Voleuse"] = "Voleur";
233 CENSUSPlus_WARLOCK = "Démoniste";
234 CENSUSPlus_WARRIOR = "Guerrier";
235 CENSUSPlusFemale["Guerrière"] = "Guerrier";
236 CENSUSPlus_SHAMAN = "Chaman";
237 CENSUSPlusFemale["Chamane"] = "Chaman";
238 CENSUSPlus_PALADIN = "Paladin";
239 CENSUSPlus_DEATHKNIGHT = "Chevalier de la mort";
240
241
242 CENSUSPlus_DWARF = "Nain";
243 CENSUSPlusFemale["Naine"] = "Nain";
244 CENSUSPlus_GNOME = "Gnome";
245 CENSUSPlus_HUMAN = "Humain";
246 CENSUSPlus_NIGHTELF = "Elfe de la nuit";
247 CENSUSPlus_ORC = "Orc";
248 CENSUSPlusFemale["Orque"] = "Orc";
249 CENSUSPlus_TAUREN = "Tauren";
250 CENSUSPlusFemale["Taurène"] = "Tauren";
251 CENSUSPlus_TROLL = "Troll";
252 CENSUSPlusFemale["Trollesse"] = "Troll";
253 CENSUSPlus_UNDEAD = "Mort-vivant";
254 CENSUSPlusFemale["Morte-vivante"] = "Mort-vivant";
255 CENSUSPlus_DRAENEI = "Draeneï";
256 CENSUSPlus_BLOODELF = "Elfe de sang";
257
258 CENSUSPlus_WarsongGulch = "Goulet des Warsong";
259 CENSUSPlus_AlteracValley = "Vallée d'Alterac";
260 CENSUSPlus_ArathiBasin = "Bassin d'Arathi";
261 CENSUSPlus_EyeOfTheStorm = "Oeil du cyclone";
262
263 CENSUSPLUS_US_LOCALE = "Choisissez si vous jouez sur un serveur US";
264 CENSUSPLUS_EU_LOCALE = "Choisissez si vous jouez sur un serveur EURO";
265 CENSUSPLUS_LOCALE_SELECT = "Choisissez la localité de votre serveur";
266
267 CENSUS_LEVEL_NO_GUILD = "%[(.+)%: Niveau (%d+) (%a+) (%a+) %- (.+)";
268 CENSUS_LEVEL_W_GUILD = "%[(.+)%: Niveau (%d+) (%a+) (%a+) %<(.+)%> %- (.+)";
269 CENSUS_LEVEL_W_GUILD_2 = "%[(.+)%: Niveau (%d+) (%a+) (%a+) (%a+) %<(.+)%> %- (.+)";
270 CENSUS_LEVEL_NO_GUILD_2 = "%[(.+)%: Niveau (%d+) (%a+) (%a+) (%a+) %- (.+)";
271
272
273
274
275 elseif ( GetLocale() == "deDE" ) then
276 -- Thanks to MadMax-X for this German translation
277 CENSUSPlus_BUTTON_TEXT = "Census+";
278 CENSUSPlus_BUTTON_SUBTEXT = "Realm Census";
279 CENSUSPlus_BUTTON_TIP = "Hier klicken um Census+ anzuzeigen oder zu verstecken.";
280 CENSUSPlus_HELP = " Benutze /censusplus um die Census+ Oberfläche zu öffnen.";
281
282 CENSUSPlus_MSG1 = " Geladen - mit /censusplus or /census+ wird das Hauptfenster geöffnet";
283 CENSUSPlus_MSG2 = "Mit /censusdate kann das aktuelle Datum im Format MM-DD-YYYY gesetzt werden, z.B. 12-25-2004";
284
285 CENSUSPlus_UPLOAD = "Lade deine CensusPlus Daten bei www.WarcraftRealms.com hoch!";
286 CENSUSPlus_SETTINGDATE = "Datum wird gesetzt => ";
287 CENSUSPlus_PAUSE = "Pause";
288 CENSUSPlus_UNPAUSE = "Weiter";
289 CENSUSPlus_STOP = "Stop";
290
291 CENSUSPlus_TAKECENSUS = "Zähle alle aktiven \nSpieler deiner Fraktion \nauf diesem Server.";
292 CENSUSPlus_TAKEGUILDCENSUS = "Zähle alle aktiven \nSpieler der Gilde \nauf diesem Server.";
293 CENSUSPlus_PURGEDATABASE = "Lösche die Datenbank.";
294 CENSUSPlus_PAUSECENSUS = "Pausiere die laufende Zählung";
295 CENSUSPlus_STOPCENSUS = "Stoppe die laufende Zählung";
296
297 CENSUSPlus_PURGEMSG = "Charakterdatenbank für Server %s und Fraktion %s gelöscht.";
298 CENSUSPlus_ISINPROGRESS = "Es läuft schon eine Zählung, versuch es später nochmal";
299 CENSUSPlus_TAKINGONLINE = "Zählung der gerade aktiven Charaktere...";
300 CENSUSPlus_PLZUPDATEDATE = "Bitte benutze /censusdate um das aktuelle Datum zu setzen, damit die Auswertung genauer wird. (Format: /censusdate MM-DD-YYYY, z.B. /censusdate 12-25-2004";
301 CENSUSPlus_NOCENSUS = "Es läuft gerade keine Zählung";
302 CENSUSPlus_FINISHED = "Zählung beendet. %s neue Charactere gefunden und %s aktualisiert.";
303 CENSUSPlus_TOOMANY = "FEHLER: Zu viele passende Charaktere: %s";
304 CENSUSPlus_WAITING = "Warte, um /who zu senden...";
305 CENSUSPlus_SENDING = "Sende /who %s";
306 CENSUSPlus_PROCESSING = "Verarbeite %s Charaktere.";
307
308 CENSUSPlus_REALMNAME = "Server: %s";
309 CENSUSPlus_REALMUNKNOWN = "Server: Unbekannt";
310 CENSUSPlus_FACTION = "Fraktion: %s";
311 CENSUSPlus_FACTIONUNKNOWN = "Fraktion: Unbekannt";
312 CENSUSPlus_TOTALCHAR = "Gesamte Charaktere: %d";
313 CENSUSPlus_TOTALCHAR_0 = "Gesamte Charaktere: 0";
314 CENSUSPlus_AUTOCLOSEWHO = "Schließe Who automatisch";
315 CENSUSPlus_SHOWMINI = "Mini-Button beim Start anzeigen";
316 CENSUSPlus_UNGUILDED = "(Gildenlos)";
317 CENSUSPlus_TAKE = "Zählen";
318 CENSUSPlus_TAKEGUILD = "Gilde zählen";
319 CENSUSPlus_TAKINGGUILD = "Zähle Gilde";
320 CENSUSPlus_TOPGUILD = "Top Gilden nach XP";
321 CENSUSPlus_RACE = "Rassen";
322 CENSUSPlus_CLASS = "Klassen";
323 CENSUSPlus_LEVEL = "Level";
324 CENSUSPlus_PURGE = "Löschen";
325
326 CENSUSPlus_MAXIMIZE = "Maximiere das CensusPlus Fenster";
327 CENSUSPlus_MINIMIZE = "Minimiere das CensusPlus Fenster";
328 CENSUSPlus_BUTTON_MINIMIZE = "Minimieren";
329
330 CENSUSPlus_HORDE = "Horde";
331 CENSUSPlus_ALLIANCE = "Alliance";
332
333 CENSUSPlus_DRUID = "Druide";
334 CENSUSPlusFemale["Druidin"] = "Druide";
335 CENSUSPlus_HUNTER = "Jäger";
336 CENSUSPlusFemale["Jägerin"] = "Jäger";
337 CENSUSPlus_MAGE = "Magier";
338 CENSUSPlusFemale["Magierin"] = "Magier";
339 CENSUSPlus_PRIEST = "Priester";
340 CENSUSPlusFemale["Priesterin"] = "Priester";
341 CENSUSPlus_ROGUE = "Schurke";
342 CENSUSPlusFemale["Schurkin"] = "Schurke";
343 CENSUSPlus_WARLOCK = "Hexenmeister";
344 CENSUSPlusFemale["Hexenmeisterin"] = "Hexenmeister";
345 CENSUSPlus_WARRIOR = "Krieger";
346 CENSUSPlusFemale["Kriegerin"] = "Krieger";
347 CENSUSPlus_SHAMAN = "Schamane";
348 CENSUSPlusFemale["Schamanin"] = "Schamane";
349 CENSUSPlus_PALADIN = "Paladin";
350 CENSUSPlus_DEATHKNIGHT = "Todesritter";
351
352 CENSUSPlus_DWARF = "Zwerg";
353 CENSUSPlus_GNOME = "Gnom";
354 CENSUSPlus_HUMAN = "Mensch";
355 CENSUSPlus_NIGHTELF = "Nachtelf";
356 CENSUSPlusFemale["Nachtelfe"] = "Nachtelf";
357 CENSUSPlus_ORC = "Orc";
358 CENSUSPlus_TAUREN = "Tauren";
359 CENSUSPlus_TROLL = "Troll";
360 CENSUSPlus_UNDEAD = "Untoter";
361 CENSUSPlusFemale["Untote"] = "Untoter";
362 CENSUSPlus_DRAENEI = "Draenei";
363 CENSUSPlus_BLOODELF = "Blutelf";
364 CENSUSPlusFemale["Blutelfe"] = "Blutelf";
365
366 CENSUSPlus_WarsongGulch = "Kriegshymnenschlucht";
367 CENSUSPlus_AlteracValley = "Alteractal";
368 CENSUSPlus_ArathiBasin = "Arathibecken";
369 CENSUSPlus_EyeOfTheStorm = "Auge des Sturms";
370
371 CENSUSPLUS_US_LOCALE= "Auswählen, wenn du auf US-Servern spielst";
372 CENSUSPLUS_EU_LOCALE= "Auswählen, wenn du auf EURO-Servern spielst";
373 CENSUSPLUS_LOCALE_SELECT= "Wähle, ob du auf US oder EURO-Servern spielst";
374
375 CENSUSPlus_BUTTON_OPTIONS = "Optionen";
376 CENSUSPlus_OPTIONS_HEADER = "Census+ Optionen";
377 CENSUSPlus_ISINBG = "Du befindest dich momentan auf einem Schlachtfeld und daher kann Census+ keine Abfrage duchführen.";
378 CENSUS_OPTIONS_BUTPOS = "Button Position";
379 CENSUS_OPTIONS_BUTSHOW = "Minimap-Button";
380 CENSUS_OPTIONS_AUTOSTART = "Autom. Starten";
381 CENSUS_OPTIONS_VERBOSE = "Verbose";
382 CENSUS_OPTIONS_AUTOCENSUS = "Autom. Zählen";
383 CENSUS_OPTIONS_THISPROFILE = "Profil nur diesen Charakter";
384 CENSUS_OPTIONS_EXIT = "Schließen";
385
386 CENSUS_BUTTON_TOOLTIP = "CensusPlus öffnen";
387
388 CENSUS_LEVEL_NO_GUILD = "(.+): Stufe (%d+) (.+) (.+) - (.+)";
389 CENSUS_LEVEL_W_GUILD = "(.+): Stufe (%d+) (.+) (.+) <(.+)> - (.+)";
390
391 elseif ( GetLocale() == "esES" ) then
392 -- Thanks to NeKRoMaNT EU-Zul'jin < contacto@nekromant.com> for the Spanish Translation
393 CENSUSPlus_BUTTON_TEXT = "Census+";
394 CENSUSPlus_BUTTON_SUBTEXT = "Estadísticas Servidor";
395 CENSUSPlus_BUTTON_TIP = "Pulsa aquí para mostrar u ocultar Census+.";
396 CENSUSPlus_HELP = " Usa /censusplus para abrir y cerrar la interfaz Census+.";
397
398 CENSUSPlus_MSG1 = " operativo - Escribe /censusplus o /census+ para abrir la ventana principal";
399
400 CENSUSPlus_UPLOAD = "¡Asegúrate de enviar tus datos a www.WarcraftRealms.com!";
401 CENSUSPlus_PAUSE = "Pausa";
402 CENSUSPlus_UNPAUSE = "Continuar";
403 CENSUSPlus_STOP = "Detener";
404 CENSUSPlus_PRUNE = "Resetear";
405
406 CENSUSPlus_TAKECENSUS = "Realizar un censo de jugadores \nconectados en este servidor \ny en esta facción";
407 CENSUSPlus_TAKEGUILDCENSUS = "Take a census of players \ncurrently online on this server \nand in this guild";
408 CENSUSPlus_PURGEDATABASE = "Purgar la base de datos.";
409 CENSUSPlus_PAUSECENSUS = "Pausar el censo actual";
410 CENSUSPlus_UNPAUSECENSUS = "Continuar el censo actual";
411 CENSUSPlus_STOPCENSUS = "Detener el censo actual";
412 CENSUSPlus_PRUNECENSUS = "Optimiza la base de datos borrando personajes sin censar en los últimos 30 días";
413
414 CENSUSPlus_PURGEMSG = "Base de datos de personajes purgada.";
415 CENSUSPlus_ISINPROGRESS = "Censo en progreso, vuelve a intentarlo mas tarde";
416 CENSUSPlus_TAKINGONLINE = "Realizando censo de personajes conectados...";
417 CENSUSPlus_NOCENSUS = "No hay ningún censo activo";
418 CENSUSPlus_FINISHED = "Se ha terminado de recoger datos. Encontrados %s nuevos personajes y %s actualizados. Duración %s.";
419 CENSUSPlus_TOOMANY = "AVISO: Demasiadas coincidencias: %s";
420 CENSUSPlus_WAITING = "Esperando a enviar petición /quien...";
421 CENSUSPlus_SENDING = "Enviando /quien %s";
422 CENSUSPlus_PROCESSING = "Procesando %s personajes.";
423
424 CENSUSPlus_REALMNAME = "Servidor: %s";
425 CENSUSPlus_REALMUNKNOWN = "ServidorReino: Desconocido";
426 CENSUSPlus_FACTION = "Facción: %s";
427 CENSUSPlus_FACTIONUNKNOWN = "Facción: Desconocida";
428 CENSUSPlus_LOCALE = "Región : %s";
429 CENSUSPlus_LOCALEUNKNOWN = "Región : Desconocida";
430 CENSUSPlus_TOTALCHAR = "Personajes Totales: %d";
431 CENSUSPlus_TOTALCHAR_0 = "Personajes Totales: 0";
432 CENSUSPlus_AUTOCLOSEWHO = "Cerrar Quien Automático";
433 CENSUSPlus_SHOWMINI = "Minimizado al inicio";
434 CENSUSPlus_UNGUILDED = "(Sin Hermandad)";
435 CENSUSPlus_TAKE = "Comenzar";
436 CENSUSPlus_TAKEGUILD = "Take guild";
437 CENSUSPlus_TAKINGGUILD = "Taking guild";
438 CENSUSPlus_TOPGUILD = "Clanes por Experiencia";
439 CENSUSPlus_RACE = "Razas";
440 CENSUSPlus_CLASS = "Clases";
441 CENSUSPlus_LEVEL = "Niveles";
442 CENSUSPlus_PURGE = "Purgar";
443 CENSUSPlus_MAXXED = "MAXXED!";
444
445 CENSUSPlus_MAXIMIZE = "Maximizar la ventana de CensusPlus";
446 CENSUSPlus_MINIMIZE = "Minimizar la ventana de CensusPlus";
447 CENSUSPlus_BUTTON_MINIMIZE = "Minimizar";
448
449 CENSUSPlus_HORDE = "Horde";
450 CENSUSPlus_ALLIANCE = "Alliance";
451
452 CENSUSPlus_DRUID = "Druida";
453 CENSUSPlus_HUNTER = "Cazador";
454 CENSUSPlus_MAGE = "Mago";
455 CENSUSPlus_PRIEST = "Sacerdote";
456 CENSUSPlus_ROGUE = "Pícaro";
457 CENSUSPlus_WARLOCK = "Brujo";
458 CENSUSPlus_WARRIOR = "Guerrero";
459 CENSUSPlus_SHAMAN = "Chamán";
460 CENSUSPlus_PALADIN = "Paladín";
461 CENSUSPlus_DEATHKNIGHT = "Caballero de la Muerte";
462
463 CENSUSPlus_DWARF = "Enano";
464 CENSUSPlus_GNOME = "Gnomo";
465 CENSUSPlus_HUMAN = "Humano";
466 CENSUSPlus_NIGHTELF = "Elfo de la noche";
467 CENSUSPlus_ORC = "Orco";
468 CENSUSPlus_TAUREN = "Tauren";
469 CENSUSPlus_TROLL = "Trol";
470 CENSUSPlus_UNDEAD = "No-muerto";
471 CENSUSPlus_DRAENEI = "Draenei";
472 CENSUSPlus_BLOODELF = "Elfo de sangre";
473
474 CENSUSPlus_DRUID = "Druida";
475 CENSUSPlus_HUNTER = "Cazador";
476 CENSUSPlusFemale["Cazadora"] = "Cazador";
477 CENSUSPlus_MAGE = "Mago";
478 CENSUSPlusFemale["Maga"] = "Mago";
479 CENSUSPlus_PRIEST = "Sacerdote";
480 CENSUSPlusFemale["Sacerdotisa"] = "Sacerdote";
481 CENSUSPlus_ROGUE = "Pícaro";
482 CENSUSPlusFemale["Pícara"] = "Pícaro";
483 CENSUSPlus_WARLOCK = "Brujo";
484 CENSUSPlusFemale["Bruja"] = "Brujo";
485 CENSUSPlus_WARRIOR = "Guerrero";
486 CENSUSPlusFemale["Guerrera"] = "Guerrero";
487 CENSUSPlus_SHAMAN = "Chamán";
488 CENSUSPlus_PALADIN = "Paladín";
489
490 CENSUSPlus_DWARF = "Enano";
491 CENSUSPlusFemale["Enana"] = "Enano";
492 CENSUSPlus_GNOME = "Gnomo";
493 CENSUSPlusFemale["Gnoma"] = "Gnomo";
494 CENSUSPlus_HUMAN = "Humano";
495 CENSUSPlusFemale["Humana"] = "Humano";
496 CENSUSPlus_NIGHTELF = "Elfo de la noche";
497 CENSUSPlusFemale["Elfa de la noche"] = "Elfo de la noche";
498 CENSUSPlus_ORC = "Orco";
499 CENSUSPlus_TAUREN = "Tauren";
500 CENSUSPlus_TROLL = "Trol";
501 CENSUSPlus_UNDEAD = "No-muerto";
502 CENSUSPlusFemale["No-muerta"] = "No-muerto";
503 CENSUSPlus_DRAENEI = "Draenei";
504 CENSUSPlus_BLOODELF = "Elfo de sangre";
505 CENSUSPlusFemale["Elfa de sangre"] = "Elfo de sangre";
506
507
508
509 CENSUSPlus_WarsongGulch = "Garganta Grito de Guerra";
510 CENSUSPlus_AlteracValley = "Valle de Alterac";
511 CENSUSPlus_ArathiBasin = "Cuenca de Arathi";
512 CENSUSPlus_EyeOfTheStorm = "Ojo de la Tormenta";
513
514 CENSUSPlus_BUTTON_OPTIONS = "Opciones";
515 CENSUSPlus_OPTIONS_HEADER = "Opciones Census+";
516 CENSUS_OPTIONS_BUTPOS = "Posición de botón";
517 CENSUS_OPTIONS_BUTSHOW = "Mostrar botón";
518
519 CENSUSPlus_BUTTON_CHARACTERS = "Mostrar personajes";
520 CENSUSPlus_Characters = "Personajes";
521
522 CENSUS_BUTTON_TOOLTIP = "Abrir CensusPlus";
523
524 CENSUS_LEVEL_NO_GUILD = "(.+): Nivel (%d+) (.+) (.+) - (.+)";
525 CENSUS_LEVEL_W_GUILD = "(.+): Nivel (%d+) (.+) (.+) <(.+)> - (.+)";
526
527 CENSUSPlus_CANCEL = "Cancelar";
528 elseif ( GetLocale() == "koKR" ) then
529 -- This is Korean Locale, Translated by crezol --
530
531 CENSUSPlusFemale = { };
532
533 CENSUSPlus_BUTTON_TEXT = "센서스+";
534 CENSUSPlus_BUTTON_SUBTEXT = "서버 센서스";
535 CENSUSPlus_BUTTON_TIP = "센서스+ 를 보이거나 숨기려면 클릭하십시오.";
536 CENSUSPlus_HELP = " /censusplus 를 사용해 센서스+ UI 를 열거나 닫을 수 있습니다.";
537
538 CENSUSPlus_MSG1 = "센서스+ 로드됨 - /censusplus 나 /census+ 를 입력해 메인 창을 띄울 수 있습니다.";
539 CENSUSPlus_MSG2 = "/censusdate 를 사용해 오늘의 날짜를 설정하세요.(형식: MM-DD-YYYY, 예. 12-25-2004)";
540
541 CENSUSPlus_UPLOAD = "www.WarcraftRealms.com 에서 센서스+ 업데이트를 확인하세요!";
542 CENSUSPlus_SETTINGDATE = "날짜 변경 => ";
543 CENSUSPlus_PAUSE = "일시중지";
544 CENSUSPlus_UNPAUSE = "계속";
545 CENSUSPlus_STOP = "중지";
546 CENSUSPlus_PRUNE = "간략화";
547
548 CENSUSPlus_TAKECENSUS = "현재 이 서버와 이 진영에 속한 \n플레이어를 센서스로 가져옵니다.";
549 CENSUSPlus_TAKEGUILDCENSUS = "Take a census of players \ncurrently online on this server \nand in this guild";
550 CENSUSPlus_PURGEDATABASE = "모든 데이터를 소거합니다.";
551 CENSUSPlus_PAUSECENSUS = "현재 센서스를 일시중지 합니다.";
552 CENSUSPlus_UNPAUSECENSUS = "일시중지된 센서스를 계속 진행합니다.";
553 CENSUSPlus_STOPCENSUS = "활동중인 센서스+를 중지합니다.";
554 CENSUSPlus_PRUNECENSUS = "30일동안 검색되지 않은 플레이어를 \n데이터베이스에서 제거해 간략화 합니다.";
555
556 CENSUSPlus_PRUNEINFO = "%d 케릭터 간략화됨.";
557
558 CENSUSPlus_PURGEMSG = "케릭터 데이터베이스가 소거되었습니다.";
559 CENSUSPlus_ISINPROGRESS = "센서스+가 진행중입니다, 나중에 다시 시도하십시오.";
560 CENSUSPlus_TAKINGONLINE = "온라인 상태의 케릭터를 센서스로 가져오는 중입니다...";
561 CENSUSPlus_PLZUPDATEDATE = "좀더 정확한 데이터를 얻기 위해 /censusdate 를 사용해 오늘 날짜를 수정하십시오. (형식 /censusdate MM-DD-YYYY, 예, /censusdate 12-25-2004)";
562 CENSUSPlus_NOCENSUS = "센서스가 현재 진행중이 아닙니다.";
563 CENSUSPlus_FINISHED = "데이터 수집 완료. %s 의 새 케릭터가 검색되어 총 %s 케릭터를 확인했습니다. 소요 시간 :%s ";
564 CENSUSPlus_TOOMANY = "경고: 너무 많은 케릭터 일치: %s";
565 CENSUSPlus_WAITING = "누구 명령어를 보내기 위해 기다리는 중...";
566 CENSUSPlus_SENDING = "검색중 : /누구 ";
567 CENSUSPlus_PROCESSING = "%s 케릭터를 수집함.";
568
569 CENSUSPlus_REALMNAME = "서버: %s";
570 CENSUSPlus_REALMUNKNOWN = "서버: 알수없음";
571 CENSUSPlus_FACTION = "진영: %s";
572 CENSUSPlus_FACTIONUNKNOWN = "진영: 알수없음";
573 CENSUSPlus_LOCALE = "Locale : %s";
574 CENSUSPlus_LOCALEUNKNOWN = "Locale : 알수없음";
575 CENSUSPlus_TOTALCHAR = "모든 케릭터: %d";
576 CENSUSPlus_TOTALCHAR_0 = "모든 케릭터: 0";
577 CENSUSPlus_TOTALCHARXP = "XP 지수: %d";
578 CENSUSPlus_TOTALCHARXP_0 = "XP 지수: 0";
579 CENSUSPlus_SCAN_PROGRESS = "검색 진행중: %d 개의 질의 대기중 - %s";
580 CENSUSPlus_SCAN_PROGRESS_0 = "진행중인 검색이 없습니다.";
581 CENSUSPlus_AUTOCLOSEWHO = "누구 창 자동으로 닫기";
582 CENSUSPlus_SHOWMINI = "시작시 최소화 보기";
583 CENSUSPlus_UNGUILDED = "(길드없음)";
584 CENSUSPlus_TAKE = "가져오기";
585 CENSUSPlus_TAKEGUILD = "Take guild";
586 CENSUSPlus_TAKINGGUILD = "Taking guild";
587 CENSUSPlus_TOPGUILD = "XP 에 의한 길드 순위";
588 CENSUSPlus_RACE = "종족";
589 CENSUSPlus_CLASS = "직업";
590 CENSUSPlus_LEVEL = "레벨";
591 CENSUSPlus_PURGE = "소거";
592 CENSUSPlus_MAXXED = "MAXXED!";
593
594 CENSUSPlus_MAXIMIZE = "센서스+ 창 최대화";
595 CENSUSPlus_MINIMIZE = "센서스+ 창 최소화";
596 CENSUSPlus_BUTTON_MINIMIZE = "최소화";
597
598 CENSUSPlus_DRUID = "드루이드";
599 CENSUSPlus_HUNTER = "사냥꾼";
600 CENSUSPlus_MAGE = "마법사";
601 CENSUSPlus_PRIEST = "사제";
602 CENSUSPlus_ROGUE = "도적";
603 CENSUSPlus_WARLOCK = "흑마법사";
604 CENSUSPlus_WARRIOR = "전사";
605 CENSUSPlus_SHAMAN = "주술사";
606 CENSUSPlus_PALADIN = "성기사";
607 CENSUSPlus_DEATHKNIGHT = "죽음의 기사";
608
609 CENSUSPlus_DWARF = "드워프";
610 CENSUSPlus_GNOME = "노움";
611 CENSUSPlus_HUMAN = "인간";
612 CENSUSPlus_NIGHTELF = "나이트 엘프";
613 CENSUSPlus_ORC = "오크";
614 CENSUSPlus_TAUREN = "타우렌";
615 CENSUSPlus_TROLL = "트롤";
616 CENSUSPlus_UNDEAD = "언데드";
617 CENSUSPlus_DRAENEI = "드레나이";
618 CENSUSPlus_BLOODELF = "블러드 엘프";
619
620 CENSUSPlus_WarsongGulch = "전쟁노래 협곡";
621 CENSUSPlus_AlteracValley = "알터렉 계곡";
622 CENSUSPlus_ArathiBasin = "아라시 분지";
623 CENSUSPlus_EyeOfTheStorm = "폭풍의 눈";
624
625 CENSUSPLUS_US_LOCALE = "Select if you play on US Servers";
626 CENSUSPLUS_EU_LOCALE = "Select if you play on EURO Servers";
627 CENSUSPLUS_LOCALE_SELECT = "Select if you play on US or EURO servers";
628
629 CENSUSPlus_BUTTON_OPTIONS = "설정";
630 CENSUSPlus_OPTIONS_HEADER = "센서스+ 설정";
631 CENSUSPlus_ISINBG = "현재 전장에 있기 때문에 센서스가 작동하지 않습니다.";
632 CENSUS_OPTIONS_BUTPOS = "버튼 위치";
633 CENSUS_OPTIONS_BUTSHOW = "미니맵 버튼 보이기";
634 CENSUS_OPTIONS_AUTOCENSUS = "자동-센서스";
635 CENSUS_OPTIONS_THISPROFILE = "이 케릭터를 위해 프로필 모으기";
636 CENSUS_OPTIONS_AUTOSTART = "자동-시작";
637 CENSUS_OPTIONS_VERBOSE = "모두 알림";
638 CENSUS_OPTIONS_SOUND_ON_COMPLETE = "종료시 소리 재생";
639 CENSUS_OPTIONS_LOG_BARS = "로그마틱 레벨 그래프";
640
641 CENSUSPlus_AUTOSTART_TOOLTIP = "자동으로 센서스+ 활성화";
642 CENSUSPlus_VERBOSE_TOOLTIP = "스팸 메시지를 멈추려면 해제하세요!";
643 CENSUSPlus_AUTOCENSUS_TOOLTIP = "플레이 시 자동으로 센서스+ 검색 시작";
644 CENSUSPlus_THISPROFILE_TOOLTIP = "WarcraftRealms.com 에 업로드 하기 위해 이 케릭터의 프로필 데이터를 모읍니다.";
645
646 CENSUSPlus_BUTTON_CHARACTERS = "케릭터 보기";
647 CENSUSPlus_Characters = "케릭터";
648
649 CENSUS_BUTTON_TOOLTIP = "센서스+ 열기";
650
651
652 --|cff979797[11:19:12]|r|c00000000|r |cffd8d8d8[|r|Hplayer:Rollee:93|h|cffd8d83f1|r:|cfffff468Rollee|r|h|cffd8d8d8]|r: Level 1 Troll Rogue - Durotar
653 --|Hplayer:Rollee|h[Rollee]|h: Level 1 Troll Rogue - Durotar
654 CENSUS_SINGLE_MATCH_PATTERN = "(.+)%: (%a+) (%d+) (.+) %- (.+)";
655
656 CENSUS_LEVEL_NO_GUILD = "%[(.+)%: 레벨 (%d+) (%a+) (%a+) %- (.+)";
657 CENSUS_LEVEL_W_GUILD = "%[(.+)%: 레벨 (%d+) (%a+) (%a+) %<(.+)%> %- (.+)";
658 CENSUS_LEVEL_W_GUILD_2 = "%[(.+)%: 레벨 (%d+) (%a+) (%a+) (%a+) %<(.+)%> %- (.+)";
659 CENSUS_LEVEL_NO_GUILD_2 = "%[(.+)%: 레벨 (%d+) (%a+) (%a+) (%a+) %- (.+)";
660
661 CENSUSPlus_CANCEL = "취소";
662
663 CENSUSPlus_OVERRIDE = "센서스가 작업중입니다, 우선적으로 해당 명령을 수행합니다. 잠시만 기다려주세요.";
664 CENSUSPlus_OVERRIDE_COMPLETE = "우선 시행 완료, 센서스 검색을 재개합니다.";
665 CENSUSPlus_OVERRIDE_COMPLETE_BUT_PAUSED = "우선 시행 완료, 센서스 일시중지됨.";
666
667 CENSUSPlus_PURGE_LOCAL_CONFIRM = "정말로 로컬 데이터베이스의 모든 자료를 소거하겠습니까?";
668 CENSUSPlus_OVERRIDE_COMPLET_PAUSED = "우선 시행이 완료되었지만 센서스가 일시중지 되었습니다. 계속 버튼을 클릭하세요.";
669
670 CENSUSPlus_YES = "예";
671 CENSUSPlus_NO = "아니오";
672 CENSUSPlus_CONTINUE = "계속";
673
674 end
675