Verzeichnisstruktur phpBB-3.0.0


Veröffentlicht
12.12.2007

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

language.php

Zuletzt modifiziert: 09.10.2024, 12:53 - Dateigröße: 4.48 KiB


001  <?php
002  /**
003  *
004  * acp_language [English]
005  *
006  * @package language
007  * @version $Id$
008  * @copyright (c) 2005 phpBB Group
009  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
010  *
011  */
012   
013  /**
014  * DO NOT CHANGE
015  */
016  if (!defined('IN_PHPBB'))
017  {
018      exit;
019  }
020   
021  if (empty($lang) || !is_array($lang))
022  {
023      $lang = array();
024  }
025   
026  // DEVELOPERS PLEASE NOTE
027  //
028  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
029  //
030  // Placeholders can now contain order information, e.g. instead of
031  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
032  // translators to re-order the output of data while ensuring it remains correct
033  //
034  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
035  // equally where a string contains only two placeholders which are used to wrap text
036  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
037   
038  $lang = array_merge($lang, array(
039      'ACP_FILES'                        => 'Admin language files',
040      'ACP_LANGUAGE_PACKS_EXPLAIN'    => 'Here you are able to install/remove language packs.',
041   
042      'EMAIL_FILES'            => 'E-mail templates',
043   
044      'FILE_CONTENTS'                => 'File contents',
045      'FILE_FROM_STORAGE'            => 'File from storage folder',
046   
047      'HELP_FILES'                => 'Help files',
048   
049      'INSTALLED_LANGUAGE_PACKS'    => 'Installed language packs',
050      'INVALID_LANGUAGE_PACK'        => 'The selected language pack seems to be not valid. Please verify the language pack and upload it again if necessary.',
051      'INVALID_UPLOAD_METHOD'        => 'The selected upload method is not valid, please choose a different method.',
052   
053      'LANGUAGE_DETAILS_UPDATED'            => 'Language details successfully updated.',
054      'LANGUAGE_ENTRIES'                    => 'Language entries',
055      'LANGUAGE_ENTRIES_EXPLAIN'            => 'Here you are able to change existing language pack entries or not already translated ones.<br /><strong>Note:</strong> Once you changed a language file, the changes will be stored within a separate folder for you to download. The changes will not be seen by your users until you replace the original language files at your webspace (by uploading them).',
056      'LANGUAGE_FILES'                    => 'Language files',
057      'LANGUAGE_KEY'                        => 'Language key',
058      'LANGUAGE_PACK_ALREADY_INSTALLED'    => 'This language pack is already installed.',
059      'LANGUAGE_PACK_DELETED'                => 'The language pack <strong>%s</strong> has been removed successfully. All users using this language have been reset to the boards default language.',
060      'LANGUAGE_PACK_DETAILS'                => 'Language pack details',
061      'LANGUAGE_PACK_INSTALLED'            => 'The language pack <strong>%s</strong> has been successfully installed.',
062      'LANGUAGE_PACK_ISO'                    => 'ISO',
063      'LANGUAGE_PACK_LOCALNAME'            => 'Local name',
064      'LANGUAGE_PACK_NAME'                => 'Name',
065      'LANGUAGE_PACK_NOT_EXIST'            => 'The selected language pack does not exist.',
066      'LANGUAGE_PACK_USED_BY'                => 'Used by (including robots)',
067      'LANGUAGE_VARIABLE'                    => 'Language variable',
068      'LANG_AUTHOR'                        => 'Language pack author',
069      'LANG_ENGLISH_NAME'                    => 'English name',
070      'LANG_ISO_CODE'                        => 'ISO code',
071      'LANG_LOCAL_NAME'                    => 'Local name',
072   
073      'MISSING_LANGUAGE_FILE'        => 'Missing language file: <strong style="color:red">%s</strong>',
074      'MISSING_LANG_VARIABLES'    => 'Missing language variables',
075      'MODS_FILES'                => 'MODs language files',
076   
077      'NO_FILE_SELECTED'                => 'You haven’t specified a language file.',
078      'NO_LANG_ID'                    => 'You haven’t specified a language pack.',
079      'NO_REMOVE_DEFAULT_LANG'        => 'You are not able to remove the default language pack.<br />If you want to remove this language pack, change your boards default language first.',
080      'NO_UNINSTALLED_LANGUAGE_PACKS'    => 'No uninstalled language packs',
081   
082      'REMOVE_FROM_STORAGE_FOLDER'        => 'Remove from storage folder',
083   
084      'SELECT_DOWNLOAD_FORMAT'    => 'Select download format',
085      'SUBMIT_AND_DOWNLOAD'        => 'Submit and download file',
086      'SUBMIT_AND_UPLOAD'            => 'Submit and upload file',
087   
088      'THOSE_MISSING_LANG_FILES'            => 'The following language files are missing from the %s language folder',
089      'THOSE_MISSING_LANG_VARIABLES'        => 'The following language variables are missing from the <strong>%s</strong> language pack',
090   
091      'UNINSTALLED_LANGUAGE_PACKS'    => 'Uninstalled language packs',
092   
093      'UNABLE_TO_WRITE_FILE'        => 'The file could not be written to %s.',
094      'UPLOAD_COMPLETED'            => 'The upload was completed successfully.',
095      'UPLOAD_FAILED'                => 'The upload failed for unknown reasons. You may need to replace the relevant file manually.',
096      'UPLOAD_METHOD'                => 'Upload method',
097      'UPLOAD_SETTINGS'            => 'Upload settings',
098   
099      'WRONG_LANGUAGE_FILE'        => 'Selected language file is invalid.',
100  ));
101   
102  ?>