31 lines
726 B
PHP
31 lines
726 B
PHP
<?php
|
|
/**
|
|
* MyBB 1.8 English Language Pack
|
|
* Copyright 2014 MyBB Group, All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
// The friendly name of the language
|
|
$langinfo['name'] = "English (American)";
|
|
|
|
// The author of the language
|
|
$langinfo['author'] = "MyBB Group";
|
|
|
|
// The language authors website
|
|
$langinfo['website'] = "https://mybb.com/";
|
|
|
|
// Compatible version of MyBB
|
|
$langinfo['version'] = "1821";
|
|
|
|
// Sets if the translation includes the Admin CP (1 = yes, 0 = no)
|
|
$langinfo['admin'] = 1;
|
|
|
|
// Sets if the language is RTL (Right to Left) (1 = yes, 0 = no)
|
|
$langinfo['rtl'] = 0;
|
|
|
|
// Sets the lang in the <html> on all pages
|
|
$langinfo['htmllang'] = "en";
|
|
|
|
// Sets the character set, blank uses the default.
|
|
$langinfo['charset'] = "UTF-8";
|