Changeset 319
- Timestamp:
- 09/16/05 06:49:31 (8 years ago)
- Location:
- trunk/plugins/FormOperations
- Files:
-
- 2 added
- 1 modified
-
form-operations.js (modified) (6 diffs)
-
lang (added)
-
lang/de.js (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/FormOperations/form-operations.js
r197 r319 72 72 var buttonsImage = editor.imgURL('buttons.gif', 'FormOperations'); 73 73 74 FormOperations.prototype._lc = function(string) { 75 return HTMLArea._lc(string, 'FormOperations'); 76 } 77 74 78 this.editor.config.btnList.insert_form = 75 [ "Insert a form.",79 [ this._lc("Insert a Form."), 76 80 [buttonsImage, 0, 0], 77 81 false, … … 96 100 97 101 this.editor.config.btnList.insert_text_field = 98 [ "Insert a text, password or hidden field.",102 [ this._lc("Insert a text, password or hidden field."), 99 103 [buttonsImage, 1, 0], 100 104 false, … … 107 111 108 112 this.editor.config.btnList.insert_textarea_field = 109 [ "Insert a multi-line text field.",113 [ this._lc("Insert a multi-line text field."), 110 114 [buttonsImage, 2, 0], 111 115 false, … … 118 122 119 123 this.editor.config.btnList.insert_select_field = 120 [ "Insert a select field.",124 [ this._lc("Insert a select field."), 121 125 [buttonsImage, 3, 0], 122 126 false, … … 129 133 130 134 this.editor.config.btnList.insert_cb_field = 131 [ "Insert a check box.",135 [ this._lc("Insert a check box."), 132 136 [buttonsImage, 4, 0], 133 137 false, … … 140 144 141 145 this.editor.config.btnList.insert_rb_field = 142 [ "Insert a radio button.",146 [ this._lc("Insert a radio button."), 143 147 [buttonsImage, 5, 0], 144 148 false,
