aboutsummaryrefslogtreecommitdiffstats
path: root/contribute/contribute.php
blob: e564bc6e199bc083be9ec69bdc99a9211e9445a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

$locale = explode('/', $_SERVER['REQUEST_URI']);
$locale = $locale[1];

include 'contribute_locales.php';
if (!array_key_exists($locale, $_t)) {
            $locale = 'en';
}

$_t = $_t[$locale];
?>