forked from friendica/deprecated-addons
12 lines
439 B
PHP
12 lines
439 B
PHP
|
<?php
|
||
|
|
||
|
if(! function_exists("string_plural_select_hu")) {
|
||
|
function string_plural_select_hu($n){
|
||
|
$n = intval($n);
|
||
|
return intval($n != 1);
|
||
|
}}
|
||
|
$a->strings['Enable WindowsPhonePush Addon'] = 'A WindowsPhonePush kiegészítő engedélyezése';
|
||
|
$a->strings['Push text of new item'] = 'Új elem szövegének felküldése';
|
||
|
$a->strings['Device URL'] = 'Eszköz URL';
|
||
|
$a->strings['WindowsPhonePush Settings'] = 'WindowsPhonePush beállításai';
|