1 |
2
|
Manuela
|
<?php
|
2 |
|
|
// $Id$
|
3 |
|
|
|
4 |
|
|
/*
|
5 |
|
|
|
6 |
|
|
Website Baker Project <http://www.websitebaker.org/>
|
7 |
|
|
Copyright (C) 2004-2009, Ryan Djurovich
|
8 |
|
|
|
9 |
|
|
Website Baker is free software; you can redistribute it and/or modify
|
10 |
|
|
it under the terms of the GNU General Public License as published by
|
11 |
|
|
the Free Software Foundation; either version 2 of the License, or
|
12 |
|
|
(at your option) any later version.
|
13 |
|
|
|
14 |
|
|
Website Baker is distributed in the hope that it will be useful,
|
15 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
17 |
|
|
GNU General Public License for more details.
|
18 |
|
|
|
19 |
|
|
You should have received a copy of the GNU General Public License
|
20 |
|
|
along with Website Baker; if not, write to the Free Software
|
21 |
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
22 |
|
|
|
23 |
|
|
*/
|
24 |
|
|
|
25 |
|
|
// english module description
|
26 |
|
|
$module_description = 'Droplets are small chunks of php code (just like the code module) that can be included in your template or any other content section. Including a droplet is done by encapsulating the droplet name in double brackets.';
|
27 |
|
|
// headers and text
|
28 |
|
|
$DR_TEXT['ADD_DROPLET'] = 'Add a Droplet';
|
29 |
|
|
$DR_TEXT['ADMIN_EDIT'] = 'Edit a Droplet';
|
30 |
|
|
$DR_TEXT['ADMIN_VIEW'] = 'View';
|
31 |
|
|
$DR_TEXT['ARCHIV_LOAD'] = 'Load an Archive file';
|
32 |
|
|
$DR_TEXT['ACTION'] = 'Droplets '.PHP_EOL.'rename'.PHP_EOL.''.'enabled/disabled'.PHP_EOL.'delete';
|
33 |
|
|
$DR_TEXT['BACKUP'] = 'Backup Droplets (Zip)';
|
34 |
|
|
$DR_TEXT['COPY'] = 'Copy a Droplet';
|
35 |
|
|
$DR_TEXT['DELETE'] = 'Delete a Droplet';
|
36 |
|
|
$DR_TEXT['DROPLET'] = 'Droplet';
|
37 |
|
|
$DR_TEXT['DROPLETS'] = 'Droplets';
|
38 |
|
|
$DR_TEXT['DROPLETS_DELETED'] = 'Droplets deleted successfully.';
|
39 |
|
|
$DR_TEXT['HELP'] = 'Help';
|
40 |
|
|
$DR_TEXT['IMPORT'] = 'Import selected Droplet';
|
41 |
|
|
$DR_TEXT['INVALIDCODE'] = 'This Droplet has invalid PHP code';
|
42 |
|
|
$DR_TEXT['INVALID_BACK'] = 'Invalid choice. Back to the overview';
|
43 |
|
|
$DR_TEXT['MODIFIED_WHEN'] = 'Modified';
|
44 |
|
|
$DR_TEXT['MODIFY'] = 'Edit';
|
45 |
|
|
$DR_TEXT['RESTORE'] = 'Droplets restored';
|
46 |
|
|
$DR_TEXT['README'] = 'readme.html';
|
47 |
|
|
$DR_TEXT['SHOW'] = 'Overview';
|
48 |
|
|
$DR_TEXT['SAVE'] = 'Save';
|
49 |
|
|
$DR_TEXT['NOTUNIQUE'] = 'This droplet name is used!';
|
50 |
|
|
$DR_TEXT['WYSIWYG'] = 'Wysiwyg';
|
51 |
|
|
$DR_TEXT['UPLOAD'] = 'Upload';
|
52 |
|
|
$DR_TEXT['USED'] = 'This droplet is used on the following page(-s):<br />';
|
53 |
|
|
$DR_TEXT['PLEASE_SELECT'] = 'Please select an Archive file';
|
54 |
|
|
$DR_TEXT['VALID_CODE'] = 'Code valide';
|
55 |
|
|
$DR_TEXT['INVALID_CODE'] = 'Code not valide';
|
56 |
|
|
$DR_TEXT['COPY_DROPLET'] = 'Duplicate';
|
57 |
|
|
$DR_TEXT['INACTIVE'] = 'Disabled';
|
58 |
|
|
$TEXT['INACTIVE'] = 'Disabled';
|
59 |
|
|
$TEXT['ACTIVE'] = 'Enabled';
|
60 |
|
|
|
61 |
|
|
$DROPLET_MESSAGE = array (
|
62 |
|
|
'ARCHIVE_DELETED' => 'Zip(s) deleted successfully.',
|
63 |
|
|
'ARCHIVE_NOT_DELETED' => 'Cannot delete the selected Zip(s).',
|
64 |
|
|
'CONFIRM_DROPLET_DELETING' => 'Are you sure you want to delete the selected droplets?',
|
65 |
|
|
'DELETED' => 'Droplets deleted successfully.',
|
66 |
|
|
'DELETE_DROPLETS' => 'Delete a Droplet',
|
67 |
|
|
'MISSING_UNMARKED_ARCHIVE_FILES' => 'No Droplet-File selected to import.',
|
68 |
|
|
'GENERIC_MISSING_ARCHIVE_FILE' => 'No Zip-File selected to delete!',
|
69 |
|
|
'GENERIC_MISSING_TITLE' => 'Insert a Droplet name.',
|
70 |
|
|
'GENERIC_LOCAL_DOWNLOAD' => 'Download Zip',
|
71 |
|
|
'GENERIC_LOCAL_UPLOAD' => 'Load and restore a locale Zip',
|
72 |
|
|
);
|
73 |
|
|
|
74 |
|
|
$DROPLET_HEADER = array (
|
75 |
|
|
'INDEX' => 'Id',
|
76 |
|
|
'PATH' => 'Folder',
|
77 |
|
|
'FILENAME' => 'Dropletname',
|
78 |
|
|
'DESCRIPTION' => 'Description',
|
79 |
|
|
'SIZE' => 'Size',
|
80 |
|
|
'DATE' => 'Date',
|
81 |
|
|
'RENAME_DROPLET' => 'Rename Droplet',
|
82 |
|
|
'SELECT_DROPLET' => 'Select a Zip',
|
83 |
|
|
);
|
84 |
|
|
|
85 |
|
|
$DROPLET_SELECT_ORDER = array (
|
86 |
|
|
'CHOOSE_ORDER'=>'Select Droplet Sorting Order',
|
87 |
|
|
'ASC' => 'Ascending',
|
88 |
|
|
'DESC'=> 'Descending',
|
89 |
|
|
);
|
90 |
|
|
|
91 |
|
|
$DROPLET_SELECT_OPTION = array (
|
92 |
|
|
'ASC' => 'Ascending', array(
|
93 |
|
|
'1' => 'Dropletname',
|
94 |
|
|
'2' => 'Modified Whem',
|
95 |
|
|
),
|
96 |
|
|
'DESC' => 'Ascending', array(
|
97 |
|
|
'4' => 'Dropletname',
|
98 |
|
|
'8' => 'Modified Whem',
|
99 |
|
|
)
|
100 |
|
|
);
|
101 |
|
|
|
102 |
|
|
$DROPLET_HELP = array (
|
103 |
|
|
'DROPLET_DELETE' => 'Delete a Droplet. Click to delete the selected droplet in this row. Durch Auswahl lassen sich auch mehrere Droplets auf einmal löschen. ',
|
104 |
|
|
'DROPLET_RENAME' => 'Now you can rename the Droplet',
|
105 |
|
|
'DROPLET_RENAME_ADD' => 'Input your new Dropletname',
|
106 |
|
|
);
|
107 |
|
|
|
108 |
|
|
$DROPLET_IMPORT = array (
|
109 |
|
|
'ARCHIV_LOADED' => 'Zip loaded successfully! Choose one or more droplets to restore.',
|
110 |
|
|
'ARCHIV_IMPORTED' => 'Selected droplets import into the database ! ',
|
111 |
|
|
'UPATE_EXISTING_DROPLETS' => 'Overwrite existing droplets?',
|
112 |
|
|
);
|