File:  [LON-CAPA] / loncom / html / htmlarea / lang / Attic / en.js
Revision 1.2: download - view: text, annotated - select for diffs
Tue Jun 1 23:46:10 2004 UTC (20 years, 2 months ago) by www
Branches: MAIN
CVS tags: version_2_5_X, version_2_5_99_0, version_2_5_2, version_2_5_1, version_2_5_0, version_2_4_X, version_2_4_99_0, version_2_4_2, version_2_4_1, version_2_4_0, version_2_3_X, version_2_3_99_0, version_2_3_2, version_2_3_1, version_2_3_0, version_2_2_X, version_2_2_99_1, version_2_2_99_0, version_2_2_2, version_2_2_1, version_2_2_0, version_2_1_X, version_2_1_99_3, version_2_1_99_2, version_2_1_99_1, version_2_1_99_0, version_2_1_3, version_2_1_2, version_2_1_1, version_2_1_0, version_2_0_X, version_2_0_99_1, version_2_0_2, version_2_0_1, version_2_0_0, version_1_99_3, version_1_99_2, version_1_99_1_tmcc, version_1_99_1, version_1_99_0_tmcc, version_1_99_0, version_1_3_X, version_1_3_3, version_1_3_2, version_1_3_1, version_1_3_0, version_1_2_X, version_1_2_99_1, version_1_2_99_0, version_1_2_1, version_1_2_0, version_1_1_99_5, version_1_1_99_4, version_1_1_99_3, version_1_1_99_2, version_1_1_99_1, version_1_1_99_0, HEAD
Next version HTMLArea.

    1: // I18N constants
    2: 
    3: // LANG: "en", ENCODING: UTF-8 | ISO-8859-1
    4: // Author: Mihai Bazon, http://dynarch.com/mishoo
    5: 
    6: // FOR TRANSLATORS:
    7: //
    8: //   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
    9: //      (at least a valid email address)
   10: //
   11: //   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
   12: //      (if this is not possible, please include a comment
   13: //       that states what encoding is necessary.)
   14: 
   15: HTMLArea.I18N = {
   16: 
   17: 	// the following should be the filename without .js extension
   18: 	// it will be used for automatically load plugin language.
   19: 	lang: "en",
   20: 
   21: 	tooltips: {
   22: 		bold:           "Bold",
   23: 		italic:         "Italic",
   24: 		underline:      "Underline",
   25: 		strikethrough:  "Strikethrough",
   26: 		subscript:      "Subscript",
   27: 		superscript:    "Superscript",
   28: 		justifyleft:    "Justify Left",
   29: 		justifycenter:  "Justify Center",
   30: 		justifyright:   "Justify Right",
   31: 		justifyfull:    "Justify Full",
   32: 		orderedlist:    "Ordered List",
   33: 		unorderedlist:  "Bulleted List",
   34: 		outdent:        "Decrease Indent",
   35: 		indent:         "Increase Indent",
   36: 		forecolor:      "Font Color",
   37: 		hilitecolor:    "Background Color",
   38: 		horizontalrule: "Horizontal Rule",
   39: 		createlink:     "Insert Web Link",
   40: 		insertimage:    "Insert/Modify Image",
   41: 		inserttable:    "Insert Table",
   42: 		htmlmode:       "Toggle HTML Source",
   43: 		popupeditor:    "Enlarge Editor",
   44: 		about:          "About this editor",
   45: 		showhelp:       "Help using editor",
   46: 		textindicator:  "Current style",
   47: 		undo:           "Undoes your last action",
   48: 		redo:           "Redoes your last action",
   49: 		cut:            "Cut selection",
   50: 		copy:           "Copy selection",
   51: 		paste:          "Paste from clipboard",
   52: 		lefttoright:    "Direction left to right",
   53: 		righttoleft:    "Direction right to left"
   54: 	},
   55: 
   56: 	buttons: {
   57: 		"ok":           "OK",
   58: 		"cancel":       "Cancel"
   59: 	},
   60: 
   61: 	msg: {
   62: 		"Path":         "Path",
   63: 		"TEXT_MODE":    "You are in TEXT MODE.  Use the [<>] button to switch back to WYSIWYG.",
   64: 
   65: 		"IE-sucks-full-screen" :
   66: 		// translate here
   67: 		"The full screen mode is known to cause problems with Internet Explorer, " +
   68: 		"due to browser bugs that we weren't able to workaround.  You might experience garbage " +
   69: 		"display, lack of editor functions and/or random browser crashes.  If your system is Windows 9x " +
   70: 		"it's very likely that you'll get a 'General Protection Fault' and need to reboot.\n\n" +
   71: 		"You have been warned.  Please press OK if you still want to try the full screen editor."
   72: 	},
   73: 
   74: 	dialogs: {
   75: 		"Cancel"                                            : "Cancel",
   76: 		"Insert/Modify Link"                                : "Insert/Modify Link",
   77: 		"New window (_blank)"                               : "New window (_blank)",
   78: 		"None (use implicit)"                               : "None (use implicit)",
   79: 		"OK"                                                : "OK",
   80: 		"Other"                                             : "Other",
   81: 		"Same frame (_self)"                                : "Same frame (_self)",
   82: 		"Target:"                                           : "Target:",
   83: 		"Title (tooltip):"                                  : "Title (tooltip):",
   84: 		"Top frame (_top)"                                  : "Top frame (_top)",
   85: 		"URL:"                                              : "URL:",
   86: 		"You must enter the URL where this link points to"  : "You must enter the URL where this link points to"
   87: 	}
   88: };

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>