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>, "
These appear to be fixed in CVS
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, ⪚, 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
I fixed it... both the 2 'F1' problems and the missing comma between 'and' and 'or'. thanks _cies.