View Single Post
05/02/14, 09:23 PM   #8
gamegenius86
 
gamegenius86's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 27
Originally Posted by Seerah View Post
No, that would not work.

/edit: As you can see, the second ' ends the string.
lua Code:
  1. GGF.locale['Setting_Reset_Warning']     = 'Caution: By resetting to the defaults you will lose all custom configuration you've setup.  Please make sure this is what you want to do before clicking the button below.'
Actually it will (and does) because i am escaping the ' inside. (From the real version in my paste)

lua Code:
  1. GGF.locale['Setting_Reset_Warning']     = 'Caution: By resetting to the defaults you will lose all custom configuration you\'ve setup.  Please make sure this is what you want to do before clicking the button below.'

Last edited by gamegenius86 : 05/02/14 at 09:28 PM.
  Reply With Quote