<?php
/**************************************************
  Coppermine 1.4.x Plugin - Right Click Menu
  *************************************************
  Copyright (c) 2006 Borzoo Mossavari
  *************************************************
  This program 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.
  *************************************************
  This is a simple Advertisement plugin without statistics
  or any kind of log.
  this will give you flash/picture/HTML banner
  By using FRAME technology
  ***************************************************/

if (!defined('IN_COPPERMINE')) { die('Not in Coppermine...'); }

$lang_plugin_rcmenu = array(
  'display_name'  => 'Men&uacute; Right Click',			// Display Name
  'config_title'  => 'Configurar Men&uacute; RC',			// Title of the button on the gallery config menu
  'config_button' => 'Men&uacute; RC',				// Label of the button on the gallery config menu
  'page_success'  => 'Par&aacute;metros de configuraci&oacute;n actualizados.',		// Page success message
  'page_failure'  => 'Incapaz de actualizar par&aacute;metross.',		// Page failure message
  'install_note'  => 'Configure el plugin usando el bot&oacute;n en la barra de Administraci&oacute;n.',	// Note about configuring plugin
  'install_click' => 'Pulse el bot&oacute;n para instalar el plugin.',	// Message to install plugin
  'create_success'=> 'Bot&oacute;n creado con &eacute;xito', // Create success message
  'version'       => 'Ver 2.0.0 <font size=1><em>Estable</em></font>'

);

$lang_plugin_rcmenu_config = array(
  'status'        => 'Estado del Plugin',
  'button_install'=> 'Instalar',
  'button_submit' => 'Enviar',
  'button_cancel' => 'Cancelar',
  'button_done'   => 'Hecho',
  'cleanup_question' => '&#191;Borrar la tabla que se usaba para guardar los par&aacute;metros?',
  'text_title_des'=> '<font size="1" color="red">No use etiquetas html</font>',
  'expand_all'    => 'Expandir todo',
  'permission'    => 'por favor CHMOD su carpeta de galer&iacute;a a 777 (s&oacute;lo la carpeta de la galer&iacute;a no los archivos y directorios en ella)',
);
$lang_plugin_rcmenumgr = array(
  'create'        => 'Men&uacute; de creaci&oacute;n de opciones',
  'name'          => 'T&iacute;tulo de la opci&oacute;n',
  'admin_menu'    => 'Mostrar s&oacute;lo en modo administrador',
  'yes'           => 'S&iacute;',
  'no'            => 'No',
  'hr'            => 'Poner una l&iacute;nea horizontal despu&eacute;s de esta opci&oacute;n',
  'url'           => 'URL de la opci&oacute;n',
  'target'        => 'Objetivo de la opci&oacute;n',
  'items'         => 'Lista de opciones',
  'id'            => 'Prioridad',
  'list_title'    => 'T&iacute;tulo',
  'list_target'   => 'Objetivo',
  'list_url'      => 'URL',
  'list_admin'    => 'S&oacute;lo modo administrador',
  'list_hr'       => 'L&iacute;nea horizontal',
  'list_but'      =>'Cambiar opciones',
  'delete'        =>'* <font color=red size=2>Para <strong>borrar</strong> una opci&oacute;n ponga el valor de prioridad a <strong>0</strong> </font>',
  'max'        =>'* <font color=red size=2>El n&uacute;mero <strong>m&aacute;ximo</strong> de opciones  en su men&uacute; es <strong>30</strong> (Por favor no use n&uacute;meros mayores que 30 para la prioridad)</font>',

);
?>