vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 strings.lua
3  
4 Strings for ImprovedIgnore. Makes for easy editing and localization.
5 ]]
6  
7 -- Generic function strings.
8 STR_IIGNORE_FUNC_LOADED = "ImprovedIgnore %s loaded. Type /ii for help."
9 STR_IIGNORE_FUNC_AUTO = "Auto-removing %s from your ignore list."
10 STR_IIGNORE_FUNC_BLOCK = "Blocking whisper to %s, who is on your ignore list."
11  
12 -- Help strings.
13 STR_IIGNORE_HELP_HEADER = "ImprovedIgnore %s."
14 STR_IIGNORE_HELP_STATUS = "/ii status - shows ImprovedIgnore settings."
15 STR_IIGNORE_HELP_WHISPER = "/ii whisper off/auto/on - changes ImprovedIgnore whisper setting."
16  
17 -- Status strings.
18 STR_IIGNORE_STATUS_HEADER = "ImprovedIgnore status:"
19 STR_IIGNORE_STATUS_WHISPERON = "Whispers to ignored players will go through. (WoW Default)"
20 STR_IIGNORE_STATUS_WHISPERAUTO = "Whispers to ignored players will auto-remove the player from your ignore list."
21 STR_IIGNORE_STATUS_WHISPEROFF = "Whispers to ignored players will be blocked."
22  
23 -- Whisper setting strings.
24 STR_IIGNORE_WHISPER_ON = "Whispers to ignored players will now go through."
25 STR_IIGNORE_WHISPER_AUTO = "Whispers to ignored players will now auto-remove the player from your ignore list."
26 STR_IIGNORE_WHISPER_OFF = "Whispers to ignored players will now be blocked."
27  
28 -- Command-line and setting strings.
29 STR_IIGNORE_COMMAND_ON = "on"
30 STR_IIGNORE_COMMAND_AUTO = "auto"
31 STR_IIGNORE_COMMAND_OFF = "off"
32 STR_IIGNORE_COMMAND_STATUS = "status"
33 STR_IIGNORE_COMMAND_WHISPER = "whisper"
34 STR_IIGNORE_COMMAND_TELL = "tell"