MessageBox._CLANG = {};

MessageBox._CLANG["language"] = 'nl';

MessageBox._CLANG["caption_INFORMATION"] = "Informatie";
MessageBox._CLANG["caption_ERROR"] = "Fout";
MessageBox._CLANG["caption_WARNING"] = "Waarschuwing";
MessageBox._CLANG["caption_QUESTION"] = "Vraag";
MessageBox._CLANG["caption_NONE"] = "";

MessageBox._CLANG["caption_OK"] = "OK";
MessageBox._CLANG["caption_CANCEL"] = "Annuleren";
MessageBox._CLANG["caption_ABORT"] = "Afbreken";
MessageBox._CLANG["caption_RETRY"] = "Opnieuw";
MessageBox._CLANG["caption_IGNORE"] = "Negeren";
MessageBox._CLANG["caption_YES"] = "Ja";
MessageBox._CLANG["caption_NO"] = "Nee";

MessageBox._CLANG["caption_CLOSE"] = "Sluiten";
MessageBox._CLANG["caption_MINIMIZE"] = "Minimaliseren";
MessageBox._CLANG["caption_MAXIMIZE"] = "Maximaliseren";
MessageBox._CLANG["caption_RESTORE"] = "Herstellen";
MessageBox._CLANG["caption_HELP"] = "Help";

MessageBox._CLANG["help_SETUP"] = "To setup the MessageBox with pre-defined variables, use the following function:\n\n"+
	"<code>MessageBox.Setup( {\n icon: MessageBoxIcon.Information,\n cache: true,\n canClose: true,\n "+
	"EventMode: MessageBoxEvents.All,\n debugMessageRegistry: true,\n caption: null,\n "+
	"forceCaption: true,\n className: '',\n canDrag: true\n"+
	"} );</code>\n\n"+
	"The used variables are in fact all optional; if no argument is given, all will be set to default values.\n"+
	"<code>icon</code> - The MessageBox Icon to use\n"+
	"<code>cache</code> - If true, the messagebox will be hidden when closed instead of destroyed\n"+
	"<code>canClose</code> - If true, the messagebox will render a closing buttons in the upper right corner\n"+
	"<code>EventMode</code> - The default mode in which events will be assigned for registered messages\n"+
	"<code>debugMessageRegistry</code> - If true, registering messages will be monitored (viewable by <code>MessageBox.ShowDebug('REGISTER')</code>)\n"+
	"<code>caption</code> - Optional default caption to use\n"+
	"<code>forceCaption</code> - If true, when no caption is given, a caption will be forced depending on the icon setting\n"+
	"<code>className</code> - default MessageBox CSS class\n\n"+
	""
	;

MessageBox._CLANG["help_REGISTER"] = "To register the MessageBox for pre-defined elements, use the following function:\n\n" +
	"<code>MessageBox.Register( {\n new Array(\n "+
	"{ id:\"#element_id\", text:\"#description\", EventMode:MessageBoxEvents.All ! MessageBoxEvents.MouseOut }, ...\n"+
	"));</code>\n\n"+
	"The id and text attribute are required, the other one(s) are optional. The EventMode attribute is used bitwise and must be used accordingly.\n"+
	"Using this method fully creates the given events in EventMode for you. If no EventMode is given, the Default one OR the one used when using Setup() "+
	"will be used. Currently supported eventModes are: [MessageBoxEvents.]Click, Focus, Blur, MouseOver and MouseOut";
MessageBox._CLANG["help_REGISTERHELP"] = "To register the MessageBox Help functions for a pre-defined element, use the following function:\n\n" +
	"<code>MessageBox.RegisterHelp( id, events );</code>\n\n"+
	"<code>id</code> - The HTMLElement id\n"+
	"<code>events</code> - The event mode to assign to the element. Currently supported events are: "+
	"[MessageBoxEvents.]Click, Focus, Blur, MouseOver and MouseOut. If no event(s) is (are) given, it will default to MessageBoxEvents.Click";
MessageBox._CLANG["help_SHOW"] = "To display the MessageBox 'manually', use the following function:\n\n" +
	"<code>MessageBox.Show( message, caption, buttons, icon, events, width);</code>\n\n"+
	"To display the MessageBox at a specific location, use the following function:\n\n" +
	"<code>MessageBox.ShowAt(x, y, message, caption, buttons, icon, events, width);</code>\n\n"+
	"Manually displaying is used when the MessageBox has not been setup for displaying on specific elements using Register()\n"+
	"Only the first message argument is mandatory for Show() (The ShowAt also must have x and y set). The other arguments are determined either by pre-defined settings (see MessageBox.Setup()), "+
	"or the default MessageBox settings. At the moment, the buttons argument and the events argument are not used as such.";
MessageBox._CLANG["help_NAV"] = 
	"<a href=\"#\" onclick=\"MessageBox.ShowHelp('SETUP')\" title=\"Setting up MessageBox\">Setup</a> | "+
	"<a href=\"#\" onclick=\"MessageBox.ShowHelp('REGISTER')\" title=\"Registering Messages\">Register</a> | "+
	"<a href=\"#\" onclick=\"MessageBox.ShowHelp('REGISTERHELP')\" title=\"Registering Help\">Register Help</a> | "+
	"<a href=\"#\" onclick=\"MessageBox.ShowHelp('SHOW')\" title=\"Showing the MessageBox\">Show</a> | "+
	"\n";

