c0381e22 |
1 | <?PHP |
2 | |
3 | // These should be accessed using get_mimetype_description in filelib.php. |
4 | // They correspond to a (currently small) subset of the MIME types that Moodle |
5 | // supports, which are also listed in filelib.php. Descriptions for other types |
6 | // should be added here. |
7 | |
8 | // Style: initial lower-case letter, except as required for product names etc. |
9 | |
10 | $string['text/plain'] = 'text file'; |
11 | $string['application/pdf'] = 'PDF document'; |
12 | $string['application/msword'] = 'Word document'; |
13 | $string['text/rtf'] = 'RTF document'; |
14 | $string['application/vnd.ms-excel'] = 'Excel spreadsheet'; |
15 | $string['audio/wav'] = 'sound file'; |
16 | $string['audio/mp3'] = 'MP3 audio file'; |
17 | $string['application/vnd.ms-powerpoint'] = 'Powerpoint presentation'; |
18 | $string['application/zip'] = 'zip archive'; |
19 | $string['image/jpeg'] = 'JPEG image'; |
20 | $string['image/gif'] = 'GIF image'; |
21 | $string['image/bmp'] = 'uncompressed BMP image'; |
22 | |
23 | // Moodle default MIME type used for all types not described |
24 | $string['document/unknown'] = 'file'; |
25 | |
26 | ?> |