View Single Post
02/04/17, 01:54 AM   #1
Randactyl
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 251
[Mute List] Translation from English into everything else

Hello everyone. Here's the strings:

Lua Code:
  1. local strings = {
  2.     SI_MUTELIST_EMPTY_MESSAGE = "Mute list is empty."
  3.     SI_MUTELIST_MUTE_OPTION = "Mute",
  4.     SI_MUTELIST_MUTE_MESSAGE = "[%s] added to mute list.",
  5.     SI_MUTELIST_UNMUTE_MESSAGE = "[%s] removed from mute list.",
  6.     SI_MUTELIST_UNMUTE_ERROR = "[%s] not muted.",
  7.  
  8.     SI_MUTELIST_LSC_LIST_COMMAND = "/mutelist",
  9.     SI_MUTELIST_LSC_LIST_DESCRIPTION = "Print mute list to chat",
  10.     SI_MUTELIST_LSC_UNMUTE_COMMAND = "/unmute",
  11.     SI_MUTELIST_LSC_UNMUTE_DESCRIPTION = "Enter name to unmute",
  12. }

%s is replaced with a formatted character or account name. Examples:

[xXDoucheCanoeXx] added to mute list.
[@GankMasterNaCl] removed from mute list.
[Erects-Spine-Of-Dankness] not muted.

Thanks for the help
  Reply With Quote