Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/space_text/text_ops.c')
-rw-r--r--source/blender/editors/space_text/text_ops.c80
1 files changed, 40 insertions, 40 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index d0a3fd3c1d9..be1151219a2 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
- * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
@@ -191,7 +191,7 @@ void TEXT_OT_new(wmOperatorType *ot)
/* identifiers */
ot->name= "New";
ot->idname= "TEXT_OT_new";
- ot->description= "Create a new text data block.";
+ ot->description= "Create a new text data block";
/* api callbacks */
ot->exec= new_exec;
@@ -278,7 +278,7 @@ void TEXT_OT_open(wmOperatorType *ot)
/* identifiers */
ot->name= "Open";
ot->idname= "TEXT_OT_open";
- ot->description= "Open a new text data block.";
+ ot->description= "Open a new text data block";
/* api callbacks */
ot->exec= open_exec;
@@ -318,7 +318,7 @@ void TEXT_OT_reload(wmOperatorType *ot)
/* identifiers */
ot->name= "Reload";
ot->idname= "TEXT_OT_reload";
- ot->description= "Reload active text data block from its file.";
+ ot->description= "Reload active text data block from its file";
/* api callbacks */
ot->exec= reload_exec;
@@ -360,7 +360,7 @@ void TEXT_OT_unlink(wmOperatorType *ot)
/* identifiers */
ot->name= "Unlink";
ot->idname= "TEXT_OT_unlink";
- ot->description= "Unlink active text data block.";
+ ot->description= "Unlink active text data block";
/* api callbacks */
ot->exec= unlink_exec;
@@ -392,7 +392,7 @@ void TEXT_OT_make_internal(wmOperatorType *ot)
/* identifiers */
ot->name= "Make Internal";
ot->idname= "TEXT_OT_make_internal";
- ot->description= "Make active text file internal.";
+ ot->description= "Make active text file internal";
/* api callbacks */
ot->exec= make_internal_exec;
@@ -462,7 +462,7 @@ void TEXT_OT_save(wmOperatorType *ot)
/* identifiers */
ot->name= "Save";
ot->idname= "TEXT_OT_save";
- ot->description= "Save active text data block.";
+ ot->description= "Save active text data block";
/* api callbacks */
ot->exec= save_exec;
@@ -519,7 +519,7 @@ void TEXT_OT_save_as(wmOperatorType *ot)
/* identifiers */
ot->name= "Save As";
ot->idname= "TEXT_OT_save_as";
- ot->description= "Save active text file with options.";
+ ot->description= "Save active text file with options";
/* api callbacks */
ot->exec= save_as_exec;
@@ -563,7 +563,7 @@ void TEXT_OT_run_script(wmOperatorType *ot)
/* identifiers */
ot->name= "Run Script";
ot->idname= "TEXT_OT_run_script";
- ot->description= "Run active script.";
+ ot->description= "Run active script";
/* api callbacks */
ot->poll= run_script_poll;
@@ -619,7 +619,7 @@ void TEXT_OT_refresh_pyconstraints(wmOperatorType *ot)
/* identifiers */
ot->name= "Refresh PyConstraints";
ot->idname= "TEXT_OT_refresh_pyconstraints";
- ot->description= "Refresh all pyconstraints.";
+ ot->description= "Refresh all pyconstraints";
/* api callbacks */
ot->exec= refresh_pyconstraints_exec;
@@ -741,7 +741,7 @@ void TEXT_OT_paste(wmOperatorType *ot)
/* identifiers */
ot->name= "Paste";
ot->idname= "TEXT_OT_paste";
- ot->description= "Paste text from clipboard.";
+ ot->description= "Paste text from clipboard";
/* api callbacks */
ot->exec= paste_exec;
@@ -779,7 +779,7 @@ void TEXT_OT_copy(wmOperatorType *ot)
/* identifiers */
ot->name= "Copy";
ot->idname= "TEXT_OT_copy";
- ot->description= "Copy selected text to clipboard.";
+ ot->description= "Copy selected text to clipboard";
/* api callbacks */
ot->exec= copy_exec;
@@ -810,7 +810,7 @@ void TEXT_OT_cut(wmOperatorType *ot)
/* identifiers */
ot->name= "Cut";
ot->idname= "TEXT_OT_cut";
- ot->description= "Cut selected text to clipboard.";
+ ot->description= "Cut selected text to clipboard";
/* api callbacks */
ot->exec= cut_exec;
@@ -843,7 +843,7 @@ void TEXT_OT_indent(wmOperatorType *ot)
/* identifiers */
ot->name= "Indent";
ot->idname= "TEXT_OT_indent";
- ot->description= "Indent selected text.";
+ ot->description= "Indent selected text";
/* api callbacks */
ot->exec= indent_exec;
@@ -876,7 +876,7 @@ void TEXT_OT_unindent(wmOperatorType *ot)
/* identifiers */
ot->name= "Unindent";
ot->idname= "TEXT_OT_unindent";
- ot->description= "Unindent selected text.";
+ ot->description= "Unindent selected text";
/* api callbacks */
ot->exec= unindent_exec;
@@ -914,7 +914,7 @@ void TEXT_OT_line_break(wmOperatorType *ot)
/* identifiers */
ot->name= "Line Break";
ot->idname= "TEXT_OT_line_break";
- ot->description= "Insert line break at cursor position.";
+ ot->description= "Insert line break at cursor position";
/* api callbacks */
ot->exec= line_break_exec;
@@ -945,7 +945,7 @@ void TEXT_OT_comment(wmOperatorType *ot)
/* identifiers */
ot->name= "Comment";
ot->idname= "TEXT_OT_comment";
- ot->description= "Convert selected text to comment.";
+ ot->description= "Convert selected text to comment";
/* api callbacks */
ot->exec= comment_exec;
@@ -977,7 +977,7 @@ void TEXT_OT_uncomment(wmOperatorType *ot)
/* identifiers */
ot->name= "Uncomment";
ot->idname= "TEXT_OT_uncomment";
- ot->description= "Convert selected comment to text.";
+ ot->description= "Convert selected comment to text";
/* api callbacks */
ot->exec= uncomment_exec;
@@ -1116,7 +1116,7 @@ void TEXT_OT_convert_whitespace(wmOperatorType *ot)
/* identifiers */
ot->name= "Convert Whitespace";
ot->idname= "TEXT_OT_convert_whitespace";
- ot->description= "Convert whitespaces by type.";
+ ot->description= "Convert whitespaces by type";
/* api callbacks */
ot->exec= convert_whitespace_exec;
@@ -1145,7 +1145,7 @@ void TEXT_OT_select_all(wmOperatorType *ot)
/* identifiers */
ot->name= "Select All";
ot->idname= "TEXT_OT_select_all";
- ot->description= "Select all text.";
+ ot->description= "Select all text";
/* api callbacks */
ot->exec= select_all_exec;
@@ -1171,7 +1171,7 @@ void TEXT_OT_select_line(wmOperatorType *ot)
/* identifiers */
ot->name= "Select Line";
ot->idname= "TEXT_OT_select_line";
- ot->description= "Select text by line.";
+ ot->description= "Select text by line";
/* api clinebacks */
ot->exec= select_line_exec;
@@ -1207,7 +1207,7 @@ void TEXT_OT_previous_marker(wmOperatorType *ot)
/* identifiers */
ot->name= "Previous Marker";
ot->idname= "TEXT_OT_previous_marker";
- ot->description= "Move to previous marker.";
+ ot->description= "Move to previous marker";
/* api callbacks */
ot->exec= previous_marker_exec;
@@ -1269,7 +1269,7 @@ void TEXT_OT_markers_clear(wmOperatorType *ot)
/* identifiers */
ot->name= "Clear All Markers";
ot->idname= "TEXT_OT_markers_clear";
- ot->description= "Clear all markers.";
+ ot->description= "Clear all markers";
/* api callbacks */
ot->exec= clear_all_markers_exec;
@@ -1550,7 +1550,7 @@ void TEXT_OT_move(wmOperatorType *ot)
/* identifiers */
ot->name= "Move Cursor";
ot->idname= "TEXT_OT_move";
- ot->description= "Move cursor to position type.";
+ ot->description= "Move cursor to position type";
/* api callbacks */
ot->exec= move_exec;
@@ -1574,7 +1574,7 @@ void TEXT_OT_move_select(wmOperatorType *ot)
/* identifiers */
ot->name= "Move Select";
ot->idname= "TEXT_OT_move_select";
- ot->description= "Make selection from current cursor position to new cursor position type.";
+ ot->description= "Make selection from current cursor position to new cursor position type";
/* api callbacks */
ot->exec= move_select_exec;
@@ -1608,7 +1608,7 @@ void TEXT_OT_jump(wmOperatorType *ot)
/* identifiers */
ot->name= "Jump";
ot->idname= "TEXT_OT_jump";
- ot->description= "Jump cursor to line.";
+ ot->description= "Jump cursor to line";
/* api callbacks */
ot->invoke= WM_operator_props_popup;
@@ -1659,7 +1659,7 @@ void TEXT_OT_delete(wmOperatorType *ot)
/* identifiers */
ot->name= "Delete";
ot->idname= "TEXT_OT_delete";
- ot->description= "Delete text by cursor position.";
+ ot->description= "Delete text by cursor position";
/* api callbacks */
ot->exec= delete_exec;
@@ -1685,7 +1685,7 @@ void TEXT_OT_overwrite_toggle(wmOperatorType *ot)
/* identifiers */
ot->name= "Toggle Overwrite";
ot->idname= "TEXT_OT_overwrite_toggle";
- ot->description= "Toggle overwrite while typing.";
+ ot->description= "Toggle overwrite while typing";
/* api callbacks */
ot->exec= toggle_overwrite_exec;
@@ -1853,7 +1853,7 @@ void TEXT_OT_scroll(wmOperatorType *ot)
scroll_bar. Both do basically the same thing (aside
from keymaps).*/
ot->idname= "TEXT_OT_scroll";
- ot->description= "Scroll text screen.";
+ ot->description= "Scroll text screen";
/* api callbacks */
ot->exec= scroll_exec;
@@ -1906,7 +1906,7 @@ void TEXT_OT_scroll_bar(wmOperatorType *ot)
scroll. Both do basically the same thing (aside
from keymaps).*/
ot->idname= "TEXT_OT_scroll_bar";
- ot->description= "Scroll text screen.";
+ ot->description= "Scroll text screen";
/* api callbacks */
ot->invoke= scroll_bar_invoke;
@@ -2186,7 +2186,7 @@ void TEXT_OT_cursor_set(wmOperatorType *ot)
/* identifiers */
ot->name= "Set Cursor";
ot->idname= "TEXT_OT_cursor_set";
- ot->description= "Set cursor selection.";
+ ot->description= "Set cursor selection";
/* api callbacks */
ot->invoke= set_cursor_invoke;
@@ -2240,7 +2240,7 @@ void TEXT_OT_line_number(wmOperatorType *ot)
/* identifiers */
ot->name= "Line Number";
ot->idname= "TEXT_OT_line_number";
- ot->description= "The current line number.";
+ ot->description= "The current line number";
/* api callbacks */
ot->invoke= line_number_invoke;
@@ -2309,7 +2309,7 @@ void TEXT_OT_insert(wmOperatorType *ot)
/* identifiers */
ot->name= "Insert";
ot->idname= "TEXT_OT_insert";
- ot->description= "Insert text at cursor position.";
+ ot->description= "Insert text at cursor position";
/* api callbacks */
ot->exec= insert_exec;
@@ -2415,7 +2415,7 @@ void TEXT_OT_find(wmOperatorType *ot)
/* identifiers */
ot->name= "Find";
ot->idname= "TEXT_OT_find";
- ot->description= "Find specified text.";
+ ot->description= "Find specified text";
/* api callbacks */
ot->exec= find_exec;
@@ -2434,7 +2434,7 @@ void TEXT_OT_replace(wmOperatorType *ot)
/* identifiers */
ot->name= "Replace";
ot->idname= "TEXT_OT_replace";
- ot->description= "Replace text with the specified text.";
+ ot->description= "Replace text with the specified text";
/* api callbacks */
ot->exec= replace_exec;
@@ -2453,7 +2453,7 @@ void TEXT_OT_mark_all(wmOperatorType *ot)
/* identifiers */
ot->name= "Mark All";
ot->idname= "TEXT_OT_mark_all";
- ot->description= "Mark all specified text.";
+ ot->description= "Mark all specified text";
/* api callbacks */
ot->exec= mark_all_exec;
@@ -2483,7 +2483,7 @@ void TEXT_OT_find_set_selected(wmOperatorType *ot)
/* identifiers */
ot->name= "Find Set Selected";
ot->idname= "TEXT_OT_find_set_selected";
- ot->description= "Find specified text and set as selected.";
+ ot->description= "Find specified text and set as selected";
/* api callbacks */
ot->exec= find_set_selected_exec;
@@ -2510,7 +2510,7 @@ void TEXT_OT_replace_set_selected(wmOperatorType *ot)
/* identifiers */
ot->name= "Replace Set Selected";
ot->idname= "TEXT_OT_replace_set_selected";
- ot->description= "Replace text with specified text and set as selected.";
+ ot->description= "Replace text with specified text and set as selected";
/* api callbacks */
ot->exec= replace_set_selected_exec;
@@ -2645,7 +2645,7 @@ void TEXT_OT_resolve_conflict(wmOperatorType *ot)
/* identifiers */
ot->name= "Resolve Conflict";
ot->idname= "TEXT_OT_resolve_conflict";
- ot->description= "When external text is out of sync, resolve the conflict.";
+ ot->description= "When external text is out of sync, resolve the conflict";
/* api callbacks */
ot->exec= resolve_conflict_exec;
@@ -2673,7 +2673,7 @@ void TEXT_OT_to_3d_object(wmOperatorType *ot)
/* identifiers */
ot->name= "To 3D Object";
ot->idname= "TEXT_OT_to_3d_object";
- ot->description= "Create 3d text object from active text data block.";
+ ot->description= "Create 3d text object from active text data block";
/* api callbacks */
ot->exec= to_3d_object_exec;