2016-11-18 01:57:19 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_es")) {
|
|
|
|
function string_plural_select_es($n){
|
2021-02-01 12:47:38 -05:00
|
|
|
$n = intval($n);
|
|
|
|
return intval($n != 1);
|
2016-11-18 01:57:19 -05:00
|
|
|
}}
|
2021-10-10 02:27:53 -04:00
|
|
|
$a->strings['Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s'] = 'Base de Datos: %s/%s, Red: %s, Reproducción: %s, Sesión: %s, E/S: %s, Otros: %s, Total: %s';
|
|
|
|
$a->strings['Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s'] = 'Clase de Inicio: %s, Arranque: %s, Inicio: %s, Contenido: %s, Otros: %s, Total: %s';
|