Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Duplicate
-
Affects Version/s: 1.9
-
Fix Version/s: 1.9.5
-
Component/s: Documentation, Language, Usability
-
Labels:None
-
Difficulty:Easy
-
Affected Branches:MOODLE_19_STABLE
-
Fixed Branches:MOODLE_19_STABLE
Description
adds two links at the bottom of the popup Help window;
1. a link to the same help page but in English.
2. a link back, to an help page in my current chosen language.
usually useful when there is bad translation or that the translation is missing.
open "help.php" . just after the line:
echo '<p class="helpindex"><a href="help.php?file=index.html">'. get_string('helpindex') .'</a></p>';
add these lines:
// see this help page in english (most of the time, more readble and easy to understand then the translation)
echo '<p class="helpindex"><a href="help.php?file='.$file.'&module='.$module.'&forcelang=en_utf8">English Version of this Help page</a></p>';
// go back to my local preferred language
echo '<p class="helpindex"><a href="help.php?file='.$file.'&module='.$module.'&forcelang='.current_language().'">'.get_string('helpinyourlanguage').'</a></p>';
// make sure english help files are ALWAYS displayed visually correct
if ($forcelang == 'en_utf8') echo '<style>body,p,h1,h2,h3 { direction:ltr;text-align:left;} </style>';
Issue Links
| This issue duplicates: | ||||
| MDL-14743 | Allow user to change language of help article to english and back directly in help window |
|
|
|
Activity
- All
- Comments
- History
- Activity
- Source
- Test Sessions
Nadav, thanks for your report. You'll be pleased to hear that this improvement was implemented in 1.9.5 (see linked issue).