vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | local L = AceLibrary("AceLocale-2.0"):new("XLoot") |
2 | |||
3 | L:RegisterTranslations("enUS", function() |
||
4 | return { |
||
5 | optLock = "Lock XLoot frame", |
||
6 | optOptions = "Options GUI", |
||
7 | optBehavior = "Behavior options", |
||
8 | optCursor = "Snap XLoot frame to cursor", |
||
9 | optSmartsnap = "Smart cursor snapping", |
||
10 | optSnapoffset = "Snap offset", |
||
11 | optCollapse = "Collapse loot buttons", |
||
12 | optDragborder = "Draggable border", |
||
13 | optLootexpand = "Fit frame width to loot names", |
||
14 | optAltoptions = "Show menu on Alt+RightClick", |
||
15 | optSwiftloot = "Don't show frame when Shift-Looting", |
||
16 | optQualitytext = "Show item quality text", |
||
17 | optInfotext = "Show item info text", |
||
18 | optAppearance = "Appearance", |
||
19 | optOskin = "Use oSkin", |
||
20 | optQualityborder = "Border quality coloring", |
||
21 | optQualityframe = "Background quality coloring", |
||
22 | optLootqualityborder = "Loot border quality coloring", |
||
23 | optBgcolor = "Frame Background Color", |
||
24 | optBordercolor = "Frame Border Color", |
||
25 | optLootbgcolor = "Loot Background Color", |
||
26 | optLootbordercolor = "Loot Border Color", |
||
27 | optScale = "Scale", |
||
28 | optAdvanced = "Advanced options", |
||
29 | optDebug = "Debug Messages", |
||
30 | optDefaults = "Reset options to default", |
||
31 | |||
32 | descLock = "Makes loot frame unmoveable", |
||
33 | descOptions = "Show the options dropdown", |
||
34 | descBehavior = "Change how XLoot behaves", |
||
35 | descCursor = "Snap the loot frame to the cursor whenever you loot something", |
||
36 | descSmartsnap = "Snaps the loot frame only vertically to the cursor when the list shifts as you loot a item so it doesn't jump around", |
||
37 | descSnapoffset = "Sets a distance from the middle of the first loot icon to snap to, horizontally", |
||
38 | descCollapse = "Collapse looted (empty) buttons and place cursor over next frame if the Cursor option is enabled.", |
||
39 | descDragborder = "Allows the loot window to be moved by dragging the frame's border, instead of just the buttons, which can otherwise be clicked through", |
||
40 | descLootexpand = "Changes frame width to match loot names. Short names mean thin frames, long names make the frames widen", |
||
41 | descAltoptions = "Allows you to Alt+RightClick on loot to bring up the XLoot menu. Can be disabled to not mess with other mods.", |
||
42 | descSwiftloot = "Attempts to find out when loot is being shift-rightclick-looted, and never shows the frame if there is space for all items. Should reduce lag when shift-looting, disable if you run into problems.", |
||
43 | descQualitytext = "Show a additional line above the item name with the item's Quality", |
||
44 | descInfotext = "Show a addition line below the item name with the item's Information", |
||
45 | descAppearance = "Coloring, scaling, and skin of XLootFrame and each individual loot button", |
||
46 | descOskin = "Use oSkin to skin the lootframe if oSkin is available", |
||
47 | descQualityborder = "Colors lootframe border by the highest quality item", |
||
48 | descQualityframe = "Colors lootframe background by the highest quality item", |
||
49 | descLootqualityborder = "Colors loot borders by quality", |
||
50 | descBgcolor = "Change the background color for the loot frame itself", |
||
51 | descBordercolor = "Change the border color of the frame itself", |
||
52 | descLootbgcolor = "Change the background color for every loot item", |
||
53 | descLootbordercolor = "Change the border color of every loot item", |
||
54 | descScale = "Scale of the loot frame", |
||
55 | descAdvanced = "Options you may not want to mess with, but can anyway.", |
||
56 | descDebug = "Show debug messages", |
||
57 | descDefaults = "Reinstate the database that comes with XLoot and set all the options back to their defaults", |
||
58 | |||
59 | qualityQest = "Quest item", |
||
60 | |||
61 | guiTitle = "XLoot Options", |
||
62 | } |
||
63 | end) |