Version Description
Download this release
Release Info
Developer | filosofo |
Plugin | WP-DB-Backup |
Version | 2.1.2 |
Comparing to | |
See all releases |
Code changes from version 2.1.1 to 2.1.2
- readme.txt +3 -2
- wp-db-backup.php +29 -21
- wp-db-backup.po +80 -76
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.ilfilosofo.com/blog/wp-db-backup/
|
|
4 |
Tags: mysql, database, backup, cron
|
5 |
Requires at least: 2.0.3
|
6 |
Tested up to: 2.3
|
7 |
-
Stable tag: 2.1.
|
8 |
|
9 |
On-demand backup of your WordPress database.
|
10 |
|
@@ -34,7 +34,8 @@ Released under the terms of the GNU GPL, version 2.
|
|
34 |
= What are wp-db-backup.mo and wp-db-backup.pot for? =
|
35 |
|
36 |
These files are used by non-English users to translate the display into their native language. Translators are encouraged to send me translated files, which will be made available to others here:
|
37 |
-
|
|
|
38 |
|
39 |
= Why are only the core database files backed up by default? =
|
40 |
|
4 |
Tags: mysql, database, backup, cron
|
5 |
Requires at least: 2.0.3
|
6 |
Tested up to: 2.3
|
7 |
+
Stable tag: 2.1.2
|
8 |
|
9 |
On-demand backup of your WordPress database.
|
10 |
|
34 |
= What are wp-db-backup.mo and wp-db-backup.pot for? =
|
35 |
|
36 |
These files are used by non-English users to translate the display into their native language. Translators are encouraged to send me translated files, which will be made available to others here:
|
37 |
+
http://www.ilfilosofo.com/blog/wp-db-backup/i18n/
|
38 |
+
http://dev.wp-plugins.org/browser/wp-db-backup/i18n/
|
39 |
|
40 |
= Why are only the core database files backed up by default? =
|
41 |
|
wp-db-backup.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.ilfilosofo.com/blog/wp-db-backup
|
|
5 |
Description: On-demand backup of your WordPress database. Navigate to <a href="edit.php?page=wp-db-backup">Manage → Backup</a> to get started.
|
6 |
Author: Austin Matzko
|
7 |
Author URI: http://www.ilfilosofo.com/blog/
|
8 |
-
Version: 2.1.
|
9 |
|
10 |
Development continued from that done by Skippy (http://www.skippy.net/)
|
11 |
|
@@ -139,19 +139,21 @@ class wpdbBackup {
|
|
139 |
switch($via) {
|
140 |
case 'smtp':
|
141 |
case 'email':
|
142 |
-
$this->deliver_backup
|
143 |
$this->error_display( 'frame' );
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
|
|
|
|
152 |
break;
|
153 |
default:
|
154 |
-
$this->deliver_backup
|
155 |
$this->error_display( 'frame' );
|
156 |
}
|
157 |
die();
|
@@ -466,7 +468,7 @@ class wpdbBackup {
|
|
466 |
$err_list[9] = __('Subsequent errors have been omitted from this log.','wp-db-backup');
|
467 |
$wrap = ( 'frame' == $loc ) ? "<script type=\"text/javascript\">\n var msgList = '';\n %1\$s \n alert(msgList); \n </script>" : '%1$s';
|
468 |
$line = ( 'frame' == $loc ) ?
|
469 |
-
"try{ window.parent.addError('%1\$s'); } catch(e) { msgList += ' %1\$s';}\n" :
|
470 |
"%1\$s<br />\n";
|
471 |
foreach( (array) $err_list as $err )
|
472 |
$msg .= sprintf($line,$err);
|
@@ -666,7 +668,7 @@ class wpdbBackup {
|
|
666 |
}
|
667 |
|
668 |
function deliver_backup($filename = '', $delivery = 'http', $recipient = '') {
|
669 |
-
if ('' == $filename) { return
|
670 |
|
671 |
$this->diskfile = ABSPATH . $this->backup_dir . $filename;
|
672 |
$this->filename = $filename;
|
@@ -677,7 +679,7 @@ class wpdbBackup {
|
|
677 |
header('Content-Type: application/octet-stream');
|
678 |
header('Content-Length: ' . filesize($this->diskfile));
|
679 |
header("Content-Disposition: attachment; filename=$filename");
|
680 |
-
readfile($this->diskfile);
|
681 |
unlink($this->diskfile);
|
682 |
} elseif ('smtp' == $delivery) {
|
683 |
if (! file_exists($this->diskfile)) return false;
|
@@ -697,7 +699,7 @@ class wpdbBackup {
|
|
697 |
|
698 |
$this->message = $message = sprintf(__("Attached to this email is\n %1s\n Size:%2s kilobytes\n",'wp-db-backup'), $filename, round(filesize($this->diskfile)/1024));
|
699 |
// Add a multipart boundary above the plain message
|
700 |
-
$message
|
701 |
"--{$boundary}\n" .
|
702 |
"Content-Type: text/plain; charset=\"utf-8\"\n" .
|
703 |
"Content-Transfer-Encoding: 7bit\n\n" .
|
@@ -715,15 +717,21 @@ class wpdbBackup {
|
|
715 |
|
716 |
if (function_exists('wp_mail')) {
|
717 |
$this->useMailer = true;
|
718 |
-
wp_mail($recipient, get_bloginfo('name') . ' ' . __('Database Backup','wp-db-backup'), $message, $headers);
|
719 |
$this->useMailer = false;
|
720 |
} else {
|
721 |
-
mail($recipient, get_bloginfo('name') . ' ' . __('Database Backup','wp-db-backup'), $message, $headers);
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
}
|
723 |
|
724 |
unlink($this->diskfile);
|
725 |
}
|
726 |
-
return;
|
727 |
}
|
728 |
|
729 |
function backup_menu() {
|
@@ -956,7 +964,7 @@ class wpdbBackup {
|
|
956 |
// If scheduled backup is disabled
|
957 |
if (0 == $schedule)
|
958 |
return;
|
959 |
-
else $this->cron_backup();
|
960 |
}
|
961 |
|
962 |
function cron_backup() {
|
@@ -968,8 +976,8 @@ class wpdbBackup {
|
|
968 |
$recipient = get_option('wp_cron_backup_recipient');
|
969 |
$backup_file = $this->db_backup($core_tables, $other_tables);
|
970 |
if (FALSE !== $backup_file)
|
971 |
-
$this->deliver_backup($backup_file, 'smtp', $recipient);
|
972 |
-
return;
|
973 |
}
|
974 |
|
975 |
function add_sched_options($sched) {
|
5 |
Description: On-demand backup of your WordPress database. Navigate to <a href="edit.php?page=wp-db-backup">Manage → Backup</a> to get started.
|
6 |
Author: Austin Matzko
|
7 |
Author URI: http://www.ilfilosofo.com/blog/
|
8 |
+
Version: 2.1.2
|
9 |
|
10 |
Development continued from that done by Skippy (http://www.skippy.net/)
|
11 |
|
139 |
switch($via) {
|
140 |
case 'smtp':
|
141 |
case 'email':
|
142 |
+
$success = $this->deliver_backup($this->backup_file, 'smtp', $_GET['recipient']);
|
143 |
$this->error_display( 'frame' );
|
144 |
+
if ( $success ) {
|
145 |
+
echo '
|
146 |
+
<!-- ' . $via . ' -->
|
147 |
+
<script type="text/javascript"><!--\\
|
148 |
+
';
|
149 |
+
echo '
|
150 |
+
alert("' . __('Backup Complete!','wp-db-backup') . '");
|
151 |
+
</script>
|
152 |
+
';
|
153 |
+
}
|
154 |
break;
|
155 |
default:
|
156 |
+
$this->deliver_backup($this->backup_file, $via);
|
157 |
$this->error_display( 'frame' );
|
158 |
}
|
159 |
die();
|
468 |
$err_list[9] = __('Subsequent errors have been omitted from this log.','wp-db-backup');
|
469 |
$wrap = ( 'frame' == $loc ) ? "<script type=\"text/javascript\">\n var msgList = '';\n %1\$s \n alert(msgList); \n </script>" : '%1$s';
|
470 |
$line = ( 'frame' == $loc ) ?
|
471 |
+
"try{ window.parent.addError('%1\$s'); msgList += ' %1\$s'; } catch(e) { msgList += ' %1\$s';}\n" :
|
472 |
"%1\$s<br />\n";
|
473 |
foreach( (array) $err_list as $err )
|
474 |
$msg .= sprintf($line,$err);
|
668 |
}
|
669 |
|
670 |
function deliver_backup($filename = '', $delivery = 'http', $recipient = '') {
|
671 |
+
if ('' == $filename) { return false; }
|
672 |
|
673 |
$this->diskfile = ABSPATH . $this->backup_dir . $filename;
|
674 |
$this->filename = $filename;
|
679 |
header('Content-Type: application/octet-stream');
|
680 |
header('Content-Length: ' . filesize($this->diskfile));
|
681 |
header("Content-Disposition: attachment; filename=$filename");
|
682 |
+
$success = readfile($this->diskfile);
|
683 |
unlink($this->diskfile);
|
684 |
} elseif ('smtp' == $delivery) {
|
685 |
if (! file_exists($this->diskfile)) return false;
|
699 |
|
700 |
$this->message = $message = sprintf(__("Attached to this email is\n %1s\n Size:%2s kilobytes\n",'wp-db-backup'), $filename, round(filesize($this->diskfile)/1024));
|
701 |
// Add a multipart boundary above the plain message
|
702 |
+
$message .= "This is a multi-part message in MIME format.\n\n" .
|
703 |
"--{$boundary}\n" .
|
704 |
"Content-Type: text/plain; charset=\"utf-8\"\n" .
|
705 |
"Content-Transfer-Encoding: 7bit\n\n" .
|
717 |
|
718 |
if (function_exists('wp_mail')) {
|
719 |
$this->useMailer = true;
|
720 |
+
$success = @wp_mail($recipient, get_bloginfo('name') . ' ' . __('Database Backup','wp-db-backup'), $message, $headers);
|
721 |
$this->useMailer = false;
|
722 |
} else {
|
723 |
+
$success = @mail($recipient, get_bloginfo('name') . ' ' . __('Database Backup','wp-db-backup'), $message, $headers);
|
724 |
+
}
|
725 |
+
|
726 |
+
if ( false == $success ) {
|
727 |
+
$msg = __('The following errors were reported:','wp-db-backup') . "\n ";
|
728 |
+
$msg = ( function_exists('error_get_last') ) ? error_get_last('message') : __('ERROR: The mail application has failed to deliver the backup.','wp-db-backup');
|
729 |
+
$this->error($msg);
|
730 |
}
|
731 |
|
732 |
unlink($this->diskfile);
|
733 |
}
|
734 |
+
return $success;
|
735 |
}
|
736 |
|
737 |
function backup_menu() {
|
964 |
// If scheduled backup is disabled
|
965 |
if (0 == $schedule)
|
966 |
return;
|
967 |
+
else return $this->cron_backup();
|
968 |
}
|
969 |
|
970 |
function cron_backup() {
|
976 |
$recipient = get_option('wp_cron_backup_recipient');
|
977 |
$backup_file = $this->db_backup($core_tables, $other_tables);
|
978 |
if (FALSE !== $backup_file)
|
979 |
+
return $this->deliver_backup($backup_file, 'smtp', $recipient);
|
980 |
+
else return false;
|
981 |
}
|
982 |
|
983 |
function add_sched_options($sched) {
|
wp-db-backup.po
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
"Project-Id-Version: wp-db-backup.php 2.1.
|
2 |
"Report-Msgid-Bugs-To: \n"
|
3 |
-
"POT-Creation-Date: 2007-05-
|
4 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
5 |
"Last-Translator: Austin Matzko if.website at gmail.com\n"
|
6 |
"Language-Team: EN\n"
|
@@ -8,165 +8,165 @@
|
|
8 |
"Content-Type: text/plain; charset=CHARSET\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
|
11 |
-
#: wp-db-backup.php:
|
12 |
msgid "Backup Complete!"
|
13 |
msgstr ""
|
14 |
|
15 |
-
#: wp-db-backup.php:
|
16 |
-
#: wp-db-backup.php:
|
17 |
msgid "Backup"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: wp-db-backup.php:
|
21 |
msgid "Progress"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: wp-db-backup.php:
|
25 |
msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: wp-db-backup.php:
|
29 |
msgid "Close this browser"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: wp-db-backup.php:
|
33 |
msgid "Reload this page"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: wp-db-backup.php:
|
37 |
msgid "Click the Stop or Back buttons in your browser"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: wp-db-backup.php:
|
41 |
msgid "Progress:"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: wp-db-backup.php:
|
45 |
#, php-format
|
46 |
msgid ""
|
47 |
"Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: wp-db-backup.php:
|
51 |
#, php-format
|
52 |
msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: wp-db-backup.php:
|
56 |
#, php-format
|
57 |
msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: wp-db-backup.php:
|
61 |
msgid "Creating backup file..."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: wp-db-backup.php:
|
65 |
#, php-format
|
66 |
msgid "Finished backing up table \\\"%s\\\"."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: wp-db-backup.php:
|
70 |
#, php-format
|
71 |
msgid "Backing up table \\\"%s\\\"..."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: wp-db-backup.php:
|
75 |
msgid "Could not open the backup file for writing!"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: wp-db-backup.php:
|
79 |
msgid ""
|
80 |
"The backup file could not be saved. Please check the permissions for "
|
81 |
"writing to your backup directory and try again."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: wp-db-backup.php:
|
85 |
msgid "WordPress MySQL database backup"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: wp-db-backup.php:
|
89 |
#, php-format
|
90 |
msgid "Generated: %s"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: wp-db-backup.php:
|
94 |
#, php-format
|
95 |
msgid "Hostname: %s"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: wp-db-backup.php:
|
99 |
#, php-format
|
100 |
msgid "Database: %s"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: wp-db-backup.php:
|
104 |
#, php-format
|
105 |
msgid "Table: %s"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: wp-db-backup.php:
|
109 |
msgid ""
|
110 |
"The backup directory is not writeable! Please check the permissions for "
|
111 |
"writing to your backup directory and try again."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: wp-db-backup.php:
|
115 |
msgid "There was an error writing a line to the backup script:"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: wp-db-backup.php:
|
119 |
msgid "Subsequent errors have been omitted from this log."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: wp-db-backup.php:
|
123 |
msgid "Error getting table details"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: wp-db-backup.php:
|
127 |
#, php-format
|
128 |
msgid "Delete any existing table %s"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: wp-db-backup.php:
|
132 |
#, php-format
|
133 |
msgid "Table structure of table %s"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: wp-db-backup.php:
|
137 |
#, php-format
|
138 |
msgid "Error with SHOW CREATE TABLE for %s."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: wp-db-backup.php:
|
142 |
#, php-format
|
143 |
msgid "Error getting table structure of %s"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: wp-db-backup.php:
|
147 |
#, php-format
|
148 |
msgid "Data contents of table %s"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: wp-db-backup.php:
|
152 |
#, php-format
|
153 |
msgid "End of data contents of table %s"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: wp-db-backup.php:
|
157 |
msgid "The backup directory is not writeable!"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: wp-db-backup.php:
|
161 |
#, php-format
|
162 |
msgid "File not found:%s"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: wp-db-backup.php:
|
166 |
msgid "Return to Backup"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: wp-db-backup.php:
|
170 |
#, php-format
|
171 |
msgid ""
|
172 |
"Attached to this email is\n"
|
@@ -174,142 +174,146 @@ msgid ""
|
|
174 |
" Size:%2s kilobytes\n"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: wp-db-backup.php:
|
178 |
msgid "Database Backup"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: wp-db-backup.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid "Backup Successful"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: wp-db-backup.php:
|
186 |
#, php-format
|
187 |
msgid ""
|
188 |
"Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: wp-db-backup.php:
|
192 |
#, php-format
|
193 |
msgid "Your backup has been emailed to %s"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: wp-db-backup.php:
|
197 |
msgid ""
|
198 |
"Your backup file has been saved on the server. If you would like to download "
|
199 |
"it now, right click and select \"Save As\""
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: wp-db-backup.php:
|
203 |
#, php-format
|
204 |
msgid "%s bytes"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: wp-db-backup.php:
|
208 |
-
msgid "The following errors were reported:"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: wp-db-backup.php:788
|
212 |
msgid "Scheduled Backup Options Saved!"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: wp-db-backup.php:
|
216 |
msgid ""
|
217 |
"WARNING: Your wp-content directory is <strong>NOT</strong> writable! We can "
|
218 |
"not create the backup directory."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: wp-db-backup.php:
|
222 |
msgid ""
|
223 |
"WARNING: Your backup directory is <strong>NOT</strong> writable! We can not "
|
224 |
"create the backup directory."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: wp-db-backup.php:
|
228 |
msgid "Tables"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: wp-db-backup.php:
|
232 |
msgid "These core WordPress tables will always be backed up:"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: wp-db-backup.php:
|
236 |
msgid "You may choose to include any of the following tables:"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: wp-db-backup.php:
|
240 |
msgid "Backup Options"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: wp-db-backup.php:
|
244 |
msgid "What to do with the backup file:"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: wp-db-backup.php:
|
248 |
msgid "Save to server"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: wp-db-backup.php:
|
252 |
msgid "Download to your computer"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: wp-db-backup.php:
|
256 |
msgid "Email backup to:"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: wp-db-backup.php:
|
260 |
msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: wp-db-backup.php:
|
264 |
msgid "Scheduled Backup"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: wp-db-backup.php:
|
268 |
msgid "Next Backup"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: wp-db-backup.php:
|
272 |
msgid "Last WP-Cron Daily Execution"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: wp-db-backup.php:
|
276 |
msgid "Next WP-Cron Daily Execution"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: wp-db-backup.php:
|
280 |
msgid "Schedule: "
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: wp-db-backup.php:
|
284 |
msgid "None"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: wp-db-backup.php:
|
288 |
msgid "Daily"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: wp-db-backup.php:
|
292 |
msgid "Tables to include:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: wp-db-backup.php:
|
296 |
msgid "Submit"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: wp-db-backup.php:
|
300 |
msgid "Never"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: wp-db-backup.php:
|
304 |
#, php-format
|
305 |
msgid "%s seconds"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: wp-db-backup.php:
|
309 |
msgid "Once Weekly"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: wp-db-backup.php:
|
313 |
#, php-format
|
314 |
msgid ""
|
315 |
"Your WordPress version, %1s, lacks important security features without which "
|
@@ -318,17 +322,17 @@ msgid ""
|
|
318 |
"WordPress</a> to a more recent version."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: wp-db-backup.php:
|
322 |
msgid "You are not allowed to perform backups."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: wp-db-backup.php:
|
326 |
#, php-format
|
327 |
msgid ""
|
328 |
"There appears to be an unauthorized attempt from this site to access your "
|
329 |
"database located at %1s. The attempt has been halted."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: wp-db-backup.php:
|
333 |
msgid "Cheatin' uh ?"
|
334 |
msgstr ""
|
1 |
+
"Project-Id-Version: wp-db-backup.php 2.1.2\n"
|
2 |
"Report-Msgid-Bugs-To: \n"
|
3 |
+
"POT-Creation-Date: 2007-05-28 23:52-0400\n"
|
4 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
5 |
"Last-Translator: Austin Matzko if.website at gmail.com\n"
|
6 |
"Language-Team: EN\n"
|
8 |
"Content-Type: text/plain; charset=CHARSET\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
|
11 |
+
#: wp-db-backup.php:150
|
12 |
msgid "Backup Complete!"
|
13 |
msgstr ""
|
14 |
|
15 |
+
#: wp-db-backup.php:179 wp-db-backup.php:374 wp-db-backup.php:378
|
16 |
+
#: wp-db-backup.php:836 wp-db-backup.php:860
|
17 |
msgid "Backup"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: wp-db-backup.php:180
|
21 |
msgid "Progress"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: wp-db-backup.php:182
|
25 |
msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: wp-db-backup.php:185
|
29 |
msgid "Close this browser"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: wp-db-backup.php:186
|
33 |
msgid "Reload this page"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: wp-db-backup.php:187
|
37 |
msgid "Click the Stop or Back buttons in your browser"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: wp-db-backup.php:189
|
41 |
msgid "Progress:"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: wp-db-backup.php:231
|
45 |
#, php-format
|
46 |
msgid ""
|
47 |
"Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-db-backup.php:237
|
51 |
#, php-format
|
52 |
msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: wp-db-backup.php:243
|
56 |
#, php-format
|
57 |
msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: wp-db-backup.php:300
|
61 |
msgid "Creating backup file..."
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: wp-db-backup.php:303
|
65 |
#, php-format
|
66 |
msgid "Finished backing up table \\\"%s\\\"."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: wp-db-backup.php:305
|
70 |
#, php-format
|
71 |
msgid "Backing up table \\\"%s\\\"..."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: wp-db-backup.php:312 wp-db-backup.php:617
|
75 |
msgid "Could not open the backup file for writing!"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: wp-db-backup.php:313
|
79 |
msgid ""
|
80 |
"The backup file could not be saved. Please check the permissions for "
|
81 |
"writing to your backup directory and try again."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: wp-db-backup.php:318 wp-db-backup.php:626
|
85 |
msgid "WordPress MySQL database backup"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: wp-db-backup.php:320 wp-db-backup.php:628
|
89 |
#, php-format
|
90 |
msgid "Generated: %s"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: wp-db-backup.php:321 wp-db-backup.php:629
|
94 |
#, php-format
|
95 |
msgid "Hostname: %s"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: wp-db-backup.php:322 wp-db-backup.php:630
|
99 |
#, php-format
|
100 |
msgid "Database: %s"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: wp-db-backup.php:330 wp-db-backup.php:643
|
104 |
#, php-format
|
105 |
msgid "Table: %s"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: wp-db-backup.php:337
|
109 |
msgid ""
|
110 |
"The backup directory is not writeable! Please check the permissions for "
|
111 |
"writing to your backup directory and try again."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: wp-db-backup.php:433 wp-db-backup.php:436
|
115 |
msgid "There was an error writing a line to the backup script:"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: wp-db-backup.php:468
|
119 |
msgid "Subsequent errors have been omitted from this log."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: wp-db-backup.php:502
|
123 |
msgid "Error getting table details"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: wp-db-backup.php:510
|
127 |
#, php-format
|
128 |
msgid "Delete any existing table %s"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: wp-db-backup.php:519
|
132 |
#, php-format
|
133 |
msgid "Table structure of table %s"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: wp-db-backup.php:525
|
137 |
#, php-format
|
138 |
msgid "Error with SHOW CREATE TABLE for %s."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: wp-db-backup.php:532
|
142 |
#, php-format
|
143 |
msgid "Error getting table structure of %s"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: wp-db-backup.php:540
|
147 |
#, php-format
|
148 |
msgid "Data contents of table %s"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: wp-db-backup.php:605
|
152 |
#, php-format
|
153 |
msgid "End of data contents of table %s"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: wp-db-backup.php:621
|
157 |
msgid "The backup directory is not writeable!"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: wp-db-backup.php:677
|
161 |
#, php-format
|
162 |
msgid "File not found:%s"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: wp-db-backup.php:677
|
166 |
msgid "Return to Backup"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: wp-db-backup.php:700
|
170 |
#, php-format
|
171 |
msgid ""
|
172 |
"Attached to this email is\n"
|
174 |
" Size:%2s kilobytes\n"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: wp-db-backup.php:720 wp-db-backup.php:723
|
178 |
msgid "Database Backup"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: wp-db-backup.php:727 wp-db-backup.php:769
|
182 |
+
msgid "The following errors were reported:"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: wp-db-backup.php:728
|
186 |
+
msgid "ERROR: The mail application has failed to deliver the backup."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: wp-db-backup.php:744
|
190 |
msgid "Backup Successful"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: wp-db-backup.php:748
|
194 |
#, php-format
|
195 |
msgid ""
|
196 |
"Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: wp-db-backup.php:756
|
200 |
#, php-format
|
201 |
msgid "Your backup has been emailed to %s"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: wp-db-backup.php:759
|
205 |
msgid ""
|
206 |
"Your backup file has been saved on the server. If you would like to download "
|
207 |
"it now, right click and select \"Save As\""
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: wp-db-backup.php:760
|
211 |
#, php-format
|
212 |
msgid "%s bytes"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: wp-db-backup.php:796
|
|
|
|
|
|
|
|
|
216 |
msgid "Scheduled Backup Options Saved!"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: wp-db-backup.php:824
|
220 |
msgid ""
|
221 |
"WARNING: Your wp-content directory is <strong>NOT</strong> writable! We can "
|
222 |
"not create the backup directory."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: wp-db-backup.php:830
|
226 |
msgid ""
|
227 |
"WARNING: Your backup directory is <strong>NOT</strong> writable! We can not "
|
228 |
"create the backup directory."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: wp-db-backup.php:839
|
232 |
msgid "Tables"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: wp-db-backup.php:841
|
236 |
msgid "These core WordPress tables will always be backed up:"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: wp-db-backup.php:847
|
240 |
msgid "You may choose to include any of the following tables:"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: wp-db-backup.php:853
|
244 |
msgid "Backup Options"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: wp-db-backup.php:854
|
248 |
msgid "What to do with the backup file:"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: wp-db-backup.php:855
|
252 |
msgid "Save to server"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: wp-db-backup.php:857
|
256 |
msgid "Download to your computer"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: wp-db-backup.php:858 wp-db-backup.php:905
|
260 |
msgid "Email backup to:"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: wp-db-backup.php:862
|
264 |
msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: wp-db-backup.php:871
|
268 |
msgid "Scheduled Backup"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: wp-db-backup.php:875
|
272 |
msgid "Next Backup"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: wp-db-backup.php:879
|
276 |
msgid "Last WP-Cron Daily Execution"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: wp-db-backup.php:880
|
280 |
msgid "Next WP-Cron Daily Execution"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: wp-db-backup.php:886
|
284 |
msgid "Schedule: "
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: wp-db-backup.php:889
|
288 |
msgid "None"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: wp-db-backup.php:889
|
292 |
msgid "Daily"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: wp-db-backup.php:913
|
296 |
msgid "Tables to include:"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: wp-db-backup.php:923
|
300 |
msgid "Submit"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: wp-db-backup.php:946
|
304 |
msgid "Never"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: wp-db-backup.php:951
|
308 |
#, php-format
|
309 |
msgid "%s seconds"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: wp-db-backup.php:984
|
313 |
msgid "Once Weekly"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: wp-db-backup.php:997
|
317 |
#, php-format
|
318 |
msgid ""
|
319 |
"Your WordPress version, %1s, lacks important security features without which "
|
322 |
"WordPress</a> to a more recent version."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: wp-db-backup.php:1012
|
326 |
msgid "You are not allowed to perform backups."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: wp-db-backup.php:1027
|
330 |
#, php-format
|
331 |
msgid ""
|
332 |
"There appears to be an unauthorized attempt from this site to access your "
|
333 |
"database located at %1s. The attempt has been halted."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: wp-db-backup.php:1038
|
337 |
msgid "Cheatin' uh ?"
|
338 |
msgstr ""
|