[rkward-cvs] SF.net SVN: rkward:[3768] trunk/rkward/rkward
sjar at users.sourceforge.net
sjar at users.sourceforge.net
Wed Sep 14 07:52:27 UTC 2011
Revision: 3768
http://rkward.svn.sourceforge.net/rkward/?rev=3768&view=rev
Author: sjar
Date: 2011-09-14 07:52:26 +0000 (Wed, 14 Sep 2011)
Log Message:
-----------
linebreak -> line break
Modified Paths:
--------------
trunk/rkward/rkward/pages/rkward_shortcuts.rkh
trunk/rkward/rkward/scriptbackends/common.js
trunk/rkward/rkward/windows/rkcommandeditorwindow.cpp
Modified: trunk/rkward/rkward/pages/rkward_shortcuts.rkh
===================================================================
--- trunk/rkward/rkward/pages/rkward_shortcuts.rkh 2011-09-14 07:25:16 UTC (rev 3767)
+++ trunk/rkward/rkward/pages/rkward_shortcuts.rkh 2011-09-14 07:52:26 UTC (rev 3768)
@@ -37,7 +37,7 @@
<tr colspan="2"><td><b>Run Menu</b></td></tr>
<tr><td>Run the current line</td><td>Shift + F7</td></tr>
- <tr><td>Add a linebreak and run the line</td><td>Ctrl + Enter</td></tr>
+ <tr><td>Add a line break and run the line</td><td>Ctrl + Enter</td></tr>
<tr><td>Run the current selection</td><td>Shift + F8</td></tr>
<tr><td>Run the current script</td><td>Shift + F9</td></tr>
<tr><td>Interrupt all running commands</td><td>Shift + Esc</td></tr>
Modified: trunk/rkward/rkward/scriptbackends/common.js
===================================================================
--- trunk/rkward/rkward/scriptbackends/common.js 2011-09-14 07:25:16 UTC (rev 3767)
+++ trunk/rkward/rkward/scriptbackends/common.js 2011-09-14 07:52:26 UTC (rev 3768)
@@ -6,7 +6,7 @@
printIndented = function (indentation, lines) {
/** More complex than may seem necessary at first glance. The point is that the
- final linebreak in the input should *not* be replaced by linebreak + indentation. */
+ final line break in the input should *not* be replaced by line break + indentation. */
echo (indentation + lines.replace (/\n(.)/g, "\n" + indentation + "$1"));
}
Modified: trunk/rkward/rkward/windows/rkcommandeditorwindow.cpp
===================================================================
--- trunk/rkward/rkward/windows/rkcommandeditorwindow.cpp 2011-09-14 07:25:16 UTC (rev 3767)
+++ trunk/rkward/rkward/windows/rkcommandeditorwindow.cpp 2011-09-14 07:52:26 UTC (rev 3768)
@@ -195,7 +195,7 @@
action_run_line = RKStandardActions::runLine (this, this, SLOT (runLine()));
// NOTE: enter_and_submit is not currently added to the menu
KAction *action = ac->addAction ("enter_and_submit", this, SLOT (enterAndSubmit()));
- action->setText (i18n ("Insert linebreak and run"));
+ action->setText (i18n ("Insert line break and run"));
action->setShortcuts (KShortcut (Qt::ControlModifier + Qt::Key_Return, Qt::ControlModifier + Qt::Key_Enter));
action_help_function = RKStandardActions::functionHelp (this, this, SLOT (showHelp()));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list