BackWPup – WordPress Backup Plugin - Version 2.1.17

Version Description

  • Changed name of sav button to prevent false css.
  • added autocomplte off to some input fields.
  • cheange api domain for google storage
  • Updated AWS lib to 1.5.17.1
Download this release

Release Info

Developer danielhuesken
Plugin Icon 128x128 BackWPup – WordPress Backup Plugin
Version 2.1.17
Comparing to
See all releases

Code changes from version 2.1.16 to 2.1.17

backwpup-functions.php CHANGED
@@ -710,11 +710,11 @@ function backwpup_env_checks() {
710
  if (strtolower(substr(WP_PLUGIN_URL,0,7))!='http://' and strtolower(substr(WP_PLUGIN_URL,0,8))!='https://') { // check logs folder
711
  $message.=sprintf(__("- WP_PLUGIN_URL '%s' must set as a full URL!",'backwpup'),WP_PLUGIN_URL).'<br />';
712
  }
713
- if (false !== $nextrun=wp_next_scheduled('backwpup_cron')) {
714
- if (empty($nextrun) or $nextrun<(time()-(3600*24))) { //check cron jobs work
715
- $message.=__("- WP-Cron isn't working, please check it!","backwpup") .'<br />';
716
- }
717
- }
718
  //put massage if one
719
  if (!empty($message))
720
  $backwpup_admin_message = '<div id="message" class="error fade"><strong>BackWPup:</strong><br />'.$message.'</div>';
@@ -916,7 +916,7 @@ function backwpup_get_job_vars($jobid='',$jobnewsettings='') {
916
  if (substr($jobsettings['backupdir'],0,1)!='/' and substr($jobsettings['backupdir'],1,1)!=':' and !empty($jobsettings['backupdir'])) //add abspath if not absolute
917
  $jobsettings['backupdir']=rtrim(str_replace('\\','/',ABSPATH),'/').'/'.$jobsettings['backupdir'];
918
  $jobsettings['backupdir']=trailingslashit(str_replace('//','/',str_replace('\\','/',trim($jobsettings['backupdir']))));
919
- if ($jobsettings['backupdir']=='/')
920
  $jobsettings['backupdir']='';
921
 
922
  if (!isset($jobsettings['maxbackups']) or !is_int($jobsettings['maxbackups']))
710
  if (strtolower(substr(WP_PLUGIN_URL,0,7))!='http://' and strtolower(substr(WP_PLUGIN_URL,0,8))!='https://') { // check logs folder
711
  $message.=sprintf(__("- WP_PLUGIN_URL '%s' must set as a full URL!",'backwpup'),WP_PLUGIN_URL).'<br />';
712
  }
713
+ //if (false !== $nextrun=wp_next_scheduled('backwpup_cron')) {
714
+ // if (empty($nextrun) or $nextrun<(time()-(3600*24))) { //check cron jobs work
715
+ // $message.=__("- WP-Cron isn't working, please check it!","backwpup") .'<br />';
716
+ // }
717
+ //}
718
  //put massage if one
719
  if (!empty($message))
720
  $backwpup_admin_message = '<div id="message" class="error fade"><strong>BackWPup:</strong><br />'.$message.'</div>';
916
  if (substr($jobsettings['backupdir'],0,1)!='/' and substr($jobsettings['backupdir'],1,1)!=':' and !empty($jobsettings['backupdir'])) //add abspath if not absolute
917
  $jobsettings['backupdir']=rtrim(str_replace('\\','/',ABSPATH),'/').'/'.$jobsettings['backupdir'];
918
  $jobsettings['backupdir']=trailingslashit(str_replace('//','/',str_replace('\\','/',trim($jobsettings['backupdir']))));
919
+ if ( $jobsettings[ 'backupdir' ] == '/' || $jobsettings[ 'backupdir' ] == trailingslashit( str_replace( '\\', '/', WP_CONTENT_DIR ) ) || $jobsettings[ 'backupdir' ] == trailingslashit( str_replace( '\\', '/', ABSPATH ) ) )
920
  $jobsettings['backupdir']='';
921
 
922
  if (!isset($jobsettings['maxbackups']) or !is_int($jobsettings['maxbackups']))
backwpup.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: BackWPup
4
  Plugin URI: http://backwpup.com
5
  Description: WordPress Backup and more...
6
  Author: Daniel H&uuml;sken
7
- Version: 2.1.16
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
@@ -34,7 +34,7 @@ if (!defined('ABSPATH'))
34
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
35
  define('BACKWPUP_PLUGIN_BASEURL', plugins_url(BACKWPUP_PLUGIN_BASEDIR));
36
  //Set Plugin Version
37
- define('BACKWPUP_VERSION', '2.1.16');
38
  //Set Min Wordpress Version
39
  define('BACKWPUP_MIN_WORDPRESS_VERSION', '3.1');
40
  //Set User Capability
4
  Plugin URI: http://backwpup.com
5
  Description: WordPress Backup and more...
6
  Author: Daniel H&uuml;sken
7
+ Version: 2.1.17
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
34
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
35
  define('BACKWPUP_PLUGIN_BASEURL', plugins_url(BACKWPUP_PLUGIN_BASEDIR));
36
  //Set Plugin Version
37
+ define('BACKWPUP_VERSION', '2.1.17');
38
  //Set Min Wordpress Version
39
  define('BACKWPUP_MIN_WORDPRESS_VERSION', '3.1');
40
  //Set User Capability
job/dest_gstorage.php CHANGED
@@ -10,7 +10,7 @@ function dest_gstorage() {
10
  try {
11
  $gstorage = new AmazonS3(array('key'=>$STATIC['JOB']['GStorageAccessKey'],'secret'=>$STATIC['JOB']['GStorageSecret'],'certificate_authority'=>true));
12
  //set up s3 for google
13
- $gstorage->set_hostname('commondatastorage.googleapis.com');
14
  $gstorage->allow_hostname_override(false);
15
  if ($gstorage->if_bucket_exists($STATIC['JOB']['GStorageBucket'])) {
16
  trigger_error(sprintf(__('Connected to GStorage Bucket: %s','backwpup'),$STATIC['JOB']['GStorageBucket']),E_USER_NOTICE);
10
  try {
11
  $gstorage = new AmazonS3(array('key'=>$STATIC['JOB']['GStorageAccessKey'],'secret'=>$STATIC['JOB']['GStorageSecret'],'certificate_authority'=>true));
12
  //set up s3 for google
13
+ $gstorage->set_hostname('storage.googleapis.com');
14
  $gstorage->allow_hostname_override(false);
15
  if ($gstorage->if_bucket_exists($STATIC['JOB']['GStorageBucket'])) {
16
  trigger_error(sprintf(__('Connected to GStorage Bucket: %s','backwpup'),$STATIC['JOB']['GStorageBucket']),E_USER_NOTICE);
job/job_functions.php CHANGED
@@ -200,11 +200,6 @@ function update_working_file($mustwrite=false) {
200
  $stepspersent=round(count($WORKING['STEPSDONE'])/count($WORKING['STEPS'])*100);
201
  else
202
  $stepspersent=1;
203
- //PHP_SAPI for fcgi requires a data flush of at least 256 bytes every 40 seconds or else it forces a script hault
204
- if ( stristr( PHP_SAPI , 'fcgi') ) {
205
- echo str_repeat(' ', 13 );
206
- @flush();
207
- }
208
  @set_time_limit(0);
209
  if (is_writable($STATIC['TEMPDIR'].'.running')) {
210
  file_put_contents($STATIC['TEMPDIR'].'.running',serialize(array('timestamp'=>time(),'JOBID'=>$STATIC['JOB']['jobid'],'LOGFILE'=>$STATIC['LOGFILE'],'STEPSPERSENT'=>$stepspersent,'STEPPERSENT'=>$steppersent,'ABSPATH'=>$STATIC['WP']['ABSPATH'],'WORKING'=>$WORKING)));
200
  $stepspersent=round(count($WORKING['STEPSDONE'])/count($WORKING['STEPS'])*100);
201
  else
202
  $stepspersent=1;
 
 
 
 
 
203
  @set_time_limit(0);
204
  if (is_writable($STATIC['TEMPDIR'].'.running')) {
205
  file_put_contents($STATIC['TEMPDIR'].'.running',serialize(array('timestamp'=>time(),'JOBID'=>$STATIC['JOB']['jobid'],'LOGFILE'=>$STATIC['LOGFILE'],'STEPSPERSENT'=>$stepspersent,'STEPPERSENT'=>$steppersent,'ABSPATH'=>$STATIC['WP']['ABSPATH'],'WORKING'=>$WORKING)));
job/job_run.php CHANGED
@@ -161,7 +161,7 @@ foreach($WORKING['STEPS'] as $step) {
161
  update_working_file(true);
162
  call_user_func(strtolower($step));
163
  }
164
- if ($WORKING[$step]['STEP_TRY']>=$STATIC['CFG']['jobstepretry'])
165
  trigger_error(__('Step arborted has too many trys!','backwpup'),E_USER_ERROR);
166
  } else {
167
  trigger_error(sprintf(__('Can not find job step function %s!','backwpup'),strtolower($step)),E_USER_ERROR);
161
  update_working_file(true);
162
  call_user_func(strtolower($step));
163
  }
164
+ if ($WORKING[$step]['STEP_TRY']>$STATIC['CFG']['jobstepretry'])
165
  trigger_error(__('Step arborted has too many trys!','backwpup'),E_USER_ERROR);
166
  } else {
167
  trigger_error(sprintf(__('Can not find job step function %s!','backwpup'),strtolower($step)),E_USER_ERROR);
lang/backwpup-fr_FR.mo CHANGED
Binary file
lang/backwpup-fr_FR.po CHANGED
@@ -2,1583 +2,1496 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: BackWPup v2.1.12\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2012-07-12 21:01:58+0000\n"
7
- "Last-Translator: mermouy <mermouy@gmail.com>\n"
8
  "Language-Team: \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=2; plural=n != 1;\n"
13
- "X-Poedit-Language: French\n"
14
- "X-Poedit-Country: FRANCE\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
 
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Poedit-Bookmarks: \n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #. translators: plugin header field 'Name'
23
- #: backwpup-functions.php:4
24
- #: backwpup-functions.php:293
25
- #: backwpup-functions.php:518
26
- #: backwpup.php:0
27
- #@ backwpup
28
- #@ textdomain
29
  msgid "BackWPup"
30
  msgstr "BackWPup"
31
 
32
- #: backwpup-functions.php:5
33
- #: backwpup-functions.php:521
34
  #: pages/page_backwpupsettings.php:101
35
- #@ backwpup
36
  msgid "Jobs"
37
  msgstr "Opérations"
38
 
 
39
  #: backwpup-functions.php:7
40
- #: pages/page_backwpup.php:8
41
- #: pages/page_backwpupeditjob.php:25
42
- #@ backwpup
43
  msgid "Add New"
44
  msgstr "Ajouter"
45
 
 
46
  #: backwpup-functions.php:9
47
- #@ backwpup
48
  msgid "Working"
49
  msgstr "En cours"
50
 
51
- #: backwpup-functions.php:11
52
- #: backwpup-functions.php:522
53
- #: pages/header_backwpupbackups.php:327
54
- #: pages/header_backwpuplogs.php:61
55
  #: pages/page_backwpupsettings.php:79
56
- #@ backwpup
57
  msgid "Logs"
58
  msgstr "Fichiers journaux"
59
 
60
- #: backwpup-functions.php:13
61
- #: backwpup-functions.php:523
62
- #@ backwpup
63
  msgid "Backups"
64
  msgstr "Sauvegardes"
65
 
 
66
  #: backwpup-functions.php:15
67
- #@ backwpup
68
  msgid "Tools"
69
  msgstr "Outils"
70
 
71
- #: backwpup-functions.php:17
72
- #: backwpup-functions.php:274
73
- #@ backwpup
74
  msgid "Settings"
75
  msgstr "Paramètres"
76
 
77
- #. translators: plugin header field 'PluginURI'
78
- #: backwpup-functions.php:87
79
- #: backwpup-functions.php:107
80
- #: backwpup-functions.php:129
81
- #: backwpup.php:0
82
- #@ backwpup
83
- msgid "http://backwpup.com"
84
- msgstr "http://backwpup.com"
85
-
86
- #: backwpup-functions.php:90
87
- #: backwpup-functions.php:97
88
- #@ backwpup
89
  msgid "Plugin Info"
90
  msgstr "Info extension"
91
 
92
- #: backwpup-functions.php:92
93
- #: backwpup-functions.php:99
94
- #: backwpup-functions.php:131
95
- #: backwpup-functions.php:143
96
- #@ backwpup
97
- msgid "BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
98
- msgstr "BackWPup est livré sans AUCUNE GARANTIE. C'est un logiciel libre, et vous êtes invités à le redistribuer sous certaines conditions."
99
 
100
- #: backwpup-functions.php:104
101
- #@ backwpup
 
 
 
 
 
 
 
 
 
102
  msgid "Overview"
103
  msgstr "Vue générale"
104
 
105
- #: backwpup-functions.php:109
106
- #: backwpup-functions.php:119
107
- #: backwpup-functions.php:132
108
- #: backwpup-functions.php:144
109
- #@ backwpup
110
  msgid "For more information:"
111
  msgstr "Pour plus d'informations:"
112
 
113
- #: backwpup-functions.php:111
114
- #: backwpup-functions.php:121
115
- #: backwpup-functions.php:134
116
- #: backwpup-functions.php:146
117
- #@ backwpup
118
- msgid "Documentation"
119
- msgstr "Documentation"
120
-
121
- #: backwpup-functions.php:112
122
- #: backwpup-functions.php:122
123
- #: backwpup-functions.php:135
124
- #: backwpup-functions.php:147
125
- #: backwpup-functions.php:284
126
- #@ backwpup
127
  msgid "FAQ"
128
  msgstr "FAQ"
129
 
130
- #: backwpup-functions.php:113
131
- #: backwpup-functions.php:123
132
- #: backwpup-functions.php:136
133
- #: backwpup-functions.php:148
134
- #@ backwpup
135
  msgid "Support Forums"
136
  msgstr "Forums d'aide"
137
 
138
- #: backwpup-functions.php:114
139
- #: backwpup-functions.php:124
140
- #: backwpup-functions.php:137
141
- #: backwpup-functions.php:149
142
- #: backwpup-functions.php:286
143
- #@ backwpup
144
- msgid "Donate"
145
- msgstr "Donation"
146
-
147
- #: backwpup-functions.php:115
148
- #: backwpup-functions.php:125
149
- #: backwpup-functions.php:138
150
- #: backwpup-functions.php:150
151
- #@ backwpup
152
  msgid "Google+"
153
  msgstr "Google+"
154
 
155
- #: backwpup-functions.php:274
156
- #@ backwpup
157
  msgid "Go to Settings Page"
158
  msgstr "Aller aux paramètres"
159
 
160
- #: backwpup-functions.php:285
161
- #@ backwpup
162
  msgid "Support"
163
  msgstr "Aide"
164
 
165
- #: backwpup-functions.php:350
166
- #@ backwpup
167
  msgid "WP XML Export"
168
  msgstr "Export WP XML"
169
 
170
- #: backwpup-functions.php:353
171
- #: pages/page_backwpupeditjob.php:96
172
- #@ backwpup
173
  msgid "File Backup"
174
  msgstr "Sauvegarde des fichiers"
175
 
176
- #: backwpup-functions.php:356
177
- #@ backwpup
178
  msgid "Database Backup"
179
  msgstr "Sauvegarde de la base de données"
180
 
181
- #: backwpup-functions.php:359
182
- #@ backwpup
183
  msgid "Optimize Database Tables"
184
  msgstr "Optimisation des tables"
185
 
186
- #: backwpup-functions.php:362
187
- #@ backwpup
188
  msgid "Check Database Tables"
189
  msgstr "Vérification des tables"
190
 
191
- #: backwpup-functions.php:427
192
- #@ backwpup
193
  msgid "View Log:"
194
  msgstr "Voir journal:"
195
 
196
- #: backwpup-functions.php:429
197
- #: pages/func_backwpuplogs.php:135
198
  #, php-format
199
- #@ backwpup
200
  msgid "%d ERROR"
201
  msgid_plural "%d ERRORS"
202
- msgstr[0] ""
203
- msgstr[1] ""
204
 
205
- #: backwpup-functions.php:431
206
- #: pages/func_backwpuplogs.php:137
207
  #, php-format
208
- #@ backwpup
209
  msgid "%d WARNING"
210
  msgid_plural "%d WARNINGS"
211
- msgstr[0] ""
212
- msgstr[1] ""
213
 
214
- #: backwpup-functions.php:433
215
- #: pages/func_backwpuplogs.php:139
216
- #@ backwpup
217
  msgid "O.K."
218
  msgstr "O.K."
219
 
220
- #: backwpup-functions.php:441
221
- #: backwpup-functions.php:471
222
- #: backwpup-functions.php:499
223
- #: pages/page_backwpupsettings.php:59
224
- #@ backwpup
225
  msgid "none"
226
  msgstr "aucune"
227
 
228
- #: backwpup-functions.php:459
229
- #@ backwpup
230
  msgid "How many of the lastes logs would you like to display?"
231
  msgstr "Combien des derniers fichiers journaux voulez-vous afficher?"
232
 
233
- #: backwpup-functions.php:485
 
234
  #, php-format
235
- #@ backwpup
236
  msgid "working since %d sec."
237
  msgstr "en cours depuis %d sec."
238
 
239
- #: backwpup-functions.php:486
240
- #: pages/func_backwpup.php:107
241
- #@ backwpup
242
  msgid "View!"
243
  msgstr "Voir!"
244
 
245
- #: backwpup-functions.php:487
246
- #: pages/func_backwpup.php:108
247
- #@ backwpup
248
  msgid "Abort!"
249
  msgstr "Abandonner!"
250
 
251
- #: backwpup-functions.php:492
252
- #@ backwpup
253
  msgid "Edit Job"
254
  msgstr "Modifier l'opération"
255
 
256
- #: backwpup-functions.php:507
257
- #: pages/page_backwpuplogs.php:8
258
- #@ backwpup
259
  msgid "BackWPup Logs"
260
  msgstr "Fichiers journaux de BackWPup"
261
 
262
- #: backwpup-functions.php:508
263
- #@ backwpup
264
- msgid "BackWPup Aktive Jobs"
265
  msgstr "Opérations actives BackWPup"
266
 
267
- #: backwpup-functions.php:520
268
- #@ backwpup
269
  msgid "See Working!"
270
  msgstr "Observer l'opération!"
271
 
272
- #: backwpup-functions.php:524
273
- #@ backwpup
274
  msgid "BackWPup Job"
275
  msgstr "Opération BackWPup"
276
 
277
- #: backwpup-functions.php:733
 
278
  #, php-format
279
- #@ backwpup
280
  msgid "- WordPress %d or higher is needed!"
281
  msgstr "- WordPress %d ou supérieur est nécessaire!"
282
 
283
- #: backwpup-functions.php:737
284
- #@ backwpup
285
  msgid "- PHP 5.2.4 or higher is needed!"
286
  msgstr "- PHP 5.2.4 ou supérieur est nécessaire!"
287
 
288
- #: backwpup-functions.php:744
 
289
  #, php-format
290
- #@ backwpup
291
  msgid "- Temp folder '%s' does not exists!"
292
  msgstr "- Le répertoire temporaire '%s' n'existe pas!"
293
 
294
- #: backwpup-functions.php:747
 
295
  #, php-format
296
- #@ backwpup
297
  msgid "- Temp folder '%s' is not writeable!"
298
  msgstr "- Le répertoire temporaire '%s' n'est pas inscriptible!"
299
 
300
- #: backwpup-functions.php:753
 
301
  #, php-format
302
- #@ backwpup
303
  msgid "- Log folder '%s' does not exists!"
304
  msgstr "- Le répertoire des fichiers journaux '%s' n'existe pas!"
305
 
306
- #: backwpup-functions.php:756
 
307
  #, php-format
308
- #@ backwpup
309
  msgid "- Log folder '%s' is not writeable!"
310
  msgstr "- Le répertoire des fichiers journaux '%s' n'est pas inscriptible!"
311
 
312
- #: backwpup-functions.php:759
 
313
  #, php-format
314
- #@ backwpup
315
  msgid "- Log folder '%s' is not in open_basedir path!"
316
- msgstr "- Le répertoire des fichiers journaux '%s' n'est pas dans le chemin open_basedir!"
 
 
317
 
318
- #: backwpup-functions.php:762
 
319
  #, php-format
320
- #@ backwpup
321
  msgid "- WP_CONTENT_URL '%s' must set as a full URL!"
322
  msgstr "- WP_CONTENT_URL '%s' doit être une adresse valide!"
323
 
324
- #: backwpup-functions.php:765
 
325
  #, php-format
326
- #@ backwpup
327
  msgid "- WP_PLUGIN_URL '%s' must set as a full URL!"
328
  msgstr "- WP_PLUGIN_URL '%s' doit être une adresse valide!"
329
 
330
- #: backwpup-functions.php:769
331
- #@ backwpup
332
  msgid "- WP-Cron isn't working, please check it!"
333
  msgstr "- WP-Cron ne fonctionne pas, veuillez vérifier!"
334
 
335
- #: backwpup-functions.php:825
336
- #@ backwpup
337
  msgid "New"
338
  msgstr "Nouvelle"
339
 
340
- #. translators: plugin header field 'Description'
341
- #: backwpup.php:0
342
- #@ backwpup
343
- msgid "WordPress Backup and more..."
344
- msgstr "Sauvegarde de WordPress et plus..."
345
-
346
- #. translators: plugin header field 'Author'
347
- #: backwpup.php:0
348
- #@ backwpup
349
- msgid "Daniel H&uuml;sken"
350
- msgstr "Daniel H&uuml;sken"
351
-
352
- #. translators: plugin header field 'AuthorURI'
353
- #: backwpup.php:0
354
- #@ backwpup
355
- msgid "http://danielhuesken.de"
356
- msgstr "http://danielhuesken.de"
357
-
358
- #. translators: plugin header field 'Version'
359
- #: backwpup.php:0
360
- #@ backwpup
361
- msgid "2.1.12"
362
- msgstr "2.1.12"
363
-
364
  #: job/backup_create.php:13
365
  #, php-format
366
- #@ backwpup
367
  msgid "%d. try to create backup zip archive..."
368
  msgstr "%d. Tentative de création de l'archive zip..."
369
 
 
370
  #: job/backup_create.php:18
371
  #, php-format
372
- #@ backwpup
373
  msgid "Can not add \"%s\" to zip archive!"
374
  msgstr "Impossible d'ajouter \"%s\" à l'archive zip!"
375
 
 
376
  #: job/backup_create.php:25
377
- #@ backwpup
378
  msgid "(4) ER_SEEK"
379
  msgstr "(4) ER_SEEK"
380
 
 
381
  #: job/backup_create.php:27
382
- #@ backwpup
383
  msgid "(5) ER_READ"
384
  msgstr "(5) ER_READ"
385
 
 
386
  #: job/backup_create.php:29
387
- #@ backwpup
388
  msgid "(9) ER_NOENT"
389
  msgstr "(9) ER_NOENT"
390
 
 
391
  #: job/backup_create.php:31
392
- #@ backwpup
393
  msgid "(10) ER_EXISTS"
394
  msgstr "(10) ER_EXISTS"
395
 
 
396
  #: job/backup_create.php:33
397
- #@ backwpup
398
  msgid "(11) ER_OPEN"
399
  msgstr "(11) ER_OPEN"
400
 
 
401
  #: job/backup_create.php:35
402
- #@ backwpup
403
  msgid "(14) ER_MEMORY"
404
  msgstr "(14) ER_MEMORY"
405
 
 
406
  #: job/backup_create.php:37
407
- #@ backwpup
408
  msgid "(18) ER_INVAL"
409
  msgstr "(18) ER_INVAL"
410
 
 
411
  #: job/backup_create.php:39
412
- #@ backwpup
413
  msgid "(19) ER_NOZIP"
414
  msgstr "(19) ER_NOZIP"
415
 
 
416
  #: job/backup_create.php:41
417
- #@ backwpup
418
  msgid "(21) ER_INCONS"
419
  msgstr "(21) ER_INCONS"
420
 
 
421
  #: job/backup_create.php:42
422
  #, php-format
423
- #@ backwpup
424
  msgid "Zip returns status: %s"
425
  msgstr "Zip a renvoyé le statut: %s"
426
 
 
427
  #: job/backup_create.php:45
428
- #@ backwpup
429
  msgid "Backup zip archive create done!"
430
  msgstr "Archive zip de sauvegarde créée!"
431
 
 
432
  #: job/backup_create.php:48
433
- #@ backwpup
434
  msgid "Can not create backup zip archive $s!"
435
  msgstr "Création de l'archive zip $s impossible!"
436
 
 
437
  #: job/backup_create.php:59
438
  #, php-format
439
- #@ backwpup
440
  msgid "%d. try to create backup zip (PclZip) archive..."
441
  msgstr "%d. tentative de création de l'archive zip (PclZip)..."
442
 
 
443
  #: job/backup_create.php:68
444
  #, php-format
445
- #@ backwpup
446
  msgid "Zip archive create error: %s"
447
  msgstr "Erreur de création de l'archive zip: %s"
448
 
 
449
  #: job/backup_create.php:72
450
- #@ backwpup
451
  msgid "Backup zip archive create done"
452
  msgstr "Archive zip de sauvegarde créée"
453
 
 
454
  #: job/backup_create.php:89
455
- #@ backwpup
456
- msgid "Can not create tar arcive file!"
457
  msgstr "Impossible de créer l'archive tar!"
458
 
 
459
  #: job/backup_create.php:92
460
  #, php-format
461
- #@ backwpup
462
  msgid "%1$d. try to create %2$s archive file..."
463
  msgstr "%1$d. tentative de création de l'archive %2$s ..."
464
 
 
465
  #: job/backup_create.php:100
466
  #, php-format
467
- #@ backwpup
468
  msgid "File \"%s\" not readable!"
469
  msgstr "\"%s\" non accessible!"
470
 
 
471
  #: job/backup_create.php:115
472
  #, php-format
473
- #@ backwpup
474
  msgid "File name \"%1$s\" to long to save corectly in %2$s archive!"
475
- msgstr "Le nom de fichier \"%1$s\\ est trop long pour s'enregistrer correctement dans l'archive %2$s!"
 
 
476
 
 
477
  #: job/backup_create.php:117
478
  #, php-format
479
- #@ backwpup
480
  msgid "File path \"%1$s\" to long to save corectly in %2$s archive!"
481
- msgstr "Le chemin vers \"%1$s\" est trop long pour s'enregistrer correctement dans l'archive %2$s!"
 
 
482
 
483
- #: job/backup_create.php:195
 
484
  #, php-format
485
- #@ backwpup
486
  msgid "%s archive creation done"
487
  msgstr "Création de l'archive %s réussie"
488
 
489
- #: job/backup_create.php:199
 
490
  #, php-format
491
- #@ backwpup
492
  msgid "Archive size is %s"
493
  msgstr "La taille de l'archive est de %s"
494
 
495
- #: job/backup_create.php:206
 
496
  #, php-format
497
- #@ backwpup
498
  msgid "PCL ZIP Error \"%1$s\" on file %2$s!"
499
  msgstr "Erreur PCL ZIP \"%1$s\" sur le fichier %2$s!"
500
 
 
501
  #: job/db_check.php:4
502
  #, php-format
503
- #@ backwpup
504
  msgid "%d. try for database check..."
505
  msgstr "%d. tentative de vérification de la base de données"
506
 
507
- #: job/db_check.php:13
508
- #: job/db_check.php:29
509
- #: job/db_check.php:44
510
- #: job/db_dump.php:13
511
- #: job/db_dump.php:25
512
- #: job/db_dump.php:108
513
- #: job/db_dump.php:118
514
- #: job/db_optimize.php:13
515
- #: job/db_optimize.php:28
516
- #: job/job_functions.php:34
517
- #: job/job_functions.php:47
518
- #, php-format
519
- #@ backwpup
520
  msgid "Database error %1$s for query %2$s"
521
  msgstr "Erreur base de données %1$s pour la requête %2$s"
522
 
523
- #: job/db_check.php:34
524
- #: job/db_check.php:36
525
- #: job/db_check.php:38
526
  #, php-format
527
- #@ backwpup
528
  msgid "Result of table check for %1$s is: %2$s"
529
  msgstr "Le résultat de la vérification de la table %1$s est: %2$s"
530
 
531
- #: job/db_check.php:49
532
- #: job/db_check.php:51
533
- #: job/db_check.php:53
534
  #, php-format
535
- #@ backwpup
536
  msgid "Result of table repair for %1$s is: %2$s"
537
  msgstr "Le résultat de la réparation de la table %1$s est: %2$s"
538
 
 
539
  #: job/db_check.php:59
540
- #@ backwpup
541
  msgid "Database check done!"
542
  msgstr "Vérification de la base de donnée réussie!"
543
 
 
544
  #: job/db_check.php:61
545
- #@ backwpup
546
  msgid "No tables to check"
547
  msgstr "Aucune table à vérifier!"
548
 
 
549
  #: job/db_dump.php:4
550
  #, php-format
551
- #@ backwpup
552
  msgid "%d. try for database dump..."
553
  msgstr "%d. tentative de dump de la base de données..."
554
 
555
- #: job/db_dump.php:57
556
- #, php-format
557
- #@ backwpup
558
- msgid "Dump database table \"%s\""
559
- msgstr "Dump de la table \"%s\""
560
-
561
- #: job/db_dump.php:74
562
- #@ backwpup
563
  msgid "Database dump done!"
564
  msgstr "Dump de la base de donnée réussie!"
565
 
566
- #: job/db_dump.php:76
567
- #@ backwpup
568
  msgid "Can not create database dump!"
569
  msgstr "Impossible de créer le dump de la base de donnée!"
570
 
571
- #: job/db_dump.php:79
572
- #@ backwpup
573
  msgid "No tables to dump"
574
  msgstr "Aucune table pour le dump"
575
 
576
- #: job/db_dump.php:85
 
577
  #, php-format
578
- #@ backwpup
579
  msgid "Add database dump \"%1$s\" with %2$s to backup file list"
580
  msgstr "Ajout du dump \"%1$s\" avec %2$s a la liste des fichiers à sauvegarder"
581
 
 
 
 
 
 
 
 
582
  #: job/db_optimize.php:4
583
  #, php-format
584
- #@ backwpup
585
  msgid "%d. try for database optimize..."
586
  msgstr "%d. tentative d'optimisation de la base de données..."
587
 
588
- #: job/db_optimize.php:35
589
- #: job/db_optimize.php:37
590
- #: job/db_optimize.php:39
591
  #, php-format
592
- #@ backwpup
593
  msgid "Result of table optimize for %1$s is: %2$s"
594
  msgstr "Le résultat de l'optimisation de la table %1$s est: %2$s"
595
 
 
596
  #: job/db_optimize.php:41
597
- #@ backwpup
598
  msgid "Database optimize done!"
599
  msgstr "Optimisation de la base de données réussie!"
600
 
 
601
  #: job/db_optimize.php:44
602
- #@ backwpup
603
  msgid "No tables to optimize"
604
  msgstr "Aucune tables à optimiser"
605
 
 
606
  #: job/dest_dropbox.php:6
607
  #, php-format
608
- #@ backwpup
609
  msgid "%d. Try to sending backup file to DropBox..."
610
  msgstr "%d. tentative d'envoi de fichiers vers Dropbox..."
611
 
612
- #: job/dest_dropbox.php:17
 
613
  #, php-format
614
- #@ backwpup
615
  msgid "Authed with DropBox from %s"
616
  msgstr "Authentifié chez DropBox depuis %s"
617
 
618
- #: job/dest_dropbox.php:22
619
- #@ backwpup
620
  msgid "No free space left on DropBox!!!"
621
  msgstr "Plus de place sur DropBox!!!"
622
 
623
- #: job/dest_dropbox.php:26
 
624
  #, php-format
625
- #@ backwpup
626
  msgid "%s free on DropBox"
627
  msgstr "%s de libre sur DropBox"
628
 
629
- #: job/dest_dropbox.php:31
630
- #@ backwpup
631
  msgid "Upload to DropBox now started... "
632
  msgstr "Envoi vers DropBox commencé..."
633
 
634
- #: job/dest_dropbox.php:37
635
- #: job/dest_gstorage.php:27
636
- #: job/dest_msazure.php:25
637
- #: job/dest_s3.php:30
638
- #: job/dest_sugarsync.php:37
639
  #, php-format
640
- #@ backwpup
641
  msgid "Backup transferred to %s"
642
  msgstr "Sauvegarde envoyée vers %s"
643
 
644
- #: job/dest_dropbox.php:42
645
- #: job/dest_dropbox.php:67
646
  #, php-format
647
- #@ backwpup
648
  msgid "DropBox API: %s"
649
  msgstr "DropBox API: %s"
650
 
651
- #: job/dest_dropbox.php:63
 
652
  #, php-format
653
- #@ backwpup
654
  msgid "One file deleted on DropBox"
655
  msgid_plural "%d files deleted on DropBox"
656
- msgstr[0] ""
657
- msgstr[1] ""
658
 
 
659
  #: job/dest_folder.php:25
660
  #, php-format
661
- #@ backwpup
662
  msgid "One backup file deleted"
663
  msgid_plural "%d backup files deleted"
664
- msgstr[0] ""
665
- msgstr[1] ""
666
 
 
667
  #: job/dest_ftp.php:9
668
  #, php-format
669
- #@ backwpup
670
  msgid "%d. try to sending backup file to a FTP Server..."
671
  msgstr "%d. tentative d'envoi du fichier sauvegarde vers un serveur FTP..."
672
 
 
673
  #: job/dest_ftp.php:15
674
  #, php-format
675
- #@ backwpup
676
  msgid "Connected by SSL-FTP to Server: %s"
677
  msgstr "Connexion sécurisée par SSL-FTP au serveur: %s"
678
 
 
679
  #: job/dest_ftp.php:17
680
  #, php-format
681
- #@ backwpup
682
  msgid "Can not connect by SSL-FTP to Server: %s"
683
  msgstr "Impossible de se connecter par SSL-FTP au serveur: %s"
684
 
 
685
  #: job/dest_ftp.php:21
686
- #@ backwpup
687
  msgid "PHP function to connect with SSL-FTP to server not exists!"
688
- msgstr "La fonction PHP pour se connecter au serveur avec SSL-FTP n'existe pas!"
 
689
 
 
690
  #: job/dest_ftp.php:27
691
  #, php-format
692
- #@ backwpup
693
  msgid "Connected to FTP server: %s"
694
  msgstr "Connecté au serveur FTP: %s"
695
 
 
696
  #: job/dest_ftp.php:29
697
  #, php-format
698
- #@ backwpup
699
  msgid "Can not connect to FTP server: %s"
700
  msgstr "Impossible de se connecter au serveur FTP: %s"
701
 
702
- #: job/dest_ftp.php:36
703
- #: job/dest_ftp.php:43
704
- #: job/dest_ftp.php:55
705
- #: job/dest_ftp.php:83
706
  #, php-format
707
- #@ backwpup
708
  msgid "FTP Client command: %s"
709
  msgstr "Commande client FTP: %s "
710
 
711
- #: job/dest_ftp.php:38
712
- #: job/dest_ftp.php:41
713
- #: job/dest_ftp.php:45
714
- #: job/dest_ftp.php:58
715
- #: job/dest_ftp.php:60
716
- #: job/dest_ftp.php:86
717
- #: job/dest_ftp.php:88
718
- #: job/dest_ftp.php:91
719
- #: job/dest_ftp.php:93
720
  #, php-format
721
- #@ backwpup
722
  msgid "FTP Server reply: %s"
723
  msgstr "Réponse du serveur FTP: %s"
724
 
 
725
  #: job/dest_ftp.php:60
726
- #@ backwpup
727
  msgid "Error getting SYSTYPE"
728
  msgstr "Erreur en essayant d'avoir SYSTYPE"
729
 
730
- #: job/dest_ftp.php:69
 
731
  #, php-format
732
- #@ backwpup
733
- msgid "FTP Folder \"%s\" created!"
734
  msgstr "Répertoire FTP \"%s\" créé!"
735
 
736
- #: job/dest_ftp.php:72
 
737
  #, php-format
738
- #@ backwpup
739
- msgid "FTP Folder \"%s\" can not created!"
740
- msgstr "Le répertoire FTP \"%s\" ne peut être créé!"
741
 
742
- #: job/dest_ftp.php:86
743
- #@ backwpup
 
 
 
 
 
744
  msgid "Entering Passive Mode"
745
  msgstr "Passage en mode passif"
746
 
747
- #: job/dest_ftp.php:88
748
- #@ backwpup
749
  msgid "Can not Entering Passive Mode"
750
  msgstr "Impossible de passer en mode passif"
751
 
752
- #: job/dest_ftp.php:91
753
- #@ backwpup
754
  msgid "Entering Normal Mode"
755
  msgstr "Passage en mode normal"
756
 
757
- #: job/dest_ftp.php:93
758
- #@ backwpup
759
  msgid "Can not Entering Normal Mode"
760
  msgstr "Impossible de passer en mode normal"
761
 
762
- #: job/dest_ftp.php:97
763
- #@ backwpup
764
  msgid "Upload to FTP now started ... "
765
  msgstr "Envoi vers FTP commencé..."
766
 
767
- #: job/dest_ftp.php:106
768
- #@ backwpup
769
  msgid "Can not transfer backup to FTP server!"
770
  msgstr "Impossible d'envoyer la sauvegarde vers le serveur FTP!"
771
 
772
- #: job/dest_ftp.php:110
 
773
  #, php-format
774
- #@ backwpup
775
  msgid "Backup transferred to FTP server: %s"
776
  msgstr "Sauvegarde envoyée vers le serveur FTP: %s"
777
 
778
- #: job/dest_ftp.php:131
 
779
  #, php-format
780
- #@ backwpup
781
  msgid "Can not delete \"%s\" on FTP server!"
782
  msgstr "Impossible d'effacer \"%s\" sur le serveur FTP!"
783
 
784
- #: job/dest_ftp.php:134
 
785
  #, php-format
786
- #@ backwpup
787
  msgid "One file deleted on FTP Server"
788
  msgid_plural "%d files deleted on FTP Server"
789
- msgstr[0] ""
790
- msgstr[1] ""
791
 
 
792
  #: job/dest_gstorage.php:4
793
  #, php-format
794
- #@ backwpup
795
  msgid "%d. try sending backup to Google Storage..."
796
  msgstr "%d. tentative d'envoi de sauvegarde vers Google Storage..."
797
 
 
798
  #: job/dest_gstorage.php:16
799
  #, php-format
800
- #@ backwpup
801
  msgid "Connected to GStorage Bucket: %s"
802
  msgstr "Connecté au panier GStorage: %s"
803
 
 
804
  #: job/dest_gstorage.php:21
805
- #@ backwpup
806
  msgid "Upload to GStorage now started... "
807
  msgstr "Envoi vers GStorage commencé..."
808
 
 
809
  #: job/dest_gstorage.php:31
810
  #, php-format
811
- #@ backwpup
812
  msgid "Can not transfer backup to GStorage! (%1$d) %2$s"
813
  msgstr "Impossible d'envoyer la sauvegarde vers GStorage! (%1$d) %2$s"
814
 
 
815
  #: job/dest_gstorage.php:34
816
  #, php-format
817
- #@ backwpup
818
  msgid "GStorage Bucket \"%s\" not exists!"
819
  msgstr "Le panier GStorage \"%s\" n'existe pas!"
820
 
821
- #: job/dest_gstorage.php:37
822
- #: job/dest_gstorage.php:66
823
- #: pages/func_backwpupbackups.php:392
824
- #: pages/header_backwpupbackups.php:50
825
  #, php-format
826
- #@ backwpup
827
  msgid "GStorage API: %s"
828
  msgstr "GStorage API: %s"
829
 
 
830
  #: job/dest_gstorage.php:58
831
  #, php-format
832
- #@ backwpup
833
  msgid "Can not delete backup on GStorage://%s"
834
  msgstr "Impossible d'effacer la sauvegarde sur GStorage://%s"
835
 
 
836
  #: job/dest_gstorage.php:61
837
  #, php-format
838
- #@ backwpup
839
  msgid "One file deleted on GStorage Bucket"
840
  msgid_plural "%d files deleted on GStorage Bucket"
841
- msgstr[0] ""
842
- msgstr[1] ""
843
 
 
844
  #: job/dest_mail.php:6
845
  #, php-format
846
- #@ backwpup
847
  msgid "%d. try to sending backup with mail..."
848
  msgstr "%d. tentative d'envoi de la sauvegarde par mail..."
849
 
850
- #: job/dest_mail.php:22
851
- #@ backwpup
852
  msgid "Send mail with SMTP"
853
  msgstr "Envoyer le mail avec SMTP"
854
 
855
- #: job/dest_mail.php:26
856
- #@ backwpup
857
  msgid "Send mail with Sendmail"
858
  msgstr "Envoyer le mail avec Sendmail"
859
 
860
- #: job/dest_mail.php:29
861
- #@ backwpup
862
  msgid "Send mail with PHP mail"
863
  msgstr "Envoyer le mail avec la fonction mail de PHP"
864
 
865
- #: job/dest_mail.php:32
866
- #@ backwpup
867
  msgid "Creating mail"
868
  msgstr "Création du mail"
869
 
870
- #: job/dest_mail.php:36
 
871
  #, php-format
872
- #@ backwpup
873
  msgid "BackWPup archive from %1$s: %2$s"
874
  msgstr "L'archive BackWPup de %1$s: %2$s"
875
 
876
- #: job/dest_mail.php:38
 
877
  #, php-format
878
- #@ backwpup
879
  msgid "Backup archive: %s"
880
  msgstr "Archivage de: %s"
881
 
882
- #: job/dest_mail.php:43
883
- #@ backwpup
884
  msgid "Backup archive too big for sending by mail!"
885
  msgstr "Fichier de sauvegarde trop volumineux pour être envoyé par mail!"
886
 
887
- #: job/dest_mail.php:50
888
- #@ backwpup
889
  msgid "Adding backup archive to mail"
890
  msgstr "Ajout du fichier sauvegarde au mail"
891
 
892
- #: job/dest_mail.php:54
893
- #@ backwpup
894
  msgid "Send mail...."
895
  msgstr "Envoi du mail..."
896
 
897
- #: job/dest_mail.php:56
 
898
  #, php-format
899
- #@ backwpup
900
  msgid "Error \"%s\" on sending mail!"
901
  msgstr "Erreur \"%s\" en envoyant le mail!"
902
 
903
- #: job/dest_mail.php:59
904
- #@ backwpup
905
  msgid "Mail send!!!"
906
  msgstr "Mail envoyé!!!"
907
 
 
908
  #: job/dest_msazure.php:5
909
  #, php-format
910
- #@ backwpup
911
  msgid "%d. try sending backup to a Microsoft Azure (Blob)..."
912
  msgstr "%d. tentative d'envoi de la sauvegarde vers Microsoft Azure (Blob)..."
913
 
 
914
  #: job/dest_msazure.php:14
915
  #, php-format
916
- #@ backwpup
917
  msgid "Microsoft Azure container \"%s\" not exists!"
918
  msgstr "Le contenant Microsoft Azure \"%s\" n'existe pas!"
919
 
 
920
  #: job/dest_msazure.php:17
921
  #, php-format
922
- #@ backwpup
923
  msgid "Connected to Microsoft Azure container \"%s\""
924
  msgstr "Connecté au contenant Microsoft Azure \"%s\""
925
 
 
926
  #: job/dest_msazure.php:20
927
- #@ backwpup
928
  msgid "Upload to MS Azure now started... "
929
  msgstr "Envoi vers MS Azure commencé..."
930
 
 
931
  #: job/dest_msazure.php:29
932
- #@ backwpup
933
  msgid "Can not transfer backup to Microsoft Azure!"
934
  msgstr "Impossible d'envoyer la sauvegarde vers Microsoft Azure!"
935
 
 
936
  #: job/dest_msazure.php:50
937
  #, php-format
938
- #@ backwpup
939
  msgid "One file deleted on Microsoft Azure container"
940
  msgid_plural "%d files deleted on Microsoft Azure container"
941
- msgstr[0] ""
942
- msgstr[1] ""
943
 
 
944
  #: job/dest_msazure.php:55
945
  #, php-format
946
- #@ backwpup
947
  msgid "Microsoft Azure API: %s"
948
  msgstr "Microsoft Azure API: %s"
949
 
 
950
  #: job/dest_rsc.php:4
951
- #@ backwpup
952
  msgid "Try to sending backup file to Rackspace Cloud..."
953
  msgstr "Tentative d'envoi de la sauvegarde vers Rackspace Cloud..."
954
 
 
955
  #: job/dest_rsc.php:13
956
- #@ backwpup
957
  msgid "Connected to Rackspase ..."
958
  msgstr "Connecté à Rackspace..."
959
 
960
- #: job/dest_rsc.php:29
961
- #: job/dest_rsc.php:63
962
- #: job/dest_rsc.php:92
963
- #@ backwpup
964
  msgid "Rackspase Cloud API:"
965
  msgstr "Rackspase Cloud API:"
966
 
 
967
  #: job/dest_rsc.php:34
968
- #@ backwpup
969
  msgid "Rackspase Cloud Container not exists:"
970
  msgstr "Le contenant sur Rackspace Cloud n'existe pas!"
971
 
 
972
  #: job/dest_rsc.php:53
973
- #@ backwpup
974
  msgid "Upload to RSC now started ... "
975
  msgstr "Envoi vers RSC commencé..."
976
 
 
977
  #: job/dest_rsc.php:56
978
- #@ backwpup
979
  msgid "Backup File transferred to RSC://"
980
  msgstr "Fichier de sauvegarde transféré vers RSC://"
981
 
 
982
  #: job/dest_rsc.php:60
983
- #@ backwpup
984
  msgid "Can not transfer backup to RSC."
985
  msgstr "Impossible d'envoyer la sauvegarde vers RSC."
986
 
 
987
  #: job/dest_rsc.php:85
988
- #@ backwpup
989
  msgid "Can not delete file on RSC://"
990
  msgstr "Impossible d'effacé le fichier sur RSC://"
991
 
 
992
  #: job/dest_rsc.php:88
993
  #, php-format
994
- #@ backwpup
995
  msgid "One file deleted on RSC container"
996
  msgid_plural "%d files deleted on RSC container"
997
- msgstr[0] ""
998
- msgstr[1] ""
999
 
 
1000
  #: job/dest_s3.php:4
1001
  #, php-format
1002
- #@ backwpup
1003
  msgid "%d. try sending backup file to Amazon S3..."
1004
  msgstr "%d. tentative d'envoi du fichier sauvegarde vers Amazon S3..."
1005
 
 
1006
  #: job/dest_s3.php:14
1007
  #, php-format
1008
- #@ backwpup
1009
  msgid "Connected to S3 Bucket: %s"
1010
  msgstr "Connecté au panier S: %s"
1011
 
 
1012
  #: job/dest_s3.php:24
1013
- #@ backwpup
1014
  msgid "Upload to Amazon S3 now started... "
1015
  msgstr "Envoi vers Amazon S3 commencé..."
1016
 
 
1017
  #: job/dest_s3.php:34
1018
  #, php-format
1019
- #@ backwpup
1020
  msgid "Can not transfer backup to S3! (%1$d) %2$s"
1021
  msgstr "Impossible d'envoyer la sauvegarde vers Amazon S3! (%1$d) %2$s"
1022
 
 
1023
  #: job/dest_s3.php:37
1024
  #, php-format
1025
- #@ backwpup
1026
  msgid "S3 Bucket \"%s\" not exists!"
1027
  msgstr "Panier S3 \"%s\" n'existe pas!"
1028
 
1029
- #: job/dest_s3.php:40
1030
- #: job/dest_s3.php:69
1031
  #, php-format
1032
- #@ backwpup
1033
  msgid "Amazon API: %s"
1034
  msgstr "Amazon API: %s"
1035
 
 
1036
  #: job/dest_s3.php:61
1037
  #, php-format
1038
- #@ backwpup
1039
  msgid "Can not delete backup on S3://%s"
1040
  msgstr "Impossible d'effacer la sauvegarde sur S3://%s"
1041
 
 
1042
  #: job/dest_s3.php:64
1043
  #, php-format
1044
- #@ backwpup
1045
  msgid "One file deleted on S3 Bucket"
1046
  msgid_plural "%d files deleted on S3 Bucket"
1047
- msgstr[0] ""
1048
- msgstr[1] ""
1049
 
 
1050
  #: job/dest_sugarsync.php:6
1051
  #, php-format
1052
- #@ backwpup
1053
  msgid "%d. try sending backup to SugarSync..."
1054
  msgstr "%d. tentatives d'envoi de la sauvegarde vers SugarSync..."
1055
 
 
1056
  #: job/dest_sugarsync.php:15
1057
  #, php-format
1058
- #@ backwpup
1059
  msgid "Authed to SugarSync with Nick %s"
1060
  msgstr "Authentifié chez SugarSync avec le pseudo %s"
1061
 
 
1062
  #: job/dest_sugarsync.php:19
1063
- #@ backwpup
1064
  msgid "No free space left on SugarSync!!!"
1065
  msgstr "Plus de place chez SugarSync!!!"
1066
 
 
1067
  #: job/dest_sugarsync.php:24
1068
  #, php-format
1069
- #@ backwpup
1070
  msgid "%s free on SugarSync"
1071
  msgstr "%s de libre chez SugarSync"
1072
 
 
1073
  #: job/dest_sugarsync.php:31
1074
- #@ backwpup
1075
  msgid "Upload to SugarSync now started... "
1076
  msgstr "Envoi vers SugarSync commencé..."
1077
 
 
1078
  #: job/dest_sugarsync.php:39
1079
- #@ backwpup
1080
  msgid "Can not transfer backup to SugarSync!"
1081
  msgstr "Impossible de transférer la sauvegarde vers SugarSync!"
1082
 
 
1083
  #: job/dest_sugarsync.php:62
1084
  #, php-format
1085
- #@ backwpup
1086
  msgid "One file deleted on SugarSync folder"
1087
  msgid_plural "%d files deleted on SugarSync folder"
1088
- msgstr[0] ""
1089
- msgstr[1] ""
1090
 
 
1091
  #: job/dest_sugarsync.php:66
1092
  #, php-format
1093
- #@ backwpup
1094
  msgid "SugarSync API: %s"
1095
  msgstr "SugarSync API: %s"
1096
 
 
1097
  #: job/file_list.php:5
1098
  #, php-format
1099
- #@ backwpup
1100
  msgid "%d. try for make list of files to backup...."
1101
  msgstr "%d. tentative de création de liste de fichiers à sauvegarder"
1102
 
 
1103
  #: job/file_list.php:66
1104
- #@ backwpup
1105
  msgid "No files to backup"
1106
  msgstr "Aucun fichier à sauvegarder"
1107
 
 
1108
  #: job/file_list.php:68
1109
  #, php-format
1110
- #@ backwpup
1111
  msgid "%1$d files with %2$s to backup"
1112
  msgstr "%1$d fichiers et %2$s à sauvegarder"
1113
 
 
1114
  #: job/file_list.php:93
1115
  #, php-format
1116
- #@ backwpup
1117
  msgid "File or folder \"%s\" is not readable!"
1118
  msgstr "Le fichier ou le répertoire \"%s\" n'est pas accessible! "
1119
 
 
1120
  #: job/file_list.php:95
1121
  #, php-format
1122
- #@ backwpup
1123
  msgid "Link \"%s\" not followed"
1124
  msgstr "Le lien \"%s\" n'a pas été suivi"
1125
 
 
1126
  #: job/file_list.php:101
1127
  #, php-format
1128
- #@ backwpup
1129
  msgid "\"%s\" is not a file or directory"
1130
  msgstr "\"%s\" n'est ni un fichier ni un répertoire"
1131
 
1132
- #: job/job_functions.php:107
 
1133
  #, php-format
1134
- #@ backwpup
1135
  msgid "Memory increased from %1$s to %2$s"
1136
  msgstr "Mémoire augmentée de %1$s à %2$s"
1137
 
1138
- #: job/job_functions.php:109
 
1139
  #, php-format
1140
- #@ backwpup
1141
  msgid "Can not increase memory limit is %1$s"
1142
  msgstr "Impossible d'augmenter la mémoire la limite est de %1$s"
1143
 
1144
- #: job/job_functions.php:118
1145
- #@ backwpup
1146
  msgid "Set Blog to maintenance mode"
1147
  msgstr "Mettre le blog en mode maintenance"
1148
 
1149
- #: job/job_functions.php:132
1150
- #@ backwpup
1151
  msgid "Cannot set Blog to maintenance mode! Root folder is not writeable!"
1152
- msgstr "Impossible de mettre le blog en mode maintenance! Le répertoire racine n'est pas inscriptible!"
 
 
1153
 
1154
- #: job/job_functions.php:135
1155
- #@ backwpup
1156
  msgid "Set Blog to normal mode"
1157
  msgstr "Mettre le blog en mode normal"
1158
 
1159
- #: job/job_functions.php:211
 
1160
  #, php-format
1161
- #@ backwpup
1162
  msgid "No MySQL connection: %s"
1163
  msgstr "Pas de connexion MySQL: %s"
1164
 
1165
- #: job/job_functions.php:226
 
1166
  #, php-format
1167
- #@ backwpup
1168
  msgid "No MySQL connection to database: %s"
1169
  msgstr "Pas de connexion MySQL à la base de données: %s"
1170
 
1171
- #: job/job_functions.php:250
1172
- #@ backwpup
1173
  msgid "[WARNING]"
1174
  msgstr "[AVERTISSEMENT]"
1175
 
1176
- #: job/job_functions.php:256
1177
- #@ backwpup
1178
  msgid "[ERROR]"
1179
  msgstr "[ERREUR]"
1180
 
1181
- #: job/job_functions.php:260
1182
- #@ backwpup
1183
  msgid "[DEPRECATED]"
1184
  msgstr "[DÉPRÉCIÉE]"
1185
 
1186
- #: job/job_functions.php:263
1187
- #@ backwpup
1188
  msgid "[STRICT NOTICE]"
1189
  msgstr "[SIMPLE NOTE]"
1190
 
1191
- #: job/job_functions.php:266
1192
- #@ backwpup
1193
  msgid "[RECOVERABLE ERROR]"
1194
  msgstr "[ERREUR RÉCUPÉRABLE]"
1195
 
1196
- #: job/job_functions.php:342
 
1197
  #, php-format
1198
- #@ backwpup
1199
  msgid "One old log deleted"
1200
  msgid_plural "%d old logs deleted"
1201
- msgstr[0] ""
1202
- msgstr[1] ""
1203
 
1204
- #: job/job_functions.php:346
 
1205
  #, php-format
1206
- #@ backwpup
1207
  msgid "Job done in %s sec."
1208
  msgstr "Opération effectuée en %s sec."
1209
 
1210
- #: job/job_functions.php:459
 
1211
  #, php-format
1212
- #@ backwpup
1213
  msgid "BackWPup log from %1$s: %2$s"
1214
  msgstr "Fichier journal BackWPup du %1$s: %2$s"
1215
 
1216
- #: job/job_functions.php:487
 
1217
  #, php-format
1218
- #@ backwpup
1219
  msgid "Signal %d send to script!"
1220
  msgstr "Signal %d envoyé au script!"
1221
 
1222
- #: job/job_functions.php:507
1223
- #@ backwpup
1224
  msgid "Can not restart on alternate cron...."
1225
  msgstr "Ne peut redémarrer avec un cron alternatif..."
1226
 
1227
- #: job/job_functions.php:509
1228
- #@ backwpup
1229
  msgid "To many restarts...."
1230
  msgstr "Trop de redémarrages..."
1231
 
1232
- #: job/job_functions.php:530
1233
- #@ backwpup
1234
  msgid "Script stop! Will started again now!"
1235
  msgstr "Arrêt du script! Redémarrage maintenant !"
1236
 
1237
- #: job/job_run.php:69
1238
- #@ backwpup
1239
- msgid "Job restart terminated, bcause old job runs again!"
1240
- msgstr "Redémarrage de l'opération interrompu, car d'autres opérations sont en cours!"
1241
-
1242
  #: job/job_run.php:72
1243
- #@ backwpup
1244
- msgid "Job restarted, bcause inactivity!"
 
 
 
 
 
1245
  msgstr "Opération relancée car inactive!"
1246
 
1247
- #: job/job_run.php:74
 
1248
  #, php-format
1249
- #@ backwpup
1250
- msgid "Second Prozess is running, bcause old job runs! Start type is %s"
1251
  msgstr ""
 
 
1252
 
1253
- #: job/job_run.php:102
 
1254
  #, php-format
1255
- #@ backwpup
1256
  msgid "Can not find job step file: %s"
1257
- msgstr ""
1258
 
1259
- #: job/job_run.php:110
 
1260
  #, php-format
1261
- #@ default
1262
- msgid "[INFO]: BackWPup version %1$s, WordPress version %4$s Copyright &copy; %2$s %3$s"
 
1263
  msgstr ""
 
 
1264
 
1265
- #: job/job_run.php:111
1266
- #@ backwpup
1267
- msgid "[INFO]: BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions."
1268
- msgstr "[INFO]: BackWPup n'est accompagné d'AUCUNE GARANTIE. C'est un logiciel libre, et vous êtes libre de le redistribuer sous certaines conditions."
 
 
 
 
1269
 
1270
- #: job/job_run.php:112
1271
- #@ backwpup
1272
  msgid "[INFO]: BackWPup job:"
1273
  msgstr "[INFO]: BackWPup opération:"
1274
 
1275
- #: job/job_run.php:114
1276
- #@ backwpup
1277
  msgid "[INFO]: BackWPup cron:"
1278
  msgstr "[INFO]: BackWPup cron:"
1279
 
1280
- #: job/job_run.php:116
1281
- #@ backwpup
1282
  msgid "[INFO]: BackWPup job started by cron"
1283
  msgstr "[INFO]: Opération BackWPup démarrée par cron"
1284
 
1285
- #: job/job_run.php:118
1286
- #@ backwpup
1287
  msgid "[INFO]: BackWPup job started manualy"
1288
  msgstr "[INFO]: Opération BackWPup démarrée manuellement"
1289
 
1290
- #: job/job_run.php:119
1291
- #@ backwpup
1292
  msgid "[INFO]: PHP ver.:"
1293
  msgstr "[INFO]: version PHP:"
1294
 
1295
- #: job/job_run.php:121
 
1296
  #, php-format
1297
- #@ backwpup
1298
  msgid "[INFO]: PHP Safe mode is ON! Maximum script execution time is %1$d sec."
1299
- msgstr "[INFO]: Le mode safe de PHP est activé! Temps d’exécution maximum d'un script: %1$d sec. "
 
 
1300
 
1301
- #: job/job_run.php:122
1302
- #@ backwpup
1303
  msgid "[INFO]: MySQL ver.:"
1304
  msgstr "[INFO]: Version MySQL:"
1305
 
1306
- #: job/job_run.php:125
1307
- #@ backwpup
1308
  msgid "[INFO]: curl ver.:"
1309
  msgstr "[INFO]: Version curl:"
1310
 
1311
- #: job/job_run.php:127
1312
- #@ backwpup
1313
  msgid "[INFO]: Temp folder is:"
1314
  msgstr "[INFO]: Répertoire temporaire:"
1315
 
1316
- #: job/job_run.php:129
1317
- #@ backwpup
1318
  msgid "[INFO]: Backup file is:"
1319
  msgstr "[INFO]: Fichier sauvegarde:"
1320
 
1321
- #: job/job_run.php:140
1322
- #@ backwpup
1323
  msgid "No destination defineid for backup!!! Please correct job settings"
1324
- msgstr "Pas de cible définie pour la sauvegarde! Veuillez corriger les paramètres de l'opération."
 
 
1325
 
1326
- #: job/job_run.php:162
1327
- #@ backwpup
1328
  msgid "Step arborted has too many trys!"
1329
  msgstr "Étape abandonnée, trop de tentatives!"
1330
 
1331
- #: job/job_run.php:164
 
1332
  #, php-format
1333
- #@ backwpup
1334
  msgid "Can not find job step function %s!"
1335
  msgstr "Impossible de trouver la fonction %s de l'opération!"
1336
 
 
1337
  #: job/job_start.php:10
1338
- #@ backwpup
1339
  msgid "A job already running!"
1340
  msgstr "Une opération est déjà en cours!"
1341
 
 
1342
  #: job/job_start.php:20
1343
- #@ backwpup
1344
  msgid "Temp dir not writeable"
1345
  msgstr "Répertoire temporaire inaccessible"
1346
 
1347
- #: job/job_start.php:106
 
1348
  #, php-format
1349
- #@ backwpup
1350
  msgid "Can not create folder for log files: %s"
1351
  msgstr "Impossible de créer le répertoire des fichiers journaux: %s!"
1352
 
1353
- #: job/job_start.php:117
1354
- #@ backwpup
1355
  msgid "Log folder not writeable!"
1356
  msgstr "Répertoire des fichiers journaux inaccessible!"
1357
 
1358
- #: job/job_start.php:142
 
1359
  #, php-format
1360
- #@ backwpup
1361
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1362
  msgstr "Fichier journal BackWPup pour %1$s de %2$s à %3$s"
1363
 
1364
- #: job/job_start.php:170
 
1365
  #, php-format
1366
- #@ backwpup
1367
  msgid "Can not create folder for backups: %1$s"
1368
  msgstr "Impossible de créer le répertoire des sauvegardes: %1$s"
1369
 
1370
- #: job/job_start.php:182
1371
- #@ backwpup
1372
  msgid "Backup folder not writeable!"
1373
  msgstr "Répertoire des sauvegardes inaccessible!"
1374
 
 
1375
  #: job/wp_export.php:11
1376
  #, php-format
1377
- #@ backwpup
1378
  msgid "%d. try for wordpress export to XML file..."
1379
  msgstr "%d. tentative d'export au format XML WordPress..."
1380
 
1381
- #: job/wp_export.php:38
1382
- #: job/wp_export.php:40
1383
- #@ backwpup
1384
  msgid "cURL:"
1385
  msgstr "cURL"
1386
 
 
1387
  #: job/wp_export.php:81
1388
  #, php-format
1389
- #@ backwpup
1390
  msgid "Add XML export \"%1$s\" to backup list with %2$s"
1391
- msgstr "Ajout du fichier XML \"%1$s\" à la liste des fichiers à sauvegarder avec %2$s"
 
1392
 
1393
- #: pages/func_backwpup.php:41
1394
- #@ backwpup
1395
  msgid "No Jobs."
1396
  msgstr "Aucune opération."
1397
 
1398
- #: pages/func_backwpup.php:46
1399
- #: pages/func_backwpup.php:102
1400
- #@ default
1401
- #@ backwpup
1402
  msgid "Export"
1403
  msgstr "Exporter"
1404
 
1405
- #: pages/func_backwpup.php:47
1406
- #: pages/func_backwpup.php:103
1407
- #: pages/func_backwpupbackups.php:130
1408
- #: pages/func_backwpupbackups.php:227
1409
- #: pages/func_backwpupeditjob.php:25
1410
- #: pages/func_backwpuplogs.php:73
1411
- #: pages/func_backwpuplogs.php:127
1412
- #@ default
1413
- #@ backwpup
1414
  msgid "Delete"
1415
  msgstr "Effacer"
1416
 
1417
- #: pages/func_backwpup.php:55
1418
- #@ backwpup
1419
  msgid "ID"
1420
  msgstr "ID"
1421
 
1422
- #: pages/func_backwpup.php:56
1423
- #@ backwpup
1424
  msgid "Job Name"
1425
  msgstr "Nom de l'opération"
1426
 
1427
- #: pages/func_backwpup.php:57
1428
- #: pages/func_backwpupeditjob.php:171
1429
- #: pages/func_backwpuplogs.php:81
1430
- #@ backwpup
1431
  msgid "Type"
1432
  msgstr "Type"
1433
 
1434
- #: pages/func_backwpup.php:58
1435
- #@ backwpup
1436
  msgid "Information"
1437
  msgstr "Information"
1438
 
1439
- #: pages/func_backwpup.php:59
1440
- #@ backwpup
1441
  msgid "Next Run"
1442
  msgstr "Prochain exécution"
1443
 
1444
- #: pages/func_backwpup.php:60
1445
- #@ backwpup
1446
  msgid "Last Run"
1447
  msgstr "Dernière exécution"
1448
 
1449
- #: pages/func_backwpup.php:97
1450
- #@ backwpup
1451
  msgid "Edit:"
1452
  msgstr "Modifier:"
1453
 
1454
- #: pages/func_backwpup.php:100
1455
- #@ default
1456
  msgid "Edit"
1457
- msgstr ""
1458
 
1459
- #: pages/func_backwpup.php:101
1460
- #@ backwpup
1461
  msgid "Copy"
1462
  msgstr "Copier"
1463
 
1464
- #: pages/func_backwpup.php:104
1465
- #@ backwpup
1466
  msgid "Run Now"
1467
  msgstr "Lancer maintenant"
1468
 
1469
- #: pages/func_backwpup.php:128
1470
- #@ backwpup
1471
  msgid "Running since:"
1472
  msgstr "En cours depuis:"
1473
 
1474
- #: pages/func_backwpup.php:128
1475
- #: pages/func_backwpup.php:144
1476
- #: pages/func_backwpuplogs.php:153
1477
- #@ backwpup
1478
  msgid "sec."
1479
  msgstr "sec."
1480
 
1481
- #: pages/func_backwpup.php:132
1482
- #@ backwpup
1483
  msgid "Inactive"
1484
  msgstr "Inactive"
1485
 
1486
- #: pages/func_backwpup.php:135
1487
- #@ backwpup
1488
  msgid "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
1489
  msgstr "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
1490
 
1491
- #: pages/func_backwpup.php:144
1492
- #@ backwpup
1493
  msgid "Runtime:"
1494
  msgstr "Temps d'exécution:"
1495
 
1496
- #: pages/func_backwpup.php:146
1497
- #@ backwpup
1498
  msgid "None"
1499
  msgstr "Aucune"
1500
 
1501
- #: pages/func_backwpup.php:149
1502
- #@ backwpup
1503
  msgid "Download last Backup"
1504
  msgstr "Télécharger la dernière sauvegarde"
1505
 
1506
- #: pages/func_backwpup.php:149
1507
- #: pages/func_backwpupbackups.php:228
1508
- #: pages/func_backwpuplogs.php:128
1509
- #@ backwpup
1510
  msgid "Download"
1511
  msgstr "Télécharger"
1512
 
1513
- #: pages/func_backwpup.php:151
1514
- #@ backwpup
1515
  msgid "View last Log"
1516
  msgstr "Voir le dernier fichier journal"
1517
 
1518
- #: pages/func_backwpup.php:151
1519
- #@ backwpup
1520
  msgid "Log"
1521
  msgstr "Fichier journal"
1522
 
1523
- #: pages/func_backwpup.php:240
1524
- #@ backwpup
1525
  msgid "DB Size:"
1526
  msgstr "Taille de la B.D:"
1527
 
1528
- #: pages/func_backwpup.php:242
1529
- #@ backwpup
1530
  msgid "DB Tables:"
1531
  msgstr "Tables de la B.D:"
1532
 
1533
- #: pages/func_backwpup.php:243
1534
- #@ backwpup
1535
  msgid "DB Rows:"
1536
  msgstr "Colonnes de la D.B:"
1537
 
1538
- #: pages/func_backwpup.php:248
1539
- #@ backwpup
1540
  msgid "Files Size:"
1541
  msgstr "Taille des fichiers:"
1542
 
1543
- #: pages/func_backwpup.php:250
1544
- #@ backwpup
1545
  msgid "Files count:"
1546
  msgstr "Nombre de fichiers:"
1547
 
 
1548
  #: pages/func_backwpupbackups.php:125
1549
- #@ backwpup
1550
  msgid "No Files found."
1551
  msgstr "Aucun fichier trouvé."
1552
 
 
1553
  #: pages/func_backwpupbackups.php:145
1554
- #@ backwpup
1555
  msgid "Change Destination"
1556
  msgstr "Modifier la destination"
1557
 
 
1558
  #: pages/func_backwpupbackups.php:182
1559
- #@ backwpup
1560
  msgid "File"
1561
  msgstr "Fichier"
1562
 
1563
- #: pages/func_backwpupbackups.php:183
1564
- #: pages/func_backwpupbackups.php:185
1565
- #@ backwpup
1566
  msgid "Folder"
1567
  msgstr "Répertoire"
1568
 
1569
- #: pages/func_backwpupbackups.php:184
1570
- #: pages/func_backwpuplogs.php:84
1571
- #@ backwpup
1572
  msgid "Size"
1573
  msgstr "Taille"
1574
 
 
1575
  #: pages/func_backwpupbackups.php:186
1576
- #@ backwpup
1577
  msgid "Time"
1578
  msgstr "Heure"
1579
 
 
1580
  #: pages/func_backwpupbackups.php:227
1581
- #@ backwpup
1582
  msgid ""
1583
  "You are about to delete this Backup Archive. \n"
1584
  " 'Cancel' to stop, 'OK' to delete."
@@ -1586,24 +1499,25 @@ msgstr ""
1586
  "Vous allez effacer cette archive sauvegarde. \n"
1587
  " 'Annuler' pour arrêter, 'OK' pour effacer."
1588
 
 
1589
  #: pages/func_backwpupbackups.php:242
1590
- #@ backwpup
1591
  msgid "?"
1592
  msgstr "?"
1593
 
1594
- #: pages/func_backwpupbackups.php:490
1595
- #: pages/header_backwpupbackups.php:140
1596
- #@ backwpup
1597
  msgid "Login failure!"
1598
  msgstr "Échec d'authentification!"
1599
 
 
1600
  #: pages/func_backwpupeditjob.php:18
1601
- #@ backwpup
1602
  msgid "PHP curl functions not available! Most backup destinations deaktivated!"
1603
- msgstr "La fonction PHP curl n'est pas disponible! La plupart des destinations de sauvegarde ont été désactivées!"
 
 
1604
 
 
1605
  #: pages/func_backwpupeditjob.php:25
1606
- #@ backwpup
1607
  msgid ""
1608
  "You are about to delete this Job. \n"
1609
  " 'Cancel' to stop, 'OK' to delete."
@@ -1611,1288 +1525,1266 @@ msgstr ""
1611
  "Vous allez effacer cette opération. \n"
1612
  " 'Annuler' pour arrêter, 'OK' pour effacer."
1613
 
 
1614
  #: pages/func_backwpupeditjob.php:28
1615
- #@ backwpup
1616
  msgid "Save Changes"
1617
  msgstr "Sauvegarder les changements"
1618
 
 
1619
  #: pages/func_backwpupeditjob.php:38
1620
- #@ backwpup
1621
  msgid "File Prefix:"
1622
  msgstr "Préfixe du fichier:"
1623
 
 
1624
  #: pages/func_backwpupeditjob.php:40
1625
- #@ backwpup
1626
  msgid "File Formart:"
1627
  msgstr "Format du fichier:"
1628
 
1629
- #: pages/func_backwpupeditjob.php:43
1630
- #: pages/func_backwpupeditjob.php:45
1631
- #@ backwpup
1632
  msgid "Zip"
1633
  msgstr "Zip"
1634
 
 
1635
  #: pages/func_backwpupeditjob.php:46
1636
- #@ backwpup
1637
  msgid "Tar"
1638
  msgstr "Tar"
1639
 
1640
- #: pages/func_backwpupeditjob.php:48
1641
- #: pages/func_backwpupeditjob.php:50
1642
- #@ backwpup
1643
  msgid "Tar GZip"
1644
  msgstr "Tar GZip"
1645
 
1646
- #: pages/func_backwpupeditjob.php:52
1647
- #: pages/func_backwpupeditjob.php:54
1648
- #@ backwpup
1649
  msgid "Tar BZip2"
1650
  msgstr "Tar BZip2"
1651
 
 
1652
  #: pages/func_backwpupeditjob.php:55
1653
- #@ backwpup
1654
  msgid "Preview:"
1655
  msgstr "Prévisualisation:"
1656
 
 
1657
  #: pages/func_backwpupeditjob.php:60
1658
- #@ backwpup
1659
  msgid "E-Mail-Adress:"
1660
  msgstr "Adresse E-Mail:"
1661
 
 
1662
  #: pages/func_backwpupeditjob.php:62
1663
- #@ backwpup
1664
  msgid "Only send an e-mail if there are errors."
1665
  msgstr "N'envoyer un e-mail qu'en cas d'erreurs."
1666
 
 
1667
  #: pages/func_backwpupeditjob.php:91
1668
- #@ backwpup
1669
  msgid "Activate scheduling"
1670
  msgstr "Activer la programmation"
1671
 
 
1672
  #: pages/func_backwpupeditjob.php:92
1673
- #@ backwpup
1674
  msgid "advanced"
1675
  msgstr "avancés"
1676
 
 
1677
  #: pages/func_backwpupeditjob.php:93
1678
- #@ backwpup
1679
  msgid "basic"
1680
  msgstr "basique"
1681
 
 
1682
  #: pages/func_backwpupeditjob.php:97
1683
- #@ backwpup
1684
  msgid "Minutes: "
1685
  msgstr "Minutes:"
1686
 
1687
- #: pages/func_backwpupeditjob.php:99
1688
- #: pages/func_backwpupeditjob.php:111
1689
- #: pages/func_backwpupeditjob.php:122
1690
- #: pages/func_backwpupeditjob.php:133
1691
  #: pages/func_backwpupeditjob.php:153
1692
- #@ backwpup
1693
  msgid "Any (*)"
1694
  msgstr "Toutes (*)"
1695
 
 
1696
  #: pages/func_backwpupeditjob.php:108
1697
- #@ backwpup
1698
  msgid "Hours:"
1699
  msgstr "Heures:"
1700
 
 
1701
  #: pages/func_backwpupeditjob.php:120
1702
- #@ backwpup
1703
  msgid "Day of Month:"
1704
  msgstr "Jour dans le mois:"
1705
 
 
1706
  #: pages/func_backwpupeditjob.php:131
1707
- #@ backwpup
1708
  msgid "Month:"
1709
  msgstr "Mois:"
1710
 
 
1711
  #: pages/func_backwpupeditjob.php:135
1712
- #@ backwpup
1713
  msgid "January"
1714
  msgstr "Janvier"
1715
 
 
1716
  #: pages/func_backwpupeditjob.php:136
1717
- #@ backwpup
1718
  msgid "February"
1719
  msgstr "Février"
1720
 
 
1721
  #: pages/func_backwpupeditjob.php:137
1722
- #@ backwpup
1723
  msgid "March"
1724
  msgstr "Mars"
1725
 
 
1726
  #: pages/func_backwpupeditjob.php:138
1727
- #@ backwpup
1728
  msgid "April"
1729
  msgstr "Avril"
1730
 
 
1731
  #: pages/func_backwpupeditjob.php:139
1732
- #@ backwpup
1733
  msgid "May"
1734
  msgstr "Mai"
1735
 
 
1736
  #: pages/func_backwpupeditjob.php:140
1737
- #@ backwpup
1738
  msgid "June"
1739
  msgstr "Juin"
1740
 
 
1741
  #: pages/func_backwpupeditjob.php:141
1742
- #@ backwpup
1743
  msgid "July"
1744
  msgstr "Juillet"
1745
 
 
1746
  #: pages/func_backwpupeditjob.php:142
1747
- #@ backwpup
1748
  msgid "Augest"
1749
  msgstr "Août"
1750
 
 
1751
  #: pages/func_backwpupeditjob.php:143
1752
- #@ backwpup
1753
  msgid "September"
1754
  msgstr "Septembre"
1755
 
 
1756
  #: pages/func_backwpupeditjob.php:144
1757
- #@ backwpup
1758
  msgid "October"
1759
  msgstr "Octobre"
1760
 
 
1761
  #: pages/func_backwpupeditjob.php:145
1762
- #@ backwpup
1763
  msgid "November"
1764
  msgstr "Novembre"
1765
 
 
1766
  #: pages/func_backwpupeditjob.php:146
1767
- #@ backwpup
1768
  msgid "December"
1769
  msgstr "Décembre"
1770
 
 
1771
  #: pages/func_backwpupeditjob.php:151
1772
- #@ backwpup
1773
  msgid "Day of Week:"
1774
  msgstr "Jour de la semaine:"
1775
 
1776
- #: pages/func_backwpupeditjob.php:155
1777
- #: pages/func_backwpupeditjob.php:191
1778
- #@ backwpup
1779
  msgid "Sunday"
1780
  msgstr "Dimanche"
1781
 
1782
- #: pages/func_backwpupeditjob.php:156
1783
- #: pages/func_backwpupeditjob.php:192
1784
- #@ backwpup
1785
  msgid "Monday"
1786
  msgstr "Lundi"
1787
 
1788
- #: pages/func_backwpupeditjob.php:157
1789
- #: pages/func_backwpupeditjob.php:193
1790
- #@ backwpup
1791
  msgid "Tuesday"
1792
  msgstr "Mardi"
1793
 
1794
- #: pages/func_backwpupeditjob.php:158
1795
- #: pages/func_backwpupeditjob.php:194
1796
- #@ backwpup
1797
  msgid "Wednesday"
1798
  msgstr "Mercredi"
1799
 
1800
- #: pages/func_backwpupeditjob.php:159
1801
- #: pages/func_backwpupeditjob.php:195
1802
- #@ backwpup
1803
  msgid "Thursday"
1804
  msgstr "Jeudi"
1805
 
1806
- #: pages/func_backwpupeditjob.php:160
1807
- #: pages/func_backwpupeditjob.php:196
1808
- #@ backwpup
1809
  msgid "Friday"
1810
  msgstr "Vendredi"
1811
 
1812
- #: pages/func_backwpupeditjob.php:161
1813
- #: pages/func_backwpupeditjob.php:197
1814
- #@ backwpup
1815
  msgid "Saturday"
1816
  msgstr "Samedi"
1817
 
 
1818
  #: pages/func_backwpupeditjob.php:176
1819
- #@ backwpup
1820
  msgid "Hour"
1821
  msgstr "Heure"
1822
 
 
1823
  #: pages/func_backwpupeditjob.php:179
1824
- #@ backwpup
1825
  msgid "Minute"
1826
  msgstr "Minute"
1827
 
 
1828
  #: pages/func_backwpupeditjob.php:183
1829
- #@ backwpup
1830
  msgid "monthly"
1831
  msgstr "Mensuelle"
1832
 
 
1833
  #: pages/func_backwpupeditjob.php:184
1834
- #@ backwpup
1835
  msgid "on"
1836
  msgstr "le"
1837
 
 
1838
  #: pages/func_backwpupeditjob.php:189
1839
- #@ backwpup
1840
  msgid "weekly"
1841
  msgstr "Hebdomadaire"
1842
 
 
1843
  #: pages/func_backwpupeditjob.php:203
1844
- #@ backwpup
1845
  msgid "daily"
1846
  msgstr "Quotidien"
1847
 
 
1848
  #: pages/func_backwpupeditjob.php:209
1849
- #@ backwpup
1850
  msgid "hourly"
1851
  msgstr "Toutes les heures"
1852
 
 
1853
  #: pages/func_backwpupeditjob.php:221
1854
- #@ backwpup
1855
  msgid "Full Path to folder for Backup Files:"
1856
  msgstr "Chemin complet vers le répertoire des sauvegardes:"
1857
 
 
1858
  #: pages/func_backwpupeditjob.php:223
1859
- #@ backwpup
1860
  msgid "Your WordPress dir is:"
1861
  msgstr "Votre répertoire WordPress est:"
1862
 
1863
- #: pages/func_backwpupeditjob.php:224
1864
- #: pages/func_backwpupeditjob.php:384
1865
- #@ backwpup
1866
  msgid "Max. backup files in folder:"
1867
  msgstr "Nombre de fichiers sauvegarde dans le répertoire:"
1868
 
1869
- #: pages/func_backwpupeditjob.php:224
1870
- #: pages/page_backwpupsettings.php:90
1871
- #@ backwpup
1872
  msgid "(Oldest files will deleted first.)"
1873
  msgstr "(Les plus vieux seront effacés en premier.)"
1874
 
 
1875
  #: pages/func_backwpupeditjob.php:230
1876
- #@ backwpup
1877
  msgid "Hostname:"
1878
  msgstr "Hostname:"
1879
 
1880
- #: pages/func_backwpupeditjob.php:232
1881
- #: pages/page_backwpupsettings.php:52
1882
- #@ backwpup
1883
  msgid "Port:"
1884
  msgstr "Port:"
1885
 
1886
- #: pages/func_backwpupeditjob.php:234
1887
- #: pages/func_backwpupeditjob.php:325
1888
  #: pages/page_backwpupsettings.php:139
1889
- #@ backwpup
1890
  msgid "Username:"
1891
  msgstr "Nom d'utilisateur:"
1892
 
1893
- #: pages/func_backwpupeditjob.php:236
1894
- #: pages/func_backwpupeditjob.php:377
1895
  #: pages/page_backwpupsettings.php:144
1896
- #@ backwpup
1897
  msgid "Password:"
1898
  msgstr "Mot de passe:"
1899
 
 
1900
  #: pages/func_backwpupeditjob.php:238
1901
- #@ backwpup
1902
  msgid "Folder on Server:"
1903
  msgstr "Répertoire sur le serveur:"
1904
 
 
1905
  #: pages/func_backwpupeditjob.php:241
1906
- #@ backwpup
1907
  msgid "Max. backup files in FTP folder:"
1908
  msgstr "Nombre de fichiers sauvegarde maximum dans le répertoire FTP:"
1909
 
1910
- #: pages/func_backwpupeditjob.php:241
1911
- #: pages/func_backwpupeditjob.php:260
1912
- #: pages/func_backwpupeditjob.php:285
1913
- #: pages/func_backwpupeditjob.php:312
1914
- #: pages/func_backwpupeditjob.php:335
1915
- #: pages/func_backwpupeditjob.php:362
1916
- #: pages/func_backwpupeditjob.php:384
1917
- #@ backwpup
1918
  msgid "(Oldest files will be deleted first.)"
1919
  msgstr "(Les plus vieux seront effacés en premier.)"
1920
 
 
1921
  #: pages/func_backwpupeditjob.php:242
1922
- #@ backwpup
1923
  msgid "Use SSL-FTP Connection."
1924
  msgstr "Utiliser une xonnexion SSL-FTP"
1925
 
 
1926
  #: pages/func_backwpupeditjob.php:243
1927
- #@ backwpup
1928
- msgid "Use FTP Passiv mode."
1929
  msgstr "Utiliser une connexion FTP en mode passif."
1930
 
 
1931
  #: pages/func_backwpupeditjob.php:250
1932
- #@ backwpup
1933
  msgid "Access Key ID:"
1934
  msgstr "ID clé d'accès:"
1935
 
 
1936
  #: pages/func_backwpupeditjob.php:252
1937
- #@ backwpup
1938
  msgid "Secret Access Key:"
1939
  msgstr "Clé d'accès secrète:"
1940
 
1941
- #: pages/func_backwpupeditjob.php:254
1942
- #: pages/func_backwpupeditjob.php:279
1943
- #@ backwpup
1944
  msgid "Bucket:"
1945
  msgstr "Panier:"
1946
 
1947
- #: pages/func_backwpupeditjob.php:257
1948
- #: pages/func_backwpupeditjob.php:282
1949
- #@ backwpup
1950
  msgid "Create bucket:"
1951
  msgstr "Créer un panier:"
1952
 
 
1953
  #: pages/func_backwpupeditjob.php:257
1954
- #@ backwpup
1955
  msgid "Bucket Region"
1956
  msgstr "Région du panier:"
1957
 
 
1958
  #: pages/func_backwpupeditjob.php:257
1959
- #@ backwpup
1960
  msgid "US-Standard (Northern Virginia & Washington State)"
1961
  msgstr "US-Standard (Northern Virginia & Washington State)"
1962
 
 
1963
  #: pages/func_backwpupeditjob.php:257
1964
- #@ backwpup
1965
  msgid "US-West 1 (Northern California)"
1966
  msgstr "US-West 1 (Northern California)"
1967
 
 
1968
  #: pages/func_backwpupeditjob.php:257
1969
- #@ backwpup
1970
  msgid "US-West 2 (Oregon)"
1971
  msgstr "US-West 2 (Oregon)"
1972
 
 
1973
  #: pages/func_backwpupeditjob.php:257
1974
- #@ backwpup
1975
  msgid "EU (Ireland)"
1976
  msgstr "EU (Ireland)"
1977
 
 
1978
  #: pages/func_backwpupeditjob.php:257
1979
- #@ backwpup
1980
  msgid "Asia Pacific (Singapore)"
1981
  msgstr "Asia Pacific (Singapore)"
1982
 
 
1983
  #: pages/func_backwpupeditjob.php:257
1984
- #@ backwpup
1985
  msgid "Asia Pacific (Japan)"
1986
  msgstr "Asia Pacific (Japan)"
1987
 
 
1988
  #: pages/func_backwpupeditjob.php:257
1989
- #@ backwpup
1990
  msgid "South America (Sao Paulo)"
1991
  msgstr "South America (Sao Paulo)"
1992
 
 
1993
  #: pages/func_backwpupeditjob.php:257
1994
- #@ backwpup
1995
  msgid "United States GovCloud"
1996
  msgstr "United States GovCloud"
1997
 
 
1998
  #: pages/func_backwpupeditjob.php:257
1999
- #@ backwpup
2000
  msgid "United States GovCloud FIPS 140-2"
2001
  msgstr "United States GovCloud FIPS 140-2"
2002
 
2003
- #: pages/func_backwpupeditjob.php:258
2004
- #: pages/func_backwpupeditjob.php:283
2005
- #@ backwpup
2006
  msgid "Folder in bucket:"
2007
  msgstr "Répertoire dans le panier:"
2008
 
2009
- #: pages/func_backwpupeditjob.php:260
2010
- #: pages/func_backwpupeditjob.php:285
2011
- #@ backwpup
2012
  msgid "Max. backup files in bucket folder:"
2013
  msgstr "Nombre maximum de fichiers de sauvegarde dans le répertoire du panier:"
2014
 
 
2015
  #: pages/func_backwpupeditjob.php:261
2016
- #@ backwpup
2017
  msgid "Save Backups with reduced redundancy!"
2018
  msgstr "Sauvegarder en réduisant la redondance!"
2019
 
2020
- #: pages/func_backwpupeditjob.php:264
2021
- #: pages/func_backwpupeditjob.php:288
2022
- #: pages/func_backwpupeditjob.php:315
2023
- #: pages/func_backwpupeditjob.php:338
2024
- #: pages/func_backwpupeditjob.php:365
2025
- #: pages/func_backwpupeditjob.php:387
2026
- #@ backwpup
2027
  msgid "Create Account"
2028
  msgstr "Créer un compte"
2029
 
2030
- #: pages/func_backwpupeditjob.php:265
2031
- #: pages/func_backwpupeditjob.php:289
2032
- #@ backwpup
2033
  msgid "Find Keys"
2034
  msgstr "Trouver vos clés"
2035
 
2036
- #: pages/func_backwpupeditjob.php:266
2037
- #: pages/func_backwpupeditjob.php:290
2038
- #: pages/func_backwpupeditjob.php:340
2039
- #: pages/func_backwpupeditjob.php:366
2040
- #: pages/func_backwpupeditjob.php:388
2041
- #@ backwpup
2042
  msgid "Webinterface"
2043
  msgstr "Interface Web"
2044
 
2045
- #: pages/func_backwpupeditjob.php:275
2046
- #: pages/func_backwpupeditjob.php:304
2047
- #@ backwpup
2048
  msgid "Access Key:"
2049
  msgstr "Clé d'accès:"
2050
 
 
2051
  #: pages/func_backwpupeditjob.php:277
2052
- #@ backwpup
2053
  msgid "Secret:"
2054
  msgstr "Scret:"
2055
 
 
2056
  #: pages/func_backwpupeditjob.php:300
2057
- #@ backwpup
2058
  msgid "Host:"
2059
  msgstr "Hôte:"
2060
 
 
2061
  #: pages/func_backwpupeditjob.php:301
2062
- #@ backwpup
2063
  msgid "Normely: blob.core.windows.net"
2064
  msgstr "Normalement: blob.core.windows.net"
2065
 
 
2066
  #: pages/func_backwpupeditjob.php:302
2067
- #@ backwpup
2068
  msgid "Account Name:"
2069
  msgstr "Nom du compte:"
2070
 
2071
- #: pages/func_backwpupeditjob.php:306
2072
- #: pages/func_backwpupeditjob.php:329
2073
- #@ backwpup
2074
  msgid "Container:"
2075
  msgstr "Récipient:"
2076
 
2077
- #: pages/func_backwpupeditjob.php:309
2078
- #: pages/func_backwpupeditjob.php:332
2079
- #@ backwpup
2080
  msgid "Create Container:"
2081
  msgstr "Créer récipient:"
2082
 
 
2083
  #: pages/func_backwpupeditjob.php:310
2084
- #@ backwpup
2085
  msgid "Folder in Container:"
2086
  msgstr "Répertoire dans le récipient:"
2087
 
2088
- #: pages/func_backwpupeditjob.php:312
2089
- #: pages/func_backwpupeditjob.php:335
2090
- #@ backwpup
2091
  msgid "Max. backup files in container folder:"
2092
  msgstr "Nombre max de fichiers sauvegarde dans le répertoire récipient:"
2093
 
2094
- #: pages/func_backwpupeditjob.php:316
2095
- #: pages/func_backwpupeditjob.php:339
2096
- #@ backwpup
2097
  msgid "Find Key"
2098
  msgstr "Trouver vos clés"
2099
 
 
2100
  #: pages/func_backwpupeditjob.php:327
2101
- #@ backwpup
2102
  msgid "API Key:"
2103
  msgstr "Clé API:"
2104
 
 
2105
  #: pages/func_backwpupeditjob.php:333
2106
- #@ backwpup
2107
  msgid "Folder in container:"
2108
  msgstr "Répertoire dans le récipient:"
2109
 
2110
- #: pages/func_backwpupeditjob.php:349
2111
- #@ backwpup
2112
  msgid "Login:"
2113
  msgstr "Login:"
2114
 
 
2115
  #: pages/func_backwpupeditjob.php:351
2116
- #@ backwpup
2117
  msgid "Not authenticated!"
2118
  msgstr "Non authentifié!"
2119
 
 
2120
  #: pages/func_backwpupeditjob.php:351
2121
- #@ backwpup
2122
  msgid "Authenticate!"
2123
  msgstr "Enregistrez-vous!"
2124
 
2125
- #: pages/func_backwpupeditjob.php:353
2126
- #@ backwpup
2127
  msgid "Authenticated!"
2128
  msgstr "Enregistré!"
2129
 
 
2130
  #: pages/func_backwpupeditjob.php:353
2131
- #@ backwpup
2132
  msgid "Delete!"
2133
  msgstr "Effacer!"
2134
 
2135
- #: pages/func_backwpupeditjob.php:355
2136
- #: pages/func_backwpupeditjob.php:379
2137
- #@ backwpup
2138
  msgid "Root:"
2139
  msgstr "Racine:"
2140
 
 
2141
  #: pages/func_backwpupeditjob.php:357
2142
- #@ backwpup
2143
  msgid "dropbox"
2144
  msgstr "DropBox"
2145
 
 
2146
  #: pages/func_backwpupeditjob.php:358
2147
- #@ backwpup
2148
  msgid "sandbox (disabled by DropBox)"
2149
  msgstr "Bac à sable (désactivé par DropBox)"
2150
 
2151
- #: pages/func_backwpupeditjob.php:360
2152
- #: pages/func_backwpupeditjob.php:382
2153
- #@ backwpup
2154
  msgid "Folder:"
2155
  msgstr "Répertoire"
2156
 
 
2157
  #: pages/func_backwpupeditjob.php:362
2158
- #@ backwpup
2159
  msgid "Max. backup files in Dropbox folder:"
2160
  msgstr "Nombre max. de fichiers dans le répertoire DropBox:"
2161
 
2162
- #: pages/func_backwpupeditjob.php:375
2163
- #: pages/func_backwpupeditjob.php:395
2164
- #@ backwpup
2165
  msgid "E-mail address:"
2166
  msgstr "Adress E-mail:"
2167
 
2168
- #: pages/func_backwpupeditjob.php:398
2169
- #@ backwpup
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2170
  msgid "Max. File Size for sending Backups with mail:"
2171
  msgstr "Taille max. des sauvegardes à envoyer par mail:"
2172
 
2173
- #: pages/func_backwpupeditjob.php:456
2174
- #@ backwpup
2175
- msgid "Working as <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a> job schedule:"
2176
- msgstr "Lancé en tant qu'opération programmée <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>"
 
 
 
 
2177
 
2178
- #: pages/func_backwpupeditjob.php:462
 
2179
  #, php-format
2180
- #@ backwpup
2181
  msgid "ATTENTION: Job runs every %d mins.!!!"
2182
  msgstr "ATTENTION: Opération exécutée toutes les %d mins.!!!"
2183
 
2184
- #: pages/func_backwpupeditjob.php:468
 
2185
  #, php-format
2186
- #@ backwpup
2187
- msgid "ATTENTION: Job runs every %d houers.!!!"
2188
  msgstr "ATTENTION: Opération exécutée toutes les %d heures!!!"
2189
 
2190
- #: pages/func_backwpupeditjob.php:472
2191
- #@ backwpup
2192
  msgid "ATTENTION: Can't calculate cron!!!"
2193
  msgstr "ATTENTION: Impossible de calculer cron!!!"
2194
 
2195
- #: pages/func_backwpupeditjob.php:474
2196
- #@ backwpup
2197
  msgid "Next runtime:"
2198
  msgstr "Prochaine exécution:"
2199
 
2200
- #: pages/func_backwpupeditjob.php:500
2201
- #: pages/func_backwpupeditjob.php:565
2202
- #@ backwpup
2203
  msgid "Missing access key!"
2204
  msgstr "Clé d'accès manquante!"
2205
 
2206
- #: pages/func_backwpupeditjob.php:507
2207
- #: pages/func_backwpupeditjob.php:572
2208
- #@ backwpup
2209
  msgid "Missing secret access key!"
2210
  msgstr "Clé secrète manquante!"
2211
 
2212
- #: pages/func_backwpupeditjob.php:531
2213
- #: pages/func_backwpupeditjob.php:598
2214
- #@ backwpup
2215
- msgid "No bucket fount!"
2216
  msgstr "Aucun panier trouvé!"
2217
 
2218
- #: pages/func_backwpupeditjob.php:633
2219
- #: pages/func_backwpupeditjob.php:762
2220
- #@ backwpup
2221
  msgid "Missing Username!"
2222
  msgstr "Nom d'utilisateur manquant!"
2223
 
2224
- #: pages/func_backwpupeditjob.php:640
2225
- #@ backwpup
2226
  msgid "Missing API Key!"
2227
  msgstr "Clé API manquante!"
2228
 
2229
- #: pages/func_backwpupeditjob.php:661
2230
- #@ backwpup
2231
  msgid "No Containerss found!"
2232
  msgstr "Aucun récipient trouvé!"
2233
 
2234
- #: pages/func_backwpupeditjob.php:696
2235
- #@ backwpup
2236
  msgid "Missing Hostname!"
2237
  msgstr "Nom d'hôte manquant!"
2238
 
2239
- #: pages/func_backwpupeditjob.php:703
2240
- #@ backwpup
2241
  msgid "Missing Account Name!"
2242
  msgstr "Nom du compte non fourni!"
2243
 
2244
- #: pages/func_backwpupeditjob.php:710
2245
- #@ backwpup
2246
  msgid "Missing Access Key!"
2247
  msgstr "Clé d'accès manquante!"
2248
 
2249
- #: pages/func_backwpupeditjob.php:727
2250
- #@ backwpup
2251
  msgid "No Container found!"
2252
  msgstr "Aucun récipient trouvé!"
2253
 
2254
- #: pages/func_backwpupeditjob.php:769
2255
- #@ backwpup
2256
  msgid "Missing Password!"
2257
  msgstr "Mot de passe non fourni!"
2258
 
2259
- #: pages/func_backwpupeditjob.php:789
2260
- #@ backwpup
2261
- msgid "No Syncfolders found!"
2262
- msgstr "Aucun répertoire de synchronisation trouvé!"
2263
-
2264
- #: pages/func_backwpuplogs.php:68
2265
- #@ backwpup
2266
  msgid "No Logs."
2267
  msgstr "Aucun fichier journal!"
2268
 
2269
- #: pages/func_backwpuplogs.php:80
2270
- #@ backwpup
2271
  msgid "Job"
2272
  msgstr "Opération"
2273
 
2274
- #: pages/func_backwpuplogs.php:82
2275
- #@ backwpup
2276
  msgid "Backup/Log Date/Time"
2277
  msgstr "Sauvegarde/Date des journaux/heure"
2278
 
2279
- #: pages/func_backwpuplogs.php:83
2280
- #@ backwpup
2281
  msgid "Status"
2282
  msgstr "Statut"
2283
 
2284
- #: pages/func_backwpuplogs.php:85
2285
- #@ backwpup
2286
  msgid "Runtime"
2287
  msgstr "Temps d'exécution"
2288
 
2289
- #: pages/func_backwpuplogs.php:124
2290
- #@ backwpup
2291
  msgid "View log"
2292
  msgstr "Voir fichier journal"
2293
 
2294
- #: pages/func_backwpuplogs.php:126
2295
- #@ backwpup
2296
  msgid "View"
2297
  msgstr "Voir"
2298
 
2299
- #: pages/func_backwpuplogs.php:147
2300
- #@ backwpup
2301
  msgid "only Log"
2302
  msgstr "fichier journal uniquement"
2303
 
 
2304
  #: pages/header_backwpup.php:44
2305
- #@ backwpup
2306
  msgid "Copy of"
2307
  msgstr "Copie de"
2308
 
 
2309
  #: pages/header_backwpup.php:100
2310
- #@ backwpup
2311
  msgid "Aborted by user!!!"
2312
  msgstr "Arrêté par l'utilisateur!!!"
2313
 
 
2314
  #: pages/header_backwpup.php:115
2315
- #@ backwpup
2316
  msgid "Job will be terminated."
2317
  msgstr "L'opération va être interrompue."
2318
 
 
2319
  #: pages/header_backwpup.php:118
2320
- #@ backwpup
2321
  msgid "Process killed with PID:"
2322
  msgstr "Processus tué PID:"
2323
 
 
2324
  #: pages/header_backwpup.php:120
2325
- #@ backwpup
2326
  msgid "Can't kill process with PID:"
2327
  msgstr "Impossible de tuer le processus PID:"
2328
 
 
2329
  #: pages/header_backwpup.php:136
2330
- #@ backwpup
2331
- msgid "Here is the job overview with some information. You can see some further information of the jobs, how many can be switched with the view button. Also you can manage the jobs or abbort working jobs. Some links are added to have direct access to the last log or download."
2332
- msgstr "Voici la vue d'ensemble des opérations accompagnée de quelques informations. Vous pouvez en apprendre plus dur une opération grâce au bouton voir. Vous pouvez également gérer les opérations ou les arrêter. Un accès direct aux fichier journaux ainsi qu'aux téléchargements des sauvegardes est disponible."
 
 
 
 
 
 
 
2333
 
 
2334
  #: pages/header_backwpupbackups.php:325
2335
- #@ backwpup
2336
- msgid "Here you see a list of backup files. Change the destionation to jobname:destination to become a list of backups from other destinations and jobs. Then you kann delete or download backup files."
2337
- msgstr "Voici la liste des fichiers sauvegarde. Modifiez la destination en nom d'opération: la destination devient une liste de sauvegardes d'autres opérations. Alors vous pourrez effacer ou télécharger les fichiers sauvegarde."
 
 
 
 
 
 
2338
 
 
2339
  #: pages/header_backwpupeditjob.php:22
2340
- #@ backwpup
2341
  msgid "Dropbox authentication complete!"
2342
  msgstr "Authentification DropBox réussie!"
2343
 
 
2344
  #: pages/header_backwpupeditjob.php:24
2345
- #@ backwpup
2346
  msgid "Wrong Token for Dropbox authentication received!"
2347
  msgstr "Le jeton d'enregistrement reçu invalide!"
2348
 
 
2349
  #: pages/header_backwpupeditjob.php:27
2350
- #@ backwpup
2351
  msgid "No Dropbox authentication received!"
2352
  msgstr "Aucune authentification DropBox reçue!"
2353
 
2354
- #: pages/header_backwpupeditjob.php:224
2355
- #@ backwpup
2356
  msgid "Dropbox authentication deleted!"
2357
  msgstr "Autorisation DropBox effacée!"
2358
 
2359
- #: pages/header_backwpupeditjob.php:261
2360
- #, php-format
2361
- #@ backwpup
2362
- msgid "Job '%1' changes saved."
2363
- msgstr "Modifications enregistrées pour l'opération '%1'."
2364
-
2365
- #: pages/header_backwpupeditjob.php:261
2366
- #@ backwpup
2367
- msgid "Jobs overview."
2368
- msgstr "Vue générale des opérations."
2369
-
2370
- #: pages/header_backwpupeditjob.php:273
2371
- #@ backwpup
2372
- msgid "Backup File"
2373
- msgstr "Fichier sauvegarde"
2374
-
2375
- #: pages/header_backwpupeditjob.php:274
2376
- #@ backwpup
2377
- msgid "Send log"
2378
- msgstr "Envoyer le fichier journal"
2379
-
2380
- #: pages/header_backwpupeditjob.php:275
2381
- #@ backwpup
2382
- msgid "Backup to Folder"
2383
- msgstr "Sauvegarder dans le répertoire"
2384
-
2385
- #: pages/header_backwpupeditjob.php:276
2386
- #@ backwpup
2387
- msgid "Backup to E-Mail"
2388
- msgstr "Sauvegarder vers E-mail"
2389
-
2390
- #: pages/header_backwpupeditjob.php:278
2391
- #@ backwpup
2392
- msgid "Backup to FTP Server"
2393
- msgstr "Sauvegarder vers serveur FTP"
2394
-
2395
- #: pages/header_backwpupeditjob.php:280
2396
- #@ backwpup
2397
- msgid "Backup to Dropbox"
2398
- msgstr "Sauvegarder vers DropBox"
2399
 
2400
- #: pages/header_backwpupeditjob.php:282
2401
- #@ backwpup
2402
- msgid "Backup to SugarSync"
2403
- msgstr "Sauvegarder vers SugarSync"
2404
 
2405
- #: pages/header_backwpupeditjob.php:284
2406
- #@ backwpup
2407
- msgid "Backup to Amazon S3"
2408
- msgstr "Sauvegarder vers Amazon S3"
2409
 
 
2410
  #: pages/header_backwpupeditjob.php:286
2411
- #@ backwpup
2412
- msgid "Backup to Google storage"
2413
- msgstr "Sauvegarder vers Google STorage"
2414
-
2415
- #: pages/header_backwpupeditjob.php:288
2416
- #@ backwpup
2417
- msgid "Backup to Micosoft Azure (Blob)"
2418
- msgstr "Sauvegarder vers Microsoft Azure (blob)"
2419
 
2420
- #: pages/header_backwpupeditjob.php:290
2421
- #@ backwpup
2422
- msgid "Backup to Rackspace Cloud"
2423
- msgstr "Sauvegarder vers RackSpace Cloud"
2424
 
 
2425
  #: pages/header_backwpuplogs.php:59
2426
- #@ backwpup
2427
- msgid "Here you can manage the log files of the jobs. You can download, view, or delete them."
2428
- msgstr "Ici vous pouvez gérer les fichiers journaux des opérations. Vous pouvez, les voir, les télécharger ou les effacer."
 
 
 
2429
 
2430
- #: pages/header_backwpupsettings.php:46
2431
- #@ backwpup
2432
  msgid "Settings saved"
2433
  msgstr "Paramètres sauvegardés"
2434
 
 
2435
  #: pages/header_backwpupworking.php:11
2436
- #@ backwpup
2437
  msgid "A job alredy running!!! Pleace try again if its done."
2438
- msgstr "Une opération est en cours!!! Veuillez réessayer une fois celle-ci terminée."
 
2439
 
 
2440
  #: pages/header_backwpupworking.php:23
2441
- #@ backwpup
2442
  msgid "A job is running!!!"
2443
  msgstr "Une opération est en cours!!!"
2444
 
 
2445
  #: pages/header_backwpupworking.php:27
2446
- #@ backwpup
2447
  msgid "Nothing..."
2448
  msgstr "Rien..."
2449
 
 
2450
  #: pages/header_backwpupworking.php:32
2451
- #@ backwpup
2452
  msgid "Here you see working jobs or logfiles"
2453
  msgstr "Ici vous pouvez voir les opérations en cours ou les fichiers journaux"
2454
 
 
2455
  #: pages/page_backwpup.php:8
2456
- #@ backwpup
2457
  msgid "BackWPup Jobs"
2458
  msgstr "Opérations BackWPup"
2459
 
 
2460
  #: pages/page_backwpupbackups.php:8
2461
- #@ backwpup
2462
  msgid "BackWPup Manage Backups"
2463
  msgstr "Gérer les sauvegardes BackWPup"
2464
 
2465
- #: pages/page_backwpupeditjob.php:8
2466
- #@ backwpup
2467
  msgid "Job Type"
2468
  msgstr "Type d'opération"
2469
 
2470
- #: pages/page_backwpupeditjob.php:9
2471
- #@ backwpup
2472
  msgid "Job Schedule"
2473
  msgstr "Programmation opération"
2474
 
2475
- #: pages/page_backwpupeditjob.php:25
2476
- #@ backwpup
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2477
  msgid "BackWPup Job Settings"
2478
  msgstr "Paramètres des opérations BackWPup"
2479
 
2480
- #: pages/page_backwpupeditjob.php:45
2481
- #: pages/page_backwpupeditjob.php:71
2482
- #@ backwpup
2483
  msgid "Enter Job name here"
2484
  msgstr "Entrez le nom de l'opération ici"
2485
 
2486
- #: pages/page_backwpupeditjob.php:77
2487
- #@ backwpup
2488
  msgid "Database Jobs"
2489
  msgstr "Opérations base de données"
2490
 
2491
- #: pages/page_backwpupeditjob.php:80
2492
- #@ backwpup
2493
  msgid "Database tables to use:"
2494
  msgstr "Tables de la base de données concernées:"
2495
 
2496
- #: pages/page_backwpupeditjob.php:90
2497
- #@ backwpup
2498
  msgid "Use short INSERTs instead of full (with keys)"
2499
  msgstr "Utilisez des petits INSERTs au lieux des complets (avec clés)"
2500
 
2501
- #: pages/page_backwpupeditjob.php:91
2502
- #@ backwpup
2503
  msgid "Set Blog Maintenance Mode on Database Operations"
2504
- msgstr "Mettre le site en mode maintenance pendant les opérations sur la base données."
 
 
2505
 
2506
- #: pages/page_backwpupeditjob.php:98
2507
- #@ backwpup
2508
  msgid "Blog Folders to Backup:"
2509
  msgstr "Répertoires du site à enregistrer:"
2510
 
2511
- #: pages/page_backwpupeditjob.php:101
2512
- #@ backwpup
2513
  msgid "root"
2514
  msgstr "Racine"
2515
 
2516
- #: pages/page_backwpupeditjob.php:104
2517
- #: pages/page_backwpupeditjob.php:120
2518
- #: pages/page_backwpupeditjob.php:136
2519
- #: pages/page_backwpupeditjob.php:152
2520
- #: pages/page_backwpupeditjob.php:168
2521
- #@ backwpup
2522
  msgid "Exclude:"
2523
  msgstr "Exclure:"
2524
 
2525
- #: pages/page_backwpupeditjob.php:117
2526
- #@ backwpup
2527
  msgid "Content"
2528
  msgstr "Contenu"
2529
 
2530
- #: pages/page_backwpupeditjob.php:133
2531
- #@ backwpup
2532
  msgid "Plugins"
2533
  msgstr "Extensions"
2534
 
2535
- #: pages/page_backwpupeditjob.php:149
2536
- #@ backwpup
2537
  msgid "Themes"
2538
  msgstr "Thèmes"
2539
 
2540
- #: pages/page_backwpupeditjob.php:165
2541
- #@ backwpup
2542
  msgid "Blog Uploads"
2543
  msgstr "Fichiers envoyés sur le site"
2544
 
2545
- #: pages/page_backwpupeditjob.php:182
2546
- #@ backwpup
2547
  msgid "Include Folders to Backup:"
2548
  msgstr "Répertoires à sauvegarder:"
2549
 
2550
- #: pages/page_backwpupeditjob.php:183
2551
- #: pages/page_backwpupeditjob.php:187
2552
- #@ backwpup
2553
  msgid "Example:"
2554
  msgstr "Exemple:"
2555
 
2556
- #: pages/page_backwpupeditjob.php:186
2557
- #@ backwpup
2558
  msgid "Exclude Files/Folders from Backup:"
2559
  msgstr "Exclure des fichiers/répertoires de la sauvegarde:"
2560
 
 
2561
  #: pages/page_backwpupsettings.php:10
2562
- #@ backwpup
2563
  msgid "BackWPup Settings"
2564
  msgstr "Paramètres BackWPup"
2565
 
 
2566
  #: pages/page_backwpupsettings.php:17
2567
- #@ backwpup
2568
  msgid "Send Mail"
2569
  msgstr "Envoyer le mail"
2570
 
 
2571
  #: pages/page_backwpupsettings.php:18
2572
- #@ backwpup
2573
- msgid "Here you can set the options for email sending. The settings will be used in jobs for sending backups via email or for sending log files."
2574
- msgstr "Ici vous pouvez régler les options pour l'envoi d'e-mails. Ces paramètres seront utilisés pour envoyer les fichiers journaux ou les sauvegardes via E-mail."
 
 
 
 
2575
 
 
2576
  #: pages/page_backwpupsettings.php:21
2577
- #@ backwpup
2578
  msgid "Sender email"
2579
  msgstr "E-mail de l'envoyeur"
2580
 
 
2581
  #: pages/page_backwpupsettings.php:26
2582
- #@ backwpup
2583
  msgid "Sender name"
2584
  msgstr "Nom de l'envoyeur"
2585
 
 
2586
  #: pages/page_backwpupsettings.php:30
2587
- #@ backwpup
2588
  msgid "Send mail method"
2589
  msgstr "Méthode d'envoi mail"
2590
 
 
2591
  #: pages/page_backwpupsettings.php:34
2592
- #@ backwpup
2593
  msgid "PHP: mail()"
2594
  msgstr "PHP:mail()"
2595
 
 
2596
  #: pages/page_backwpupsettings.php:35
2597
- #@ backwpup
2598
  msgid "Sendmail"
2599
  msgstr "Sendmail"
2600
 
 
2601
  #: pages/page_backwpupsettings.php:36
2602
- #@ backwpup
2603
  msgid "SMTP"
2604
  msgstr "SMTP"
2605
 
 
2606
  #: pages/page_backwpupsettings.php:42
2607
- #@ backwpup
2608
  msgid "Sendmail path"
2609
  msgstr "Chemin de Senmail"
2610
 
 
2611
  #: pages/page_backwpupsettings.php:49
2612
- #@ backwpup
2613
  msgid "SMTP hostname"
2614
  msgstr "Nom d'hôte SMTP"
2615
 
 
2616
  #: pages/page_backwpupsettings.php:56
2617
- #@ backwpup
2618
  msgid "SMTP secure connection"
2619
  msgstr "Connexion sécurisée SMTP"
2620
 
 
2621
  #: pages/page_backwpupsettings.php:66
2622
- #@ backwpup
2623
  msgid "SMTP username"
2624
  msgstr "Nom d'utilisateur SMTP"
2625
 
 
2626
  #: pages/page_backwpupsettings.php:72
2627
- #@ backwpup
2628
  msgid "SMTP password"
2629
  msgstr "Mot de passe SMTP"
2630
 
 
2631
  #: pages/page_backwpupsettings.php:80
2632
- #@ backwpup
2633
  msgid "Here you can set Logfile related options."
2634
  msgstr "Ici vous pouvez régler les options des fichiers journaux."
2635
 
 
2636
  #: pages/page_backwpupsettings.php:83
2637
- #@ backwpup
2638
  msgid "Log file Folder"
2639
  msgstr "Répertoire des fichiers journaux"
2640
 
 
2641
  #: pages/page_backwpupsettings.php:88
2642
- #@ backwpup
2643
  msgid "Max. Log Files in Folder"
2644
  msgstr "Nombre max. de fichiers journaux dans le répertoire"
2645
 
2646
- #: pages/page_backwpupsettings.php:94
2647
- #: pages/page_backwpupsettings.php:95
2648
- #@ backwpup
2649
  msgid "Compression"
2650
  msgstr "Compression"
2651
 
 
2652
  #: pages/page_backwpupsettings.php:97
2653
- #@ backwpup
2654
  msgid "Gzip Log files!"
2655
  msgstr "Gzipper les fichiers journaux!"
2656
 
 
2657
  #: pages/page_backwpupsettings.php:102
2658
- #@ backwpup
2659
  msgid "Here you can set Job related options."
2660
  msgstr "Ici vous pouvez régler les options de opérations"
2661
 
 
2662
  #: pages/page_backwpupsettings.php:105
2663
- #@ backwpup
2664
  msgid "Max. retrys for job steps"
2665
  msgstr "Nombre d'essais max pas étape d'opération"
2666
 
 
2667
  #: pages/page_backwpupsettings.php:110
2668
- #@ backwpup
2669
  msgid "Max. retrys for job script retries"
2670
  msgstr "Nombre max de tentatives d'une opération"
2671
 
 
2672
  #: pages/page_backwpupsettings.php:115
2673
- #@ backwpup
2674
  msgid "PHP zip class"
2675
  msgstr "Classe PHP zip"
2676
 
 
2677
  #: pages/page_backwpupsettings.php:116
2678
- #@ backwpup
2679
  msgid "PHP zip"
2680
  msgstr "PHP zip"
2681
 
 
2682
  #: pages/page_backwpupsettings.php:118
2683
- #@ backwpup
2684
  msgid "Use PHP zip class if available! Normaly PCL Zip class will used."
2685
  msgstr "Utiliser PHP zip si disponible! Sinon la classe PCL Zip sera utilisée."
2686
 
 
2687
  #: pages/page_backwpupsettings.php:123
2688
- #@ backwpup
2689
  msgid "WP Admin Bar"
2690
  msgstr "Barre d'administration WP"
2691
 
 
2692
  #: pages/page_backwpupsettings.php:124
2693
- #@ backwpup
2694
  msgid "Will you see BackWPup in the WordPress Admin Bar?"
2695
  msgstr "Voir BackWPup dans la barre d'administration WordPress?"
2696
 
2697
- #: pages/page_backwpupsettings.php:127
2698
- #: pages/page_backwpupsettings.php:128
2699
- #@ backwpup
2700
  msgid "Admin Bar"
2701
  msgstr "Barre d'administration"
2702
 
 
2703
  #: pages/page_backwpupsettings.php:130
2704
- #@ backwpup
2705
  msgid "Show BackWPup Links in Admin Bar."
2706
  msgstr "Voir les liens BackWPup dans la barre d'administration."
2707
 
 
2708
  #: pages/page_backwpupsettings.php:135
2709
- #@ backwpup
2710
  msgid "Http basic authentication"
2711
  msgstr "Authentification http basique"
2712
 
 
2713
  #: pages/page_backwpupsettings.php:136
2714
- #@ backwpup
2715
- msgid "Is your blog behind a http basic authentication (.htaccess)? Then you must set the username and password four authentication."
2716
- msgstr "Votre site se trouve-t'il derrière une authentification http basique (.htaccess)? Si oui entrez le nom d'utilisateur et le mot de passe pour celle-ci."
2717
-
2718
- #: pages/page_backwpupsettings.php:149
2719
- #@ backwpup
2720
- msgid "WP-Cron"
2721
- msgstr "WP-cron"
2722
-
2723
- #: pages/page_backwpupsettings.php:150
2724
- #@ backwpup
2725
- msgid "If you would use the cron job of your hoster you must point it to the url:"
2726
- msgstr "Si vous voulez utiliser le cron de votre hébergeur faîtes le pointer à l'adresse:"
2727
-
2728
- #: pages/page_backwpupsettings.php:153
2729
- #: pages/page_backwpupsettings.php:154
2730
- #@ backwpup
2731
- msgid "Disable WP-Cron"
2732
- msgstr "Désactiver WP-cron"
2733
-
2734
- #: pages/page_backwpupsettings.php:156
2735
- #@ backwpup
2736
- msgid "Use your host's Cron Job and disable WP-Cron"
2737
- msgstr "Utiliser le cron de votre hébergeur et désactiver WP-Cron"
2738
-
2739
- #: pages/page_backwpupsettings.php:160
2740
- #: pages/page_backwpupsettings.php:161
2741
- #@ backwpup
2742
- msgid "Use cron service of backwpup.com"
2743
- msgstr "Utiliser le cron service de backwpup.com"
2744
-
2745
- #: pages/page_backwpupsettings.php:163
2746
- #@ backwpup
2747
- msgid "If you check this, the job schedule will submited to backwpup.com. Backwpup.com will call your blog wp-cron.php to start. <em>Use this service only if you have not a cron service of your hoster, or a blog that has a few visitors.</em> The cron service can start cron behind a basic authentication, on that the http authentication data will transferd too! Please make a little donation for the plugin if you use this servcie. The service can be removed by me without a massage."
2748
- msgstr "Si vous cochez cette case, la programmation de l'opération sera soumise à backwpup.com. Backwpup.com lancera votre wp-cron.php. <em>N'utilisez ce service que si vous n'avez pas de cron service fourni par votre hébergeur, ou un blog n'ayant que peu de visiteurs.</em> Le service cron peut démarrer derrière une authentification basique, cependant, les données d'identification seront envoyées aussi! Veuillez fair eune petite donation si vous utilisez ce service. Je peux supprimer le service à tout moment sans même un message."
2749
 
 
2750
  #: pages/page_backwpuptools.php:8
2751
- #@ backwpup
2752
  msgid "BackWPup Tools"
2753
  msgstr "Outils BackWPup"
2754
 
 
2755
  #: pages/page_backwpuptools.php:15
2756
- #@ backwpup
2757
  msgid "Database restore"
2758
  msgstr "Restauration base de données"
2759
 
 
2760
  #: pages/page_backwpuptools.php:18
2761
- #@ backwpup
2762
  msgid "DB Restore"
2763
  msgstr "Restaurer la B.D."
2764
 
2765
- #: pages/page_backwpuptools.php:21
2766
- #: pages/page_backwpuptools.php:40
2767
- #@ backwpup
2768
  msgid "Restore"
2769
  msgstr "Restauration"
2770
 
 
2771
  #: pages/page_backwpuptools.php:37
2772
- #@ backwpup
2773
  msgid "SQL File to restore:"
2774
  msgstr "Fichier SQL à restaurer"
2775
 
 
2776
  #: pages/page_backwpuptools.php:43
2777
- #@ backwpup
2778
  msgid "Copy SQL file to blog root folder to use for a restoring."
2779
- msgstr "Copier le fichier SQL à la racine du site afin de l'utiliser pour une restauration."
 
 
2780
 
 
2781
  #: pages/page_backwpuptools.php:51
2782
- #@ backwpup
2783
  msgid "Import Jobs settings"
2784
  msgstr "Importer les paramètres des opérations"
2785
 
 
2786
  #: pages/page_backwpuptools.php:54
2787
- #@ backwpup
2788
  msgid "Select file to import:"
2789
  msgstr "Sélectionnez les fichiers à importer:"
2790
 
2791
- #: pages/page_backwpuptools.php:56
2792
- #: pages/page_backwpuptools.php:61
2793
- #@ backwpup
2794
  msgid "Upload"
2795
  msgstr "Envois"
2796
 
 
2797
  #: pages/page_backwpuptools.php:62
2798
- #@ backwpup
2799
  msgid "Select jobs to import"
2800
  msgstr "Sélectionner le opérations à importer"
2801
 
 
2802
  #: pages/page_backwpuptools.php:66
2803
- #@ backwpup
2804
  msgid "Import Type"
2805
  msgstr "Type d'importation"
2806
 
 
2807
  #: pages/page_backwpuptools.php:66
2808
- #@ backwpup
2809
  msgid "No Import"
2810
  msgstr "Pas d'importation"
2811
 
 
2812
  #: pages/page_backwpuptools.php:68
2813
- #@ backwpup
2814
  msgid "Overwrite"
2815
  msgstr "Écraser"
2816
 
 
2817
  #: pages/page_backwpuptools.php:68
2818
- #@ backwpup
2819
  msgid "Append"
2820
  msgstr "Ajouter"
2821
 
2822
- #: pages/page_backwpuptools.php:70
2823
- #: pages/page_backwpuptools.php:75
2824
- #: pages/page_backwpuptools.php:77
2825
- #: pages/page_backwpuptools.php:78
2826
- #@ backwpup
2827
  msgid "Import"
2828
  msgstr "Importer"
2829
 
 
2830
  #: pages/page_backwpuptools.php:114
2831
- #@ backwpup
2832
  msgid "Jobs imported!"
2833
  msgstr "Opérations importées!"
2834
 
 
2835
  #: pages/page_backwpupworking.php:9
2836
- #@ backwpup
2837
  msgid "BackWPup Working"
2838
  msgstr "BackWPup en cours"
2839
 
 
2840
  #: pages/page_backwpupworking.php:33
2841
- #@ backwpup
2842
  msgid "Warnings:"
2843
  msgstr "Avertissements:"
2844
 
 
2845
  #: pages/page_backwpupworking.php:37
2846
- #@ backwpup
2847
  msgid "Errors:"
2848
  msgstr "Erreurs:"
2849
 
2850
- #: pages/tools/db_restore.php:34
2851
- #: pages/tools/db_restore.php:53
2852
- #: pages/tools/db_restore.php:68
2853
- #: pages/tools/db_restore.php:79
2854
- #: pages/tools/db_restore.php:82
2855
- #: pages/tools/db_restore.php:85
2856
  #: pages/tools/db_restore.php:90
2857
- #@ backwpup
2858
  msgid "ERROR:"
2859
  msgstr "ERREUR:"
2860
 
 
2861
  #: pages/tools/db_restore.php:34
2862
  #, php-format
2863
- #@ backwpup
2864
  msgid "Pleace set <i>$table_prefix = '%1$s';</i> in wp-config.php"
2865
  msgstr "Veuillez définir <i>$table_prefix = '%1$s';</i> dans wp-config.php"
2866
 
 
2867
  #: pages/tools/db_restore.php:53
2868
  #, php-format
2869
- #@ backwpup
2870
  msgid "Pleace set <i>define('DB_CHARSET', '%1$s');</i> in wp-config.php"
2871
- msgstr "Veuillez définir <i>define('DB_CHARSET', '%1$s');</i> dans wp-config.php"
 
2872
 
2873
- #: pages/tools/db_restore.php:68
2874
- #: pages/tools/db_restore.php:79
2875
- #: pages/tools/db_restore.php:82
2876
- #: pages/tools/db_restore.php:85
2877
  #: pages/tools/db_restore.php:90
2878
  #, php-format
2879
- #@ backwpup
2880
  msgid "BackWPup database error %1$s for query %2$s"
2881
  msgstr "Erreur de base de données BackWPup %1$s pour la requête %2$s"
2882
 
 
2883
  #: pages/tools/db_restore.php:74
2884
  #, php-format
2885
- #@ backwpup
2886
  msgid "%1$s Database Querys done."
2887
  msgstr "%1$s requêtes SQL réalisées."
2888
 
 
2889
  #: pages/tools/db_restore.php:75
2890
- #@ backwpup
2891
  msgid "Make changes for Blogurl and ABSPATH if needed."
2892
  msgstr "Changez Blogurl et ABSPATH si nécessaire."
2893
 
 
2894
  #: pages/tools/db_restore.php:92
2895
- #@ backwpup
2896
  msgid "Restore Done. Please delete the SQL file after restoring."
2897
- msgstr "Restauration terminée. Veuillez effacer le fichier SQL après la restauration."
2898
-
2
  msgstr ""
3
  "Project-Id-Version: BackWPup v2.1.12\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-11-27 11:37+0100\n"
6
+ "PO-Revision-Date: 2012-11-27 11:41+0100\n"
7
+ "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: \n"
9
+ "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
+
22
+ # @ backwpup
23
+ # @ textdomain
24
+ #: backwpup-functions.php:4 backwpup-functions.php:233
25
+ #: backwpup-functions.php:458
 
 
 
 
26
  msgid "BackWPup"
27
  msgstr "BackWPup"
28
 
29
+ # @ backwpup
30
+ #: backwpup-functions.php:5 backwpup-functions.php:461
31
  #: pages/page_backwpupsettings.php:101
 
32
  msgid "Jobs"
33
  msgstr "Opérations"
34
 
35
+ # @ backwpup
36
  #: backwpup-functions.php:7
 
 
 
37
  msgid "Add New"
38
  msgstr "Ajouter"
39
 
40
+ # @ backwpup
41
  #: backwpup-functions.php:9
 
42
  msgid "Working"
43
  msgstr "En cours"
44
 
45
+ # @ backwpup
46
+ #: backwpup-functions.php:11 backwpup-functions.php:462
47
+ #: pages/header_backwpupbackups.php:327 pages/header_backwpuplogs.php:61
 
48
  #: pages/page_backwpupsettings.php:79
 
49
  msgid "Logs"
50
  msgstr "Fichiers journaux"
51
 
52
+ # @ backwpup
53
+ #: backwpup-functions.php:13 backwpup-functions.php:463
 
54
  msgid "Backups"
55
  msgstr "Sauvegardes"
56
 
57
+ # @ backwpup
58
  #: backwpup-functions.php:15
 
59
  msgid "Tools"
60
  msgstr "Outils"
61
 
62
+ # @ backwpup
63
+ #: backwpup-functions.php:17 backwpup-functions.php:214
 
64
  msgid "Settings"
65
  msgstr "Paramètres"
66
 
67
+ # @ backwpup
68
+ #: backwpup-functions.php:89
 
 
 
 
 
 
 
 
 
 
69
  msgid "Plugin Info"
70
  msgstr "Info extension"
71
 
72
+ #: backwpup-functions.php:91 job/job_run.php:113
73
+ msgid "Author:"
74
+ msgstr "Autheur:"
 
 
 
 
75
 
76
+ # @ backwpup
77
+ #: backwpup-functions.php:91 backwpup-functions.php:109
78
+ msgid ""
79
+ "BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, and you "
80
+ "are welcome to redistribute it under certain conditions."
81
+ msgstr ""
82
+ "BackWPup est livré sans AUCUNE GARANTIE. C'est un logiciel libre, et vous "
83
+ "êtes invités à le redistribuer sous certaines conditions."
84
+
85
+ # @ backwpup
86
+ #: backwpup-functions.php:95
87
  msgid "Overview"
88
  msgstr "Vue générale"
89
 
90
+ # @ backwpup
91
+ #: backwpup-functions.php:99 backwpup-functions.php:110
 
 
 
92
  msgid "For more information:"
93
  msgstr "Pour plus d'informations:"
94
 
95
+ # @ backwpup
96
+ #: backwpup-functions.php:102 backwpup-functions.php:113
97
+ #: backwpup-functions.php:225
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "FAQ"
99
  msgstr "FAQ"
100
 
101
+ # @ backwpup
102
+ #: backwpup-functions.php:103 backwpup-functions.php:114
 
 
 
103
  msgid "Support Forums"
104
  msgstr "Forums d'aide"
105
 
106
+ # @ backwpup
107
+ #: backwpup-functions.php:104 backwpup-functions.php:115
 
 
 
 
 
 
 
 
 
 
 
 
108
  msgid "Google+"
109
  msgstr "Google+"
110
 
111
+ # @ backwpup
112
+ #: backwpup-functions.php:214
113
  msgid "Go to Settings Page"
114
  msgstr "Aller aux paramètres"
115
 
116
+ # @ backwpup
117
+ #: backwpup-functions.php:226
118
  msgid "Support"
119
  msgstr "Aide"
120
 
121
+ # @ backwpup
122
+ #: backwpup-functions.php:290
123
  msgid "WP XML Export"
124
  msgstr "Export WP XML"
125
 
126
+ # @ backwpup
127
+ #: backwpup-functions.php:293 pages/page_backwpupeditjob.php:117
 
128
  msgid "File Backup"
129
  msgstr "Sauvegarde des fichiers"
130
 
131
+ # @ backwpup
132
+ #: backwpup-functions.php:296
133
  msgid "Database Backup"
134
  msgstr "Sauvegarde de la base de données"
135
 
136
+ # @ backwpup
137
+ #: backwpup-functions.php:299
138
  msgid "Optimize Database Tables"
139
  msgstr "Optimisation des tables"
140
 
141
+ # @ backwpup
142
+ #: backwpup-functions.php:302
143
  msgid "Check Database Tables"
144
  msgstr "Vérification des tables"
145
 
146
+ # @ backwpup
147
+ #: backwpup-functions.php:367
148
  msgid "View Log:"
149
  msgstr "Voir journal:"
150
 
151
+ # @ backwpup
152
+ #: backwpup-functions.php:369 pages/func_backwpuplogs.php:138
153
  #, php-format
 
154
  msgid "%d ERROR"
155
  msgid_plural "%d ERRORS"
156
+ msgstr[0] "%d ERREUR"
157
+ msgstr[1] "%d ERREURS"
158
 
159
+ # @ backwpup
160
+ #: backwpup-functions.php:371 pages/func_backwpuplogs.php:140
161
  #, php-format
 
162
  msgid "%d WARNING"
163
  msgid_plural "%d WARNINGS"
164
+ msgstr[0] "%d AVERTISSEMENT"
165
+ msgstr[1] "%d AVERTISSEMENTS"
166
 
167
+ # @ backwpup
168
+ #: backwpup-functions.php:373 pages/func_backwpuplogs.php:142
 
169
  msgid "O.K."
170
  msgstr "O.K."
171
 
172
+ # @ backwpup
173
+ #: backwpup-functions.php:381 backwpup-functions.php:411
174
+ #: backwpup-functions.php:439 pages/page_backwpupsettings.php:59
 
 
175
  msgid "none"
176
  msgstr "aucune"
177
 
178
+ # @ backwpup
179
+ #: backwpup-functions.php:399
180
  msgid "How many of the lastes logs would you like to display?"
181
  msgstr "Combien des derniers fichiers journaux voulez-vous afficher?"
182
 
183
+ # @ backwpup
184
+ #: backwpup-functions.php:425
185
  #, php-format
 
186
  msgid "working since %d sec."
187
  msgstr "en cours depuis %d sec."
188
 
189
+ # @ backwpup
190
+ #: backwpup-functions.php:426 pages/func_backwpup.php:110
 
191
  msgid "View!"
192
  msgstr "Voir!"
193
 
194
+ # @ backwpup
195
+ #: backwpup-functions.php:427 pages/func_backwpup.php:111
 
196
  msgid "Abort!"
197
  msgstr "Abandonner!"
198
 
199
+ # @ backwpup
200
+ #: backwpup-functions.php:432
201
  msgid "Edit Job"
202
  msgstr "Modifier l'opération"
203
 
204
+ # @ backwpup
205
+ #: backwpup-functions.php:447 pages/page_backwpuplogs.php:8
 
206
  msgid "BackWPup Logs"
207
  msgstr "Fichiers journaux de BackWPup"
208
 
209
+ # @ backwpup
210
+ #: backwpup-functions.php:448
211
+ msgid "BackWPup Active Jobs"
212
  msgstr "Opérations actives BackWPup"
213
 
214
+ # @ backwpup
215
+ #: backwpup-functions.php:460
216
  msgid "See Working!"
217
  msgstr "Observer l'opération!"
218
 
219
+ # @ backwpup
220
+ #: backwpup-functions.php:464
221
  msgid "BackWPup Job"
222
  msgstr "Opération BackWPup"
223
 
224
+ # @ backwpup
225
+ #: backwpup-functions.php:679
226
  #, php-format
 
227
  msgid "- WordPress %d or higher is needed!"
228
  msgstr "- WordPress %d ou supérieur est nécessaire!"
229
 
230
+ # @ backwpup
231
+ #: backwpup-functions.php:683
232
  msgid "- PHP 5.2.4 or higher is needed!"
233
  msgstr "- PHP 5.2.4 ou supérieur est nécessaire!"
234
 
235
+ # @ backwpup
236
+ #: backwpup-functions.php:690
237
  #, php-format
 
238
  msgid "- Temp folder '%s' does not exists!"
239
  msgstr "- Le répertoire temporaire '%s' n'existe pas!"
240
 
241
+ # @ backwpup
242
+ #: backwpup-functions.php:693
243
  #, php-format
 
244
  msgid "- Temp folder '%s' is not writeable!"
245
  msgstr "- Le répertoire temporaire '%s' n'est pas inscriptible!"
246
 
247
+ # @ backwpup
248
+ #: backwpup-functions.php:699
249
  #, php-format
 
250
  msgid "- Log folder '%s' does not exists!"
251
  msgstr "- Le répertoire des fichiers journaux '%s' n'existe pas!"
252
 
253
+ # @ backwpup
254
+ #: backwpup-functions.php:702
255
  #, php-format
 
256
  msgid "- Log folder '%s' is not writeable!"
257
  msgstr "- Le répertoire des fichiers journaux '%s' n'est pas inscriptible!"
258
 
259
+ # @ backwpup
260
+ #: backwpup-functions.php:705
261
  #, php-format
 
262
  msgid "- Log folder '%s' is not in open_basedir path!"
263
+ msgstr ""
264
+ "- Le répertoire des fichiers journaux '%s' n'est pas dans le chemin "
265
+ "open_basedir!"
266
 
267
+ # @ backwpup
268
+ #: backwpup-functions.php:708
269
  #, php-format
 
270
  msgid "- WP_CONTENT_URL '%s' must set as a full URL!"
271
  msgstr "- WP_CONTENT_URL '%s' doit être une adresse valide!"
272
 
273
+ # @ backwpup
274
+ #: backwpup-functions.php:711
275
  #, php-format
 
276
  msgid "- WP_PLUGIN_URL '%s' must set as a full URL!"
277
  msgstr "- WP_PLUGIN_URL '%s' doit être une adresse valide!"
278
 
279
+ # @ backwpup
280
+ #: backwpup-functions.php:715
281
  msgid "- WP-Cron isn't working, please check it!"
282
  msgstr "- WP-Cron ne fonctionne pas, veuillez vérifier!"
283
 
284
+ # @ backwpup
285
+ #: backwpup-functions.php:771
286
  msgid "New"
287
  msgstr "Nouvelle"
288
 
289
+ # @ backwpup
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  #: job/backup_create.php:13
291
  #, php-format
 
292
  msgid "%d. try to create backup zip archive..."
293
  msgstr "%d. Tentative de création de l'archive zip..."
294
 
295
+ # @ backwpup
296
  #: job/backup_create.php:18
297
  #, php-format
 
298
  msgid "Can not add \"%s\" to zip archive!"
299
  msgstr "Impossible d'ajouter \"%s\" à l'archive zip!"
300
 
301
+ # @ backwpup
302
  #: job/backup_create.php:25
 
303
  msgid "(4) ER_SEEK"
304
  msgstr "(4) ER_SEEK"
305
 
306
+ # @ backwpup
307
  #: job/backup_create.php:27
 
308
  msgid "(5) ER_READ"
309
  msgstr "(5) ER_READ"
310
 
311
+ # @ backwpup
312
  #: job/backup_create.php:29
 
313
  msgid "(9) ER_NOENT"
314
  msgstr "(9) ER_NOENT"
315
 
316
+ # @ backwpup
317
  #: job/backup_create.php:31
 
318
  msgid "(10) ER_EXISTS"
319
  msgstr "(10) ER_EXISTS"
320
 
321
+ # @ backwpup
322
  #: job/backup_create.php:33
 
323
  msgid "(11) ER_OPEN"
324
  msgstr "(11) ER_OPEN"
325
 
326
+ # @ backwpup
327
  #: job/backup_create.php:35
 
328
  msgid "(14) ER_MEMORY"
329
  msgstr "(14) ER_MEMORY"
330
 
331
+ # @ backwpup
332
  #: job/backup_create.php:37
 
333
  msgid "(18) ER_INVAL"
334
  msgstr "(18) ER_INVAL"
335
 
336
+ # @ backwpup
337
  #: job/backup_create.php:39
 
338
  msgid "(19) ER_NOZIP"
339
  msgstr "(19) ER_NOZIP"
340
 
341
+ # @ backwpup
342
  #: job/backup_create.php:41
 
343
  msgid "(21) ER_INCONS"
344
  msgstr "(21) ER_INCONS"
345
 
346
+ # @ backwpup
347
  #: job/backup_create.php:42
348
  #, php-format
 
349
  msgid "Zip returns status: %s"
350
  msgstr "Zip a renvoyé le statut: %s"
351
 
352
+ # @ backwpup
353
  #: job/backup_create.php:45
 
354
  msgid "Backup zip archive create done!"
355
  msgstr "Archive zip de sauvegarde créée!"
356
 
357
+ # @ backwpup
358
  #: job/backup_create.php:48
 
359
  msgid "Can not create backup zip archive $s!"
360
  msgstr "Création de l'archive zip $s impossible!"
361
 
362
+ # @ backwpup
363
  #: job/backup_create.php:59
364
  #, php-format
 
365
  msgid "%d. try to create backup zip (PclZip) archive..."
366
  msgstr "%d. tentative de création de l'archive zip (PclZip)..."
367
 
368
+ # @ backwpup
369
  #: job/backup_create.php:68
370
  #, php-format
 
371
  msgid "Zip archive create error: %s"
372
  msgstr "Erreur de création de l'archive zip: %s"
373
 
374
+ # @ backwpup
375
  #: job/backup_create.php:72
 
376
  msgid "Backup zip archive create done"
377
  msgstr "Archive zip de sauvegarde créée"
378
 
379
+ # @ backwpup
380
  #: job/backup_create.php:89
381
+ msgid "Can not create tar archive file!"
 
382
  msgstr "Impossible de créer l'archive tar!"
383
 
384
+ # @ backwpup
385
  #: job/backup_create.php:92
386
  #, php-format
 
387
  msgid "%1$d. try to create %2$s archive file..."
388
  msgstr "%1$d. tentative de création de l'archive %2$s ..."
389
 
390
+ # @ backwpup
391
  #: job/backup_create.php:100
392
  #, php-format
 
393
  msgid "File \"%s\" not readable!"
394
  msgstr "\"%s\" non accessible!"
395
 
396
+ # @ backwpup
397
  #: job/backup_create.php:115
398
  #, php-format
 
399
  msgid "File name \"%1$s\" to long to save corectly in %2$s archive!"
400
+ msgstr ""
401
+ "Le nom de fichier \"%1$s\\ est trop long pour s'enregistrer correctement "
402
+ "dans l'archive %2$s!"
403
 
404
+ # @ backwpup
405
  #: job/backup_create.php:117
406
  #, php-format
 
407
  msgid "File path \"%1$s\" to long to save corectly in %2$s archive!"
408
+ msgstr ""
409
+ "Le chemin vers \"%1$s\" est trop long pour s'enregistrer correctement dans "
410
+ "l'archive %2$s!"
411
 
412
+ # @ backwpup
413
+ #: job/backup_create.php:174
414
  #, php-format
 
415
  msgid "%s archive creation done"
416
  msgstr "Création de l'archive %s réussie"
417
 
418
+ # @ backwpup
419
+ #: job/backup_create.php:178
420
  #, php-format
 
421
  msgid "Archive size is %s"
422
  msgstr "La taille de l'archive est de %s"
423
 
424
+ # @ backwpup
425
+ #: job/backup_create.php:185
426
  #, php-format
 
427
  msgid "PCL ZIP Error \"%1$s\" on file %2$s!"
428
  msgstr "Erreur PCL ZIP \"%1$s\" sur le fichier %2$s!"
429
 
430
+ # @ backwpup
431
  #: job/db_check.php:4
432
  #, php-format
 
433
  msgid "%d. try for database check..."
434
  msgstr "%d. tentative de vérification de la base de données"
435
 
436
+ # @ backwpup
437
+ #: job/db_check.php:13 job/db_check.php:29 job/db_check.php:44
438
+ #: job/db_dump.php:13 job/db_dump.php:25 job/db_dump.php:108
439
+ #: job/db_dump.php:118 job/db_optimize.php:13 job/db_optimize.php:28
440
+ #: job/job_functions.php:34 job/job_functions.php:47
441
+ #, php-format
 
 
 
 
 
 
 
442
  msgid "Database error %1$s for query %2$s"
443
  msgstr "Erreur base de données %1$s pour la requête %2$s"
444
 
445
+ # @ backwpup
446
+ #: job/db_check.php:34 job/db_check.php:36 job/db_check.php:38
 
447
  #, php-format
 
448
  msgid "Result of table check for %1$s is: %2$s"
449
  msgstr "Le résultat de la vérification de la table %1$s est: %2$s"
450
 
451
+ # @ backwpup
452
+ #: job/db_check.php:49 job/db_check.php:51 job/db_check.php:53
 
453
  #, php-format
 
454
  msgid "Result of table repair for %1$s is: %2$s"
455
  msgstr "Le résultat de la réparation de la table %1$s est: %2$s"
456
 
457
+ # @ backwpup
458
  #: job/db_check.php:59
 
459
  msgid "Database check done!"
460
  msgstr "Vérification de la base de donnée réussie!"
461
 
462
+ # @ backwpup
463
  #: job/db_check.php:61
 
464
  msgid "No tables to check"
465
  msgstr "Aucune table à vérifier!"
466
 
467
+ # @ backwpup
468
  #: job/db_dump.php:4
469
  #, php-format
 
470
  msgid "%d. try for database dump..."
471
  msgstr "%d. tentative de dump de la base de données..."
472
 
473
+ # @ backwpup
474
+ #: job/db_dump.php:72
 
 
 
 
 
 
475
  msgid "Database dump done!"
476
  msgstr "Dump de la base de donnée réussie!"
477
 
478
+ # @ backwpup
479
+ #: job/db_dump.php:74
480
  msgid "Can not create database dump!"
481
  msgstr "Impossible de créer le dump de la base de donnée!"
482
 
483
+ # @ backwpup
484
+ #: job/db_dump.php:77
485
  msgid "No tables to dump"
486
  msgstr "Aucune table pour le dump"
487
 
488
+ # @ backwpup
489
+ #: job/db_dump.php:83
490
  #, php-format
 
491
  msgid "Add database dump \"%1$s\" with %2$s to backup file list"
492
  msgstr "Ajout du dump \"%1$s\" avec %2$s a la liste des fichiers à sauvegarder"
493
 
494
+ # @ backwpup
495
+ #: job/db_dump.php:97
496
+ #, php-format
497
+ msgid "Dump database table \"%s\""
498
+ msgstr "Dump de la table \"%s\""
499
+
500
+ # @ backwpup
501
  #: job/db_optimize.php:4
502
  #, php-format
 
503
  msgid "%d. try for database optimize..."
504
  msgstr "%d. tentative d'optimisation de la base de données..."
505
 
506
+ # @ backwpup
507
+ #: job/db_optimize.php:35 job/db_optimize.php:37 job/db_optimize.php:39
 
508
  #, php-format
 
509
  msgid "Result of table optimize for %1$s is: %2$s"
510
  msgstr "Le résultat de l'optimisation de la table %1$s est: %2$s"
511
 
512
+ # @ backwpup
513
  #: job/db_optimize.php:41
 
514
  msgid "Database optimize done!"
515
  msgstr "Optimisation de la base de données réussie!"
516
 
517
+ # @ backwpup
518
  #: job/db_optimize.php:44
 
519
  msgid "No tables to optimize"
520
  msgstr "Aucune tables à optimiser"
521
 
522
+ # @ backwpup
523
  #: job/dest_dropbox.php:6
524
  #, php-format
 
525
  msgid "%d. Try to sending backup file to DropBox..."
526
  msgstr "%d. tentative d'envoi de fichiers vers Dropbox..."
527
 
528
+ # @ backwpup
529
+ #: job/dest_dropbox.php:18
530
  #, php-format
 
531
  msgid "Authed with DropBox from %s"
532
  msgstr "Authentifié chez DropBox depuis %s"
533
 
534
+ # @ backwpup
535
+ #: job/dest_dropbox.php:23
536
  msgid "No free space left on DropBox!!!"
537
  msgstr "Plus de place sur DropBox!!!"
538
 
539
+ # @ backwpup
540
+ #: job/dest_dropbox.php:27
541
  #, php-format
 
542
  msgid "%s free on DropBox"
543
  msgstr "%s de libre sur DropBox"
544
 
545
+ # @ backwpup
546
+ #: job/dest_dropbox.php:32
547
  msgid "Upload to DropBox now started... "
548
  msgstr "Envoi vers DropBox commencé..."
549
 
550
+ # @ backwpup
551
+ #: job/dest_dropbox.php:38 job/dest_gstorage.php:27 job/dest_msazure.php:25
552
+ #: job/dest_s3.php:30 job/dest_sugarsync.php:37
 
 
553
  #, php-format
 
554
  msgid "Backup transferred to %s"
555
  msgstr "Sauvegarde envoyée vers %s"
556
 
557
+ # @ backwpup
558
+ #: job/dest_dropbox.php:43 job/dest_dropbox.php:68
559
  #, php-format
 
560
  msgid "DropBox API: %s"
561
  msgstr "DropBox API: %s"
562
 
563
+ # @ backwpup
564
+ #: job/dest_dropbox.php:64
565
  #, php-format
 
566
  msgid "One file deleted on DropBox"
567
  msgid_plural "%d files deleted on DropBox"
568
+ msgstr[0] "Un fichier supprimé sur DropBox"
569
+ msgstr[1] "%d fichiers supprimés sur DropBox"
570
 
571
+ # @ backwpup
572
  #: job/dest_folder.php:25
573
  #, php-format
 
574
  msgid "One backup file deleted"
575
  msgid_plural "%d backup files deleted"
576
+ msgstr[0] "Un fichier de sauvegarde supprimé"
577
+ msgstr[1] "%d fichiers de sauvegarde supprimés"
578
 
579
+ # @ backwpup
580
  #: job/dest_ftp.php:9
581
  #, php-format
 
582
  msgid "%d. try to sending backup file to a FTP Server..."
583
  msgstr "%d. tentative d'envoi du fichier sauvegarde vers un serveur FTP..."
584
 
585
+ # @ backwpup
586
  #: job/dest_ftp.php:15
587
  #, php-format
 
588
  msgid "Connected by SSL-FTP to Server: %s"
589
  msgstr "Connexion sécurisée par SSL-FTP au serveur: %s"
590
 
591
+ # @ backwpup
592
  #: job/dest_ftp.php:17
593
  #, php-format
 
594
  msgid "Can not connect by SSL-FTP to Server: %s"
595
  msgstr "Impossible de se connecter par SSL-FTP au serveur: %s"
596
 
597
+ # @ backwpup
598
  #: job/dest_ftp.php:21
 
599
  msgid "PHP function to connect with SSL-FTP to server not exists!"
600
+ msgstr ""
601
+ "La fonction PHP pour se connecter au serveur avec SSL-FTP n'existe pas!"
602
 
603
+ # @ backwpup
604
  #: job/dest_ftp.php:27
605
  #, php-format
 
606
  msgid "Connected to FTP server: %s"
607
  msgstr "Connecté au serveur FTP: %s"
608
 
609
+ # @ backwpup
610
  #: job/dest_ftp.php:29
611
  #, php-format
 
612
  msgid "Can not connect to FTP server: %s"
613
  msgstr "Impossible de se connecter au serveur FTP: %s"
614
 
615
+ # @ backwpup
616
+ #: job/dest_ftp.php:36 job/dest_ftp.php:43 job/dest_ftp.php:55
617
+ #: job/dest_ftp.php:90
 
618
  #, php-format
 
619
  msgid "FTP Client command: %s"
620
  msgstr "Commande client FTP: %s "
621
 
622
+ # @ backwpup
623
+ #: job/dest_ftp.php:38 job/dest_ftp.php:41 job/dest_ftp.php:45
624
+ #: job/dest_ftp.php:58 job/dest_ftp.php:60 job/dest_ftp.php:93
625
+ #: job/dest_ftp.php:95 job/dest_ftp.php:98 job/dest_ftp.php:100
 
 
 
 
 
626
  #, php-format
 
627
  msgid "FTP Server reply: %s"
628
  msgstr "Réponse du serveur FTP: %s"
629
 
630
+ # @ backwpup
631
  #: job/dest_ftp.php:60
 
632
  msgid "Error getting SYSTYPE"
633
  msgstr "Erreur en essayant d'avoir SYSTYPE"
634
 
635
+ # @ backwpup
636
+ #: job/dest_ftp.php:71
637
  #, php-format
638
+ msgid "FTP folder \"%s\" created!"
 
639
  msgstr "Répertoire FTP \"%s\" créé!"
640
 
641
+ # @ backwpup
642
+ #: job/dest_ftp.php:74
643
  #, php-format
644
+ msgid "FTP folder \"%s\" can not created!"
645
+ msgstr "Le répertoire FTP \"%s\" ne peut pas être créé!"
 
646
 
647
+ #: job/dest_ftp.php:83
648
+ #, php-format
649
+ msgid "FTP current folder is: %s"
650
+ msgstr "Le dossier FTP actuel est : %s"
651
+
652
+ # @ backwpup
653
+ #: job/dest_ftp.php:93
654
  msgid "Entering Passive Mode"
655
  msgstr "Passage en mode passif"
656
 
657
+ # @ backwpup
658
+ #: job/dest_ftp.php:95
659
  msgid "Can not Entering Passive Mode"
660
  msgstr "Impossible de passer en mode passif"
661
 
662
+ # @ backwpup
663
+ #: job/dest_ftp.php:98
664
  msgid "Entering Normal Mode"
665
  msgstr "Passage en mode normal"
666
 
667
+ # @ backwpup
668
+ #: job/dest_ftp.php:100
669
  msgid "Can not Entering Normal Mode"
670
  msgstr "Impossible de passer en mode normal"
671
 
672
+ # @ backwpup
673
+ #: job/dest_ftp.php:104
674
  msgid "Upload to FTP now started ... "
675
  msgstr "Envoi vers FTP commencé..."
676
 
677
+ # @ backwpup
678
+ #: job/dest_ftp.php:113
679
  msgid "Can not transfer backup to FTP server!"
680
  msgstr "Impossible d'envoyer la sauvegarde vers le serveur FTP!"
681
 
682
+ # @ backwpup
683
+ #: job/dest_ftp.php:117
684
  #, php-format
 
685
  msgid "Backup transferred to FTP server: %s"
686
  msgstr "Sauvegarde envoyée vers le serveur FTP: %s"
687
 
688
+ # @ backwpup
689
+ #: job/dest_ftp.php:138
690
  #, php-format
 
691
  msgid "Can not delete \"%s\" on FTP server!"
692
  msgstr "Impossible d'effacer \"%s\" sur le serveur FTP!"
693
 
694
+ # @ backwpup
695
+ #: job/dest_ftp.php:141
696
  #, php-format
 
697
  msgid "One file deleted on FTP Server"
698
  msgid_plural "%d files deleted on FTP Server"
699
+ msgstr[0] "Un fichier supprimé sur le serveur FTP"
700
+ msgstr[1] "%d fichiers supprimés sur le serveur FTP"
701
 
702
+ # @ backwpup
703
  #: job/dest_gstorage.php:4
704
  #, php-format
 
705
  msgid "%d. try sending backup to Google Storage..."
706
  msgstr "%d. tentative d'envoi de sauvegarde vers Google Storage..."
707
 
708
+ # @ backwpup
709
  #: job/dest_gstorage.php:16
710
  #, php-format
 
711
  msgid "Connected to GStorage Bucket: %s"
712
  msgstr "Connecté au panier GStorage: %s"
713
 
714
+ # @ backwpup
715
  #: job/dest_gstorage.php:21
 
716
  msgid "Upload to GStorage now started... "
717
  msgstr "Envoi vers GStorage commencé..."
718
 
719
+ # @ backwpup
720
  #: job/dest_gstorage.php:31
721
  #, php-format
 
722
  msgid "Can not transfer backup to GStorage! (%1$d) %2$s"
723
  msgstr "Impossible d'envoyer la sauvegarde vers GStorage! (%1$d) %2$s"
724
 
725
+ # @ backwpup
726
  #: job/dest_gstorage.php:34
727
  #, php-format
 
728
  msgid "GStorage Bucket \"%s\" not exists!"
729
  msgstr "Le panier GStorage \"%s\" n'existe pas!"
730
 
731
+ # @ backwpup
732
+ #: job/dest_gstorage.php:37 job/dest_gstorage.php:66
733
+ #: pages/func_backwpupbackups.php:392 pages/header_backwpupbackups.php:50
 
734
  #, php-format
 
735
  msgid "GStorage API: %s"
736
  msgstr "GStorage API: %s"
737
 
738
+ # @ backwpup
739
  #: job/dest_gstorage.php:58
740
  #, php-format
 
741
  msgid "Can not delete backup on GStorage://%s"
742
  msgstr "Impossible d'effacer la sauvegarde sur GStorage://%s"
743
 
744
+ # @ backwpup
745
  #: job/dest_gstorage.php:61
746
  #, php-format
 
747
  msgid "One file deleted on GStorage Bucket"
748
  msgid_plural "%d files deleted on GStorage Bucket"
749
+ msgstr[0] "Un fichier supprimé sur GStorage"
750
+ msgstr[1] "%d fichiers supprimés sur GStorage"
751
 
752
+ # @ backwpup
753
  #: job/dest_mail.php:6
754
  #, php-format
 
755
  msgid "%d. try to sending backup with mail..."
756
  msgstr "%d. tentative d'envoi de la sauvegarde par mail..."
757
 
758
+ # @ backwpup
759
+ #: job/dest_mail.php:23
760
  msgid "Send mail with SMTP"
761
  msgstr "Envoyer le mail avec SMTP"
762
 
763
+ # @ backwpup
764
+ #: job/dest_mail.php:27
765
  msgid "Send mail with Sendmail"
766
  msgstr "Envoyer le mail avec Sendmail"
767
 
768
+ # @ backwpup
769
+ #: job/dest_mail.php:30
770
  msgid "Send mail with PHP mail"
771
  msgstr "Envoyer le mail avec la fonction mail de PHP"
772
 
773
+ # @ backwpup
774
+ #: job/dest_mail.php:33
775
  msgid "Creating mail"
776
  msgstr "Création du mail"
777
 
778
+ # @ backwpup
779
+ #: job/dest_mail.php:37
780
  #, php-format
 
781
  msgid "BackWPup archive from %1$s: %2$s"
782
  msgstr "L'archive BackWPup de %1$s: %2$s"
783
 
784
+ # @ backwpup
785
+ #: job/dest_mail.php:39
786
  #, php-format
 
787
  msgid "Backup archive: %s"
788
  msgstr "Archivage de: %s"
789
 
790
+ # @ backwpup
791
+ #: job/dest_mail.php:44
792
  msgid "Backup archive too big for sending by mail!"
793
  msgstr "Fichier de sauvegarde trop volumineux pour être envoyé par mail!"
794
 
795
+ # @ backwpup
796
+ #: job/dest_mail.php:51
797
  msgid "Adding backup archive to mail"
798
  msgstr "Ajout du fichier sauvegarde au mail"
799
 
800
+ # @ backwpup
801
+ #: job/dest_mail.php:55
802
  msgid "Send mail...."
803
  msgstr "Envoi du mail..."
804
 
805
+ # @ backwpup
806
+ #: job/dest_mail.php:57
807
  #, php-format
 
808
  msgid "Error \"%s\" on sending mail!"
809
  msgstr "Erreur \"%s\" en envoyant le mail!"
810
 
811
+ # @ backwpup
812
+ #: job/dest_mail.php:60
813
  msgid "Mail send!!!"
814
  msgstr "Mail envoyé!!!"
815
 
816
+ # @ backwpup
817
  #: job/dest_msazure.php:5
818
  #, php-format
 
819
  msgid "%d. try sending backup to a Microsoft Azure (Blob)..."
820
  msgstr "%d. tentative d'envoi de la sauvegarde vers Microsoft Azure (Blob)..."
821
 
822
+ # @ backwpup
823
  #: job/dest_msazure.php:14
824
  #, php-format
 
825
  msgid "Microsoft Azure container \"%s\" not exists!"
826
  msgstr "Le contenant Microsoft Azure \"%s\" n'existe pas!"
827
 
828
+ # @ backwpup
829
  #: job/dest_msazure.php:17
830
  #, php-format
 
831
  msgid "Connected to Microsoft Azure container \"%s\""
832
  msgstr "Connecté au contenant Microsoft Azure \"%s\""
833
 
834
+ # @ backwpup
835
  #: job/dest_msazure.php:20
 
836
  msgid "Upload to MS Azure now started... "
837
  msgstr "Envoi vers MS Azure commencé..."
838
 
839
+ # @ backwpup
840
  #: job/dest_msazure.php:29
 
841
  msgid "Can not transfer backup to Microsoft Azure!"
842
  msgstr "Impossible d'envoyer la sauvegarde vers Microsoft Azure!"
843
 
844
+ # @ backwpup
845
  #: job/dest_msazure.php:50
846
  #, php-format
 
847
  msgid "One file deleted on Microsoft Azure container"
848
  msgid_plural "%d files deleted on Microsoft Azure container"
849
+ msgstr[0] "Un fichier supprimé sur Microsoft Azure"
850
+ msgstr[1] "%d fichiers supprimés sur Microsoft Azure"
851
 
852
+ # @ backwpup
853
  #: job/dest_msazure.php:55
854
  #, php-format
 
855
  msgid "Microsoft Azure API: %s"
856
  msgstr "Microsoft Azure API: %s"
857
 
858
+ # @ backwpup
859
  #: job/dest_rsc.php:4
 
860
  msgid "Try to sending backup file to Rackspace Cloud..."
861
  msgstr "Tentative d'envoi de la sauvegarde vers Rackspace Cloud..."
862
 
863
+ # @ backwpup
864
  #: job/dest_rsc.php:13
 
865
  msgid "Connected to Rackspase ..."
866
  msgstr "Connecté à Rackspace..."
867
 
868
+ # @ backwpup
869
+ #: job/dest_rsc.php:29 job/dest_rsc.php:63 job/dest_rsc.php:92
 
 
870
  msgid "Rackspase Cloud API:"
871
  msgstr "Rackspase Cloud API:"
872
 
873
+ # @ backwpup
874
  #: job/dest_rsc.php:34
 
875
  msgid "Rackspase Cloud Container not exists:"
876
  msgstr "Le contenant sur Rackspace Cloud n'existe pas!"
877
 
878
+ # @ backwpup
879
  #: job/dest_rsc.php:53
 
880
  msgid "Upload to RSC now started ... "
881
  msgstr "Envoi vers RSC commencé..."
882
 
883
+ # @ backwpup
884
  #: job/dest_rsc.php:56
 
885
  msgid "Backup File transferred to RSC://"
886
  msgstr "Fichier de sauvegarde transféré vers RSC://"
887
 
888
+ # @ backwpup
889
  #: job/dest_rsc.php:60
 
890
  msgid "Can not transfer backup to RSC."
891
  msgstr "Impossible d'envoyer la sauvegarde vers RSC."
892
 
893
+ # @ backwpup
894
  #: job/dest_rsc.php:85
 
895
  msgid "Can not delete file on RSC://"
896
  msgstr "Impossible d'effacé le fichier sur RSC://"
897
 
898
+ # @ backwpup
899
  #: job/dest_rsc.php:88
900
  #, php-format
 
901
  msgid "One file deleted on RSC container"
902
  msgid_plural "%d files deleted on RSC container"
903
+ msgstr[0] "Un fichier supprimé sur RSC"
904
+ msgstr[1] "%d fichiers supprimés sur RSC"
905
 
906
+ # @ backwpup
907
  #: job/dest_s3.php:4
908
  #, php-format
 
909
  msgid "%d. try sending backup file to Amazon S3..."
910
  msgstr "%d. tentative d'envoi du fichier sauvegarde vers Amazon S3..."
911
 
912
+ # @ backwpup
913
  #: job/dest_s3.php:14
914
  #, php-format
 
915
  msgid "Connected to S3 Bucket: %s"
916
  msgstr "Connecté au panier S: %s"
917
 
918
+ # @ backwpup
919
  #: job/dest_s3.php:24
 
920
  msgid "Upload to Amazon S3 now started... "
921
  msgstr "Envoi vers Amazon S3 commencé..."
922
 
923
+ # @ backwpup
924
  #: job/dest_s3.php:34
925
  #, php-format
 
926
  msgid "Can not transfer backup to S3! (%1$d) %2$s"
927
  msgstr "Impossible d'envoyer la sauvegarde vers Amazon S3! (%1$d) %2$s"
928
 
929
+ # @ backwpup
930
  #: job/dest_s3.php:37
931
  #, php-format
 
932
  msgid "S3 Bucket \"%s\" not exists!"
933
  msgstr "Panier S3 \"%s\" n'existe pas!"
934
 
935
+ # @ backwpup
936
+ #: job/dest_s3.php:40 job/dest_s3.php:69
937
  #, php-format
 
938
  msgid "Amazon API: %s"
939
  msgstr "Amazon API: %s"
940
 
941
+ # @ backwpup
942
  #: job/dest_s3.php:61
943
  #, php-format
 
944
  msgid "Can not delete backup on S3://%s"
945
  msgstr "Impossible d'effacer la sauvegarde sur S3://%s"
946
 
947
+ # @ backwpup
948
  #: job/dest_s3.php:64
949
  #, php-format
 
950
  msgid "One file deleted on S3 Bucket"
951
  msgid_plural "%d files deleted on S3 Bucket"
952
+ msgstr[0] "Un fichier supprimé sur S3 Bucket"
953
+ msgstr[1] "%d fichiers supprimés sur S3"
954
 
955
+ # @ backwpup
956
  #: job/dest_sugarsync.php:6
957
  #, php-format
 
958
  msgid "%d. try sending backup to SugarSync..."
959
  msgstr "%d. tentatives d'envoi de la sauvegarde vers SugarSync..."
960
 
961
+ # @ backwpup
962
  #: job/dest_sugarsync.php:15
963
  #, php-format
 
964
  msgid "Authed to SugarSync with Nick %s"
965
  msgstr "Authentifié chez SugarSync avec le pseudo %s"
966
 
967
+ # @ backwpup
968
  #: job/dest_sugarsync.php:19
 
969
  msgid "No free space left on SugarSync!!!"
970
  msgstr "Plus de place chez SugarSync!!!"
971
 
972
+ # @ backwpup
973
  #: job/dest_sugarsync.php:24
974
  #, php-format
 
975
  msgid "%s free on SugarSync"
976
  msgstr "%s de libre chez SugarSync"
977
 
978
+ # @ backwpup
979
  #: job/dest_sugarsync.php:31
 
980
  msgid "Upload to SugarSync now started... "
981
  msgstr "Envoi vers SugarSync commencé..."
982
 
983
+ # @ backwpup
984
  #: job/dest_sugarsync.php:39
 
985
  msgid "Can not transfer backup to SugarSync!"
986
  msgstr "Impossible de transférer la sauvegarde vers SugarSync!"
987
 
988
+ # @ backwpup
989
  #: job/dest_sugarsync.php:62
990
  #, php-format
 
991
  msgid "One file deleted on SugarSync folder"
992
  msgid_plural "%d files deleted on SugarSync folder"
993
+ msgstr[0] "Un fichier supprimé sur SugarSync"
994
+ msgstr[1] "%d fichiers supprimés sur SugarSync"
995
 
996
+ # @ backwpup
997
  #: job/dest_sugarsync.php:66
998
  #, php-format
 
999
  msgid "SugarSync API: %s"
1000
  msgstr "SugarSync API: %s"
1001
 
1002
+ # @ backwpup
1003
  #: job/file_list.php:5
1004
  #, php-format
 
1005
  msgid "%d. try for make list of files to backup...."
1006
  msgstr "%d. tentative de création de liste de fichiers à sauvegarder"
1007
 
1008
+ # @ backwpup
1009
  #: job/file_list.php:66
 
1010
  msgid "No files to backup"
1011
  msgstr "Aucun fichier à sauvegarder"
1012
 
1013
+ # @ backwpup
1014
  #: job/file_list.php:68
1015
  #, php-format
 
1016
  msgid "%1$d files with %2$s to backup"
1017
  msgstr "%1$d fichiers et %2$s à sauvegarder"
1018
 
1019
+ # @ backwpup
1020
  #: job/file_list.php:93
1021
  #, php-format
 
1022
  msgid "File or folder \"%s\" is not readable!"
1023
  msgstr "Le fichier ou le répertoire \"%s\" n'est pas accessible! "
1024
 
1025
+ # @ backwpup
1026
  #: job/file_list.php:95
1027
  #, php-format
 
1028
  msgid "Link \"%s\" not followed"
1029
  msgstr "Le lien \"%s\" n'a pas été suivi"
1030
 
1031
+ # @ backwpup
1032
  #: job/file_list.php:101
1033
  #, php-format
 
1034
  msgid "\"%s\" is not a file or directory"
1035
  msgstr "\"%s\" n'est ni un fichier ni un répertoire"
1036
 
1037
+ # @ backwpup
1038
+ #: job/job_functions.php:113
1039
  #, php-format
 
1040
  msgid "Memory increased from %1$s to %2$s"
1041
  msgstr "Mémoire augmentée de %1$s à %2$s"
1042
 
1043
+ # @ backwpup
1044
+ #: job/job_functions.php:115
1045
  #, php-format
 
1046
  msgid "Can not increase memory limit is %1$s"
1047
  msgstr "Impossible d'augmenter la mémoire la limite est de %1$s"
1048
 
1049
+ # @ backwpup
1050
+ #: job/job_functions.php:124
1051
  msgid "Set Blog to maintenance mode"
1052
  msgstr "Mettre le blog en mode maintenance"
1053
 
1054
+ # @ backwpup
1055
+ #: job/job_functions.php:138
1056
  msgid "Cannot set Blog to maintenance mode! Root folder is not writeable!"
1057
+ msgstr ""
1058
+ "Impossible de mettre le blog en mode maintenance! Le répertoire racine n'est "
1059
+ "pas inscriptible!"
1060
 
1061
+ # @ backwpup
1062
+ #: job/job_functions.php:141
1063
  msgid "Set Blog to normal mode"
1064
  msgstr "Mettre le blog en mode normal"
1065
 
1066
+ # @ backwpup
1067
+ #: job/job_functions.php:222
1068
  #, php-format
 
1069
  msgid "No MySQL connection: %s"
1070
  msgstr "Pas de connexion MySQL: %s"
1071
 
1072
+ # @ backwpup
1073
+ #: job/job_functions.php:237
1074
  #, php-format
 
1075
  msgid "No MySQL connection to database: %s"
1076
  msgstr "Pas de connexion MySQL à la base de données: %s"
1077
 
1078
+ # @ backwpup
1079
+ #: job/job_functions.php:261
1080
  msgid "[WARNING]"
1081
  msgstr "[AVERTISSEMENT]"
1082
 
1083
+ # @ backwpup
1084
+ #: job/job_functions.php:267
1085
  msgid "[ERROR]"
1086
  msgstr "[ERREUR]"
1087
 
1088
+ # @ backwpup
1089
+ #: job/job_functions.php:271
1090
  msgid "[DEPRECATED]"
1091
  msgstr "[DÉPRÉCIÉE]"
1092
 
1093
+ # @ backwpup
1094
+ #: job/job_functions.php:274
1095
  msgid "[STRICT NOTICE]"
1096
  msgstr "[SIMPLE NOTE]"
1097
 
1098
+ # @ backwpup
1099
+ #: job/job_functions.php:277
1100
  msgid "[RECOVERABLE ERROR]"
1101
  msgstr "[ERREUR RÉCUPÉRABLE]"
1102
 
1103
+ # @ backwpup
1104
+ #: job/job_functions.php:353
1105
  #, php-format
 
1106
  msgid "One old log deleted"
1107
  msgid_plural "%d old logs deleted"
1108
+ msgstr[0] "Un ancien fichier de trace supprimé"
1109
+ msgstr[1] "%d anciens fichiers de traces supprimés"
1110
 
1111
+ # @ backwpup
1112
+ #: job/job_functions.php:357
1113
  #, php-format
 
1114
  msgid "Job done in %s sec."
1115
  msgstr "Opération effectuée en %s sec."
1116
 
1117
+ # @ backwpup
1118
+ #: job/job_functions.php:471
1119
  #, php-format
 
1120
  msgid "BackWPup log from %1$s: %2$s"
1121
  msgstr "Fichier journal BackWPup du %1$s: %2$s"
1122
 
1123
+ # @ backwpup
1124
+ #: job/job_functions.php:498
1125
  #, php-format
 
1126
  msgid "Signal %d send to script!"
1127
  msgstr "Signal %d envoyé au script!"
1128
 
1129
+ # @ backwpup
1130
+ #: job/job_functions.php:518
1131
  msgid "Can not restart on alternate cron...."
1132
  msgstr "Ne peut redémarrer avec un cron alternatif..."
1133
 
1134
+ # @ backwpup
1135
+ #: job/job_functions.php:520
1136
  msgid "To many restarts...."
1137
  msgstr "Trop de redémarrages..."
1138
 
1139
+ # @ backwpup
1140
+ #: job/job_functions.php:541
1141
  msgid "Script stop! Will started again now!"
1142
  msgstr "Arrêt du script! Redémarrage maintenant !"
1143
 
1144
+ # @ backwpup
 
 
 
 
1145
  #: job/job_run.php:72
1146
+ msgid "Job restart terminated, because old job runs again!"
1147
+ msgstr ""
1148
+ "Redémarrage de l'opération interrompu, car d'autres opérations sont en cours!"
1149
+
1150
+ # @ backwpup
1151
+ #: job/job_run.php:75
1152
+ msgid "Job restarted, because inactivity!"
1153
  msgstr "Opération relancée car inactive!"
1154
 
1155
+ # @ backwpup
1156
+ #: job/job_run.php:77
1157
  #, php-format
1158
+ msgid "Second Process is running, because old job runs! Start type is %s"
 
1159
  msgstr ""
1160
+ "Un deuxième processus est lancé parceque des anciens fonctionnent toujours! "
1161
+ "Le type de lancement est %s"
1162
 
1163
+ # @ backwpup
1164
+ #: job/job_run.php:105
1165
  #, php-format
 
1166
  msgid "Can not find job step file: %s"
1167
+ msgstr "Impossible de trouver le fichier : %s"
1168
 
1169
+ # @ default
1170
+ #: job/job_run.php:113
1171
  #, php-format
1172
+ msgid ""
1173
+ "[INFO]: BackWPup version %1$s; WordPress version %4$s; Copyright &copy; %2$s "
1174
+ "%3$s"
1175
  msgstr ""
1176
+ "[INFO]: BackWPup version %1$s, WordPress version %4$s Copyright &copy; %2$s "
1177
+ "%3$s"
1178
 
1179
+ # @ backwpup
1180
+ #: job/job_run.php:114
1181
+ msgid ""
1182
+ "[INFO]: BackWPup comes with ABSOLUTELY NO WARRANTY. This is free software, "
1183
+ "and you are welcome to redistribute it under certain conditions."
1184
+ msgstr ""
1185
+ "[INFO]: BackWPup n'est accompagné d'AUCUNE GARANTIE. C'est un logiciel "
1186
+ "libre, et vous êtes libre de le redistribuer sous certaines conditions."
1187
 
1188
+ # @ backwpup
1189
+ #: job/job_run.php:115
1190
  msgid "[INFO]: BackWPup job:"
1191
  msgstr "[INFO]: BackWPup opération:"
1192
 
1193
+ # @ backwpup
1194
+ #: job/job_run.php:117
1195
  msgid "[INFO]: BackWPup cron:"
1196
  msgstr "[INFO]: BackWPup cron:"
1197
 
1198
+ # @ backwpup
1199
+ #: job/job_run.php:119
1200
  msgid "[INFO]: BackWPup job started by cron"
1201
  msgstr "[INFO]: Opération BackWPup démarrée par cron"
1202
 
1203
+ # @ backwpup
1204
+ #: job/job_run.php:121
1205
  msgid "[INFO]: BackWPup job started manualy"
1206
  msgstr "[INFO]: Opération BackWPup démarrée manuellement"
1207
 
1208
+ # @ backwpup
1209
+ #: job/job_run.php:122
1210
  msgid "[INFO]: PHP ver.:"
1211
  msgstr "[INFO]: version PHP:"
1212
 
1213
+ # @ backwpup
1214
+ #: job/job_run.php:124
1215
  #, php-format
 
1216
  msgid "[INFO]: PHP Safe mode is ON! Maximum script execution time is %1$d sec."
1217
+ msgstr ""
1218
+ "[INFO]: Le mode safe de PHP est activé! Temps d’exécution maximum d'un "
1219
+ "script: %1$d sec. "
1220
 
1221
+ # @ backwpup
1222
+ #: job/job_run.php:125
1223
  msgid "[INFO]: MySQL ver.:"
1224
  msgstr "[INFO]: Version MySQL:"
1225
 
1226
+ # @ backwpup
1227
+ #: job/job_run.php:128
1228
  msgid "[INFO]: curl ver.:"
1229
  msgstr "[INFO]: Version curl:"
1230
 
1231
+ # @ backwpup
1232
+ #: job/job_run.php:130
1233
  msgid "[INFO]: Temp folder is:"
1234
  msgstr "[INFO]: Répertoire temporaire:"
1235
 
1236
+ # @ backwpup
1237
+ #: job/job_run.php:132
1238
  msgid "[INFO]: Backup file is:"
1239
  msgstr "[INFO]: Fichier sauvegarde:"
1240
 
1241
+ # @ backwpup
1242
+ #: job/job_run.php:143
1243
  msgid "No destination defineid for backup!!! Please correct job settings"
1244
+ msgstr ""
1245
+ "Pas de cible définie pour la sauvegarde! Veuillez corriger les paramètres de "
1246
+ "l'opération."
1247
 
1248
+ # @ backwpup
1249
+ #: job/job_run.php:165
1250
  msgid "Step arborted has too many trys!"
1251
  msgstr "Étape abandonnée, trop de tentatives!"
1252
 
1253
+ # @ backwpup
1254
+ #: job/job_run.php:167
1255
  #, php-format
 
1256
  msgid "Can not find job step function %s!"
1257
  msgstr "Impossible de trouver la fonction %s de l'opération!"
1258
 
1259
+ # @ backwpup
1260
  #: job/job_start.php:10
 
1261
  msgid "A job already running!"
1262
  msgstr "Une opération est déjà en cours!"
1263
 
1264
+ # @ backwpup
1265
  #: job/job_start.php:20
 
1266
  msgid "Temp dir not writeable"
1267
  msgstr "Répertoire temporaire inaccessible"
1268
 
1269
+ # @ backwpup
1270
+ #: job/job_start.php:102
1271
  #, php-format
 
1272
  msgid "Can not create folder for log files: %s"
1273
  msgstr "Impossible de créer le répertoire des fichiers journaux: %s!"
1274
 
1275
+ # @ backwpup
1276
+ #: job/job_start.php:113
1277
  msgid "Log folder not writeable!"
1278
  msgstr "Répertoire des fichiers journaux inaccessible!"
1279
 
1280
+ # @ backwpup
1281
+ #: job/job_start.php:138
1282
  #, php-format
 
1283
  msgid "BackWPup log for %1$s from %2$s at %3$s"
1284
  msgstr "Fichier journal BackWPup pour %1$s de %2$s à %3$s"
1285
 
1286
+ # @ backwpup
1287
+ #: job/job_start.php:166
1288
  #, php-format
 
1289
  msgid "Can not create folder for backups: %1$s"
1290
  msgstr "Impossible de créer le répertoire des sauvegardes: %1$s"
1291
 
1292
+ # @ backwpup
1293
+ #: job/job_start.php:178
1294
  msgid "Backup folder not writeable!"
1295
  msgstr "Répertoire des sauvegardes inaccessible!"
1296
 
1297
+ # @ backwpup
1298
  #: job/wp_export.php:11
1299
  #, php-format
 
1300
  msgid "%d. try for wordpress export to XML file..."
1301
  msgstr "%d. tentative d'export au format XML WordPress..."
1302
 
1303
+ # @ backwpup
1304
+ #: job/wp_export.php:38 job/wp_export.php:40
 
1305
  msgid "cURL:"
1306
  msgstr "cURL"
1307
 
1308
+ # @ backwpup
1309
  #: job/wp_export.php:81
1310
  #, php-format
 
1311
  msgid "Add XML export \"%1$s\" to backup list with %2$s"
1312
+ msgstr ""
1313
+ "Ajout du fichier XML \"%1$s\" à la liste des fichiers à sauvegarder avec %2$s"
1314
 
1315
+ # @ backwpup
1316
+ #: pages/func_backwpup.php:44
1317
  msgid "No Jobs."
1318
  msgstr "Aucune opération."
1319
 
1320
+ # @ default
1321
+ # @ backwpup
1322
+ #: pages/func_backwpup.php:49 pages/func_backwpup.php:105
 
1323
  msgid "Export"
1324
  msgstr "Exporter"
1325
 
1326
+ # @ default
1327
+ # @ backwpup
1328
+ #: pages/func_backwpup.php:50 pages/func_backwpup.php:106
1329
+ #: pages/func_backwpupbackups.php:130 pages/func_backwpupbackups.php:227
1330
+ #: pages/func_backwpupeditjob.php:25 pages/func_backwpuplogs.php:76
1331
+ #: pages/func_backwpuplogs.php:130
 
 
 
1332
  msgid "Delete"
1333
  msgstr "Effacer"
1334
 
1335
+ # @ backwpup
1336
+ #: pages/func_backwpup.php:58
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
+ # @ backwpup
1341
+ #: pages/func_backwpup.php:59
1342
  msgid "Job Name"
1343
  msgstr "Nom de l'opération"
1344
 
1345
+ # @ backwpup
1346
+ #: pages/func_backwpup.php:60 pages/func_backwpupeditjob.php:171
1347
+ #: pages/func_backwpuplogs.php:84
 
1348
  msgid "Type"
1349
  msgstr "Type"
1350
 
1351
+ # @ backwpup
1352
+ #: pages/func_backwpup.php:61
1353
  msgid "Information"
1354
  msgstr "Information"
1355
 
1356
+ # @ backwpup
1357
+ #: pages/func_backwpup.php:62
1358
  msgid "Next Run"
1359
  msgstr "Prochain exécution"
1360
 
1361
+ # @ backwpup
1362
+ #: pages/func_backwpup.php:63
1363
  msgid "Last Run"
1364
  msgstr "Dernière exécution"
1365
 
1366
+ # @ backwpup
1367
+ #: pages/func_backwpup.php:100
1368
  msgid "Edit:"
1369
  msgstr "Modifier:"
1370
 
1371
+ # @ default
1372
+ #: pages/func_backwpup.php:103
1373
  msgid "Edit"
1374
+ msgstr "Modifier"
1375
 
1376
+ # @ backwpup
1377
+ #: pages/func_backwpup.php:104
1378
  msgid "Copy"
1379
  msgstr "Copier"
1380
 
1381
+ # @ backwpup
1382
+ #: pages/func_backwpup.php:107
1383
  msgid "Run Now"
1384
  msgstr "Lancer maintenant"
1385
 
1386
+ # @ backwpup
1387
+ #: pages/func_backwpup.php:131
1388
  msgid "Running since:"
1389
  msgstr "En cours depuis:"
1390
 
1391
+ # @ backwpup
1392
+ #: pages/func_backwpup.php:131 pages/func_backwpup.php:147
1393
+ #: pages/func_backwpuplogs.php:156
 
1394
  msgid "sec."
1395
  msgstr "sec."
1396
 
1397
+ # @ backwpup
1398
+ #: pages/func_backwpup.php:135
1399
  msgid "Inactive"
1400
  msgstr "Inactive"
1401
 
1402
+ # @ backwpup
1403
+ #: pages/func_backwpup.php:138
1404
  msgid "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
1405
  msgstr "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
1406
 
1407
+ # @ backwpup
1408
+ #: pages/func_backwpup.php:147
1409
  msgid "Runtime:"
1410
  msgstr "Temps d'exécution:"
1411
 
1412
+ # @ backwpup
1413
+ #: pages/func_backwpup.php:149
1414
  msgid "None"
1415
  msgstr "Aucune"
1416
 
1417
+ # @ backwpup
1418
+ #: pages/func_backwpup.php:152
1419
  msgid "Download last Backup"
1420
  msgstr "Télécharger la dernière sauvegarde"
1421
 
1422
+ # @ backwpup
1423
+ #: pages/func_backwpup.php:152 pages/func_backwpupbackups.php:228
1424
+ #: pages/func_backwpuplogs.php:131
 
1425
  msgid "Download"
1426
  msgstr "Télécharger"
1427
 
1428
+ # @ backwpup
1429
+ #: pages/func_backwpup.php:154
1430
  msgid "View last Log"
1431
  msgstr "Voir le dernier fichier journal"
1432
 
1433
+ # @ backwpup
1434
+ #: pages/func_backwpup.php:154
1435
  msgid "Log"
1436
  msgstr "Fichier journal"
1437
 
1438
+ # @ backwpup
1439
+ #: pages/func_backwpup.php:243
1440
  msgid "DB Size:"
1441
  msgstr "Taille de la B.D:"
1442
 
1443
+ # @ backwpup
1444
+ #: pages/func_backwpup.php:245
1445
  msgid "DB Tables:"
1446
  msgstr "Tables de la B.D:"
1447
 
1448
+ # @ backwpup
1449
+ #: pages/func_backwpup.php:246
1450
  msgid "DB Rows:"
1451
  msgstr "Colonnes de la D.B:"
1452
 
1453
+ # @ backwpup
1454
+ #: pages/func_backwpup.php:251
1455
  msgid "Files Size:"
1456
  msgstr "Taille des fichiers:"
1457
 
1458
+ # @ backwpup
1459
+ #: pages/func_backwpup.php:253
1460
  msgid "Files count:"
1461
  msgstr "Nombre de fichiers:"
1462
 
1463
+ # @ backwpup
1464
  #: pages/func_backwpupbackups.php:125
 
1465
  msgid "No Files found."
1466
  msgstr "Aucun fichier trouvé."
1467
 
1468
+ # @ backwpup
1469
  #: pages/func_backwpupbackups.php:145
 
1470
  msgid "Change Destination"
1471
  msgstr "Modifier la destination"
1472
 
1473
+ # @ backwpup
1474
  #: pages/func_backwpupbackups.php:182
 
1475
  msgid "File"
1476
  msgstr "Fichier"
1477
 
1478
+ # @ backwpup
1479
+ #: pages/func_backwpupbackups.php:183 pages/func_backwpupbackups.php:185
 
1480
  msgid "Folder"
1481
  msgstr "Répertoire"
1482
 
1483
+ # @ backwpup
1484
+ #: pages/func_backwpupbackups.php:184 pages/func_backwpuplogs.php:87
 
1485
  msgid "Size"
1486
  msgstr "Taille"
1487
 
1488
+ # @ backwpup
1489
  #: pages/func_backwpupbackups.php:186
 
1490
  msgid "Time"
1491
  msgstr "Heure"
1492
 
1493
+ # @ backwpup
1494
  #: pages/func_backwpupbackups.php:227
 
1495
  msgid ""
1496
  "You are about to delete this Backup Archive. \n"
1497
  " 'Cancel' to stop, 'OK' to delete."
1499
  "Vous allez effacer cette archive sauvegarde. \n"
1500
  " 'Annuler' pour arrêter, 'OK' pour effacer."
1501
 
1502
+ # @ backwpup
1503
  #: pages/func_backwpupbackups.php:242
 
1504
  msgid "?"
1505
  msgstr "?"
1506
 
1507
+ # @ backwpup
1508
+ #: pages/func_backwpupbackups.php:492 pages/header_backwpupbackups.php:140
 
1509
  msgid "Login failure!"
1510
  msgstr "Échec d'authentification!"
1511
 
1512
+ # @ backwpup
1513
  #: pages/func_backwpupeditjob.php:18
 
1514
  msgid "PHP curl functions not available! Most backup destinations deaktivated!"
1515
+ msgstr ""
1516
+ "La fonction PHP curl n'est pas disponible! La plupart des destinations de "
1517
+ "sauvegarde ont été désactivées!"
1518
 
1519
+ # @ backwpup
1520
  #: pages/func_backwpupeditjob.php:25
 
1521
  msgid ""
1522
  "You are about to delete this Job. \n"
1523
  " 'Cancel' to stop, 'OK' to delete."
1525
  "Vous allez effacer cette opération. \n"
1526
  " 'Annuler' pour arrêter, 'OK' pour effacer."
1527
 
1528
+ # @ backwpup
1529
  #: pages/func_backwpupeditjob.php:28
 
1530
  msgid "Save Changes"
1531
  msgstr "Sauvegarder les changements"
1532
 
1533
+ # @ backwpup
1534
  #: pages/func_backwpupeditjob.php:38
 
1535
  msgid "File Prefix:"
1536
  msgstr "Préfixe du fichier:"
1537
 
1538
+ # @ backwpup
1539
  #: pages/func_backwpupeditjob.php:40
 
1540
  msgid "File Formart:"
1541
  msgstr "Format du fichier:"
1542
 
1543
+ # @ backwpup
1544
+ #: pages/func_backwpupeditjob.php:43 pages/func_backwpupeditjob.php:45
 
1545
  msgid "Zip"
1546
  msgstr "Zip"
1547
 
1548
+ # @ backwpup
1549
  #: pages/func_backwpupeditjob.php:46
 
1550
  msgid "Tar"
1551
  msgstr "Tar"
1552
 
1553
+ # @ backwpup
1554
+ #: pages/func_backwpupeditjob.php:48 pages/func_backwpupeditjob.php:50
 
1555
  msgid "Tar GZip"
1556
  msgstr "Tar GZip"
1557
 
1558
+ # @ backwpup
1559
+ #: pages/func_backwpupeditjob.php:52 pages/func_backwpupeditjob.php:54
 
1560
  msgid "Tar BZip2"
1561
  msgstr "Tar BZip2"
1562
 
1563
+ # @ backwpup
1564
  #: pages/func_backwpupeditjob.php:55
 
1565
  msgid "Preview:"
1566
  msgstr "Prévisualisation:"
1567
 
1568
+ # @ backwpup
1569
  #: pages/func_backwpupeditjob.php:60
 
1570
  msgid "E-Mail-Adress:"
1571
  msgstr "Adresse E-Mail:"
1572
 
1573
+ # @ backwpup
1574
  #: pages/func_backwpupeditjob.php:62
 
1575
  msgid "Only send an e-mail if there are errors."
1576
  msgstr "N'envoyer un e-mail qu'en cas d'erreurs."
1577
 
1578
+ # @ backwpup
1579
  #: pages/func_backwpupeditjob.php:91
 
1580
  msgid "Activate scheduling"
1581
  msgstr "Activer la programmation"
1582
 
1583
+ # @ backwpup
1584
  #: pages/func_backwpupeditjob.php:92
 
1585
  msgid "advanced"
1586
  msgstr "avancés"
1587
 
1588
+ # @ backwpup
1589
  #: pages/func_backwpupeditjob.php:93
 
1590
  msgid "basic"
1591
  msgstr "basique"
1592
 
1593
+ # @ backwpup
1594
  #: pages/func_backwpupeditjob.php:97
 
1595
  msgid "Minutes: "
1596
  msgstr "Minutes:"
1597
 
1598
+ # @ backwpup
1599
+ #: pages/func_backwpupeditjob.php:99 pages/func_backwpupeditjob.php:111
1600
+ #: pages/func_backwpupeditjob.php:122 pages/func_backwpupeditjob.php:133
 
1601
  #: pages/func_backwpupeditjob.php:153
 
1602
  msgid "Any (*)"
1603
  msgstr "Toutes (*)"
1604
 
1605
+ # @ backwpup
1606
  #: pages/func_backwpupeditjob.php:108
 
1607
  msgid "Hours:"
1608
  msgstr "Heures:"
1609
 
1610
+ # @ backwpup
1611
  #: pages/func_backwpupeditjob.php:120
 
1612
  msgid "Day of Month:"
1613
  msgstr "Jour dans le mois:"
1614
 
1615
+ # @ backwpup
1616
  #: pages/func_backwpupeditjob.php:131
 
1617
  msgid "Month:"
1618
  msgstr "Mois:"
1619
 
1620
+ # @ backwpup
1621
  #: pages/func_backwpupeditjob.php:135
 
1622
  msgid "January"
1623
  msgstr "Janvier"
1624
 
1625
+ # @ backwpup
1626
  #: pages/func_backwpupeditjob.php:136
 
1627
  msgid "February"
1628
  msgstr "Février"
1629
 
1630
+ # @ backwpup
1631
  #: pages/func_backwpupeditjob.php:137
 
1632
  msgid "March"
1633
  msgstr "Mars"
1634
 
1635
+ # @ backwpup
1636
  #: pages/func_backwpupeditjob.php:138
 
1637
  msgid "April"
1638
  msgstr "Avril"
1639
 
1640
+ # @ backwpup
1641
  #: pages/func_backwpupeditjob.php:139
 
1642
  msgid "May"
1643
  msgstr "Mai"
1644
 
1645
+ # @ backwpup
1646
  #: pages/func_backwpupeditjob.php:140
 
1647
  msgid "June"
1648
  msgstr "Juin"
1649
 
1650
+ # @ backwpup
1651
  #: pages/func_backwpupeditjob.php:141
 
1652
  msgid "July"
1653
  msgstr "Juillet"
1654
 
1655
+ # @ backwpup
1656
  #: pages/func_backwpupeditjob.php:142
 
1657
  msgid "Augest"
1658
  msgstr "Août"
1659
 
1660
+ # @ backwpup
1661
  #: pages/func_backwpupeditjob.php:143
 
1662
  msgid "September"
1663
  msgstr "Septembre"
1664
 
1665
+ # @ backwpup
1666
  #: pages/func_backwpupeditjob.php:144
 
1667
  msgid "October"
1668
  msgstr "Octobre"
1669
 
1670
+ # @ backwpup
1671
  #: pages/func_backwpupeditjob.php:145
 
1672
  msgid "November"
1673
  msgstr "Novembre"
1674
 
1675
+ # @ backwpup
1676
  #: pages/func_backwpupeditjob.php:146
 
1677
  msgid "December"
1678
  msgstr "Décembre"
1679
 
1680
+ # @ backwpup
1681
  #: pages/func_backwpupeditjob.php:151
 
1682
  msgid "Day of Week:"
1683
  msgstr "Jour de la semaine:"
1684
 
1685
+ # @ backwpup
1686
+ #: pages/func_backwpupeditjob.php:155 pages/func_backwpupeditjob.php:191
 
1687
  msgid "Sunday"
1688
  msgstr "Dimanche"
1689
 
1690
+ # @ backwpup
1691
+ #: pages/func_backwpupeditjob.php:156 pages/func_backwpupeditjob.php:192
 
1692
  msgid "Monday"
1693
  msgstr "Lundi"
1694
 
1695
+ # @ backwpup
1696
+ #: pages/func_backwpupeditjob.php:157 pages/func_backwpupeditjob.php:193
 
1697
  msgid "Tuesday"
1698
  msgstr "Mardi"
1699
 
1700
+ # @ backwpup
1701
+ #: pages/func_backwpupeditjob.php:158 pages/func_backwpupeditjob.php:194
 
1702
  msgid "Wednesday"
1703
  msgstr "Mercredi"
1704
 
1705
+ # @ backwpup
1706
+ #: pages/func_backwpupeditjob.php:159 pages/func_backwpupeditjob.php:195
 
1707
  msgid "Thursday"
1708
  msgstr "Jeudi"
1709
 
1710
+ # @ backwpup
1711
+ #: pages/func_backwpupeditjob.php:160 pages/func_backwpupeditjob.php:196
 
1712
  msgid "Friday"
1713
  msgstr "Vendredi"
1714
 
1715
+ # @ backwpup
1716
+ #: pages/func_backwpupeditjob.php:161 pages/func_backwpupeditjob.php:197
 
1717
  msgid "Saturday"
1718
  msgstr "Samedi"
1719
 
1720
+ # @ backwpup
1721
  #: pages/func_backwpupeditjob.php:176
 
1722
  msgid "Hour"
1723
  msgstr "Heure"
1724
 
1725
+ # @ backwpup
1726
  #: pages/func_backwpupeditjob.php:179
 
1727
  msgid "Minute"
1728
  msgstr "Minute"
1729
 
1730
+ # @ backwpup
1731
  #: pages/func_backwpupeditjob.php:183
 
1732
  msgid "monthly"
1733
  msgstr "Mensuelle"
1734
 
1735
+ # @ backwpup
1736
  #: pages/func_backwpupeditjob.php:184
 
1737
  msgid "on"
1738
  msgstr "le"
1739
 
1740
+ # @ backwpup
1741
  #: pages/func_backwpupeditjob.php:189
 
1742
  msgid "weekly"
1743
  msgstr "Hebdomadaire"
1744
 
1745
+ # @ backwpup
1746
  #: pages/func_backwpupeditjob.php:203
 
1747
  msgid "daily"
1748
  msgstr "Quotidien"
1749
 
1750
+ # @ backwpup
1751
  #: pages/func_backwpupeditjob.php:209
 
1752
  msgid "hourly"
1753
  msgstr "Toutes les heures"
1754
 
1755
+ # @ backwpup
1756
  #: pages/func_backwpupeditjob.php:221
 
1757
  msgid "Full Path to folder for Backup Files:"
1758
  msgstr "Chemin complet vers le répertoire des sauvegardes:"
1759
 
1760
+ # @ backwpup
1761
  #: pages/func_backwpupeditjob.php:223
 
1762
  msgid "Your WordPress dir is:"
1763
  msgstr "Votre répertoire WordPress est:"
1764
 
1765
+ # @ backwpup
1766
+ #: pages/func_backwpupeditjob.php:224 pages/func_backwpupeditjob.php:415
 
1767
  msgid "Max. backup files in folder:"
1768
  msgstr "Nombre de fichiers sauvegarde dans le répertoire:"
1769
 
1770
+ # @ backwpup
1771
+ #: pages/func_backwpupeditjob.php:224 pages/page_backwpupsettings.php:90
 
1772
  msgid "(Oldest files will deleted first.)"
1773
  msgstr "(Les plus vieux seront effacés en premier.)"
1774
 
1775
+ # @ backwpup
1776
  #: pages/func_backwpupeditjob.php:230
 
1777
  msgid "Hostname:"
1778
  msgstr "Hostname:"
1779
 
1780
+ # @ backwpup
1781
+ #: pages/func_backwpupeditjob.php:232 pages/page_backwpupsettings.php:52
 
1782
  msgid "Port:"
1783
  msgstr "Port:"
1784
 
1785
+ # @ backwpup
1786
+ #: pages/func_backwpupeditjob.php:234 pages/func_backwpupeditjob.php:325
1787
  #: pages/page_backwpupsettings.php:139
 
1788
  msgid "Username:"
1789
  msgstr "Nom d'utilisateur:"
1790
 
1791
+ # @ backwpup
1792
+ #: pages/func_backwpupeditjob.php:236 pages/func_backwpupeditjob.php:378
1793
  #: pages/page_backwpupsettings.php:144
 
1794
  msgid "Password:"
1795
  msgstr "Mot de passe:"
1796
 
1797
+ # @ backwpup
1798
  #: pages/func_backwpupeditjob.php:238
 
1799
  msgid "Folder on Server:"
1800
  msgstr "Répertoire sur le serveur:"
1801
 
1802
+ # @ backwpup
1803
  #: pages/func_backwpupeditjob.php:241
 
1804
  msgid "Max. backup files in FTP folder:"
1805
  msgstr "Nombre de fichiers sauvegarde maximum dans le répertoire FTP:"
1806
 
1807
+ # @ backwpup
1808
+ #: pages/func_backwpupeditjob.php:241 pages/func_backwpupeditjob.php:260
1809
+ #: pages/func_backwpupeditjob.php:285 pages/func_backwpupeditjob.php:312
1810
+ #: pages/func_backwpupeditjob.php:335 pages/func_backwpupeditjob.php:362
1811
+ #: pages/func_backwpupeditjob.php:416
 
 
 
1812
  msgid "(Oldest files will be deleted first.)"
1813
  msgstr "(Les plus vieux seront effacés en premier.)"
1814
 
1815
+ # @ backwpup
1816
  #: pages/func_backwpupeditjob.php:242
 
1817
  msgid "Use SSL-FTP Connection."
1818
  msgstr "Utiliser une xonnexion SSL-FTP"
1819
 
1820
+ # @ backwpup
1821
  #: pages/func_backwpupeditjob.php:243
1822
+ msgid "Use FTP Passive mode."
 
1823
  msgstr "Utiliser une connexion FTP en mode passif."
1824
 
1825
+ # @ backwpup
1826
  #: pages/func_backwpupeditjob.php:250
 
1827
  msgid "Access Key ID:"
1828
  msgstr "ID clé d'accès:"
1829
 
1830
+ # @ backwpup
1831
  #: pages/func_backwpupeditjob.php:252
 
1832
  msgid "Secret Access Key:"
1833
  msgstr "Clé d'accès secrète:"
1834
 
1835
+ # @ backwpup
1836
+ #: pages/func_backwpupeditjob.php:254 pages/func_backwpupeditjob.php:279
 
1837
  msgid "Bucket:"
1838
  msgstr "Panier:"
1839
 
1840
+ # @ backwpup
1841
+ #: pages/func_backwpupeditjob.php:257 pages/func_backwpupeditjob.php:282
 
1842
  msgid "Create bucket:"
1843
  msgstr "Créer un panier:"
1844
 
1845
+ # @ backwpup
1846
  #: pages/func_backwpupeditjob.php:257
 
1847
  msgid "Bucket Region"
1848
  msgstr "Région du panier:"
1849
 
1850
+ # @ backwpup
1851
  #: pages/func_backwpupeditjob.php:257
 
1852
  msgid "US-Standard (Northern Virginia & Washington State)"
1853
  msgstr "US-Standard (Northern Virginia & Washington State)"
1854
 
1855
+ # @ backwpup
1856
  #: pages/func_backwpupeditjob.php:257
 
1857
  msgid "US-West 1 (Northern California)"
1858
  msgstr "US-West 1 (Northern California)"
1859
 
1860
+ # @ backwpup
1861
  #: pages/func_backwpupeditjob.php:257
 
1862
  msgid "US-West 2 (Oregon)"
1863
  msgstr "US-West 2 (Oregon)"
1864
 
1865
+ # @ backwpup
1866
  #: pages/func_backwpupeditjob.php:257
 
1867
  msgid "EU (Ireland)"
1868
  msgstr "EU (Ireland)"
1869
 
1870
+ # @ backwpup
1871
  #: pages/func_backwpupeditjob.php:257
 
1872
  msgid "Asia Pacific (Singapore)"
1873
  msgstr "Asia Pacific (Singapore)"
1874
 
1875
+ # @ backwpup
1876
  #: pages/func_backwpupeditjob.php:257
 
1877
  msgid "Asia Pacific (Japan)"
1878
  msgstr "Asia Pacific (Japan)"
1879
 
1880
+ # @ backwpup
1881
  #: pages/func_backwpupeditjob.php:257
 
1882
  msgid "South America (Sao Paulo)"
1883
  msgstr "South America (Sao Paulo)"
1884
 
1885
+ # @ backwpup
1886
  #: pages/func_backwpupeditjob.php:257
 
1887
  msgid "United States GovCloud"
1888
  msgstr "United States GovCloud"
1889
 
1890
+ # @ backwpup
1891
  #: pages/func_backwpupeditjob.php:257
 
1892
  msgid "United States GovCloud FIPS 140-2"
1893
  msgstr "United States GovCloud FIPS 140-2"
1894
 
1895
+ # @ backwpup
1896
+ #: pages/func_backwpupeditjob.php:258 pages/func_backwpupeditjob.php:283
 
1897
  msgid "Folder in bucket:"
1898
  msgstr "Répertoire dans le panier:"
1899
 
1900
+ # @ backwpup
1901
+ #: pages/func_backwpupeditjob.php:260 pages/func_backwpupeditjob.php:285
 
1902
  msgid "Max. backup files in bucket folder:"
1903
  msgstr "Nombre maximum de fichiers de sauvegarde dans le répertoire du panier:"
1904
 
1905
+ # @ backwpup
1906
  #: pages/func_backwpupeditjob.php:261
 
1907
  msgid "Save Backups with reduced redundancy!"
1908
  msgstr "Sauvegarder en réduisant la redondance!"
1909
 
1910
+ # @ backwpup
1911
+ #: pages/func_backwpupeditjob.php:264 pages/func_backwpupeditjob.php:288
1912
+ #: pages/func_backwpupeditjob.php:315 pages/func_backwpupeditjob.php:338
1913
+ #: pages/func_backwpupeditjob.php:365 pages/func_backwpupeditjob.php:420
 
 
 
1914
  msgid "Create Account"
1915
  msgstr "Créer un compte"
1916
 
1917
+ # @ backwpup
1918
+ #: pages/func_backwpupeditjob.php:265 pages/func_backwpupeditjob.php:289
 
1919
  msgid "Find Keys"
1920
  msgstr "Trouver vos clés"
1921
 
1922
+ # @ backwpup
1923
+ #: pages/func_backwpupeditjob.php:266 pages/func_backwpupeditjob.php:290
1924
+ #: pages/func_backwpupeditjob.php:340 pages/func_backwpupeditjob.php:366
1925
+ #: pages/func_backwpupeditjob.php:421
 
 
1926
  msgid "Webinterface"
1927
  msgstr "Interface Web"
1928
 
1929
+ # @ backwpup
1930
+ #: pages/func_backwpupeditjob.php:275 pages/func_backwpupeditjob.php:304
 
1931
  msgid "Access Key:"
1932
  msgstr "Clé d'accès:"
1933
 
1934
+ # @ backwpup
1935
  #: pages/func_backwpupeditjob.php:277
 
1936
  msgid "Secret:"
1937
  msgstr "Scret:"
1938
 
1939
+ # @ backwpup
1940
  #: pages/func_backwpupeditjob.php:300
 
1941
  msgid "Host:"
1942
  msgstr "Hôte:"
1943
 
1944
+ # @ backwpup
1945
  #: pages/func_backwpupeditjob.php:301
 
1946
  msgid "Normely: blob.core.windows.net"
1947
  msgstr "Normalement: blob.core.windows.net"
1948
 
1949
+ # @ backwpup
1950
  #: pages/func_backwpupeditjob.php:302
 
1951
  msgid "Account Name:"
1952
  msgstr "Nom du compte:"
1953
 
1954
+ # @ backwpup
1955
+ #: pages/func_backwpupeditjob.php:306 pages/func_backwpupeditjob.php:329
 
1956
  msgid "Container:"
1957
  msgstr "Récipient:"
1958
 
1959
+ # @ backwpup
1960
+ #: pages/func_backwpupeditjob.php:309 pages/func_backwpupeditjob.php:332
 
1961
  msgid "Create Container:"
1962
  msgstr "Créer récipient:"
1963
 
1964
+ # @ backwpup
1965
  #: pages/func_backwpupeditjob.php:310
 
1966
  msgid "Folder in Container:"
1967
  msgstr "Répertoire dans le récipient:"
1968
 
1969
+ # @ backwpup
1970
+ #: pages/func_backwpupeditjob.php:312 pages/func_backwpupeditjob.php:335
 
1971
  msgid "Max. backup files in container folder:"
1972
  msgstr "Nombre max de fichiers sauvegarde dans le répertoire récipient:"
1973
 
1974
+ # @ backwpup
1975
+ #: pages/func_backwpupeditjob.php:316 pages/func_backwpupeditjob.php:339
 
1976
  msgid "Find Key"
1977
  msgstr "Trouver vos clés"
1978
 
1979
+ # @ backwpup
1980
  #: pages/func_backwpupeditjob.php:327
 
1981
  msgid "API Key:"
1982
  msgstr "Clé API:"
1983
 
1984
+ # @ backwpup
1985
  #: pages/func_backwpupeditjob.php:333
 
1986
  msgid "Folder in container:"
1987
  msgstr "Répertoire dans le récipient:"
1988
 
1989
+ # @ backwpup
1990
+ #: pages/func_backwpupeditjob.php:349 pages/func_backwpupeditjob.php:385
1991
  msgid "Login:"
1992
  msgstr "Login:"
1993
 
1994
+ # @ backwpup
1995
  #: pages/func_backwpupeditjob.php:351
 
1996
  msgid "Not authenticated!"
1997
  msgstr "Non authentifié!"
1998
 
1999
+ # @ backwpup
2000
  #: pages/func_backwpupeditjob.php:351
 
2001
  msgid "Authenticate!"
2002
  msgstr "Enregistrez-vous!"
2003
 
2004
+ # @ backwpup
2005
+ #: pages/func_backwpupeditjob.php:353 pages/func_backwpupeditjob.php:386
2006
  msgid "Authenticated!"
2007
  msgstr "Enregistré!"
2008
 
2009
+ # @ backwpup
2010
  #: pages/func_backwpupeditjob.php:353
 
2011
  msgid "Delete!"
2012
  msgstr "Effacer!"
2013
 
2014
+ # @ backwpup
2015
+ #: pages/func_backwpupeditjob.php:355 pages/func_backwpupeditjob.php:389
 
2016
  msgid "Root:"
2017
  msgstr "Racine:"
2018
 
2019
+ # @ backwpup
2020
  #: pages/func_backwpupeditjob.php:357
 
2021
  msgid "dropbox"
2022
  msgstr "DropBox"
2023
 
2024
+ # @ backwpup
2025
  #: pages/func_backwpupeditjob.php:358
 
2026
  msgid "sandbox (disabled by DropBox)"
2027
  msgstr "Bac à sable (désactivé par DropBox)"
2028
 
2029
+ # @ backwpup
2030
+ #: pages/func_backwpupeditjob.php:360 pages/func_backwpupeditjob.php:413
 
2031
  msgid "Folder:"
2032
  msgstr "Répertoire"
2033
 
2034
+ # @ backwpup
2035
  #: pages/func_backwpupeditjob.php:362
 
2036
  msgid "Max. backup files in Dropbox folder:"
2037
  msgstr "Nombre max. de fichiers dans le répertoire DropBox:"
2038
 
2039
+ # @ backwpup
2040
+ #: pages/func_backwpupeditjob.php:376 pages/func_backwpupeditjob.php:429
 
2041
  msgid "E-mail address:"
2042
  msgstr "Adress E-mail:"
2043
 
2044
+ # @ backwpup
2045
+ #: pages/func_backwpupeditjob.php:381 pages/header_backwpupeditjob.php:225
2046
+ msgid "Sugarsync authenticate!"
2047
+ msgstr "Authentification SugarSync !"
2048
+
2049
+ # @ backwpup
2050
+ #: pages/func_backwpupeditjob.php:382 pages/header_backwpupeditjob.php:243
2051
+ msgid "Create Sugarsync Account"
2052
+ msgstr "Créer un compte SygarSync"
2053
+
2054
+ # @ backwpup
2055
+ #: pages/func_backwpupeditjob.php:387 pages/header_backwpupeditjob.php:239
2056
+ msgid "Delete Sugarsync authentication!"
2057
+ msgstr "Suppression de l'authentification SugarSync!"
2058
+
2059
+ # @ backwpup
2060
+ #: pages/func_backwpupeditjob.php:398 pages/func_backwpupeditjob.php:823
2061
+ msgid "No Syncfolders found!"
2062
+ msgstr "Aucun répertoire de synchronisation trouvé!"
2063
+
2064
+ # @ backwpup
2065
+ #: pages/func_backwpupeditjob.php:432
2066
  msgid "Max. File Size for sending Backups with mail:"
2067
  msgstr "Taille max. des sauvegardes à envoyer par mail:"
2068
 
2069
+ # @ backwpup
2070
+ #: pages/func_backwpupeditjob.php:490
2071
+ msgid ""
2072
+ "Working as <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank"
2073
+ "\">Cron</a> job schedule:"
2074
+ msgstr ""
2075
+ "Lancé en tant qu'opération programmée <a href=\"http://wikipedia.org/wiki/"
2076
+ "Cron\" target=\"_blank\">Cron</a>"
2077
 
2078
+ # @ backwpup
2079
+ #: pages/func_backwpupeditjob.php:496
2080
  #, php-format
 
2081
  msgid "ATTENTION: Job runs every %d mins.!!!"
2082
  msgstr "ATTENTION: Opération exécutée toutes les %d mins.!!!"
2083
 
2084
+ # @ backwpup
2085
+ #: pages/func_backwpupeditjob.php:502
2086
  #, php-format
2087
+ msgid "ATTENTION: Job runs every %d hours.!!!"
 
2088
  msgstr "ATTENTION: Opération exécutée toutes les %d heures!!!"
2089
 
2090
+ # @ backwpup
2091
+ #: pages/func_backwpupeditjob.php:506
2092
  msgid "ATTENTION: Can't calculate cron!!!"
2093
  msgstr "ATTENTION: Impossible de calculer cron!!!"
2094
 
2095
+ # @ backwpup
2096
+ #: pages/func_backwpupeditjob.php:508
2097
  msgid "Next runtime:"
2098
  msgstr "Prochaine exécution:"
2099
 
2100
+ # @ backwpup
2101
+ #: pages/func_backwpupeditjob.php:534 pages/func_backwpupeditjob.php:599
 
2102
  msgid "Missing access key!"
2103
  msgstr "Clé d'accès manquante!"
2104
 
2105
+ # @ backwpup
2106
+ #: pages/func_backwpupeditjob.php:541 pages/func_backwpupeditjob.php:606
 
2107
  msgid "Missing secret access key!"
2108
  msgstr "Clé secrète manquante!"
2109
 
2110
+ # @ backwpup
2111
+ #: pages/func_backwpupeditjob.php:565 pages/func_backwpupeditjob.php:632
2112
+ msgid "No bucket found!"
 
2113
  msgstr "Aucun panier trouvé!"
2114
 
2115
+ # @ backwpup
2116
+ #: pages/func_backwpupeditjob.php:667 pages/func_backwpupeditjob.php:796
 
2117
  msgid "Missing Username!"
2118
  msgstr "Nom d'utilisateur manquant!"
2119
 
2120
+ # @ backwpup
2121
+ #: pages/func_backwpupeditjob.php:674
2122
  msgid "Missing API Key!"
2123
  msgstr "Clé API manquante!"
2124
 
2125
+ # @ backwpup
2126
+ #: pages/func_backwpupeditjob.php:695
2127
  msgid "No Containerss found!"
2128
  msgstr "Aucun récipient trouvé!"
2129
 
2130
+ # @ backwpup
2131
+ #: pages/func_backwpupeditjob.php:730
2132
  msgid "Missing Hostname!"
2133
  msgstr "Nom d'hôte manquant!"
2134
 
2135
+ # @ backwpup
2136
+ #: pages/func_backwpupeditjob.php:737
2137
  msgid "Missing Account Name!"
2138
  msgstr "Nom du compte non fourni!"
2139
 
2140
+ # @ backwpup
2141
+ #: pages/func_backwpupeditjob.php:744
2142
  msgid "Missing Access Key!"
2143
  msgstr "Clé d'accès manquante!"
2144
 
2145
+ # @ backwpup
2146
+ #: pages/func_backwpupeditjob.php:761
2147
  msgid "No Container found!"
2148
  msgstr "Aucun récipient trouvé!"
2149
 
2150
+ # @ backwpup
2151
+ #: pages/func_backwpupeditjob.php:803
2152
  msgid "Missing Password!"
2153
  msgstr "Mot de passe non fourni!"
2154
 
2155
+ # @ backwpup
2156
+ #: pages/func_backwpuplogs.php:71
 
 
 
 
 
2157
  msgid "No Logs."
2158
  msgstr "Aucun fichier journal!"
2159
 
2160
+ # @ backwpup
2161
+ #: pages/func_backwpuplogs.php:83
2162
  msgid "Job"
2163
  msgstr "Opération"
2164
 
2165
+ # @ backwpup
2166
+ #: pages/func_backwpuplogs.php:85
2167
  msgid "Backup/Log Date/Time"
2168
  msgstr "Sauvegarde/Date des journaux/heure"
2169
 
2170
+ # @ backwpup
2171
+ #: pages/func_backwpuplogs.php:86
2172
  msgid "Status"
2173
  msgstr "Statut"
2174
 
2175
+ # @ backwpup
2176
+ #: pages/func_backwpuplogs.php:88
2177
  msgid "Runtime"
2178
  msgstr "Temps d'exécution"
2179
 
2180
+ # @ backwpup
2181
+ #: pages/func_backwpuplogs.php:127
2182
  msgid "View log"
2183
  msgstr "Voir fichier journal"
2184
 
2185
+ # @ backwpup
2186
+ #: pages/func_backwpuplogs.php:129
2187
  msgid "View"
2188
  msgstr "Voir"
2189
 
2190
+ # @ backwpup
2191
+ #: pages/func_backwpuplogs.php:150
2192
  msgid "only Log"
2193
  msgstr "fichier journal uniquement"
2194
 
2195
+ # @ backwpup
2196
  #: pages/header_backwpup.php:44
 
2197
  msgid "Copy of"
2198
  msgstr "Copie de"
2199
 
2200
+ # @ backwpup
2201
  #: pages/header_backwpup.php:100
 
2202
  msgid "Aborted by user!!!"
2203
  msgstr "Arrêté par l'utilisateur!!!"
2204
 
2205
+ # @ backwpup
2206
  #: pages/header_backwpup.php:115
 
2207
  msgid "Job will be terminated."
2208
  msgstr "L'opération va être interrompue."
2209
 
2210
+ # @ backwpup
2211
  #: pages/header_backwpup.php:118
 
2212
  msgid "Process killed with PID:"
2213
  msgstr "Processus tué PID:"
2214
 
2215
+ # @ backwpup
2216
  #: pages/header_backwpup.php:120
 
2217
  msgid "Can't kill process with PID:"
2218
  msgstr "Impossible de tuer le processus PID:"
2219
 
2220
+ # @ backwpup
2221
  #: pages/header_backwpup.php:136
2222
+ msgid ""
2223
+ "Here is the job overview with some information. You can see some further "
2224
+ "information of the jobs, how many can be switched with the view button. Also "
2225
+ "you can manage the jobs or abbort working jobs. Some links are added to have "
2226
+ "direct access to the last log or download."
2227
+ msgstr ""
2228
+ "Voici la vue d'ensemble des opérations accompagnée de quelques informations. "
2229
+ "Vous pouvez en apprendre plus dur une opération grâce au bouton voir. Vous "
2230
+ "pouvez également gérer les opérations ou les arrêter. Un accès direct aux "
2231
+ "fichier journaux ainsi qu'aux téléchargements des sauvegardes est disponible."
2232
 
2233
+ # @ backwpup
2234
  #: pages/header_backwpupbackups.php:325
2235
+ msgid ""
2236
+ "Here you see a list of backup files. Change the destionation to jobname:"
2237
+ "destination to become a list of backups from other destinations and jobs. "
2238
+ "Then you kann delete or download backup files."
2239
+ msgstr ""
2240
+ "Voici la liste des fichiers sauvegarde. Modifiez la destination en nom "
2241
+ "d'opération: la destination devient une liste de sauvegardes d'autres "
2242
+ "opérations. Alors vous pourrez effacer ou télécharger les fichiers "
2243
+ "sauvegarde."
2244
 
2245
+ # @ backwpup
2246
  #: pages/header_backwpupeditjob.php:22
 
2247
  msgid "Dropbox authentication complete!"
2248
  msgstr "Authentification DropBox réussie!"
2249
 
2250
+ # @ backwpup
2251
  #: pages/header_backwpupeditjob.php:24
 
2252
  msgid "Wrong Token for Dropbox authentication received!"
2253
  msgstr "Le jeton d'enregistrement reçu invalide!"
2254
 
2255
+ # @ backwpup
2256
  #: pages/header_backwpupeditjob.php:27
 
2257
  msgid "No Dropbox authentication received!"
2258
  msgstr "Aucune authentification DropBox reçue!"
2259
 
2260
+ # @ backwpup
2261
+ #: pages/header_backwpupeditjob.php:222
2262
  msgid "Dropbox authentication deleted!"
2263
  msgstr "Autorisation DropBox effacée!"
2264
 
2265
+ # @ backwpup
2266
+ #: pages/header_backwpupeditjob.php:233
2267
+ msgid "SugarSync authentication complete!"
2268
+ msgstr "Authentification SugarSync réussie!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2269
 
2270
+ # @ backwpup
2271
+ #: pages/header_backwpupeditjob.php:241
2272
+ msgid "SugarSync authentication deleted!"
2273
+ msgstr "Autorisation SugarSync effacée!"
2274
 
2275
+ #: pages/header_backwpupeditjob.php:249
2276
+ msgid "SugarSync account created!"
2277
+ msgstr "Le compte SugarSync a été créé!"
 
2278
 
2279
+ # @ backwpup
2280
  #: pages/header_backwpupeditjob.php:286
2281
+ msgid "Job '%1' changes saved."
2282
+ msgstr "Modifications enregistrées pour l'opération '%1'."
 
 
 
 
 
 
2283
 
2284
+ # @ backwpup
2285
+ #: pages/header_backwpupeditjob.php:286
2286
+ msgid "Jobs overview."
2287
+ msgstr "Vue générale des opérations."
2288
 
2289
+ # @ backwpup
2290
  #: pages/header_backwpuplogs.php:59
2291
+ msgid ""
2292
+ "Here you can manage the log files of the jobs. You can download, view, or "
2293
+ "delete them."
2294
+ msgstr ""
2295
+ "Ici vous pouvez gérer les fichiers journaux des opérations. Vous pouvez, les "
2296
+ "voir, les télécharger ou les effacer."
2297
 
2298
+ # @ backwpup
2299
+ #: pages/header_backwpupsettings.php:44
2300
  msgid "Settings saved"
2301
  msgstr "Paramètres sauvegardés"
2302
 
2303
+ # @ backwpup
2304
  #: pages/header_backwpupworking.php:11
 
2305
  msgid "A job alredy running!!! Pleace try again if its done."
2306
+ msgstr ""
2307
+ "Une opération est en cours!!! Veuillez réessayer une fois celle-ci terminée."
2308
 
2309
+ # @ backwpup
2310
  #: pages/header_backwpupworking.php:23
 
2311
  msgid "A job is running!!!"
2312
  msgstr "Une opération est en cours!!!"
2313
 
2314
+ # @ backwpup
2315
  #: pages/header_backwpupworking.php:27
 
2316
  msgid "Nothing..."
2317
  msgstr "Rien..."
2318
 
2319
+ # @ backwpup
2320
  #: pages/header_backwpupworking.php:32
 
2321
  msgid "Here you see working jobs or logfiles"
2322
  msgstr "Ici vous pouvez voir les opérations en cours ou les fichiers journaux"
2323
 
2324
+ # @ backwpup
2325
  #: pages/page_backwpup.php:8
 
2326
  msgid "BackWPup Jobs"
2327
  msgstr "Opérations BackWPup"
2328
 
2329
+ # @ backwpup
2330
  #: pages/page_backwpupbackups.php:8
 
2331
  msgid "BackWPup Manage Backups"
2332
  msgstr "Gérer les sauvegardes BackWPup"
2333
 
2334
+ # @ backwpup
2335
+ #: pages/page_backwpupeditjob.php:10
2336
  msgid "Job Type"
2337
  msgstr "Type d'opération"
2338
 
2339
+ # @ backwpup
2340
+ #: pages/page_backwpupeditjob.php:11
2341
  msgid "Job Schedule"
2342
  msgstr "Programmation opération"
2343
 
2344
+ # @ backwpup
2345
+ #: pages/page_backwpupeditjob.php:13
2346
+ msgid "Backup File"
2347
+ msgstr "Fichier sauvegarde"
2348
+
2349
+ # @ backwpup
2350
+ #: pages/page_backwpupeditjob.php:14
2351
+ msgid "Send log"
2352
+ msgstr "Envoyer le fichier journal"
2353
+
2354
+ # @ backwpup
2355
+ #: pages/page_backwpupeditjob.php:15
2356
+ msgid "Backup to Folder"
2357
+ msgstr "Sauvegarder dans le répertoire"
2358
+
2359
+ # @ backwpup
2360
+ #: pages/page_backwpupeditjob.php:16
2361
+ msgid "Backup to E-Mail"
2362
+ msgstr "Sauvegarder vers E-mail"
2363
+
2364
+ # @ backwpup
2365
+ #: pages/page_backwpupeditjob.php:18
2366
+ msgid "Backup to FTP Server"
2367
+ msgstr "Sauvegarder vers serveur FTP"
2368
+
2369
+ # @ backwpup
2370
+ #: pages/page_backwpupeditjob.php:20
2371
+ msgid "Backup to Dropbox"
2372
+ msgstr "Sauvegarder vers DropBox"
2373
+
2374
+ # @ backwpup
2375
+ #: pages/page_backwpupeditjob.php:22
2376
+ msgid "Backup to SugarSync"
2377
+ msgstr "Sauvegarder vers SugarSync"
2378
+
2379
+ # @ backwpup
2380
+ #: pages/page_backwpupeditjob.php:24
2381
+ msgid "Backup to Amazon S3"
2382
+ msgstr "Sauvegarder vers Amazon S3"
2383
+
2384
+ # @ backwpup
2385
+ #: pages/page_backwpupeditjob.php:26
2386
+ msgid "Backup to Google storage"
2387
+ msgstr "Sauvegarder vers Google STorage"
2388
+
2389
+ # @ backwpup
2390
+ #: pages/page_backwpupeditjob.php:28
2391
+ msgid "Backup to Micosoft Azure (Blob)"
2392
+ msgstr "Sauvegarder vers Microsoft Azure (blob)"
2393
+
2394
+ # @ backwpup
2395
+ #: pages/page_backwpupeditjob.php:30
2396
+ msgid "Backup to Rackspace Cloud"
2397
+ msgstr "Sauvegarder vers RackSpace Cloud"
2398
+
2399
+ # @ backwpup
2400
+ #: pages/page_backwpupeditjob.php:46
2401
  msgid "BackWPup Job Settings"
2402
  msgstr "Paramètres des opérations BackWPup"
2403
 
2404
+ # @ backwpup
2405
+ #: pages/page_backwpupeditjob.php:66 pages/page_backwpupeditjob.php:92
 
2406
  msgid "Enter Job name here"
2407
  msgstr "Entrez le nom de l'opération ici"
2408
 
2409
+ # @ backwpup
2410
+ #: pages/page_backwpupeditjob.php:98
2411
  msgid "Database Jobs"
2412
  msgstr "Opérations base de données"
2413
 
2414
+ # @ backwpup
2415
+ #: pages/page_backwpupeditjob.php:101
2416
  msgid "Database tables to use:"
2417
  msgstr "Tables de la base de données concernées:"
2418
 
2419
+ # @ backwpup
2420
+ #: pages/page_backwpupeditjob.php:111
2421
  msgid "Use short INSERTs instead of full (with keys)"
2422
  msgstr "Utilisez des petits INSERTs au lieux des complets (avec clés)"
2423
 
2424
+ # @ backwpup
2425
+ #: pages/page_backwpupeditjob.php:112
2426
  msgid "Set Blog Maintenance Mode on Database Operations"
2427
+ msgstr ""
2428
+ "Mettre le site en mode maintenance pendant les opérations sur la base "
2429
+ "données."
2430
 
2431
+ # @ backwpup
2432
+ #: pages/page_backwpupeditjob.php:119
2433
  msgid "Blog Folders to Backup:"
2434
  msgstr "Répertoires du site à enregistrer:"
2435
 
2436
+ # @ backwpup
2437
+ #: pages/page_backwpupeditjob.php:122
2438
  msgid "root"
2439
  msgstr "Racine"
2440
 
2441
+ # @ backwpup
2442
+ #: pages/page_backwpupeditjob.php:125 pages/page_backwpupeditjob.php:141
2443
+ #: pages/page_backwpupeditjob.php:157 pages/page_backwpupeditjob.php:173
2444
+ #: pages/page_backwpupeditjob.php:189
 
 
2445
  msgid "Exclude:"
2446
  msgstr "Exclure:"
2447
 
2448
+ # @ backwpup
2449
+ #: pages/page_backwpupeditjob.php:138
2450
  msgid "Content"
2451
  msgstr "Contenu"
2452
 
2453
+ # @ backwpup
2454
+ #: pages/page_backwpupeditjob.php:154
2455
  msgid "Plugins"
2456
  msgstr "Extensions"
2457
 
2458
+ # @ backwpup
2459
+ #: pages/page_backwpupeditjob.php:170
2460
  msgid "Themes"
2461
  msgstr "Thèmes"
2462
 
2463
+ # @ backwpup
2464
+ #: pages/page_backwpupeditjob.php:186
2465
  msgid "Blog Uploads"
2466
  msgstr "Fichiers envoyés sur le site"
2467
 
2468
+ # @ backwpup
2469
+ #: pages/page_backwpupeditjob.php:203
2470
  msgid "Include Folders to Backup:"
2471
  msgstr "Répertoires à sauvegarder:"
2472
 
2473
+ # @ backwpup
2474
+ #: pages/page_backwpupeditjob.php:204 pages/page_backwpupeditjob.php:208
 
2475
  msgid "Example:"
2476
  msgstr "Exemple:"
2477
 
2478
+ # @ backwpup
2479
+ #: pages/page_backwpupeditjob.php:207
2480
  msgid "Exclude Files/Folders from Backup:"
2481
  msgstr "Exclure des fichiers/répertoires de la sauvegarde:"
2482
 
2483
+ # @ backwpup
2484
  #: pages/page_backwpupsettings.php:10
 
2485
  msgid "BackWPup Settings"
2486
  msgstr "Paramètres BackWPup"
2487
 
2488
+ # @ backwpup
2489
  #: pages/page_backwpupsettings.php:17
 
2490
  msgid "Send Mail"
2491
  msgstr "Envoyer le mail"
2492
 
2493
+ # @ backwpup
2494
  #: pages/page_backwpupsettings.php:18
2495
+ msgid ""
2496
+ "Here you can set the options for email sending. The settings will be used in "
2497
+ "jobs for sending backups via email or for sending log files."
2498
+ msgstr ""
2499
+ "Ici vous pouvez régler les options pour l'envoi d'e-mails. Ces paramètres "
2500
+ "seront utilisés pour envoyer les fichiers journaux ou les sauvegardes via E-"
2501
+ "mail."
2502
 
2503
+ # @ backwpup
2504
  #: pages/page_backwpupsettings.php:21
 
2505
  msgid "Sender email"
2506
  msgstr "E-mail de l'envoyeur"
2507
 
2508
+ # @ backwpup
2509
  #: pages/page_backwpupsettings.php:26
 
2510
  msgid "Sender name"
2511
  msgstr "Nom de l'envoyeur"
2512
 
2513
+ # @ backwpup
2514
  #: pages/page_backwpupsettings.php:30
 
2515
  msgid "Send mail method"
2516
  msgstr "Méthode d'envoi mail"
2517
 
2518
+ # @ backwpup
2519
  #: pages/page_backwpupsettings.php:34
 
2520
  msgid "PHP: mail()"
2521
  msgstr "PHP:mail()"
2522
 
2523
+ # @ backwpup
2524
  #: pages/page_backwpupsettings.php:35
 
2525
  msgid "Sendmail"
2526
  msgstr "Sendmail"
2527
 
2528
+ # @ backwpup
2529
  #: pages/page_backwpupsettings.php:36
 
2530
  msgid "SMTP"
2531
  msgstr "SMTP"
2532
 
2533
+ # @ backwpup
2534
  #: pages/page_backwpupsettings.php:42
 
2535
  msgid "Sendmail path"
2536
  msgstr "Chemin de Senmail"
2537
 
2538
+ # @ backwpup
2539
  #: pages/page_backwpupsettings.php:49
 
2540
  msgid "SMTP hostname"
2541
  msgstr "Nom d'hôte SMTP"
2542
 
2543
+ # @ backwpup
2544
  #: pages/page_backwpupsettings.php:56
 
2545
  msgid "SMTP secure connection"
2546
  msgstr "Connexion sécurisée SMTP"
2547
 
2548
+ # @ backwpup
2549
  #: pages/page_backwpupsettings.php:66
 
2550
  msgid "SMTP username"
2551
  msgstr "Nom d'utilisateur SMTP"
2552
 
2553
+ # @ backwpup
2554
  #: pages/page_backwpupsettings.php:72
 
2555
  msgid "SMTP password"
2556
  msgstr "Mot de passe SMTP"
2557
 
2558
+ # @ backwpup
2559
  #: pages/page_backwpupsettings.php:80
 
2560
  msgid "Here you can set Logfile related options."
2561
  msgstr "Ici vous pouvez régler les options des fichiers journaux."
2562
 
2563
+ # @ backwpup
2564
  #: pages/page_backwpupsettings.php:83
 
2565
  msgid "Log file Folder"
2566
  msgstr "Répertoire des fichiers journaux"
2567
 
2568
+ # @ backwpup
2569
  #: pages/page_backwpupsettings.php:88
 
2570
  msgid "Max. Log Files in Folder"
2571
  msgstr "Nombre max. de fichiers journaux dans le répertoire"
2572
 
2573
+ # @ backwpup
2574
+ #: pages/page_backwpupsettings.php:94 pages/page_backwpupsettings.php:95
 
2575
  msgid "Compression"
2576
  msgstr "Compression"
2577
 
2578
+ # @ backwpup
2579
  #: pages/page_backwpupsettings.php:97
 
2580
  msgid "Gzip Log files!"
2581
  msgstr "Gzipper les fichiers journaux!"
2582
 
2583
+ # @ backwpup
2584
  #: pages/page_backwpupsettings.php:102
 
2585
  msgid "Here you can set Job related options."
2586
  msgstr "Ici vous pouvez régler les options de opérations"
2587
 
2588
+ # @ backwpup
2589
  #: pages/page_backwpupsettings.php:105
 
2590
  msgid "Max. retrys for job steps"
2591
  msgstr "Nombre d'essais max pas étape d'opération"
2592
 
2593
+ # @ backwpup
2594
  #: pages/page_backwpupsettings.php:110
 
2595
  msgid "Max. retrys for job script retries"
2596
  msgstr "Nombre max de tentatives d'une opération"
2597
 
2598
+ # @ backwpup
2599
  #: pages/page_backwpupsettings.php:115
 
2600
  msgid "PHP zip class"
2601
  msgstr "Classe PHP zip"
2602
 
2603
+ # @ backwpup
2604
  #: pages/page_backwpupsettings.php:116
 
2605
  msgid "PHP zip"
2606
  msgstr "PHP zip"
2607
 
2608
+ # @ backwpup
2609
  #: pages/page_backwpupsettings.php:118
 
2610
  msgid "Use PHP zip class if available! Normaly PCL Zip class will used."
2611
  msgstr "Utiliser PHP zip si disponible! Sinon la classe PCL Zip sera utilisée."
2612
 
2613
+ # @ backwpup
2614
  #: pages/page_backwpupsettings.php:123
 
2615
  msgid "WP Admin Bar"
2616
  msgstr "Barre d'administration WP"
2617
 
2618
+ # @ backwpup
2619
  #: pages/page_backwpupsettings.php:124
 
2620
  msgid "Will you see BackWPup in the WordPress Admin Bar?"
2621
  msgstr "Voir BackWPup dans la barre d'administration WordPress?"
2622
 
2623
+ # @ backwpup
2624
+ #: pages/page_backwpupsettings.php:127 pages/page_backwpupsettings.php:128
 
2625
  msgid "Admin Bar"
2626
  msgstr "Barre d'administration"
2627
 
2628
+ # @ backwpup
2629
  #: pages/page_backwpupsettings.php:130
 
2630
  msgid "Show BackWPup Links in Admin Bar."
2631
  msgstr "Voir les liens BackWPup dans la barre d'administration."
2632
 
2633
+ # @ backwpup
2634
  #: pages/page_backwpupsettings.php:135
 
2635
  msgid "Http basic authentication"
2636
  msgstr "Authentification http basique"
2637
 
2638
+ # @ backwpup
2639
  #: pages/page_backwpupsettings.php:136
2640
+ msgid ""
2641
+ "Is your blog behind a http basic authentication (.htaccess)? Then you must "
2642
+ "set the username and password four authentication."
2643
+ msgstr ""
2644
+ "Votre site se trouve-t'il derrière une authentification http basique (."
2645
+ "htaccess)? Si oui entrez le nom d'utilisateur et le mot de passe pour celle-"
2646
+ "ci."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2647
 
2648
+ # @ backwpup
2649
  #: pages/page_backwpuptools.php:8
 
2650
  msgid "BackWPup Tools"
2651
  msgstr "Outils BackWPup"
2652
 
2653
+ # @ backwpup
2654
  #: pages/page_backwpuptools.php:15
 
2655
  msgid "Database restore"
2656
  msgstr "Restauration base de données"
2657
 
2658
+ # @ backwpup
2659
  #: pages/page_backwpuptools.php:18
 
2660
  msgid "DB Restore"
2661
  msgstr "Restaurer la B.D."
2662
 
2663
+ # @ backwpup
2664
+ #: pages/page_backwpuptools.php:21 pages/page_backwpuptools.php:40
 
2665
  msgid "Restore"
2666
  msgstr "Restauration"
2667
 
2668
+ # @ backwpup
2669
  #: pages/page_backwpuptools.php:37
 
2670
  msgid "SQL File to restore:"
2671
  msgstr "Fichier SQL à restaurer"
2672
 
2673
+ # @ backwpup
2674
  #: pages/page_backwpuptools.php:43
 
2675
  msgid "Copy SQL file to blog root folder to use for a restoring."
2676
+ msgstr ""
2677
+ "Copier le fichier SQL à la racine du site afin de l'utiliser pour une "
2678
+ "restauration."
2679
 
2680
+ # @ backwpup
2681
  #: pages/page_backwpuptools.php:51
 
2682
  msgid "Import Jobs settings"
2683
  msgstr "Importer les paramètres des opérations"
2684
 
2685
+ # @ backwpup
2686
  #: pages/page_backwpuptools.php:54
 
2687
  msgid "Select file to import:"
2688
  msgstr "Sélectionnez les fichiers à importer:"
2689
 
2690
+ # @ backwpup
2691
+ #: pages/page_backwpuptools.php:56 pages/page_backwpuptools.php:61
 
2692
  msgid "Upload"
2693
  msgstr "Envois"
2694
 
2695
+ # @ backwpup
2696
  #: pages/page_backwpuptools.php:62
 
2697
  msgid "Select jobs to import"
2698
  msgstr "Sélectionner le opérations à importer"
2699
 
2700
+ # @ backwpup
2701
  #: pages/page_backwpuptools.php:66
 
2702
  msgid "Import Type"
2703
  msgstr "Type d'importation"
2704
 
2705
+ # @ backwpup
2706
  #: pages/page_backwpuptools.php:66
 
2707
  msgid "No Import"
2708
  msgstr "Pas d'importation"
2709
 
2710
+ # @ backwpup
2711
  #: pages/page_backwpuptools.php:68
 
2712
  msgid "Overwrite"
2713
  msgstr "Écraser"
2714
 
2715
+ # @ backwpup
2716
  #: pages/page_backwpuptools.php:68
 
2717
  msgid "Append"
2718
  msgstr "Ajouter"
2719
 
2720
+ # @ backwpup
2721
+ #: pages/page_backwpuptools.php:70 pages/page_backwpuptools.php:75
2722
+ #: pages/page_backwpuptools.php:77 pages/page_backwpuptools.php:78
 
 
2723
  msgid "Import"
2724
  msgstr "Importer"
2725
 
2726
+ # @ backwpup
2727
  #: pages/page_backwpuptools.php:114
 
2728
  msgid "Jobs imported!"
2729
  msgstr "Opérations importées!"
2730
 
2731
+ # @ backwpup
2732
  #: pages/page_backwpupworking.php:9
 
2733
  msgid "BackWPup Working"
2734
  msgstr "BackWPup en cours"
2735
 
2736
+ # @ backwpup
2737
  #: pages/page_backwpupworking.php:33
 
2738
  msgid "Warnings:"
2739
  msgstr "Avertissements:"
2740
 
2741
+ # @ backwpup
2742
  #: pages/page_backwpupworking.php:37
 
2743
  msgid "Errors:"
2744
  msgstr "Erreurs:"
2745
 
2746
+ # @ backwpup
2747
+ #: pages/tools/db_restore.php:34 pages/tools/db_restore.php:53
2748
+ #: pages/tools/db_restore.php:68 pages/tools/db_restore.php:79
2749
+ #: pages/tools/db_restore.php:82 pages/tools/db_restore.php:85
 
 
2750
  #: pages/tools/db_restore.php:90
 
2751
  msgid "ERROR:"
2752
  msgstr "ERREUR:"
2753
 
2754
+ # @ backwpup
2755
  #: pages/tools/db_restore.php:34
2756
  #, php-format
 
2757
  msgid "Pleace set <i>$table_prefix = '%1$s';</i> in wp-config.php"
2758
  msgstr "Veuillez définir <i>$table_prefix = '%1$s';</i> dans wp-config.php"
2759
 
2760
+ # @ backwpup
2761
  #: pages/tools/db_restore.php:53
2762
  #, php-format
 
2763
  msgid "Pleace set <i>define('DB_CHARSET', '%1$s');</i> in wp-config.php"
2764
+ msgstr ""
2765
+ "Veuillez définir <i>define('DB_CHARSET', '%1$s');</i> dans wp-config.php"
2766
 
2767
+ # @ backwpup
2768
+ #: pages/tools/db_restore.php:68 pages/tools/db_restore.php:79
2769
+ #: pages/tools/db_restore.php:82 pages/tools/db_restore.php:85
 
2770
  #: pages/tools/db_restore.php:90
2771
  #, php-format
 
2772
  msgid "BackWPup database error %1$s for query %2$s"
2773
  msgstr "Erreur de base de données BackWPup %1$s pour la requête %2$s"
2774
 
2775
+ # @ backwpup
2776
  #: pages/tools/db_restore.php:74
2777
  #, php-format
 
2778
  msgid "%1$s Database Querys done."
2779
  msgstr "%1$s requêtes SQL réalisées."
2780
 
2781
+ # @ backwpup
2782
  #: pages/tools/db_restore.php:75
 
2783
  msgid "Make changes for Blogurl and ABSPATH if needed."
2784
  msgstr "Changez Blogurl et ABSPATH si nécessaire."
2785
 
2786
+ # @ backwpup
2787
  #: pages/tools/db_restore.php:92
 
2788
  msgid "Restore Done. Please delete the SQL file after restoring."
2789
+ msgstr ""
2790
+ "Restauration terminée. Veuillez effacer le fichier SQL après la restauration."
libs/aws/README.md CHANGED
@@ -1,5 +1,7 @@
1
  # AWS SDK for PHP
2
 
 
 
3
  The AWS SDK for PHP enables developers to build solutions for Amazon Simple Storage Service (Amazon S3),
4
  Amazon Elastic Compute Cloud (Amazon EC2), Amazon SimpleDB, and more. With the AWS SDK for PHP, developers
5
  can get started in minutes with a single, downloadable package.
1
  # AWS SDK for PHP
2
 
3
+ > This is the repository for version 1 of the AWS SDK for PHP. For the new **AWS SDK for PHP 2**, see <http://github.com/aws/aws-sdk-php>.
4
+
5
  The AWS SDK for PHP enables developers to build solutions for Amazon Simple Storage Service (Amazon S3),
6
  Amazon Elastic Compute Cloud (Amazon EC2), Amazon SimpleDB, and more. With the AWS SDK for PHP, developers
7
  can get started in minutes with a single, downloadable package.
libs/aws/config.inc.php ADDED
File without changes
libs/aws/extensions/dynamodbsessionhandler.class.php CHANGED
@@ -289,7 +289,7 @@ class DynamoDBSessionHandler
289
  $node_name = 'Item';
290
  }
291
 
292
- if ($response->isOK())
293
  {
294
  $item = array();
295
 
@@ -502,13 +502,17 @@ class DynamoDBSessionHandler
502
  {
503
  return $response;
504
  }
505
- else
506
  {
507
  usleep(rand($this->_min_lock_retry_utime, $this->_max_lock_retry_utime));
508
 
509
  $now = time();
510
  }
 
 
 
 
511
  }
512
- while(true);
513
  }
514
  }
289
  $node_name = 'Item';
290
  }
291
 
292
+ if ($response && $response->isOK())
293
  {
294
  $item = array();
295
 
502
  {
503
  return $response;
504
  }
505
+ elseif (stripos((string) $response->body->asXML(), 'ConditionalCheckFailedException') !== false)
506
  {
507
  usleep(rand($this->_min_lock_retry_utime, $this->_max_lock_retry_utime));
508
 
509
  $now = time();
510
  }
511
+ else
512
+ {
513
+ return null;
514
+ }
515
  }
516
+ while (true);
517
  }
518
  }
libs/aws/extensions/s3browserupload.class.php CHANGED
@@ -39,6 +39,7 @@ class S3BrowserUpload extends AmazonS3
39
  * <li><code>success_action_status</code> - <code>integer</code> - Optional - The status code for Amazon S3 to return upon successful upload.</li>
40
  * <li><code>x-amz-server-side-encryption</code> - <code>string</code> - Optional - The server-side encryption mechanism to use. [Allowed values: <code>AES256</code>].</li>
41
  * <li><code>x-amz-storage-class</code> - <code>string</code> - Optional - The storage setting to apply to the object. [Allowed values: <code>AmazonS3::STORAGE_STANDARD</code>, <code>AmazonS3::STORAGE_REDUCED</code>]. The default value is <code>AmazonS3::STORAGE_STANDARD</code>.</li>
 
42
  * <li><code>x-amz-meta-*</code> - <code>mixed</code> - Optional - Any custom meta tag that should be set to the object.</li>
43
  * </ul>
44
  * @return array An array of fields that can be converted into markup.
39
  * <li><code>success_action_status</code> - <code>integer</code> - Optional - The status code for Amazon S3 to return upon successful upload.</li>
40
  * <li><code>x-amz-server-side-encryption</code> - <code>string</code> - Optional - The server-side encryption mechanism to use. [Allowed values: <code>AES256</code>].</li>
41
  * <li><code>x-amz-storage-class</code> - <code>string</code> - Optional - The storage setting to apply to the object. [Allowed values: <code>AmazonS3::STORAGE_STANDARD</code>, <code>AmazonS3::STORAGE_REDUCED</code>]. The default value is <code>AmazonS3::STORAGE_STANDARD</code>.</li>
42
+ * <li><code>x-amz-website-redirect-location</code> - <code>string</code> - Optional - The URI to send an HTTP 301 redirect to when accessing this object. Value must be prefixed either <code>/</code>, <code>http://</code> or <code>https://</code>.</li>
43
  * <li><code>x-amz-meta-*</code> - <code>mixed</code> - Optional - Any custom meta tag that should be set to the object.</li>
44
  * </ul>
45
  * @return array An array of fields that can be converted into markup.
libs/aws/lib/requestcore/requestcore.class.php CHANGED
@@ -161,6 +161,11 @@ class RequestCore
161
  */
162
  public $allow_set_time_limit = true;
163
 
 
 
 
 
 
164
 
165
  /*%******************************************************************************************%*/
166
  // CONSTANTS
@@ -686,7 +691,7 @@ class RequestCore
686
  }
687
 
688
  // Handle the encoding if we can.
689
- if (extension_loaded('zlib'))
690
  {
691
  curl_setopt($curl_handle, CURLOPT_ENCODING, 'gzip, deflate');
692
  }
161
  */
162
  public $allow_set_time_limit = true;
163
 
164
+ /**
165
+ * Whether or not to use gzip encoding via CURLOPT_ENCODING
166
+ */
167
+ public $use_gzip_enconding = true;
168
+
169
 
170
  /*%******************************************************************************************%*/
171
  // CONSTANTS
691
  }
692
 
693
  // Handle the encoding if we can.
694
+ if ($this->use_gzip_enconding && extension_loaded('zlib'))
695
  {
696
  curl_setopt($curl_handle, CURLOPT_ENCODING, 'gzip, deflate');
697
  }
libs/aws/sdk.class.php CHANGED
@@ -115,8 +115,8 @@ function __aws_sdk_ua_callback()
115
  // INTERMEDIARY CONSTANTS
116
 
117
  define('CFRUNTIME_NAME', 'aws-sdk-php');
118
- define('CFRUNTIME_VERSION', 'Panther');
119
- define('CFRUNTIME_BUILD', '20120926163000');
120
  define('CFRUNTIME_USERAGENT', CFRUNTIME_NAME . '/' . CFRUNTIME_VERSION . ' PHP/' . PHP_VERSION . ' ' . str_replace(' ', '_', php_uname('s')) . '/' . str_replace(' ', '_', php_uname('r')) . ' Arch/' . php_uname('m') . ' SAPI/' . php_sapi_name() . ' Integer/' . PHP_INT_MAX . ' Build/' . CFRUNTIME_BUILD . __aws_sdk_ua_callback());
121
 
122
 
@@ -1047,10 +1047,12 @@ class CFRuntime
1047
 
1048
  $data = new $this->response_class($headers, ($this->parse_the_response === true) ? $this->parse_callback($request->get_response_body()) : $request->get_response_body(), $request->get_response_code());
1049
 
 
 
1050
  // Was it Amazon's fault the request failed? Retry the request until we reach $max_retries.
1051
  if (
1052
- (integer) $request->get_response_code() === 500 || // Internal Error (presumably transient)
1053
- (integer) $request->get_response_code() === 503) // Service Unavailable (presumably transient)
1054
  {
1055
  if ($this->redirects <= $this->max_retries)
1056
  {
@@ -1062,26 +1064,41 @@ class CFRuntime
1062
  }
1063
  }
1064
 
1065
- // DynamoDB has custom logic
1066
- elseif (
1067
- (integer) $request->get_response_code() === 400 &&
1068
- stripos((string) $request->get_response_body(), 'com.amazonaws.dynamodb.') !== false && (
1069
- stripos((string) $request->get_response_body(), 'ProvisionedThroughputExceededException') !== false
1070
- )
1071
- )
1072
  {
1073
- if ($this->redirects === 0)
 
 
 
 
 
 
 
 
 
1074
  {
1075
- $this->redirects++;
1076
- $data = $this->authenticate($operation, $original_payload);
 
1077
  }
1078
- elseif ($this->redirects <= max($this->max_retries, 10))
 
 
1079
  {
1080
- // Exponential backoff
1081
- $delay = (integer) (pow(2, ($this->redirects - 1)) * 50000);
1082
- usleep($delay);
1083
- $this->redirects++;
1084
- $data = $this->authenticate($operation, $original_payload);
 
 
 
 
 
 
 
 
1085
  }
1086
  }
1087
 
@@ -1467,7 +1484,7 @@ class CFLoader
1467
  elseif ($class === 'Signer')
1468
  {
1469
  if (!interface_exists('Signable', false) &&
1470
- file_exists($require_this = $path . 'authentication' . DIRECTORY_SEPARATOR . 'signable.interface.php'))
1471
  {
1472
  require_once $require_this;
1473
  }
115
  // INTERMEDIARY CONSTANTS
116
 
117
  define('CFRUNTIME_NAME', 'aws-sdk-php');
118
+ define('CFRUNTIME_VERSION', '1.5.17.1');
119
+ define('CFRUNTIME_BUILD', '20121126140000');
120
  define('CFRUNTIME_USERAGENT', CFRUNTIME_NAME . '/' . CFRUNTIME_VERSION . ' PHP/' . PHP_VERSION . ' ' . str_replace(' ', '_', php_uname('s')) . '/' . str_replace(' ', '_', php_uname('r')) . ' Arch/' . php_uname('m') . ' SAPI/' . php_sapi_name() . ' Integer/' . PHP_INT_MAX . ' Build/' . CFRUNTIME_BUILD . __aws_sdk_ua_callback());
121
 
122
 
1047
 
1048
  $data = new $this->response_class($headers, ($this->parse_the_response === true) ? $this->parse_callback($request->get_response_body()) : $request->get_response_body(), $request->get_response_code());
1049
 
1050
+ $response_body = (string) $request->get_response_body();
1051
+
1052
  // Was it Amazon's fault the request failed? Retry the request until we reach $max_retries.
1053
  if (
1054
+ (integer) $request->get_response_code() === 500 || // Internal Error (presumably transient)
1055
+ (integer) $request->get_response_code() === 503) // Service Unavailable (presumably transient)
1056
  {
1057
  if ($this->redirects <= $this->max_retries)
1058
  {
1064
  }
1065
  }
1066
 
1067
+ // DynamoDB has additional, custom logic for retrying requests
1068
+ else
 
 
 
 
 
1069
  {
1070
+ // If the request to DynamoDB was throttled, we need to retry
1071
+ $need_to_retry_dynamodb_request = (
1072
+ (integer) $request->get_response_code() === 400 &&
1073
+ stripos($response_body, 'com.amazonaws.dynamodb.') !== false &&
1074
+ stripos($response_body, 'ProvisionedThroughputExceededException') !== false
1075
+ );
1076
+
1077
+ // If the CRC32 of the response does not match the expected value, we need to retry
1078
+ $response_headers = $request->get_response_header();
1079
+ if (!$need_to_retry_dynamodb_request && isset($response_headers['x-amz-crc32']))
1080
  {
1081
+ $crc32_expected = $response_headers['x-amz-crc32'];
1082
+ $crc32_actual = hexdec(hash('crc32b', $response_body));
1083
+ $need_to_retry_dynamodb_request = ($crc32_expected != $crc32_actual);
1084
  }
1085
+
1086
+ // Perform retry if necessary using a more aggressive exponential backoff
1087
+ if ($need_to_retry_dynamodb_request)
1088
  {
1089
+ if ($this->redirects === 0)
1090
+ {
1091
+ $this->redirects++;
1092
+ $data = $this->authenticate($operation, $original_payload);
1093
+ }
1094
+ elseif ($this->redirects <= max($this->max_retries, 10))
1095
+ {
1096
+ // Exponential backoff
1097
+ $delay = (integer) (pow(2, ($this->redirects - 1)) * 50000);
1098
+ usleep($delay);
1099
+ $this->redirects++;
1100
+ $data = $this->authenticate($operation, $original_payload);
1101
+ }
1102
  }
1103
  }
1104
 
1484
  elseif ($class === 'Signer')
1485
  {
1486
  if (!interface_exists('Signable', false) &&
1487
+ file_exists($require_this = $path . 'authentication' . DIRECTORY_SEPARATOR . 'signable.interface.php'))
1488
  {
1489
  require_once $require_this;
1490
  }
libs/aws/services/dynamodb.class.php CHANGED
@@ -21,7 +21,7 @@
21
  * Amazon DynamoDB removes traditional scalability limitations on data storage while maintaining
22
  * low latency and predictable performance.
23
  *
24
- * @version 2012.09.18
25
  * @license See the included NOTICE.md file for complete information.
26
  * @copyright See the included NOTICE.md file for complete information.
27
  * @link http://aws.amazon.com/dynamodb/ Amazon DynamoDB
@@ -82,6 +82,16 @@ class AmazonDynamoDB extends CFRuntime
82
  */
83
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
84
 
 
 
 
 
 
 
 
 
 
 
85
  /**
86
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
87
  */
@@ -92,6 +102,16 @@ class AmazonDynamoDB extends CFRuntime
92
  */
93
  const REGION_TOKYO = self::REGION_APAC_NE1;
94
 
 
 
 
 
 
 
 
 
 
 
95
  /**
96
  * Default service endpoint.
97
  */
@@ -304,7 +324,7 @@ class AmazonDynamoDB extends CFRuntime
304
  /**
305
  * This allows you to explicitly sets the region for the service to use.
306
  *
307
- * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_NE1>.
308
  * @return $this A reference to the current instance.
309
  */
310
  public function set_region($region)
@@ -577,6 +597,7 @@ class AmazonDynamoDB extends CFRuntime
577
  * </ul></li>
578
  * </ul></li>
579
  * <li><code>AttributesToGet</code> - <code>string|array</code> - Optional - List of <code>Attribute</code> names. If attribute names are not specified then all attributes will be returned. If some attributes are not found, they will not appear in the result. Pass a string for a single value, or an indexed array for multiple values.</li>
 
580
  * </ul></li>
581
  * </ul></li>
582
  * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
21
  * Amazon DynamoDB removes traditional scalability limitations on data storage while maintaining
22
  * low latency and predictable performance.
23
  *
24
+ * @version 2012.11.12
25
  * @license See the included NOTICE.md file for complete information.
26
  * @copyright See the included NOTICE.md file for complete information.
27
  * @link http://aws.amazon.com/dynamodb/ Amazon DynamoDB
82
  */
83
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
84
 
85
+ /**
86
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
87
+ */
88
+ const REGION_APAC_SE2 = 'dynamodb.ap-southeast-2.amazonaws.com';
89
+
90
+ /**
91
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
92
+ */
93
+ const REGION_SYDNEY = self::REGION_APAC_SE2;
94
+
95
  /**
96
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
97
  */
102
  */
103
  const REGION_TOKYO = self::REGION_APAC_NE1;
104
 
105
+ /**
106
+ * Specify the queue URL for the South America (Sao Paulo) Region.
107
+ */
108
+ const REGION_SA_E1 = 'dynamodb.sa-east-1.amazonaws.com';
109
+
110
+ /**
111
+ * Specify the queue URL for the South America (Sao Paulo) Region.
112
+ */
113
+ const REGION_SAO_PAULO = self::REGION_SA_E1;
114
+
115
  /**
116
  * Default service endpoint.
117
  */
324
  /**
325
  * This allows you to explicitly sets the region for the service to use.
326
  *
327
+ * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_SE2>, <REGION_APAC_NE1>, <REGION_SA_E1>.
328
  * @return $this A reference to the current instance.
329
  */
330
  public function set_region($region)
597
  * </ul></li>
598
  * </ul></li>
599
  * <li><code>AttributesToGet</code> - <code>string|array</code> - Optional - List of <code>Attribute</code> names. If attribute names are not specified then all attributes will be returned. If some attributes are not found, they will not appear in the result. Pass a string for a single value, or an indexed array for multiple values.</li>
600
+ * <li><code>ConsistentRead</code> - <code>boolean</code> - Optional - If set to <code>true</code>, then a consistent read is issued. Otherwise eventually-consistent is used.</li>
601
  * </ul></li>
602
  * </ul></li>
603
  * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
libs/aws/services/ec2.class.php CHANGED
@@ -29,7 +29,7 @@
29
  *
30
  * Visit <a href="http://aws.amazon.com/ec2/">http://aws.amazon.com/ec2/</a> for more information.
31
  *
32
- * @version 2012.09.18
33
  * @license See the included NOTICE.md file for complete information.
34
  * @copyright See the included NOTICE.md file for complete information.
35
  * @link http://aws.amazon.com/ec2/ Amazon EC2
@@ -90,6 +90,16 @@ class AmazonEC2 extends CFRuntime
90
  */
91
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
92
 
 
 
 
 
 
 
 
 
 
 
93
  /**
94
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
95
  */
@@ -191,7 +201,7 @@ class AmazonEC2 extends CFRuntime
191
  /**
192
  * This allows you to explicitly sets the region for the service to use.
193
  *
194
- * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_NE1>, <REGION_US_GOV1>, <REGION_SA_E1>.
195
  * @return $this A reference to the current instance.
196
  */
197
  public function set_region($region)
29
  *
30
  * Visit <a href="http://aws.amazon.com/ec2/">http://aws.amazon.com/ec2/</a> for more information.
31
  *
32
+ * @version 2012.11.12
33
  * @license See the included NOTICE.md file for complete information.
34
  * @copyright See the included NOTICE.md file for complete information.
35
  * @link http://aws.amazon.com/ec2/ Amazon EC2
90
  */
91
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
92
 
93
+ /**
94
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
95
+ */
96
+ const REGION_APAC_SE2 = 'ec2.ap-southeast-2.amazonaws.com';
97
+
98
+ /**
99
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
100
+ */
101
+ const REGION_SYDNEY = self::REGION_APAC_SE2;
102
+
103
  /**
104
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
105
  */
201
  /**
202
  * This allows you to explicitly sets the region for the service to use.
203
  *
204
+ * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_SE2>, <REGION_APAC_NE1>, <REGION_US_GOV1>, <REGION_SA_E1>.
205
  * @return $this A reference to the current instance.
206
  */
207
  public function set_region($region)
libs/aws/services/elasticbeanstalk.class.php CHANGED
@@ -28,13 +28,11 @@
28
  *
29
  * <strong>Endpoints</strong>
30
  *
31
- * AWS Elastic Beanstalk supports the following region-specific endpoint:
32
- *
33
- * <ul>
34
- * <li>https://elasticbeanstalk.us-east-1.amazonaws.com</li>
35
- * </ul>
36
  *
37
- * @version 2012.06.21
38
  * @license See the included NOTICE.md file for complete information.
39
  * @copyright See the included NOTICE.md file for complete information.
40
  * @link http://aws.amazon.com/elasticbeanstalk/ AWS ElasticBeanstalk
@@ -55,16 +53,6 @@ class AmazonElasticBeanstalk extends CFRuntime
55
  */
56
  const REGION_VIRGINIA = self::REGION_US_E1;
57
 
58
- /**
59
- * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
60
- */
61
- const REGION_APAC_NE1 = 'elasticbeanstalk.ap-northeast-1.amazonaws.com';
62
-
63
- /**
64
- * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
65
- */
66
- const REGION_TOKYO = self::REGION_APAC_NE1;
67
-
68
  /**
69
  * Specify the queue URL for the United States West (Northern California) Region.
70
  */
@@ -95,6 +83,36 @@ class AmazonElasticBeanstalk extends CFRuntime
95
  */
96
  const REGION_IRELAND = self::REGION_EU_W1;
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  /**
99
  * Default service endpoint.
100
  */
@@ -132,7 +150,7 @@ class AmazonElasticBeanstalk extends CFRuntime
132
  /**
133
  * This allows you to explicitly sets the region for the service to use.
134
  *
135
- * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_APAC_NE1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>.
136
  * @return $this A reference to the current instance.
137
  */
138
  public function set_region($region)
@@ -365,7 +383,8 @@ class AmazonElasticBeanstalk extends CFRuntime
365
  }
366
 
367
  /**
368
- * Deletes the specified application along with all associated versions and configurations.
 
369
  *
370
  * <p class="note">
371
  * You cannot delete an application that has a running environment.
@@ -373,6 +392,7 @@ class AmazonElasticBeanstalk extends CFRuntime
373
  *
374
  * @param string $application_name (Required) The name of the application to delete.
375
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
 
376
  * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
377
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
378
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
28
  *
29
  * <strong>Endpoints</strong>
30
  *
31
+ * For a list of region-specific endpoints that AWS Elastic Beanstalk supports, go to <a href=
32
+ * "http://docs.amazonwebservices.com/general/latest/gr/rande.html#elasticbeanstalk_region">Regions
33
+ * and Endpoints</a> in the <em>Amazon Web Services Glossary</em>.
 
 
34
  *
35
+ * @version 2012.11.12
36
  * @license See the included NOTICE.md file for complete information.
37
  * @copyright See the included NOTICE.md file for complete information.
38
  * @link http://aws.amazon.com/elasticbeanstalk/ AWS ElasticBeanstalk
53
  */
54
  const REGION_VIRGINIA = self::REGION_US_E1;
55
 
 
 
 
 
 
 
 
 
 
 
56
  /**
57
  * Specify the queue URL for the United States West (Northern California) Region.
58
  */
83
  */
84
  const REGION_IRELAND = self::REGION_EU_W1;
85
 
86
+ /**
87
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
88
+ */
89
+ const REGION_APAC_SE1 = 'elasticbeanstalk.ap-southeast-1.amazonaws.com';
90
+
91
+ /**
92
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
93
+ */
94
+ const REGION_SINGAPORE = self::REGION_APAC_SE1;
95
+
96
+ /**
97
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
98
+ */
99
+ const REGION_APAC_SE2 = 'elasticbeanstalk.ap-southeast-2.amazonaws.com';
100
+
101
+ /**
102
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
103
+ */
104
+ const REGION_SYDNEY = self::REGION_APAC_SE2;
105
+
106
+ /**
107
+ * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
108
+ */
109
+ const REGION_APAC_NE1 = 'elasticbeanstalk.ap-northeast-1.amazonaws.com';
110
+
111
+ /**
112
+ * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
113
+ */
114
+ const REGION_TOKYO = self::REGION_APAC_NE1;
115
+
116
  /**
117
  * Default service endpoint.
118
  */
150
  /**
151
  * This allows you to explicitly sets the region for the service to use.
152
  *
153
+ * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_SE2>, <REGION_APAC_NE1>.
154
  * @return $this A reference to the current instance.
155
  */
156
  public function set_region($region)
383
  }
384
 
385
  /**
386
+ * Deletes the specified application along with all associated versions and configurations. The
387
+ * application versions will not be deleted from your Amazon S3 bucket.
388
  *
389
  * <p class="note">
390
  * You cannot delete an application that has a running environment.
392
  *
393
  * @param string $application_name (Required) The name of the application to delete.
394
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
395
+ * <li><code>TerminateEnvByForce</code> - <code>boolean</code> - Optional - When set to true, running environments will be terminated before deleting the application.</li>
396
  * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
397
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
398
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
libs/aws/services/elb.class.php CHANGED
@@ -20,7 +20,7 @@
20
  * application loads between two or more EC2 instances. Elastic Load Balancing enables
21
  * availability through redundancy and supports traffic growth of your application.
22
  *
23
- * @version 2012.06.25
24
  * @license See the included NOTICE.md file for complete information.
25
  * @copyright See the included NOTICE.md file for complete information.
26
  * @link http://aws.amazon.com/elasticloadbalancing/ Elastic Load Balancing
@@ -81,6 +81,16 @@ class AmazonELB extends CFRuntime
81
  */
82
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
83
 
 
 
 
 
 
 
 
 
 
 
84
  /**
85
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
86
  */
@@ -138,7 +148,7 @@ class AmazonELB extends CFRuntime
138
  /**
139
  * This allows you to explicitly sets the region for the service to use.
140
  *
141
- * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_NE1>, <REGION_SA_E1>.
142
  * @return $this A reference to the current instance.
143
  */
144
  public function set_region($region)
20
  * application loads between two or more EC2 instances. Elastic Load Balancing enables
21
  * availability through redundancy and supports traffic growth of your application.
22
  *
23
+ * @version 2012.11.12
24
  * @license See the included NOTICE.md file for complete information.
25
  * @copyright See the included NOTICE.md file for complete information.
26
  * @link http://aws.amazon.com/elasticloadbalancing/ Elastic Load Balancing
81
  */
82
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
83
 
84
+ /**
85
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
86
+ */
87
+ const REGION_APAC_SE2 = 'elasticloadbalancing.ap-southeast-2.amazonaws.com';
88
+
89
+ /**
90
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
91
+ */
92
+ const REGION_SYDNEY = self::REGION_APAC_SE2;
93
+
94
  /**
95
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
96
  */
148
  /**
149
  * This allows you to explicitly sets the region for the service to use.
150
  *
151
+ * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_SE2>, <REGION_APAC_NE1>, <REGION_SA_E1>.
152
  * @return $this A reference to the current instance.
153
  */
154
  public function set_region($region)
libs/aws/services/emr.class.php CHANGED
@@ -23,7 +23,7 @@
23
  * tasks such as web indexing, data mining, log file analysis, machine learning, scientific
24
  * simulation, and data warehousing.
25
  *
26
- * @version 2012.01.16
27
  * @license See the included NOTICE.md file for complete information.
28
  * @copyright See the included NOTICE.md file for complete information.
29
  * @link http://aws.amazon.com/elasticmapreduce/ Amazon Elastic MapReduce
@@ -84,6 +84,16 @@ class AmazonEMR extends CFRuntime
84
  */
85
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
86
 
 
 
 
 
 
 
 
 
 
 
87
  /**
88
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
89
  */
@@ -141,7 +151,7 @@ class AmazonEMR extends CFRuntime
141
  /**
142
  * This allows you to explicitly sets the region for the service to use.
143
  *
144
- * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_NE1>, <REGION_SA_E1>.
145
  * @return $this A reference to the current instance.
146
  */
147
  public function set_region($region)
23
  * tasks such as web indexing, data mining, log file analysis, machine learning, scientific
24
  * simulation, and data warehousing.
25
  *
26
+ * @version 2012.11.12
27
  * @license See the included NOTICE.md file for complete information.
28
  * @copyright See the included NOTICE.md file for complete information.
29
  * @link http://aws.amazon.com/elasticmapreduce/ Amazon Elastic MapReduce
84
  */
85
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
86
 
87
+ /**
88
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
89
+ */
90
+ const REGION_APAC_SE2 = 'elasticmapreduce.ap-southeast-2.amazonaws.com';
91
+
92
+ /**
93
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
94
+ */
95
+ const REGION_SYDNEY = self::REGION_APAC_SE2;
96
+
97
  /**
98
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
99
  */
151
  /**
152
  * This allows you to explicitly sets the region for the service to use.
153
  *
154
+ * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_SE2>, <REGION_APAC_NE1>, <REGION_SA_E1>.
155
  * @return $this A reference to the current instance.
156
  */
157
  public function set_region($region)
libs/aws/services/s3.class.php CHANGED
@@ -49,7 +49,7 @@ class S3_Exception extends Exception {}
49
  *
50
  * Visit <http://aws.amazon.com/s3/> for more information.
51
  *
52
- * @version 2012.08.28
53
  * @license See the included NOTICE.md file for more information.
54
  * @copyright See the included NOTICE.md file for more information.
55
  * @link http://aws.amazon.com/s3/ Amazon Simple Storage Service
@@ -115,6 +115,16 @@ class AmazonS3 extends CFRuntime
115
  */
116
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
117
 
 
 
 
 
 
 
 
 
 
 
118
  /**
119
  * Specify the queue URL for the Asia Pacific (Japan) Region.
120
  */
@@ -209,6 +219,16 @@ class AmazonS3 extends CFRuntime
209
  */
210
  const REGION_SINGAPORE_WEBSITE = self::REGION_APAC_SE1_WEBSITE;
211
 
 
 
 
 
 
 
 
 
 
 
212
  /**
213
  * Specify the queue URL for the Asia Pacific (Japan) Website Region.
214
  */
@@ -345,6 +365,11 @@ class AmazonS3 extends CFRuntime
345
  */
346
  const STORAGE_REDUCED = 'REDUCED_REDUNDANCY';
347
 
 
 
 
 
 
348
 
349
  /*%******************************************************************************************%*/
350
  // PROPERTIES
@@ -414,6 +439,11 @@ class AmazonS3 extends CFRuntime
414
  */
415
  public $cors_config_xml;
416
 
 
 
 
 
 
417
  /**
418
  * The DNS vs. Path-style setting.
419
  */
@@ -457,6 +487,7 @@ class AmazonS3 extends CFRuntime
457
  $this->object_expiration_xml = '<?xml version="1.0" encoding="utf-8"?><LifecycleConfiguration/>';
458
  $this->bucket_tagging_xml = '<?xml version="1.0" encoding="utf-8"?><Tagging><TagSet/></Tagging>';
459
  $this->cors_config_xml = '<?xml version="1.0" encoding="utf-8"?><CORSConfiguration />';
 
460
 
461
  parent::__construct($options);
462
  }
@@ -1353,6 +1384,7 @@ class AmazonS3 extends CFRuntime
1353
  * <li><code>headers</code> - <code>array</code> - Optional - Standard HTTP headers to send along in the request. Accepts an associative array of key-value pairs.</li>
1354
  * <li><code>length</code> - <code>integer</code> - Optional - The size of the object in bytes. For more information, see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.13">RFC 2616, section 14.13</a>. The value can also be passed to the <code>header</code> option as <code>Content-Length</code>.</li>
1355
  * <li><code>meta</code> - <code>array</code> - Optional - An associative array of key-value pairs. Represented by <code>x-amz-meta-:</code>. Any header starting with this prefix is considered user metadata. It will be stored with the object and returned when you retrieve the object. The total size of the HTTP request, not including the body, must be less than 4 KB.</li>
 
1356
  * <li><code>seekTo</code> - <code>integer</code> - Optional - The starting position in bytes within the file/stream to upload from.</li>
1357
  * <li><code>storage</code> - <code>string</code> - Optional - Whether to use Standard or Reduced Redundancy storage. [Allowed values: <code>AmazonS3::STORAGE_STANDARD</code>, <code>AmazonS3::STORAGE_REDUCED</code>]. The default value is <code>STORAGE_STANDARD</code>.</li>
1358
  * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
@@ -1409,6 +1441,13 @@ class AmazonS3 extends CFRuntime
1409
  unset($opt['encryption']);
1410
  }
1411
 
 
 
 
 
 
 
 
1412
  // Handle meta tags. Can also be passed as an HTTP header.
1413
  if (isset($opt['meta']))
1414
  {
@@ -1675,6 +1714,8 @@ class AmazonS3 extends CFRuntime
1675
  /**
1676
  * Copies an Amazon S3 object to a new location, whether in the same Amazon S3 region, bucket, or otherwise.
1677
  *
 
 
1678
  * @param array $source (Required) The bucket and file name to copy from. The following keys must be set: <ul>
1679
  * <li><code>bucket</code> - <code>string</code> - Required - Specifies the name of the bucket containing the source object.</li>
1680
  * <li><code>filename</code> - <code>string</code> - Required - Specifies the file name of the source object to copy.</li></ul>
@@ -3629,6 +3670,7 @@ class AmazonS3 extends CFRuntime
3629
  * <li><code>limit</code> - <code>integer</code> - Optional - The maximum number of concurrent uploads done by cURL. Gets passed to <code>CFBatchRequest</code>.</li>
3630
  * <li><code>meta</code> - <code>array</code> - Optional - An associative array of key-value pairs. Any header starting with <code>x-amz-meta-:</code> is considered user metadata. It will be stored with the object and returned when you retrieve the object. The total size of the HTTP request, not including the body, must be less than 4 KB.</li>
3631
  * <li><code>partSize</code> - <code>integer</code> - Optional - The size of an individual part. The size may not be smaller than 5 MB or larger than 500 MB. The default value is 50 MB.</li>
 
3632
  * <li><code>seekTo</code> - <code>integer</code> - Optional - The starting position in bytes for the first piece of the file/stream to upload.</li>
3633
  * <li><code>storage</code> - <code>string</code> - Optional - Whether to use Standard or Reduced Redundancy storage. [Allowed values: <code>AmazonS3::STORAGE_STANDARD</code>, <code>AmazonS3::STORAGE_REDUCED</code>]. The default value is <code>STORAGE_STANDARD</code>.</li>
3634
  * <li><code>uploadId</code> - <code>string</code> - Optional - An upload ID identifying an existing multipart upload to use. If this option is not set, one will be created automatically.</li>
@@ -3653,6 +3695,13 @@ class AmazonS3 extends CFRuntime
3653
  unset($opt['length']);
3654
  }
3655
 
 
 
 
 
 
 
 
3656
  if (!isset($opt['fileUpload']))
3657
  {
3658
  throw new S3_Exception('The `fileUpload` option is required in ' . __FUNCTION__ . '().');
@@ -3938,14 +3987,13 @@ class AmazonS3 extends CFRuntime
3938
 
3939
 
3940
  /*%******************************************************************************************%*/
3941
- // OBJECT EXPIRATION
3942
 
3943
  /**
3944
- * Enables the ability to specify an expiry period for objects when an object should be deleted,
3945
- * measured as number of days from creation time. Amazon S3 guarantees that the object will be
3946
- * deleted when the expiration time is passed.
3947
  *
3948
- * This feature is also known as "lifecycle" (e.g., in the AWS Console).
 
3949
  *
3950
  * @param string $bucket (Required) The name of the bucket to use.
3951
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
@@ -3953,8 +4001,14 @@ class AmazonS3 extends CFRuntime
3953
  * <li><code>x</code> - <code>array</code> - Required - This represents a simple array index. <ul>
3954
  * <li><code>id</code> - <code>string</code> - Optional - Unique identifier for the rule. The value cannot be longer than 255 characters.</li>
3955
  * <li><code>prefix</code> - <code>string</code> - Required - The Amazon S3 object prefix which targets the file(s) for expiration.</li>
3956
- * <li><code>expiration</code> - <code>array</code> - Required - The container for the unit of measurement by which the expiration time is calculated. <ul>
3957
- * <li><code>days</code> - <code>integer</code> - Required - The number of days until the targetted objects expire from the bucket.</li>
 
 
 
 
 
 
3958
  * </ul></li>
3959
  * <li><code>enabled</code> - <code>boolean</code> - Optional - Whether or not to enable this rule-set. A value of <code>true</code> enables the rule-set. A value of <code>false</code> disables the rule-set. The default value is <code>true</code>.</li>
3960
  * </ul></li>
@@ -3963,7 +4017,7 @@ class AmazonS3 extends CFRuntime
3963
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
3964
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
3965
  */
3966
- public function create_object_expiration_config($bucket, $opt = null)
3967
  {
3968
  if (!$opt) $opt = array();
3969
  $opt['verb'] = 'PUT';
@@ -4026,14 +4080,39 @@ class AmazonS3 extends CFRuntime
4026
  {
4027
  $xexpiration = $xrule->addChild('Expiration');
4028
 
4029
- if (isset($rule['expiration']['days']))
 
 
 
 
4030
  {
4031
  $xexpiration->addChild('Days', $rule['expiration']['days']);
4032
  }
4033
  }
4034
- else
 
 
4035
  {
4036
- throw new S3_Exception('Each rule requires a "expiration" in the ' . __FUNCTION__ . ' method.');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4037
  }
4038
  }
4039
  }
@@ -4045,9 +4124,7 @@ class AmazonS3 extends CFRuntime
4045
  }
4046
 
4047
  /**
4048
- * Retrieves the expiry period (i.e., lifecycle) for objects.
4049
- *
4050
- * This feature is also known as "lifecycle" (e.g., in the AWS Console).
4051
  *
4052
  * @param string $bucket (Required) The name of the bucket to use.
4053
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
@@ -4055,7 +4132,7 @@ class AmazonS3 extends CFRuntime
4055
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
4056
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
4057
  */
4058
- public function get_object_expiration_config($bucket, $opt = null)
4059
  {
4060
  if (!$opt) $opt = array();
4061
  $opt['verb'] = 'GET';
@@ -4066,9 +4143,7 @@ class AmazonS3 extends CFRuntime
4066
  }
4067
 
4068
  /**
4069
- * Deletes the expiry period (i.e., lifecycle) for objects.
4070
- *
4071
- * This feature is also known as "lifecycle" (e.g., in the AWS Console).
4072
  *
4073
  * @param string $bucket (Required) The name of the bucket to use.
4074
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
@@ -4076,7 +4151,7 @@ class AmazonS3 extends CFRuntime
4076
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
4077
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
4078
  */
4079
- public function delete_object_expiration_config($bucket, $opt = null)
4080
  {
4081
  if (!$opt) $opt = array();
4082
  $opt['verb'] = 'DELETE';
@@ -4086,6 +4161,65 @@ class AmazonS3 extends CFRuntime
4086
  return $this->authenticate($bucket, $opt);
4087
  }
4088
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4089
 
4090
  /*%******************************************************************************************%*/
4091
  // BUCKET TAGS
@@ -4211,6 +4345,12 @@ class AmazonS3 extends CFRuntime
4211
  // New rule node
4212
  $xrule = $xml->addChild('CORSRule');
4213
 
 
 
 
 
 
 
4214
  // ExposeHeader node
4215
  if (isset($rule_set['expose_header']))
4216
  {
49
  *
50
  * Visit <http://aws.amazon.com/s3/> for more information.
51
  *
52
+ * @version 2012.10.02
53
  * @license See the included NOTICE.md file for more information.
54
  * @copyright See the included NOTICE.md file for more information.
55
  * @link http://aws.amazon.com/s3/ Amazon Simple Storage Service
115
  */
116
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
117
 
118
+ /**
119
+ * Specify the queue URL for the Asia Pacific (Sydney) Region.
120
+ */
121
+ const REGION_APAC_SE2 = 's3-ap-southeast-2.amazonaws.com';
122
+
123
+ /**
124
+ * Specify the queue URL for the Asia Pacific (Sydney) Region.
125
+ */
126
+ const REGION_SYDNEY = self::REGION_APAC_SE2;
127
+
128
  /**
129
  * Specify the queue URL for the Asia Pacific (Japan) Region.
130
  */
219
  */
220
  const REGION_SINGAPORE_WEBSITE = self::REGION_APAC_SE1_WEBSITE;
221
 
222
+ /**
223
+ * Specify the queue URL for the Asia Pacific (Sydney) Website Region.
224
+ */
225
+ const REGION_APAC_SE2_WEBSITE = 's3-website-ap-southeast-2.amazonaws.com';
226
+
227
+ /**
228
+ * Specify the queue URL for the Asia Pacific (Sydney) Website Region.
229
+ */
230
+ const REGION_SYDNEY_WEBSITE = self::REGION_APAC_SE2_WEBSITE;
231
+
232
  /**
233
  * Specify the queue URL for the Asia Pacific (Japan) Website Region.
234
  */
365
  */
366
  const STORAGE_REDUCED = 'REDUCED_REDUNDANCY';
367
 
368
+ /**
369
+ * Storage in Glacier.
370
+ */
371
+ const STORAGE_GLACIER = 'GLACIER';
372
+
373
 
374
  /*%******************************************************************************************%*/
375
  // PROPERTIES
439
  */
440
  public $cors_config_xml;
441
 
442
+ /**
443
+ * The base XML elements to use for restoration requests.
444
+ */
445
+ public $restore_request_xml;
446
+
447
  /**
448
  * The DNS vs. Path-style setting.
449
  */
487
  $this->object_expiration_xml = '<?xml version="1.0" encoding="utf-8"?><LifecycleConfiguration/>';
488
  $this->bucket_tagging_xml = '<?xml version="1.0" encoding="utf-8"?><Tagging><TagSet/></Tagging>';
489
  $this->cors_config_xml = '<?xml version="1.0" encoding="utf-8"?><CORSConfiguration />';
490
+ $this->restore_request_xml = '<?xml version="1.0" encoding="utf-8"?><RestoreRequest xmlns="http://s3.amazonaws.com/doc/' . $this->api_version . '"/>';
491
 
492
  parent::__construct($options);
493
  }
1384
  * <li><code>headers</code> - <code>array</code> - Optional - Standard HTTP headers to send along in the request. Accepts an associative array of key-value pairs.</li>
1385
  * <li><code>length</code> - <code>integer</code> - Optional - The size of the object in bytes. For more information, see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.13">RFC 2616, section 14.13</a>. The value can also be passed to the <code>header</code> option as <code>Content-Length</code>.</li>
1386
  * <li><code>meta</code> - <code>array</code> - Optional - An associative array of key-value pairs. Represented by <code>x-amz-meta-:</code>. Any header starting with this prefix is considered user metadata. It will be stored with the object and returned when you retrieve the object. The total size of the HTTP request, not including the body, must be less than 4 KB.</li>
1387
+ * <li><code>redirectTo</code> - <code>string</code> - Optional - The URI to send an HTTP 301 redirect to when accessing this object. Value must be prefixed either <code>/</code>, <code>http://</code> or <code>https://</code>.</li>
1388
  * <li><code>seekTo</code> - <code>integer</code> - Optional - The starting position in bytes within the file/stream to upload from.</li>
1389
  * <li><code>storage</code> - <code>string</code> - Optional - Whether to use Standard or Reduced Redundancy storage. [Allowed values: <code>AmazonS3::STORAGE_STANDARD</code>, <code>AmazonS3::STORAGE_REDUCED</code>]. The default value is <code>STORAGE_STANDARD</code>.</li>
1390
  * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
1441
  unset($opt['encryption']);
1442
  }
1443
 
1444
+ // URI to redirect to. Can also be passed as an HTTP header.
1445
+ if (isset($opt['redirectTo']))
1446
+ {
1447
+ $opt['headers']['x-amz-website-redirect-location'] = $opt['redirectTo'];
1448
+ unset($opt['redirectTo']);
1449
+ }
1450
+
1451
  // Handle meta tags. Can also be passed as an HTTP header.
1452
  if (isset($opt['meta']))
1453
  {
1714
  /**
1715
  * Copies an Amazon S3 object to a new location, whether in the same Amazon S3 region, bucket, or otherwise.
1716
  *
1717
+ * NOTE: Object redirect locations are not carried over when an object is copied.
1718
+ *
1719
  * @param array $source (Required) The bucket and file name to copy from. The following keys must be set: <ul>
1720
  * <li><code>bucket</code> - <code>string</code> - Required - Specifies the name of the bucket containing the source object.</li>
1721
  * <li><code>filename</code> - <code>string</code> - Required - Specifies the file name of the source object to copy.</li></ul>
3670
  * <li><code>limit</code> - <code>integer</code> - Optional - The maximum number of concurrent uploads done by cURL. Gets passed to <code>CFBatchRequest</code>.</li>
3671
  * <li><code>meta</code> - <code>array</code> - Optional - An associative array of key-value pairs. Any header starting with <code>x-amz-meta-:</code> is considered user metadata. It will be stored with the object and returned when you retrieve the object. The total size of the HTTP request, not including the body, must be less than 4 KB.</li>
3672
  * <li><code>partSize</code> - <code>integer</code> - Optional - The size of an individual part. The size may not be smaller than 5 MB or larger than 500 MB. The default value is 50 MB.</li>
3673
+ * <li><code>redirectTo</code> - <code>string</code> - Optional - The URI to send an HTTP 301 redirect to when accessing this object. Value must be prefixed either <code>/</code>, <code>http://</code> or <code>https://</code>.</li>
3674
  * <li><code>seekTo</code> - <code>integer</code> - Optional - The starting position in bytes for the first piece of the file/stream to upload.</li>
3675
  * <li><code>storage</code> - <code>string</code> - Optional - Whether to use Standard or Reduced Redundancy storage. [Allowed values: <code>AmazonS3::STORAGE_STANDARD</code>, <code>AmazonS3::STORAGE_REDUCED</code>]. The default value is <code>STORAGE_STANDARD</code>.</li>
3676
  * <li><code>uploadId</code> - <code>string</code> - Optional - An upload ID identifying an existing multipart upload to use. If this option is not set, one will be created automatically.</li>
3695
  unset($opt['length']);
3696
  }
3697
 
3698
+ // URI to redirect to. Can also be passed as an HTTP header.
3699
+ if (isset($opt['redirectTo']))
3700
+ {
3701
+ $opt['headers']['x-amz-website-redirect-location'] = $opt['redirectTo'];
3702
+ unset($opt['redirectTo']);
3703
+ }
3704
+
3705
  if (!isset($opt['fileUpload']))
3706
  {
3707
  throw new S3_Exception('The `fileUpload` option is required in ' . __FUNCTION__ . '().');
3987
 
3988
 
3989
  /*%******************************************************************************************%*/
3990
+ // OBJECT LIFECYCLE
3991
 
3992
  /**
3993
+ * Enables the ability to specify a configuration that relates to the object's _lifecycle_.
 
 
3994
  *
3995
+ * **NOTE:** In cases where the lifecycle configuration dictates that an object should be deleted, Amazon S3
3996
+ * guarantees that the object will be deleted when the expiration time is passed.
3997
  *
3998
  * @param string $bucket (Required) The name of the bucket to use.
3999
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
4001
  * <li><code>x</code> - <code>array</code> - Required - This represents a simple array index. <ul>
4002
  * <li><code>id</code> - <code>string</code> - Optional - Unique identifier for the rule. The value cannot be longer than 255 characters.</li>
4003
  * <li><code>prefix</code> - <code>string</code> - Required - The Amazon S3 object prefix which targets the file(s) for expiration.</li>
4004
+ * <li><code>expiration</code> - <code>array</code> - Optional - The container for the unit of measurement by which the expiration time is calculated. At least one action (either <code>transition</code> or <code>expiration</code>) is required within one lifecycle rule. <ul>
4005
+ * <li><code>date</code> - <code>string</code> - Conditionally Required - The timestamp for when the targetted objects are to be moved or expired from the bucket. Should be in ISO 8601 Format. HH:MM:SS will be enforced as midnight GMT/UTC.</li>
4006
+ * <li><code>days</code> - <code>integer</code> - Conditionally Required - The number of days until the targetted objects are to be moved or expired from the bucket. Must be a positive integer.</li>
4007
+ * </ul></li>
4008
+ * <li><code>transition</code> - <code>array</code> - Optional - The container for the element that describes a transition action. At least one action (either <code>transition</code> or <code>expiration</code>) is required within one lifecycle rule. <ul>
4009
+ * <li><code>date</code> - <code>string</code> - Conditionally Required - The timestamp for when the targetted objects are to be moved or expired from the bucket. Should be in ISO 8601 Format. HH:MM:SS will be enforced as midnight GMT/UTC.</li>
4010
+ * <li><code>days</code> - <code>integer</code> - Conditionally Required - The number of days until the targetted objects are to be moved or expired from the bucket. Must be a positive integer.</li>
4011
+ * <li><code>storage</code> - <code>string</code> - Required - The storage setting of an object. [Allowed values: <code>AmazonS3::STORAGE_STANDARD</code>, <code>AmazonS3::STORAGE_REDUCED</code>, <code>STORAGE_GLACIER</code>]. The default value is <code>STORAGE_STANDARD</code>.</li>
4012
  * </ul></li>
4013
  * <li><code>enabled</code> - <code>boolean</code> - Optional - Whether or not to enable this rule-set. A value of <code>true</code> enables the rule-set. A value of <code>false</code> disables the rule-set. The default value is <code>true</code>.</li>
4014
  * </ul></li>
4017
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
4018
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
4019
  */
4020
+ public function create_lifecycle_config($bucket, $opt = null)
4021
  {
4022
  if (!$opt) $opt = array();
4023
  $opt['verb'] = 'PUT';
4080
  {
4081
  $xexpiration = $xrule->addChild('Expiration');
4082
 
4083
+ if (isset($rule['expiration']['date']))
4084
+ {
4085
+ $xexpiration->addChild('Date', $rule['expiration']['date']);
4086
+ }
4087
+ elseif (isset($rule['expiration']['days']))
4088
  {
4089
  $xexpiration->addChild('Days', $rule['expiration']['days']);
4090
  }
4091
  }
4092
+
4093
+ // Transition
4094
+ if (isset($rule['transition']))
4095
  {
4096
+ $xtransition = $xrule->addChild('Transition');
4097
+
4098
+ if (isset($rule['transition']['date']))
4099
+ {
4100
+ $xtransition->addChild('Date', $rule['transition']['date']);
4101
+ }
4102
+ elseif (isset($rule['transition']['days']))
4103
+ {
4104
+ $xtransition->addChild('Days', $rule['transition']['days']);
4105
+ }
4106
+
4107
+ if (isset($rule['transition']['storage']))
4108
+ {
4109
+ $xtransition->addChild('StorageClass', $rule['transition']['storage']);
4110
+ }
4111
+ }
4112
+
4113
+ if (!isset($rule['expiration']) && !isset($rule['transition']))
4114
+ {
4115
+ throw new S3_Exception('Each rule requires a either a "transition" or "expiration" entry in the ' . __FUNCTION__ . ' method.');
4116
  }
4117
  }
4118
  }
4124
  }
4125
 
4126
  /**
4127
+ * Retrieves the configuration that relates to the object's _lifecycle_.
 
 
4128
  *
4129
  * @param string $bucket (Required) The name of the bucket to use.
4130
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
4132
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
4133
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
4134
  */
4135
+ public function get_lifecycle_config($bucket, $opt = null)
4136
  {
4137
  if (!$opt) $opt = array();
4138
  $opt['verb'] = 'GET';
4143
  }
4144
 
4145
  /**
4146
+ * Deletes the configuration that relates to the object's _lifecycle_.
 
 
4147
  *
4148
  * @param string $bucket (Required) The name of the bucket to use.
4149
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
4151
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
4152
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
4153
  */
4154
+ public function delete_lifecycle_config($bucket, $opt = null)
4155
  {
4156
  if (!$opt) $opt = array();
4157
  $opt['verb'] = 'DELETE';
4161
  return $this->authenticate($bucket, $opt);
4162
  }
4163
 
4164
+ /**
4165
+ * Restore an object archived in Amazon Glacier back to Amazon S3.
4166
+ *
4167
+ * @param string $bucket (Required) The name of the bucket to use.
4168
+ * @param string $filename (Required) The file name for the object.
4169
+ * @param integer $days (Required) The number of days until the targetted objects are to be moved or expired from the bucket. Must be a positive integer.
4170
+ * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
4171
+ * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
4172
+ * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
4173
+ * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
4174
+ */
4175
+ public function restore_archived_object($bucket, $filename, $days, $opt = null)
4176
+ {
4177
+ if (!$opt) $opt = array();
4178
+ $opt['verb'] = 'POST';
4179
+ $opt['sub_resource'] = 'restore';
4180
+ $opt['headers'] = array(
4181
+ 'Content-Type' => 'application/xml'
4182
+ );
4183
+
4184
+ $xml = simplexml_load_string($this->restore_request_xml, $this->parser_class);
4185
+ $xml->addChild('Days', (integer) $days);
4186
+
4187
+ $opt['body'] = $xml->asXML();
4188
+
4189
+ // Authenticate to S3
4190
+ return $this->authenticate($bucket, $opt);
4191
+ }
4192
+
4193
+ /**
4194
+ * Alias of {@see AmazonS3::create_lifecycle_config()}.
4195
+ *
4196
+ * @deprecated
4197
+ */
4198
+ public function create_object_expiration_config($bucket, $opt = null)
4199
+ {
4200
+ return $this->create_lifecycle_config($bucket, $opt);
4201
+ }
4202
+
4203
+ /**
4204
+ * Alias of {@see AmazonS3::get_lifecycle_config()}.
4205
+ *
4206
+ * @deprecated
4207
+ */
4208
+ public function get_object_expiration_config($bucket, $opt = null)
4209
+ {
4210
+ return $this->get_lifecycle_config($bucket, $opt);
4211
+ }
4212
+
4213
+ /**
4214
+ * Alias of {@see AmazonS3::delete_lifecycle_config()}.
4215
+ *
4216
+ * @deprecated
4217
+ */
4218
+ public function delete_object_expiration_config($bucket, $opt = null)
4219
+ {
4220
+ return $this->delete_lifecycle_config($bucket, $opt);
4221
+ }
4222
+
4223
 
4224
  /*%******************************************************************************************%*/
4225
  // BUCKET TAGS
4345
  // New rule node
4346
  $xrule = $xml->addChild('CORSRule');
4347
 
4348
+ // ID node
4349
+ if (isset($rule_set['id']))
4350
+ {
4351
+ $xrule->addChild('ID', $rule_set['id']);
4352
+ }
4353
+
4354
  // ExposeHeader node
4355
  if (isset($rule_set['expose_header']))
4356
  {
libs/aws/services/sdb.class.php CHANGED
@@ -31,7 +31,7 @@
31
  * Visit <a href="http://aws.amazon.com/simpledb/">http://aws.amazon.com/simpledb/</a> for more
32
  * information.
33
  *
34
- * @version 2012.01.16
35
  * @license See the included NOTICE.md file for complete information.
36
  * @copyright See the included NOTICE.md file for complete information.
37
  * @link http://aws.amazon.com/simpledb/ Amazon SimpleDB
@@ -92,6 +92,16 @@ class AmazonSDB extends CFRuntime
92
  */
93
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
94
 
 
 
 
 
 
 
 
 
 
 
95
  /**
96
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
97
  */
@@ -149,7 +159,7 @@ class AmazonSDB extends CFRuntime
149
  /**
150
  * This allows you to explicitly sets the region for the service to use.
151
  *
152
- * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_NE1>, <REGION_SA_E1>.
153
  * @return $this A reference to the current instance.
154
  */
155
  public function set_region($region)
31
  * Visit <a href="http://aws.amazon.com/simpledb/">http://aws.amazon.com/simpledb/</a> for more
32
  * information.
33
  *
34
+ * @version 2012.11.12
35
  * @license See the included NOTICE.md file for complete information.
36
  * @copyright See the included NOTICE.md file for complete information.
37
  * @link http://aws.amazon.com/simpledb/ Amazon SimpleDB
92
  */
93
  const REGION_SINGAPORE = self::REGION_APAC_SE1;
94
 
95
+ /**
96
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
97
+ */
98
+ const REGION_APAC_SE2 = 'sdb.ap-southeast-2.amazonaws.com';
99
+
100
+ /**
101
+ * Specify the queue URL for the Asia Pacific Southeast (Singapore) Region.
102
+ */
103
+ const REGION_SYDNEY = self::REGION_APAC_SE2;
104
+
105
  /**
106
  * Specify the queue URL for the Asia Pacific Northeast (Tokyo) Region.
107
  */
159
  /**
160
  * This allows you to explicitly sets the region for the service to use.
161
  *
162
+ * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_US_W2>, <REGION_EU_W1>, <REGION_APAC_SE1>, <REGION_APAC_SE2>, <REGION_APAC_NE1>, <REGION_SA_E1>.
163
  * @return $this A reference to the current instance.
164
  */
165
  public function set_region($region)
libs/aws/services/sqs.class.php CHANGED
@@ -30,7 +30,7 @@
30
  *
31
  * Visit <a href="http://aws.amazon.com/sqs/">http://aws.amazon.com/sqs/</a> for more information.
32
  *
33
- * @version 2012.01.29
34
  * @license See the included NOTICE.md file for complete information.
35
  * @copyright See the included NOTICE.md file for complete information.
36
  * @link http://aws.amazon.com/sqs/ Amazon Simple Queue Service
@@ -134,7 +134,7 @@ class AmazonSQS extends CFRuntime
134
  */
135
  public function __construct(array $options = array())
136
  {
137
- $this->api_version = '2011-10-01';
138
  $this->hostname = self::DEFAULT_URL;
139
  $this->auth_class = 'AuthV2Query';
140
 
@@ -398,7 +398,7 @@ class AmazonSQS extends CFRuntime
398
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
399
  * <li><code>Attribute</code> - <code>array</code> - Optional - A map of attributes with their corresponding values. <ul>
400
  * <li><code>x</code> - <code>array</code> - Optional - This represents a simple array index. <ul>
401
- * <li><code>Name</code> - <code>string</code> - Optional - The name of a queue attribute. [Allowed values: <code>Policy</code>, <code>VisibilityTimeout</code>, <code>MaximumMessageSize</code>, <code>MessageRetentionPeriod</code>, <code>ApproximateNumberOfMessages</code>, <code>ApproximateNumberOfMessagesNotVisible</code>, <code>CreatedTimestamp</code>, <code>LastModifiedTimestamp</code>, <code>QueueArn</code>, <code>ApproximateNumberOfMessagesDelayed</code>, <code>DelaySeconds</code>]</li>
402
  * <li><code>Value</code> - <code>string</code> - Optional - The value of a queue attribute.</li>
403
  * </ul></li>
404
  * </ul></li>
@@ -522,6 +522,8 @@ class AmazonSQS extends CFRuntime
522
  * <li><code>ApproximateNumberOfMessagesDelayed</code> - returns the approximate number of
523
  * messages that are pending to be added to the queue.</li>
524
  * <li><code>DelaySeconds</code> - returns the default delay on the queue in seconds.</li>
 
 
525
  * </ul>
526
  *
527
  * @param string $queue_url (Required) The URL of the SQS queue to take action on.
@@ -589,12 +591,22 @@ class AmazonSQS extends CFRuntime
589
  * returned on subsequent <code>ReceiveMessage</code> requests for the duration of the
590
  * <code>VisibilityTimeout</code>. If you do not specify a <code>VisibilityTimeout</code> in the
591
  * request, the overall visibility timeout for the queue is used for the returned messages.
 
 
 
 
 
 
 
 
 
592
  *
593
  * @param string $queue_url (Required) The URL of the SQS queue to take action on.
594
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
595
- * <li><code>AttributeName</code> - <code>string|array</code> - Optional - A list of attributes to retrieve information for. Pass a string for a single value, or an indexed array for multiple values.</li>
596
  * <li><code>MaxNumberOfMessages</code> - <code>integer</code> - Optional - The maximum number of messages to return. Amazon SQS never returns more messages than this value but may return fewer. All of the messages are not necessarily returned.</li>
597
  * <li><code>VisibilityTimeout</code> - <code>integer</code> - Optional - The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a <code>ReceiveMessage</code> request.</li>
 
598
  * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
599
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
600
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
@@ -689,13 +701,14 @@ class AmazonSQS extends CFRuntime
689
  }
690
 
691
  /**
692
- * Sets an attribute of a queue. The set of attributes that can be set are - DelaySeconds,
693
- * MessageRetentionPeriod, MaximumMessageSize, VisibilityTimeout and Policy.
 
694
  *
695
  * @param string $queue_url (Required) The URL of the SQS queue to take action on.
696
  * @param array $attribute (Required) A map of attributes to set. <ul>
697
  * <li><code>x</code> - <code>array</code> - Optional - This represents a simple array index. <ul>
698
- * <li><code>Name</code> - <code>string</code> - Optional - The name of a queue attribute. [Allowed values: <code>Policy</code>, <code>VisibilityTimeout</code>, <code>MaximumMessageSize</code>, <code>MessageRetentionPeriod</code>, <code>ApproximateNumberOfMessages</code>, <code>ApproximateNumberOfMessagesNotVisible</code>, <code>CreatedTimestamp</code>, <code>LastModifiedTimestamp</code>, <code>QueueArn</code>, <code>ApproximateNumberOfMessagesDelayed</code>, <code>DelaySeconds</code>]</li>
699
  * <li><code>Value</code> - <code>string</code> - Optional - The value of a queue attribute.</li>
700
  * </ul></li>
701
  * </ul>
30
  *
31
  * Visit <a href="http://aws.amazon.com/sqs/">http://aws.amazon.com/sqs/</a> for more information.
32
  *
33
+ * @version 2012.10.04
34
  * @license See the included NOTICE.md file for complete information.
35
  * @copyright See the included NOTICE.md file for complete information.
36
  * @link http://aws.amazon.com/sqs/ Amazon Simple Queue Service
134
  */
135
  public function __construct(array $options = array())
136
  {
137
+ $this->api_version = '2012-11-05';
138
  $this->hostname = self::DEFAULT_URL;
139
  $this->auth_class = 'AuthV2Query';
140
 
398
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
399
  * <li><code>Attribute</code> - <code>array</code> - Optional - A map of attributes with their corresponding values. <ul>
400
  * <li><code>x</code> - <code>array</code> - Optional - This represents a simple array index. <ul>
401
+ * <li><code>Name</code> - <code>string</code> - Optional - The name of a queue attribute. [Allowed values: <code>Policy</code>, <code>VisibilityTimeout</code>, <code>MaximumMessageSize</code>, <code>MessageRetentionPeriod</code>, <code>ApproximateNumberOfMessages</code>, <code>ApproximateNumberOfMessagesNotVisible</code>, <code>CreatedTimestamp</code>, <code>LastModifiedTimestamp</code>, <code>QueueArn</code>, <code>ApproximateNumberOfMessagesDelayed</code>, <code>DelaySeconds</code>, <code>ReceiveMessageWaitTimeSeconds</code>]</li>
402
  * <li><code>Value</code> - <code>string</code> - Optional - The value of a queue attribute.</li>
403
  * </ul></li>
404
  * </ul></li>
522
  * <li><code>ApproximateNumberOfMessagesDelayed</code> - returns the approximate number of
523
  * messages that are pending to be added to the queue.</li>
524
  * <li><code>DelaySeconds</code> - returns the default delay on the queue in seconds.</li>
525
+ * <li><code>ReceiveMessageWaitTimeSeconds</code> - returns the time for which a ReceiveMessage
526
+ * call will wait for a message to arrive.</li>
527
  * </ul>
528
  *
529
  * @param string $queue_url (Required) The URL of the SQS queue to take action on.
591
  * returned on subsequent <code>ReceiveMessage</code> requests for the duration of the
592
  * <code>VisibilityTimeout</code>. If you do not specify a <code>VisibilityTimeout</code> in the
593
  * request, the overall visibility timeout for the queue is used for the returned messages.
594
+ *
595
+ * If a message is available in the queue, the call will return immediately. Otherwise, it will
596
+ * wait up to <code>WaitTimeSeconds</code> for a message to arrive. If you do not specify
597
+ * <code>WaitTimeSeconds</code> in the request, the queue attribute ReceiveMessageWaitTimeSeconds
598
+ * is used to determine how long to wait.
599
+ *
600
+ * You could ask for additional information about each message through the attributes. Attributes
601
+ * that can be requested are <code>[SenderId, ApproximateFirstReceiveTimestamp,
602
+ * ApproximateReceiveCount, SentTimestamp]</code>.
603
  *
604
  * @param string $queue_url (Required) The URL of the SQS queue to take action on.
605
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
606
+ * <li><code>AttributeName</code> - <code>string|array</code> - Optional - A list of attributes that need to be returned along with each message. The set of valid attributes are [SenderId, ApproximateFirstReceiveTimestamp, ApproximateReceiveCount, SentTimestamp]. Pass a string for a single value, or an indexed array for multiple values.</li>
607
  * <li><code>MaxNumberOfMessages</code> - <code>integer</code> - Optional - The maximum number of messages to return. Amazon SQS never returns more messages than this value but may return fewer. All of the messages are not necessarily returned.</li>
608
  * <li><code>VisibilityTimeout</code> - <code>integer</code> - Optional - The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a <code>ReceiveMessage</code> request.</li>
609
+ * <li><code>WaitTimeSeconds</code> - <code>integer</code> - Optional - The duration (in seconds) for which the call will wait for a message to arrive in the queue before returning. If a message is available, the call will return sooner than WaitTimeSeconds.</li>
610
  * <li><code>curlopts</code> - <code>array</code> - Optional - A set of values to pass directly into <code>curl_setopt()</code>, where the key is a pre-defined <code>CURLOPT_*</code> constant.</li>
611
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests.</li></ul>
612
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
701
  }
702
 
703
  /**
704
+ * Sets the value of one or more queue attributes. Valid attributes that can be set are
705
+ * [VisibilityTimeout, Policy, MaximumMessageSize, MessageRetentionPeriod,
706
+ * ReceiveMessageWaitTimeSeconds].
707
  *
708
  * @param string $queue_url (Required) The URL of the SQS queue to take action on.
709
  * @param array $attribute (Required) A map of attributes to set. <ul>
710
  * <li><code>x</code> - <code>array</code> - Optional - This represents a simple array index. <ul>
711
+ * <li><code>Name</code> - <code>string</code> - Optional - The name of a queue attribute. [Allowed values: <code>Policy</code>, <code>VisibilityTimeout</code>, <code>MaximumMessageSize</code>, <code>MessageRetentionPeriod</code>, <code>ApproximateNumberOfMessages</code>, <code>ApproximateNumberOfMessagesNotVisible</code>, <code>CreatedTimestamp</code>, <code>LastModifiedTimestamp</code>, <code>QueueArn</code>, <code>ApproximateNumberOfMessagesDelayed</code>, <code>DelaySeconds</code>, <code>ReceiveMessageWaitTimeSeconds</code>]</li>
712
  * <li><code>Value</code> - <code>string</code> - Optional - The value of a queue attribute.</li>
713
  * </ul></li>
714
  * </ul>
libs/aws/utilities/request.class.php CHANGED
@@ -65,6 +65,11 @@ class CFRequest extends RequestCore
65
  $this->credentials = $credentials;
66
  $this->cacert_location = ($this->credentials['certificate_authority'] ? $this->credentials['certificate_authority'] : false);
67
 
 
 
 
 
 
68
  return $this;
69
  }
70
  }
65
  $this->credentials = $credentials;
66
  $this->cacert_location = ($this->credentials['certificate_authority'] ? $this->credentials['certificate_authority'] : false);
67
 
68
+ if (strpos(parse_url($url, PHP_URL_HOST), 'dynamodb') === 0)
69
+ {
70
+ $this->use_gzip_enconding = false;
71
+ }
72
+
73
  return $this;
74
  }
75
  }
pages/func_backwpupbackups.php CHANGED
@@ -373,7 +373,7 @@ function backwpup_get_backup_files($jobid,$dest) {
373
  if (class_exists('AmazonS3')) {
374
  try {
375
  $gstorage = new AmazonS3(array('key'=>$jobvalue['GStorageAccessKey'],'secret'=>$jobvalue['GStorageSecret'],'certificate_authority'=> true ));
376
- $gstorage->set_hostname('commondatastorage.googleapis.com');
377
  $gstorage->allow_hostname_override(false);
378
  if (($contents = $gstorage->list_objects($jobvalue['GStorageBucket'],array('prefix'=>$jobvalue['GStoragedir']))) !== false) {
379
  foreach ($contents->body->Contents as $object) {
373
  if (class_exists('AmazonS3')) {
374
  try {
375
  $gstorage = new AmazonS3(array('key'=>$jobvalue['GStorageAccessKey'],'secret'=>$jobvalue['GStorageSecret'],'certificate_authority'=> true ));
376
+ $gstorage->set_hostname('storage.googleapis.com');
377
  $gstorage->allow_hostname_override(false);
378
  if (($contents = $gstorage->list_objects($jobvalue['GStorageBucket'],array('prefix'=>$jobvalue['GStoragedir']))) !== false) {
379
  foreach ($contents->body->Contents as $object) {
pages/func_backwpupeditjob.php CHANGED
@@ -25,7 +25,7 @@ function backwpup_jobedit_metabox_save($jobvalue) {
25
  <a class="submitdelete deletion" href="<?PHP echo wp_nonce_url(backwpup_admin_url('admin.php').'?page=backwpup&action=delete&jobs[]='.$jobvalue['jobid'], 'bulk-jobs'); ?>" onclick="if ( confirm('<?PHP echo esc_js(__("You are about to delete this Job. \n 'Cancel' to stop, 'OK' to delete.","backwpup")); ?>') ) { return true;}return false;"><?php _e('Delete', 'backwpup'); ?></a>
26
  </div>
27
  <div id="publishing-action">
28
- <?php submit_button( __('Save Changes', 'backwpup'), 'primary', 'save', false, array( 'tabindex' => '2', 'accesskey' => 'p' ) ); ?>
29
  </div>
30
  <div class="clear"></div>
31
  </div>
@@ -220,7 +220,7 @@ function backwpup_jobedit_metabox_destfolder($jobvalue) {
220
  ?>
221
  <b><?PHP _e('Full Path to folder for Backup Files:','backwpup'); ?></b><br />
222
  <input name="backupdir" id="backupdir" type="text" value="<?PHP echo $jobvalue['backupdir'];?>" class="large-text" /><br />
223
- <span class="description"><?PHP _e('Your WordPress dir is:','backwpup'); echo ' '.trailingslashit(str_replace('\\','/',ABSPATH));?></span><br />&nbsp;<br />
224
  <?PHP _e('Max. backup files in folder:','backwpup'); ?> <input name="maxbackups" id="maxbackups" type="text" size="3" value="<?PHP echo $jobvalue['maxbackups'];?>" class="small-text" /><span class="description"><?PHP _e('(Oldest files will deleted first.)','backwpup');?></span>
225
  <?PHP
226
  }
@@ -232,9 +232,9 @@ function backwpup_jobedit_metabox_destftp($jobvalue) {
232
  <b><?PHP _e('Port:','backwpup'); ?></b><br />
233
  <input name="ftphostport" type="text" value="<?PHP echo $jobvalue['ftphostport'];?>" class="small-text" /><br />
234
  <b><?PHP _e('Username:','backwpup'); ?></b><br />
235
- <input name="ftpuser" type="text" value="<?PHP echo $jobvalue['ftpuser'];?>" class="user large-text" /><br />
236
  <b><?PHP _e('Password:','backwpup'); ?></b><br />
237
- <input name="ftppass" type="password" value="<?PHP echo backwpup_base64($jobvalue['ftppass']);?>" class="password large-text" /><br />
238
  <b><?PHP _e('Folder on Server:','backwpup'); ?></b><br />
239
  <input name="ftpdir" type="text" value="<?PHP echo $jobvalue['ftpdir'];?>" class="large-text" /><br />
240
  <?PHP if (!is_numeric($jobvalue['ftpmaxbackups'])) $jobvalue['ftpmaxbackups']=0; ?>
@@ -323,9 +323,9 @@ function backwpup_jobedit_metabox_destrsc($jobvalue) {
323
  ?>
324
  <div class="dests">
325
  <b><?PHP _e('Username:','backwpup'); ?></b><br />
326
- <input id="rscUsername" name="rscUsername" type="text" value="<?PHP echo $jobvalue['rscUsername'];?>" class="large-text" /><br />
327
  <b><?PHP _e('API Key:','backwpup'); ?></b><br />
328
- <input id="rscAPIKey" name="rscAPIKey" type="text" value="<?PHP echo $jobvalue['rscAPIKey'];?>" class="large-text" /><br />
329
  <b><?PHP _e('Container:','backwpup'); ?></b><br />
330
  <input id="rscContainerselected" name="rscContainerselected" type="hidden" value="<?PHP echo $jobvalue['rscContainer'];?>" />
331
  <?PHP if (!empty($jobvalue['rscUsername']) and !empty($jobvalue['rscAPIKey'])) backwpup_get_rsc_container(array('rscUsername'=>$jobvalue['rscUsername'],'rscAPIKey'=>$jobvalue['rscAPIKey'],'rscselected'=>$jobvalue['rscContainer'])); ?>
@@ -611,7 +611,7 @@ function backwpup_get_gstorage_buckets($args='') {
611
  }
612
  try {
613
  $gstorage = new AmazonS3(array('key'=>$GStorageAccessKey,'secret'=>$GStorageSecret,'certificate_authority'=>true));
614
- $gstorage->set_hostname('commondatastorage.googleapis.com');
615
  $gstorage->allow_hostname_override(false);
616
  $buckets=$gstorage->list_buckets();
617
  } catch (Exception $e) {
25
  <a class="submitdelete deletion" href="<?PHP echo wp_nonce_url(backwpup_admin_url('admin.php').'?page=backwpup&action=delete&jobs[]='.$jobvalue['jobid'], 'bulk-jobs'); ?>" onclick="if ( confirm('<?PHP echo esc_js(__("You are about to delete this Job. \n 'Cancel' to stop, 'OK' to delete.","backwpup")); ?>') ) { return true;}return false;"><?php _e('Delete', 'backwpup'); ?></a>
26
  </div>
27
  <div id="publishing-action">
28
+ <?php submit_button( __('Save Changes', 'backwpup'), 'primary', 'savebackwpup', false, array( 'tabindex' => '2', 'accesskey' => 'p' ) ); ?>
29
  </div>
30
  <div class="clear"></div>
31
  </div>
220
  ?>
221
  <b><?PHP _e('Full Path to folder for Backup Files:','backwpup'); ?></b><br />
222
  <input name="backupdir" id="backupdir" type="text" value="<?PHP echo $jobvalue['backupdir'];?>" class="large-text" /><br />
223
+ <span class="description"><?PHP _e('A sampel Folder is:','backwpup'); echo ' '.trailingslashit( str_replace( '\\', '/', WP_CONTENT_DIR ) ) . trailingslashit( sanitize_file_name( get_bloginfo( 'name' ) ) );?></span><br />&nbsp;<br />
224
  <?PHP _e('Max. backup files in folder:','backwpup'); ?> <input name="maxbackups" id="maxbackups" type="text" size="3" value="<?PHP echo $jobvalue['maxbackups'];?>" class="small-text" /><span class="description"><?PHP _e('(Oldest files will deleted first.)','backwpup');?></span>
225
  <?PHP
226
  }
232
  <b><?PHP _e('Port:','backwpup'); ?></b><br />
233
  <input name="ftphostport" type="text" value="<?PHP echo $jobvalue['ftphostport'];?>" class="small-text" /><br />
234
  <b><?PHP _e('Username:','backwpup'); ?></b><br />
235
+ <input name="ftpuser" type="text" value="<?PHP echo $jobvalue['ftpuser'];?>" class="user large-text" autocomplete="off" /><br />
236
  <b><?PHP _e('Password:','backwpup'); ?></b><br />
237
+ <input name="ftppass" type="password" value="<?PHP echo backwpup_base64($jobvalue['ftppass']);?>" class="password large-text" autocomplete="off" /><br />
238
  <b><?PHP _e('Folder on Server:','backwpup'); ?></b><br />
239
  <input name="ftpdir" type="text" value="<?PHP echo $jobvalue['ftpdir'];?>" class="large-text" /><br />
240
  <?PHP if (!is_numeric($jobvalue['ftpmaxbackups'])) $jobvalue['ftpmaxbackups']=0; ?>
323
  ?>
324
  <div class="dests">
325
  <b><?PHP _e('Username:','backwpup'); ?></b><br />
326
+ <input id="rscUsername" name="rscUsername" type="text" value="<?PHP echo $jobvalue['rscUsername'];?>" class="large-text" autocomplete="off"/><br />
327
  <b><?PHP _e('API Key:','backwpup'); ?></b><br />
328
+ <input id="rscAPIKey" name="rscAPIKey" type="text" value="<?PHP echo $jobvalue['rscAPIKey'];?>" class="large-text" autocomplete="off" /><br />
329
  <b><?PHP _e('Container:','backwpup'); ?></b><br />
330
  <input id="rscContainerselected" name="rscContainerselected" type="hidden" value="<?PHP echo $jobvalue['rscContainer'];?>" />
331
  <?PHP if (!empty($jobvalue['rscUsername']) and !empty($jobvalue['rscAPIKey'])) backwpup_get_rsc_container(array('rscUsername'=>$jobvalue['rscUsername'],'rscAPIKey'=>$jobvalue['rscAPIKey'],'rscselected'=>$jobvalue['rscContainer'])); ?>
611
  }
612
  try {
613
  $gstorage = new AmazonS3(array('key'=>$GStorageAccessKey,'secret'=>$GStorageSecret,'certificate_authority'=>true));
614
+ $gstorage->set_hostname('storage.googleapis.com');
615
  $gstorage->allow_hostname_override(false);
616
  $buckets=$gstorage->list_buckets();
617
  } catch (Exception $e) {
pages/header_backwpupbackups.php CHANGED
@@ -42,7 +42,7 @@ if (!empty($doaction)) {
42
  try {
43
  $gstorage = new AmazonS3(array('key'=>$jobvalue['GStorageAccessKey'],'secret'=>$jobvalue['GStorageSecret'],'certificate_authority'=>true));
44
  $gstorage->ssl_verification=false;
45
- $gstorage->set_hostname('commondatastorage.googleapis.com');
46
  $gstorage->allow_hostname_override(false);
47
  $gstorage->delete_object($jobvalue['GStorageBucket'],$backupfile);
48
  unset($gstorage);
42
  try {
43
  $gstorage = new AmazonS3(array('key'=>$jobvalue['GStorageAccessKey'],'secret'=>$jobvalue['GStorageSecret'],'certificate_authority'=>true));
44
  $gstorage->ssl_verification=false;
45
+ $gstorage->set_hostname('storage.googleapis.com');
46
  $gstorage->allow_hostname_override(false);
47
  $gstorage->delete_object($jobvalue['GStorageBucket'],$backupfile);
48
  unset($gstorage);
pages/header_backwpupeditjob.php CHANGED
@@ -31,7 +31,7 @@ if (isset($_GET['dropboxauth']) and $_GET['dropboxauth']=='AccessToken') {
31
  }
32
 
33
  //Save Job settings
34
- if ((isset($_POST['save']) or isset($_POST['dropboxauth']) or isset($_POST['dropboxauthdel']) or isset($_POST['authbutton'])) and !empty($_POST['jobid'])) {
35
  check_admin_referer('edit-job');
36
  $jobvalues['jobid']=(int) $_POST['jobid'];
37
  $jobvalues['type']= implode('+',(array)$_POST['type']);
@@ -177,7 +177,7 @@ if ((isset($_POST['save']) or isset($_POST['dropboxauth']) or isset($_POST['drop
177
  try {
178
  CFCredentials::set(array('backwpup' => array('key'=>$_POST['GStorageAccessKey'],'secret'=>$_POST['GStorageSecret'],'default_cache_config'=>'','certificate_authority'=>true),'@default' => 'backwpup'));
179
  $gstorage = new AmazonS3();
180
- $gstorage->set_hostname('commondatastorage.googleapis.com');
181
  $gstorage->allow_hostname_override(false);
182
  $gstorage->create_bucket($_POST['newGStorageBucket'],'');
183
  $jobvalues['GStorageBucket']=$_POST['newGStorageBucket'];
31
  }
32
 
33
  //Save Job settings
34
+ if ((isset($_POST['savebackwpup']) or isset($_POST['dropboxauth']) or isset($_POST['dropboxauthdel']) or isset($_POST['authbutton'])) and !empty($_POST['jobid'])) {
35
  check_admin_referer('edit-job');
36
  $jobvalues['jobid']=(int) $_POST['jobid'];
37
  $jobvalues['type']= implode('+',(array)$_POST['type']);
177
  try {
178
  CFCredentials::set(array('backwpup' => array('key'=>$_POST['GStorageAccessKey'],'secret'=>$_POST['GStorageSecret'],'default_cache_config'=>'','certificate_authority'=>true),'@default' => 'backwpup'));
179
  $gstorage = new AmazonS3();
180
+ $gstorage->set_hostname('storage.googleapis.com');
181
  $gstorage->allow_hostname_override(false);
182
  $gstorage->create_bucket($_POST['newGStorageBucket'],'');
183
  $jobvalues['GStorageBucket']=$_POST['newGStorageBucket'];
pages/page_backwpupsettings.php CHANGED
@@ -65,13 +65,13 @@ echo '</select>';
65
  <tr valign="top" class="mailsmtp" <?PHP if ($cfg['mailmethod']!='SMTP') echo 'style="display:none;"';?>>
66
  <th scope="row"><label for="mailuser"><?PHP _e('SMTP username','backwpup'); ?></label></th>
67
  <td>
68
- <input name="mailuser" id="mailuser" type="text" value="<?PHP echo $cfg['mailuser'];?>" class="regular-text" />
69
  </td>
70
  </tr>
71
  <tr valign="top" class="mailsmtp" <?PHP if ($cfg['mailmethod']!='SMTP') echo 'style="display:none;"';?>>
72
  <th scope="row"><label for="mailpass"><?PHP _e('SMTP password','backwpup'); ?></label></th>
73
  <td>
74
- <input name="mailpass" id="mailpass" type="password" value="<?PHP echo backwpup_base64($cfg['mailpass']);?>" class="regular-text" />
75
  </td>
76
  </tr>
77
  </table>
@@ -137,12 +137,12 @@ echo '</select>';
137
  <table class="form-table">
138
  </tr>
139
  <th scope="row"><label for="httpauthuser"><?PHP _e('Username:','backwpup'); ?></label></th>
140
- <td><input name="httpauthuser" type="text" id="httpauthuser" value="<?PHP echo $cfg['httpauthuser'];?>" class="regular-text" />
141
  </td>
142
  </tr>
143
  <tr valign="top">
144
  <th scope="row"><label for="httpauthpassword"><?PHP _e('Password:','backwpup'); ?></label></th>
145
- <td><input name="httpauthpassword" type="password" id="httpauthpassword" value="<?PHP echo backwpup_base64($cfg['httpauthpassword']);?>" class="regular-text" />
146
  </tr>
147
  </table>
148
 
65
  <tr valign="top" class="mailsmtp" <?PHP if ($cfg['mailmethod']!='SMTP') echo 'style="display:none;"';?>>
66
  <th scope="row"><label for="mailuser"><?PHP _e('SMTP username','backwpup'); ?></label></th>
67
  <td>
68
+ <input name="mailuser" id="mailuser" type="text" value="<?PHP echo $cfg['mailuser'];?>" class="regular-text" autocomplete="off" />
69
  </td>
70
  </tr>
71
  <tr valign="top" class="mailsmtp" <?PHP if ($cfg['mailmethod']!='SMTP') echo 'style="display:none;"';?>>
72
  <th scope="row"><label for="mailpass"><?PHP _e('SMTP password','backwpup'); ?></label></th>
73
  <td>
74
+ <input name="mailpass" id="mailpass" type="password" value="<?PHP echo backwpup_base64($cfg['mailpass']);?>" class="regular-text" autocomplete="off" />
75
  </td>
76
  </tr>
77
  </table>
137
  <table class="form-table">
138
  </tr>
139
  <th scope="row"><label for="httpauthuser"><?PHP _e('Username:','backwpup'); ?></label></th>
140
+ <td><input name="httpauthuser" type="text" id="httpauthuser" value="<?PHP echo $cfg['httpauthuser'];?>" class="regular-text" autocomplete="off" />
141
  </td>
142
  </tr>
143
  <tr valign="top">
144
  <th scope="row"><label for="httpauthpassword"><?PHP _e('Password:','backwpup'); ?></label></th>
145
+ <td><input name="httpauthpassword" type="password" id="httpauthpassword" value="<?PHP echo backwpup_base64($cfg['httpauthpassword']);?>" class="regular-text" autocomplete="off" />
146
  </tr>
147
  </table>
148
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: danielhuesken, inpsyde, Bueltge, nullbyte
3
  Tags: backup, database, file, ftp, xml, time, upload, multisite, cloud, dropbox, storage, amazon
4
  Requires at least: 3.1
5
- Tested up to: 3.4.2
6
- Stable tag: 2.1.16
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -51,6 +51,12 @@ Do backups and more for your WordPress Blog.
51
  4. Backups Manage Page
52
 
53
  == Changelog ==
 
 
 
 
 
 
54
  = 2.1.16 =
55
  * Dropbox chunking will done in temp again.
56
  * uses stream for compression
2
  Contributors: danielhuesken, inpsyde, Bueltge, nullbyte
3
  Tags: backup, database, file, ftp, xml, time, upload, multisite, cloud, dropbox, storage, amazon
4
  Requires at least: 3.1
5
+ Tested up to: 3.5
6
+ Stable tag: 2.1.17
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
51
  4. Backups Manage Page
52
 
53
  == Changelog ==
54
+ = 2.1.17 =
55
+ * Changed name of sav button to prevent false css.
56
+ * added autocomplte off to some input fields.
57
+ * cheange api domain for google storage
58
+ * Updated AWS lib to 1.5.17.1
59
+
60
  = 2.1.16 =
61
  * Dropbox chunking will done in temp again.
62
  * uses stream for compression