vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 ------------------------------------------------------
2 -- localization.lua
3 -- for AutoCraft
4 -- English strings by default, localizations override with their own.
5 ------------------------------------------------------
6  
7 -- runtime UI strings
8 FAC_CREATING = "Creating: ";
9 FAC_QUEUED = "Queued: ";
10 FAC_CLICK_TO_CANCEL = "(Click to cancel)";
11 FAC_CLICK_TO_CANCEL_FORMAT = "(Click to cancel %s)";
12 FAC_ADDITIONAL_ENTRIES = "%d addtional entries:";
13 FAC_QUEUEING = "Queueing ";
14 FAC_QUEUE_PAUSED = "Queue Paused";
15 FAC_SWITCH_WINDOW_FORMAT = "Please open your %s window.";
16 FAC_WAITING_SPELL_FORMAT = "Waiting for %s to finish.";
17 FAC_BUYING_FORMAT = "Buying "..GFWUtils.Hilite("%dx").." %s";
18 FAC_BUYING_SETS_FORMAT = "Buying "..GFWUtils.Hilite("%dx").." sets of %s"; -- used when buying something that comes in sets of more than 1 (e.g. vials)
19 FAC_NOT_AVAILABLE_FORMAT = "This vendor is out of %s.";
20 FAC_ALREADY_ENOUGH_FORMAT = "You already have enough %s for %dx %s.";
21 FAC_NOTHING_TO_QUEUE = "Nothing available to add to queue.";
22  
23 -- XML UI strings
24 FAC_QUEUE_BUTTON = "Queue";
25 FAC_QUEUE_ALL_BUTTON = "Queue All";
26 FAC_QUEUE_EVERYTHING_BUTTON = "Queue Everything";
27 FAC_RUN_QUEUE_BUTTON = "Run Queue";
28 FAC_PAUSE_QUEUE_BUTTON = "Pause";
29 FAC_CLEAR_QUEUE_BUTTON = "Clear Queue";
30 FAC_BUY_BUTTON = "Buy";
31 BUY_BUTTON_TOOLTIP = "Buy enough reagents to make %d of this item";
32 QUEUE_BUTTON_TOOLTIP = "Add %d of this item to the queue";
33 FAC_RUN_AUTOMATICALLY_CHECKBUTTON = "Run Queue Automatically";
34 RUN_AUTOMATICALLY_TOOLTIP = "Starts processing items as soon as they're added to the queue";
35  
36 if ( GetLocale() == "deDE" ) then
37  
38 FAC_CREATING = "Stelle her: ";
39 FAC_QUEUED = "In Auftragschlange: ";
40 FAC_CLICK_TO_CANCEL = "(Klick zum Abbrechen)";
41 FAC_QUEUEING = "Auftragschlagne in Arbeit ";
42  
43 -- These don't fit the buttons, and there's not really room to resize them.
44 --FAC_QUEUE_BUTTON = "Auftragschlange";
45 --FAC_QUEUE_ALL_BUTTON = "Alle in Schlange";
46 --FAC_QUEUE_EVERYTHING_BUTTON = "Sämtliche in Schlange";
47  
48 end
49  
50 if ( GetLocale() == "frFR" ) then
51  
52 FAC_QUEUE_BUTTON = "Queue";
53 FAC_QUEUE_ALL_BUTTON = "Tous en queue";
54 FAC_QUEUE_EVERYTHING_BUTTON = "Tous obj. en queue";
55 FAC_RUN_QUEUE_BUTTON = "Lancer";
56 FAC_PAUSE_QUEUE_BUTTON = "Pause";
57 FAC_CLEAR_QUEUE_BUTTON = "Effacer";
58 FAC_BUY_BUTTON = "Achat";
59 BUY_BUTTON_TOOLTIP = "Acheter assez d'ingrådient pour fabriquer %d items";
60 QUEUE_BUTTON_TOOLTIP = "Ajoute %d items à la file d'attente";
61 FAC_RUN_AUTOMATICALLY_CHECKBUTTON = "Lance la file d'attente automatiquement";
62 RUN_AUTOMATICALLY_TOOLTIP = "Lance la fabrication des objets dès qu'ils sont ajoutés à la file";
63  
64 end