anjuta r3621 - in trunk: . plugins/document-manager
- From: naba svn gnome org
- To: svn-commits-list gnome org
- Subject: anjuta r3621 - in trunk: . plugins/document-manager
- Date: Sun, 10 Feb 2008 12:37:24 +0000 (GMT)
Author: naba
Date: Sun Feb 10 12:37:24 2008
New Revision: 3621
URL: http://svn.gnome.org/viewvc/anjuta?rev=3621&view=rev
Log:
* plugins/document-manager/plugin.c: Fixed stream comment and added
translator\'s comment for \'block comment\', \'box comment\' and \'stream
comment\'
Modified:
trunk/ChangeLog
trunk/plugins/document-manager/plugin.c
Modified: trunk/plugins/document-manager/plugin.c
==============================================================================
--- trunk/plugins/document-manager/plugin.c (original)
+++ trunk/plugins/document-manager/plugin.c Sun Feb 10 12:37:24 2008
@@ -233,16 +233,24 @@
};
static GtkActionEntry actions_comment[] = {
- { "ActionMenuEditComment", NULL, N_("Co_mment"), NULL, NULL, NULL}, /* menu title */
+ { "ActionMenuEditComment", NULL, N_("Co_mment"), NULL, NULL, NULL},
+ /* Block comment: Uses line-comment (comment that affects only single line
+ such as '//' or '#') and comments a block of lines. */
{ "ActionEditCommentBlock", NULL, N_("_Block Comment/Uncomment"), NULL,
N_("Block comment the selected text"),
G_CALLBACK (on_comment_block)},
+ /* Box comment: Uses stream-comment to comment a block of lines, usually with
+ some decorations, to give an appearance of box. */
{ "ActionEditCommentBox", NULL, N_("Bo_x Comment/Uncomment"), NULL,
N_("Box comment the selected text"),
G_CALLBACK (on_comment_box)},
+ /* Stream comment: Uses 'stream comment' (comment that affects a stream of
+ characters -- has start and end comment code) and comments any code from
+ arbitrary start position to arbitrary end position (can be in middle of
+ lines). */
{ "ActionEditCommentStream", NULL, N_("_Stream Comment/Uncomment"), NULL,
N_("Stream comment the selected text"),
- G_CALLBACK (on_comment_block)},
+ G_CALLBACK (on_comment_stream)},
};
static GtkActionEntry actions_navigation[] = {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]