Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

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:54 - Dateigröße: 3.20 KiB


01  <?php
02  /**
03  *
04  * This file is part of the phpBB Forum Software package.
05  *
06  * @copyright (c) phpBB Limited <https://www.phpbb.com>
07  * @license GNU General Public License, version 2 (GPL-2.0)
08  *
09  * For full copyright and license information, please see
10  * the docs/CREDITS.txt file.
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  $lang = array_merge($lang, array(
40      'ACP_FILES'                        => 'Admin language files',
41      'ACP_LANGUAGE_PACKS_EXPLAIN'    => 'Here you are able to install/remove language packs. The default language pack is marked with an asterisk (*).',
42   
43      'DELETE_LANGUAGE_CONFIRM'        => 'Are you sure you wish to delete “%s”?',
44   
45      'INSTALLED_LANGUAGE_PACKS'        => 'Installed language packs',
46   
47      'LANGUAGE_DETAILS_UPDATED'            => 'Language details successfully updated.',
48      'LANGUAGE_PACK_ALREADY_INSTALLED'    => 'This language pack is already installed.',
49      'LANGUAGE_PACK_DELETED'                => 'The language pack “%s” has been removed successfully. All users using this language have been reset to the board’s default language.',
50      'LANGUAGE_PACK_DETAILS'                => 'Language pack details',
51      'LANGUAGE_PACK_INSTALLED'            => 'The language pack “%s” has been successfully installed.',
52      'LANGUAGE_PACK_CPF_UPDATE'            => 'The custom profile fields’ language strings were copied from the default language. Please change them if necessary.',
53      'LANGUAGE_PACK_ISO'                    => 'ISO',
54      'LANGUAGE_PACK_LOCALNAME'            => 'Local name',
55      'LANGUAGE_PACK_NAME'                => 'Name',
56      'LANGUAGE_PACK_NOT_EXIST'            => 'The selected language pack does not exist.',
57      'LANGUAGE_PACK_USED_BY'                => 'Used by (including robots)',
58      'LANGUAGE_VARIABLE'                    => 'Language variable',
59      'LANG_AUTHOR'                        => 'Language pack author',
60      'LANG_ENGLISH_NAME'                    => 'English name',
61      'LANG_ISO_CODE'                        => 'ISO code',
62      'LANG_LOCAL_NAME'                    => 'Local name',
63   
64      'MISSING_LANG_FILES'        => 'Missing language files',
65      'MISSING_LANG_VARIABLES'    => 'Missing language variables',
66   
67      'NO_FILE_SELECTED'                => 'You haven’t specified a language file.',
68      'NO_LANG_ID'                    => 'You haven’t specified a language pack.',
69      '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 board’s default language first.',
70      'NO_UNINSTALLED_LANGUAGE_PACKS'    => 'No uninstalled language packs',
71   
72      'THOSE_MISSING_LANG_FILES'            => 'The following language files are missing from the “%s” language folder',
73      'THOSE_MISSING_LANG_VARIABLES'        => 'The following language variables are missing from the “%s” language pack',
74   
75      'UNINSTALLED_LANGUAGE_PACKS'    => 'Uninstalled language packs',
76  ));
77