mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 13:43:00 +00:00
12 lines
342 B
PHP
12 lines
342 B
PHP
|
<?php
|
||
|
|
||
|
if(! function_exists("string_plural_select_sv")) {
|
||
|
function string_plural_select_sv($n){
|
||
|
$n = intval($n);
|
||
|
return intval($n != 1);
|
||
|
}}
|
||
|
$a->strings['New Member'] = 'Ny medlem';
|
||
|
$a->strings['Tips for New Members'] = 'Tips för nya medlemmar';
|
||
|
$a->strings['Save Settings'] = 'Spara inställningar';
|
||
|
$a->strings['Message'] = 'Meddelande';
|