vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 AD_VERSION_INFO = "Version %s"
2 AD_BYLINE = "By Pacer Dawn (pacer.dawn@earthlink.net)"
3 AD_LOAD_MSG = "Loaded - v%s"
4 AD_TAG = "AutoDecline:"
5 AD_DEBUG_TAG = "AD:DEBUG:"
6  
7 AD_SYNTAX = "Syntax: /ad [guild {on|off}|party {on|off}|duel {on|off}|charter {on|off}|alert {on|off}|partyplayer {add||remove} {name}|partyplayer list|partyguild {on|off}|partyfriends {on|off}|partywhisper {on|off}|{partyaction|guildaction|duelaction|charteraction} {action||remove action#|list}|addlastinvite|options|status|about]"
8 AD_HELP = "/ad, /autod, or /autodecline to bring up options window"
9 AD_PARTY_INVITE = "Party invite from %s was declined."
10 AD_GUILD_INVITE = "Guild invite from %s to guild %s was declined."
11 AD_DUEL_REQUEST = "Duel request from %s was declined."
12 AD_PETITION_REQUEST = "Charter request from %s for %s was denied."
13  
14 -- This is no longer used
15 -- AD_STATUS = "Status - Party: %s, Guild: %s, Duel: %s, Charter: %s, Party Friends: %s, Alert: %s"
16  
17 AD_OFF = "Off"
18 AD_ON = "On"
19  
20 AD_ALERT_ON = "Alerts are ON (show alerts)"
21 AD_ALERT_OFF = "Alerts are OFF (quiet mode)"
22 AD_DUEL_OFF = "Duel is OFF (accepting duel requests)"
23 AD_DUEL_ON = "Duel is ON (declining duel requests)"
24 AD_PARTY_OFF = "Party is OFF (accepting party requests)"
25 AD_PARTY_ON = "Party is ON (declining party requests)"
26 AD_GUILD_OFF = "Guild is OFF (accepting guild invites)"
27 AD_GUILD_ON = "Guild is ON (declining guild invites)"
28 AD_CHARTER_OFF = "Charter is OFF (accepting charters)"
29 AD_CHARTER_ON = "Charter is ON (declining charters)"
30 AD_PARTYFRIENDS_ON = "Allowing party invites from friends"
31 AD_PARTYFRIENDS_OFF = "Not allowing party invites from friends"
32 AD_PARTYWHISPER_ON = "Allowing party invites from last player to whisper"
33 AD_PARTYWHISPER_OFF = "Not allowing party invites from last player to whisper"
34  
35 AD_ALLCHARS_OFF = "Using the current settings for all characters"
36 AD_ALLCHARS_ON = "No longer using the current settings for all characters"
37  
38 AD_NAME_NOT_FOUND = "ERROR: Your player name was not found, addon unloading"
39  
40 AD_PARTYPLAYER_ADD = "Always allowing party invites from player '%s'."
41 AD_PARTYPLAYER_REMOVE = "No longer always allowing party invites from player '%s'."
42 AD_PARTYPLAYER_LIST = "Invites are allowed from the following people:"
43 AD_PARTYPLAYER_CLEAR = "The list of players to allow party invites from has been cleared."
44  
45 AD_PARTYGUILD_ADD = "Always allowing party invites from guild '%s'."
46 AD_PARTYGUILD_REMOVE = "No longer always allowing party invites from guild '%s'."
47 AD_PARTYGUILD_LIST = "Invites are allowed from the following guilds:"
48 AD_PARTYGUILD_CLEAR = "The list of guilds to allow party invites from has been cleared."
49  
50 AD_CHECK_GUILD = "Guild Invites"
51 AD_CHECK_PARTY = "Party Invites"
52 AD_CHECK_DUEL = "Duel Requests"
53 AD_CHECK_CHARTER = "Charter Requests"
54  
55 AD_TIP_CHARTER = "Check to automatically close all guild charter petitions"
56 AD_TIP_GUILD = "Check to automatically decline all guild invites"
57 AD_TIP_PARTY = "Check to automatically decline all party invites"
58 AD_TIP_DUEL = "Check to automatically decline all duel requests"
59  
60 AD_CHECK_ALLOWPARTYFRIEND = "Allow Party Invites From Friends"
61 AD_CHECK_ALLOWPARTYWHISPER = "Allow Party Invites From Last Whisper"
62  
63 AD_TIP_ALLOWPARTYFRIEND = "Check to always allow invites from friends on the friends list."
64 AD_TIP_ALLOWPARTYWHISPER = "Check to always allow invites from the last player to send you a whisper/tell."
65  
66 AD_CHECK_SHOWALERTS = "Show Alerts"
67 AD_TIP_SHOWALERT = "Check to show an alert when something is automatically declined"
68  
69 AD_DIALOG_HEADER = "AutoDecline Options"
70 AD_DIALOG_CHECKHEADER = "AutoDecline the following:"
71  
72 AD_BUTTON_CANCEL = "Cancel"
73 AD_BUTTON_OKAY = "Save"
74  
75 AD_CHECK_ALLCHARS = "Use these settings for all characters"
76 AD_TIP_ALLCHARS = "Check to use the current toggle settings for all characters on this account."
77  
78 AD_DISPLAYACTION_NONE = "No actions defined for decline type %s."
79 AD_DISPLAYACTION_HEADER = "Current actions for decline type %s:"
80  
81 AD_ADDACTION = " actions for decline type %s:"
82 AD_ADDACTION_REMOVE = "Removing" .. AD_ADDACTION
83 AD_ADDACTION_ADD = "Adding" .. AD_ADDACTION
84 AD_ADDACTION_CLEAR = "Clearing all" .. AD_ADDACTION
85  
86 AD_ADDACTION_ERROR = "Unknown action command: %s"
87  
88 AD_LASTINVITE_ADD = "Now allowing party invites from %s."
89 AD_LASTINVITE_NONE = "You have received no party invites this session."
90  
91 AD_PARTYGUILD_ON = "Allowing party invites from guild members"
92 AD_PARTYGUILD_OFF = "Not allowing party invites from guild members"
93 AD_CHECK_ALLOWPARTYGUILD = "Allow Party Invites From Guild Members"
94 AD_TIP_ALLOWPARTYGUILD = "Check to always allow invites from guild members."
95  
96 AD_NONE_SPECIFIED = "(none specified)"