[ Index ]

PHP Cross Reference of phpBB-3.3.11-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_DISABLED'    => 'Disabled Extensions',
  51      'EXTENSIONS_ENABLED'    => 'Enabled Extensions',
  52  
  53      'EXTENSION_DELETE_DATA'    => 'Delete data',
  54      'EXTENSION_DISABLE'        => 'Disable',
  55      'EXTENSION_ENABLE'        => 'Enable',
  56  
  57      '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.',
  58      'EXTENSION_DISABLE_EXPLAIN'        => 'Disabling an extension retains its files, data and settings but removes any functionality added by the extension.',
  59      'EXTENSION_ENABLE_EXPLAIN'        => 'Enabling an extension allows you to use it on your board.',
  60  
  61      '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.',
  62      'EXTENSION_DISABLE_IN_PROGRESS'    => 'The extension is currently being disabled. Please do not leave or refresh this page until it is completed.',
  63      'EXTENSION_ENABLE_IN_PROGRESS'    => 'The extension is currently being enabled. Please do not leave or refresh this page until it is completed.',
  64  
  65      'EXTENSION_DELETE_DATA_SUCCESS'    => 'The extension’s data was deleted successfully',
  66      'EXTENSION_DISABLE_SUCCESS'        => 'The extension was disabled successfully',
  67      'EXTENSION_ENABLE_SUCCESS'        => 'The extension was enabled successfully',
  68  
  69      'EXTENSION_NAME'            => 'Extension Name',
  70      'EXTENSION_ACTIONS'            => 'Actions',
  71      'EXTENSION_OPTIONS'            => 'Options',
  72      'EXTENSION_INSTALL_HEADLINE'=> 'Installing an extension',
  73      'EXTENSION_INSTALL_EXPLAIN'    => '<ol>
  74              <li>Download an extension from phpBB’s extensions database</li>
  75              <li>Unzip the extension and upload it to the <samp>ext/</samp> directory of your phpBB board</li>
  76              <li>Enable the extension, here in the Extensions manager</li>
  77          </ol>',
  78      'EXTENSION_UPDATE_HEADLINE'    => 'Updating an extension',
  79      'EXTENSION_UPDATE_EXPLAIN'    => '<ol>
  80              <li>Disable the extension</li>
  81              <li>Delete the extension’s files from the filesystem</li>
  82              <li>Upload the new files</li>
  83              <li>Enable the extension</li>
  84          </ol>',
  85      'EXTENSION_REMOVE_HEADLINE'    => 'Completely removing an extension from your board',
  86      'EXTENSION_REMOVE_EXPLAIN'    => '<ol>
  87              <li>Disable the extension</li>
  88              <li>Delete the extension’s data</li>
  89              <li>Delete the extension’s files from the filesystem</li>
  90          </ol>',
  91  
  92      '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!',
  93      'EXTENSION_DISABLE_CONFIRM'        => 'Are you sure that you wish to disable the “%s” extension?',
  94      'EXTENSION_ENABLE_CONFIRM'        => 'Are you sure that you wish to enable the “%s” extension?',
  95      'EXTENSION_FORCE_UNSTABLE_CONFIRM'    => 'Are you sure that you wish to force the use of unstable version?',
  96  
  97      'RETURN_TO_EXTENSION_LIST'    => 'Return to the extension list',
  98  
  99      'EXT_DETAILS'            => 'Extension Details',
 100      'DISPLAY_NAME'            => 'Display Name',
 101      'CLEAN_NAME'            => 'Clean Name',
 102      'TYPE'                    => 'Type',
 103      'DESCRIPTION'            => 'Description',
 104      'VERSION'                => 'Version',
 105      'HOMEPAGE'                => 'Homepage',
 106      'PATH'                    => 'File Path',
 107      'TIME'                    => 'Release Time',
 108      'LICENSE'                => 'Licence',
 109  
 110      'REQUIREMENTS'            => 'Requirements',
 111      'PHPBB_VERSION'            => 'phpBB Version',
 112      'PHP_VERSION'            => 'PHP Version',
 113      'AUTHOR_INFORMATION'    => 'Author Information',
 114      'AUTHOR_NAME'            => 'Name',
 115      'AUTHOR_EMAIL'            => 'Email',
 116      'AUTHOR_HOMEPAGE'        => 'Homepage',
 117      'AUTHOR_ROLE'            => 'Role',
 118  
 119      'NOT_UP_TO_DATE'        => '%s is not up to date',
 120      'UP_TO_DATE'            => '%s is up to date',
 121      'ANNOUNCEMENT_TOPIC'    => 'Release Announcement',
 122      'DOWNLOAD_LATEST'        => 'Download Version',
 123      'NO_VERSIONCHECK'        => 'No version check information given.',
 124  
 125      'VERSIONCHECK_FORCE_UPDATE_ALL'        => 'Re-Check all versions',
 126      'FORCE_UNSTABLE'                    => 'Always check for unstable versions',
 127      'EXTENSIONS_VERSION_CHECK_SETTINGS'    => 'Version check settings',
 128  
 129      'BROWSE_EXTENSIONS_DATABASE'        => 'Browse extensions database',
 130  
 131      'META_FIELD_NOT_SET'    => 'Required meta field %s has not been set.',
 132      'META_FIELD_INVALID'    => 'Meta field %s is invalid.',
 133  ));


Generated: Sat Nov 4 14:26:03 2023 Cross-referenced by PHPXref 0.7.1