[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/language/en/acp/ -> extensions.php (source)

   1  <?php
   2  /**
   3  *
   4  * This file is part of the phpBB Forum Software package.
   5  *
   6  * @copyright (c) phpBB Limited <https://www.phpbb.com>
   7  * @license GNU General Public License, version 2 (GPL-2.0)
   8  *
   9  * For full copyright and license information, please see
  10  * the docs/CREDITS.txt file.
  11  *
  12  */
  13  
  14  if (!defined('IN_PHPBB'))
  15  {
  16      exit;
  17  }
  18  
  19  /**
  20  * DO NOT CHANGE
  21  */
  22  if (empty($lang) || !is_array($lang))
  23  {
  24      $lang = array();
  25  }
  26  
  27  // DEVELOPERS PLEASE NOTE
  28  //
  29  // Placeholders can now contain order information, e.g. instead of
  30  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  31  // translators to re-order the output of data while ensuring it remains correct
  32  //
  33  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  34  // equally where a string contains only two placeholders which are used to wrap text
  35  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  36  
  37  $lang = array_merge($lang, array(
  38      'EXTENSION'                    => 'Extension',
  39      'EXTENSIONS'                => 'Extensions',
  40      'EXTENSIONS_ADMIN'            => 'Extensions Manager',
  41      'EXTENSIONS_EXPLAIN'        => 'The Extensions Manager is a tool in your phpBB Board which allows you to manage all of your extensions statuses and view information about them.',
  42      'EXTENSION_INVALID_LIST'    => 'The “%s” extension is not valid.<br />%s<br /><br />',
  43      'EXTENSION_NOT_AVAILABLE'    => 'The selected extension is not available for this board, please verify your phpBB and PHP versions are allowed (see the details page).',
  44      'EXTENSION_DIR_INVALID'        => 'The selected extension has an invalid directory structure and cannot be enabled.',
  45      'EXTENSION_NOT_ENABLEABLE'    => 'The selected extension cannot be enabled, please verify the extension’s requirements.',
  46      'EXTENSION_NOT_INSTALLED'    => 'The extension %s is not available. Please check that you have installed it correctly.',
  47  
  48      'DETAILS'                => 'Details',
  49  
  50      'EXTENSIONS_NOT_INSTALLED'    => 'Not installed Extensions',
  51      'EXTENSIONS_DISABLED'        => 'Disabled Extensions',
  52      'EXTENSIONS_ENABLED'        => 'Enabled Extensions',
  53  
  54      'EXTENSION_DELETE_DATA'    => 'Delete data',
  55      'EXTENSION_DISABLE'        => 'Disable',
  56      'EXTENSION_ENABLE'        => 'Enable',
  57  
  58      'EXTENSION_DELETE_DATA_EXPLAIN'    => 'Deleting an extension’s data removes all of its data and settings. The extension files are retained so it can be enabled again.',
  59      'EXTENSION_DISABLE_EXPLAIN'        => 'Disabling an extension retains its files, data and settings but removes any functionality added by the extension.',
  60      'EXTENSION_ENABLE_EXPLAIN'        => 'Enabling an extension allows you to use it on your board.',
  61  
  62      'EXTENSION_DELETE_DATA_IN_PROGRESS'    => 'The extension’s data is currently being deleted. Please do not leave or refresh this page until it is completed.',
  63      'EXTENSION_DISABLE_IN_PROGRESS'    => 'The extension is currently being disabled. Please do not leave or refresh this page until it is completed.',
  64      'EXTENSION_ENABLE_IN_PROGRESS'    => 'The extension is currently being enabled. Please do not leave or refresh this page until it is completed.',
  65  
  66      'EXTENSION_DELETE_DATA_SUCCESS'    => 'The extension’s data was deleted successfully',
  67      'EXTENSION_DISABLE_SUCCESS'        => 'The extension was disabled successfully',
  68      'EXTENSION_ENABLE_SUCCESS'        => 'The extension was enabled successfully',
  69  
  70      'EXTENSION_NAME'            => 'Extension Name',
  71      'EXTENSION_ACTIONS'            => 'Actions',
  72      'EXTENSION_OPTIONS'            => 'Options',
  73      'EXTENSION_INSTALL_HEADLINE'=> 'Installing an extension',
  74      'EXTENSION_INSTALL_EXPLAIN'    => '<ol>
  75              <li>Download an extension from phpBB’s extensions database</li>
  76              <li>Unzip the extension and upload it to the <samp>ext/</samp> directory of your phpBB board</li>
  77              <li>Enable the extension, here in the Extensions manager</li>
  78          </ol>',
  79      'EXTENSION_UPDATE_HEADLINE'    => 'Updating an extension',
  80      'EXTENSION_UPDATE_EXPLAIN'    => '<ol>
  81              <li>Disable the extension</li>
  82              <li>Delete the extension’s files from the filesystem</li>
  83              <li>Upload the new files</li>
  84              <li>Enable the extension</li>
  85          </ol>',
  86      'EXTENSION_REMOVE_HEADLINE'    => 'Completely removing an extension from your board',
  87      'EXTENSION_REMOVE_EXPLAIN'    => '<ol>
  88              <li>Disable the extension</li>
  89              <li>Delete the extension’s data</li>
  90              <li>Delete the extension’s files from the filesystem</li>
  91          </ol>',
  92  
  93      'EXTENSION_DELETE_DATA_CONFIRM'    => 'Are you sure that you wish to delete the data associated with “%s”?<br /><br />This removes all of its data and settings and cannot be undone!',
  94      'EXTENSION_DISABLE_CONFIRM'        => 'Are you sure that you wish to disable the “%s” extension?',
  95      'EXTENSION_ENABLE_CONFIRM'        => 'Are you sure that you wish to enable the “%s” extension?',
  96      'EXTENSION_FORCE_UNSTABLE_CONFIRM'    => 'Are you sure that you wish to force the use of unstable version?',
  97  
  98      'RETURN_TO_EXTENSION_LIST'    => 'Return to the extension list',
  99  
 100      'EXT_DETAILS'            => 'Extension Details',
 101      'DISPLAY_NAME'            => 'Display Name',
 102      'CLEAN_NAME'            => 'Clean Name',
 103      'TYPE'                    => 'Type',
 104      'DESCRIPTION'            => 'Description',
 105      'VERSION'                => 'Version',
 106      'HOMEPAGE'                => 'Homepage',
 107      'PATH'                    => 'File Path',
 108      'TIME'                    => 'Release Time',
 109      'LICENSE'                => 'Licence',
 110  
 111      'REQUIREMENTS'            => 'Requirements',
 112      'PHPBB_VERSION'            => 'phpBB Version',
 113      'PHP_VERSION'            => 'PHP Version',
 114      'AUTHOR_INFORMATION'    => 'Author Information',
 115      'AUTHOR_NAME'            => 'Name',
 116      'AUTHOR_EMAIL'            => 'Email',
 117      'AUTHOR_HOMEPAGE'        => 'Homepage',
 118      'AUTHOR_ROLE'            => 'Role',
 119  
 120      'NOT_UP_TO_DATE'        => '%s is not up to date',
 121      'UP_TO_DATE'            => '%s is up to date',
 122      'ANNOUNCEMENT_TOPIC'    => 'Release Announcement',
 123      'DOWNLOAD_LATEST'        => 'Download Version',
 124      'NO_VERSIONCHECK'        => 'No version check information given.',
 125  
 126      'VERSIONCHECK_FORCE_UPDATE_ALL'        => 'Re-Check all versions',
 127      'FORCE_UNSTABLE'                    => 'Always check for unstable versions',
 128      'EXTENSIONS_VERSION_CHECK_SETTINGS'    => 'Version check settings',
 129  
 130      'BROWSE_EXTENSIONS_DATABASE'        => 'Browse extensions database',
 131  
 132      'META_FIELD_NOT_SET'    => 'Required meta field %s has not been set.',
 133      'META_FIELD_INVALID'    => 'Meta field %s is invalid.',
 134  ));


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1