Spanish language:
Code: Select all
<?php
/**
*
* common [Spanish]
*
* @package Post Count Requirements
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//
$lang = array_merge($lang, array(
'FORUM_PCR_POST' => 'Requisito de Nuevo Tema/Responder',
'FORUM_PCR_POST_EXPLAIN' => 'La cantidad de mensajes requeridos para escribir en este foro. Al establecer este valor a 0 deshabilita este requisito.',
'FORUM_PCR_VIEW' => 'Requisito de Ver Mensaje del Foro',
'FORUM_PCR_VIEW_EXPLAIN' => 'La cantidad de mensajes requeridos para ver este foro. Al establecer este valor a 0 deshabilita este requisito.',
'GROUP_IGNORE_PCR' => 'Ignorar requisitos de recuento de mensajes',
'GROUP_IGNORE_PCR_EXPLAIN' => 'Si está habilitado, a este grupo se le permitirá ver/escribir en foros donde los requisitos de recuento se establecen independientemente del recuento de mensajes del usuario.',
'PCR_ERROR_POST' => array(
1 => 'Usted no tiene el número de mensajes necesarios para escribir en este foro.<br />Para escribir en este foro, debe tener %1$d mensaje.',
2 => 'Usted no tiene el número de mensajes necesarios para escribir en este foro.<br />Para escribir en este foro, debe tener %1$d mensajes.',
),
'PCR_ERROR_VIEW' => array(
1 => 'Usted no tiene el número de mensajes necesarios para ver en este foro.<br />Para ver este foro, debe tener %1$d mensaje.',
2 => 'Usted no tiene el número de mensajes necesarios para ver en este foro.<br />Para ver este foro, debe tener %1$d mensajes.',
),
/* 'PCR_ERROR_POST' => 'You do not have the required post count to post in this forum.<br />In order to make a post in this forum, you must have %1$d %2$s.',
'PCR_ERROR_VIEW' => 'You do not have the required post count to view this forum.<br />In order to view this forum, you must have %1$d %2$s.',
'PCR_POST' => 'post',
'PCR_POSTS' => 'posts',*/
));
