2009-08-13 20:49:37 +00:00
< ? php
2010-04-10 14:01:45 +00:00
// 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'
*
2010-07-25 11:20:23 +00:00
* @ 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
2010-04-10 14:01:45 +00:00
*/
2011-03-12 17:42:52 +01:00
$string [ 'clicktoopen' ] = 'Click {$a} link to open resource.' ;
2009-08-13 20:49:37 +00:00
$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).' ;
2010-08-16 08:53:18 +00:00
$string [ 'configrolesinparams' ] = 'Enable if you want to include localized role names in list of available parameter variables.' ;
2009-08-13 20:49:37 +00:00
$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' ;
2010-08-16 08:53:18 +00:00
$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 ' ;
2009-08-13 20:49:37 +00:00
$string [ 'displayselectexplain' ] = 'Choose display type, unfortunately not all types are suitable for all URLs.' ;
$string [ 'externalurl' ] = 'External URL' ;
$string [ 'framesize' ] = 'Frame height' ;
2011-10-31 15:12:45 +08:00
$string [ 'invalidstoredurl' ] = 'Cannot display this resource, URL is invalid.' ;
2010-04-10 14:01:45 +00:00
$string [ 'chooseavariable' ] = 'Choose a variable...' ;
2011-09-22 15:40:48 +05:30
$string [ 'invalidurl' ] = 'Entered URL is invalid' ;
2009-08-13 20:49:37 +00:00
$string [ 'modulename' ] = 'URL' ;
$string [ 'modulenameplural' ] = 'URLs' ;
$string [ 'neverseen' ] = 'Never seen' ;
$string [ 'optionsheader' ] = 'Options' ;
2011-07-01 20:29:07 +02:00
$string [ 'page-mod-url-x' ] = 'Any URL module page' ;
2011-07-22 22:16:52 +02:00
$string [ 'parameterinfo' ] = '&parameter=variable' ;
2009-08-13 20:49:37 +00:00
$string [ 'parametersheader' ] = 'Parameters' ;
2011-07-22 22:16:52 +02:00
$string [ 'parametersheader_help' ] = 'Some internal Moodle variables may be automatically appended to the URL. Type your name for the parameter into each text box(es) and then select the required matching variable.' ;
MDL-23318 Consistent usage of 'pluginadministration' string for the Settings block
AMOS BEGIN
MOV [assignmentadministration,mod_assignment],[pluginadministration,mod_assignment]
MOV [dataadministration,mod_data],[pluginadministration,mod_data]
MOV [feedbackadministration,mod_feedback],[pluginadministration,mod_feedback]
MOV [folderadministration,mod_folder],[pluginadministration,mod_folder]
MOV [forumadministration,mod_forum],[pluginadministration,mod_forum]
MOV [glossaryadministration,mod_glossary],[pluginadministration,mod_glossary]
MOV [chatadministration,mod_chat],[pluginadministration,mod_chat]
MOV [choiceadministration,mod_choice],[pluginadministration,mod_choice]
MOV [imscpadministration,mod_imscp],[pluginadministration,mod_imscp]
MOV [labeladministration,mod_label],[pluginadministration,mod_label]
MOV [lessonadministration,mod_lesson],[pluginadministration,mod_lesson]
MOV [pageadministration,mod_page],[pluginadministration,mod_page]
MOV [quizadministration,mod_quiz],[pluginadministration,mod_quiz]
MOV [resourceadministration,mod_resource],[pluginadministration,mod_resource]
MOV [scormadministration,mod_scorm],[pluginadministration,mod_scorm]
MOV [surveyadministration,mod_survey],[pluginadministration,mod_survey]
MOV [urladministration,mod_url],[pluginadministration,mod_url]
MOV [wikiadministration,mod_wiki],[pluginadministration,mod_wiki]
MOV [workshopadministration,mod_workshop],[pluginadministration,mod_workshop]
AMOS END
2010-08-17 17:35:12 +00:00
$string [ 'pluginadministration' ] = 'URL module administration' ;
MDL-22056 Adding pluginname to activity modules to fix gradebook issues caused by MDL-23071 (keeping modulename for n)
AMOS BEGIN
CPY [modulename,assignment],[pluginname,assignment]
CPY [modulename,chat],[pluginname,chat]
CPY [modulename,choice],[pluginname,choice]
CPY [modulename,data],[pluginname,data]
CPY [modulename,feedback],[pluginname,feedback]
CPY [modulename,folder],[pluginname,folder]
CPY [modulename,forum],[pluginname,forum]
CPY [modulename,glossary],[pluginname,glossary]
CPY [modulename,hotpot],[pluginname,hotpot]
CPY [modulename,imscp],[pluginname,imscp]
CPY [modulename,label],[pluginname,label]
CPY [modulename,lesson],[pluginname,lesson]
CPY [modulename,page],[pluginname,page]
CPY [modulename,quiz],[pluginname,quiz]
CPY [modulename,resource],[pluginname,resource]
CPY [modulename,survey],[pluginname,survey]
CPY [modulename,url],[pluginname,url]
CPY [modulename,wiki],[pluginname,wiki]
CPY [modulename,workshop],[pluginname,workshop]
AMOS END
2010-07-05 05:12:39 +00:00
$string [ 'pluginname' ] = 'URL' ;
2009-08-13 20:49:37 +00:00
$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' ;
2012-02-10 02:44:27 +08:00
$string [ 'printintroexplain' ] = 'Display URL description below content? Some display types may not display description even if enabled.' ;
2009-08-13 20:49:37 +00:00
$string [ 'rolesinparams' ] = 'Include role names in parameters' ;
2010-07-08 06:46:14 +00:00
$string [ 'serverurl' ] = 'Server URL' ;
2012-03-07 16:24:02 +00:00
$string [ 'url:addinstance' ] = 'Add a new URL resource' ;
2010-10-14 19:40:50 +00:00
$string [ 'url:view' ] = 'View URL' ;