Advertisement
geolim4

lang EN

Oct 14th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 10.47 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * Debug Errors and Notices [English]
  5. *
  6. * @package language
  7. * @version $Id: info_acp_errors.php 120 09:43 05/03/2012 Sylver35 Exp $
  8. * @copyright (c) 2010, 2012 Breizh Portal  http://breizh-portal.com
  9. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  10. * @translator Sylver35
  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. //
  39. // Some characters you may want to copy&paste:
  40. // ’ » “ ” …
  41. //
  42.  
  43. // Adding the permissions
  44. $lang = array_merge($lang, array(
  45.     // Admin permission
  46.     'acl_a_errors'          => array('lang' => 'Can manage the Mod Debug Errors and notices', 'cat' => 'misc'),
  47. ));
  48.  
  49. $lang = array_merge($lang, array(
  50.     'ACP_CAT_ERRORS'                => 'Errors Management',
  51.     'ACP_ERRORS_SIMPLE'             => 'Simple Errors',
  52.     'ACP_ERRORS_SIMPLE_ALT'         => 'Simple Errors [Debug]',
  53.     'ACP_ERRORS_SIMPLE_EXPLAIN'     => 'On this page you can view your board Simple mistakes [Debug]. These errors are not listed in the original error log of phpbb.
  54.                                         <br />So you see all the records and non-fatal errors occurred on your forum. This allows you to enable debug and extra debug without affecting the display, while keeping track of errors and notices for solving.
  55.                                         <br />You can sort messages by user, IP, language, page, file or error message by clicking directly on it.',
  56.     'ACP_ERRORS_CONFIG'             => 'Configuration',
  57.     'ACP_ERRORS_CONFIG_ALT'         => 'Configuration of Mod Debug Errors and Notices',
  58.     'ACP_ERRORS_CONFIG_EXPLAIN'     => 'On this page you can check if your version of this mod is current or otherwise, actions to take for the update.<br />You can also set points simple configuration related.',
  59.    
  60.     'LOG_ERRORS_CONFIG'             => '<strong>Update configuration Debug Errors and notices</strong>',
  61.     'LOG_SELECT_ERRORS'             => '<strong>Removing %s message Debug Errors and notices</strong>',
  62.     'LOG_SELECTS_ERRORS'            => '<strong>Removing %s messages Debug Errors and notices</strong>',
  63.     'LOG_PURGE_ERRORS'              => '<strong>Thorough purging messages Debug Errors and notices</strong><br />» %s deleted messages',
  64.     'LOG_SELECT_PURGE_ERRORS'       => '<strong>Removing %s info messages of Debug Errors and notices</strong><br />» “Cannot modify header information”',
  65.    
  66.     'ERRORS_DEBUG_ACTIVE'           => 'Enable the mod',
  67.     'ERRORS_DEBUG_ACTIVE_EXPLAIN'   => 'Enable/Disable the mod and record/stop recording errors in the database',
  68.     'ERRORS_DEBUG_ECHO'             => 'Display errors and notices',
  69.     'ERRORS_DEBUG_ECHO_EXPLAIN'     => 'Enable/Disable displays the errors and notices at the top of the forum when they occur.<br />You can enable DEBUG and EXTRA DEBUG in the file config.php to trace all the errors without altering the display of the forum users.',
  70.     'ERRORS_DEBUG_ALL'              => 'Trace all errors',
  71.     'ERRORS_DEBUG_ALL_EXPLAIN'      => 'Enable/Disable full collection of all Debug Errors and notices.<br />If enabled, informations: “Cannot modify header informations” will also be recorded.',
  72.     'ERRORS_DEBUG_WHOIS'            => 'Whois method',
  73.     'ERRORS_DEBUG_WHOIS_EXPLAIN'    => 'Choose the method to make a Whois on ip addresses:<br />&nbsp;&nbsp;► Geotool flagfox, Extension for Firefox<br />&nbsp;&nbsp;► en.utrace.de',
  74.     'ERRORS_DEBUG_DOMAINE'          => 'Geotool flagfox',
  75.     'ERRORS_DEBUG_UTRACE'           => 'en.utrace.de',
  76.     'ERRORS_DEBUG_ACP'              => 'Total messages',
  77.     'ERRORS_DEBUG_ACP_EXPLAIN'      => 'Choose the number of messages displayed on the page “Simple Errors”',
  78.     'ERRORS_WHOIS'                  => '► Whois',
  79.     'ERRORS_UTRACE'                 => 'Make a Whois on Utrace -> ',
  80.     'ERRORS_DOMAINE'                => 'Make a Whois on Domaine Tools -> ',
  81.     'ERRORS_SEARCH'                 => 'Search all messages of %s',
  82.     'ERRORS_DELETE'                 => 'Delete the “Cannot modify header informations”',
  83.     'ERRORS_DEBUG_DISPLAY'          => 'Display errors',
  84.     'ERRORS_DEBUG_OFF'              => 'Do not display errors',
  85.     'ERRORS_PAGE_LINE'              => 'page, file and line',
  86.     'ERRORS_PAGE'                   => 'Page',
  87.     'ERRORS_FILE'                   => 'File',
  88.     'ERRORS_LINE'                   => 'Line',
  89.     'ERRORS_LANGUAGE'               => 'Language',
  90.     'ERRORS_DATE'                   => 'date',
  91.     'ERRORS_USER'                   => 'user',
  92.     'ERRORS_MESSAGE'                => '%s message',
  93.     'ERRORS_MESSAGES'               => '%s messages',
  94.     'ERRORS_NO_MESSAGE'             => 'There is no message',
  95.    
  96.     'CURRENT_VERSION'               => 'Current Version',
  97.     'LATEST_VERSION'                => 'Latest version',
  98.     'ERRORS_NO_VERSION'             => '<span style="color: red">The version of the server could not be contacted...</span>',
  99.     'ERRORS_VERSION_COPY'           => '<a href="%1$s" title="Site Breizh Portal">Mod Debug Errors and Notices v%2$s</a> &copy; 2010 <a href="http://Breizh-portal.com/" title="Site Breizh Portal"><em>Breizh-portal.com</em></a>',
  100.     'ERRORS_VERSION_CHECK'          => 'Checker Version Mod Debug Errors and Notices',
  101.     'ERRORS_VERSION_CHECK_EXPLAIN'  => 'Checks if the version of Debug Errors and Notices that you are currently using is current.',
  102.     'ERRORS_VERSION_NOT_UP_TO_DATE' => 'Your version of Errors Debug is not current.<br />Below you will find a link to the release announcement of the latest version and instructions on how to perform the update.',
  103.     'ERRORS_VERSION_UP_TO_DATE'     => 'Your installation is up to date, no updates available for your version of Debug Errors and Notices. You do not need to update your installation.',
  104.     'ERRORS_INSTRUCTIONS'           => '<br /><h1>To use Debug Errors and Notices v%1$s</h1><br />
  105.                                         <p>Team Breizh Portal wishes you well enjoy the features of this Mod.<br />
  106.                                         Feel free to donate to péréniser development and support... Go <strong><a href="%2$s" title="Erreurs Debug">on this page</a></strong></p>
  107.                                         <p>For any support request, go to the <strong><a href="%3$s" title="Support Forum">Support Forum</a></strong></p>
  108.                                         <p>Also visit the Tracker <strong><a href="%4$s" title="Tracker of Mod Debug Errors and Notices and notices">on this page</a></strong>. Keep you informed of any bugs, feature requests or additions, security...</p>',
  109.     'ERRORS_UPDATE_INSTRUCTIONS'    => '
  110.         <h1>Release announcement</h1>
  111.         <p>Please read <a href="%1$s" title="%1$s"><strong>the release announcement of the latest version</strong></a> before beginning the process of updating, it may contain useful information. It also contains download links and complete the change log.</p>
  112.         <br />
  113.         <h1>How to update your installation of Debug Errors and Notices</h1>
  114.         <p>► Download the latest version.</p>
  115.         <p>► Unzip the archive and open the install.xml file, it contains all the update informations.</p>
  116.         <p>► Official announcement of the latest version: (%2$s)</p>',
  117.    
  118.     // Install
  119.     'INSTALL_MOD_NAME'              => 'Debug Errors and Notices',
  120.     'INSTALL_CHECK_NO_TITLE'        => 'The Mod %1$s is not installed on this forum.',
  121.     'INSTALL_CHECK_FINISH_TITLE'    => 'The Mod %1$s v%2$s is installed',
  122.     'INSTALL_CHECK_INSTALL_TITLE'   => '► To install the Mod, <a href="%s" title="To install the Mod">click here</a>',
  123.     'INSTALL_CHECK_UPDATE_TITLE'    => '► To update the Mod, <a href="%s" title="To update the Mod">click here</a>',
  124.     'INSTALL_NO_ADMIN'              => '► You do not have administrative permissions and can not access these resources...', // For the no admins
  125.     'INSTALL_FINISH_MESSAGE'        => 'Warning, if you need troubleshooting or information, visit <a href="http://breizh-portal.com/index.html" title="Breizh Portal - The Breizh Touch">Breizh Portal</a>. The support will be provided <strong>exclusively</strong> on this site.<br />Also find our other exclusive Mods.
  126.                                         <br />Consider making a donation to support the continuity of support and development, thank you.<br /><br />► To complete the installation and for safety reasons, you <strong>must</strong> delete or rename the install/ folder from your server via FTP.<br />',
  127.     'INSTALL_PROGRESS'              => 'The script is currently executing the action requested...',
  128.     'INSTALL_TABLE_UNDEFINED'       => 'Error: The table “<strong>%s</strong>” is not defined in the file includes/constants.php<br /><br />Please review <strong>all</strong> the instructions in the file install.xml<br />',
  129.     'UNINSTALL_ERRORS_MOD'          => 'You can delete entries Mod %1$s v%2$s in the database <a href="%3$s" title="To remove the mod %1$s v%2$s">By clicking here</a>',
  130.     'INSTALL_MOD_UNINSTALED'        => 'The mod %1$s is now removed from the database...<br /><br />► <a href="%2$s">Return to the install file</a><br /><br />► <a href="%3$s">Return to the forum index</a>',
  131.    
  132.     'LOG_INSTALL_AUTH_ADM'          => '<strong>Adding and activation administrators permissions</strong>',
  133.     'LOG_INSTALL_TABLE_ADD'         => '<strong>Adding a table in the database</strong><br />» “%s',
  134.     'LOG_INSTALL_MODULE_ADD'        => '<strong>Creating and Enabling a module %1$s</strong><br />» “%2$s”',
  135.     'LOG_INSTALL_MODULE_EDIT'       => '<strong>Editing a module %1$s</strong><br />» “%2$s”',
  136.     'LOG_INSTALL_MOD_ADD'           => '<strong>Installing a Mod</strong><br />» %1$s v%2$s',
  137.     'LOG_INSTALL_MOD_UPDATE'        => '<strong>Updating a Mod</strong><br />» %1$s v%2$s',
  138.     'LOG_INSTALL_CONFIG_ADD'        => '<strong>Adding a configuration point</strong><br />» “%s”',
  139.     'LOG_INSTALL_CONFIG_DEL'        => '<strong>Deleting a configuration point</strong><br />» “%s”',
  140.     'LOG_INSTALL_TABLE_DEL'         => '<strong>Deleting a table in the database</strong><br />» “%s”',
  141.     'LOG_INSTALL_PERM_DEL'          => '<strong>Removing a Permission</strong><br />» “%s”',
  142.     'LOG_INSTALL_MODULE_DEL'        => '<strong>Deleting a module %1$s</strong><br />» “%2$s”',
  143.    
  144.     // Added in version 1.1.0
  145.     'ERRORS_DEBUG_FOOTER'           => 'Infos display in footer',
  146.     'ERRORS_DEBUG_FOOTER_EXPLAIN'   => 'Enable/Disable display of debug infos in the footer to no administrators.<br />Note that these details will always be displayed to administrators if EXTRA DEBUG est enabled.',
  147.     'ERRORS_FOOTER_DISPLAY'         => 'Show Infos',
  148.     'ERRORS_FOOTER_OFF'             => 'Do not show infos',
  149.    
  150.     // Added in version 1.2.0
  151.     'ACP_ERRORS'                    => 'Errors',
  152.     'ERRORS_SEE_MESSAGES'           => 'See messages',
  153.     'UNABLE_CONNECT'                => 'Can not connect to server version checking, error message: %s',
  154. ));
  155.  
  156. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement