Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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. |
|
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
viewtopic.php
001 <?php
002 /**
003 *
004 * This file is part of the phpBB Forum Software package.
005 *
006 * @copyright (c) phpBB Limited <https://www.phpbb.com>
007 * @license GNU General Public License, version 2 (GPL-2.0)
008 *
009 * For full copyright and license information, please see
010 * the docs/CREDITS.txt file.
011 *
012 */
013
014 /**
015 * DO NOT CHANGE
016 */
017 if (!defined('IN_PHPBB'))
018 {
019 exit;
020 }
021
022 if (empty($lang) || !is_array($lang))
023 {
024 $lang = array();
025 }
026
027 // DEVELOPERS PLEASE NOTE
028 //
029 // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
030 //
031 // Placeholders can now contain order information, e.g. instead of
032 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
033 // translators to re-order the output of data while ensuring it remains correct
034 //
035 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
036 // equally where a string contains only two placeholders which are used to wrap text
037 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
038
039 $lang = array_merge($lang, array(
040 'APPROVE' => 'Approve',
041 'ATTACHMENT' => 'Attachment',
042 'ATTACHMENT_FUNCTIONALITY_DISABLED' => 'The attachments feature has been disabled.',
043
044 'BOOKMARK_ADDED' => 'Bookmarked topic successfully.',
045 'BOOKMARK_ERR' => 'Bookmarking the topic failed. Please try again.',
046 'BOOKMARK_REMOVED' => 'Removed bookmarked topic successfully.',
047 'BOOKMARK_TOPIC' => 'Bookmark topic',
048 'BOOKMARK_TOPIC_REMOVE' => 'Remove from bookmarks',
049 'BUMPED_BY' => 'Last bumped by %1$s on %2$s.',
050 'BUMP_TOPIC' => 'Bump topic',
051
052 'DELETE_TOPIC' => 'Delete topic',
053 'DELETED_INFORMATION' => 'Deleted by %1$s on %2$s',
054 'DISAPPROVE' => 'Disapprove',
055 'DOWNLOAD_NOTICE' => 'You do not have the required permissions to view the files attached to this post.',
056
057 'EDITED_TIMES_TOTAL' => array(
058 1 => 'Last edited by %2$s on %3$s, edited %1$d time in total.',
059 2 => 'Last edited by %2$s on %3$s, edited %1$d times in total.',
060 ),
061 'EMAIL_TOPIC' => 'Email topic',
062 'ERROR_NO_ATTACHMENT' => 'The selected attachment does not exist anymore.',
063
064 'FILE_NOT_FOUND_404' => 'The file <strong>%s</strong> does not exist.',
065 'FORK_TOPIC' => 'Copy topic',
066 'FULL_EDITOR' => 'Full Editor & Preview',
067
068 'LINKAGE_FORBIDDEN' => 'You are not authorised to view, download or link from/to this site.',
069 'LOGIN_NOTIFY_TOPIC' => 'You have been notified about this topic, please login to view it.',
070 'LOGIN_VIEWTOPIC' => 'The board requires you to be registered and logged in to view this topic.',
071
072 'MAKE_ANNOUNCE' => 'Change to “Announcement”',
073 'MAKE_GLOBAL' => 'Change to “Global”',
074 'MAKE_NORMAL' => 'Change to “Standard Topic”',
075 'MAKE_STICKY' => 'Change to “Sticky”',
076 'MAX_OPTIONS_SELECT' => array(
077 1 => 'You may select <strong>%d</strong> option',
078 2 => 'You may select up to <strong>%d</strong> options',
079 ),
080 'MISSING_INLINE_ATTACHMENT' => 'The attachment <strong>%s</strong> is no longer available',
081 'MOVE_TOPIC' => 'Move topic',
082
083 'NO_ATTACHMENT_SELECTED'=> 'You haven’t selected an attachment to download or view.',
084 'NO_NEWER_TOPICS' => 'There are no newer topics in this forum.',
085 'NO_OLDER_TOPICS' => 'There are no older topics in this forum.',
086 'NO_UNREAD_POSTS' => 'There are no new unread posts for this topic.',
087 'NO_VOTE_OPTION' => 'You must specify an option when voting.',
088 'NO_VOTES' => 'No votes',
089 'NO_AUTH_PRINT_TOPIC' => 'You are not authorised to print topics.',
090
091 'POLL_ENDED_AT' => 'Poll ended at %s',
092 'POLL_RUN_TILL' => 'Poll runs till %s',
093 'POLL_VOTED_OPTION' => 'You voted for this option',
094 'POST_DELETED_RESTORE' => 'This post has been deleted. It can be restored.',
095 'PRINT_TOPIC' => 'Print view',
096
097 'QUICK_MOD' => 'Quick-mod tools',
098 'QUICKREPLY' => 'Quick Reply',
099
100 'REPLY_TO_TOPIC' => 'Reply to topic',
101 'RESTORE' => 'Restore',
102 'RESTORE_TOPIC' => 'Restore topic',
103 'RETURN_POST' => '%sReturn to the post%s',
104
105 'SUBMIT_VOTE' => 'Submit vote',
106
107 'TOPIC_TOOLS' => 'Topic tools',
108 'TOTAL_VOTES' => 'Total votes',
109
110 'UNLOCK_TOPIC' => 'Unlock topic',
111
112 'VIEW_INFO' => 'Post details',
113 'VIEW_NEXT_TOPIC' => 'Next topic',
114 'VIEW_PREVIOUS_TOPIC' => 'Previous topic',
115 'VIEW_QUOTED_POST' => 'View quoted post',
116 'VIEW_RESULTS' => 'View results',
117 'VIEW_TOPIC_POSTS' => array(
118 1 => '%d post',
119 2 => '%d posts',
120 ),
121 'VIEW_UNREAD_POST' => 'First unread post',
122 'VOTE_SUBMITTED' => 'Your vote has been cast.',
123 'VOTE_CONVERTED' => 'Changing votes is not supported for converted polls.',
124
125 ));
126