forked from friendica/deprecated-addons
13 lines
532 B
PHP
13 lines
532 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['WindowsPhonePush settings updated.'] = 'WindowsPhonePush -asetuket päivitetty.';
|
||
|
$a->strings['WindowsPhonePush Settings'] = 'WindowsPhonePush -asetukset';
|
||
|
$a->strings['Enable WindowsPhonePush Addon'] = 'Ota WindowsPhonePush -lisäosa käyttöön';
|
||
|
$a->strings['Push text of new item'] = 'Uuden kohteen Push -teksti';
|
||
|
$a->strings['Save Settings'] = 'Tallenna asetukset';
|