11 lines
383 B
PHP
11 lines
383 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['Permission denied.'] = 'Åtkomst nekad.';
|
|
$a->strings['You are now authenticated to tumblr.'] = 'Du är nu autentiserad till tumblr.';
|
|
$a->strings['You are not authenticated to tumblr'] = 'Du är inte autentiserad till tumblr';
|