php loading yaml and first variables added
This commit is contained in:
parent
7c54caf861
commit
9cbcbd03ec
|
@ -4,14 +4,17 @@
|
|||
|
||||
$lang=$_GET['lang'];
|
||||
if ( in_array ($lang, array('en-US'))){
|
||||
|
||||
$loc = "$lang".".utf8";
|
||||
$loc1 = $lang;
|
||||
}
|
||||
else
|
||||
else {
|
||||
$loc = "de-DE";
|
||||
$loc1 = "de-DE";
|
||||
}
|
||||
|
||||
|
||||
include "Spyc.php";
|
||||
$localeYaml = Spyc::YAMLLoad('locale.yaml');
|
||||
|
||||
$domain = "messages";
|
||||
|
||||
|
@ -26,7 +29,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<title>Verpflegungsmehraufwand Wikimedia Deutschland e.V.</title>
|
||||
<title><?php echo _($localeYaml['title'][$loc1])?></title>
|
||||
<link rel="stylesheet" href="verpflegungsmehraufwand.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
||||
<script src="polyfiller.js"></script>
|
||||
|
@ -454,7 +457,7 @@
|
|||
<body>
|
||||
<header>
|
||||
<img style="float: right;" src="logo_web.png" alt="logo">
|
||||
<h1>Anlage Verpflegungsmehraufwand</h1>
|
||||
<h1><?php echo _($localeYaml['header'][$loc1])?></h1>
|
||||
<p>Gemäß Abschnitt 4 und 5 (<a href="https://www.wikimedia.de/wiki/Geschäftsordnung#Anhang_Verpflegungsmehraufwand">Reisekostenordnung</a>) der Geschäftsordnung in Verbindung mit §4 Abs. 5 Nr. 5 Einkommensteuergesetz</p>
|
||||
</header>
|
||||
<div id="printcontainer_top"><input type="button" value="🖶 Anlage Verpflegungsmehraufwand drucken" id="print_top"></div>
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Verpflegungsmehraufwandsformular wikimedia Deutschland
|
||||
|
||||
title:
|
||||
de-DE: Anlage Verpflegungsmehraufwand Wikimedia Deutschland e.V.
|
||||
en-US: Attachment for extra meal expenses Wikimedia Germany e.V.
|
||||
header:
|
||||
de-DE: Anlage Verpflegungsmehraufwand
|
||||
en-US: Attachment for extra meal expenses
|
||||
title_subtext_1:
|
||||
|
|
Loading…
Reference in New Issue