Advertisement
Jorup16

Info MCP Arcade

Sep 8th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.45 KB | None | 0 0
  1. <?php
  2. /**
  3. * Spanish Translation by Jorup16 (Jorge) - < www.fifa-guate.com > | < www.fifa-xgamers.com >
  4. * acp info_mcp_arcade [Spanish]
  5. *
  6. * @package phpBB Arcade language
  7. * @version $Id: info_mcp_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.     'ARCADE_LOGVIEW_EDITGAME'   => 'Editar juego',
  43.     'ARCADE_LOGVIEW_LOGS'       => 'Ver registro de juegos',
  44.     'ARCADE_LOGVIEW_VIEWGAME'   => 'Ver juego',
  45. ));
  46.  
  47. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement