HRConvert2/Languages/es/header.php
Justin Grimes f49b03023f v2.7.4 - Added 4 language translations.
-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.
2022-04-14 03:57:25 -04:00

20 lines
No EOL
929 B
PHP

<?php if (!isset($ApplicationName)) $ApplicationName = 'HRConvert2';
if (!isset($ApplicationTitle)) $ApplicationTitle = '¡Convierte Cualquier 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 = 'Haga clic, toque o suelte archivos aquí para cargar.';</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>