moodle/lang/en/editor.php
moodler 4c46c425db Changes to integrate the new HTML editor into Moodle in an optional way
until it's stable enough to replace Richtext

To enable the new editor, add this line into config.php:

  $CFG->useneweditor = true;
2003-10-29 08:06:11 +00:00

70 lines
2.5 KiB
PHP

<?php // $Id$
// Strings for the HTML editor
$string['bold'] = "Bold";
$string['italic'] = "Italic";
$string['underline'] = "Underline";
$string['strikethrough'] = "Strikethrough";
$string['subscript'] = "Subscript";
$string['superscript'] = "Superscript";
$string['justifyleft'] = "Justify Left";
$string['justifycenter'] = "Justify Center";
$string['justifyright'] = "Justify Right";
$string['justifyfull'] = "Justify Full";
$string['orderedlist'] = "Ordered List";
$string['unorderedlist'] = "Bulleted List";
$string['outdent'] = "Decrease Indent";
$string['indent'] = "Increase Indent";
$string['forecolor'] = "Font Color";
$string['hilitecolor'] = "Background Color";
$string['horizontalrule'] = "Horizontal Rule";
$string['createlink'] = "Insert Web Link";
$string['insertimage'] = "Insert Image";
$string['inserttable'] = "Insert Table";
$string['htmlmode'] = "Toggle HTML Source";
$string['popupeditor'] = "Enlarge Editor";
$string['about'] = "About this editor";
$string['showhelp'] = "Help using editor";
$string['textindicator'] = "Current style";
$string['undo'] = "Undo your last action";
$string['redo'] = "Redo your last action";
$string['cut'] = "Cut selection";
$string['copy'] = "Copy selection";
$string['paste'] = "Paste from clipboard";
$string['ok'] = "OK";
$string['cancel'] = "Cancel";
$string['browse'] = "Browse";
$string['imageurl'] = "Image URL";
$string['preview'] = "Preview";
$string['alternatetext'] = "Alternate text";
$string['alignment'] = "Alignment";
$string['layout'] = "Layout";
$string['spacing'] = "Spacing";
$string['borderthickness'] = "Border thickness";
$string['horizontal'] = "Horizontal";
$string['vertical'] = "Vertical";
$string['notset'] = "Not Set";
$string['left'] = "Left";
$string['right'] = "Right";
$string['texttop'] = "Texttop";
$string['baseline'] = "Baseline";
$string['absbottom'] = "Absbottom";
$string['bottom'] = "Bottom";
$string['middle'] = "Middle";
$string['top'] = "Top";
$string['absmiddle'] = "Absmiddle";
$string['rows'] = "Rows";
$string['cols'] = "Cols";
$string['width'] = "Width";
$string['percent'] = "Percent";
$string['pixels'] = "Pixels";
$string['cellspacing'] = "Cellspacing";
$string['cellpadding'] = "Cellpadding";
$string['close'] = "Close";
$string['chooseicon'] = "Choose an icon to insert";
$string['choosechar'] = "Choose Character";
$string['insertsmile'] = "Insert smile";
$string['insertchar'] = "Insert Special Character";
$string['Path'] = "Path";
$string['TEXT_MODE'] = "You are in TEXT MODE. Use the [<>] button to switch back to WYSIWIG."
?>