forked from friendica/friendica-addons
12 lines
399 B
PHP
12 lines
399 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_de")) {
|
|
function string_plural_select_de($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['Enable WindowsPhonePush Addon'] = 'Aktiviere WindowsPhonePush-Addon';
|
|
$a->strings['Push text of new item'] = 'Text senden';
|
|
$a->strings['Device URL'] = 'Geräte URL';
|
|
$a->strings['WindowsPhonePush Settings'] = 'WindowsPhonePush-Einstellungen';
|