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

viewforum.php

Zuletzt modifiziert: 09.10.2024, 12:52 - Dateigröße: 2.17 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      'ACTIVE_TOPICS'            => 'Active topics',
41      'ANNOUNCEMENTS'            => 'Announcements',
42   
43      'FORUM_PERMISSIONS'        => 'Forum permissions',
44   
45      'ICON_ANNOUNCEMENT'        => 'Announcement',
46      'ICON_STICKY'            => 'Sticky',
47   
48      'LOGIN_NOTIFY_FORUM'    => 'You have been notified about this forum, please login to view it.',
49   
50      'MARK_TOPICS_READ'        => 'Mark topics read',
51   
52      'NEW_POSTS_HOT'            => 'New posts [ Popular ]',    // Not used anymore
53      'NEW_POSTS_LOCKED'        => 'New posts [ Locked ]',    // Not used anymore
54      'NO_NEW_POSTS_HOT'        => 'No new posts [ Popular ]',    // Not used anymore
55      'NO_NEW_POSTS_LOCKED'    => 'No new posts [ Locked ]',    // Not used anymore
56      'NO_READ_ACCESS'        => 'You do not have the required permissions to read topics within this forum.',
57      'NO_UNREAD_POSTS_HOT'        => 'No unread posts [ Popular ]',
58      'NO_UNREAD_POSTS_LOCKED'    => 'No unread posts [ Locked ]',
59   
60      'POST_FORUM_LOCKED'        => 'Forum is locked',
61   
62      'TOPICS_MARKED'            => 'The topics for this forum have now been marked read.',
63   
64      'UNREAD_POSTS_HOT'        => 'Unread posts [ Popular ]',
65      'UNREAD_POSTS_LOCKED'    => 'Unread posts [ Locked ]',
66   
67      'VIEW_FORUM'            => 'View forum',
68      'VIEW_FORUM_TOPICS'        => array(
69          1    => '%d topic',
70          2    => '%d topics',
71      ),
72  ));
73