contents of zip

This commit is contained in:
transatoshi
2024-12-20 18:08:44 -08:00
parent aeb2b99db7
commit f03ed73d2b
261 changed files with 208197 additions and 0 deletions

36
languages/american_english.php Executable file
View File

@@ -0,0 +1,36 @@
<?php
// Append American English to available languages
$availableLanguages["en-US"] = [
// Constants
"Constants" => [
// Language
"Language" => "English",
// Direction
"Direction" => "ltr",
// Image
"Image" => "./images/countries/america.svg",
// Currency
"Currency" => "USD",
// Extension locale code
"Extension Locale Code" => "en",
// Fallback
"Fallback" => "en"
],
// Text
"Text" => [
'(?<=,) ' => ' ',
'(?<=.) ' => ' ',
'(?<=:) ' => ' ',
',(?= )' => ',',
]
];
?>