15 lines
930 B
PHP
15 lines
930 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_fi_fi")) {
|
|
function string_plural_select_fi_fi($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['Save Settings'] = 'Tallenna asetukset';
|
|
$a->strings['Redirect URL'] = 'Uudelleenohjaus URL-osoite';
|
|
$a->strings['all your visitors from the web will be redirected to this URL'] = 'kaikki kävijät uudelleenohjataan tähän URL-osoitteeseen';
|
|
$a->strings['Begin of the Blackout'] = 'Blackout alkaa';
|
|
$a->strings['format is <em>YYYY</em> year, <em>MM</em> month, <em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute'] = 'formaati on <em>VVVV</em> vuosi, <em>KK</em> kuukausi, <em>PP</em> päivä, <em>tt</em> tunti ja <em>mm</em> minuutti';
|
|
$a->strings['End of the Blackout'] = 'Blackout loppuu';
|
|
$a->strings['The end-date is prior to the start-date of the blackout, you should fix this.'] = 'Blackoutin päättymispäivä on ennen alkamispäivää, korjaa tämä.';
|