<head>
<script language="JavaScript">
// Copyright 2002, 2003 Macromedia, Inc. All rights reserved.

// JAVASCRIPT STRINGS FOR COMMON MACROMEDIA APPLICATIONS
//
//All strings used by JavaScript should be extracted for easy localization.
//Strings used by Contribute should all be added to this file.
//
//!! IMPORTANT: before adding a new string, please check the other files in
//this folder to see if it already exists. Most common button labels and error
//messages already exist and should be reused. If it doesn't exist, please
//use a *very unique* name, since these are shared by the entire product.
//
//For error messages, our convention is usually to state the problem, then the
//solution action (see example below).
//
//There are 3 string types:
//
//  UI ELEMENT       NAMING CONVENTION     EXAMPLE
//  ----------       -----------------     -------
//  alert messages   MM.MSG_LeadCaps       MM.MSG_FileHasNotBeenSaved = "The file has not been saved. Please
//                                                                       save the file before proceeding.";
//  button labels    MM.BTN_LeadCaps       MM.BTN_ResetAll = "Reset" 
//  other UI labels  MM.LABEL_LeadCaps     MM.LABEL_AllForms = "<All Forms>" 
//
//To use your string in JavaScript, refer directly to the global, for example:
//   alert(MM.MSG_FileHasNotBeenSaved);
//

// Initialize error strings
initErrorStrings();


function initErrorStrings()
{
//--------------- LOCALIZEABLE GLOBALS---------------

//********* buttons *************

MM.BTN_OK     = dw.loadString('Startup/CommonInit/MM.BTN_OK');
MM.BTN_Cancel = dw.loadString('Startup/CommonInit/MM.BTN_Cancel');
MM.BTN_Apply  = dw.loadString('Startup/CommonInit/MM.BTN_Apply');
MM.BTN_Export = dw.loadString('Startup/CommonInit/MM.BTN_Export');
MM.BTN_Insert = dw.loadString('Startup/CommonInit/MM.BTN_Insert');
MM.BTN_Help   = dw.loadString('Startup/CommonInit/MM.BTN_Help');
MM.BTN_Add =    dw.loadString('Startup/CommonInit/MM.BTN_Add');
MM.BTN_Remove = dw.loadString('Startup/CommonInit/MM.BTN_Remove');
MM.BTN_Yes    = dw.loadString('Startup/CommonInit/MM.BTN_Yes');
MM.BTN_No     = dw.loadString('Startup/CommonInit/MM.BTN_No');


//------------------------ END LOCALIZEABLE -------------------------
}
</script>
</head>
<body>
</body>
