mirror of
https://github.com/moodle/moodle.git
synced 2025-03-03 23:46:09 +01:00
45 lines
2.4 KiB
PHP
45 lines
2.4 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Label module version info
|
|
*
|
|
* @package theme
|
|
* @subpackage mymobile
|
|
* @copyright John Stabinger
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['choosereadme'] = '<div class="clearfix"><div class="theme_screenshot"><h2>MyMobile</h2><img src="mymobile/pix/screenshot.png" /><h2>About</h2><p>MyMobile is a mobile theme for Moodle 2.x. More information on modifying themes can be found in the <a href="http://docs.moodle.org/en/Theme">MoodleDocs</a>.</p></div></div>';
|
|
$string['colourswatch'] = 'Mobile theme colour swatch';
|
|
$string['colourswatch_desc'] = 'Toggle the colour swatch of the theme between grey and light/blue.';
|
|
$string['grey'] = 'Grey';
|
|
$string['light'] = 'Light/Blue';
|
|
$string['mtoggle'] = 'Toggle 2nd Column';
|
|
$string['no'] = 'No';
|
|
$string['pluginname'] = 'MyMobile';
|
|
$string['region-myblocks'] = 'block region';
|
|
$string['showmobileintro'] = 'Mobile Intro Text';
|
|
$string['showmobileintro_desc'] = 'Add mobile only text/images to the mobile homepage.';
|
|
$string['showsitetopic'] = 'Show site topic:';
|
|
$string['showsitetopic_desc'] = 'Show the standard site topic section(s) on the front page for mobile theme users (if available).';
|
|
$string['showfullsizeimages'] = 'Show full images on site index and course pages.';
|
|
$string['showfullsizeimages_desc'] = 'Show full size images on site index and course pages instead of replaced thumb icon method. Default is to not show full size images.';
|
|
$string['usetableview'] = 'Tablet View';
|
|
$string['usetableview_desc'] = 'Use the tablet view for larger devices (yes by default).';
|
|
$string['yes'] = 'Yes';
|
|
$string['customcss'] = 'Custom CSS';
|
|
$string['customcssdesc'] = 'Any CSS you enter here will be added to every page allowing your to easily customise this theme.'; |