
-v2.7.5. -Added code to each UI in Languages to prevent execution without the core having been loaded already. -Fixed a bug when creating archives in .zip and .7z format. -Touched up README.md. -Added Russian language translation (ru). -Added Ukranian language translation (uk). -Added Bengali language translation (bn). -Added German language translation (de). -Added Korean language translation (ko). -Added Italian language translation (it). -Added Portugese language translation (pt).
20 lines
No EOL
1 KiB
PHP
20 lines
No EOL
1 KiB
PHP
<?php if (!isset($ApplicationName)) $ApplicationName = 'HRConvert2';
|
|
if (!isset($ApplicationTitle)) $ApplicationTitle = 'কিছু রূপান্তর!';
|
|
if (!isset($Font)) $Font = 'Arial'; ?>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="shortcut icon" href="Resources/favicon.ico"/>
|
|
<link rel="stylesheet" href="Resources/dropzone.css"/>
|
|
<link rel="stylesheet" href="Resources/HRConvert2.css"/>
|
|
<script type="text/javascript" src="Resources/HRC2-Functions.js"></script>
|
|
<script type="text/javascript">var dropzoneText = 'আপলোড করতে এখানে ফাইলগুলিকে ক্লিক করুন, ট্যাপ করুন বা ড্রপ করুন৷';</script>
|
|
<script type="text/javascript" src="Resources/dropzone.js"></script>
|
|
<style>
|
|
body {
|
|
font-family: <?php echo $Font; ?>; }
|
|
<?php if (isset($ButtonCode)) echo $ButtonCode; ?>
|
|
</style>
|
|
<title><?php echo $ApplicationName; ?> - <?php echo $ApplicationTitle; ?></title>
|
|
</head>
|
|
|