2015-04-03 11:17:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_de")) {
|
|
|
|
function string_plural_select_de($n){
|
2021-02-01 17:47:38 +00:00
|
|
|
$n = intval($n);
|
|
|
|
return intval($n != 1);
|
2015-04-03 11:17:32 +00:00
|
|
|
}}
|
|
|
|
;
|
2021-03-29 05:48:17 +00:00
|
|
|
$a->strings["Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s"] = "Datenbank: %s/%s, Netzwerk: %s, Darstellung: %s, Sitzung: %s, I/O: %s, Sonstiges: %s, Gesamt: %s";
|
|
|
|
$a->strings["Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s"] = "Class-Init: %s, Boot: %s, Init: %s, Inhalt: %s, Sonstiges: %s, Gesamt: %s";
|