mirror of
https://github.com/moodle/moodle.git
synced 2025-02-24 03:53:49 +01:00
12 lines
327 B
PHP
12 lines
327 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.
|
||
|
|
||
|
$string['thislanguage'] = 'English';
|
||
|
$string['thischarset'] = 'iso-8859-1';
|
||
|
$string['locale'] = 'en';
|
||
|
$string['parentlang'] = 'en_utf8';
|
||
|
|
||
|
|
||
|
?>
|