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

20
scripts/languages.js Executable file
View File

@@ -0,0 +1,20 @@
<?php
// Included files
require_once __DIR__ . "/../backend/common.php";
require_once __DIR__ . "/../backend/language.php";
// Main function
// Set content type header
header("Content-Type: application/javascript; charset=" . mb_internal_encoding());
?>// Use strict
"use strict";
// Constants
// Available languages
var AVAILABLE_LANGUAGES = <?= json_encode(getAvailableLanguages()); ?>;