diff options
author | Jayaram R Pai | 2014-07-22 12:26:22 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-07-22 12:26:22 +0530 |
commit | 6e4e4c690fed1118936b0b36f2d218537d657e08 (patch) | |
tree | f1d687254a1b34cfd326e2122667077574f2726f /run.inc | |
parent | c13b4f173853c7b71dc09c75959d83bc17c39a10 (diff) | |
download | scilab_textbook_companion-6e4e4c690fed1118936b0b36f2d218537d657e08.tar.gz scilab_textbook_companion-6e4e4c690fed1118936b0b36f2d218537d657e08.tar.bz2 scilab_textbook_companion-6e4e4c690fed1118936b0b36f2d218537d657e08.zip |
changed textbook_run page text
patch submitted by priyanka bhagwat
Diffstat (limited to 'run.inc')
-rwxr-xr-x | run.inc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -157,12 +157,12 @@ function textbook_companion_run_form($form_state, $pref_id = NULL) $form['run']['download_book'] = array( '#type' => 'item', - '#value' => l('Download', 'download/book/' . $book_default_value) . ' ' . t('(Download all the examples of the entire book)'), + '#value' => l('Download', 'download/book/' . $book_default_value) . ' ' . t('(Download the Scilab codes for all the solved examples)'), ); $form['run']['download_book_pdf'] = array( '#type' => 'item', - '#value' => l('Download PDF', 'textbook_companion/generate_book/' . $book_default_value) . ' ' . t('(Download PDF for all examples of the entire book)'), + '#value' => l('Download PDF', 'textbook_companion/generate_book/' . $book_default_value) . ' ' . t('(Download the PDF file containing Scilab codes for all the solved examples)'), ); $form['run']['chapter'] = array( @@ -186,7 +186,7 @@ function textbook_companion_run_form($form_state, $pref_id = NULL) { $form['run']['download_chapter'] = array( '#type' => 'item', - '#value' => l('Download', 'download/chapter/' . $chapter_default_value) . ' ' . t('(Download all the examples of the entire chapter)'), + '#value' => l('Download', 'download/chapter/' . $chapter_default_value) . ' ' . t('(Download the Scilab codes for all the solved examples from the Chapter)'), ); $form['run']['example'] = array( '#type' => 'select', @@ -265,7 +265,7 @@ function textbook_companion_run_form($form_state, $pref_id = NULL) } $form['run']['download_example'] = array( '#type' => 'item', - '#value' => l('Download Example', 'download/example/' . $example_default_value), + '#value' => l('Download Scilab code for the example', 'download/example/' . $example_default_value), ); $form['run']['example_files'] = array( '#type' => 'item', |