dj_mix_hosting_software/functions/i18n.php
2024-04-29 19:04:51 -07:00

11 lines
345 B
PHP

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