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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
viewtopic.php
001 <?php
002 /**
003 *
004 * viewtopic [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 'ATTACHMENT' => 'Attachment',
040 'ATTACHMENT_FUNCTIONALITY_DISABLED' => 'The attachments feature has been disabled.',
041
042 'BOOKMARK_ADDED' => 'Bookmarked topic successfully.',
043 'BOOKMARK_REMOVED' => 'Removed bookmarked topic successfully.',
044 'BOOKMARK_TOPIC' => 'Bookmark topic',
045 'BOOKMARK_TOPIC_REMOVE' => 'Remove from bookmarks',
046 'BUMPED_BY' => 'Last bumped by %1$s on %2$s.',
047 'BUMP_TOPIC' => 'Bump topic',
048
049 'CODE' => 'Code',
050
051 'DELETE_TOPIC' => 'Delete topic',
052 'DOWNLOAD_NOTICE' => 'You do not have the required permissions to view the files attached to this post.',
053
054 'EDITED_TIMES_TOTAL' => 'Last edited by %1$s on %2$s, edited %3$d times in total.',
055 'EDITED_TIME_TOTAL' => 'Last edited by %1$s on %2$s, edited %3$d time in total.',
056 'EMAIL_TOPIC' => 'E-mail friend',
057 'ERROR_NO_ATTACHMENT' => 'The selected attachment does not exist anymore.',
058
059 'FILE_NOT_FOUND_404' => 'The file <strong>%s</strong> does not exist.',
060 'FORK_TOPIC' => 'Copy topic',
061
062 'LINKAGE_FORBIDDEN' => 'You are not authorised to view, download or link from/to this site.',
063 'LOGIN_NOTIFY_TOPIC' => 'You have been notified about this topic, please login to view it.',
064 'LOGIN_VIEWTOPIC' => 'The board requires you to be registered and logged in to view this topic.',
065
066 'MAKE_ANNOUNCE' => 'Change to “Announcement”',
067 'MAKE_GLOBAL' => 'Change to “Global”',
068 'MAKE_NORMAL' => 'Change to “Standard Topic”',
069 'MAKE_STICKY' => 'Change to “Sticky”',
070 'MAX_OPTIONS_SELECT' => 'You may select up to <strong>%d</strong> options',
071 'MAX_OPTION_SELECT' => 'You may select <strong>1</strong> option',
072 'MISSING_INLINE_ATTACHMENT' => 'The attachment <strong>%s</strong> is no longer available',
073 'MOVE_TOPIC' => 'Move topic',
074
075 'NO_ATTACHMENT_SELECTED'=> 'You haven’t selected an attachment to download or view.',
076 'NO_NEWER_TOPICS' => 'There are no newer topics in this forum.',
077 'NO_OLDER_TOPICS' => 'There are no older topics in this forum.',
078 'NO_UNREAD_POSTS' => 'There are no new unread posts for this topic.',
079 'NO_VOTE_OPTION' => 'You must specify an option when voting.',
080 'NO_VOTES' => 'No votes',
081
082 'POLL_ENDED_AT' => 'Poll ended at %s',
083 'POLL_RUN_TILL' => 'Poll runs till %s',
084 'POLL_VOTED_OPTION' => 'You voted for this option',
085 'PRINT_TOPIC' => 'Print view',
086
087 'QUICK_MOD' => 'Quick-mod tools',
088 'QUOTE' => 'Quote',
089
090 'REPLY_TO_TOPIC' => 'Reply to topic',
091 'RETURN_POST' => '%sReturn to the post%s',
092
093 'SUBMIT_VOTE' => 'Submit vote',
094
095 'TOTAL_VOTES' => 'Total votes',
096
097 'UNLOCK_TOPIC' => 'Unlock topic',
098
099 'VIEW_INFO' => 'Post details',
100 'VIEW_NEXT_TOPIC' => 'Next topic',
101 'VIEW_PREVIOUS_TOPIC' => 'Previous topic',
102 'VIEW_RESULTS' => 'View results',
103 'VIEW_TOPIC_POST' => '1 post',
104 'VIEW_TOPIC_POSTS' => '%d posts',
105 'VIEW_UNREAD_POST' => 'First unread post',
106 'VISIT_WEBSITE' => 'WWW',
107 'VOTE_SUBMITTED' => 'Your vote has been cast.',
108 'VOTE_CONVERTED' => 'Changing votes is not supported for converted polls.',
109
110 ));
111
112 ?>