WP-DB-Backup - Version 2.2

Version Description

Download this release

Release Info

Developer filosofo
Plugin Icon 128x128 WP-DB-Backup
Version 2.2
Comparing to
See all releases

Code changes from version 2.1.5 to 2.2

readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: filosofo, skippy, Firas, LaughingLizard, MtDewVirus, Podz, Ringmas
3
  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.6
7
- Stable tag: 2.1.5
8
 
9
  On-demand backup of your WordPress database.
10
 
@@ -17,7 +17,7 @@ Released under the terms of the GNU GPL, version 2.
17
 
18
  NO WARRANTY.
19
 
20
- Copyright (c) 2007 Austin Matzko
21
 
22
  == Installation ==
23
  1. Copy the wp-db-backup.php file to /wp-content/plugins/
@@ -31,9 +31,33 @@ Released under the terms of the GNU GPL, version 2.
31
 
32
  == Frequently Asked Questions ==
33
 
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
 
@@ -79,23 +103,12 @@ When having the database backup emailed or sent to your browser for immediate do
79
  If you are using WordPress version 2.1 or newer, you can schedule automated backups to be sent to the email address
80
  of your choice.
81
 
82
- == Changelog ==
83
- 2.1
84
- Major security upgrade
85
-
86
- 2.0
87
- Support for WordPress 2.1's built-in cron, for automated scheduled backups.
88
-
89
- 1.7
90
- Better error handling. Updated documentation.
91
-
92
- 1.6
93
- Integrated Owen's massive rewrite, the most noticable element being the introduction of a progress meter. The backup is now spooled to disk, a few rows at a time, to ensure that databases of all sizes can be backed up. Additionally, gzip support is now automatically detected, and used if available. This has been tested on a database over 30 megabytes uncompressed. Version 1.6 of wp-db-backup successfully backed up the whole thing without error, and transparently compressed it to just over 10 megabytes (many thanks to Lorelle for being such a willing guinea pig!).
94
-
95
- 1.5
96
- Applied patch from Owen (http://dev.wp-plugins.org/ticket/219)
97
- -- the database dump is now spooled to disk to better support large databases.
98
- If the user has selected immediate delivery, the file size will be evaluated. If less than 2 MB, the file will be gzip compressed (if the user asked for it); otherwise a helpful error message will be displayed.
99
-
100
- 1.4
101
- Initial relase.
3
  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.7
7
+ Stable tag: 2.2
8
 
9
  On-demand backup of your WordPress database.
10
 
17
 
18
  NO WARRANTY.
19
 
20
+ Copyright (c) 2008 Austin Matzko
21
 
22
  == Installation ==
23
  1. Copy the wp-db-backup.php file to /wp-content/plugins/
31
 
32
  == Frequently Asked Questions ==
33
 
34
+ = How do I restore my database from a backup? =
35
 
36
+ Briefly, use phpMyAdmin, which is included with most hosting control panels. More details and links to further explanations are here: http://codex.wordpress.org/Restoring_Your_Database_From_Backup
37
+
38
+ = My backup stops or hangs without completing. =
39
+
40
+ If you edit the text of wp-db-backup.php in a text editor like Notepad, you’ll see around line 50 the following:
41
+
42
+ `/**
43
+ * Set MOD_EVASIVE_OVERRIDE to true
44
+ * and increase MOD_EVASIVE_DELAY
45
+ * if the backup stops prematurely.
46
+ */
47
+ // define('MOD_EVASIVE_OVERRIDE', false);
48
+ define('MOD_EVASIVE_DELAY', '500');`
49
+
50
+ Do what it says: un-comment MOD_EVASIVE_OVERRIDE and set it to true like so:
51
+
52
+ `define('MOD_EVASIVE_OVERRIDE', true);`
53
+
54
+ That will slow down the plugin, and you can slow it even further by increasing the MOD_EVASIVE_DELAY number from 500.
55
+
56
+ Better yet, put the lines that define the `MOD_EVASIVE_OVERRIDE` and `MOD_EVASIVE_DELAY` constants in your wp-config.php file, so your settings don't get erased when you upgrade the plugin.
57
+
58
+ = What is wp-db-backup.pot for? =
59
+
60
+ This files is 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:
61
  http://www.ilfilosofo.com/blog/wp-db-backup/i18n/
62
  http://dev.wp-plugins.org/browser/wp-db-backup/i18n/
63
 
103
  If you are using WordPress version 2.1 or newer, you can schedule automated backups to be sent to the email address
104
  of your choice.
105
 
106
+ == Translators ==
107
+ Thanks to following people for providing translation files for WP-DB-Backup:
108
+ * İzzet Emre Erkan
109
+ * Michele Spagnuolo
110
+ * Rune Gulbrandsøy
111
+ * Sergey Biryukov
112
+ * Tai
113
+ * Timm Severin
114
+ * 吴曦
 
 
 
 
 
 
 
 
 
 
 
wp-db-backup-de_DE.mo ADDED
Binary file
wp-db-backup-de_DE.po ADDED
@@ -0,0 +1,396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WP-DB-Backup
2
+ # Copyright (C) 2008 Austin Matzko
3
+ # This file is distributed under the GPL 2 license.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: wp-db-backup 2.1.7\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2008-08-15 11:00-0500\n"
10
+ "PO-Revision-Date: 2008-08-15 23:47+0100\n"
11
+ "Last-Translator: \n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=utf-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language-Team: \n"
16
+
17
+ #: wp-db-backup.php:181
18
+ msgid "Backup Complete!"
19
+ msgstr "Backup abgeschlossen!"
20
+
21
+ #: wp-db-backup.php:211
22
+ msgid "Progress"
23
+ msgstr "Fortschritt"
24
+
25
+ #: wp-db-backup.php:213
26
+ msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
27
+ msgstr "Achtung, bitte führe die folgenden Aktionen nicht aus, da das Backup sonst fehlschlagen wird:"
28
+
29
+ #: wp-db-backup.php:216
30
+ msgid "Close this browser"
31
+ msgstr "Das Browserfenster schließen"
32
+
33
+ #: wp-db-backup.php:217
34
+ msgid "Reload this page"
35
+ msgstr "Diese Seite neu laden"
36
+
37
+ #: wp-db-backup.php:218
38
+ msgid "Click the Stop or Back buttons in your browser"
39
+ msgstr "Den \"Stopp\"- oder \"Zurück\"-Knopf im Browser drücken"
40
+
41
+ #: wp-db-backup.php:220
42
+ msgid "Progress:"
43
+ msgstr "Fortschritt:"
44
+
45
+ #: wp-db-backup.php:229
46
+ msgid "Navigating away from this page will cause your backup to fail."
47
+ msgstr "Diese Seite zu verlassen wird das Backup fehlschagen lassen."
48
+
49
+ #: wp-db-backup.php:266
50
+ #, php-format
51
+ msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
52
+ msgstr "Backup vollständig, bereite <a href=\\\"%s\\\">Backup</a> zum Download vor"
53
+
54
+ #: wp-db-backup.php:273
55
+ #, php-format
56
+ msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
57
+ msgstr "Backup vollständig, sende <a href=\\\"%s\\\">Backup</a> per E-Mail..."
58
+
59
+ #: wp-db-backup.php:280
60
+ #, php-format
61
+ msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
62
+ msgstr "Backup vollständig, download <a href=\\\"%s\\\">hier</a>"
63
+
64
+ #: wp-db-backup.php:340
65
+ msgid "Creating backup file..."
66
+ msgstr "Erstelle Backup-Datei..."
67
+
68
+ #: wp-db-backup.php:343
69
+ #, php-format
70
+ msgid "Finished backing up table \\\"%s\\\"."
71
+ msgstr "Backup der Tabelle \\\"%s\\\" abgeschlossen."
72
+
73
+ #: wp-db-backup.php:345
74
+ #, php-format
75
+ msgid "Backing up table \\\"%s\\\"..."
76
+ msgstr "Erstelle Backup der Tabelle \\\"%s\\\"..."
77
+
78
+ #: wp-db-backup.php:352
79
+ #: wp-db-backup.php:835
80
+ msgid "Could not open the backup file for writing!"
81
+ msgstr "Konnte die Backup-Datei nicht zum Schreiben öffen!"
82
+
83
+ #: wp-db-backup.php:353
84
+ msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again."
85
+ msgstr "Das Backup konnte nicht gespeichert werden. Bitte prüfe die Zugriffsrechte auf das Backup-Verzeichnis und versuche es dann erneut."
86
+
87
+ #: wp-db-backup.php:358
88
+ #: wp-db-backup.php:844
89
+ msgid "WordPress MySQL database backup"
90
+ msgstr "Wordpress MySQL Datenbank Backup"
91
+
92
+ #: wp-db-backup.php:360
93
+ #: wp-db-backup.php:846
94
+ #, php-format
95
+ msgid "Generated: %s"
96
+ msgstr "Erstellt: %s"
97
+
98
+ #: wp-db-backup.php:361
99
+ #: wp-db-backup.php:847
100
+ #, php-format
101
+ msgid "Hostname: %s"
102
+ msgstr "Hostname: %s"
103
+
104
+ #: wp-db-backup.php:362
105
+ #: wp-db-backup.php:848
106
+ #, php-format
107
+ msgid "Database: %s"
108
+ msgstr "Datenbank: %s"
109
+
110
+ #: wp-db-backup.php:370
111
+ #: wp-db-backup.php:861
112
+ #, php-format
113
+ msgid "Table: %s"
114
+ msgstr "Tabelle: %s"
115
+
116
+ #: wp-db-backup.php:377
117
+ msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again."
118
+ msgstr "Das Backupverzeichnis kann nicht beschrieben werden! Bitte überprüfe die Zugriffsberechtigungen zum Verzeichnis und versuche es erneut."
119
+
120
+ #: wp-db-backup.php:434
121
+ msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
122
+ msgstr "Klicke und halte <code>[SHIFT]</code> gedrückt um mehrere Checkboxen auszuwählen."
123
+
124
+ #: wp-db-backup.php:474
125
+ msgid "Change"
126
+ msgstr "Ändern"
127
+
128
+ #: wp-db-backup.php:483
129
+ msgid "Save"
130
+ msgstr "Speichern"
131
+
132
+ #: wp-db-backup.php:566
133
+ #: wp-db-backup.php:571
134
+ #: wp-db-backup.php:1126
135
+ msgid "Backup"
136
+ msgstr "Backup"
137
+
138
+ #: wp-db-backup.php:646
139
+ #: wp-db-backup.php:649
140
+ msgid "There was an error writing a line to the backup script:"
141
+ msgstr "Beim Schreiben einer Zeile in das Backup Skript ist ein Fehler aufgetreten:"
142
+
143
+ #: wp-db-backup.php:681
144
+ msgid "Subsequent errors have been omitted from this log."
145
+ msgstr "Die Folgefehler wurden in diesem Log weggelassen."
146
+
147
+ #: wp-db-backup.php:715
148
+ msgid "Error getting table details"
149
+ msgstr "Fehler beim auslesen der Tabelleninformationen"
150
+
151
+ #: wp-db-backup.php:723
152
+ #, php-format
153
+ msgid "Delete any existing table %s"
154
+ msgstr "Lösche jegliche existierende Tabelle %s"
155
+
156
+ #: wp-db-backup.php:732
157
+ #, php-format
158
+ msgid "Table structure of table %s"
159
+ msgstr "Struktur der Tabelle %s"
160
+
161
+ #: wp-db-backup.php:738
162
+ #, php-format
163
+ msgid "Error with SHOW CREATE TABLE for %s."
164
+ msgstr "Fehler beim Ausführen von SHOW CREATE TABLE for %s."
165
+
166
+ #: wp-db-backup.php:745
167
+ #, php-format
168
+ msgid "Error getting table structure of %s"
169
+ msgstr "Fehler beim Auslesen der Tabellenstruktur der Tabelle %s"
170
+
171
+ #: wp-db-backup.php:753
172
+ #, php-format
173
+ msgid "Data contents of table %s"
174
+ msgstr "Inhalt der Tabelle %s"
175
+
176
+ #: wp-db-backup.php:823
177
+ #, php-format
178
+ msgid "End of data contents of table %s"
179
+ msgstr "Ende der Inhalte der Tabelle %s"
180
+
181
+ #: wp-db-backup.php:839
182
+ msgid "The backup directory is not writeable!"
183
+ msgstr "Das Backup-Verzeichnis ist nicht beschreibbar!"
184
+
185
+ #: wp-db-backup.php:974
186
+ #, php-format
187
+ msgid "File not found:%s"
188
+ msgstr "Datei %s konnte nicht gefunden werden."
189
+
190
+ #: wp-db-backup.php:974
191
+ msgid "Return to Backup"
192
+ msgstr "Zum Backup zurückkehren"
193
+
194
+ #: wp-db-backup.php:983
195
+ #, php-format
196
+ msgid "File %s does not exist!"
197
+ msgstr "Datei %s existiert nicht!"
198
+
199
+ #: wp-db-backup.php:990
200
+ #, php-format
201
+ msgid ""
202
+ "Attached to this email is\n"
203
+ " %1s\n"
204
+ " Size:%2s kilobytes\n"
205
+ msgstr ""
206
+ "An diese Datei angehängt:\n"
207
+ " %1s\n"
208
+ " Dateigröße:%2s Kilobyte\n"
209
+
210
+ #: wp-db-backup.php:991
211
+ msgid "Database Backup"
212
+ msgstr "Datenbankbackup"
213
+
214
+ #: wp-db-backup.php:994
215
+ #: wp-db-backup.php:1041
216
+ msgid "The following errors were reported:"
217
+ msgstr "Die folgenden Fehler wurden gemeldet:"
218
+
219
+ #: wp-db-backup.php:999
220
+ msgid "ERROR: The mail application has failed to deliver the backup."
221
+ msgstr "Fehler: Der Email-Service konnte das Backup nicht zustellen."
222
+
223
+ #: wp-db-backup.php:1016
224
+ msgid "Backup Successful"
225
+ msgstr "Backup erfolgreich"
226
+
227
+ #: wp-db-backup.php:1020
228
+ #, php-format
229
+ msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
230
+ msgstr "Dein Backup: <a href=\"%1s\">%2s</a>; Download sollte in Kürze beginnen."
231
+
232
+ #: wp-db-backup.php:1028
233
+ #, php-format
234
+ msgid "Your backup has been emailed to %s"
235
+ msgstr "Dein Backup wurde an %s gesendet."
236
+
237
+ #: wp-db-backup.php:1031
238
+ msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
239
+ msgstr "Dein Backup wurde auf dem Server gespeichert. Wenn du es nun herunterladen wollen, mach einen Rechtklicks auf den Link und wähle \"Speichern Unter\""
240
+
241
+ #: wp-db-backup.php:1032
242
+ #, php-format
243
+ msgid "%s bytes"
244
+ msgstr "%s Byte"
245
+
246
+ #: wp-db-backup.php:1068
247
+ msgid "Scheduled Backup Options Saved!"
248
+ msgstr "Optionen für geplantes Backup gespeichert!"
249
+
250
+ #: wp-db-backup.php:1095
251
+ msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
252
+ msgstr "Achtung: Das Backup-Verzeichnis existiert <strong>nicht</strong>, und wir können es nicht erstellen."
253
+
254
+ #: wp-db-backup.php:1096
255
+ #, php-format
256
+ msgid "Using your FTP client, try to create the backup directory yourself: %s"
257
+ msgstr "Benutz deinen FTP-Client, um das Backup Verzeichnis manuell zu erstellen: %s"
258
+
259
+ #: wp-db-backup.php:1100
260
+ #: wp-db-backup.php:1111
261
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
262
+ msgstr "Achtung: Dein Backup-Verzeichnis ist <strong>nicht</strong> beschreibbar! Wir können keine backups erstellen."
263
+
264
+ #: wp-db-backup.php:1101
265
+ #, php-format
266
+ msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
267
+ msgstr "Benutz deinen FTP-Clienten um die Zugriffsrechte auf das Backup-Verzeichnis auf %1$s oder %2$s zu setzen: %3$s"
268
+
269
+ #: wp-db-backup.php:1113
270
+ msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
271
+ msgstr "Das bestehende Problem scheint daran zu liegen, dass dein Sever im <code>safe_mode</code> läuft, und somit für Webanwendungen wie Wordpress einige Einschränkungen bezüglich der Rechte im Dateisystem gelten."
272
+
273
+ #: wp-db-backup.php:1115
274
+ #, php-format
275
+ msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
276
+ msgstr "Du Kannst aber versuchen dieses Problem zu beheben, indem du mit deinem FTP-Client das Backup-Verzeichnis löschst und neu erstellst: %s"
277
+
278
+ #: wp-db-backup.php:1129
279
+ msgid "Tables"
280
+ msgstr "Tabellen"
281
+
282
+ #: wp-db-backup.php:1131
283
+ msgid "These core WordPress tables will always be backed up:"
284
+ msgstr "Diese Standard Wordpress-Tabellen werden in immer gesichert:"
285
+
286
+ #: wp-db-backup.php:1136
287
+ msgid "Exclude spam comments"
288
+ msgstr "Spam-Kommentare ignorieren"
289
+
290
+ #: wp-db-backup.php:1139
291
+ msgid "Exclude post revisions"
292
+ msgstr "Beitragsänderungen nicht sichern"
293
+
294
+ #: wp-db-backup.php:1150
295
+ msgid "You may choose to include any of the following tables:"
296
+ msgstr "Zusätzlich kannst du noch folgende Tabellen sichern:"
297
+
298
+ #: wp-db-backup.php:1164
299
+ msgid "Backup Options"
300
+ msgstr "Backup Optionen"
301
+
302
+ #: wp-db-backup.php:1165
303
+ msgid "What to do with the backup file:"
304
+ msgstr "Was soll mit dem Backup geschehen?"
305
+
306
+ #: wp-db-backup.php:1169
307
+ msgid "Save to server"
308
+ msgstr "Auf dem Server speichern"
309
+
310
+ #: wp-db-backup.php:1174
311
+ msgid "Download to your computer"
312
+ msgstr "Auf deinen Computer herunterladen"
313
+
314
+ #: wp-db-backup.php:1178
315
+ #: wp-db-backup.php:1235
316
+ msgid "Email backup to:"
317
+ msgstr "Per Email verschicken an:"
318
+
319
+ #: wp-db-backup.php:1185
320
+ msgid "Backup now!"
321
+ msgstr "Jetzt sichern!"
322
+
323
+ #: wp-db-backup.php:1188
324
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
325
+ msgstr "Warnung: Ihre Backup-Verzeichnis ist <strong>nicht</strong> beschreibbar!"
326
+
327
+ #: wp-db-backup.php:1199
328
+ msgid "Scheduled Backup"
329
+ msgstr "Geplante Sicherung"
330
+
331
+ #: wp-db-backup.php:1206
332
+ #, php-format
333
+ msgid "Next Backup: %s"
334
+ msgstr "Nächste Sicherung: %s"
335
+
336
+ #: wp-db-backup.php:1211
337
+ #, php-format
338
+ msgid "Last WP-Cron Daily Execution: %s"
339
+ msgstr "Letzte tägliche Ausführung des WP-Crons: %s"
340
+
341
+ #: wp-db-backup.php:1212
342
+ #, php-format
343
+ msgid "Next WP-Cron Daily Execution: %s"
344
+ msgstr "Nächste tägliche Ausführung des WP-Crons: %s"
345
+
346
+ #: wp-db-backup.php:1217
347
+ msgid "Schedule: "
348
+ msgstr "Zeitplan:"
349
+
350
+ #: wp-db-backup.php:1220
351
+ msgid "None"
352
+ msgstr "Nicht"
353
+
354
+ #: wp-db-backup.php:1220
355
+ msgid "Daily"
356
+ msgstr "Täglich"
357
+
358
+ #: wp-db-backup.php:1243
359
+ msgid "Tables to include in the scheduled backup:"
360
+ msgstr "Zusätzliche Tabellen für das geplante Backup:"
361
+
362
+ #: wp-db-backup.php:1253
363
+ msgid "Schedule backup"
364
+ msgstr "Backup planen"
365
+
366
+ #: wp-db-backup.php:1278
367
+ msgid "Never"
368
+ msgstr "Nie"
369
+
370
+ #: wp-db-backup.php:1283
371
+ #, php-format
372
+ msgid "%s seconds"
373
+ msgstr "%s Sekunden"
374
+
375
+ #: wp-db-backup.php:1316
376
+ msgid "Once Weekly"
377
+ msgstr "Einmal wöchentlich"
378
+
379
+ #: wp-db-backup.php:1329
380
+ #, php-format
381
+ msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
382
+ msgstr "Deine Wordpress Version (%1s) fehlt es an einigen bedeutenden Sicherheitsfeatures, ohne die dieses Plugin unsicher ist. Zu deiner eigenen Sicherheit deaktiviert sich dieses Plugin deshalb automatisch. Bitte denk darüber nach Wordpress auf eine neuere Version zu <a href=\"%2s\">upgraden</a>"
383
+
384
+ #: wp-db-backup.php:1347
385
+ msgid "You are not allowed to perform backups."
386
+ msgstr "Du hast nicht die nötige Berechtigung, um Backups durchzuführen."
387
+
388
+ #: wp-db-backup.php:1362
389
+ #, php-format
390
+ msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted."
391
+ msgstr "Es scheint als versuche jemand sich von dieser Seite unberechtigt Zugriff auf Ihre Datenbank (%1s) zu verschaffen. Der Versuch wurde unterbunden."
392
+
393
+ #: wp-db-backup.php:1373
394
+ msgid "Cheatin' uh ?"
395
+ msgstr "Cheating? Tztz..."
396
+
wp-db-backup-it_IT.mo ADDED
Binary file
wp-db-backup-it_IT.po ADDED
@@ -0,0 +1,396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WP-DB-Backup
2
+ # Copyright (C) 2008 Austin Matzko
3
+ # This file is distributed under the GPL 2 license.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: wp-db-backup\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2008-08-15 11:00-0500\n"
10
+ "PO-Revision-Date: 2008-08-16 16:20+0100\n"
11
+ "Last-Translator: Michele Spagnuolo <mikispag@gmail.com>\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=utf-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language-Team: \n"
16
+
17
+ #: wp-db-backup.php:181
18
+ msgid "Backup Complete!"
19
+ msgstr "Backup Completato!"
20
+
21
+ #: wp-db-backup.php:211
22
+ msgid "Progress"
23
+ msgstr "Progresso"
24
+
25
+ #: wp-db-backup.php:213
26
+ msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
27
+ msgstr "NON FARE LE SEGUENTI COSE PER EVITARE CHE IL BACKUP FALLISCA:"
28
+
29
+ #: wp-db-backup.php:216
30
+ msgid "Close this browser"
31
+ msgstr "Chiudere il browser"
32
+
33
+ #: wp-db-backup.php:217
34
+ msgid "Reload this page"
35
+ msgstr "Aggiornare la pagina"
36
+
37
+ #: wp-db-backup.php:218
38
+ msgid "Click the Stop or Back buttons in your browser"
39
+ msgstr "Premere i pulsanti Termina o Indietro nel browser"
40
+
41
+ #: wp-db-backup.php:220
42
+ msgid "Progress:"
43
+ msgstr "Stato:"
44
+
45
+ #: wp-db-backup.php:229
46
+ msgid "Navigating away from this page will cause your backup to fail."
47
+ msgstr "Abbandonare questa pagina farà fallire la procedura di backup."
48
+
49
+ #: wp-db-backup.php:266
50
+ #, php-format
51
+ msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
52
+ msgstr "Backup completo, preparazione del <a href=\\\"%s\\\">backup</a> per il download..."
53
+
54
+ #: wp-db-backup.php:273
55
+ #, php-format
56
+ msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
57
+ msgstr "Backup completo, invio del <a href=\\\"%s\\\">backup</a> per email..."
58
+
59
+ #: wp-db-backup.php:280
60
+ #, php-format
61
+ msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
62
+ msgstr "Backup completo, scaricalo <a href=\\\"%s\\\">qui</a>."
63
+
64
+ #: wp-db-backup.php:340
65
+ msgid "Creating backup file..."
66
+ msgstr "Creazione del file di backup..."
67
+
68
+ #: wp-db-backup.php:343
69
+ #, php-format
70
+ msgid "Finished backing up table \\\"%s\\\"."
71
+ msgstr "Backup della tabella \\\"%s\\\" completato."
72
+
73
+ #: wp-db-backup.php:345
74
+ #, php-format
75
+ msgid "Backing up table \\\"%s\\\"..."
76
+ msgstr "Backup della tabella \\\"%s\\\"..."
77
+
78
+ #: wp-db-backup.php:352
79
+ #: wp-db-backup.php:835
80
+ msgid "Could not open the backup file for writing!"
81
+ msgstr "Impossibile aprire il file di backup in scrittura!"
82
+
83
+ #: wp-db-backup.php:353
84
+ msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again."
85
+ msgstr "Il file di backup non può essere salvato. Per favore controlla i permessi in scrittura nella cartella di backup e riprova."
86
+
87
+ #: wp-db-backup.php:358
88
+ #: wp-db-backup.php:844
89
+ msgid "WordPress MySQL database backup"
90
+ msgstr "WordPress MySQL database backup"
91
+
92
+ #: wp-db-backup.php:360
93
+ #: wp-db-backup.php:846
94
+ #, php-format
95
+ msgid "Generated: %s"
96
+ msgstr "Creato: %s"
97
+
98
+ #: wp-db-backup.php:361
99
+ #: wp-db-backup.php:847
100
+ #, php-format
101
+ msgid "Hostname: %s"
102
+ msgstr "Hostname: %s"
103
+
104
+ #: wp-db-backup.php:362
105
+ #: wp-db-backup.php:848
106
+ #, php-format
107
+ msgid "Database: %s"
108
+ msgstr "Database: %s"
109
+
110
+ #: wp-db-backup.php:370
111
+ #: wp-db-backup.php:861
112
+ #, php-format
113
+ msgid "Table: %s"
114
+ msgstr "Tabella: %s"
115
+
116
+ #: wp-db-backup.php:377
117
+ msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again."
118
+ msgstr "La cartella di backup non è scrivibile! Per favore controlla i permessi in scrittura nella cartella di backup e riprova."
119
+
120
+ #: wp-db-backup.php:434
121
+ msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
122
+ msgstr "Premi e tieni premuto <code>[MAIUSC]</code> per selezionare caselle multiple"
123
+
124
+ #: wp-db-backup.php:474
125
+ msgid "Change"
126
+ msgstr "Modifica"
127
+
128
+ #: wp-db-backup.php:483
129
+ msgid "Save"
130
+ msgstr "Salva"
131
+
132
+ #: wp-db-backup.php:566
133
+ #: wp-db-backup.php:571
134
+ #: wp-db-backup.php:1126
135
+ msgid "Backup"
136
+ msgstr "Backup"
137
+
138
+ #: wp-db-backup.php:646
139
+ #: wp-db-backup.php:649
140
+ msgid "There was an error writing a line to the backup script:"
141
+ msgstr "Errore durante la scrittura dello script di backup:"
142
+
143
+ #: wp-db-backup.php:681
144
+ msgid "Subsequent errors have been omitted from this log."
145
+ msgstr "Errori successivi sono stati omessi da questo rapporto."
146
+
147
+ #: wp-db-backup.php:715
148
+ msgid "Error getting table details"
149
+ msgstr "Errore nell'ottenere i dettagli della tabella"
150
+
151
+ #: wp-db-backup.php:723
152
+ #, php-format
153
+ msgid "Delete any existing table %s"
154
+ msgstr "Cancella tutto tabella %s"
155
+
156
+ #: wp-db-backup.php:732
157
+ #, php-format
158
+ msgid "Table structure of table %s"
159
+ msgstr "Struttura della tabella %s"
160
+
161
+ #: wp-db-backup.php:738
162
+ #, php-format
163
+ msgid "Error with SHOW CREATE TABLE for %s."
164
+ msgstr "Errore con SHOW CREATE TABLE per %s."
165
+
166
+ #: wp-db-backup.php:745
167
+ #, php-format
168
+ msgid "Error getting table structure of %s"
169
+ msgstr "Errore nell'ottenere la struttura della tabella %s"
170
+
171
+ #: wp-db-backup.php:753
172
+ #, php-format
173
+ msgid "Data contents of table %s"
174
+ msgstr "Contenuto della tabella %s"
175
+
176
+ #: wp-db-backup.php:823
177
+ #, php-format
178
+ msgid "End of data contents of table %s"
179
+ msgstr "Fine dei dati contenuti nella tabella %s"
180
+
181
+ #: wp-db-backup.php:839
182
+ msgid "The backup directory is not writeable!"
183
+ msgstr "La cartella di backup non è scrivibile!"
184
+
185
+ #: wp-db-backup.php:974
186
+ #, php-format
187
+ msgid "File not found:%s"
188
+ msgstr "File non trovato: %s"
189
+
190
+ #: wp-db-backup.php:974
191
+ msgid "Return to Backup"
192
+ msgstr "Ritorna a Backup"
193
+
194
+ #: wp-db-backup.php:983
195
+ #, php-format
196
+ msgid "File %s does not exist!"
197
+ msgstr "Il file %s non esiste!"
198
+
199
+ #: wp-db-backup.php:990
200
+ #, php-format
201
+ msgid ""
202
+ "Attached to this email is\n"
203
+ " %1s\n"
204
+ " Size:%2s kilobytes\n"
205
+ msgstr ""
206
+ "Allegati a questa email:\n"
207
+ " %1s\n"
208
+ " Dimensione:%2s KB\n"
209
+
210
+ #: wp-db-backup.php:991
211
+ msgid "Database Backup"
212
+ msgstr "Backup del Database"
213
+
214
+ #: wp-db-backup.php:994
215
+ #: wp-db-backup.php:1041
216
+ msgid "The following errors were reported:"
217
+ msgstr "Sono stati riscontrati i seguenti errori:"
218
+
219
+ #: wp-db-backup.php:999
220
+ msgid "ERROR: The mail application has failed to deliver the backup."
221
+ msgstr "ERRORE: L'invio del backup per email è fallito."
222
+
223
+ #: wp-db-backup.php:1016
224
+ msgid "Backup Successful"
225
+ msgstr "Backup completato con successo"
226
+
227
+ #: wp-db-backup.php:1020
228
+ #, php-format
229
+ msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
230
+ msgstr "Il download del file di backup <a href=\"%1s\">%2s</a> inizierà a breve."
231
+
232
+ #: wp-db-backup.php:1028
233
+ #, php-format
234
+ msgid "Your backup has been emailed to %s"
235
+ msgstr "Il backup è stato inviato per email a %s"
236
+
237
+ #: wp-db-backup.php:1031
238
+ msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
239
+ msgstr "Il file di backup è stato salvato sul server. Se vuoi scaricarlo, clicca col pulsante destro e seleziona \"Salva con nome\""
240
+
241
+ #: wp-db-backup.php:1032
242
+ #, php-format
243
+ msgid "%s bytes"
244
+ msgstr "%s bytes"
245
+
246
+ #: wp-db-backup.php:1068
247
+ msgid "Scheduled Backup Options Saved!"
248
+ msgstr "Le impostazioni del Backup programmato sono state salvate!"
249
+
250
+ #: wp-db-backup.php:1095
251
+ msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
252
+ msgstr "ATTENZIONE: La cartella di backup <strong>NON</strong> esiste e non può essere creata."
253
+
254
+ #: wp-db-backup.php:1096
255
+ #, php-format
256
+ msgid "Using your FTP client, try to create the backup directory yourself: %s"
257
+ msgstr "Utilizzando un client FTP, prova a creare manualmente la cartella: %s"
258
+
259
+ #: wp-db-backup.php:1100
260
+ #: wp-db-backup.php:1111
261
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
262
+ msgstr "ATTENZIONE: La cartella di backup <strong>NON</strong> è scrivibile! Impossibile creare i file di backup."
263
+
264
+ #: wp-db-backup.php:1101
265
+ #, php-format
266
+ msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
267
+ msgstr "Utilizzando un client FTP, imposta i permessi della cartella di backup a %1$s o %2$s: %3$s"
268
+
269
+ #: wp-db-backup.php:1113
270
+ msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
271
+ msgstr "Il problema sembra essere dovuto alle restrizioni dello <code>safe_mode</code> impostato sul server, che limita la creazione di file da parte di applicazioni come WordPress."
272
+
273
+ #: wp-db-backup.php:1115
274
+ #, php-format
275
+ msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
276
+ msgstr "Puoi provare a correggere il problema utilizzando un client FTP per cancellare e ricreare la cartella di backup: %s"
277
+
278
+ #: wp-db-backup.php:1129
279
+ msgid "Tables"
280
+ msgstr "Tabelle"
281
+
282
+ #: wp-db-backup.php:1131
283
+ msgid "These core WordPress tables will always be backed up:"
284
+ msgstr "Queste tabelle base di WordPress saranno sempre copiate:"
285
+
286
+ #: wp-db-backup.php:1136
287
+ msgid "Exclude spam comments"
288
+ msgstr "Escludi i commenti di spam"
289
+
290
+ #: wp-db-backup.php:1139
291
+ msgid "Exclude post revisions"
292
+ msgstr "Escludi revisioni"
293
+
294
+ #: wp-db-backup.php:1150
295
+ msgid "You may choose to include any of the following tables:"
296
+ msgstr "Le seguenti tabelle possono essere selezionate:"
297
+
298
+ #: wp-db-backup.php:1164
299
+ msgid "Backup Options"
300
+ msgstr "Opzioni di backup"
301
+
302
+ #: wp-db-backup.php:1165
303
+ msgid "What to do with the backup file:"
304
+ msgstr "Che cosa fare con il file di backup:"
305
+
306
+ #: wp-db-backup.php:1169
307
+ msgid "Save to server"
308
+ msgstr "Salvalo sul server"
309
+
310
+ #: wp-db-backup.php:1174
311
+ msgid "Download to your computer"
312
+ msgstr "Scaricalo sul computer"
313
+
314
+ #: wp-db-backup.php:1178
315
+ #: wp-db-backup.php:1235
316
+ msgid "Email backup to:"
317
+ msgstr "Invialo per email a:"
318
+
319
+ #: wp-db-backup.php:1185
320
+ msgid "Backup now!"
321
+ msgstr "Inizia il Backup!"
322
+
323
+ #: wp-db-backup.php:1188
324
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
325
+ msgstr "ATTENZIONE: La cartella di backup <strong>NON</strong> è scrivibile!"
326
+
327
+ #: wp-db-backup.php:1199
328
+ msgid "Scheduled Backup"
329
+ msgstr "Backup programmato"
330
+
331
+ #: wp-db-backup.php:1206
332
+ #, php-format
333
+ msgid "Next Backup: %s"
334
+ msgstr "Prossimo Backup: %s"
335
+
336
+ #: wp-db-backup.php:1211
337
+ #, php-format
338
+ msgid "Last WP-Cron Daily Execution: %s"
339
+ msgstr "Ultima esecuzione giornaliera di WP-Cron: %s"
340
+
341
+ #: wp-db-backup.php:1212
342
+ #, php-format
343
+ msgid "Next WP-Cron Daily Execution: %s"
344
+ msgstr "Prossima esecuzione giornaliera di WP-Cron: %s"
345
+
346
+ #: wp-db-backup.php:1217
347
+ msgid "Schedule: "
348
+ msgstr "Programmazione:"
349
+
350
+ #: wp-db-backup.php:1220
351
+ msgid "None"
352
+ msgstr "Nessuna"
353
+
354
+ #: wp-db-backup.php:1220
355
+ msgid "Daily"
356
+ msgstr "Giornaliera"
357
+
358
+ #: wp-db-backup.php:1243
359
+ msgid "Tables to include in the scheduled backup:"
360
+ msgstr "Tabelle da includere nel backup programmato:"
361
+
362
+ #: wp-db-backup.php:1253
363
+ msgid "Schedule backup"
364
+ msgstr "Programma il backup"
365
+
366
+ #: wp-db-backup.php:1278
367
+ msgid "Never"
368
+ msgstr "Mai"
369
+
370
+ #: wp-db-backup.php:1283
371
+ #, php-format
372
+ msgid "%s seconds"
373
+ msgstr "%s secondi"
374
+
375
+ #: wp-db-backup.php:1316
376
+ msgid "Once Weekly"
377
+ msgstr "Settimanale"
378
+
379
+ #: wp-db-backup.php:1329
380
+ #, php-format
381
+ msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
382
+ msgstr "La versione corrente di WordPress, %1s, non è provvista di importanti funzioni di sicurezza senza le quali non è sicuro eseguire il plugin WP-DB-Backup. Il plugin è stato dunque disabilitato automaticamente. Considera di <a href=\"%2s\">aggiornare WordPress</a> ad una versione più recente."
383
+
384
+ #: wp-db-backup.php:1347
385
+ msgid "You are not allowed to perform backups."
386
+ msgstr "Non ti è consentito eseguire backup."
387
+
388
+ #: wp-db-backup.php:1362
389
+ #, php-format
390
+ msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted."
391
+ msgstr "Sembra che ci sia stato un tentativo non autorizzato da parte di questo sito di accedere al tuo database a %1s. Il tentativo è stato bloccato."
392
+
393
+ #: wp-db-backup.php:1373
394
+ msgid "Cheatin' uh ?"
395
+ msgstr "Stai barando, eh?"
396
+
wp-db-backup-ja.mo ADDED
Binary file
wp-db-backup-ja.po ADDED
@@ -0,0 +1,408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpdbbp-2.1.7-ja\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-08-15 11:00-0500\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: tai <tekapo@gmail.com>\n"
8
+ "Language-Team: ja <tekapo@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Japanese\n"
13
+ "X-Poedit-Country: JAPAN\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+
16
+ #: wp-db-backup.php:181
17
+ msgid "Backup Complete!"
18
+ msgstr "バックアップ完了 !"
19
+
20
+ #: wp-db-backup.php:211
21
+ msgid "Progress"
22
+ msgstr "進行"
23
+
24
+ #: wp-db-backup.php:213
25
+ msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
26
+ msgstr "バックアップに失敗するので、次の事はしないでください:"
27
+
28
+ #: wp-db-backup.php:216
29
+ msgid "Close this browser"
30
+ msgstr "このブラウザを閉じる"
31
+
32
+ #: wp-db-backup.php:217
33
+ msgid "Reload this page"
34
+ msgstr "このページを再読み込みする"
35
+
36
+ #: wp-db-backup.php:218
37
+ msgid "Click the Stop or Back buttons in your browser"
38
+ msgstr "ブラウザの停止もしくは戻るボタンのクリック"
39
+
40
+ #: wp-db-backup.php:220
41
+ msgid "Progress:"
42
+ msgstr "進行状況:"
43
+
44
+ #: wp-db-backup.php:229
45
+ msgid "Navigating away from this page will cause your backup to fail."
46
+ msgstr "このページを閉じるとバックアップに失敗します。"
47
+
48
+ #: wp-db-backup.php:266
49
+ #, php-format
50
+ msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
51
+ msgstr "バックアップを完了しました。ダウンロードのために<a href=\\\"%s\\\">バックアップ</a>を準備中..."
52
+
53
+ #: wp-db-backup.php:273
54
+ #, php-format
55
+ msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
56
+ msgstr "バックアップを完了しました。メールで<a href=\\\"%s\\\">バックアップ</a>を送信中..."
57
+
58
+ #: wp-db-backup.php:280
59
+ #, php-format
60
+ msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
61
+ msgstr "バックアップを完了しました。<a href=\\\"%s\\\">こちらから</a>ダウンロードしてください。"
62
+
63
+ #: wp-db-backup.php:340
64
+ msgid "Creating backup file..."
65
+ msgstr "バックアップファイルを作成中..."
66
+
67
+ #: wp-db-backup.php:343
68
+ #, php-format
69
+ msgid "Finished backing up table \\\"%s\\\"."
70
+ msgstr "テーブル \\\"%s\\\" のバックアップを完了。"
71
+
72
+ #: wp-db-backup.php:345
73
+ #, php-format
74
+ msgid "Backing up table \\\"%s\\\"..."
75
+ msgstr "テーブル \\\"%s\\\" をバックアップ中..."
76
+
77
+ #: wp-db-backup.php:352
78
+ #: wp-db-backup.php:835
79
+ msgid "Could not open the backup file for writing!"
80
+ msgstr "書き込み用のバックアップファイルを開けませんでした。"
81
+
82
+ #: wp-db-backup.php:353
83
+ msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again."
84
+ msgstr "バックアップファイルを保存できませんでした。バックアップ用ディレクトリのアクセス権が書き込み可能になっているか確認してもう一度試してください。"
85
+
86
+ #: wp-db-backup.php:358
87
+ #: wp-db-backup.php:844
88
+ msgid "WordPress MySQL database backup"
89
+ msgstr "WordPress MySQL データベースバックアップ"
90
+
91
+ #: wp-db-backup.php:360
92
+ #: wp-db-backup.php:846
93
+ #, php-format
94
+ msgid "Generated: %s"
95
+ msgstr "生成日時: %s"
96
+
97
+ #: wp-db-backup.php:361
98
+ #: wp-db-backup.php:847
99
+ #, php-format
100
+ msgid "Hostname: %s"
101
+ msgstr "ホスト名: %s"
102
+
103
+ #: wp-db-backup.php:362
104
+ #: wp-db-backup.php:848
105
+ #, php-format
106
+ msgid "Database: %s"
107
+ msgstr "データベース: %s"
108
+
109
+ #: wp-db-backup.php:370
110
+ #: wp-db-backup.php:861
111
+ #, php-format
112
+ msgid "Table: %s"
113
+ msgstr "テーブル: %s"
114
+
115
+ #: wp-db-backup.php:377
116
+ msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again."
117
+ msgstr "バックアップ用ディレクトリが書き込み可能になっていません ! バックアップ用ディレクトリのアクセス権が書き込み可能になっているか確認してもう一度試してください。"
118
+
119
+ #: wp-db-backup.php:434
120
+ msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
121
+ msgstr "複数のチェックボックスの選択状態を切り替えるには <code>[SHIFT]</code> を押しながらクリックしてください"
122
+
123
+ #: wp-db-backup.php:474
124
+ msgid "Change"
125
+ msgstr "変更"
126
+
127
+ #: wp-db-backup.php:483
128
+ msgid "Save"
129
+ msgstr "保存"
130
+
131
+ #: wp-db-backup.php:566
132
+ #: wp-db-backup.php:571
133
+ #: wp-db-backup.php:1126
134
+ msgid "Backup"
135
+ msgstr "バックアップ"
136
+
137
+ #: wp-db-backup.php:646
138
+ #: wp-db-backup.php:649
139
+ msgid "There was an error writing a line to the backup script:"
140
+ msgstr "バックアップスクリプトへの書き込みエラーがありました:"
141
+
142
+ #: wp-db-backup.php:681
143
+ msgid "Subsequent errors have been omitted from this log."
144
+ msgstr "このログから後続のエラーが削除されました。"
145
+
146
+ #: wp-db-backup.php:715
147
+ msgid "Error getting table details"
148
+ msgstr "テーブル詳細の取得エラー"
149
+
150
+ #: wp-db-backup.php:723
151
+ #, php-format
152
+ msgid "Delete any existing table %s"
153
+ msgstr "既存テーブル %s の削除"
154
+
155
+ #: wp-db-backup.php:732
156
+ #, php-format
157
+ msgid "Table structure of table %s"
158
+ msgstr "テーブル %s のテーブル構造"
159
+
160
+ #: wp-db-backup.php:738
161
+ #, php-format
162
+ msgid "Error with SHOW CREATE TABLE for %s."
163
+ msgstr "%s のための SHOW CREATE TABLE に関するエラー。"
164
+
165
+ #: wp-db-backup.php:745
166
+ #, php-format
167
+ msgid "Error getting table structure of %s"
168
+ msgstr "%s のテーブル構造取得エラー"
169
+
170
+ #: wp-db-backup.php:753
171
+ #, php-format
172
+ msgid "Data contents of table %s"
173
+ msgstr "テーブル %s のデータコンテンツ"
174
+
175
+ #: wp-db-backup.php:823
176
+ #, php-format
177
+ msgid "End of data contents of table %s"
178
+ msgstr "テーブル %s のデータコンテンツの終わり"
179
+
180
+ #: wp-db-backup.php:839
181
+ msgid "The backup directory is not writeable!"
182
+ msgstr "バックアップ用ディレクトリが書き込み可能になっていません !"
183
+
184
+ #: wp-db-backup.php:974
185
+ #, php-format
186
+ msgid "File not found:%s"
187
+ msgstr "ファイルが見つかりませんでした: %s"
188
+
189
+ #: wp-db-backup.php:974
190
+ msgid "Return to Backup"
191
+ msgstr "バックアップに戻る"
192
+
193
+ #: wp-db-backup.php:983
194
+ #, php-format
195
+ msgid "File %s does not exist!"
196
+ msgstr "ファイル %s はありません !"
197
+
198
+ #: wp-db-backup.php:990
199
+ #, php-format
200
+ msgid ""
201
+ "Attached to this email is\n"
202
+ " %1s\n"
203
+ " Size:%2s kilobytes\n"
204
+ msgstr ""
205
+ "このメールに添付されたのは\n"
206
+ " %1s\n"
207
+ " サイズ: %2s キロバイト\n"
208
+
209
+ #: wp-db-backup.php:991
210
+ msgid "Database Backup"
211
+ msgstr "データベースのバックアップ"
212
+
213
+ #: wp-db-backup.php:994
214
+ #: wp-db-backup.php:1041
215
+ msgid "The following errors were reported:"
216
+ msgstr "次のエラーが報告されました:"
217
+
218
+ #: wp-db-backup.php:999
219
+ msgid "ERROR: The mail application has failed to deliver the backup."
220
+ msgstr "エラー: メールアプリケーションがバックアップファイルの送信に失敗しました。"
221
+
222
+ #: wp-db-backup.php:1016
223
+ msgid "Backup Successful"
224
+ msgstr "バックアップ成功"
225
+
226
+ #: wp-db-backup.php:1020
227
+ #, php-format
228
+ msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
229
+ msgstr "バックアップファイル: <a href=\"%1s\">%2s</a>のダウンロードはまもなく開始されます。"
230
+
231
+ #: wp-db-backup.php:1028
232
+ #, php-format
233
+ msgid "Your backup has been emailed to %s"
234
+ msgstr "バックアップは %s にメールで送信されました"
235
+
236
+ #: wp-db-backup.php:1031
237
+ msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
238
+ msgstr "バックアップファイルがサーバーに保存されました。ダウンロードするには右クリックして「リンク先を名前をつけて保存」を選択してください"
239
+
240
+ #: wp-db-backup.php:1032
241
+ #, php-format
242
+ msgid "%s bytes"
243
+ msgstr "%s バイト"
244
+
245
+ #: wp-db-backup.php:1068
246
+ msgid "Scheduled Backup Options Saved!"
247
+ msgstr "定期バックアップ設定が保存されました !"
248
+
249
+ #: wp-db-backup.php:1095
250
+ msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
251
+ msgstr "注意: バックアップディレクトリが<strong>見つからず</strong>、作成もできませんでした。"
252
+
253
+ #: wp-db-backup.php:1096
254
+ #, php-format
255
+ msgid "Using your FTP client, try to create the backup directory yourself: %s"
256
+ msgstr "FTP クライアントを使用し、バックアップディレクトリ: %s を作成してみてください。"
257
+
258
+ #: wp-db-backup.php:1100
259
+ #: wp-db-backup.php:1111
260
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
261
+ msgstr "注意: バックアップディレクトリが<strong>書き込み不可</strong>になっています ! バックアップファイルを作成できませんでした。"
262
+
263
+ #: wp-db-backup.php:1101
264
+ #, php-format
265
+ msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
266
+ msgstr "FTP クライアントを使用し、バックアップディレクトリの書込みパーミッションを %1$s または %2$s: %3$s にセットしてみてください。"
267
+
268
+ #: wp-db-backup.php:1113
269
+ msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
270
+ msgstr "この問題は使用しているサーバーの <code>safe_mode</code> ファイルオーナー制限によって引き起こされているのかもしれません。これは WordPress のようなウェブアプリケーションが作成できるファイルを制限しています。"
271
+
272
+ #: wp-db-backup.php:1115
273
+ #, php-format
274
+ msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
275
+ msgstr "FTP クライアントを使用してバックアップディレクトリの %s を削除して作り直せば、この問題を解決できるかもしれません。"
276
+
277
+ #: wp-db-backup.php:1129
278
+ msgid "Tables"
279
+ msgstr "テーブル"
280
+
281
+ #: wp-db-backup.php:1131
282
+ msgid "These core WordPress tables will always be backed up:"
283
+ msgstr "次の主要な WordPress テーブルは常にバックアップされます:"
284
+
285
+ #: wp-db-backup.php:1136
286
+ msgid "Exclude spam comments"
287
+ msgstr "スパムコメントを除外"
288
+
289
+ #: wp-db-backup.php:1139
290
+ msgid "Exclude post revisions"
291
+ msgstr "投稿リビジョンを除外"
292
+
293
+ #: wp-db-backup.php:1150
294
+ msgid "You may choose to include any of the following tables:"
295
+ msgstr "次のテーブルも選択して保存することができます:"
296
+
297
+ #: wp-db-backup.php:1164
298
+ msgid "Backup Options"
299
+ msgstr "バックアップ設定"
300
+
301
+ #: wp-db-backup.php:1165
302
+ msgid "What to do with the backup file:"
303
+ msgstr "バックアップファイルの扱い:"
304
+
305
+ #: wp-db-backup.php:1169
306
+ msgid "Save to server"
307
+ msgstr "サーバーに保存"
308
+
309
+ #: wp-db-backup.php:1174
310
+ msgid "Download to your computer"
311
+ msgstr "あなたのコンピュータにダウンロード"
312
+
313
+ #: wp-db-backup.php:1178
314
+ #: wp-db-backup.php:1235
315
+ msgid "Email backup to:"
316
+ msgstr "バックアップをメールで送信:"
317
+
318
+ #: wp-db-backup.php:1185
319
+ msgid "Backup now!"
320
+ msgstr "バックアップ !"
321
+
322
+ #: wp-db-backup.php:1188
323
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
324
+ msgstr "注意: バックアップディレクトリが<strong>書き込み不可</strong>になっています。"
325
+
326
+ #: wp-db-backup.php:1199
327
+ msgid "Scheduled Backup"
328
+ msgstr "定期バックアップ"
329
+
330
+ #: wp-db-backup.php:1206
331
+ #, php-format
332
+ msgid "Next Backup: %s"
333
+ msgstr "次回のバックアップ: %s"
334
+
335
+ #: wp-db-backup.php:1211
336
+ #, php-format
337
+ msgid "Last WP-Cron Daily Execution: %s"
338
+ msgstr "最後に WP-Cron を実行した日時: %s"
339
+
340
+ #: wp-db-backup.php:1212
341
+ #, php-format
342
+ msgid "Next WP-Cron Daily Execution: %s"
343
+ msgstr "次に WP-Cron を実行する日時: %s"
344
+
345
+ #: wp-db-backup.php:1217
346
+ msgid "Schedule: "
347
+ msgstr "スケジュール:"
348
+
349
+ #: wp-db-backup.php:1220
350
+ msgid "None"
351
+ msgstr "なし"
352
+
353
+ #: wp-db-backup.php:1220
354
+ msgid "Daily"
355
+ msgstr "毎日"
356
+
357
+ #: wp-db-backup.php:1243
358
+ msgid "Tables to include in the scheduled backup:"
359
+ msgstr "定期バックアップに含めるテーブル:"
360
+
361
+ #: wp-db-backup.php:1253
362
+ msgid "Schedule backup"
363
+ msgstr "定期バックアップ"
364
+
365
+ #: wp-db-backup.php:1278
366
+ msgid "Never"
367
+ msgstr "なし"
368
+
369
+ #: wp-db-backup.php:1283
370
+ #, php-format
371
+ msgid "%s seconds"
372
+ msgstr "%s 秒"
373
+
374
+ #: wp-db-backup.php:1316
375
+ msgid "Once Weekly"
376
+ msgstr "週 1 回"
377
+
378
+ #: wp-db-backup.php:1329
379
+ #, php-format
380
+ msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
381
+ msgstr "お使いになっている WordPress のバージョンは %1s です。このバージョンには WP-DB-Backup プラグインを安全に使用できる重要なセキュリティ機能が備わっていません。そのためこのプラグインは自動的に機能を停止しました。より最新の <a href=\"%2s\">WordPress へのアップグレード</a>をご検討ください。"
382
+
383
+ #: wp-db-backup.php:1347
384
+ msgid "You are not allowed to perform backups."
385
+ msgstr "バックアップを行う権限がありません。"
386
+
387
+ #: wp-db-backup.php:1362
388
+ #, php-format
389
+ msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted."
390
+ msgstr "このサイトから %1s にあるデータベースへの未承認のアクセスがあったようです。この試みは阻止されました。"
391
+
392
+ #: wp-db-backup.php:1373
393
+ msgid "Cheatin' uh ?"
394
+ msgstr "間違えましたか ?"
395
+
396
+ #~ msgid ""
397
+ #~ "WARNING: Your wp-content directory is <strong>NOT</strong> writable! We "
398
+ #~ "can not create the backup directory."
399
+ #~ msgstr ""
400
+ #~ "注意: wp-content ディレクトリが<strong>書き込み不可</strong>になっていま"
401
+ #~ "す ! バックアップディレクトリを作成できませんでした。"
402
+ #~ msgid "Select all"
403
+ #~ msgstr "すべて選択"
404
+ #~ msgid "Select none"
405
+ #~ msgstr "何も選択しない"
406
+ #~ msgid "Submit"
407
+ #~ msgstr "保存する"
408
+
wp-db-backup-nb_NO.mo ADDED
Binary file
wp-db-backup-nb_NO.po ADDED
@@ -0,0 +1,396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WP-DB-Backup
2
+ # Copyright (C) 2008 Austin Matzko
3
+ # This file is distributed under the GPL 2 license.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: PACKAGE VERSION\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2008-08-15 11:00-0500\n"
10
+ "PO-Revision-Date: 2008-08-30 12:02+0100\n"
11
+ "Last-Translator: RuneG <dev@bloggs.be>\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=utf-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language-Team: \n"
16
+
17
+ #: wp-db-backup.php:181
18
+ msgid "Backup Complete!"
19
+ msgstr "Sikkerhetskopi ferdig!"
20
+
21
+ #: wp-db-backup.php:211
22
+ msgid "Progress"
23
+ msgstr "Framdrift"
24
+
25
+ #: wp-db-backup.php:213
26
+ msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
27
+ msgstr "IKKE GJØR FØLGENDE DA DET VIL FØRE TIL AT SIKKERHETSKOPIEN DIN FEILER:"
28
+
29
+ #: wp-db-backup.php:216
30
+ msgid "Close this browser"
31
+ msgstr "Lukke nettleseren"
32
+
33
+ #: wp-db-backup.php:217
34
+ msgid "Reload this page"
35
+ msgstr "Laste siden på nytt"
36
+
37
+ #: wp-db-backup.php:218
38
+ msgid "Click the Stop or Back buttons in your browser"
39
+ msgstr "Klikke på stopp eller tilbake knappen i nettleseren"
40
+
41
+ #: wp-db-backup.php:220
42
+ msgid "Progress:"
43
+ msgstr "Framdrift:"
44
+
45
+ #: wp-db-backup.php:229
46
+ msgid "Navigating away from this page will cause your backup to fail."
47
+ msgstr "Hvis du går vekk fra denne siden feiler sikkerhetskopien."
48
+
49
+ #: wp-db-backup.php:266
50
+ #, php-format
51
+ msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
52
+ msgstr "Sikkerhetskopi ferdig, forbereder <a href=\\\"%s\\\">sikkerhetskopi</a> for nedlasting..."
53
+
54
+ #: wp-db-backup.php:273
55
+ #, php-format
56
+ msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
57
+ msgstr "Sikkerhetskopi ferdig, sender <a href=\\\"%s\\\">backup</a> via epost..."
58
+
59
+ #: wp-db-backup.php:280
60
+ #, php-format
61
+ msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
62
+ msgstr "Sikkerhetskopi ferdig, last den ned <a href=\\\"%s\\\">her</a>."
63
+
64
+ #: wp-db-backup.php:340
65
+ msgid "Creating backup file..."
66
+ msgstr "Lager sikkerhetskopi..."
67
+
68
+ #: wp-db-backup.php:343
69
+ #, php-format
70
+ msgid "Finished backing up table \\\"%s\\\"."
71
+ msgstr "Ferdig med sikkerhetskopi av tabellen \\\"%s\\\"."
72
+
73
+ #: wp-db-backup.php:345
74
+ #, php-format
75
+ msgid "Backing up table \\\"%s\\\"..."
76
+ msgstr "Tar sikkerhetskopi av tabellen \\\"%s\\\"..."
77
+
78
+ #: wp-db-backup.php:352
79
+ #: wp-db-backup.php:835
80
+ msgid "Could not open the backup file for writing!"
81
+ msgstr "Kunne ikke åpne filen for sikkerhetskopi i skrivemodus!"
82
+
83
+ #: wp-db-backup.php:353
84
+ msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again."
85
+ msgstr "Sikkerhetskopifilen kunne ikke lagres. Sjekk skrive rettigheter på sikkerhetskopi mappen, og prøv igjen."
86
+
87
+ #: wp-db-backup.php:358
88
+ #: wp-db-backup.php:844
89
+ msgid "WordPress MySQL database backup"
90
+ msgstr "WordPress MySQL database sikkerhetskopi"
91
+
92
+ #: wp-db-backup.php:360
93
+ #: wp-db-backup.php:846
94
+ #, php-format
95
+ msgid "Generated: %s"
96
+ msgstr "Laget: %s"
97
+
98
+ #: wp-db-backup.php:361
99
+ #: wp-db-backup.php:847
100
+ #, php-format
101
+ msgid "Hostname: %s"
102
+ msgstr "Vertsnavn: %s"
103
+
104
+ #: wp-db-backup.php:362
105
+ #: wp-db-backup.php:848
106
+ #, php-format
107
+ msgid "Database: %s"
108
+ msgstr "Database: %s"
109
+
110
+ #: wp-db-backup.php:370
111
+ #: wp-db-backup.php:861
112
+ #, php-format
113
+ msgid "Table: %s"
114
+ msgstr "Tabell: %s"
115
+
116
+ #: wp-db-backup.php:377
117
+ msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again."
118
+ msgstr "Mappen for sikkerhetskopi er ikke skrivbar! Sjekk skriverettighetene på mappen og prøv igjen."
119
+
120
+ #: wp-db-backup.php:434
121
+ msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
122
+ msgstr "Klikk og hold nede <code>[SHIFT]</code> for å velge flere sjekkbokser"
123
+
124
+ #: wp-db-backup.php:474
125
+ msgid "Change"
126
+ msgstr "Endre"
127
+
128
+ #: wp-db-backup.php:483
129
+ msgid "Save"
130
+ msgstr "Lagre"
131
+
132
+ #: wp-db-backup.php:566
133
+ #: wp-db-backup.php:571
134
+ #: wp-db-backup.php:1126
135
+ msgid "Backup"
136
+ msgstr "Ta sikkerhetskopi"
137
+
138
+ #: wp-db-backup.php:646
139
+ #: wp-db-backup.php:649
140
+ msgid "There was an error writing a line to the backup script:"
141
+ msgstr "Det var en feil ved skriven av en linje til skriptet for sikkerhetskopiering:"
142
+
143
+ #: wp-db-backup.php:681
144
+ msgid "Subsequent errors have been omitted from this log."
145
+ msgstr "Følgende feilmeldinger er utelatt fra loggen."
146
+
147
+ #: wp-db-backup.php:715
148
+ msgid "Error getting table details"
149
+ msgstr "Klarte ikke å få tabell detaljer"
150
+
151
+ #: wp-db-backup.php:723
152
+ #, php-format
153
+ msgid "Delete any existing table %s"
154
+ msgstr "Slett eksisternede tabell %s"
155
+
156
+ #: wp-db-backup.php:732
157
+ #, php-format
158
+ msgid "Table structure of table %s"
159
+ msgstr "Tabell strukturen til tabell %s"
160
+
161
+ #: wp-db-backup.php:738
162
+ #, php-format
163
+ msgid "Error with SHOW CREATE TABLE for %s."
164
+ msgstr "Feil med SHOW CREATE TABLE for %s"
165
+
166
+ #: wp-db-backup.php:745
167
+ #, php-format
168
+ msgid "Error getting table structure of %s"
169
+ msgstr "Feil ved innhenting av strukturen til tabellen %s"
170
+
171
+ #: wp-db-backup.php:753
172
+ #, php-format
173
+ msgid "Data contents of table %s"
174
+ msgstr "Data innhold for tabellen %s"
175
+
176
+ #: wp-db-backup.php:823
177
+ #, php-format
178
+ msgid "End of data contents of table %s"
179
+ msgstr "Slutt på data innhold i tabellen %s"
180
+
181
+ #: wp-db-backup.php:839
182
+ msgid "The backup directory is not writeable!"
183
+ msgstr "Mappen for sikkerhetskopi er ikke skrivbar!"
184
+
185
+ #: wp-db-backup.php:974
186
+ #, php-format
187
+ msgid "File not found:%s"
188
+ msgstr "Filen ikke funnet: %s"
189
+
190
+ #: wp-db-backup.php:974
191
+ msgid "Return to Backup"
192
+ msgstr "Tilbake til sikkerhetskopiering"
193
+
194
+ #: wp-db-backup.php:983
195
+ #, php-format
196
+ msgid "File %s does not exist!"
197
+ msgstr "Filen %s finnes ikke!"
198
+
199
+ #: wp-db-backup.php:990
200
+ #, php-format
201
+ msgid ""
202
+ "Attached to this email is\n"
203
+ " %1s\n"
204
+ " Size:%2s kilobytes\n"
205
+ msgstr ""
206
+ "Vedlagt til denne eposten er\n"
207
+ " %1s\n"
208
+ " Størrelse:%2s kilobytes\n"
209
+
210
+ #: wp-db-backup.php:991
211
+ msgid "Database Backup"
212
+ msgstr "Database sikkerhetskopi"
213
+
214
+ #: wp-db-backup.php:994
215
+ #: wp-db-backup.php:1041
216
+ msgid "The following errors were reported:"
217
+ msgstr "Følgende feil ble rapportert:"
218
+
219
+ #: wp-db-backup.php:999
220
+ msgid "ERROR: The mail application has failed to deliver the backup."
221
+ msgstr "FEIL: Epost apllikasjonen klarte ikke å levere sikkerhetskopien."
222
+
223
+ #: wp-db-backup.php:1016
224
+ msgid "Backup Successful"
225
+ msgstr "Sikkerhetskopien var vellykket"
226
+
227
+ #: wp-db-backup.php:1020
228
+ #, php-format
229
+ msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
230
+ msgstr "Sikkerhetskopi filen <a href=\"%1s\">%2s</a> starter snart å laste ned."
231
+
232
+ #: wp-db-backup.php:1028
233
+ #, php-format
234
+ msgid "Your backup has been emailed to %s"
235
+ msgstr "Din sikkerhetskopi er sendt på epost til %s"
236
+
237
+ #: wp-db-backup.php:1031
238
+ msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
239
+ msgstr "Din sikkerhetskopi er lagret på serveren. Du kan laste den ned nå. Høyre klikk og velg \"Lagre som\""
240
+
241
+ #: wp-db-backup.php:1032
242
+ #, php-format
243
+ msgid "%s bytes"
244
+ msgstr "%s bytes"
245
+
246
+ #: wp-db-backup.php:1068
247
+ msgid "Scheduled Backup Options Saved!"
248
+ msgstr "Valg for planlagt sikkerhetskopi er lagret!"
249
+
250
+ #: wp-db-backup.php:1095
251
+ msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
252
+ msgstr "ADVARSEL: Mappen for sikkerhetskopi finnes <strong>IKKE</strong>, og vi kan ikke lage den."
253
+
254
+ #: wp-db-backup.php:1096
255
+ #, php-format
256
+ msgid "Using your FTP client, try to create the backup directory yourself: %s"
257
+ msgstr "Ved hjelp av en FTP applikasjon, pørv å lage mappen for sikkerhetskopi selv: %s"
258
+
259
+ #: wp-db-backup.php:1100
260
+ #: wp-db-backup.php:1111
261
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
262
+ msgstr "ADVARSEL: Mappen for sikkerhetskopi er <strong>IKKE</strong> skrivbar. Vi kan ikke lage sikkerhetskopifilene."
263
+
264
+ #: wp-db-backup.php:1101
265
+ #, php-format
266
+ msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
267
+ msgstr "Ved hejlp av en FTP applikasjon, pørv å sette rettighetene til mappen til %1$s eller %2$s:%3$s"
268
+
269
+ #: wp-db-backup.php:1113
270
+ msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
271
+ msgstr "Dette problemet ser ut til å være relatert til serverens <code>safe_mode</code> rettighets restriksjoner. Dette legger begrensninger på hvilke filer WEB applikasjoner som WordPress kan lage."
272
+
273
+ #: wp-db-backup.php:1115
274
+ #, php-format
275
+ msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
276
+ msgstr "Du kan prøve å rette på den feilen ved å bruke en FTP applikasjon for å slette og så lage mappen for sikkerhetskopi på nytt: %s"
277
+
278
+ #: wp-db-backup.php:1129
279
+ msgid "Tables"
280
+ msgstr "Tabeller"
281
+
282
+ #: wp-db-backup.php:1131
283
+ msgid "These core WordPress tables will always be backed up:"
284
+ msgstr "De viktigste WordPress tabellen vil alltid bli sikkerhetskopiert:"
285
+
286
+ #: wp-db-backup.php:1136
287
+ msgid "Exclude spam comments"
288
+ msgstr "Utelat søppel kommentarer"
289
+
290
+ #: wp-db-backup.php:1139
291
+ msgid "Exclude post revisions"
292
+ msgstr "Utelat post revisjoner"
293
+
294
+ #: wp-db-backup.php:1150
295
+ msgid "You may choose to include any of the following tables:"
296
+ msgstr "Du kan velge å inkludere følgende tabeller:"
297
+
298
+ #: wp-db-backup.php:1164
299
+ msgid "Backup Options"
300
+ msgstr "Sikkerhetskopi instillinger"
301
+
302
+ #: wp-db-backup.php:1165
303
+ msgid "What to do with the backup file:"
304
+ msgstr "Hva skal vi gjøre med sikkerhetskopien:"
305
+
306
+ #: wp-db-backup.php:1169
307
+ msgid "Save to server"
308
+ msgstr "Lagre på serveren"
309
+
310
+ #: wp-db-backup.php:1174
311
+ msgid "Download to your computer"
312
+ msgstr "Laste ned til datamaskinen"
313
+
314
+ #: wp-db-backup.php:1178
315
+ #: wp-db-backup.php:1235
316
+ msgid "Email backup to:"
317
+ msgstr "Sende på epost til:"
318
+
319
+ #: wp-db-backup.php:1185
320
+ msgid "Backup now!"
321
+ msgstr "Ta sikkerhetskopi nå!"
322
+
323
+ #: wp-db-backup.php:1188
324
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
325
+ msgstr "ADVARSEL: Mappen for sikkerhetskopiering er <strong>ikke</strong> skrivbar!"
326
+
327
+ #: wp-db-backup.php:1199
328
+ msgid "Scheduled Backup"
329
+ msgstr "Planlagt sikkerhetskopi"
330
+
331
+ #: wp-db-backup.php:1206
332
+ #, php-format
333
+ msgid "Next Backup: %s"
334
+ msgstr "Neste sikkerhetskopi: %s"
335
+
336
+ #: wp-db-backup.php:1211
337
+ #, php-format
338
+ msgid "Last WP-Cron Daily Execution: %s"
339
+ msgstr "Siste WP-Cron daglig kjøring: %s"
340
+
341
+ #: wp-db-backup.php:1212
342
+ #, php-format
343
+ msgid "Next WP-Cron Daily Execution: %s"
344
+ msgstr "Neste WP-Cron daglig kjøring: %s"
345
+
346
+ #: wp-db-backup.php:1217
347
+ msgid "Schedule: "
348
+ msgstr "Planlagt:"
349
+
350
+ #: wp-db-backup.php:1220
351
+ msgid "None"
352
+ msgstr "Ingen"
353
+
354
+ #: wp-db-backup.php:1220
355
+ msgid "Daily"
356
+ msgstr "Daglig"
357
+
358
+ #: wp-db-backup.php:1243
359
+ msgid "Tables to include in the scheduled backup:"
360
+ msgstr "Tabeller som skal med i den planlagte sikkerhetskopien:"
361
+
362
+ #: wp-db-backup.php:1253
363
+ msgid "Schedule backup"
364
+ msgstr "Planlagte sikkerhetskopier"
365
+
366
+ #: wp-db-backup.php:1278
367
+ msgid "Never"
368
+ msgstr "Aldri"
369
+
370
+ #: wp-db-backup.php:1283
371
+ #, php-format
372
+ msgid "%s seconds"
373
+ msgstr "%s sekunder"
374
+
375
+ #: wp-db-backup.php:1316
376
+ msgid "Once Weekly"
377
+ msgstr "Ukentlig"
378
+
379
+ #: wp-db-backup.php:1329
380
+ #, php-format
381
+ msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
382
+ msgstr "Din WordPress versjon %1s, har alvorlige sikkerhetsfeil, noe som gjør bruken av WP-DB-Backup innstikket usikkert. På grunn av dette er innstikket automatisk deaktivert. Du bør virkelig vurdere å <a href=\"%2s\">oppgrader WordPress</a> til en nyere versjon!"
383
+
384
+ #: wp-db-backup.php:1347
385
+ msgid "You are not allowed to perform backups."
386
+ msgstr "Du har ikke lov å ta sikkerhetskopi,"
387
+
388
+ #: wp-db-backup.php:1362
389
+ #, php-format
390
+ msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted."
391
+ msgstr "Det virker som om det har vært et uatorisert forsøk på å nå databasen din som er lokalisert her %1s. Forsøket ble stoppet."
392
+
393
+ #: wp-db-backup.php:1373
394
+ msgid "Cheatin' uh ?"
395
+ msgstr "Jukser du?"
396
+
wp-db-backup-ru_RU.mo ADDED
Binary file
wp-db-backup-ru_RU.po ADDED
@@ -0,0 +1,426 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WordPress Database Backup\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-08-15 11:00-0500\n"
6
+ "PO-Revision-Date: 2008-08-16 23:51+0300\n"
7
+ "Last-Translator: Sergey Biryukov <npocmop@gmail.com>\n"
8
+ "Language-Team: Sergey Biryukov <npocmop@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11) ? 0 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n"
13
+ "X-Poedit-Language: Russian\n"
14
+ "X-Poedit-Country: RUSSIAN FEDERATION\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2\n"
17
+ "X-Poedit-Basepath: H:\\home\\wordpress\\www\\wp-content\\plugins\\wp-db-backup\n"
18
+ "X-Poedit-SearchPath-0: H:\\home\\wordpress\\www\\wp-content\\plugins\\wp-db-backup\n"
19
+
20
+ #: wp-db-backup.php:181
21
+ msgid "Backup Complete!"
22
+ msgstr "Резервное копирование завершено!"
23
+
24
+ #: wp-db-backup.php:211
25
+ msgid "Progress"
26
+ msgstr "Состояние"
27
+
28
+ #: wp-db-backup.php:213
29
+ msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
30
+ msgstr "НЕ ДЕЛАЙТЕ ЭТОГО, ИНАЧЕ РЕЗЕРВНАЯ КОПИЯ БУДЕТ ПОВРЕЖДЕНА:"
31
+
32
+ #: wp-db-backup.php:216
33
+ msgid "Close this browser"
34
+ msgstr "Не закрывайте браузер"
35
+
36
+ #: wp-db-backup.php:217
37
+ msgid "Reload this page"
38
+ msgstr "Не обновляйте страницу"
39
+
40
+ #: wp-db-backup.php:218
41
+ msgid "Click the Stop or Back buttons in your browser"
42
+ msgstr "Не нажимайте кнопки &laquo;Стоп&raquo; или &laquo;Назад&raquo; в браузере"
43
+
44
+ #: wp-db-backup.php:220
45
+ msgid "Progress:"
46
+ msgstr "В процессе:"
47
+
48
+ #: wp-db-backup.php:229
49
+ msgid "Navigating away from this page will cause your backup to fail."
50
+ msgstr "Уход с этой страницы приведёт к повреждению архива."
51
+
52
+ #: wp-db-backup.php:266
53
+ #, php-format
54
+ msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
55
+ msgstr "Копирование завершено, подготовка <a href=\\\"%s\\\">архива</a> к закачке&hellip;"
56
+
57
+ #: wp-db-backup.php:273
58
+ #, php-format
59
+ msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
60
+ msgstr "Копирование завершено, отправка <a href=\\\"%s\\\">архива</a> на e-mail&hellip;"
61
+
62
+ #: wp-db-backup.php:280
63
+ #, php-format
64
+ msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
65
+ msgstr "Копирование завершено, скачать архив можно <a href=\\\"%s\\\">здесь</a>."
66
+
67
+ #: wp-db-backup.php:340
68
+ msgid "Creating backup file..."
69
+ msgstr "Создание архива&hellip;"
70
+
71
+ #: wp-db-backup.php:343
72
+ #, php-format
73
+ msgid "Finished backing up table \\\"%s\\\"."
74
+ msgstr "Завершено копирование таблицы %s."
75
+
76
+ #: wp-db-backup.php:345
77
+ #, php-format
78
+ msgid "Backing up table \\\"%s\\\"..."
79
+ msgstr "Сохранение таблицы %s&hellip;"
80
+
81
+ #: wp-db-backup.php:352
82
+ #: wp-db-backup.php:835
83
+ msgid "Could not open the backup file for writing!"
84
+ msgstr "Не удалось открыть файл архива для записи!"
85
+
86
+ #: wp-db-backup.php:353
87
+ msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again."
88
+ msgstr "Не удалось сохранить файл архива. Пожалуйста, проверьте права на запись в резервную директорию и попробуйте еще раз."
89
+
90
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:318
91
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:626
92
+ #: wp-db-backup.php:358
93
+ #: wp-db-backup.php:844
94
+ msgid "WordPress MySQL database backup"
95
+ msgstr "Резервная копия базы данных WordPress"
96
+
97
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:320
98
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:628
99
+ #: wp-db-backup.php:360
100
+ #: wp-db-backup.php:846
101
+ #, php-format
102
+ msgid "Generated: %s"
103
+ msgstr "Дата: %s"
104
+
105
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:321
106
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:629
107
+ #: wp-db-backup.php:361
108
+ #: wp-db-backup.php:847
109
+ #, php-format
110
+ msgid "Hostname: %s"
111
+ msgstr "Сервер: %s"
112
+
113
+ #: wp-db-backup.php:362
114
+ #: wp-db-backup.php:848
115
+ #, php-format
116
+ msgid "Database: %s"
117
+ msgstr "БД: %s"
118
+
119
+ #: wp-db-backup.php:370
120
+ #: wp-db-backup.php:861
121
+ #, php-format
122
+ msgid "Table: %s"
123
+ msgstr "Таблица: %s"
124
+
125
+ #: wp-db-backup.php:377
126
+ msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again."
127
+ msgstr "Резервная директория недоступна для записи! Пожалуйста, проверьте права на запись в эту директорию и попробуйте еще раз."
128
+
129
+ #: wp-db-backup.php:434
130
+ msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
131
+ msgstr "Нажмите и удерживайте <code>[SHIFT]</code>, чтобы переключить сразу несколько значений"
132
+
133
+ #: wp-db-backup.php:474
134
+ msgid "Change"
135
+ msgstr "Изменить"
136
+
137
+ #: wp-db-backup.php:483
138
+ msgid "Save"
139
+ msgstr "Сохранить"
140
+
141
+ #: wp-db-backup.php:566
142
+ #: wp-db-backup.php:571
143
+ #: wp-db-backup.php:1126
144
+ msgid "Backup"
145
+ msgstr "Резервное копирование"
146
+
147
+ #: wp-db-backup.php:646
148
+ #: wp-db-backup.php:649
149
+ msgid "There was an error writing a line to the backup script:"
150
+ msgstr "Произошла ошибка при добавлении строки в скрипт резервной копии:"
151
+
152
+ #: wp-db-backup.php:681
153
+ msgid "Subsequent errors have been omitted from this log."
154
+ msgstr "Последующие ошибки не приведены в этом отчёте."
155
+
156
+ #: wp-db-backup.php:715
157
+ msgid "Error getting table details"
158
+ msgstr "Ошибка получения информации о таблице"
159
+
160
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:510
161
+ #: wp-db-backup.php:723
162
+ #, php-format
163
+ msgid "Delete any existing table %s"
164
+ msgstr "Удаление существующей таблицы %s"
165
+
166
+ #: wp-db-backup.php:732
167
+ #, php-format
168
+ msgid "Table structure of table %s"
169
+ msgstr "Структура таблицы %s"
170
+
171
+ #: wp-db-backup.php:738
172
+ #, php-format
173
+ msgid "Error with SHOW CREATE TABLE for %s."
174
+ msgstr "Ошибка в запросе SHOW CREATE TABLE для %s."
175
+
176
+ #: wp-db-backup.php:745
177
+ #, php-format
178
+ msgid "Error getting table structure of %s"
179
+ msgstr "Ошибка получения структуры таблицы %s"
180
+
181
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:540
182
+ #: wp-db-backup.php:753
183
+ #, php-format
184
+ msgid "Data contents of table %s"
185
+ msgstr "Содержимое таблицы %s"
186
+
187
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:605
188
+ #: wp-db-backup.php:823
189
+ #, php-format
190
+ msgid "End of data contents of table %s"
191
+ msgstr "Конец содержимого таблицы %s"
192
+
193
+ #: wp-db-backup.php:839
194
+ msgid "The backup directory is not writeable!"
195
+ msgstr "Резервная директория недоступна для записи!"
196
+
197
+ #: wp-db-backup.php:974
198
+ #, php-format
199
+ msgid "File not found:%s"
200
+ msgstr "Файл не найден:%s"
201
+
202
+ #: wp-db-backup.php:974
203
+ msgid "Return to Backup"
204
+ msgstr "Вернуться к резервному копированию"
205
+
206
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:773
207
+ #: wp-db-backup.php:983
208
+ #, php-format
209
+ msgid "File %s does not exist!"
210
+ msgstr "Файл %s не существует!"
211
+
212
+ #: wp-db-backup.php:990
213
+ #, php-format
214
+ msgid ""
215
+ "Attached to this email is\n"
216
+ " %1s\n"
217
+ " Size:%2s kilobytes\n"
218
+ msgstr ""
219
+ "Приложение: \n"
220
+ " %1s\n"
221
+ " Размер:%2s КБ\n"
222
+
223
+ #: wp-db-backup.php:991
224
+ msgid "Database Backup"
225
+ msgstr "Архив базы данных"
226
+
227
+ #: wp-db-backup.php:994
228
+ #: wp-db-backup.php:1041
229
+ msgid "The following errors were reported:"
230
+ msgstr "Обнаружены следующие ошибки:"
231
+
232
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:728
233
+ #: wp-db-backup.php:999
234
+ msgid "ERROR: The mail application has failed to deliver the backup."
235
+ msgstr "ОШИБКА: Почтовое приложение не может отправить архив."
236
+
237
+ #: wp-db-backup.php:1016
238
+ msgid "Backup Successful"
239
+ msgstr "Резервное копирование успешно завершено"
240
+
241
+ #: wp-db-backup.php:1020
242
+ #, php-format
243
+ msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
244
+ msgstr "Архив: <a href=\"%1s\">%2s</a>. Дождитесь начала закачки."
245
+
246
+ #: wp-db-backup.php:1028
247
+ #, php-format
248
+ msgid "Your backup has been emailed to %s"
249
+ msgstr "Архив отправлен по адресу %s"
250
+
251
+ #: wp-db-backup.php:1031
252
+ msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
253
+ msgstr "Архив сохранён на сервере. Если вы хотите скачать его, щелкните правой кнопкой и выберите &laquo;Сохранить как&raquo;"
254
+
255
+ #: wp-db-backup.php:1032
256
+ #, php-format
257
+ msgid "%s bytes"
258
+ msgstr "%s байт"
259
+
260
+ #: wp-db-backup.php:1068
261
+ msgid "Scheduled Backup Options Saved!"
262
+ msgstr "Настройки резервного копирования по расписанию сохранены!"
263
+
264
+ #: wp-db-backup.php:1095
265
+ msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
266
+ msgstr "ВНИМАНИЕ: Резервная директория <strong>НЕ</strong> существует, и нам не удалось её создать."
267
+
268
+ #: wp-db-backup.php:1096
269
+ #, php-format
270
+ msgid "Using your FTP client, try to create the backup directory yourself: %s"
271
+ msgstr "Попробуйте с помощью FTP-клиента создать резервную директорию самостоятельно: %s"
272
+
273
+ #: wp-db-backup.php:1100
274
+ #: wp-db-backup.php:1111
275
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
276
+ msgstr "ВНИМАНИЕ: Резервная директория <strong>НЕДОСТУПНА</strong> для записи! Не удалось создать архив."
277
+
278
+ #: wp-db-backup.php:1101
279
+ #, php-format
280
+ msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
281
+ msgstr "Попробуйте с помощью FTP-клиента установить для резервной директории права на запись %1$s или %2$s: %3$s"
282
+
283
+ #: wp-db-backup.php:1113
284
+ msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
285
+ msgstr "Проблема, скорее всего, вызвана ограничениями <code>safe_mode</code> на вашем сервере, которые определяют, какие файлы могут создаваться веб-приложениями вроде WordPress."
286
+
287
+ #: wp-db-backup.php:1115
288
+ #, php-format
289
+ msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
290
+ msgstr "Вы можете исправить эту проблему с помощью FTP-клиента, удалив и заново создав резервную директорию: %s"
291
+
292
+ #: wp-db-backup.php:1129
293
+ msgid "Tables"
294
+ msgstr "Таблицы"
295
+
296
+ #: wp-db-backup.php:1131
297
+ msgid "These core WordPress tables will always be backed up:"
298
+ msgstr "Основные таблицы WordPress сохраняются всегда:"
299
+
300
+ #: wp-db-backup.php:1136
301
+ msgid "Exclude spam comments"
302
+ msgstr "Исключить спам-комментарии"
303
+
304
+ #: wp-db-backup.php:1139
305
+ msgid "Exclude post revisions"
306
+ msgstr "Исключить редакции записей"
307
+
308
+ #: wp-db-backup.php:1150
309
+ msgid "You may choose to include any of the following tables:"
310
+ msgstr "Можно также сохранить любые из этих таблиц:"
311
+
312
+ #: wp-db-backup.php:1164
313
+ msgid "Backup Options"
314
+ msgstr "Настройки резервного копирования"
315
+
316
+ #: wp-db-backup.php:1165
317
+ msgid "What to do with the backup file:"
318
+ msgstr "Что сделать с архивом:"
319
+
320
+ #: wp-db-backup.php:1169
321
+ msgid "Save to server"
322
+ msgstr "Сохранить на сервер"
323
+
324
+ #: wp-db-backup.php:1174
325
+ msgid "Download to your computer"
326
+ msgstr "Скачать на компьютер"
327
+
328
+ #: wp-db-backup.php:1178
329
+ #: wp-db-backup.php:1235
330
+ msgid "Email backup to:"
331
+ msgstr "Отправить на e-mail:"
332
+
333
+ #: wp-db-backup.php:1185
334
+ msgid "Backup now!"
335
+ msgstr "Создать архив!"
336
+
337
+ #: wp-db-backup.php:1188
338
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
339
+ msgstr "ВНИМАНИЕ: Резервная директория <strong>НЕДОСТУПНА</strong> для записи!"
340
+
341
+ #: wp-db-backup.php:1199
342
+ msgid "Scheduled Backup"
343
+ msgstr "Расписание резервного копирования"
344
+
345
+ #: wp-db-backup.php:1206
346
+ #, php-format
347
+ msgid "Next Backup: %s"
348
+ msgstr "Следующий запуск: %s"
349
+
350
+ #: wp-db-backup.php:1211
351
+ #, php-format
352
+ msgid "Last WP-Cron Daily Execution: %s"
353
+ msgstr "Предыдущий ежедневный запуск WP-Cron: %s"
354
+
355
+ #: wp-db-backup.php:1212
356
+ #, php-format
357
+ msgid "Next WP-Cron Daily Execution: %s"
358
+ msgstr "Следующий ежедневный запуск WP-Cron: %s"
359
+
360
+ #: wp-db-backup.php:1217
361
+ msgid "Schedule: "
362
+ msgstr "Расписание:"
363
+
364
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:820
365
+ #: wp-db-backup.php:1220
366
+ msgid "None"
367
+ msgstr "Нет"
368
+
369
+ #: wp-db-backup.php:1220
370
+ msgid "Daily"
371
+ msgstr "Ежедневно"
372
+
373
+ #: wp-db-backup.php:1243
374
+ msgid "Tables to include in the scheduled backup:"
375
+ msgstr "Включить в архив по расписанию следующие таблицы:"
376
+
377
+ #: wp-db-backup.php:1253
378
+ msgid "Schedule backup"
379
+ msgstr "Запомнить расписание"
380
+
381
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:946
382
+ #: wp-db-backup.php:1278
383
+ msgid "Never"
384
+ msgstr "Никогда"
385
+
386
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:951
387
+ #: wp-db-backup.php:1283
388
+ #, php-format
389
+ msgid "%s seconds"
390
+ msgstr "%s секунд"
391
+
392
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:984
393
+ #: wp-db-backup.php:1316
394
+ msgid "Once Weekly"
395
+ msgstr "Раз в неделю"
396
+
397
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:997
398
+ #: wp-db-backup.php:1329
399
+ #, php-format
400
+ msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
401
+ msgstr "В вашей версии WordPress (%1s) отсутствуют критические исправления, без которых использовать плагин WP-DB-Backup небезопасно. По этой причине плагин был автоматически отключён. Пожалуйста, <a href=\"%2s\">обновите WordPress</a> до последней версии."
402
+
403
+ #: wp-db-backup.php:1347
404
+ msgid "You are not allowed to perform backups."
405
+ msgstr "Вам не разрешено делать резервные копии."
406
+
407
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:1027
408
+ #: wp-db-backup.php:1362
409
+ #, php-format
410
+ msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted."
411
+ msgstr "Похоже, с этого сайта была произведена несанкционированная попытка доступа к БД, расположенной на %1s. Попытка предотвращена."
412
+
413
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:889
414
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:892
415
+ # H:\home\wordpress\www\wp-content\plugins\wp-db-backup/wp-db-backup.php:895
416
+ #: wp-db-backup.php:1373
417
+ msgid "Cheatin' uh ?"
418
+ msgstr "Играемся, что ли?"
419
+
420
+ #~ msgid ""
421
+ #~ "WARNING: Your wp-content directory is <strong>NOT</strong> writable! We "
422
+ #~ "can not create the backup directory."
423
+ #~ msgstr ""
424
+ #~ "ВНИМАНИЕ: Директория wp-content <strong>НЕДОСТУПНА</strong> для записи! "
425
+ #~ "Не удалось создать резервную директорию."
426
+
wp-db-backup-tr_TR.mo ADDED
Binary file
wp-db-backup-tr_TR.po ADDED
@@ -0,0 +1,399 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WP-DB-Backup
2
+ # Copyright (C) 2008 Austin Matzko
3
+ # This file is distributed under the GPL 2 license.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WP-DB Backup 2.1.7\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2008-08-15 11:00-0500\n"
10
+ "PO-Revision-Date: 2008-08-16 03:28+0200\n"
11
+ "Last-Translator: İzzet Emre Erkan <kara@karalamalar.net>\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=utf-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language-Team: İzzet Emre Erkan <kara@karalamalar.net>\n"
16
+ "X-Poedit-Language: Turkish\n"
17
+ "X-Poedit-Country: TURKEY\n"
18
+ "X-Poedit-SourceCharset: utf-8\n"
19
+
20
+ #: wp-db-backup.php:181
21
+ msgid "Backup Complete!"
22
+ msgstr "Yedekleme tamamlandı!"
23
+
24
+ #: wp-db-backup.php:211
25
+ msgid "Progress"
26
+ msgstr "İlerleme"
27
+
28
+ #: wp-db-backup.php:213
29
+ msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
30
+ msgstr "YEDEKLEME İŞLEMİNİ BOZACAĞINDAN DOLAYI AŞAĞIDAKİLERİ YAPMAYIN:"
31
+
32
+ #: wp-db-backup.php:216
33
+ msgid "Close this browser"
34
+ msgstr "Tarayıcıyı kapatmak"
35
+
36
+ #: wp-db-backup.php:217
37
+ msgid "Reload this page"
38
+ msgstr "Bu sayfayı yenilemek"
39
+
40
+ #: wp-db-backup.php:218
41
+ msgid "Click the Stop or Back buttons in your browser"
42
+ msgstr "Tarayıcınızdaki Dur ya da Geri tuşlarından birine basmak"
43
+
44
+ #: wp-db-backup.php:220
45
+ msgid "Progress:"
46
+ msgstr "İlerleme:"
47
+
48
+ #: wp-db-backup.php:229
49
+ msgid "Navigating away from this page will cause your backup to fail."
50
+ msgstr "Bu sayfadan başka bir sayfaya geçmeniz yedekleme işleminin başarısız olmasına yol açacaktır."
51
+
52
+ #: wp-db-backup.php:266
53
+ #, php-format
54
+ msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
55
+ msgstr "Yedekleme tamamlandı, <a href=\\\"%s\\\">yedek dosyası</a> indirilmek için hazırlanıyor..."
56
+
57
+ #: wp-db-backup.php:273
58
+ #, php-format
59
+ msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
60
+ msgstr "Yedekleme tamamlandı, <a href=\\\"%s\\\">yedek dosyası</a> e-posta ile gönderiliyor..."
61
+
62
+ #: wp-db-backup.php:280
63
+ #, php-format
64
+ msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
65
+ msgstr "Yedekleme tamamlandı, <a href=\\\"%s\\\">buradan</a> indirin."
66
+
67
+ #: wp-db-backup.php:340
68
+ msgid "Creating backup file..."
69
+ msgstr "Yedek dosyası yaratılıyor..."
70
+
71
+ #: wp-db-backup.php:343
72
+ #, php-format
73
+ msgid "Finished backing up table \\\"%s\\\"."
74
+ msgstr "\\\"%s\\\" tablosunun yedekleme işlemi bitti."
75
+
76
+ #: wp-db-backup.php:345
77
+ #, php-format
78
+ msgid "Backing up table \\\"%s\\\"..."
79
+ msgstr "\\\"%s\\\" tablosunun yedeği alınıyor."
80
+
81
+ #: wp-db-backup.php:352
82
+ #: wp-db-backup.php:835
83
+ msgid "Could not open the backup file for writing!"
84
+ msgstr "Yedekleme dosyası yazmak için açılamıyor!"
85
+
86
+ #: wp-db-backup.php:353
87
+ msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again."
88
+ msgstr "Yedek dosyası kaydedilemedi. Yedekleme klasörünün yazma haklarını kontrol edin ve işlemi tekrar deneyin."
89
+
90
+ #: wp-db-backup.php:358
91
+ #: wp-db-backup.php:844
92
+ msgid "WordPress MySQL database backup"
93
+ msgstr "WordPress MySQL veritabanı yedeklemesi"
94
+
95
+ #: wp-db-backup.php:360
96
+ #: wp-db-backup.php:846
97
+ #, php-format
98
+ msgid "Generated: %s"
99
+ msgstr "Oluşturulma: %s"
100
+
101
+ #: wp-db-backup.php:361
102
+ #: wp-db-backup.php:847
103
+ #, php-format
104
+ msgid "Hostname: %s"
105
+ msgstr "Sunucu: %s"
106
+
107
+ #: wp-db-backup.php:362
108
+ #: wp-db-backup.php:848
109
+ #, php-format
110
+ msgid "Database: %s"
111
+ msgstr "Veritabanı: %s"
112
+
113
+ #: wp-db-backup.php:370
114
+ #: wp-db-backup.php:861
115
+ #, php-format
116
+ msgid "Table: %s"
117
+ msgstr "Tablo: %s"
118
+
119
+ #: wp-db-backup.php:377
120
+ msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again."
121
+ msgstr "Yedekleme dizini yazılabilir değil! Yedekleme klasörünün yazma haklarını kontrol edin ve işlemi tekrar deneyin."
122
+
123
+ #: wp-db-backup.php:434
124
+ msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
125
+ msgstr "<code>[SHIFT]</code> tuşuba basılı tutarak birden çok kutu işaretleyebilirsiniz"
126
+
127
+ #: wp-db-backup.php:474
128
+ msgid "Change"
129
+ msgstr "Değiştir"
130
+
131
+ #: wp-db-backup.php:483
132
+ msgid "Save"
133
+ msgstr "Kaydet"
134
+
135
+ #: wp-db-backup.php:566
136
+ #: wp-db-backup.php:571
137
+ #: wp-db-backup.php:1126
138
+ msgid "Backup"
139
+ msgstr "Yedekle"
140
+
141
+ #: wp-db-backup.php:646
142
+ #: wp-db-backup.php:649
143
+ msgid "There was an error writing a line to the backup script:"
144
+ msgstr "Yedekleme betiğine bir satır yazarken hata oluştu:"
145
+
146
+ #: wp-db-backup.php:681
147
+ msgid "Subsequent errors have been omitted from this log."
148
+ msgstr "Sonraki hatalar kütük dosyasından çıkarıldı."
149
+
150
+ #: wp-db-backup.php:715
151
+ msgid "Error getting table details"
152
+ msgstr "Tablo detaylarını alırken problem oluştu"
153
+
154
+ #: wp-db-backup.php:723
155
+ #, php-format
156
+ msgid "Delete any existing table %s"
157
+ msgstr "%s tablosu var ise sil"
158
+
159
+ #: wp-db-backup.php:732
160
+ #, php-format
161
+ msgid "Table structure of table %s"
162
+ msgstr "%s tablosu için tablo yapısı"
163
+
164
+ #: wp-db-backup.php:738
165
+ #, php-format
166
+ msgid "Error with SHOW CREATE TABLE for %s."
167
+ msgstr "%s tablosu için SHOW CREATE TABLE komutunda hata oluştu"
168
+
169
+ #: wp-db-backup.php:745
170
+ #, php-format
171
+ msgid "Error getting table structure of %s"
172
+ msgstr "%s tablosunun yapısı edinilirken hata oluştu"
173
+
174
+ #: wp-db-backup.php:753
175
+ #, php-format
176
+ msgid "Data contents of table %s"
177
+ msgstr "%s tablosu için veri"
178
+
179
+ #: wp-db-backup.php:823
180
+ #, php-format
181
+ msgid "End of data contents of table %s"
182
+ msgstr "%s tablosu verilerinin sonu"
183
+
184
+ #: wp-db-backup.php:839
185
+ msgid "The backup directory is not writeable!"
186
+ msgstr "Yedekleme dizini yazılabilir değil!"
187
+
188
+ #: wp-db-backup.php:974
189
+ #, php-format
190
+ msgid "File not found:%s"
191
+ msgstr "Dosya bulunamadı. %s"
192
+
193
+ #: wp-db-backup.php:974
194
+ msgid "Return to Backup"
195
+ msgstr "Yedeklemeye dön"
196
+
197
+ #: wp-db-backup.php:983
198
+ #, php-format
199
+ msgid "File %s does not exist!"
200
+ msgstr "%s dosyası mevcut değil!"
201
+
202
+ #: wp-db-backup.php:990
203
+ #, php-format
204
+ msgid ""
205
+ "Attached to this email is\n"
206
+ " %1s\n"
207
+ " Size:%2s kilobytes\n"
208
+ msgstr ""
209
+ "Bu e-postaya eklenen dosya\n"
210
+ " %1s\n"
211
+ " Boyut:%2s kilobayt\n"
212
+
213
+ #: wp-db-backup.php:991
214
+ msgid "Database Backup"
215
+ msgstr "Veritabanı Yedekleme"
216
+
217
+ #: wp-db-backup.php:994
218
+ #: wp-db-backup.php:1041
219
+ msgid "The following errors were reported:"
220
+ msgstr "Aşağıdaki hatalar raporlandı:"
221
+
222
+ #: wp-db-backup.php:999
223
+ msgid "ERROR: The mail application has failed to deliver the backup."
224
+ msgstr "HATA: mail uygulaması yedek dosyasının ulaştırılmasında başarısız oldu."
225
+
226
+ #: wp-db-backup.php:1016
227
+ msgid "Backup Successful"
228
+ msgstr "Yedekleme başarılı"
229
+
230
+ #: wp-db-backup.php:1020
231
+ #, php-format
232
+ msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
233
+ msgstr "Yedek dosyanız: <a href=\"%1s\">%2s</a> kısa zamanda indirilmeye başlayacaktır."
234
+
235
+ #: wp-db-backup.php:1028
236
+ #, php-format
237
+ msgid "Your backup has been emailed to %s"
238
+ msgstr "Yedek dosyanız %s adresine e-posta ile gönderildi"
239
+
240
+ #: wp-db-backup.php:1031
241
+ msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
242
+ msgstr "Yedek dosyanız sunucu üzerinde kaydedildi. Şu an dosyayı indirmek isterseniz sağ tuşla tıklayın ve \"Farklı Kaydet\" seçeneğini seçin"
243
+
244
+ #: wp-db-backup.php:1032
245
+ #, php-format
246
+ msgid "%s bytes"
247
+ msgstr "%s bayt"
248
+
249
+ #: wp-db-backup.php:1068
250
+ msgid "Scheduled Backup Options Saved!"
251
+ msgstr "Programlanmış yedek seçenekleri kaydedildi!"
252
+
253
+ #: wp-db-backup.php:1095
254
+ msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
255
+ msgstr "UYARI: Yedekleme dizininiz <strong>MEVCUT DEĞİL</strong> ve biz de bu dizini yaratamıyoruz."
256
+
257
+ #: wp-db-backup.php:1096
258
+ #, php-format
259
+ msgid "Using your FTP client, try to create the backup directory yourself: %s"
260
+ msgstr "Bir FTP istemcisi kullanarak bu dizini kendiniz yaratmayı deneyin: %s"
261
+
262
+ #: wp-db-backup.php:1100
263
+ #: wp-db-backup.php:1111
264
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
265
+ msgstr "UYARI: yedekleme dizininiz yazılabilir <strong>DEĞİL</strong>. Yedek dosyalarını yaratamıyoruz."
266
+
267
+ #: wp-db-backup.php:1101
268
+ #, php-format
269
+ msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
270
+ msgstr "FTP istemcinizi kullanarak yedekleme dizininin yazma yetkilerini şu şekilde değiştirin %1$s ya da %2$s: %3$s"
271
+
272
+ #: wp-db-backup.php:1113
273
+ msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
274
+ msgstr "Bu problem sunucunuzun <code>safe_mode</code> (güvenli kip) dosya sahipliği engellemelerinden -ki bu engelleme WordPress gibi uygulamaların yaratabileceği dosyaları sınırlandırır- dolayı oluşmuş gözüküyor."
275
+
276
+ #: wp-db-backup.php:1115
277
+ #, php-format
278
+ msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
279
+ msgstr "FTP istemciniz ile bağlanıp yedekleme dizinini silip tekrar oluşturarak bu problemi giderebilirsiniz: %s"
280
+
281
+ #: wp-db-backup.php:1129
282
+ msgid "Tables"
283
+ msgstr "Tablolar"
284
+
285
+ #: wp-db-backup.php:1131
286
+ msgid "These core WordPress tables will always be backed up:"
287
+ msgstr "Bu kök WordPress tabloları her zaman yedeklenecektir:"
288
+
289
+ #: wp-db-backup.php:1136
290
+ msgid "Exclude spam comments"
291
+ msgstr "İstenmeyen yorumları hariç tut"
292
+
293
+ #: wp-db-backup.php:1139
294
+ msgid "Exclude post revisions"
295
+ msgstr "Yazı sürümlerini hariç tut"
296
+
297
+ #: wp-db-backup.php:1150
298
+ msgid "You may choose to include any of the following tables:"
299
+ msgstr "Aşağıdaki tabloları eklemek isteyebilirsiniz:"
300
+
301
+ #: wp-db-backup.php:1164
302
+ msgid "Backup Options"
303
+ msgstr "Yedekleme seçenekleri"
304
+
305
+ #: wp-db-backup.php:1165
306
+ msgid "What to do with the backup file:"
307
+ msgstr "Yedek dosyası ile ne yapılacak:"
308
+
309
+ #: wp-db-backup.php:1169
310
+ msgid "Save to server"
311
+ msgstr "Sunucuya kaydedin"
312
+
313
+ #: wp-db-backup.php:1174
314
+ msgid "Download to your computer"
315
+ msgstr "Bilgisayarınıza indirin"
316
+
317
+ #: wp-db-backup.php:1178
318
+ #: wp-db-backup.php:1235
319
+ msgid "Email backup to:"
320
+ msgstr "Şu adrese e-posta ile gönderin:"
321
+
322
+ #: wp-db-backup.php:1185
323
+ msgid "Backup now!"
324
+ msgstr "Şimdi yedekle!"
325
+
326
+ #: wp-db-backup.php:1188
327
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
328
+ msgstr "UYARI: Yedekleme dizininiz yazılabilir <strong>DEĞİL</strong>!"
329
+
330
+ #: wp-db-backup.php:1199
331
+ msgid "Scheduled Backup"
332
+ msgstr "Programlanmış yedek"
333
+
334
+ #: wp-db-backup.php:1206
335
+ #, php-format
336
+ msgid "Next Backup: %s"
337
+ msgstr "Sonraki yedekleme: %s"
338
+
339
+ #: wp-db-backup.php:1211
340
+ #, php-format
341
+ msgid "Last WP-Cron Daily Execution: %s"
342
+ msgstr "En son günlük WP-Cron çalışma zamanı: %s"
343
+
344
+ #: wp-db-backup.php:1212
345
+ #, php-format
346
+ msgid "Next WP-Cron Daily Execution: %s"
347
+ msgstr "Bir sonraki günlük WP-Cron çalışma zamanı: %s"
348
+
349
+ #: wp-db-backup.php:1217
350
+ msgid "Schedule: "
351
+ msgstr "Programla:"
352
+
353
+ #: wp-db-backup.php:1220
354
+ msgid "None"
355
+ msgstr "Hiçbiri"
356
+
357
+ #: wp-db-backup.php:1220
358
+ msgid "Daily"
359
+ msgstr "Günlük"
360
+
361
+ #: wp-db-backup.php:1243
362
+ msgid "Tables to include in the scheduled backup:"
363
+ msgstr "Programlanmış yedeklemeye dahil edilecek tablolar:"
364
+
365
+ #: wp-db-backup.php:1253
366
+ msgid "Schedule backup"
367
+ msgstr "Yedekleme programla"
368
+
369
+ #: wp-db-backup.php:1278
370
+ msgid "Never"
371
+ msgstr "Hiç"
372
+
373
+ #: wp-db-backup.php:1283
374
+ #, php-format
375
+ msgid "%s seconds"
376
+ msgstr "%s saniye"
377
+
378
+ #: wp-db-backup.php:1316
379
+ msgid "Once Weekly"
380
+ msgstr "Haftada bir"
381
+
382
+ #: wp-db-backup.php:1329
383
+ #, php-format
384
+ msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
385
+ msgstr "WordPress sürümünüz, %1s, WP-DB-Backup eklentisinin çalışabilmesi için gerekli olan güvenlik özelliklerini barındırmıyor. Dolayısıyla eklenti otomatik olarak etkisizleştirildi. Lütfen WordPress kurulumunuzu daha güncel bir sürüme <a href=\"%2s\">yükseltmeyi</a> düşünün."
386
+
387
+ #: wp-db-backup.php:1347
388
+ msgid "You are not allowed to perform backups."
389
+ msgstr "Yedekleme için yetkili değilsiniz."
390
+
391
+ #: wp-db-backup.php:1362
392
+ #, php-format
393
+ msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted."
394
+ msgstr "%1s konumunda bulunan veritabanınıza yetkisiz erişim denemesi gerçekleşmiş. İlgili deneme engellendi."
395
+
396
+ #: wp-db-backup.php:1373
397
+ msgid "Cheatin' uh ?"
398
+ msgstr "Hile mi yapıyorsun?"
399
+
wp-db-backup-zh_CN.mo ADDED
Binary file
wp-db-backup-zh_CN.po ADDED
@@ -0,0 +1,397 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp-db-backup 2.1.7\n"
4
+ "POT-Creation-Date: \n"
5
+ "PO-Revision-Date: 2008-08-17 00:50+0800\n"
6
+ "Last-Translator: paopao <wuxipaopao@gmail.com>\n"
7
+ "Language-Team: WordPress 中文团队 - paopao (site: www.paopao.name, mail:wuxipaopao@gmail.com) <team@wp-cn.com>\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=utf-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Poedit-KeywordsList: _e;__\n"
12
+ "X-Poedit-Basepath: .\n"
13
+ "X-Poedit-Language: Chinese\n"
14
+ "X-Poedit-Country: CHINA\n"
15
+ "X-Poedit-SearchPath-0: .\n"
16
+
17
+ #: wp-db-backup.php:181
18
+ msgid "Backup Complete!"
19
+ msgstr "备份成功!"
20
+
21
+ #: wp-db-backup.php:211
22
+ msgid "Progress"
23
+ msgstr "备份中"
24
+
25
+ #: wp-db-backup.php:213
26
+ msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
27
+ msgstr "请不要进行以下操作,否则会导致备份失败:"
28
+
29
+ #: wp-db-backup.php:216
30
+ msgid "Close this browser"
31
+ msgstr "关闭这个页面"
32
+
33
+ #: wp-db-backup.php:217
34
+ msgid "Reload this page"
35
+ msgstr "刷新这个页面"
36
+
37
+ #: wp-db-backup.php:218
38
+ msgid "Click the Stop or Back buttons in your browser"
39
+ msgstr "点击浏览器的停止或者后退按钮"
40
+
41
+ #: wp-db-backup.php:220
42
+ msgid "Progress:"
43
+ msgstr "备份进度:"
44
+
45
+ #: wp-db-backup.php:229
46
+ msgid "Navigating away from this page will cause your backup to fail."
47
+ msgstr "关闭本页面会导致数据库备份失败。"
48
+
49
+ #: wp-db-backup.php:266
50
+ #, php-format
51
+ msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
52
+ msgstr "备份成功,正在准备<a href=\\\"%s\\\">备份文件</a>以供下载……"
53
+
54
+ #: wp-db-backup.php:273
55
+ #, php-format
56
+ msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
57
+ msgstr "备份成功,正在通过电子邮件发送<a href=\\\"%s\\\">备份文件</a>……"
58
+
59
+ #: wp-db-backup.php:280
60
+ #, php-format
61
+ msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
62
+ msgstr "备份成功,在<a href=\\\"%s\\\">此处</a>下载。"
63
+
64
+ #: wp-db-backup.php:340
65
+ msgid "Creating backup file..."
66
+ msgstr "创建备份文件……"
67
+
68
+ #: wp-db-backup.php:343
69
+ #, php-format
70
+ msgid "Finished backing up table \\\"%s\\\"."
71
+ msgstr "数据表\\\"%s\\\"备份完成。"
72
+
73
+ #: wp-db-backup.php:345
74
+ #, php-format
75
+ msgid "Backing up table \\\"%s\\\"..."
76
+ msgstr "正在备份数据表\\\"%s\\\"……"
77
+
78
+ #: wp-db-backup.php:352
79
+ #: wp-db-backup.php:835
80
+ msgid "Could not open the backup file for writing!"
81
+ msgstr "无法以写方式打开备份文件!"
82
+
83
+ #: wp-db-backup.php:353
84
+ msgid "The backup file could not be saved. Please check the permissions for writing to your backup directory and try again."
85
+ msgstr "无法保存备份文件。请检查你的备份文件夹的写权限设置并重试。"
86
+
87
+ #: wp-db-backup.php:358
88
+ #: wp-db-backup.php:844
89
+ msgid "WordPress MySQL database backup"
90
+ msgstr "WordPress MySQL 数据库备份"
91
+
92
+ #: wp-db-backup.php:360
93
+ #: wp-db-backup.php:846
94
+ #, php-format
95
+ msgid "Generated: %s"
96
+ msgstr "创建于:%s"
97
+
98
+ #: wp-db-backup.php:361
99
+ #: wp-db-backup.php:847
100
+ #, php-format
101
+ msgid "Hostname: %s"
102
+ msgstr "主机名:%s"
103
+
104
+ #: wp-db-backup.php:362
105
+ #: wp-db-backup.php:848
106
+ #, php-format
107
+ msgid "Database: %s"
108
+ msgstr "数据库:%s"
109
+
110
+ #: wp-db-backup.php:370
111
+ #: wp-db-backup.php:861
112
+ #, php-format
113
+ msgid "Table: %s"
114
+ msgstr "数据表:%s"
115
+
116
+ #: wp-db-backup.php:377
117
+ msgid "The backup directory is not writeable! Please check the permissions for writing to your backup directory and try again."
118
+ msgstr "备份文件夹无法写入!请检查你的备份文件夹的写权限设置并重试。"
119
+
120
+ #: wp-db-backup.php:434
121
+ msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
122
+ msgstr "按住 <code>[SHIFT]</code> 的同时点击可以选中多个复选框"
123
+
124
+ #: wp-db-backup.php:474
125
+ msgid "Change"
126
+ msgstr "更改"
127
+
128
+ #: wp-db-backup.php:483
129
+ msgid "Save"
130
+ msgstr "保存"
131
+
132
+ #: wp-db-backup.php:566
133
+ #: wp-db-backup.php:571
134
+ #: wp-db-backup.php:1126
135
+ msgid "Backup"
136
+ msgstr "备份"
137
+
138
+ #: wp-db-backup.php:646
139
+ #: wp-db-backup.php:649
140
+ msgid "There was an error writing a line to the backup script:"
141
+ msgstr "在向备份脚本写入一行时发生错误:"
142
+
143
+ #: wp-db-backup.php:681
144
+ msgid "Subsequent errors have been omitted from this log."
145
+ msgstr "之后的错误已经被省略。"
146
+
147
+ #: wp-db-backup.php:715
148
+ msgid "Error getting table details"
149
+ msgstr "无法获取数据表的详细信息"
150
+
151
+ #: wp-db-backup.php:723
152
+ #, php-format
153
+ msgid "Delete any existing table %s"
154
+ msgstr "删除任何存在的 %s 数据表"
155
+
156
+ #: wp-db-backup.php:732
157
+ #, php-format
158
+ msgid "Table structure of table %s"
159
+ msgstr " %s 数据表的结构"
160
+
161
+ #: wp-db-backup.php:738
162
+ #, php-format
163
+ msgid "Error with SHOW CREATE TABLE for %s."
164
+ msgstr "无法显示创建的 %s 数据表"
165
+
166
+ #: wp-db-backup.php:745
167
+ #, php-format
168
+ msgid "Error getting table structure of %s"
169
+ msgstr "无法获取 %s 的数据表结构"
170
+
171
+ #: wp-db-backup.php:753
172
+ #, php-format
173
+ msgid "Data contents of table %s"
174
+ msgstr " %s 数据表的内容"
175
+
176
+ #: wp-db-backup.php:823
177
+ #, php-format
178
+ msgid "End of data contents of table %s"
179
+ msgstr " %s 数据表的内容结束"
180
+
181
+ #: wp-db-backup.php:839
182
+ msgid "The backup directory is not writeable!"
183
+ msgstr "无法写入备份文件夹!"
184
+
185
+ #: wp-db-backup.php:974
186
+ #, php-format
187
+ msgid "File not found:%s"
188
+ msgstr "无法找到文件:%s"
189
+
190
+ #: wp-db-backup.php:974
191
+ msgid "Return to Backup"
192
+ msgstr "返回备份页面"
193
+
194
+ #: wp-db-backup.php:983
195
+ #, php-format
196
+ msgid "File %s does not exist!"
197
+ msgstr "文件 %s 不存在!"
198
+
199
+ #: wp-db-backup.php:990
200
+ #, php-format
201
+ msgid ""
202
+ "Attached to this email is\n"
203
+ " %1s\n"
204
+ " Size:%2s kilobytes\n"
205
+ msgstr ""
206
+ "该电子邮件的附件\n"
207
+ " %1s\n"
208
+ " 大小:%2s KB\n"
209
+
210
+ #: wp-db-backup.php:991
211
+ msgid "Database Backup"
212
+ msgstr "数据库备份"
213
+
214
+ #: wp-db-backup.php:994
215
+ #: wp-db-backup.php:1041
216
+ msgid "The following errors were reported:"
217
+ msgstr "发现以下错误:"
218
+
219
+ #: wp-db-backup.php:999
220
+ msgid "ERROR: The mail application has failed to deliver the backup."
221
+ msgstr "错误:通过电子邮件发送备份文件失败。"
222
+
223
+ #: wp-db-backup.php:1016
224
+ msgid "Backup Successful"
225
+ msgstr "备份成功"
226
+
227
+ #: wp-db-backup.php:1020
228
+ #, php-format
229
+ msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
230
+ msgstr "即将开始下载备份文件: <a href=\"%1s\">%2s</a> 。"
231
+
232
+ #: wp-db-backup.php:1028
233
+ #, php-format
234
+ msgid "Your backup has been emailed to %s"
235
+ msgstr "你的备份文件已经通过电子邮件发送至 %s"
236
+
237
+ #: wp-db-backup.php:1031
238
+ msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
239
+ msgstr "你的备份文件已经被保存至服务器。如果希望现在下载,请右击并选择 \"另存为\""
240
+
241
+ #: wp-db-backup.php:1032
242
+ #, php-format
243
+ msgid "%s bytes"
244
+ msgstr "%s 字节"
245
+
246
+ #: wp-db-backup.php:1068
247
+ msgid "Scheduled Backup Options Saved!"
248
+ msgstr "定时备份设置已保存!"
249
+
250
+ #: wp-db-backup.php:1095
251
+ msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
252
+ msgstr "警告: 备份文件夹<strong>不存在</strong>,而且无法自动创建。"
253
+
254
+ #: wp-db-backup.php:1096
255
+ #, php-format
256
+ msgid "Using your FTP client, try to create the backup directory yourself: %s"
257
+ msgstr "请使用你的FTP客户端来自行创建如下的备份目录:%s"
258
+
259
+ #: wp-db-backup.php:1100
260
+ #: wp-db-backup.php:1111
261
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
262
+ msgstr "警告: 备份文件夹<strong>无法</strong>写入!无法创建备份文件。"
263
+
264
+ #: wp-db-backup.php:1101
265
+ #, php-format
266
+ msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
267
+ msgstr "请使用你的FTP客户端来设置备份目录的权限为 %1$s 或者 %2$s: %3$s"
268
+
269
+ #: wp-db-backup.php:1113
270
+ msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
271
+ msgstr "这个问题可能是由于当前服务器的 <code>safe_mode</code> 文件的所有权限制引起的,这个文件限制了WordPress之类的网络应用程序创建文件的权限。"
272
+
273
+ #: wp-db-backup.php:1115
274
+ #, php-format
275
+ msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
276
+ msgstr "请使用你的FTP客户端来删除并重新创建如下的备份目录:%s ,这样可能有助于解决当前的问题"
277
+
278
+ #: wp-db-backup.php:1129
279
+ msgid "Tables"
280
+ msgstr "数据表"
281
+
282
+ #: wp-db-backup.php:1131
283
+ msgid "These core WordPress tables will always be backed up:"
284
+ msgstr "以下 WordPress 核心数据表会默认备份:"
285
+
286
+ #: wp-db-backup.php:1136
287
+ msgid "Exclude spam comments"
288
+ msgstr "不包括垃圾评论"
289
+
290
+ #: wp-db-backup.php:1139
291
+ msgid "Exclude post revisions"
292
+ msgstr "不包括日志修订"
293
+
294
+ #: wp-db-backup.php:1150
295
+ msgid "You may choose to include any of the following tables:"
296
+ msgstr "你可以选择备份以下的任何数据表:"
297
+
298
+ #: wp-db-backup.php:1164
299
+ msgid "Backup Options"
300
+ msgstr "备份选项"
301
+
302
+ #: wp-db-backup.php:1165
303
+ msgid "What to do with the backup file:"
304
+ msgstr "怎样处理备份文件:"
305
+
306
+ #: wp-db-backup.php:1169
307
+ msgid "Save to server"
308
+ msgstr "保存至服务器"
309
+
310
+ #: wp-db-backup.php:1174
311
+ msgid "Download to your computer"
312
+ msgstr "下载至本地电脑"
313
+
314
+ #: wp-db-backup.php:1178
315
+ #: wp-db-backup.php:1235
316
+ msgid "Email backup to:"
317
+ msgstr "通过电子邮件发送备份至:"
318
+
319
+ #: wp-db-backup.php:1185
320
+ msgid "Backup now!"
321
+ msgstr "立即备份!"
322
+
323
+ #: wp-db-backup.php:1188
324
+ msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
325
+ msgstr "警告:备份文件夹<strong>无法</strong>写入!"
326
+
327
+ #: wp-db-backup.php:1199
328
+ msgid "Scheduled Backup"
329
+ msgstr "定时备份"
330
+
331
+ #: wp-db-backup.php:1206
332
+ #, php-format
333
+ msgid "Next Backup: %s"
334
+ msgstr "下一次备份时间:%s"
335
+
336
+ #: wp-db-backup.php:1211
337
+ #, php-format
338
+ msgid "Last WP-Cron Daily Execution: %s"
339
+ msgstr "上一次 WP-Cron 每日执行时间:%s"
340
+
341
+ #: wp-db-backup.php:1212
342
+ #, php-format
343
+ msgid "Next WP-Cron Daily Execution: %s"
344
+ msgstr "下一次 WP-Cron 每日备份时间:%s"
345
+
346
+ #: wp-db-backup.php:1217
347
+ msgid "Schedule: "
348
+ msgstr "定时任务:"
349
+
350
+ #: wp-db-backup.php:1220
351
+ msgid "None"
352
+ msgstr "无"
353
+
354
+ #: wp-db-backup.php:1220
355
+ msgid "Daily"
356
+ msgstr "每日"
357
+
358
+ #: wp-db-backup.php:1243
359
+ msgid "Tables to include in the scheduled backup:"
360
+ msgstr "定时备份包含的数据表:"
361
+
362
+ #: wp-db-backup.php:1253
363
+ #, fuzzy
364
+ msgid "Schedule backup"
365
+ msgstr "定时备份"
366
+
367
+ #: wp-db-backup.php:1278
368
+ msgid "Never"
369
+ msgstr "从不"
370
+
371
+ #: wp-db-backup.php:1283
372
+ #, php-format
373
+ msgid "%s seconds"
374
+ msgstr "%s 秒"
375
+
376
+ #: wp-db-backup.php:1316
377
+ msgid "Once Weekly"
378
+ msgstr "每周"
379
+
380
+ #: wp-db-backup.php:1329
381
+ #, php-format
382
+ msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin. Hence, this plugin is automatically disabled. Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
383
+ msgstr "你的 %1s 版 WordPress 缺少一些重要的安全特性,由于在该版本上运行 WP-DB-Backup 插件极不安全,我们已经自动禁用了该插件。请<a href=\"%2s\">升级 WordPress </a>至较新的版本。"
384
+
385
+ #: wp-db-backup.php:1347
386
+ msgid "You are not allowed to perform backups."
387
+ msgstr "你没有进行备份的权限。"
388
+
389
+ #: wp-db-backup.php:1362
390
+ #, php-format
391
+ msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s. The attempt has been halted."
392
+ msgstr "该站点尝试未授权地访问位于 %1s 的你的数据库。访问已经被终止。"
393
+
394
+ #: wp-db-backup.php:1373
395
+ msgid "Cheatin' uh ?"
396
+ msgstr "想骗我吗?"
397
+
wp-db-backup.php CHANGED
@@ -4,8 +4,8 @@ Plugin Name: WordPress Database Backup
4
  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 &rarr; Backup</a> to get started.
6
  Author: Austin Matzko
7
- Author URI: http://www.ilfilosofo.com/blog/
8
- Version: 2.1.5
9
 
10
  Development continued from that done by Skippy (http://www.skippy.net/)
11
 
@@ -15,7 +15,7 @@ in turn was derived from phpMyAdmin.
15
  Many thanks to Owen (http://asymptomatic.net/wp/) for his patch
16
  http://dev.wp-plugins.org/ticket/219
17
 
18
- Copyright 2007 Austin Matzko (email : if.website at gmail.com)
19
 
20
  This program is free software; you can redistribute it and/or modify
21
  it under the terms of the GNU General Public License as published by
@@ -38,9 +38,22 @@ Copyright 2007 Austin Matzko (email : if.website at gmail.com)
38
  */
39
 
40
  $rand = substr( md5( md5( DB_PASSWORD ) ), -5 );
41
- define('WP_BACKUP_DIR', 'wp-content/backup-' . $rand);
 
 
 
42
 
43
- define('ROWS_PER_SEGMENT', 100);
 
 
 
 
 
 
 
 
 
 
44
 
45
  /**
46
  * Set MOD_EVASIVE_OVERRIDE to true
@@ -48,14 +61,15 @@ define('ROWS_PER_SEGMENT', 100);
48
  * if the backup stops prematurely.
49
  */
50
  // define('MOD_EVASIVE_OVERRIDE', false);
51
- define('MOD_EVASIVE_DELAY', '500');
 
 
52
 
53
  class wpdbBackup {
54
 
55
  var $backup_complete = false;
56
  var $backup_file = '';
57
  var $backup_filename;
58
- var $backup_dir = WP_BACKUP_DIR;
59
  var $core_table_names;
60
  var $errors = array();
61
  var $basename;
@@ -80,6 +94,7 @@ class wpdbBackup {
80
 
81
  function wpdbBackup() {
82
  global $table_prefix, $wpdb;
 
83
  add_action('init', array(&$this, 'init_textdomain'));
84
  add_action('wp_db_backup_cron', array(&$this, 'cron_backup'));
85
  add_action('wp_cron_daily', array(&$this, 'wp_cron_daily'));
@@ -107,8 +122,8 @@ class wpdbBackup {
107
  $wpdb->users,
108
  $wpdb->usermeta,
109
  );
110
-
111
- $this->backup_dir = trailingslashit(apply_filters('wp_db_b_backup_dir',$this->backup_dir));
112
  $this->basename = 'wp-db-backup';
113
 
114
  $this->referer_check_key = $this->basename . '-download_' . DB_NAME;
@@ -116,11 +131,15 @@ class wpdbBackup {
116
  if ( function_exists('wp_create_nonce') )
117
  $query_args = array_merge( $query_args, array('_wpnonce' => wp_create_nonce($this->referer_check_key)) );
118
  $this->page_url = add_query_arg( $query_args, get_option('siteurl') . '/wp-admin/edit.php');
119
-
120
  if (isset($_POST['do_backup'])) {
121
  $this->wp_secure('fatal');
122
  check_admin_referer($this->referer_check_key);
123
  $this->can_user_backup('main');
 
 
 
 
 
124
  switch($_POST['do_backup']) {
125
  case 'backup':
126
  add_action('init', array(&$this, 'perform_backup'));
@@ -151,7 +170,7 @@ class wpdbBackup {
151
  switch($via) {
152
  case 'smtp':
153
  case 'email':
154
- $success = $this->deliver_backup($this->backup_file, 'smtp', $_GET['recipient']);
155
  $this->error_display( 'frame' );
156
  if ( $success ) {
157
  echo '
@@ -160,6 +179,7 @@ class wpdbBackup {
160
  ';
161
  echo '
162
  alert("' . __('Backup Complete!','wp-db-backup') . '");
 
163
  </script>
164
  ';
165
  }
@@ -180,16 +200,14 @@ class wpdbBackup {
180
  }
181
 
182
  function init_textdomain() {
183
- load_plugin_textdomain('wp-db-backup');
184
  }
185
 
186
  function build_backup_script() {
187
  global $table_prefix, $wpdb;
188
 
189
  echo "<div class='wrap'>";
190
- //echo "<pre>" . print_r($_POST, 1) . "</pre>";
191
- echo '<h2>' . __('Backup','wp-db-backup') . '</h2>
192
- <fieldset class="options"><legend>' . __('Progress','wp-db-backup') . '</legend>
193
  <p><strong>' .
194
  __('DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:','wp-db-backup').
195
  '</strong></p>
@@ -203,8 +221,12 @@ class wpdbBackup {
203
  <div id="progress_message"></div>
204
  <div id="errors"></div>
205
  </fieldset>
206
- <iframe id="backuploader" src="about:blank" style="border:0px solid white;height:1em;width:1em;"></iframe>
207
- <script type="text/javascript"><!--//
 
 
 
 
208
  function setMeter(pct) {
209
  var meter = document.getElementById("meter");
210
  meter.style.width = pct + "%";
@@ -221,7 +243,7 @@ class wpdbBackup {
221
 
222
  function backup(table, segment) {
223
  var fram = document.getElementById("backuploader");
224
- fram.src = "' . $this->page_url . '&fragment=" + table + ":" + segment + ":' . $this->backup_filename . '";
225
  }
226
 
227
  var curStep = 0;
@@ -241,18 +263,21 @@ class wpdbBackup {
241
  case 'http':
242
  echo '
243
  setProgress("' . sprintf(__("Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download...",'wp-db-backup'), $download_uri) . '");
 
244
  fram.src = "' . $download_uri . '";
245
  ';
246
  break;
247
  case 'smtp':
248
  echo '
249
  setProgress("' . sprintf(__("Backup complete, sending <a href=\\\"%s\\\">backup</a> via email...",'wp-db-backup'), $download_uri) . '");
 
250
  fram.src = "' . $download_uri . '&via=email&recipient=' . $_POST['backup_recipient'] . '";
251
  ';
252
  break;
253
  default:
254
  echo '
255
  setProgress("' . sprintf(__("Backup complete, download <a href=\\\"%s\\\">here</a>.",'wp-db-backup'), $download_uri) . '");
 
256
  ';
257
  }
258
 
@@ -298,9 +323,11 @@ class wpdbBackup {
298
  }
299
 
300
  nextStep();
301
- //--></script>
 
302
  </div>
303
  ';
 
304
  }
305
 
306
  function backup_fragment($table, $segment, $filename) {
@@ -318,8 +345,8 @@ class wpdbBackup {
318
  }
319
  }
320
 
321
- if (is_writable(ABSPATH . $this->backup_dir)) {
322
- $this->fp = $this->open(ABSPATH . $this->backup_dir . $filename, 'a');
323
  if(!$this->fp) {
324
  $this->error(__('Could not open the backup file for writing!','wp-db-backup'));
325
  $this->error(array('loc' => 'frame', 'kind' => 'fatal', 'msg' => __('The backup file could not be saved. Please check the permissions for writing to your backup directory and try again.','wp-db-backup')));
@@ -371,23 +398,200 @@ class wpdbBackup {
371
  $this->backup_file = $this->db_backup($core_tables, $also_backup);
372
  if (FALSE !== $this->backup_file) {
373
  if ('smtp' == $_POST['deliver']) {
374
- $this->deliver_backup($this->backup_file, $_POST['deliver'], $_POST['backup_recipient']);
375
  wp_redirect($this->page_url);
376
  } elseif ('http' == $_POST['deliver']) {
377
  $download_uri = add_query_arg('backup',$this->backup_file,$this->page_url);
378
  wp_redirect($download_uri);
 
379
  }
380
  // we do this to say we're done.
381
  $this->backup_complete = true;
382
  }
383
  }
384
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  function admin_menu() {
386
- add_management_page(__('Backup','wp-db-backup'), __('Backup','wp-db-backup'), 'import', $this->basename, array(&$this, 'backup_menu'));
 
387
  }
388
 
389
  function fragment_menu() {
390
- add_management_page(__('Backup','wp-db-backup'), __('Backup','wp-db-backup'), 'import', $this->basename, array(&$this, 'build_backup_script'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
  }
392
 
393
  /**
@@ -441,11 +645,11 @@ class wpdbBackup {
441
  */
442
  function stow($query_line) {
443
  if ($this->gzip()) {
444
- if(FALSE === @gzwrite($this->fp, $query_line))
445
- $this->error(__('There was an error writing a line to the backup script:','wp-db-backup') . '&nbsp;&nbsp;' . $query_line);
446
  } else {
447
  if(FALSE === @fwrite($this->fp, $query_line))
448
- $this->error(__('There was an error writing a line to the backup script:','wp-db-backup') . '&nbsp;&nbsp;' . $query_line);
449
  }
450
  }
451
 
@@ -478,15 +682,15 @@ class wpdbBackup {
478
  $err_list = array_slice(array_merge( (array) $errs['fatal'], (array) $errs['warn']), 0, 10);
479
  if ( 10 == count( $err_list ) )
480
  $err_list[9] = __('Subsequent errors have been omitted from this log.','wp-db-backup');
481
- $wrap = ( 'frame' == $loc ) ? "<script type=\"text/javascript\">\n var msgList = '';\n %1\$s \n alert(msgList); \n </script>" : '%1$s';
482
  $line = ( 'frame' == $loc ) ?
483
- "try{ window.parent.addError('%1\$s'); msgList += ' %1\$s'; } catch(e) { msgList += ' %1\$s';}\n" :
484
  "%1\$s<br />\n";
485
  foreach( (array) $err_list as $err )
486
- $msg .= sprintf($line,$err);
487
  $msg = sprintf($wrap,$msg);
488
  if ( count($errs['fatal'] ) ) {
489
- if ( function_exists('wp_die') && 'frame' != $loc ) wp_die($msg);
490
  else die($msg);
491
  }
492
  else {
@@ -561,9 +765,8 @@ class wpdbBackup {
561
  (0 === strpos(strtolower($struct->Type), 'smallint')) ||
562
  (0 === strpos(strtolower($struct->Type), 'mediumint')) ||
563
  (0 === strpos(strtolower($struct->Type), 'int')) ||
564
- (0 === strpos(strtolower($struct->Type), 'bigint')) ||
565
- (0 === strpos(strtolower($struct->Type), 'timestamp')) ) {
566
- $defs[strtolower($struct->Field)] = $struct->Default;
567
  $ints[strtolower($struct->Field)] = "1";
568
  }
569
  }
@@ -580,8 +783,17 @@ class wpdbBackup {
580
  }
581
 
582
  do {
 
 
 
 
 
 
 
 
 
583
  if ( !ini_get('safe_mode')) @set_time_limit(15*60);
584
- $table_data = $wpdb->get_results("SELECT * FROM $table LIMIT {$row_start}, {$row_inc}", ARRAY_A);
585
 
586
  $entries = 'INSERT INTO ' . $this->backquote($table) . ' VALUES (';
587
  // \x08\\x09, not required
@@ -594,7 +806,7 @@ class wpdbBackup {
594
  if ($ints[strtolower($key)]) {
595
  // make sure there are no blank spots in the insert syntax,
596
  // yet try to avoid quotation marks around integers
597
- $value = ( '' === $value) ? $defs[strtolower($key)] : $value;
598
  $values[] = ( '' === $value ) ? "''" : $value;
599
  } else {
600
  $values[] = "'" . str_replace($search, $replace, $this->sql_addslashes($value)) . "'";
@@ -620,8 +832,8 @@ class wpdbBackup {
620
  function db_backup($core_tables, $other_tables) {
621
  global $table_prefix, $wpdb;
622
 
623
- if (is_writable(ABSPATH . $this->backup_dir)) {
624
- $this->fp = $this->open(ABSPATH . $this->backup_dir . $this->backup_filename);
625
  if(!$this->fp) {
626
  $this->error(__('Could not open the backup file for writing!','wp-db-backup'));
627
  return false;
@@ -671,7 +883,7 @@ class wpdbBackup {
671
  * @param string $message
672
  * @return bool
673
  */
674
- function send_mail( $to, $subject, $message, $diskfile ) {
675
  global $phpmailer;
676
 
677
  $filename = basename($diskfile);
@@ -751,14 +963,15 @@ class wpdbBackup {
751
 
752
  $result = @wp_mail($to, $subject, $message, $headers);
753
  }
 
754
  return $result;
755
 
756
  }
757
 
758
- function deliver_backup($filename = '', $delivery = 'http', $recipient = '') {
759
  if ('' == $filename) { return false; }
760
 
761
- $diskfile = ABSPATH . $this->backup_dir . $filename;
762
  if ('http' == $delivery) {
763
  if (! file_exists($diskfile))
764
  $this->error(array('kind' => 'fatal', 'msg' => sprintf(__('File not found:%s','wp-db-backup'), "&nbsp;<strong>$filename</strong><br />") . '<br /><a href="' . $this->page_url . '">' . __('Return to Backup','wp-db-backup') . '</a>'));
@@ -782,8 +995,13 @@ class wpdbBackup {
782
 
783
  if ( false == $success ) {
784
  $msg = __('The following errors were reported:','wp-db-backup') . "\n ";
785
- $msg = ( function_exists('error_get_last') ) ? error_get_last('message') : __('ERROR: The mail application has failed to deliver the backup.','wp-db-backup');
786
- $this->error($msg);
 
 
 
 
 
787
  } else {
788
  unlink($diskfile);
789
  }
@@ -798,11 +1016,11 @@ class wpdbBackup {
798
 
799
  // did we just do a backup? If so, let's report the status
800
  if ( $this->backup_complete ) {
801
- $feedback = '<div class="updated"><p>' . __('Backup Successful','wp-db-backup') . '!';
802
  $file = $this->backup_file;
803
  switch($_POST['deliver']) {
804
  case 'http':
805
- $feedback .= '<br />' . sprintf(__('Your backup file: <a href="%1s">%2s</a> should begin downloading shortly.','wp-db-backup'), get_option('siteurl') . "/{$this->backup_dir}{$this->backup_file}", $this->backup_file);
806
  break;
807
  case 'smtp':
808
  if (! is_email($_POST['backup_recipient'])) {
@@ -814,7 +1032,7 @@ class wpdbBackup {
814
  break;
815
  case 'none':
816
  $feedback .= '<br />' . __('Your backup file has been saved on the server. If you would like to download it now, right click and select "Save As"','wp-db-backup');
817
- $feedback .= ':<br /> <a href="' . get_option('siteurl') . "/{$this->backup_dir}$file\">$file</a> : " . sprintf(__('%s bytes','wp-db-backup'), filesize(ABSPATH . $this->backup_dir . $file));
818
  }
819
  $feedback .= '</p></div>';
820
  }
@@ -823,7 +1041,7 @@ class wpdbBackup {
823
  $this->wp_secure();
824
 
825
  if (count($this->errors)) {
826
- $feedback .= '<div class="updated error"><p><strong>' . __('The following errors were reported:','wp-db-backup') . '</strong></p>';
827
  $feedback .= '<p>' . $this->error_display( 'main', false ) . '</p>';
828
  $feedback .= "</p></div>";
829
  }
@@ -839,7 +1057,7 @@ class wpdbBackup {
839
  $interval = ( isset($scheds[$name]['interval']) ) ?
840
  (int) $scheds[$name]['interval'] : 0;
841
  update_option('wp_cron_backup_schedule', $name, FALSE);
842
- if ( ! 0 == $interval ) {
843
  wp_schedule_event(time() + $interval, $name, 'wp_db_backup_cron');
844
  }
845
  }
@@ -850,7 +1068,7 @@ class wpdbBackup {
850
  if (is_email($_POST['cron_backup_recipient'])) {
851
  update_option('wp_cron_backup_recipient', $_POST['cron_backup_recipient'], FALSE);
852
  }
853
- $feedback .= '<div class="updated"><p>' . __('Scheduled Backup Options Saved!','wp-db-backup') . '</p></div>';
854
  endif;
855
 
856
  $other_tables = array();
@@ -871,94 +1089,136 @@ class wpdbBackup {
871
  return;
872
 
873
  // Give the new dirs the same perms as wp-content.
874
- $stat = stat( ABSPATH . 'wp-content' );
875
- $dir_perms = $stat['mode'] & 0000777; // Get the permission bits.
876
-
877
- if ( !file_exists( ABSPATH . $this->backup_dir) ) {
878
- if ( @ mkdir( ABSPATH . $this->backup_dir) ) {
879
- @ chmod( ABSPATH . $this->backup_dir, $dir_perms);
880
- } else {
881
- echo '<div class="updated error"><p style="text-align:center">' . __('WARNING: Your wp-content directory is <strong>NOT</strong> writable! We can not create the backup directory.','wp-db-backup') . '<br />' . ABSPATH . $this->backup_dir . "</p></div>";
 
 
 
 
 
 
882
  $WHOOPS = TRUE;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
883
  }
884
  }
 
885
 
886
- if ( !is_writable( ABSPATH . $this->backup_dir) ) {
887
- echo '<div class="updated error"><p style="text-align:center">' . __('WARNING: Your backup directory is <strong>NOT</strong> writable! We can not create the backup directory.','wp-db-backup') . '<br />' . ABSPATH . "</p></div>";
888
- }
889
 
890
- if ( !file_exists( ABSPATH . $this->backup_dir . 'index.php') )
891
- @ touch( ABSPATH . $this->backup_dir . "index.php");
892
  ?><div class='wrap'>
893
  <h2><?php _e('Backup','wp-db-backup') ?></h2>
894
  <form method="post" action="">
895
  <?php if ( function_exists('wp_nonce_field') ) wp_nonce_field($this->referer_check_key); ?>
896
  <fieldset class="options"><legend><?php _e('Tables','wp-db-backup') ?></legend>
897
- <table align="center" cellspacing="5" cellpadding="5"><tr><td width="50%" align="left" class="alternate" valign="top">
898
- <p><?php _e('These core WordPress tables will always be backed up:','wp-db-backup') ?></p><ul><?php
 
899
  foreach ($wp_backup_default_tables as $table) {
900
- echo "<li><input type='hidden' name='core_tables[]' value='$table' />$table</li>";
 
 
 
 
 
 
 
 
901
  }
902
- ?></ul></td><td width="50%" align="left" valign="top"><?php
903
- if (count($other_tables) > 0) {
904
- echo '<p>' . __('You may choose to include any of the following tables:','wp-db-backup') . '</p>';
905
- ?><script type="text/javascript">
906
- //<![CDATA[
907
- var wpdbBackup = function() {};
908
- (function(b){
909
- var n = function(c) {
910
- var p = document.getElementsByTagName("input");
911
- for(var i=0;i<p.length;i++)
912
- if('other_tables[]' == p[i].getAttribute('name'))
913
- p[i].checked = c;
914
- }
915
- b.a = function() { n(true) }
916
- b.n = function() { n(false) }
917
-
918
- document.write('<p><a href="javascript:void(0)" onclick="wpdbBackup.a()"><?php _e('Select all','wp-db-backup') ?></a> / <a href="javascript:void(0)" onclick="wpdbBackup.n()"><?php _e('Select none','wp-db-backup') ?></a></p>');
919
- })(wpdbBackup)
920
- //]]>
921
- </script><?php
922
  foreach ($other_tables as $table) {
923
- echo "<label style=\"display:block;\"><input type='checkbox' name='other_tables[]' value='{$table}' /> {$table}</label>";
 
 
924
  }
 
925
  }
926
- ?></td></tr></table></fieldset><?php
927
- $backup_opts = '<fieldset class="options"><legend>' . __('Backup Options','wp-db-backup') . "</legend>\n";
928
- $backup_opts .= __('What to do with the backup file:','wp-db-backup') . '<br /> <label for="do_save" style="display:block;"><input type="radio" id="do_save" name="deliver" value="none" style="border:none;" />' . "\n";
929
- $backup_opts .= __('Save to server','wp-db-backup') . " ({$this->backup_dir})</label>\n";
930
- $backup_opts .= '<label for="do_download" style="display:block;"><input type="radio" checked="checked" id="do_download" name="deliver" value="http" style="border:none;" />' . "\n";
931
- $backup_opts .= __('Download to your computer','wp-db-backup') . "</label>\n" . '<label for="do_email"><input type="radio" name="deliver" id="do_email" value="smtp" style="border:none;" />' . "\n";
932
- $backup_opts .= __('Email backup to:','wp-db-backup') . '</label><input type="text" name="backup_recipient" size="20" value="' . get_option('admin_email') . '" />';
933
- if ( ! $WHOOPS )
934
- $backup_opts .= '<input type="hidden" name="do_backup" id="do_backup" value="backup" /> <p class="submit"><input type="submit" name="submit" onclick="document.getElementById(\'do_backup\').value=\'fragments\';" value="' . __('Backup','wp-db-backup') . '!" /></p>';
935
- else
936
- $backup_opts .= '<p class="alternate">' . __('WARNING: Your backup directory is <strong>NOT</strong> writable!','wp-db-backup') . '</p>';
937
- $backup_opts .= '</fieldset>';
938
- echo apply_filters('wp_db_b_backup_opts', $backup_opts);
939
- echo '</form>';
940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
941
  // this stuff only displays if some sort of wp-cron is available
942
  $cron = ( function_exists('wp_schedule_event') ) ? true : false; // wp-cron in WP 2.1+
943
  $cron_old = ( function_exists('wp_cron_init') && ! $cron ) ? true : false; // wp-cron plugin by Skippy
944
  if ( $cron_old || $cron ) :
945
  echo '<fieldset class="options"><legend>' . __('Scheduled Backup','wp-db-backup') . '</legend>';
946
- $datetime = get_option('date_format') . ' @ ' . get_option('time_format');
947
  if ( $cron ) :
948
  $next_cron = wp_next_scheduled('wp_db_backup_cron');
949
  if ( ! empty( $next_cron ) ) :
950
- echo '<p>' . __('Next Backup','wp-db-backup') . ': ';
951
- echo gmdate($datetime, $next_cron + (get_option('gmt_offset') * 3600)) . '</p>';
 
 
 
952
  endif;
953
  elseif ( $cron_old ) :
954
- echo '<p>' . __('Last WP-Cron Daily Execution','wp-db-backup') . ': ' . gmdate($datetime, get_option('wp_cron_daily_lastrun') + (get_option('gmt_offset') * 3600)) . '<br />';
955
- echo __('Next WP-Cron Daily Execution','wp-db-backup') . ': ' . gmdate($datetime, (get_option('wp_cron_daily_lastrun') + (get_option('gmt_offset') * 3600) + 86400)) . '</p>';
956
  endif;
957
  ?><form method="post" action="">
958
  <?php if ( function_exists('wp_nonce_field') ) wp_nonce_field($this->referer_check_key); ?>
959
- <table width="100%" cellpadding="5" cellspacing="5">
960
- <tr><td align="center"><?php
961
- echo __('Schedule: ','wp-db-backup');
962
  if ( $cron_old ) :
963
  $wp_cron_backup_schedule = get_option('wp_cron_backup_schedule');
964
  $schedule = array(0 => __('None','wp-db-backup'), 1 => __('Daily','wp-db-backup'));
@@ -967,35 +1227,34 @@ class wpdbBackup {
967
  if ($wp_cron_backup_schedule == $value) {
968
  echo ' checked="checked" ';
969
  }
970
- echo 'value="' . $value . '" /> ' . __($name,'wp-db-backup');
971
  }
972
  elseif ( $cron ) :
973
  echo apply_filters('wp_db_b_schedule_choices', wp_get_schedules() );
974
  endif;
975
- echo '</td><td align="center">';
976
  $cron_recipient = get_option('wp_cron_backup_recipient');
977
  if (! is_email($cron_recipient)) {
978
  $cron_recipient = get_option('admin_email');
979
  }
980
- $cron_recipient_input = '<label for="cron_backup_recipient">' . __('Email backup to:','wp-db-backup') . ' <input type="text" name="cron_backup_recipient" id="cron_backup_recipient" size="20" value="' . $cron_recipient . '" /></label>';
981
  echo apply_filters('wp_db_b_cron_recipient_input', $cron_recipient_input);
982
- echo '</td></tr>';
983
  $cron_tables = get_option('wp_cron_backup_tables');
984
  if (! is_array($cron_tables)) {
985
  $cron_tables = array();
986
  }
987
  if (count($other_tables) > 0) {
988
- echo '<tr><td colspan="2" align="left">' . __('Tables to include:','wp-db-backup') . '<br />';
989
  foreach ($other_tables as $table) {
990
- echo '<input type="checkbox" ';
991
  if (in_array($table, $cron_tables)) {
992
  echo 'checked="checked" ';
993
  }
994
- echo "name='wp_cron_backup_tables[]' value='{$table}' /> {$table}<br />";
995
  }
996
- echo '</td></tr>';
997
  }
998
- echo '<tr><td colspan="2" align="center"><input type="hidden" name="wp_cron_backup_options" value="SET" /><p class="submit"><input type="submit" name="submit" value="' . __('Submit','wp-db-backup') . '" /></p></td></tr></table></form>';
999
  echo '</fieldset>';
1000
  endif; // end of wp_cron (legacy) section
1001
 
@@ -1019,7 +1278,7 @@ class wpdbBackup {
1019
  asort( $sort );
1020
  $schedule_sorted = array();
1021
  foreach ( (array) $sort as $key => $value ) $schedule_sorted[$key] = $schedule[$key];
1022
- $menu = '<ul style="list-style: none; text-align: left">';
1023
  $schedule = array_merge( array( 'never' => array( 'interval' => 0, 'display' => __('Never','wp-db-backup') ) ),
1024
  (array) $schedule_sorted );
1025
  foreach ( $schedule as $name => $settings) {
@@ -1053,7 +1312,7 @@ class wpdbBackup {
1053
  $recipient = get_option('wp_cron_backup_recipient');
1054
  $backup_file = $this->db_backup($core_tables, $other_tables);
1055
  if (FALSE !== $backup_file)
1056
- return $this->deliver_backup($backup_file, 'smtp', $recipient);
1057
  else return false;
1058
  }
1059
 
@@ -1083,6 +1342,9 @@ class wpdbBackup {
1083
  */
1084
  function can_user_backup($loc = 'main') {
1085
  $can = false;
 
 
 
1086
  if ( ( $this->wp_secure('fatal', $loc) ) && current_user_can('import') )
1087
  $can = $this->verify_nonce($_REQUEST['_wpnonce'], $this->referer_check_key, $loc);
1088
  if ( false == $can )
4
  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 &rarr; Backup</a> to get started.
6
  Author: Austin Matzko
7
+ Author URI: http://www.ilfilosofo.com/
8
+ Version: 2.2
9
 
10
  Development continued from that done by Skippy (http://www.skippy.net/)
11
 
15
  Many thanks to Owen (http://asymptomatic.net/wp/) for his patch
16
  http://dev.wp-plugins.org/ticket/219
17
 
18
+ Copyright 2008 Austin Matzko (email : if.website at gmail.com)
19
 
20
  This program is free software; you can redistribute it and/or modify
21
  it under the terms of the GNU General Public License as published by
38
  */
39
 
40
  $rand = substr( md5( md5( DB_PASSWORD ) ), -5 );
41
+ global $wpdbb_content_dir, $wpdbb_content_url, $wpdbb_plugin_dir;
42
+ $wpdbb_content_dir = ( defined('WP_CONTENT_DIR') ) ? WP_CONTENT_DIR : ABSPATH . 'wp-content';
43
+ $wpdbb_content_url = ( defined('WP_CONTENT_URL') ) ? WP_CONTENT_URL : get_option('siteurl') . '/wp-content';
44
+ $wpdbb_plugin_dir = ( defined('WP_PLUGIN_DIR') ) ? WP_PLUGIN_DIR : $wpdbb_content_dir . '/plugins';
45
 
46
+ if ( ! defined('WP_BACKUP_DIR') ) {
47
+ define('WP_BACKUP_DIR', $wpdbb_content_dir . '/backup-' . $rand . '/');
48
+ }
49
+
50
+ if ( ! defined('WP_BACKUP_URL') ) {
51
+ define('WP_BACKUP_URL', $wpdbb_content_url . '/backup-' . $rand . '/');
52
+ }
53
+
54
+ if ( ! defined('ROWS_PER_SEGMENT') ) {
55
+ define('ROWS_PER_SEGMENT', 100);
56
+ }
57
 
58
  /**
59
  * Set MOD_EVASIVE_OVERRIDE to true
61
  * if the backup stops prematurely.
62
  */
63
  // define('MOD_EVASIVE_OVERRIDE', false);
64
+ if ( ! defined('MOD_EVASIVE_DELAY') ) {
65
+ define('MOD_EVASIVE_DELAY', '500');
66
+ }
67
 
68
  class wpdbBackup {
69
 
70
  var $backup_complete = false;
71
  var $backup_file = '';
72
  var $backup_filename;
 
73
  var $core_table_names;
74
  var $errors = array();
75
  var $basename;
94
 
95
  function wpdbBackup() {
96
  global $table_prefix, $wpdb;
97
+ add_action('wp_ajax_save_backup_time', array(&$this, 'save_backup_time'));
98
  add_action('init', array(&$this, 'init_textdomain'));
99
  add_action('wp_db_backup_cron', array(&$this, 'cron_backup'));
100
  add_action('wp_cron_daily', array(&$this, 'wp_cron_daily'));
122
  $wpdb->users,
123
  $wpdb->usermeta,
124
  );
125
+
126
+ $this->backup_dir = trailingslashit(apply_filters('wp_db_b_backup_dir', WP_BACKUP_DIR));
127
  $this->basename = 'wp-db-backup';
128
 
129
  $this->referer_check_key = $this->basename . '-download_' . DB_NAME;
131
  if ( function_exists('wp_create_nonce') )
132
  $query_args = array_merge( $query_args, array('_wpnonce' => wp_create_nonce($this->referer_check_key)) );
133
  $this->page_url = add_query_arg( $query_args, get_option('siteurl') . '/wp-admin/edit.php');
 
134
  if (isset($_POST['do_backup'])) {
135
  $this->wp_secure('fatal');
136
  check_admin_referer($this->referer_check_key);
137
  $this->can_user_backup('main');
138
+ // save exclude prefs
139
+
140
+ $exc_revisions = (array) $_POST['exclude-revisions'];
141
+ $exc_spam = (array) $_POST['exclude-spam'];
142
+ update_option('wp_db_backup_excs', array('revisions' => $exc_revisions, 'spam' => $exc_spam));
143
  switch($_POST['do_backup']) {
144
  case 'backup':
145
  add_action('init', array(&$this, 'perform_backup'));
170
  switch($via) {
171
  case 'smtp':
172
  case 'email':
173
+ $success = $this->deliver_backup($this->backup_file, 'smtp', $_GET['recipient'], 'frame');
174
  $this->error_display( 'frame' );
175
  if ( $success ) {
176
  echo '
179
  ';
180
  echo '
181
  alert("' . __('Backup Complete!','wp-db-backup') . '");
182
+ window.onbeforeunload = null;
183
  </script>
184
  ';
185
  }
200
  }
201
 
202
  function init_textdomain() {
203
+ load_plugin_textdomain('wp-db-backup', str_replace(ABSPATH, '', dirname(__FILE__)), dirname(plugin_basename(__FILE__)));
204
  }
205
 
206
  function build_backup_script() {
207
  global $table_prefix, $wpdb;
208
 
209
  echo "<div class='wrap'>";
210
+ echo '<fieldset class="options"><legend>' . __('Progress','wp-db-backup') . '</legend>
 
 
211
  <p><strong>' .
212
  __('DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:','wp-db-backup').
213
  '</strong></p>
221
  <div id="progress_message"></div>
222
  <div id="errors"></div>
223
  </fieldset>
224
+ <iframe id="backuploader" src="about:blank" style="visibility:hidden;border:none;height:1em;width:1px;"></iframe>
225
+ <script type="text/javascript">
226
+ //<![CDATA[
227
+ window.onbeforeunload = function() {
228
+ return "' . __('Navigating away from this page will cause your backup to fail.', 'wp-db-backup') . '";
229
+ }
230
  function setMeter(pct) {
231
  var meter = document.getElementById("meter");
232
  meter.style.width = pct + "%";
243
 
244
  function backup(table, segment) {
245
  var fram = document.getElementById("backuploader");
246
+ fram.src = "' . $this->page_url . '&fragment=" + table + ":" + segment + ":' . $this->backup_filename . ':";
247
  }
248
 
249
  var curStep = 0;
263
  case 'http':
264
  echo '
265
  setProgress("' . sprintf(__("Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download...",'wp-db-backup'), $download_uri) . '");
266
+ window.onbeforeunload = null;
267
  fram.src = "' . $download_uri . '";
268
  ';
269
  break;
270
  case 'smtp':
271
  echo '
272
  setProgress("' . sprintf(__("Backup complete, sending <a href=\\\"%s\\\">backup</a> via email...",'wp-db-backup'), $download_uri) . '");
273
+ window.onbeforeunload = null;
274
  fram.src = "' . $download_uri . '&via=email&recipient=' . $_POST['backup_recipient'] . '";
275
  ';
276
  break;
277
  default:
278
  echo '
279
  setProgress("' . sprintf(__("Backup complete, download <a href=\\\"%s\\\">here</a>.",'wp-db-backup'), $download_uri) . '");
280
+ window.onbeforeunload = null;
281
  ';
282
  }
283
 
323
  }
324
 
325
  nextStep();
326
+ // ]]>
327
+ </script>
328
  </div>
329
  ';
330
+ $this->backup_menu();
331
  }
332
 
333
  function backup_fragment($table, $segment, $filename) {
345
  }
346
  }
347
 
348
+ if (is_writable($this->backup_dir)) {
349
+ $this->fp = $this->open($this->backup_dir . $filename, 'a');
350
  if(!$this->fp) {
351
  $this->error(__('Could not open the backup file for writing!','wp-db-backup'));
352
  $this->error(array('loc' => 'frame', 'kind' => 'fatal', 'msg' => __('The backup file could not be saved. Please check the permissions for writing to your backup directory and try again.','wp-db-backup')));
398
  $this->backup_file = $this->db_backup($core_tables, $also_backup);
399
  if (FALSE !== $this->backup_file) {
400
  if ('smtp' == $_POST['deliver']) {
401
+ $this->deliver_backup($this->backup_file, $_POST['deliver'], $_POST['backup_recipient'], 'main');
402
  wp_redirect($this->page_url);
403
  } elseif ('http' == $_POST['deliver']) {
404
  $download_uri = add_query_arg('backup',$this->backup_file,$this->page_url);
405
  wp_redirect($download_uri);
406
+ exit;
407
  }
408
  // we do this to say we're done.
409
  $this->backup_complete = true;
410
  }
411
  }
412
+
413
+ function admin_header() {
414
+ ?>
415
+ <script type="text/javascript">
416
+ //<![CDATA[
417
+ if ( 'undefined' != typeof addLoadEvent ) {
418
+ addLoadEvent(function() {
419
+ var t = {'extra-tables-list':{name: 'other_tables[]'}, 'include-tables-list':{name: 'wp_cron_backup_tables[]'}};
420
+
421
+ for ( var k in t ) {
422
+ t[k].s = null;
423
+ var d = document.getElementById(k);
424
+ if ( ! d )
425
+ continue;
426
+ var ul = d.getElementsByTagName('ul').item(0);
427
+ if ( ul ) {
428
+ var lis = ul.getElementsByTagName('li');
429
+ if ( 3 > lis.length )
430
+ return;
431
+ var text = document.createElement('p');
432
+ text.className = 'instructions';
433
+ text.innerHTML = '<?php _e('Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes', 'wp-db-backup'); ?>';
434
+ ul.parentNode.insertBefore(text, ul);
435
+ }
436
+ t[k].p = d.getElementsByTagName("input");
437
+ for(var i=0; i < t[k].p.length; i++)
438
+ if(t[k].name == t[k].p[i].getAttribute('name')) {
439
+ t[k].p[i].id = k + '-table-' + i;
440
+ t[k].p[i].onkeyup = t[k].p[i].onclick = function(e) {
441
+ e = e ? e : event;
442
+ if ( 16 == e.keyCode )
443
+ return;
444
+ var match = /([\w-]*)-table-(\d*)/.exec(this.id);
445
+ var listname = match[1];
446
+ var that = match[2];
447
+ if ( null === t[listname].s )
448
+ t[listname].s = that;
449
+ else if ( e.shiftKey ) {
450
+ var start = Math.min(that, t[listname].s) + 1;
451
+ var end = Math.max(that, t[listname].s);
452
+ for( var j=start; j < end; j++)
453
+ t[listname].p[j].checked = t[listname].p[j].checked ? false : true;
454
+ t[listname].s = null;
455
+ }
456
+ }
457
+ }
458
+ }
459
+
460
+ <?php if ( function_exists('wp_schedule_event') ) : // needs to be at least WP 2.1 for ajax ?>
461
+ if ( 'undefined' == typeof XMLHttpRequest )
462
+ var xml = new ActiveXObject( navigator.userAgent.indexOf('MSIE 5') >= 0 ? 'Microsoft.XMLHTTP' : 'Msxml2.XMLHTTP' );
463
+ else
464
+ var xml = new XMLHttpRequest();
465
+
466
+ var initTimeChange = function() {
467
+ var timeWrap = document.getElementById('backup-time-wrap');
468
+ var backupTime = document.getElementById('next-backup-time');
469
+ if ( !! timeWrap && !! backupTime ) {
470
+ var span = document.createElement('span');
471
+ span.className = 'submit';
472
+ span.id = 'change-wrap';
473
+ span.innerHTML = '<input type="submit" id="change-backup-time" name="change-backup-time" value="<?php _e('Change','wp-db-backup'); ?>" />';
474
+ timeWrap.appendChild(span);
475
+ backupTime.ondblclick = function(e) { span.parentNode.removeChild(span); clickTime(e, backupTime); };
476
+ span.onclick = function(e) { span.parentNode.removeChild(span); clickTime(e, backupTime); };
477
+ }
478
+ }
479
+
480
+ var clickTime = function(e, backupTime) {
481
+ var tText = backupTime.innerHTML;
482
+ backupTime.innerHTML = '<input type="text" value="' + tText + '" name="backup-time-text" id="backup-time-text" /> <span class="submit"><input type="submit" name="save-backup-time" id="save-backup-time" value="<?php _e('Save', 'wp-db-backup'); ?>" /></span>';
483
+ backupTime.ondblclick = null;
484
+ var mainText = document.getElementById('backup-time-text');
485
+ mainText.focus();
486
+ var saveTButton = document.getElementById('save-backup-time');
487
+ if ( !! saveTButton )
488
+ saveTButton.onclick = function(e) { saveTime(backupTime, mainText); return false; };
489
+ if ( !! mainText )
490
+ mainText.onkeydown = function(e) {
491
+ e = e || window.event;
492
+ if ( 13 == e.keyCode ) {
493
+ saveTime(backupTime, mainText);
494
+ return false;
495
+ }
496
+ }
497
+ }
498
+
499
+ var saveTime = function(backupTime, mainText) {
500
+ var tVal = mainText.value;
501
+
502
+ xml.open('POST', 'admin-ajax.php', true);
503
+ xml.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
504
+ if ( xml.overrideMimeType )
505
+ xml.setRequestHeader('Connection', 'close');
506
+ xml.send('action=save_backup_time&_wpnonce=<?php echo wp_create_nonce($this->referer_check_key); ?>&backup-time='+tVal);
507
+ xml.onreadystatechange = function() {
508
+ if ( 4 == xml.readyState && '0' != xml.responseText ) {
509
+ backupTime.innerHTML = xml.responseText;
510
+ initTimeChange();
511
+ }
512
+ }
513
+ }
514
+
515
+ initTimeChange();
516
+ <?php endif; // wp_schedule_event exists ?>
517
+ });
518
+ }
519
+ //]]>
520
+ </script>
521
+ <style type="text/css">
522
+ .wp-db-backup-updated {
523
+ margin-top: 1em;
524
+ }
525
+
526
+ fieldset.options {
527
+ border: 1px solid;
528
+ margin-top: 1em;
529
+ padding: 1em;
530
+ }
531
+ fieldset.options div.tables-list {
532
+ float: left;
533
+ padding: 1em;
534
+ }
535
+
536
+ fieldset.options input {
537
+ }
538
+
539
+ fieldset.options legend {
540
+ font-size: larger;
541
+ font-weight: bold;
542
+ margin-bottom: .5em;
543
+ padding: 1em;
544
+ }
545
+
546
+ fieldset.options .instructions {
547
+ font-size: smaller;
548
+ }
549
+
550
+ fieldset.options ul {
551
+ list-style-type: none;
552
+ }
553
+ fieldset.options li {
554
+ text-align: left;
555
+ }
556
+
557
+ fieldset.options .submit {
558
+ border-top: none;
559
+ }
560
+ </style>
561
+ <?php
562
+ }
563
+
564
+ function admin_load() {
565
+ add_action('admin_head', array(&$this, 'admin_header'));
566
+ }
567
+
568
  function admin_menu() {
569
+ $page_hook = add_management_page(__('Backup','wp-db-backup'), __('Backup','wp-db-backup'), 'import', $this->basename, array(&$this, 'backup_menu'));
570
+ add_action('load-' . $page_hook, array(&$this, 'admin_load'));
571
  }
572
 
573
  function fragment_menu() {
574
+ $page_hook = add_management_page(__('Backup','wp-db-backup'), __('Backup','wp-db-backup'), 'import', $this->basename, array(&$this, 'build_backup_script'));
575
+ add_action('load-' . $page_hook, array(&$this, 'admin_load'));
576
+ }
577
+
578
+ function save_backup_time() {
579
+ if ( $this->can_user_backup() ) {
580
+ // try to get a time from the input string
581
+ $time = strtotime(strval($_POST['backup-time']));
582
+ if ( ! empty( $time ) && time() < $time ) {
583
+ wp_clear_scheduled_hook( 'wp_db_backup_cron' ); // unschedule previous
584
+ $scheds = (array) wp_get_schedules();
585
+ $name = get_option('wp_cron_backup_schedule');
586
+ if ( 0 != $time ) {
587
+ wp_schedule_event($time, $name, 'wp_db_backup_cron');
588
+ echo gmdate(get_option('date_format') . ' ' . get_option('time_format'), $time + (get_option('gmt_offset') * 3600));
589
+ exit;
590
+ }
591
+ }
592
+ } else {
593
+ die(0);
594
+ }
595
  }
596
 
597
  /**
645
  */
646
  function stow($query_line) {
647
  if ($this->gzip()) {
648
+ if(! @gzwrite($this->fp, $query_line))
649
+ $this->error(__('There was an error writing a line to the backup script:','wp-db-backup') . ' ' . $query_line . ' ' . $php_errormsg);
650
  } else {
651
  if(FALSE === @fwrite($this->fp, $query_line))
652
+ $this->error(__('There was an error writing a line to the backup script:','wp-db-backup') . ' ' . $query_line . ' ' . $php_errormsg);
653
  }
654
  }
655
 
682
  $err_list = array_slice(array_merge( (array) $errs['fatal'], (array) $errs['warn']), 0, 10);
683
  if ( 10 == count( $err_list ) )
684
  $err_list[9] = __('Subsequent errors have been omitted from this log.','wp-db-backup');
685
+ $wrap = ( 'frame' == $loc ) ? "<script type=\"text/javascript\">\n var msgList = ''; \n %1\$s \n if ( msgList ) alert(msgList); \n </script>" : '%1$s';
686
  $line = ( 'frame' == $loc ) ?
687
+ "try{ window.parent.addError('%1\$s'); } catch(e) { msgList += ' %1\$s';}\n" :
688
  "%1\$s<br />\n";
689
  foreach( (array) $err_list as $err )
690
+ $msg .= sprintf($line,str_replace(array("\n","\r"), '', addslashes($err)));
691
  $msg = sprintf($wrap,$msg);
692
  if ( count($errs['fatal'] ) ) {
693
+ if ( function_exists('wp_die') && 'frame' != $loc ) wp_die(stripslashes($msg));
694
  else die($msg);
695
  }
696
  else {
765
  (0 === strpos(strtolower($struct->Type), 'smallint')) ||
766
  (0 === strpos(strtolower($struct->Type), 'mediumint')) ||
767
  (0 === strpos(strtolower($struct->Type), 'int')) ||
768
+ (0 === strpos(strtolower($struct->Type), 'bigint')) ) {
769
+ $defs[strtolower($struct->Field)] = ( null === $struct->Default ) ? 'NULL' : $struct->Default;
 
770
  $ints[strtolower($struct->Field)] = "1";
771
  }
772
  }
783
  }
784
 
785
  do {
786
+ // don't include extra stuff, if so requested
787
+ $excs = (array) get_option('wp_db_backup_excs');
788
+ $where = '';
789
+ if ( is_array($excs['spam'] ) && in_array($table, $excs['spam']) ) {
790
+ $where = ' WHERE comment_approved != "spam"';
791
+ } elseif ( is_array($excs['revisions'] ) && in_array($table, $excs['revisions']) ) {
792
+ $where = ' WHERE post_type != "revision"';
793
+ }
794
+
795
  if ( !ini_get('safe_mode')) @set_time_limit(15*60);
796
+ $table_data = $wpdb->get_results("SELECT * FROM $table $where LIMIT {$row_start}, {$row_inc}", ARRAY_A);
797
 
798
  $entries = 'INSERT INTO ' . $this->backquote($table) . ' VALUES (';
799
  // \x08\\x09, not required
806
  if ($ints[strtolower($key)]) {
807
  // make sure there are no blank spots in the insert syntax,
808
  // yet try to avoid quotation marks around integers
809
+ $value = ( null === $value || '' === $value) ? $defs[strtolower($key)] : $value;
810
  $values[] = ( '' === $value ) ? "''" : $value;
811
  } else {
812
  $values[] = "'" . str_replace($search, $replace, $this->sql_addslashes($value)) . "'";
832
  function db_backup($core_tables, $other_tables) {
833
  global $table_prefix, $wpdb;
834
 
835
+ if (is_writable($this->backup_dir)) {
836
+ $this->fp = $this->open($this->backup_dir . $this->backup_filename);
837
  if(!$this->fp) {
838
  $this->error(__('Could not open the backup file for writing!','wp-db-backup'));
839
  return false;
883
  * @param string $message
884
  * @return bool
885
  */
886
+ function send_mail( $to, $subject, $message, $diskfile) {
887
  global $phpmailer;
888
 
889
  $filename = basename($diskfile);
963
 
964
  $result = @wp_mail($to, $subject, $message, $headers);
965
  }
966
+ return false;
967
  return $result;
968
 
969
  }
970
 
971
+ function deliver_backup($filename = '', $delivery = 'http', $recipient = '', $location = 'main') {
972
  if ('' == $filename) { return false; }
973
 
974
+ $diskfile = $this->backup_dir . $filename;
975
  if ('http' == $delivery) {
976
  if (! file_exists($diskfile))
977
  $this->error(array('kind' => 'fatal', 'msg' => sprintf(__('File not found:%s','wp-db-backup'), "&nbsp;<strong>$filename</strong><br />") . '<br /><a href="' . $this->page_url . '">' . __('Return to Backup','wp-db-backup') . '</a>'));
995
 
996
  if ( false == $success ) {
997
  $msg = __('The following errors were reported:','wp-db-backup') . "\n ";
998
+ if ( function_exists('error_get_last') ) {
999
+ $err = error_get_last();
1000
+ $msg .= $err['message'];
1001
+ } else {
1002
+ $msg .= __('ERROR: The mail application has failed to deliver the backup.','wp-db-backup');
1003
+ }
1004
+ $this->error(array('kind' => 'fatal', 'loc' => $location, 'msg' => $msg));
1005
  } else {
1006
  unlink($diskfile);
1007
  }
1016
 
1017
  // did we just do a backup? If so, let's report the status
1018
  if ( $this->backup_complete ) {
1019
+ $feedback = '<div class="updated wp-db-backup-updated"><p>' . __('Backup Successful','wp-db-backup') . '!';
1020
  $file = $this->backup_file;
1021
  switch($_POST['deliver']) {
1022
  case 'http':
1023
+ $feedback .= '<br />' . sprintf(__('Your backup file: <a href="%1s">%2s</a> should begin downloading shortly.','wp-db-backup'), WP_BACKUP_URL . "{$this->backup_file}", $this->backup_file);
1024
  break;
1025
  case 'smtp':
1026
  if (! is_email($_POST['backup_recipient'])) {
1032
  break;
1033
  case 'none':
1034
  $feedback .= '<br />' . __('Your backup file has been saved on the server. If you would like to download it now, right click and select "Save As"','wp-db-backup');
1035
+ $feedback .= ':<br /> <a href="' . WP_BACKUP_URL . "$file\">$file</a> : " . sprintf(__('%s bytes','wp-db-backup'), filesize($this->backup_dir . $file));
1036
  }
1037
  $feedback .= '</p></div>';
1038
  }
1041
  $this->wp_secure();
1042
 
1043
  if (count($this->errors)) {
1044
+ $feedback .= '<div class="updated wp-db-backup-updated error"><p><strong>' . __('The following errors were reported:','wp-db-backup') . '</strong></p>';
1045
  $feedback .= '<p>' . $this->error_display( 'main', false ) . '</p>';
1046
  $feedback .= "</p></div>";
1047
  }
1057
  $interval = ( isset($scheds[$name]['interval']) ) ?
1058
  (int) $scheds[$name]['interval'] : 0;
1059
  update_option('wp_cron_backup_schedule', $name, FALSE);
1060
+ if ( 0 !== $interval ) {
1061
  wp_schedule_event(time() + $interval, $name, 'wp_db_backup_cron');
1062
  }
1063
  }
1068
  if (is_email($_POST['cron_backup_recipient'])) {
1069
  update_option('wp_cron_backup_recipient', $_POST['cron_backup_recipient'], FALSE);
1070
  }
1071
+ $feedback .= '<div class="updated wp-db-backup-updated"><p>' . __('Scheduled Backup Options Saved!','wp-db-backup') . '</p></div>';
1072
  endif;
1073
 
1074
  $other_tables = array();
1089
  return;
1090
 
1091
  // Give the new dirs the same perms as wp-content.
1092
+ // $stat = stat( ABSPATH . 'wp-content' );
1093
+ // $dir_perms = $stat['mode'] & 0000777; // Get the permission bits.
1094
+ $dir_perms = '0777';
1095
+
1096
+ // the file doesn't exist and can't create it
1097
+ if ( ! file_exists($this->backup_dir) && ! @mkdir($this->backup_dir) ) {
1098
+ ?><div class="updated wp-db-backup-updated error"><p><?php _e('WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it.','wp-db-backup'); ?></p>
1099
+ <p><?php printf(__('Using your FTP client, try to create the backup directory yourself: %s', 'wp-db-backup'), '<code>' . $this->backup_dir . '</code>'); ?></p></div><?php
1100
+ $WHOOPS = TRUE;
1101
+ // not writable due to write permissions
1102
+ } elseif ( !is_writable($this->backup_dir) && ! @chmod($this->backup_dir, $dir_perms) ) {
1103
+ ?><div class="updated wp-db-backup-updated error"><p><?php _e('WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files.','wp-db-backup'); ?></p>
1104
+ <p><?php printf(__('Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s', 'wp-db-backup'), '<code>777</code>', '<code>a+w</code>', '<code>' . $this->backup_dir . '</code>'); ?>
1105
+ </p></div><?php
1106
  $WHOOPS = TRUE;
1107
+ } else {
1108
+ $this->fp = $this->open($this->backup_dir . 'test' );
1109
+ if( $this->fp ) {
1110
+ $this->close($this->fp);
1111
+ @unlink($this->backup_dir . 'test' );
1112
+ // the directory is not writable probably due to safe mode
1113
+ } else {
1114
+ ?><div class="updated wp-db-backup-updated error"><p><?php _e('WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files.','wp-db-backup'); ?></p><?php
1115
+ if( ini_get('safe_mode') ){
1116
+ ?><p><?php _e('This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create.', 'wp-db-backup'); ?></p><?php
1117
+ }
1118
+ ?><?php printf(__('You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s', 'wp-db-backup'), '<code>' . $this->backup_dir . '</code>');
1119
+ ?></div><?php
1120
+ $WHOOPS = TRUE;
1121
  }
1122
  }
1123
+
1124
 
 
 
 
1125
 
1126
+ if ( !file_exists($this->backup_dir . 'index.php') )
1127
+ @ touch($this->backup_dir . 'index.php');
1128
  ?><div class='wrap'>
1129
  <h2><?php _e('Backup','wp-db-backup') ?></h2>
1130
  <form method="post" action="">
1131
  <?php if ( function_exists('wp_nonce_field') ) wp_nonce_field($this->referer_check_key); ?>
1132
  <fieldset class="options"><legend><?php _e('Tables','wp-db-backup') ?></legend>
1133
+ <div class="tables-list core-tables alternate">
1134
+ <h4><?php _e('These core WordPress tables will always be backed up:','wp-db-backup') ?></h4><ul><?php
1135
+ $excs = (array) get_option('wp_db_backup_excs');
1136
  foreach ($wp_backup_default_tables as $table) {
1137
+ if ( $table == $wpdb->comments ) {
1138
+ $checked = ( is_array($excs['spam'] ) && in_array($table, $excs['spam']) ) ? ' checked=\'checked\'' : '';
1139
+ echo "<li><input type='hidden' name='core_tables[]' value='$table' /><code>$table</code> <span class='instructions'> <input type='checkbox' name='exclude-spam[]' value='$table' $checked /> " . __('Exclude spam comments', 'wp-db-backup') . '</span></li>';
1140
+ } elseif ( function_exists('wp_get_post_revisions') && $table == $wpdb->posts ) {
1141
+ $checked = ( is_array($excs['revisions'] ) && in_array($table, $excs['revisions']) ) ? ' checked=\'checked\'' : '';
1142
+ echo "<li><input type='hidden' name='core_tables[]' value='$table' /><code>$table</code> <span class='instructions'> <input type='checkbox' name='exclude-revisions[]' value='$table' $checked /> " . __('Exclude post revisions', 'wp-db-backup') . '</span></li>';
1143
+ } else {
1144
+ echo "<li><input type='hidden' name='core_tables[]' value='$table' /><code>$table</code></li>";
1145
+ }
1146
  }
1147
+ ?></ul>
1148
+ </div>
1149
+ <div class="tables-list extra-tables" id="extra-tables-list">
1150
+ <?php
1151
+ if (count($other_tables) > 0) {
1152
+ ?>
1153
+ <h4><?php _e('You may choose to include any of the following tables:','wp-db-backup'); ?></h4>
1154
+ <ul>
1155
+ <?php
 
 
 
 
 
 
 
 
 
 
 
1156
  foreach ($other_tables as $table) {
1157
+ ?>
1158
+ <li><label><input type="checkbox" name="other_tables[]" value="<?php echo $table; ?>" /> <code><?php echo $table; ?></code></label>
1159
+ <?php
1160
  }
1161
+ ?></ul><?php
1162
  }
1163
+ ?></div>
1164
+ </fieldset>
 
 
 
 
 
 
 
 
 
 
 
 
1165
 
1166
+ <fieldset class="options">
1167
+ <legend><?php _e('Backup Options','wp-db-backup'); ?></legend>
1168
+ <p><?php _e('What to do with the backup file:','wp-db-backup'); ?></p>
1169
+ <ul>
1170
+ <li><label for="do_save">
1171
+ <input type="radio" id="do_save" name="deliver" value="none" style="border:none;" />
1172
+ <?php _e('Save to server','wp-db-backup');
1173
+ echo " (<code>" . $this->backup_dir . "</code>)"; ?>
1174
+ </label></li>
1175
+ <li><label for="do_download">
1176
+ <input type="radio" checked="checked" id="do_download" name="deliver" value="http" style="border:none;" />
1177
+ <?php _e('Download to your computer','wp-db-backup'); ?>
1178
+ </label></li>
1179
+ <li><label for="do_email">
1180
+ <input type="radio" name="deliver" id="do_email" value="smtp" style="border:none;" />
1181
+ <?php _e('Email backup to:','wp-db-backup'); ?>
1182
+ <input type="text" name="backup_recipient" size="20" value="<?php echo get_option('admin_email'); ?>" />
1183
+ </label></li>
1184
+ </ul>
1185
+ <?php if ( ! $WHOOPS ) : ?>
1186
+ <input type="hidden" name="do_backup" id="do_backup" value="backup" />
1187
+ <p class="submit">
1188
+ <input type="submit" name="submit" onclick="document.getElementById('do_backup').value='fragments';" value="<?php _e('Backup now!','wp-db-backup'); ?>" />
1189
+ </p>
1190
+ <?php else : ?>
1191
+ <div class="updated wp-db-backup-updated error"><p><?php _e('WARNING: Your backup directory is <strong>NOT</strong> writable!','wp-db-backup'); ?></p></div>
1192
+ <?php endif; // ! whoops ?>
1193
+ </fieldset>
1194
+ <?php do_action('wp_db_b_backup_opts'); ?>
1195
+ </form>
1196
+
1197
+ <?php
1198
  // this stuff only displays if some sort of wp-cron is available
1199
  $cron = ( function_exists('wp_schedule_event') ) ? true : false; // wp-cron in WP 2.1+
1200
  $cron_old = ( function_exists('wp_cron_init') && ! $cron ) ? true : false; // wp-cron plugin by Skippy
1201
  if ( $cron_old || $cron ) :
1202
  echo '<fieldset class="options"><legend>' . __('Scheduled Backup','wp-db-backup') . '</legend>';
1203
+ $datetime = get_option('date_format') . ' ' . get_option('time_format');
1204
  if ( $cron ) :
1205
  $next_cron = wp_next_scheduled('wp_db_backup_cron');
1206
  if ( ! empty( $next_cron ) ) :
1207
+ ?>
1208
+ <p id="backup-time-wrap">
1209
+ <?php printf(__('Next Backup: %s','wp-db-backup'), '<span id="next-backup-time">' . gmdate($datetime, $next_cron + (get_option('gmt_offset') * 3600)) . '</span>'); ?>
1210
+ </p>
1211
+ <?php
1212
  endif;
1213
  elseif ( $cron_old ) :
1214
+ ?><p><?php printf(__('Last WP-Cron Daily Execution: %s','wp-db-backup'), gmdate($datetime, get_option('wp_cron_daily_lastrun') + (get_option('gmt_offset') * 3600))); ?><br /><?php
1215
+ printf(__('Next WP-Cron Daily Execution: %s','wp-db-backup'), gmdate($datetime, (get_option('wp_cron_daily_lastrun') + (get_option('gmt_offset') * 3600) + 86400))); ?></p><?php
1216
  endif;
1217
  ?><form method="post" action="">
1218
  <?php if ( function_exists('wp_nonce_field') ) wp_nonce_field($this->referer_check_key); ?>
1219
+ <div class="tables-list">
1220
+ <h4><?php _e('Schedule: ','wp-db-backup'); ?></h4>
1221
+ <?php
1222
  if ( $cron_old ) :
1223
  $wp_cron_backup_schedule = get_option('wp_cron_backup_schedule');
1224
  $schedule = array(0 => __('None','wp-db-backup'), 1 => __('Daily','wp-db-backup'));
1227
  if ($wp_cron_backup_schedule == $value) {
1228
  echo ' checked="checked" ';
1229
  }
1230
+ echo 'value="' . $value . '" /> ' . $name;
1231
  }
1232
  elseif ( $cron ) :
1233
  echo apply_filters('wp_db_b_schedule_choices', wp_get_schedules() );
1234
  endif;
 
1235
  $cron_recipient = get_option('wp_cron_backup_recipient');
1236
  if (! is_email($cron_recipient)) {
1237
  $cron_recipient = get_option('admin_email');
1238
  }
1239
+ $cron_recipient_input = '<p><label for="cron_backup_recipient">' . __('Email backup to:','wp-db-backup') . ' <input type="text" name="cron_backup_recipient" id="cron_backup_recipient" size="20" value="' . $cron_recipient . '" /></label></p>';
1240
  echo apply_filters('wp_db_b_cron_recipient_input', $cron_recipient_input);
1241
+ echo '</div><div class="tables-list alternate" id="include-tables-list">';
1242
  $cron_tables = get_option('wp_cron_backup_tables');
1243
  if (! is_array($cron_tables)) {
1244
  $cron_tables = array();
1245
  }
1246
  if (count($other_tables) > 0) {
1247
+ echo '<h4>' . __('Tables to include in the scheduled backup:','wp-db-backup') . '</h4><ul>';
1248
  foreach ($other_tables as $table) {
1249
+ echo '<li><input type="checkbox" ';
1250
  if (in_array($table, $cron_tables)) {
1251
  echo 'checked="checked" ';
1252
  }
1253
+ echo "name='wp_cron_backup_tables[]' value='{$table}' /> <code>{$table}</code></li>";
1254
  }
1255
+ echo '</ul>';
1256
  }
1257
+ echo '<input type="hidden" name="wp_cron_backup_options" value="SET" /><p class="submit"><input type="submit" name="submit" value="' . __('Schedule backup','wp-db-backup') . '" /></p></div></form>';
1258
  echo '</fieldset>';
1259
  endif; // end of wp_cron (legacy) section
1260
 
1278
  asort( $sort );
1279
  $schedule_sorted = array();
1280
  foreach ( (array) $sort as $key => $value ) $schedule_sorted[$key] = $schedule[$key];
1281
+ $menu = '<ul>';
1282
  $schedule = array_merge( array( 'never' => array( 'interval' => 0, 'display' => __('Never','wp-db-backup') ) ),
1283
  (array) $schedule_sorted );
1284
  foreach ( $schedule as $name => $settings) {
1312
  $recipient = get_option('wp_cron_backup_recipient');
1313
  $backup_file = $this->db_backup($core_tables, $other_tables);
1314
  if (FALSE !== $backup_file)
1315
+ return $this->deliver_backup($backup_file, 'smtp', $recipient, 'main');
1316
  else return false;
1317
  }
1318
 
1342
  */
1343
  function can_user_backup($loc = 'main') {
1344
  $can = false;
1345
+ // make sure WPMU users are site admins, not ordinary admins
1346
+ if ( function_exists('is_site_admin') && ! is_site_admin() )
1347
+ return false;
1348
  if ( ( $this->wp_secure('fatal', $loc) ) && current_user_can('import') )
1349
  $can = $this->verify_nonce($_REQUEST['_wpnonce'], $this->referer_check_key, $loc);
1350
  if ( false == $can )
wp-db-backup.po → wp-db-backup.pot RENAMED
@@ -1,182 +1,197 @@
1
  # WP-DB-Backup
2
- # Copyright (C) 2007 Austin Matzko
3
  # This file is distributed under the GPL 2 license.
4
  #
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: PACKAGE VERSION\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2007-11-09 11:00-0500\n"
10
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
  "Last-Translator: Austin Matzko if.website at gmail.com\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=CHARSET\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
 
16
- #: wp-db-backup.php:162
17
  msgid "Backup Complete!"
18
  msgstr ""
19
 
20
- #: wp-db-backup.php:191 wp-db-backup.php:386 wp-db-backup.php:390
21
- #: wp-db-backup.php:893 wp-db-backup.php:934
22
- msgid "Backup"
23
- msgstr ""
24
-
25
- #: wp-db-backup.php:192
26
  msgid "Progress"
27
  msgstr ""
28
 
29
- #: wp-db-backup.php:194
30
  msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
31
  msgstr ""
32
 
33
- #: wp-db-backup.php:197
34
  msgid "Close this browser"
35
  msgstr ""
36
 
37
- #: wp-db-backup.php:198
38
  msgid "Reload this page"
39
  msgstr ""
40
 
41
- #: wp-db-backup.php:199
42
  msgid "Click the Stop or Back buttons in your browser"
43
  msgstr ""
44
 
45
- #: wp-db-backup.php:201
46
  msgid "Progress:"
47
  msgstr ""
48
 
49
- #: wp-db-backup.php:243
 
 
 
 
50
  #, php-format
51
  msgid ""
52
  "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
53
  msgstr ""
54
 
55
- #: wp-db-backup.php:249
56
  #, php-format
57
  msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
58
  msgstr ""
59
 
60
- #: wp-db-backup.php:255
61
  #, php-format
62
  msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
63
  msgstr ""
64
 
65
- #: wp-db-backup.php:312
66
  msgid "Creating backup file..."
67
  msgstr ""
68
 
69
- #: wp-db-backup.php:315
70
  #, php-format
71
  msgid "Finished backing up table \\\"%s\\\"."
72
  msgstr ""
73
 
74
- #: wp-db-backup.php:317
75
  #, php-format
76
  msgid "Backing up table \\\"%s\\\"..."
77
  msgstr ""
78
 
79
- #: wp-db-backup.php:324 wp-db-backup.php:626
80
  msgid "Could not open the backup file for writing!"
81
  msgstr ""
82
 
83
- #: wp-db-backup.php:325
84
  msgid ""
85
  "The backup file could not be saved. Please check the permissions for "
86
  "writing to your backup directory and try again."
87
  msgstr ""
88
 
89
- #: wp-db-backup.php:330 wp-db-backup.php:635
90
  msgid "WordPress MySQL database backup"
91
  msgstr ""
92
 
93
- #: wp-db-backup.php:332 wp-db-backup.php:637
94
  #, php-format
95
  msgid "Generated: %s"
96
  msgstr ""
97
 
98
- #: wp-db-backup.php:333 wp-db-backup.php:638
99
  #, php-format
100
  msgid "Hostname: %s"
101
  msgstr ""
102
 
103
- #: wp-db-backup.php:334 wp-db-backup.php:639
104
  #, php-format
105
  msgid "Database: %s"
106
  msgstr ""
107
 
108
- #: wp-db-backup.php:342 wp-db-backup.php:652
109
  #, php-format
110
  msgid "Table: %s"
111
  msgstr ""
112
 
113
- #: wp-db-backup.php:349
114
  msgid ""
115
  "The backup directory is not writeable! Please check the permissions for "
116
  "writing to your backup directory and try again."
117
  msgstr ""
118
 
119
- #: wp-db-backup.php:445 wp-db-backup.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  msgid "There was an error writing a line to the backup script:"
121
  msgstr ""
122
 
123
- #: wp-db-backup.php:480
124
  msgid "Subsequent errors have been omitted from this log."
125
  msgstr ""
126
 
127
- #: wp-db-backup.php:514
128
  msgid "Error getting table details"
129
  msgstr ""
130
 
131
- #: wp-db-backup.php:522
132
  #, php-format
133
  msgid "Delete any existing table %s"
134
  msgstr ""
135
 
136
- #: wp-db-backup.php:531
137
  #, php-format
138
  msgid "Table structure of table %s"
139
  msgstr ""
140
 
141
- #: wp-db-backup.php:537
142
  #, php-format
143
  msgid "Error with SHOW CREATE TABLE for %s."
144
  msgstr ""
145
 
146
- #: wp-db-backup.php:544
147
  #, php-format
148
  msgid "Error getting table structure of %s"
149
  msgstr ""
150
 
151
- #: wp-db-backup.php:552
152
  #, php-format
153
  msgid "Data contents of table %s"
154
  msgstr ""
155
 
156
- #: wp-db-backup.php:614
157
  #, php-format
158
  msgid "End of data contents of table %s"
159
  msgstr ""
160
 
161
- #: wp-db-backup.php:630
162
  msgid "The backup directory is not writeable!"
163
  msgstr ""
164
 
165
- #: wp-db-backup.php:764
166
  #, php-format
167
  msgid "File not found:%s"
168
  msgstr ""
169
 
170
- #: wp-db-backup.php:764
171
  msgid "Return to Backup"
172
  msgstr ""
173
 
174
- #: wp-db-backup.php:773
175
  #, php-format
176
  msgid "File %s does not exist!"
177
  msgstr ""
178
 
179
- #: wp-db-backup.php:780
180
  #, php-format
181
  msgid ""
182
  "Attached to this email is\n"
@@ -184,154 +199,187 @@ msgid ""
184
  " Size:%2s kilobytes\n"
185
  msgstr ""
186
 
187
- #: wp-db-backup.php:781
188
  msgid "Database Backup"
189
  msgstr ""
190
 
191
- #: wp-db-backup.php:784 wp-db-backup.php:826
192
  msgid "The following errors were reported:"
193
  msgstr ""
194
 
195
- #: wp-db-backup.php:785
196
  msgid "ERROR: The mail application has failed to deliver the backup."
197
  msgstr ""
198
 
199
- #: wp-db-backup.php:801
200
  msgid "Backup Successful"
201
  msgstr ""
202
 
203
- #: wp-db-backup.php:805
204
  #, php-format
205
  msgid ""
206
  "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
207
  msgstr ""
208
 
209
- #: wp-db-backup.php:813
210
  #, php-format
211
  msgid "Your backup has been emailed to %s"
212
  msgstr ""
213
 
214
- #: wp-db-backup.php:816
215
  msgid ""
216
  "Your backup file has been saved on the server. If you would like to download "
217
  "it now, right click and select \"Save As\""
218
  msgstr ""
219
 
220
- #: wp-db-backup.php:817
221
  #, php-format
222
  msgid "%s bytes"
223
  msgstr ""
224
 
225
- #: wp-db-backup.php:853
226
  msgid "Scheduled Backup Options Saved!"
227
  msgstr ""
228
 
229
- #: wp-db-backup.php:881
230
  msgid ""
231
- "WARNING: Your wp-content directory is <strong>NOT</strong> writable! We can "
232
- "not create the backup directory."
233
  msgstr ""
234
 
235
- #: wp-db-backup.php:887
 
 
 
 
 
236
  msgid ""
237
- "WARNING: Your backup directory is <strong>NOT</strong> writable! We can not "
238
- "create the backup directory."
239
  msgstr ""
240
 
241
- #: wp-db-backup.php:896
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "Tables"
243
  msgstr ""
244
 
245
- #: wp-db-backup.php:898
246
  msgid "These core WordPress tables will always be backed up:"
247
  msgstr ""
248
 
249
- #: wp-db-backup.php:904
250
- msgid "You may choose to include any of the following tables:"
251
  msgstr ""
252
 
253
- #: wp-db-backup.php:918
254
- msgid "Select all"
255
  msgstr ""
256
 
257
- #: wp-db-backup.php:918
258
- msgid "Select none"
259
  msgstr ""
260
 
261
- #: wp-db-backup.php:927
262
  msgid "Backup Options"
263
  msgstr ""
264
 
265
- #: wp-db-backup.php:928
266
  msgid "What to do with the backup file:"
267
  msgstr ""
268
 
269
- #: wp-db-backup.php:929
270
  msgid "Save to server"
271
  msgstr ""
272
 
273
- #: wp-db-backup.php:931
274
  msgid "Download to your computer"
275
  msgstr ""
276
 
277
- #: wp-db-backup.php:932 wp-db-backup.php:980
278
  msgid "Email backup to:"
279
  msgstr ""
280
 
281
- #: wp-db-backup.php:936
 
 
 
 
282
  msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
283
  msgstr ""
284
 
285
- #: wp-db-backup.php:945
286
  msgid "Scheduled Backup"
287
  msgstr ""
288
 
289
- #: wp-db-backup.php:950
290
- msgid "Next Backup"
 
291
  msgstr ""
292
 
293
- #: wp-db-backup.php:954
294
- msgid "Last WP-Cron Daily Execution"
 
295
  msgstr ""
296
 
297
- #: wp-db-backup.php:955
298
- msgid "Next WP-Cron Daily Execution"
 
299
  msgstr ""
300
 
301
- #: wp-db-backup.php:961
302
  msgid "Schedule: "
303
  msgstr ""
304
 
305
- #: wp-db-backup.php:964
306
  msgid "None"
307
  msgstr ""
308
 
309
- #: wp-db-backup.php:964
310
  msgid "Daily"
311
  msgstr ""
312
 
313
- #: wp-db-backup.php:988
314
- msgid "Tables to include:"
315
  msgstr ""
316
 
317
- #: wp-db-backup.php:998
318
- msgid "Submit"
319
  msgstr ""
320
 
321
- #: wp-db-backup.php:1023
322
  msgid "Never"
323
  msgstr ""
324
 
325
- #: wp-db-backup.php:1028
326
  #, php-format
327
  msgid "%s seconds"
328
  msgstr ""
329
 
330
- #: wp-db-backup.php:1061
331
  msgid "Once Weekly"
332
  msgstr ""
333
 
334
- #: wp-db-backup.php:1074
335
  #, php-format
336
  msgid ""
337
  "Your WordPress version, %1s, lacks important security features without which "
@@ -340,17 +388,17 @@ msgid ""
340
  "WordPress</a> to a more recent version."
341
  msgstr ""
342
 
343
- #: wp-db-backup.php:1089
344
  msgid "You are not allowed to perform backups."
345
  msgstr ""
346
 
347
- #: wp-db-backup.php:1104
348
  #, php-format
349
  msgid ""
350
  "There appears to be an unauthorized attempt from this site to access your "
351
  "database located at %1s. The attempt has been halted."
352
  msgstr ""
353
 
354
- #: wp-db-backup.php:1115
355
  msgid "Cheatin' uh ?"
356
  msgstr ""
1
  # WP-DB-Backup
2
+ # Copyright (C) 2008 Austin Matzko
3
  # This file is distributed under the GPL 2 license.
4
  #
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: PACKAGE VERSION\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2008-08-15 11:00-0500\n"
10
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
  "Last-Translator: Austin Matzko if.website at gmail.com\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=CHARSET\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
 
16
+ #: wp-db-backup.php:181
17
  msgid "Backup Complete!"
18
  msgstr ""
19
 
20
+ #: wp-db-backup.php:211
 
 
 
 
 
21
  msgid "Progress"
22
  msgstr ""
23
 
24
+ #: wp-db-backup.php:213
25
  msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
26
  msgstr ""
27
 
28
+ #: wp-db-backup.php:216
29
  msgid "Close this browser"
30
  msgstr ""
31
 
32
+ #: wp-db-backup.php:217
33
  msgid "Reload this page"
34
  msgstr ""
35
 
36
+ #: wp-db-backup.php:218
37
  msgid "Click the Stop or Back buttons in your browser"
38
  msgstr ""
39
 
40
+ #: wp-db-backup.php:220
41
  msgid "Progress:"
42
  msgstr ""
43
 
44
+ #: wp-db-backup.php:229
45
+ msgid "Navigating away from this page will cause your backup to fail."
46
+ msgstr ""
47
+
48
+ #: wp-db-backup.php:266
49
  #, php-format
50
  msgid ""
51
  "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
52
  msgstr ""
53
 
54
+ #: wp-db-backup.php:273
55
  #, php-format
56
  msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
57
  msgstr ""
58
 
59
+ #: wp-db-backup.php:280
60
  #, php-format
61
  msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
62
  msgstr ""
63
 
64
+ #: wp-db-backup.php:340
65
  msgid "Creating backup file..."
66
  msgstr ""
67
 
68
+ #: wp-db-backup.php:343
69
  #, php-format
70
  msgid "Finished backing up table \\\"%s\\\"."
71
  msgstr ""
72
 
73
+ #: wp-db-backup.php:345
74
  #, php-format
75
  msgid "Backing up table \\\"%s\\\"..."
76
  msgstr ""
77
 
78
+ #: wp-db-backup.php:352 wp-db-backup.php:835
79
  msgid "Could not open the backup file for writing!"
80
  msgstr ""
81
 
82
+ #: wp-db-backup.php:353
83
  msgid ""
84
  "The backup file could not be saved. Please check the permissions for "
85
  "writing to your backup directory and try again."
86
  msgstr ""
87
 
88
+ #: wp-db-backup.php:358 wp-db-backup.php:844
89
  msgid "WordPress MySQL database backup"
90
  msgstr ""
91
 
92
+ #: wp-db-backup.php:360 wp-db-backup.php:846
93
  #, php-format
94
  msgid "Generated: %s"
95
  msgstr ""
96
 
97
+ #: wp-db-backup.php:361 wp-db-backup.php:847
98
  #, php-format
99
  msgid "Hostname: %s"
100
  msgstr ""
101
 
102
+ #: wp-db-backup.php:362 wp-db-backup.php:848
103
  #, php-format
104
  msgid "Database: %s"
105
  msgstr ""
106
 
107
+ #: wp-db-backup.php:370 wp-db-backup.php:861
108
  #, php-format
109
  msgid "Table: %s"
110
  msgstr ""
111
 
112
+ #: wp-db-backup.php:377
113
  msgid ""
114
  "The backup directory is not writeable! Please check the permissions for "
115
  "writing to your backup directory and try again."
116
  msgstr ""
117
 
118
+ #: wp-db-backup.php:434
119
+ msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
120
+ msgstr ""
121
+
122
+ #: wp-db-backup.php:474
123
+ msgid "Change"
124
+ msgstr ""
125
+
126
+ #: wp-db-backup.php:483
127
+ msgid "Save"
128
+ msgstr ""
129
+
130
+ #: wp-db-backup.php:566 wp-db-backup.php:571 wp-db-backup.php:1126
131
+ msgid "Backup"
132
+ msgstr ""
133
+
134
+ #: wp-db-backup.php:646 wp-db-backup.php:649
135
  msgid "There was an error writing a line to the backup script:"
136
  msgstr ""
137
 
138
+ #: wp-db-backup.php:681
139
  msgid "Subsequent errors have been omitted from this log."
140
  msgstr ""
141
 
142
+ #: wp-db-backup.php:715
143
  msgid "Error getting table details"
144
  msgstr ""
145
 
146
+ #: wp-db-backup.php:723
147
  #, php-format
148
  msgid "Delete any existing table %s"
149
  msgstr ""
150
 
151
+ #: wp-db-backup.php:732
152
  #, php-format
153
  msgid "Table structure of table %s"
154
  msgstr ""
155
 
156
+ #: wp-db-backup.php:738
157
  #, php-format
158
  msgid "Error with SHOW CREATE TABLE for %s."
159
  msgstr ""
160
 
161
+ #: wp-db-backup.php:745
162
  #, php-format
163
  msgid "Error getting table structure of %s"
164
  msgstr ""
165
 
166
+ #: wp-db-backup.php:753
167
  #, php-format
168
  msgid "Data contents of table %s"
169
  msgstr ""
170
 
171
+ #: wp-db-backup.php:823
172
  #, php-format
173
  msgid "End of data contents of table %s"
174
  msgstr ""
175
 
176
+ #: wp-db-backup.php:839
177
  msgid "The backup directory is not writeable!"
178
  msgstr ""
179
 
180
+ #: wp-db-backup.php:974
181
  #, php-format
182
  msgid "File not found:%s"
183
  msgstr ""
184
 
185
+ #: wp-db-backup.php:974
186
  msgid "Return to Backup"
187
  msgstr ""
188
 
189
+ #: wp-db-backup.php:983
190
  #, php-format
191
  msgid "File %s does not exist!"
192
  msgstr ""
193
 
194
+ #: wp-db-backup.php:990
195
  #, php-format
196
  msgid ""
197
  "Attached to this email is\n"
199
  " Size:%2s kilobytes\n"
200
  msgstr ""
201
 
202
+ #: wp-db-backup.php:991
203
  msgid "Database Backup"
204
  msgstr ""
205
 
206
+ #: wp-db-backup.php:994 wp-db-backup.php:1041
207
  msgid "The following errors were reported:"
208
  msgstr ""
209
 
210
+ #: wp-db-backup.php:999
211
  msgid "ERROR: The mail application has failed to deliver the backup."
212
  msgstr ""
213
 
214
+ #: wp-db-backup.php:1016
215
  msgid "Backup Successful"
216
  msgstr ""
217
 
218
+ #: wp-db-backup.php:1020
219
  #, php-format
220
  msgid ""
221
  "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
222
  msgstr ""
223
 
224
+ #: wp-db-backup.php:1028
225
  #, php-format
226
  msgid "Your backup has been emailed to %s"
227
  msgstr ""
228
 
229
+ #: wp-db-backup.php:1031
230
  msgid ""
231
  "Your backup file has been saved on the server. If you would like to download "
232
  "it now, right click and select \"Save As\""
233
  msgstr ""
234
 
235
+ #: wp-db-backup.php:1032
236
  #, php-format
237
  msgid "%s bytes"
238
  msgstr ""
239
 
240
+ #: wp-db-backup.php:1068
241
  msgid "Scheduled Backup Options Saved!"
242
  msgstr ""
243
 
244
+ #: wp-db-backup.php:1095
245
  msgid ""
246
+ "WARNING: Your backup directory does <strong>NOT</strong> exist, and we "
247
+ "cannot create it."
248
  msgstr ""
249
 
250
+ #: wp-db-backup.php:1096
251
+ #, php-format
252
+ msgid "Using your FTP client, try to create the backup directory yourself: %s"
253
+ msgstr ""
254
+
255
+ #: wp-db-backup.php:1100 wp-db-backup.php:1111
256
  msgid ""
257
+ "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot "
258
+ "create the backup files."
259
  msgstr ""
260
 
261
+ #: wp-db-backup.php:1101
262
+ #, php-format
263
+ msgid ""
264
+ "Using your FTP client, try to set the backup directory&rsquo;s write "
265
+ "permission to %1$s or %2$s: %3$s"
266
+ msgstr ""
267
+
268
+ #: wp-db-backup.php:1113
269
+ msgid ""
270
+ "This problem seems to be caused by your server&rsquo;s <code>safe_mode</"
271
+ "code> file ownership restrictions, which limit what files web applications "
272
+ "like WordPress can create."
273
+ msgstr ""
274
+
275
+ #: wp-db-backup.php:1115
276
+ #, php-format
277
+ msgid ""
278
+ "You can try to correct this problem by using your FTP client to delete and "
279
+ "then re-create the backup directory: %s"
280
+ msgstr ""
281
+
282
+ #: wp-db-backup.php:1129
283
  msgid "Tables"
284
  msgstr ""
285
 
286
+ #: wp-db-backup.php:1131
287
  msgid "These core WordPress tables will always be backed up:"
288
  msgstr ""
289
 
290
+ #: wp-db-backup.php:1136
291
+ msgid "Exclude spam comments"
292
  msgstr ""
293
 
294
+ #: wp-db-backup.php:1139
295
+ msgid "Exclude post revisions"
296
  msgstr ""
297
 
298
+ #: wp-db-backup.php:1150
299
+ msgid "You may choose to include any of the following tables:"
300
  msgstr ""
301
 
302
+ #: wp-db-backup.php:1164
303
  msgid "Backup Options"
304
  msgstr ""
305
 
306
+ #: wp-db-backup.php:1165
307
  msgid "What to do with the backup file:"
308
  msgstr ""
309
 
310
+ #: wp-db-backup.php:1169
311
  msgid "Save to server"
312
  msgstr ""
313
 
314
+ #: wp-db-backup.php:1174
315
  msgid "Download to your computer"
316
  msgstr ""
317
 
318
+ #: wp-db-backup.php:1178 wp-db-backup.php:1235
319
  msgid "Email backup to:"
320
  msgstr ""
321
 
322
+ #: wp-db-backup.php:1185
323
+ msgid "Backup now!"
324
+ msgstr ""
325
+
326
+ #: wp-db-backup.php:1188
327
  msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
328
  msgstr ""
329
 
330
+ #: wp-db-backup.php:1199
331
  msgid "Scheduled Backup"
332
  msgstr ""
333
 
334
+ #: wp-db-backup.php:1206
335
+ #, php-format
336
+ msgid "Next Backup: %s"
337
  msgstr ""
338
 
339
+ #: wp-db-backup.php:1211
340
+ #, php-format
341
+ msgid "Last WP-Cron Daily Execution: %s"
342
  msgstr ""
343
 
344
+ #: wp-db-backup.php:1212
345
+ #, php-format
346
+ msgid "Next WP-Cron Daily Execution: %s"
347
  msgstr ""
348
 
349
+ #: wp-db-backup.php:1217
350
  msgid "Schedule: "
351
  msgstr ""
352
 
353
+ #: wp-db-backup.php:1220
354
  msgid "None"
355
  msgstr ""
356
 
357
+ #: wp-db-backup.php:1220
358
  msgid "Daily"
359
  msgstr ""
360
 
361
+ #: wp-db-backup.php:1243
362
+ msgid "Tables to include in the scheduled backup:"
363
  msgstr ""
364
 
365
+ #: wp-db-backup.php:1253
366
+ msgid "Schedule backup"
367
  msgstr ""
368
 
369
+ #: wp-db-backup.php:1278
370
  msgid "Never"
371
  msgstr ""
372
 
373
+ #: wp-db-backup.php:1283
374
  #, php-format
375
  msgid "%s seconds"
376
  msgstr ""
377
 
378
+ #: wp-db-backup.php:1316
379
  msgid "Once Weekly"
380
  msgstr ""
381
 
382
+ #: wp-db-backup.php:1329
383
  #, php-format
384
  msgid ""
385
  "Your WordPress version, %1s, lacks important security features without which "
388
  "WordPress</a> to a more recent version."
389
  msgstr ""
390
 
391
+ #: wp-db-backup.php:1347
392
  msgid "You are not allowed to perform backups."
393
  msgstr ""
394
 
395
+ #: wp-db-backup.php:1362
396
  #, php-format
397
  msgid ""
398
  "There appears to be an unauthorized attempt from this site to access your "
399
  "database located at %1s. The attempt has been halted."
400
  msgstr ""
401
 
402
+ #: wp-db-backup.php:1373
403
  msgid "Cheatin' uh ?"
404
  msgstr ""