Bug 94787 - typo error in kturtle documentaion
Summary: typo error in kturtle documentaion
Status: CLOSED FIXED
Alias: None
Product: docs.kde.org
Classification: Websites
Component: Corrections (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Documentation Editorial Team
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-12-10 09:51 UTC by Burkhard Lück
Modified: 2005-02-13 20:20 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Burkhard Lück 2004-12-10 09:51:41 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources
OS:                Linux

typo errors in documentaion

patch:
bb@cereus:~$ diff kturtle_using-kturtle.pot /home/kdedev/src/kde/kde-i18n/templates/docs/kdeedu/kturtle_using-kturtle.pot
772c772
< msgid "<shortcut> <keycombo><keysym>F2</keysym></keycombo> </shortcut> "
---
> msgid "<shortcut> <keycombo><keysym>F1</keysym></keycombo> </shortcut> "
784c784
<       "command and you press <keysym>F2</keysym>. The handbook will then "
---
>       "command and you press <keysym>F1</keysym>. The handbook will then "
bb@cereus:~$ diff kturtle_programming-reference.pot /home/kdedev/src/kde/kde-i18n/templates/docs/kdeedu/kturtle_programming-reference.pot
290c290
<       "glue words are <userinput>and</userinput>, <userinput>or</userinput>, "
---
>       "glue words are <userinput>and</userinput><userinput>or</userinput>, "
Comment 1 Philip Rodrigues 2004-12-23 12:18:52 UTC
These appear to be fixed in CVS
Comment 2 Burkhard Lück 2005-01-19 16:22:35 UTC
Sorry, but not fixed.

copy from cvs-head today:
#: programming-reference.docbook:73
#, no-c-format
msgid   "Questions can be glued together with so called 'question glue'. The "
        "glue words are <userinput>and</userinput><userinput>or</userinput>, "
        "and a special glue-word: <userinput>not</userinput>."

in the documention the user reads "The glue words are andor, and ..."
this shold be                     "The glue words are and, or, and ..."

copy from cvs-head today:
#: using-kturtle.docbook:531
#, no-c-format
msgid   "<shortcut> <keycombo><keysym>F1</keysym></keycombo> </shortcut> "
        "<guimenu>Help</guimenu> <guimenuitem>Help on: ...</guimenuitem>"
#: using-kturtle.docbook:538
#, no-c-format
msgid   "This is a very useful function: it provides help on the code where "
        "the cursor in the code editor is at. So, &eg;, you have used the "
        "<userinput>print</userinput> command in your code, and you want to "
        "read and to know what the handbook says on this command. You just "
        "move your cursor so it is in the <userinput>print</userinput> "
        "command and you press <keysym>F1</keysym>. The handbook will then "
        "show all info on the <userinput>print</userinput> command."

key F1 invokes help for kturtle and shows the kturtle handbook, starting from the beginning.
Help on topic, that is key F2, which opens the the handbook section programming reference at the command under the cursor. 
see also sorce code kturtle.cpp from cvs head there is Key_F2:
line 176-128
// Help actions
ContextHelp = new KAction(0, 0, Key_F2, this, SLOT(slotContextHelp()), ac, "context_help");
slotContextHelpUpdate(); // this sets the label of this action

so the documentation is wrong, F1 has to be changed to F2
Comment 3 Cies Breijs 2005-02-13 20:20:42 UTC
I fixed it... both the 2 'F1' problems and the missing comma between 'and' and 'or'.

thanks
_cies.