2025-01-09 11:57:11 -08:00

13 lines
355 B
PHP

<?php
function loadLocale($lang = 'en-us')
{
$file = __DIR__ . '/../locale/' . $lang . '/messages.php';
if (file_exists($file)) {
return require_once $file;
} else {
// Fallback to English if the specified language file does not exist
return require_once __DIR__ . '/../locale/en-us/messages.php';
}
}