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. |
|
(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 'CODE' => 'Code',
053
054 'DELETE_TOPIC' => 'Delete topic',
055 'DELETED_INFORMATION' => 'Deleted by %1$s on %2$s',
056 'DISAPPROVE' => 'Disapprove',
057 'DOWNLOAD_NOTICE' => 'You do not have the required permissions to view the files attached to this post.',
058
059 'EDITED_TIMES_TOTAL' => array(
060 1 => 'Last edited by %2$s on %3$s, edited %1$d time in total.',
061 2 => 'Last edited by %2$s on %3$s, edited %1$d times in total.',
062 ),
063 'EMAIL_TOPIC' => 'Email topic',
064 'ERROR_NO_ATTACHMENT' => 'The selected attachment does not exist anymore.',
065
066 'FILE_NOT_FOUND_404' => 'The file <strong>%s</strong> does not exist.',
067 'FORK_TOPIC' => 'Copy topic',
068 'FULL_EDITOR' => 'Full Editor & Preview',
069
070 'LINKAGE_FORBIDDEN' => 'You are not authorised to view, download or link from/to this site.',
071 'LOGIN_NOTIFY_TOPIC' => 'You have been notified about this topic, please login to view it.',
072 'LOGIN_VIEWTOPIC' => 'The board requires you to be registered and logged in to view this topic.',
073
074 'MAKE_ANNOUNCE' => 'Change to “Announcement”',
075 'MAKE_GLOBAL' => 'Change to “Global”',
076 'MAKE_NORMAL' => 'Change to “Standard Topic”',
077 'MAKE_STICKY' => 'Change to “Sticky”',
078 'MAX_OPTIONS_SELECT' => array(
079 1 => 'You may select <strong>%d</strong> option',
080 2 => 'You may select up to <strong>%d</strong> options',
081 ),
082 'MISSING_INLINE_ATTACHMENT' => 'The attachment <strong>%s</strong> is no longer available',
083 'MOVE_TOPIC' => 'Move topic',
084
085 'NO_ATTACHMENT_SELECTED'=> 'You haven’t selected an attachment to download or view.',
086 'NO_NEWER_TOPICS' => 'There are no newer topics in this forum.',
087 'NO_OLDER_TOPICS' => 'There are no older topics in this forum.',
088 'NO_UNREAD_POSTS' => 'There are no new unread posts for this topic.',
089 'NO_VOTE_OPTION' => 'You must specify an option when voting.',
090 'NO_VOTES' => 'No votes',
091
092 'POLL_ENDED_AT' => 'Poll ended at %s',
093 'POLL_RUN_TILL' => 'Poll runs till %s',
094 'POLL_VOTED_OPTION' => 'You voted for this option',
095 'POST_DELETED_RESTORE' => 'This post has been deleted. It can be restored.',
096 'PRINT_TOPIC' => 'Print view',
097
098 'QUICK_MOD' => 'Quick-mod tools',
099 'QUICKREPLY' => 'Quick Reply',
100 'QUOTE' => 'Quote',
101
102 'REPLY_TO_TOPIC' => 'Reply to topic',
103 'RESTORE' => 'Restore',
104 'RESTORE_TOPIC' => 'Restore topic',
105 'RETURN_POST' => '%sReturn to the post%s',
106
107 'SUBMIT_VOTE' => 'Submit vote',
108
109 'TOPIC_TOOLS' => 'Topic tools',
110 'TOTAL_VOTES' => 'Total votes',
111
112 'UNLOCK_TOPIC' => 'Unlock topic',
113
114 'VIEW_INFO' => 'Post details',
115 'VIEW_NEXT_TOPIC' => 'Next topic',
116 'VIEW_PREVIOUS_TOPIC' => 'Previous topic',
117 'VIEW_RESULTS' => 'View results',
118 'VIEW_TOPIC_POSTS' => array(
119 1 => '%d post',
120 2 => '%d posts',
121 ),
122 'VIEW_UNREAD_POST' => 'First unread post',
123 'VOTE_SUBMITTED' => 'Your vote has been cast.',
124 'VOTE_CONVERTED' => 'Changing votes is not supported for converted polls.',
125
126 ));
127