16 lines
609 B
PHP
16 lines
609 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["Use Cat as Avatar"] = "Verwende diese Katze als Profilbild";
|
|
$a->strings["More Random Cat!"] = "Weitere zufällige Katze";
|
|
$a->strings["Reset to email Cat"] = "Zurück zu E-Mail-Katze";
|
|
$a->strings["Cat Avatar Settings"] = "Katzen-Profilbild-Einstellungen";
|
|
$a->strings["There was an error, the cat ran away."] = "Upps, es gab einen Fehler und die Katze ist weggelaufen";
|
|
$a->strings["Profile Photos"] = "Profilbilder";
|
|
$a->strings["Meow!"] = "Miau!";
|