[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/language/en/ -> cli.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      'CLI_CONFIG_CANNOT_CACHED'            => 'Set this option if the configuration option changes too frequently to be efficiently cached.',
  39      'CLI_CONFIG_CURRENT'                => 'Current configuration value, use 0 and 1 to specify boolean values',
  40      'CLI_CONFIG_DELETE_SUCCESS'            => 'Successfully deleted config %s.',
  41      'CLI_CONFIG_NEW'                    => 'New configuration value, use 0 and 1 to specify boolean values',
  42      'CLI_CONFIG_NOT_EXISTS'                => 'Config %s does not exist',
  43      'CLI_CONFIG_OPTION_NAME'            => 'The configuration option’s name',
  44      'CLI_CONFIG_PRINT_WITHOUT_NEWLINE'    => 'Set this option if the value should be printed without a new line at the end.',
  45      'CLI_CONFIG_INCREMENT_BY'            => 'Amount to increment by',
  46      'CLI_CONFIG_INCREMENT_SUCCESS'        => 'Successfully incremented config %s',
  47      'CLI_CONFIG_SET_FAILURE'            => 'Could not set config %s',
  48      'CLI_CONFIG_SET_SUCCESS'            => 'Successfully set config %s',
  49  
  50      'CLI_DESCRIPTION_CRON_LIST'                    => 'Prints a list of ready and unready cron jobs.',
  51      'CLI_DESCRIPTION_CRON_RUN'                    => 'Runs all ready cron tasks.',
  52      'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1'        => 'Name of the task to be run',
  53      'CLI_DESCRIPTION_DB_MIGRATE'                => 'Updates the database by applying migrations.',
  54      'CLI_DESCRIPTION_DELETE_CONFIG'                => 'Deletes a configuration option',
  55      'CLI_DESCRIPTION_DISABLE_EXTENSION'            => 'Disables the specified extension.',
  56      'CLI_DESCRIPTION_ENABLE_EXTENSION'            => 'Enables the specified extension.',
  57      'CLI_DESCRIPTION_FIND_MIGRATIONS'            => 'Finds migrations that are not depended upon.',
  58      'CLI_DESCRIPTION_FIX_LEFT_RIGHT_IDS'        => 'Repairs the tree structure of the forums and modules.',
  59      'CLI_DESCRIPTION_GET_CONFIG'                => 'Gets a configuration option’s value',
  60      'CLI_DESCRIPTION_INCREMENT_CONFIG'            => 'Increments a configuration option’s integer value',
  61      'CLI_DESCRIPTION_LIST_EXTENSIONS'            => 'Lists all extensions in the database and on the filesystem.',
  62      'CLI_DESCRIPTION_OPTION_SAFE_MODE'            => 'Run in Safe Mode (without extensions).',
  63      'CLI_DESCRIPTION_OPTION_SHELL'                => 'Launch the shell.',
  64      'CLI_DESCRIPTION_PURGE_EXTENSION'            => 'Purges the specified extension.',
  65      'CLI_DESCRIPTION_RECALCULATE_EMAIL_HASH'    => 'Recalculates the user_email_hash column of the users table.',
  66      'CLI_DESCRIPTION_SET_ATOMIC_CONFIG'            => 'Sets a configuration option’s value only if the old matches the current value',
  67      'CLI_DESCRIPTION_SET_CONFIG'                => 'Sets a configuration option’s value',
  68      'CLI_DESCRIPTION_UPDATE_HASH_BCRYPT'        => 'Updates outdated password hashes to be hashed with bcrypt.',
  69  
  70      'CLI_EXTENSION_DISABLE_FAILURE'        => 'Could not disable extension %s',
  71      'CLI_EXTENSION_DISABLE_SUCCESS'        => 'Successfully disabled extension %s',
  72      'CLI_EXTENSION_ENABLE_FAILURE'        => 'Could not enable extension %s',
  73      'CLI_EXTENSION_ENABLE_SUCCESS'        => 'Successfully enabled extension %s',
  74      'CLI_EXTENSION_NAME'                => 'Name of the extension',
  75      'CLI_EXTENSION_PURGE_FAILURE'        => 'Could not purge extension %s',
  76      'CLI_EXTENSION_PURGE_SUCCESS'        => 'Successfully purged extension %s',
  77      'CLI_EXTENSION_NOT_FOUND'            => 'No extensions were found.',
  78      'CLI_EXTENSIONS_AVAILABLE'            => 'Available',
  79      'CLI_EXTENSIONS_DISABLED'            => 'Disabled',
  80      'CLI_EXTENSIONS_ENABLED'            => 'Enabled',
  81  
  82      'CLI_FIXUP_FIX_LEFT_RIGHT_IDS_SUCCESS'        => 'Successfully repaired the tree structure of the forums and modules.',
  83      'CLI_FIXUP_RECALCULATE_EMAIL_HASH_SUCCESS'    => 'Successfully recalculated all email hashes.',
  84      'CLI_FIXUP_UPDATE_HASH_BCRYPT_SUCCESS'        => 'Successfully updated outdated password hashes to bcrypt.'
  85  ));
  86  
  87  // Additional help for commands.
  88  $lang = array_merge($lang, array(
  89      'CLI_HELP_CRON_RUN'            => $lang['CLI_DESCRIPTION_CRON_RUN'] . ' Optionally you can specify a cron task name to run only the specified cron task.',
  90  ));


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1