HRConvert2/Languages/uk/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
1,007 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>