13 lines
338 B
PHP
13 lines
338 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_es")) {
|
|
function string_plural_select_es($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
;
|
|
$a->strings["OK"] = "OK";
|
|
$a->strings["Cookie Usage Notice"] = "Aviso de uso de cookies";
|
|
$a->strings["OK Button Text"] = "Texto del botón OK";
|
|
$a->strings["Save Settings"] = "Grabar Ajustes";
|