| 1 | efrain | 1 | <?php
 | 
        
           |  |  | 2 | // This file is part of Moodle - http://moodle.org/
 | 
        
           |  |  | 3 | //
 | 
        
           |  |  | 4 | // Moodle is free software: you can redistribute it and/or modify
 | 
        
           |  |  | 5 | // it under the terms of the GNU General Public License as published by
 | 
        
           |  |  | 6 | // the Free Software Foundation, either version 3 of the License, or
 | 
        
           |  |  | 7 | // (at your option) any later version.
 | 
        
           |  |  | 8 | //
 | 
        
           |  |  | 9 | // Moodle is distributed in the hope that it will be useful,
 | 
        
           |  |  | 10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
        
           |  |  | 11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
        
           |  |  | 12 | // GNU General Public License for more details.
 | 
        
           |  |  | 13 | //
 | 
        
           |  |  | 14 | // You should have received a copy of the GNU General Public License
 | 
        
           |  |  | 15 | // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
 | 
        
           |  |  | 16 |   | 
        
           |  |  | 17 | /**
 | 
        
           |  |  | 18 |  * Strings for component 'rating', language 'en', branch 'MOODLE_20_STABLE'
 | 
        
           |  |  | 19 |  *
 | 
        
           |  |  | 20 |  * @package   core_rating
 | 
        
           |  |  | 21 |  * @copyright 1999 onwards Martin Dougiamas  {@link http://moodle.com}
 | 
        
           |  |  | 22 |  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 | 
        
           |  |  | 23 |  */
 | 
        
           |  |  | 24 |   | 
        
           |  |  | 25 | $string['aggregatetype'] = 'Aggregate type';
 | 
        
           |  |  | 26 | $string['aggregateavg'] = 'Average of ratings';
 | 
        
           |  |  | 27 | $string['aggregatecount'] = 'Count of ratings';
 | 
        
           |  |  | 28 | $string['aggregatemax'] = 'Maximum rating';
 | 
        
           |  |  | 29 | $string['aggregatemin'] = 'Minimum rating';
 | 
        
           |  |  | 30 | $string['aggregatenone'] = 'No ratings';
 | 
        
           |  |  | 31 | $string['aggregatesum'] = 'Sum of ratings';
 | 
        
           |  |  | 32 | $string['aggregatetype_help'] = 'The aggregate type defines how ratings are combined to form the final grade in the gradebook.
 | 
        
           |  |  | 33 |   | 
        
           |  |  | 34 | * Average of ratings - The mean of all ratings
 | 
        
           |  |  | 35 | * Count of ratings - The number of rated items becomes the final grade. Note that the total cannot exceed the maximum grade for the activity.
 | 
        
           |  |  | 36 | * Maximum - The highest rating becomes the final grade
 | 
        
           |  |  | 37 | * Minimum - The smallest rating becomes the final grade
 | 
        
           |  |  | 38 | * Sum - All ratings are added together. Note that the total cannot exceed the maximum grade for the activity.
 | 
        
           |  |  | 39 |   | 
        
           |  |  | 40 | If "No ratings" is selected, then the activity will not appear in the gradebook.';
 | 
        
           |  |  | 41 | $string['allowratings'] = 'Allow items to be rated?';
 | 
        
           |  |  | 42 | $string['allratingsforitem'] = 'All submitted ratings';
 | 
        
           |  |  | 43 | $string['capabilitychecknotavailable'] = 'Capability check not available until activity is saved';
 | 
        
           |  |  | 44 | $string['couldnotdeleteratings'] = 'Sorry, that cannot be deleted as people have already rated it';
 | 
        
           |  |  | 45 | $string['norate'] = 'Rating of items not allowed!';
 | 
        
           |  |  | 46 | $string['noratings'] = 'No ratings submitted';
 | 
        
           |  |  | 47 | $string['noviewanyrate'] = 'You can only look at results for items that you made';
 | 
        
           |  |  | 48 | $string['noviewrate'] = 'You do not have the capability to view item ratings';
 | 
        
           |  |  | 49 | $string['rate'] = 'Rate';
 | 
        
           |  |  | 50 | $string['ratepermissiondenied'] = 'You do not have permission to rate this item';
 | 
        
           |  |  | 51 | $string['rating'] = 'Rating';
 | 
        
           |  |  | 52 | $string['ratinginvalid'] = 'Rating is invalid';
 | 
        
           |  |  | 53 | $string['ratingtime'] = 'Restrict ratings to items with dates in this range:';
 | 
        
           |  |  | 54 | $string['ratings'] = 'Ratings';
 | 
        
           |  |  | 55 | $string['rolewarning'] = 'Roles with permission to rate';
 | 
        
           |  |  | 56 | $string['rolewarning_help'] = 'Roles with permission to rate are roles with the capability moodle/rating:rate plus any activity-specific rating capabilities. You can give more roles permission to rate via the page Permissions.';
 | 
        
           |  |  | 57 | $string['scaleselectionrequired'] = 'When selecting a ratings aggregate type you must also select to use either a scale or set a maximum points.';
 | 
        
           |  |  | 58 | $string['privacy:metadata:rating'] = 'The user-entered rating is stored alongside a mapping of the item which was rated.';
 | 
        
           |  |  | 59 | $string['privacy:metadata:rating:userid'] = 'The user who made the rating.';
 | 
        
           |  |  | 60 | $string['privacy:metadata:rating:rating'] = 'The numeric rating that the user entered.';
 | 
        
           |  |  | 61 | $string['privacy:metadata:rating:timecreated'] = 'The time that the rating was first made.';
 | 
        
           |  |  | 62 | $string['privacy:metadata:rating:timemodified'] = 'The time that the rating was last updated.';
 |