Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
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 |
plupload.php
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 * @copyright (c) 2010-2013 Moxiecode Systems AB
08 * @license GNU General Public License, version 2 (GPL-2.0)
09 *
10 * For full copyright and license information, please see
11 * the docs/CREDITS.txt file.
12 *
13 */
14
15 /**
16 * DO NOT CHANGE
17 */
18 if (!defined('IN_PHPBB'))
19 {
20 exit;
21 }
22
23 if (empty($lang) || !is_array($lang))
24 {
25 $lang = array();
26 }
27
28 // DEVELOPERS PLEASE NOTE
29 //
30 // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
31 //
32 // Placeholders can now contain order information, e.g. instead of
33 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
34 // translators to re-order the output of data while ensuring it remains correct
35 //
36 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
37 // equally where a string contains only two placeholders which are used to wrap text
38 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
39
40 $lang = array_merge($lang, array(
41 'PLUPLOAD_ADD_FILES' => 'Add files',
42 'PLUPLOAD_ADD_FILES_TO_QUEUE' => 'Add files to the upload queue and click the start button.',
43 'PLUPLOAD_ALREADY_QUEUED' => '%s already present in the queue.',
44 'PLUPLOAD_CLOSE' => 'Close',
45 'PLUPLOAD_DRAG' => 'Drag files here.',
46 'PLUPLOAD_DUPLICATE_ERROR' => 'Duplicate file error.',
47 'PLUPLOAD_DRAG_TEXTAREA' => 'You may also attach files by dragging and dropping them in the message box.',
48 'PLUPLOAD_ERR_INPUT' => 'Failed to open input stream.',
49 'PLUPLOAD_ERR_MOVE_UPLOADED' => 'Failed to move uploaded file.',
50 'PLUPLOAD_ERR_OUTPUT' => 'Failed to open output stream.',
51 'PLUPLOAD_ERR_FILE_TOO_LARGE' => 'File too large:',
52 'PLUPLOAD_ERR_FILE_COUNT' => 'File count error.',
53 'PLUPLOAD_ERR_FILE_INVALID_EXT' => 'Invalid file extension:',
54 'PLUPLOAD_ERR_RUNTIME_MEMORY' => 'Runtime ran out of available memory.',
55 'PLUPLOAD_ERR_UPLOAD_URL' => 'Upload URL might be wrong or does not exist.',
56 'PLUPLOAD_EXTENSION_ERROR' => 'File extension error.',
57 'PLUPLOAD_FILE' => 'File: %s',
58 'PLUPLOAD_FILE_DETAILS' => 'File: %s, size: %d, max file size: %d',
59 'PLUPLOAD_FILENAME' => 'Filename',
60 'PLUPLOAD_FILES_QUEUED' => '%d files queued',
61 'PLUPLOAD_GENERIC_ERROR' => 'Generic error.',
62 'PLUPLOAD_HTTP_ERROR' => 'HTTP error.',
63 'PLUPLOAD_IMAGE_FORMAT' => 'Image format either wrong or not supported.',
64 'PLUPLOAD_INIT_ERROR' => 'Init error.',
65 'PLUPLOAD_IO_ERROR' => 'IO error.',
66 'PLUPLOAD_NOT_APPLICABLE' => 'N/A',
67 'PLUPLOAD_SECURITY_ERROR' => 'Security error.',
68 'PLUPLOAD_SELECT_FILES' => 'Select files',
69 'PLUPLOAD_SIZE' => 'Size',
70 'PLUPLOAD_SIZE_ERROR' => 'File size error.',
71 'PLUPLOAD_STATUS' => 'Status',
72 'PLUPLOAD_START_UPLOAD' => 'Start upload',
73 'PLUPLOAD_START_CURRENT_UPLOAD' => 'Start uploading queue',
74 'PLUPLOAD_STOP_UPLOAD' => 'Stop upload',
75 'PLUPLOAD_STOP_CURRENT_UPLOAD' => 'Stop current upload',
76 // Note: This string is formatted independently by plupload and so does not
77 // use the same formatting rules as normal phpBB translation strings
78 'PLUPLOAD_UPLOADED' => 'Uploaded %d/%d files',
79 ));
80