
-v2.7.4. -Switch from Microsoft Locale Codes to ISO 639-1 language standard. -Updated English, French translations (en & fr). -Added Spanish language translation (es). -Added Chinese (Simplified) language translation (zh). -Added Hindi language translation (hi). -Added Arabic language translation (ar). -Added a bunch of updated screenshots.
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>
|
|
|