Skip to content

Instantly share code, notes, and snippets.

@guelu63
Created June 25, 2020 22:06
Show Gist options
  • Save guelu63/e2757dbc4aea413abf9271237e0fc77f to your computer and use it in GitHub Desktop.
Save guelu63/e2757dbc4aea413abf9271237e0fc77f to your computer and use it in GitHub Desktop.
modx faqman lexicon es
<?php
/**
* faqMan
*
* Copyright 2010 by Josh Tambunga <josh+faqman@joshsmind.com>
*
* faqMan is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* faqMan is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* faqMan; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package faqman
*/
/**
* Default English Lexicon Entries for faqMan
*
* @package faqman
* @subpackage lexicon
*/
$_lang['faqman'] = 'Administrador de FAQ\'s';
$_lang['faqman.menu_desc'] = 'Simple Administrador de preguntas frecuentes';
$_lang['faqman.back_to_sets'] = 'Volver a Conjuntos';
$_lang['faqman.publish'] = 'Publicar';
$_lang['faqman.unpublish'] = 'Ocultar';
$_lang['faqman.set_intro_msg'] = 'Administra Conjuntos de FAQ\'s.';
$_lang['faqman.sets'] = 'Conjuntos';
$_lang['faqman.set_create'] = 'Crear conjunto de FAQ\'s';
$_lang['faqman.set_err_ae'] = 'Ya existe un conjunto con ese nombre.';
$_lang['faqman.set_err_nf'] = 'Conjunto de FAQ\'s no encontrado.';
$_lang['faqman.set_err_ns'] = 'Conjunto no especificado.';
$_lang['faqman.set_err_remove'] = 'Se ha producido un error al intentar eliminar el conjunto de preguntas frecuentes.';
$_lang['faqman.set_err_save'] = 'Se produjo un error al intentar guardar el conjunto de preguntas frecuentes.';
$_lang['faqman.set_remove'] = 'Eliminar conjunto de FAQ\'s';
$_lang['faqman.set_remove_confirm'] = '¿Estás seguro de que deseas eliminar este conjunto de FAQ\'s? (Todas las preguntas frecuentes contenidas también se eliminarán)';
$_lang['faqman.set_update'] = 'Actualizar conjunto de FA\'s';
$_lang['faqman.set_manage'] = 'Administrar conjunto de FAQ\'s';
$_lang['faqman.item_intro_msg'] = 'Administra tus FAQ\'s.';
$_lang['faqman.items'] = 'FAQ\'s';
$_lang['faqman.item_create'] = 'Crear FAQ';
$_lang['faqman.item_err_ae'] = 'Ya existe una FAQ con ese nombre.';
$_lang['faqman.item_err_nf'] = 'FAQ no encontrada.';
$_lang['faqman.item_err_ns'] = 'FAQ no especificada.';
$_lang['faqman.item_err_remove'] = 'Se produjo un error al intentar eliminar la FAQ.';
$_lang['faqman.item_err_save'] = 'Se produjo un error al intentar guardar la FAQ.';
$_lang['faqman.item_remove'] = 'Eliminar FAQ';
$_lang['faqman.item_remove_confirm'] = '¿Estás seguro/a de que quieres eliminar esta FAQ?';
$_lang['faqman.item_update'] = 'Actualizar FAQ';
$_lang['faqman.intro_msg'] = 'Administra tus FAQ\'s.';
$_lang['faqman.question'] = 'Pregunta';
$_lang['faqman.answer'] = 'Respuesta';
$_lang['faqman.toggle_answers'] = 'Activar/Desactivar vistas previas de respuestas';
$_lang['setting_faqman.use_richtext'] = 'Utiliczar el Editor de texto enriquecido en preguntas frecuentes';
<?php
/**
* faqMan
*
* Copyright 2010 by Josh Tambunga <josh+faqman@joshsmind.com>
*
* faqMan is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* faqMan is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* faqMan; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package faqman
*/
/**
* Properties English Lexicon Entries for faqMan
*
* @package faqman
* @subpackage lexicon
*/
$_lang['prop_faqman.limit_desc'] = 'El número límite de preguntas frecuentes página.';
$_lang['prop_faqman.outputseparator_desc'] = 'Una cadena con la que separar cada fila.';
$_lang['prop_faqman.sortby_desc'] = 'El campo por el que ordenar.';
$_lang['prop_faqman.sortdir_desc'] = 'La dirección de ordenamiento.';
$_lang['prop_faqman.tpl_desc'] = 'El chunk a usar para cada fila de FAQ\'s.';
$_lang['prop_faqman.tplset_desc'] = 'El chunk a utilizar para el encabezado de cada conjunto de preguntas frecuentes que se muestran.';
$_lang['prop_faqman.toplaceholder_desc'] = 'Si se establece, enviará el contenido al marcador de posición (placeholder) especificado en esta propiedad, en lugar de enviar el contenido directamente.';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment