Advertisement
Jorup16

Info UCP Arcade

Sep 8th, 2013
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.56 KB | None | 0 0
  1. <?php
  2. /**
  3. * Spanish Translation by Jorup16 (Jorge) - < www.fifa-guate.com > | < www.fifa-xgamers.com >
  4. * ucp info_ucp_arcade [Spanish]
  5. *
  6. * @package phpBB Arcade language
  7. * @version $Id: info_ucp_arcade.php 126 2012-12-15 12:22:16Z killbill $
  8. * @copyright (c) 2008-2011 JRSweets - jrsweets@gmail.com
  9. * @copyright (c) 2011-2013 http://phpbbarcade.jatek-vilag.com
  10. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  11. *
  12. */
  13.  
  14. /**
  15. * DO NOT CHANGE
  16. */
  17. if (!defined('IN_PHPBB'))
  18. {
  19.     exit;
  20. }
  21.  
  22. if (empty($lang) || !is_array($lang))
  23. {
  24.     $lang = array();
  25. }
  26.  
  27. // DEVELOPERS PLEASE NOTE
  28. //
  29. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  30. //
  31. // Placeholders can now contain order information, e.g. instead of
  32. // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  33. // translators to re-order the output of data while ensuring it remains correct
  34. //
  35. // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  36. // equally where a string contains only two placeholders which are used to wrap text
  37. // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  38. // Some characters you may want to copy&paste: ’ » “ ” …
  39.  
  40. //Arcade
  41. $lang = array_merge($lang, array(
  42.     'TOO_LARGE_GAMES_PER_PAGE'              => 'El valor ingresado es demasiado grande. Por favor ingrese un número entre 0 y 50. Si ingresa cero (0) se utilizarán las opciones predeterminadas del Arcade.',
  43.     'TOO_SMALL_GAMES_PER_PAGE'              => 'El valor ingresado es demasiado pequeño. Por favor ingrese un número entre 0 y 50. Si ingresa cero (0) se utilizarán las opciones predeterminadas del Arcade.',
  44.  
  45.     'UCP_ARCADE'                            => 'phpBB Arcade',
  46.     'UCP_ARCADE_DELETE_FAVORITE'            => 'Eliminar juego favorito',
  47.     'UCP_ARCADE_DELETE_FAVORITES'           => 'Eliminar juegos favoritos',
  48.     'UCP_ARCADE_DELETE_FAVORITES_CONFIRM'   => '¿Está seguro que desea eliminar estos juegos favoritos?',
  49.     'UCP_ARCADE_DELETE_FAVORITE_CONFIRM'    => '¿Está seguro que desea eliminar este juego favorito?',
  50.     'UCP_ARCADE_DISPLAY_GAME_IMAGE'         => 'Mostrar imagen del juego',
  51.     'UCP_ARCADE_DISPLAY_POPUP_ICON'         => 'Mostrar icono de ventana emergente',
  52.     'UCP_ARCADE_FAVORITES'                  => 'Administrar favoritos',
  53.     'UCP_ARCADE_FAVORITES_DELETED'          => 'Juegos favoritos se han eliminado correctamente.',
  54.     'UCP_ARCADE_FAVORITES_EXPLAIN'          => 'Puede ver y eliminar sus juegos favoritos en la parte de abajo.',
  55.     'UCP_ARCADE_FAVORITE_DELETED'           => 'Juego favorito se ha eliminado correctamente.',
  56.     'UCP_ARCADE_NOTIFY_ON_PM'               => 'Notificarme de un mensaje privado por medio de un correo electrónico',
  57.     'UCP_ARCADE_NO_PERM_PM_LOSS_HIGHSCORE'  => 'No tiene los permisos para recibir mensajes personales sobre la pérdida de un trofeo.',
  58.     'UCP_ARCADE_OVERRIDE_USER_SORT_UCP'     => 'Los ajustes ordenados en la parte de abajo actualmente, deberán ser anulados por el administrador del foro.',
  59.     'UCP_ARCADE_POST'                       => 'Ajustes de publicación',
  60.     'UCP_ARCADE_POST_EXPLAIN'               => 'Ajusta la personalización de las publicaciones.',
  61.     'UCP_ARCADE_SEND_PM_EXPLAIN'            => 'Cuando su puntuación más alta es superada o pierde un desafío de un usuario, un mensaje privado será enviado para notificarle al respecto.',
  62.     'UCP_ARCADE_SETTINGS'                   => 'Opciones Arcade',
  63.     'UCP_ARCADE_SETTINGS_EXPLAIN'           => 'Estos ajustes controlan varios aspectos del Arcade.',
  64.     'UCP_CAT_ARCADE'                        => 'Arcade',
  65.     'UCP_CHALLENGE_ENABLED'                 => 'Desafío activado',
  66.     'UCP_CHALLENGE_ENABLED_EXPLAIN'         => 'Si se habilita, los usuarios podrán desafiarlo en los juegos.',
  67. ));
  68.  
  69. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement