HRConvert2/Languages/it/header.php
Justin Grimes 7330a71337 v2.7.5 - Added 7 language translations, fixed compression bug.
-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).
2022-04-14 23:56:41 -04:00

20 lines
No EOL
929 B
PHP

<?php if (!isset($ApplicationName)) $ApplicationName = 'HRConvert2';
if (!isset($ApplicationTitle)) $ApplicationTitle = 'Converti Qualsiasi Cosa!';
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 = 'Fai clic, tocca o rilascia i tuoi file qui per caricarli.';</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>