mirror of
https://github.com/moodle/moodle.git
synced 2025-02-21 01:48:45 +01:00
Bug fixes: * fixed broken flash resizing via URL * upgraded Flowplayer * fixed invalid context in format_text() * all media related CSS moved from themes to filter and resources * fixed automatic pdf resizing in resources Changes: * reworked filter_mediaplugin system settings - grouped by player type instead of individual extensions, added more information * improved regex url matching * removed old unused players, Eolas fix and UFO embedding * image embedding moved to filter_urltolink * new Flowplayer embedding API * accessibility and compatibility tweaks in Flowplayer * SWF embedding now works only in trusted texts, it is now enabled by default (works everywhere if "Allow EMBED and OBJECT tags" enabled) * new default video width and height New features: * automatic Flash video resizing using information from video metadata * Flash HD video support (*.f4v) * Flash video embedding with HTML5 fallback - compatible with iOS and other mobile devices * Vimeo embedding * no-cookie YouTube site supported * HTML 5 audio and video with multiple source URLs and QuickTime fallback * more video and audio extensions in filelib.php * MP3 player colours customisable via CSS in themes * nomediaplugin class in a tag prevents media embedding
67 lines
4.0 KiB
PHP
67 lines
4.0 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/>.
|
|
|
|
/**
|
|
* Strings for component 'url', language 'en', branch 'MOODLE_20_STABLE'
|
|
*
|
|
* @package mod
|
|
* @subpackage url
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['clicktoopen'] = 'Click {$a} link to open resource.';
|
|
$string['configdisplayoptions'] = 'Select all options that should be available, existing settings are not modified. Hold CTRL key to select multiple fields.';
|
|
$string['configframesize'] = 'When a web page or an uploaded file is displayed within a frame, this value is the height (in pixels) of the top frame (which contains the navigation).';
|
|
$string['configrolesinparams'] = 'Enable if you want to include localized role names in list of available parameter variables.';
|
|
$string['configsecretphrase'] = 'This secret phrase is used to produce encrypted code value that can be sent to some servers as a parameter. The encrypted code is produced by an md5 value of the current user IP address concatenated with your secret phrase. ie code = md5(IP.secretphrase). Please note that this is not reliable because IP address may change and is often shared by different computers.';
|
|
$string['contentheader'] = 'Content';
|
|
$string['displayoptions'] = 'Available display options';
|
|
$string['displayselect'] = 'Display';
|
|
$string['displayselect_help'] = 'This setting, together with the URL file type and whether the browser allows embedding, determines how the URL is displayed. Options may include:
|
|
|
|
* Automatic - The best display option for the URL is selected automatically
|
|
* Embed - The URL is displayed within the page below the navigation bar together with the URL description and any blocks
|
|
* Force download - The user is prompted to download the URL file
|
|
* Open - Only the URL is displayed in the browser window
|
|
* In pop-up - The URL is displayed in a new browser window without menus or an address bar
|
|
* In frame - The URL is displayed within a frame below the the navigation bar and URL description
|
|
* New window - The URL is displayed in a new browser window with menus and an address bar';
|
|
$string['displayselectexplain'] = 'Choose display type, unfortunately not all types are suitable for all URLs.';
|
|
$string['externalurl'] = 'External URL';
|
|
$string['framesize'] = 'Frame height';
|
|
$string['chooseavariable'] = 'Choose a variable...';
|
|
$string['modulename'] = 'URL';
|
|
$string['modulenameplural'] = 'URLs';
|
|
$string['neverseen'] = 'Never seen';
|
|
$string['optionsheader'] = 'Options';
|
|
$string['parameterinfo'] = 'parameter=variable';
|
|
$string['parametersheader'] = 'Parameters';
|
|
$string['pluginadministration'] = 'URL module administration';
|
|
$string['pluginname'] = 'URL';
|
|
$string['popupheight'] = 'Popup height (in pixels)';
|
|
$string['popupheightexplain'] = 'Specifies default height of popup windows.';
|
|
$string['popupwidth'] = 'Popup width (in pixels)';
|
|
$string['popupwidthexplain'] = 'Specifies default width of popup windows.';
|
|
$string['printheading'] = 'Display URL name';
|
|
$string['printheadingexplain'] = 'Display URL name above content? Some display types may not display URL name even if enabled.';
|
|
$string['printintro'] = 'Display URL description';
|
|
$string['printintroexplain'] = 'Display URL description bellow content? Some display types may not display description even if enabled.';
|
|
$string['rolesinparams'] = 'Include role names in parameters';
|
|
$string['serverurl'] = 'Server URL';
|
|
$string['url:view'] = 'View URL';
|