1   --
2   --   EquipCompare localization information
 3   --
 4   --   Contents:
 5   --   * Localized versions of item names that are not available by default from Blizzard
 6   --   * Usage information
 7   --   * Slash command feedback texts
 8   --   * Khaos/Cosmos labels and information
 9   --   * Miscellaneous labels
10   --
11   --   Supported languages:
12   --   English, French, German, Korean, Simplified Chinese, Traditional Chinese
13   --
14   --   Non-english localizations are placed in seperate files.
15   --
16
17   -- Version ID
18   EQUIPCOMPARE_VERSIONID = "2.9.8";
19
20   -- "Bonus" inventory types
21   -- WARNING: these lines must match the text displayed by the client exactly.
22   -- Can't use arbitrary phrases. Edit and translate with care.
23   EQUIPCOMPARE_INVTYPE_WAND = "Wand";
24   EQUIPCOMPARE_INVTYPE_GUN = "Gun";
25   EQUIPCOMPARE_INVTYPE_GUNPROJECTILE = "Projectile";
26   EQUIPCOMPARE_INVTYPE_BOWPROJECTILE = "Projectile";
27   EQUIPCOMPARE_INVTYPE_CROSSBOW = "Crossbow";
28   EQUIPCOMPARE_INVTYPE_THROWN = "Thrown";
29
30   -- Usage text
31   EQUIPCOMPARE_USAGE_TEXT = { "EquipCompare "..EQUIPCOMPARE_VERSIONID.." Usage:",
32                               "Hover over items to compare them easily with ones you
                                 have equipped.",
33                               "Slash Commands:",
34                               "/eqc          - toggle EquipCompare on/off",
35                               "/eqc [on|off] - turn EquipCompare on|off",
36                               "/eqc control - toggle Control key mode on/off",
37                               "/eqc cv       - toggle integration with
                                 CharactersViewer",
38                               "/eqc alt      - toggle Alt key mode on/off",
39                               "/eqc shift    - toggle shifting tooltips up when too
                                 tall",
40                               "/eqc help     - this text",
41                               "(You can use /equipcompare instead of /eqc)" }
42
43   -- Feedback text
44   EQUIPCOMPARE_HELPTIP = "(Type /equipcompare help for usage)";
45   EQUIPCOMPARE_TOGGLE_ON = "EquipCompare is now enabled.";
46   EQUIPCOMPARE_TOGGLE_OFF = "EquipCompare is now disabled.";
47   EQUIPCOMPARE_TOGGLECONTROL_ON = "EquipCompare Ctrl mode enabled.";
48   EQUIPCOMPARE_TOGGLECONTROL_OFF = "EquipCompare Ctrl mode disabled.";
49   EQUIPCOMPARE_TOGGLECV_ON = "EquipCompare integration with CharactersViewer enabled.";
50   EQUIPCOMPARE_TOGGLECV_OFF = "EquipCompare integration with CharactersViewer
     disabled.";
51   EQUIPCOMPARE_TOGGLEALT_ON = "EquipCompare Alt mode enabled.";
52   EQUIPCOMPARE_TOGGLEALT_OFF = "EquipCompare Alt mode disabled.";
53   EQUIPCOMPARE_SHIFTUP_ON = "EquipCompare shifting tooltips up.";
54   EQUIPCOMPARE_SHIFTUP_OFF = "EquipCompare not shifting tooltips up.";
55
56   -- Cosmos configuration texts
57   EQUIPCOMPARE_COSMOS_SECTION = "EquipCompare";
58   EQUIPCOMPARE_COSMOS_SECTION_INFO = "Options for Equipment Comparison tooltips.";
59   EQUIPCOMPARE_COSMOS_HEADER = "EquipCompare "..EQUIPCOMPARE_VERSIONID;
60   EQUIPCOMPARE_COSMOS_HEADER_INFO = "Options for Equipment Comparison tooltips.";
61   EQUIPCOMPARE_COSMOS_ENABLE = "Enable Equipment Comparison tooltips";
62   EQUIPCOMPARE_COSMOS_ENABLE_INFO = "By enabling this option you get extra tooltips
     when hovering "..
63                                     "over items, showing the statistics of the
                                       corresponding "..
64                                     "currently equipped item.";
65   EQUIPCOMPARE_COSMOS_CONTROLMODE = "Enable Control key mode";
66   EQUIPCOMPARE_COSMOS_CONTROLMODE_INFO = "By enabling this option you get the extra "..
67                                           "tooltips only whilst holding the Control
                                             key down.";
68   EQUIPCOMPARE_COSMOS_CVMODE = "Enable integration with CharactersViewer (if present)";
69   EQUIPCOMPARE_COSMOS_CVMODE_INFO = "If enabled, the comparison tooltips show the
     inventory of the "..
70                                           "character selected in CharactersViewer,
                                             instead of the "..
71                                           "player's inventory.";
72   EQUIPCOMPARE_COSMOS_ALTMODE = "Enable Alt key mode for CharactersViewer";
73   EQUIPCOMPARE_COSMOS_ALTMODE_INFO = "If enabled, you get comparison tooltips for the "
     ..
74                                           "character selected in CharactersViewer only
                                             if you "..
75                                           "hold the Alt key down.";
76   EQUIPCOMPARE_COSMOS_SHIFTUP = "Shift comparison tooltips up if necessary"
77   EQUIPCOMPARE_COSMOS_SHIFTUP_INFO = "If enabled, the comparison tooltips will be
     shifted "..
78                                           "upwards if their bottom would go below the
                                             bottom "..
79                                           "of the main tooltip.";
80   EQUIPCOMPARE_COSMOS_SLASH_DESC = "Allows you to turn EquipCompare on and off. Type
     /equipcompare help for usage."
81
82   -- Misc labels
83   EQUIPCOMPARE_EQUIPPED_LABEL = "Currently Equipped";
84   EQUIPCOMPARE_GREETING = "EquipCompare "..EQUIPCOMPARE_VERSIONID.." Loaded. Enjoy.";
85