mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
12 lines
407 B
PHP
12 lines
407 B
PHP
<?php // $Id$
|
|
// A stub language pack for backward compatibility with old sites not using Unicode.
|
|
// It simply makes the en_utf8 pack appear under the old latin encoding.
|
|
// Do not add new strings here, please use en_utf8 for all new strings
|
|
|
|
$string['thislanguage'] = 'English';
|
|
$string['thischarset'] = 'iso-8859-1';
|
|
$string['locale'] = 'en';
|
|
$string['parentlanguage'] = 'en_utf8';
|
|
|
|
?>
|