BackWPup – WordPress Backup Plugin - Version 1.5.1

Version Description

  • changed user capability from '10' to 'export'
  • Updatet AWS SDK to ver.1.2.5 for Amazon S3
Download this release

Release Info

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

Code changes from version 1.5.0 to 1.5.1

app/functions.php CHANGED
@@ -5,14 +5,14 @@ if ( !defined('ABSPATH') )
5
 
6
  //Thems Option menu entry
7
  function backwpup_admin_menu() {
8
- $hook = add_management_page(__('BackWPup','backwpup'), __('BackWPup','backwpup'), '10', 'BackWPup','backwpup_options_page') ;
9
  add_action('load-'.$hook, 'backwpup_options_load');
10
  }
11
 
12
  //Options Page
13
  function backwpup_options_page() {
14
  global $table,$backwpup_message,$page_hook;
15
- if (!current_user_can(10))
16
  wp_die('You do not have sufficient permissions to access this page.');
17
  if(!empty($backwpup_message))
18
  echo '<div id="message" class="updated fade"><p><strong>'.$backwpup_message.'</strong></p></div>';
@@ -96,7 +96,7 @@ if ( !defined('ABSPATH') )
96
  function backwpup_options_load() {
97
  global $current_screen,$table,$backwpup_message;
98
 
99
- if (!current_user_can(10))
100
  wp_die('You do not have sufficient permissions to access this page.');
101
  //Css for Admin Section
102
  wp_enqueue_style('BackWpup',plugins_url('css/options.css',__FILE__),'',BACKWPUP_VERSION,'screen');
@@ -749,7 +749,7 @@ if ( !defined('ABSPATH') )
749
  //add Menu
750
  add_action('admin_menu', 'backwpup_admin_menu');
751
  //Additional links on the plugin page
752
- if (current_user_can(10))
753
  add_filter('plugin_action_links_'.BACKWPUP_PLUGIN_BASEDIR.'/backwpup.php', 'backwpup_plugin_options_link');
754
  if (current_user_can('install_plugins'))
755
  add_filter('plugin_row_meta', 'backwpup_plugin_links',10,2);
@@ -761,7 +761,7 @@ if ( !defined('ABSPATH') )
761
  if (!(wp_next_scheduled('backwpup_cron')))
762
  wp_schedule_event(0, 'backwpup_int', 'backwpup_cron');
763
  //add Dashboard widget
764
- if (current_user_can(10))
765
  add_action('wp_dashboard_setup', 'backwpup_add_dashboard');
766
  // add ajax function
767
  add_action('wp_ajax_backwpup_get_aws_buckets', 'backwpup_get_aws_buckets');
5
 
6
  //Thems Option menu entry
7
  function backwpup_admin_menu() {
8
+ $hook = add_management_page(__('BackWPup','backwpup'), __('BackWPup','backwpup'), 'export', 'BackWPup','backwpup_options_page') ;
9
  add_action('load-'.$hook, 'backwpup_options_load');
10
  }
11
 
12
  //Options Page
13
  function backwpup_options_page() {
14
  global $table,$backwpup_message,$page_hook;
15
+ if (!current_user_can('export'))
16
  wp_die('You do not have sufficient permissions to access this page.');
17
  if(!empty($backwpup_message))
18
  echo '<div id="message" class="updated fade"><p><strong>'.$backwpup_message.'</strong></p></div>';
96
  function backwpup_options_load() {
97
  global $current_screen,$table,$backwpup_message;
98
 
99
+ if (!current_user_can('export'))
100
  wp_die('You do not have sufficient permissions to access this page.');
101
  //Css for Admin Section
102
  wp_enqueue_style('BackWpup',plugins_url('css/options.css',__FILE__),'',BACKWPUP_VERSION,'screen');
749
  //add Menu
750
  add_action('admin_menu', 'backwpup_admin_menu');
751
  //Additional links on the plugin page
752
+ if (current_user_can('export'))
753
  add_filter('plugin_action_links_'.BACKWPUP_PLUGIN_BASEDIR.'/backwpup.php', 'backwpup_plugin_options_link');
754
  if (current_user_can('install_plugins'))
755
  add_filter('plugin_row_meta', 'backwpup_plugin_links',10,2);
761
  if (!(wp_next_scheduled('backwpup_cron')))
762
  wp_schedule_event(0, 'backwpup_int', 'backwpup_cron');
763
  //add Dashboard widget
764
+ if (current_user_can('export'))
765
  add_action('wp_dashboard_setup', 'backwpup_add_dashboard');
766
  // add ajax function
767
  add_action('wp_ajax_backwpup_get_aws_buckets', 'backwpup_get_aws_buckets');
app/libs/aws/sdk.class.php CHANGED
@@ -102,9 +102,9 @@ function __aws_sdk_ua_callback()
102
  // INTERMEDIARY CONSTANTS
103
 
104
  define('CFRUNTIME_NAME', 'aws-sdk-php');
105
- define('CFRUNTIME_VERSION', '1.2.4');
106
  // define('CFRUNTIME_BUILD', gmdate('YmdHis', filemtime(__FILE__))); // @todo: Hardcode for release.
107
- define('CFRUNTIME_BUILD', '20110216201555');
108
  define('CFRUNTIME_USERAGENT', CFRUNTIME_NAME . '/' . CFRUNTIME_VERSION . ' PHP/' . PHP_VERSION . ' ' . php_uname('s') . '/' . php_uname('r') . ' Arch/' . php_uname('m') . ' SAPI/' . php_sapi_name() . ' Integer/' . PHP_INT_MAX . ' Build/' . CFRUNTIME_BUILD . __aws_sdk_ua_callback());
109
 
110
 
102
  // INTERMEDIARY CONSTANTS
103
 
104
  define('CFRUNTIME_NAME', 'aws-sdk-php');
105
+ define('CFRUNTIME_VERSION', '1.2.5');
106
  // define('CFRUNTIME_BUILD', gmdate('YmdHis', filemtime(__FILE__))); // @todo: Hardcode for release.
107
+ define('CFRUNTIME_BUILD', '20110224213746');
108
  define('CFRUNTIME_USERAGENT', CFRUNTIME_NAME . '/' . CFRUNTIME_VERSION . ' PHP/' . PHP_VERSION . ' ' . php_uname('s') . '/' . php_uname('r') . ' Arch/' . php_uname('m') . ' SAPI/' . php_sapi_name() . ' Integer/' . PHP_INT_MAX . ' Build/' . CFRUNTIME_BUILD . __aws_sdk_ua_callback());
109
 
110
 
app/libs/aws/services/as.class.php CHANGED
@@ -47,7 +47,7 @@
47
  *
48
  * </ul>
49
  *
50
- * @version Wed Feb 16 17:02:44 PST 2011
51
  * @license See the included NOTICE.md file for complete information.
52
  * @copyright See the included NOTICE.md file for complete information.
53
  * @link http://aws.amazon.com/autoscaling/Amazon Auto-Scaling
47
  *
48
  * </ul>
49
  *
50
+ * @version Thu Feb 24 12:15:58 PST 2011
51
  * @license See the included NOTICE.md file for complete information.
52
  * @copyright See the included NOTICE.md file for complete information.
53
  * @link http://aws.amazon.com/autoscaling/Amazon Auto-Scaling
app/libs/aws/services/cloudformation.class.php ADDED
@@ -0,0 +1,305 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2010-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License").
6
+ * You may not use this file except in compliance with the License.
7
+ * A copy of the License is located at
8
+ *
9
+ * http://aws.amazon.com/apache2.0
10
+ *
11
+ * or in the "license" file accompanying this file. This file is distributed
12
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13
+ * express or implied. See the License for the specific language governing
14
+ * permissions and limitations under the License.
15
+ */
16
+
17
+ /**
18
+ *
19
+ * This is the AWS CloudFormation API Reference.
20
+ *
21
+ * This guide is for programmers who need detailed information about the CloudFormation APIs. You use AWS CloudFormation to
22
+ * create and manage AWS infrastructure deployments predictably and repeatedly. CloudFormation helps you leverage AWS
23
+ * products such as Amazon EC2, EBS, Amazon SNS, ELB, and Auto Scaling to build highly-reliable, highly scalable, cost
24
+ * effective applications without worrying about creating and configuring the underlying the AWS infrastructure.
25
+ *
26
+ * Through the use of a template file you write, and a few AWS CloudFormation commands or API actions, AWS CloudFormation
27
+ * enables you to manage a collection of resources together as a single unit called a stack. AWS CloudFormation creates and
28
+ * deletes all member resources of the stack together and manages all dependencies between the resources for you.
29
+ *
30
+ * For more information about this product, go to the <a
31
+ * href="http://aws.amazon.com/documentation/cloudformation">CloudFormation Product Page</a>.
32
+ *
33
+ * Amazon CloudFormation makes use of other AWS products. If you need additional technical information about a specific AWS
34
+ * product, you can find the product's technical documentation at http://aws.amazon.com/documentation/.
35
+ *
36
+ * @version Thu Feb 24 12:16:40 PST 2011
37
+ * @license See the included NOTICE.md file for complete information.
38
+ * @copyright See the included NOTICE.md file for complete information.
39
+ * @link http://aws.amazon.com/cloudformation/Amazon CloudFormation
40
+ * @link http://aws.amazon.com/documentation/cloudformation/Amazon CloudFormation documentation
41
+ */
42
+ class AmazonCloudFormation extends CFRuntime
43
+ {
44
+
45
+ /*%******************************************************************************************%*/
46
+ // CLASS CONSTANTS
47
+
48
+ /**
49
+ * Specify the default queue URL.
50
+ */
51
+ const DEFAULT_URL = 'cloudformation.us-east-1.amazonaws.com';
52
+
53
+ /**
54
+ * Specify the queue URL for the US-East (Northern Virginia) Region.
55
+ */
56
+ const REGION_US_E1 = self::DEFAULT_URL;
57
+
58
+ /**
59
+ * Specify the queue URL for the US-West (Northern California) Region.
60
+ */
61
+ const REGION_US_W1 = 'cloudformation.us-west-1.amazonaws.com';
62
+
63
+ /**
64
+ * Specify the queue URL for the EU (Ireland) Region.
65
+ */
66
+ const REGION_EU_W1 = 'cloudformation.eu-west-1.amazonaws.com';
67
+
68
+ /**
69
+ * Specify the queue URL for the Asia Pacific (Singapore) Region.
70
+ */
71
+ const REGION_APAC_SE1 = 'cloudformation.ap-southeast-1.amazonaws.com';
72
+
73
+
74
+ /*%******************************************************************************************%*/
75
+ // SETTERS
76
+
77
+ /**
78
+ * This allows you to explicitly sets the region for the service to use.
79
+ *
80
+ * @param string $region (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_EU_W1>, or <REGION_APAC_SE1>.
81
+ * @return $this A reference to the current instance.
82
+ */
83
+ public function set_region($region)
84
+ {
85
+ $this->set_hostname($region);
86
+ return $this;
87
+ }
88
+
89
+
90
+ /*%******************************************************************************************%*/
91
+ // CONSTRUCTOR
92
+
93
+ /**
94
+ * Constructs a new instance of <AmazonCloudFormation>.
95
+ *
96
+ * @param string $key (Optional) Your Amazon API Key. If blank, it will look for the <code>AWS_KEY</code> constant.
97
+ * @param string $secret_key (Optional) Your Amazon API Secret Key. If blank, it will look for the <code>AWS_SECRET_KEY</code> constant.
98
+ * @return boolean false if no valid values are set, otherwise true.
99
+ */
100
+ public function __construct($key = null, $secret_key = null)
101
+ {
102
+ $this->api_version = '2010-05-15';
103
+ $this->hostname = self::DEFAULT_URL;
104
+
105
+ if (!$key && !defined('AWS_KEY'))
106
+ {
107
+ throw new CloudFormation_Exception('No account key was passed into the constructor, nor was it set in the AWS_KEY constant.');
108
+ }
109
+
110
+ if (!$secret_key && !defined('AWS_SECRET_KEY'))
111
+ {
112
+ throw new CloudFormation_Exception('No account secret was passed into the constructor, nor was it set in the AWS_SECRET_KEY constant.');
113
+ }
114
+
115
+ return parent::__construct($key, $secret_key);
116
+ }
117
+
118
+
119
+ /*%******************************************************************************************%*/
120
+ // SERVICE METHODS
121
+
122
+ /**
123
+ *
124
+ * Creates a stack as specified in the template. Once the call completes successfully, the stack creation starts. You can
125
+ * check the status of the stack via the DescribeStacks API.
126
+ *
127
+ * AWS CloudFormation allows you to create and delete related AWS resources together as a unit called a stack. You define
128
+ * the characteristics of a stack using a template, which is a JSON-compliant text file. For more information, go to the <a
129
+ * href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/CFNGuide">AWS CloudFormation User Guide</a>.
130
+ *
131
+ * Currently, the quota for stacks is 20 per region.
132
+ *
133
+ * @param string $stack_name (Required) The name associated with the Stack. The name must be unique within your AWS account. Must contain only alphanumeric characters (case sensitive) and start with an alpha character. Maximum length of the name is 255 characters.
134
+ * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
135
+ * <li><code>TemplateBody</code> - <code>string</code> - Optional - Structure containing the template body. (For more information, go to the AWS CloudFormation User Guide.) You must pass <code>TemplateBody</code> or <code>TemplateURL</code>. If both are passed, only <code>TemplateBody</code> is used. </li>
136
+ * <li><code>TemplateURL</code> - <code>string</code> - Optional - Location of file containing the template body. (For more information, go to the AWS CloudFormation User Guide.) You must pass <code>TemplateURL</code> or <code>TemplateBody</code>. If both are passed, only <code>TemplateBody</code> is used. </li>
137
+ * <li><code>Parameters</code> - <code>array</code> - Optional - A list of <code>Parameter</code> structures. <ul>
138
+ * <li><code>x</code> - <code>array</code> - This represents a simple array index. <ul>
139
+ * <li><code>ParameterKey</code> - <code>string</code> - Optional - The key associated with the parameter. </li>
140
+ * <li><code>ParameterValue</code> - <code>string</code> - Optional - The value associated with the parameter. </li>
141
+ * </ul></li>
142
+ * </ul></li>
143
+ * <li><code>DisableRollback</code> - <code>boolean</code> - Optional - Boolean to enable or disable rollback on stack creation failures. Default: <code>false</code> </li>
144
+ * <li><code>TimeoutInMinutes</code> - <code>integer</code> - Optional - If the time limit is exceeded, the stack is marked CREATE_FAILED; if <code>RollbackOnFailure</code> is set, the stack will be rolled back. </li>
145
+ * <li><code>NotificationARNs</code> - <code>string|array</code> - Optional - The Simple Notification Service (SNS) topic ARNs to publish stack related events. You can find your SNS topic ARNs using the SNS console or your Command Line Interface (CLI). Pass a string for a single value, or an indexed array for multiple values. </li>
146
+ * <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>
147
+ * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
148
+ */
149
+ public function create_stack($stack_name, $opt = null)
150
+ {
151
+ if (!$opt) $opt = array();
152
+ $opt['StackName'] = $stack_name;
153
+
154
+ // Optional parameter
155
+ if (isset($opt['Parameters']))
156
+ {
157
+ $opt = array_merge($opt, CFComplexType::map(array(
158
+ 'Parameters' => $opt['Parameters']
159
+ ), 'member'));
160
+ unset($opt['Parameters']);
161
+ }
162
+
163
+ // Optional parameter
164
+ if (isset($opt['NotificationARNs']))
165
+ {
166
+ $opt = array_merge($opt, CFComplexType::map(array(
167
+ 'NotificationARNs' => (is_array($opt['NotificationARNs']) ? $opt['NotificationARNs'] : array($opt['NotificationARNs']))
168
+ ), 'member'));
169
+ unset($opt['NotificationARNs']);
170
+ }
171
+
172
+ return $this->authenticate('CreateStack', $opt, $this->hostname);
173
+ }
174
+
175
+ /**
176
+ *
177
+ * Validates a specified template.
178
+ *
179
+ * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
180
+ * <li><code>TemplateBody</code> - <code>string</code> - Optional - Structure containing the template body. (For more information, go to the AWS CloudFormation User Guide.) </li>
181
+ * <li><code>TemplateURL</code> - <code>string</code> - Optional - Location of file containing the template body. (For more information, go to the AWS CloudFormation User Guide.) </li>
182
+ * <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>
183
+ * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
184
+ */
185
+ public function validate_template($opt = null)
186
+ {
187
+ if (!$opt) $opt = array();
188
+
189
+ return $this->authenticate('ValidateTemplate', $opt, $this->hostname);
190
+ }
191
+
192
+ /**
193
+ *
194
+ * Returns the description for the specified stack; if no stack name was specified, then it returns the description for
195
+ * all the stacks created.
196
+ *
197
+ * If a specified stack does not exist or has been successfully deleted, a <code>ValidationError</code> is returned.
198
+ *
199
+ * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
200
+ * <li><code>StackName</code> - <code>string</code> - Optional - The name or the unique identifier associated with the stack. Default: <code>null</code> </li>
201
+ * <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>
202
+ * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
203
+ */
204
+ public function describe_stacks($opt = null)
205
+ {
206
+ if (!$opt) $opt = array();
207
+
208
+ return $this->authenticate('DescribeStacks', $opt, $this->hostname);
209
+ }
210
+
211
+ /**
212
+ *
213
+ * Returns all the stack related events for the AWS account. If <code>StackName</code> is specified, returns events
214
+ * related to all the stacks with the given name. If <code>StackName</code> is not specified, returns all the events for
215
+ * the account. For more information about a stack's event history, go to the <a
216
+ * href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/CFNGuide">AWS CloudFormation User Guide</a>.
217
+ *
218
+ * Events are returned, even if the stack has been successfully deleted. If the stack never existed, a
219
+ * <code>ValidationError</code> is returned.
220
+ *
221
+ * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
222
+ * <li><code>StackName</code> - <code>string</code> - Optional - The name or the unique identifier associated with the stack. Default: <code>null</code> </li>
223
+ * <li><code>NextToken</code> - <code>string</code> - Optional - String that identifies the start of the next list of events, if there is one. Default: <code>null</code> </li>
224
+ * <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>
225
+ * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
226
+ */
227
+ public function describe_stack_events($opt = null)
228
+ {
229
+ if (!$opt) $opt = array();
230
+
231
+ return $this->authenticate('DescribeStackEvents', $opt, $this->hostname);
232
+ }
233
+
234
+ /**
235
+ *
236
+ * Returns the template body for a specified stack name.
237
+ *
238
+ * If the stack does not exist or the stack has been successfully deleted, a <code>ValidationError</code> is returned.
239
+ *
240
+ * @param string $stack_name (Required) The name or the unique identifier associated with the stack.
241
+ * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
242
+ * <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>
243
+ * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
244
+ */
245
+ public function get_template($stack_name, $opt = null)
246
+ {
247
+ if (!$opt) $opt = array();
248
+ $opt['StackName'] = $stack_name;
249
+
250
+ return $this->authenticate('GetTemplate', $opt, $this->hostname);
251
+ }
252
+
253
+ /**
254
+ *
255
+ * Deletes a specified stack. Once the call completes successfully, stack deletion starts. Deleted stacks do not show up
256
+ * in the DescribeStacks API if the deletion has been completed successfully.
257
+ *
258
+ * @param string $stack_name (Required) The name or the unique identifier associated with the stack.
259
+ * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
260
+ * <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>
261
+ * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
262
+ */
263
+ public function delete_stack($stack_name, $opt = null)
264
+ {
265
+ if (!$opt) $opt = array();
266
+ $opt['StackName'] = $stack_name;
267
+
268
+ return $this->authenticate('DeleteStack', $opt, $this->hostname);
269
+ }
270
+
271
+ /**
272
+ *
273
+ * Returns AWS resource descriptions. If <code>StackName</code> is specified, all the associated resources that are part
274
+ * of the stack are returned. If <code>PhysicalResourceId</code> is specified, all the associated resources of the stack
275
+ * the resource belongs to are returned.
276
+ *
277
+ * You can use <code>LogicalResourceId</code> to filter the returned result. For more information about resources, the
278
+ * <code>LogicalResourceId</code> and <code>PhysicalResourceId</code>, go to the <a
279
+ * href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/CFNGuide">AWS CloudFormation User Guide</a>.
280
+ *
281
+ * If the stack does not exist or the stack has been successfully deleted, a <code>ValidationError</code> is returned.
282
+ *
283
+ * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
284
+ * <li><code>StackName</code> - <code>string</code> - Optional - The name or the unique identifier associated with the stack. Default: <code>null</code> </li>
285
+ * <li><code>LogicalResourceId</code> - <code>string</code> - Optional - The logical name of the resource specified in the template. Default: <code>null</code> </li>
286
+ * <li><code>PhysicalResourceId</code> - <code>string</code> - Optional - The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation. For example, for an Amazon Elastic Compute Cloud (EC2) instance, <code>PhysicalResourceId</code> corresponds to the <code>InstanceId</code>. You can pass the EC2 <code>InstanceId</code> to <code>DescribeStackResources</code> to find what stack the instance belongs to and what other resources are part of the stack. Default: <code>null</code> </li>
287
+ * <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>
288
+ * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
289
+ */
290
+ public function describe_stack_resources($opt = null)
291
+ {
292
+ if (!$opt) $opt = array();
293
+
294
+ return $this->authenticate('DescribeStackResources', $opt, $this->hostname);
295
+ }
296
+ }
297
+
298
+
299
+ /*%******************************************************************************************%*/
300
+ // EXCEPTIONS
301
+
302
+ /**
303
+ * Default CloudFormation Exception.
304
+ */
305
+ class CloudFormation_Exception extends Exception {}
app/libs/aws/services/cloudfront.class.php CHANGED
@@ -36,7 +36,7 @@ class CloudFront_Exception extends Exception {}
36
  * seamlessly with the Amazon Simple Storage Service, which durably stores the original, definitive versions
37
  * of your files.
38
  *
39
- * @version 2010.11.24
40
  * @license See the included NOTICE.md file for more information.
41
  * @copyright See the included NOTICE.md file for more information.
42
  * @link http://aws.amazon.com/cloudfront/ Amazon CloudFront
@@ -530,6 +530,16 @@ class AmazonCloudFront extends CFRuntime
530
  {
531
  $origin = $update->addChild('S3Origin');
532
  $origin->addChild('DNSName', $xml->S3Origin->DNSName);
 
 
 
 
 
 
 
 
 
 
533
  }
534
  elseif (isset($xml->CustomOrigin))
535
  {
@@ -611,16 +621,6 @@ class AmazonCloudFront extends CFRuntime
611
  $logging->addChild('Prefix', $xml->Logging->Prefix);
612
  }
613
 
614
- // origin access identity
615
- if (isset($opt['OriginAccessIdentity']))
616
- {
617
- $update->addChild('OriginAccessIdentity', 'origin-access-identity/cloudfront/' . $opt['OriginAccessIdentity']);
618
- }
619
- elseif (isset($xml->OriginAccessIdentity))
620
- {
621
- $update->addChild('OriginAccessIdentity', $xml->OriginAccessIdentity);
622
- }
623
-
624
  // Trusted Signers
625
  if (isset($opt['TrustedSigners']))
626
  {
36
  * seamlessly with the Amazon Simple Storage Service, which durably stores the original, definitive versions
37
  * of your files.
38
  *
39
+ * @version 2011.02.24
40
  * @license See the included NOTICE.md file for more information.
41
  * @copyright See the included NOTICE.md file for more information.
42
  * @link http://aws.amazon.com/cloudfront/ Amazon CloudFront
530
  {
531
  $origin = $update->addChild('S3Origin');
532
  $origin->addChild('DNSName', $xml->S3Origin->DNSName);
533
+
534
+ // origin access identity
535
+ if (isset($opt['OriginAccessIdentity']))
536
+ {
537
+ $update->addChild('OriginAccessIdentity', 'origin-access-identity/cloudfront/' . $opt['OriginAccessIdentity']);
538
+ }
539
+ elseif (isset($xml->OriginAccessIdentity))
540
+ {
541
+ $update->addChild('OriginAccessIdentity', $xml->OriginAccessIdentity);
542
+ }
543
  }
544
  elseif (isset($xml->CustomOrigin))
545
  {
621
  $logging->addChild('Prefix', $xml->Logging->Prefix);
622
  }
623
 
 
 
 
 
 
 
 
 
 
 
624
  // Trusted Signers
625
  if (isset($opt['TrustedSigners']))
626
  {
app/libs/aws/services/cloudwatch.class.php CHANGED
@@ -31,7 +31,7 @@
31
  * automatically make changes to the resources you are monitoring, based on rules that you define. For example, you can
32
  * create alarms that initiate Auto Scaling and Simple Notification Service actions on your behalf.
33
  *
34
- * @version Wed Feb 16 17:04:07 PST 2011
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/cloudwatch/Amazon CloudWatch
31
  * automatically make changes to the resources you are monitoring, based on rules that you define. For example, you can
32
  * create alarms that initiate Auto Scaling and Simple Notification Service actions on your behalf.
33
  *
34
+ * @version Thu Feb 24 12:17:14 PST 2011
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/cloudwatch/Amazon CloudWatch
app/libs/aws/services/ec2.class.php CHANGED
@@ -28,7 +28,7 @@
28
  *
29
  * Visit <a href="http://aws.amazon.com/ec2/">http://aws.amazon.com/ec2/</a> for more information.
30
  *
31
- * @version Wed Feb 16 17:05:26 PST 2011
32
  * @license See the included NOTICE.md file for complete information.
33
  * @copyright See the included NOTICE.md file for complete information.
34
  * @link http://aws.amazon.com/ec2/Amazon Elastic Compute Cloud
28
  *
29
  * Visit <a href="http://aws.amazon.com/ec2/">http://aws.amazon.com/ec2/</a> for more information.
30
  *
31
+ * @version Thu Feb 24 12:18:39 PST 2011
32
  * @license See the included NOTICE.md file for complete information.
33
  * @copyright See the included NOTICE.md file for complete information.
34
  * @link http://aws.amazon.com/ec2/Amazon Elastic Compute Cloud
app/libs/aws/services/elasticbeanstalk.class.php CHANGED
@@ -36,7 +36,7 @@
36
  *
37
  * </ul>
38
  *
39
- * @version Wed Feb 16 17:04:46 PST 2011
40
  * @license See the included NOTICE.md file for complete information.
41
  * @copyright See the included NOTICE.md file for complete information.
42
  * @link http://aws.amazon.com/elasticbeanstalk/AWS Elastic Beanstalk
36
  *
37
  * </ul>
38
  *
39
+ * @version Thu Feb 24 12:17:55 PST 2011
40
  * @license See the included NOTICE.md file for complete information.
41
  * @copyright See the included NOTICE.md file for complete information.
42
  * @link http://aws.amazon.com/elasticbeanstalk/AWS Elastic Beanstalk
app/libs/aws/services/elb.class.php CHANGED
@@ -20,7 +20,7 @@
20
  * of your application. It makes it easy for you to distribute application loads between two or more EC2 instances. Elastic
21
  * Load Balancing enables availability through redundancy and supports traffic growth of your application.
22
  *
23
- * @version Wed Feb 16 17:06:11 PST 2011
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/Amazon Elastic Load Balancing
20
  * of your application. It makes it easy for you to distribute application loads between two or more EC2 instances. Elastic
21
  * Load Balancing enables availability through redundancy and supports traffic growth of your application.
22
  *
23
+ * @version Thu Feb 24 12:19:28 PST 2011
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/Amazon Elastic Load Balancing
app/libs/aws/services/emr.class.php CHANGED
@@ -19,7 +19,7 @@
19
  * This is the Amazon Elastic MapReduce API Reference Guide. This guide is for programmers who need detailed information
20
  * about the Amazon Elastic MapReduce APIs.
21
  *
22
- * @version Wed Feb 16 17:07:23 PST 2011
23
  * @license See the included NOTICE.md file for complete information.
24
  * @copyright See the included NOTICE.md file for complete information.
25
  * @link http://aws.amazon.com/elasticmapreduce/Amazon Elastic MapReduce
19
  * This is the Amazon Elastic MapReduce API Reference Guide. This guide is for programmers who need detailed information
20
  * about the Amazon Elastic MapReduce APIs.
21
  *
22
+ * @version Thu Feb 24 12:21:27 PST 2011
23
  * @license See the included NOTICE.md file for complete information.
24
  * @copyright See the included NOTICE.md file for complete information.
25
  * @link http://aws.amazon.com/elasticmapreduce/Amazon Elastic MapReduce
app/libs/aws/services/iam.class.php CHANGED
@@ -44,7 +44,7 @@
44
  * We will refer to Amazon AWS Identity and Access Management using the abbreviated form IAM. All copyrights and legal
45
  * protections still apply.
46
  *
47
- * @version Wed Feb 16 17:08:01 PST 2011
48
  * @license See the included NOTICE.md file for complete information.
49
  * @copyright See the included NOTICE.md file for complete information.
50
  * @link http://aws.amazon.com/iam/Amazon Identity and Access Management Service
44
  * We will refer to Amazon AWS Identity and Access Management using the abbreviated form IAM. All copyrights and legal
45
  * protections still apply.
46
  *
47
+ * @version Thu Feb 24 12:22:01 PST 2011
48
  * @license See the included NOTICE.md file for complete information.
49
  * @copyright See the included NOTICE.md file for complete information.
50
  * @link http://aws.amazon.com/iam/Amazon Identity and Access Management Service
app/libs/aws/services/importexport.class.php CHANGED
@@ -22,7 +22,7 @@
22
  * high-speed internal network and bypassing the Internet. For large data sets, AWS Import/Export is often faster than
23
  * Internet transfer and more cost effective than upgrading your connectivity.
24
  *
25
- * @version Wed Feb 16 17:08:43 PST 2011
26
  * @license See the included NOTICE.md file for complete information.
27
  * @copyright See the included NOTICE.md file for complete information.
28
  * @link http://aws.amazon.com/importexport/Amazon Import/Export Service
22
  * high-speed internal network and bypassing the Internet. For large data sets, AWS Import/Export is often faster than
23
  * Internet transfer and more cost effective than upgrading your connectivity.
24
  *
25
+ * @version Thu Feb 24 12:22:40 PST 2011
26
  * @license See the included NOTICE.md file for complete information.
27
  * @copyright See the included NOTICE.md file for complete information.
28
  * @link http://aws.amazon.com/importexport/Amazon Import/Export Service
app/libs/aws/services/rds.class.php CHANGED
@@ -28,7 +28,7 @@
28
  * flexible: you can scale your database instance's compute resources and storage capacity to meet your application's
29
  * demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use.
30
  *
31
- * @version Wed Feb 16 17:09:20 PST 2011
32
  * @license See the included NOTICE.md file for complete information.
33
  * @copyright See the included NOTICE.md file for complete information.
34
  * @link http://aws.amazon.com/rds/Amazon Relational Database Service
28
  * flexible: you can scale your database instance's compute resources and storage capacity to meet your application's
29
  * demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use.
30
  *
31
+ * @version Thu Feb 24 12:23:23 PST 2011
32
  * @license See the included NOTICE.md file for complete information.
33
  * @copyright See the included NOTICE.md file for complete information.
34
  * @link http://aws.amazon.com/rds/Amazon Relational Database Service
app/libs/aws/services/s3.class.php CHANGED
@@ -281,7 +281,7 @@ class AmazonS3 extends CFRuntime
281
  * @param string $location (Do Not Use) Used internally by this function on occasions when Amazon S3 returns a redirect code and it needs to call itself recursively.
282
  * @param integer $redirects (Do Not Use) Used internally by this function on occasions when Amazon S3 returns a redirect code and it needs to call itself recursively.
283
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
284
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/RESTAuthentication.html REST authentication
285
  */
286
  public function authenticate($bucket, $opt = null, $location = null, $redirects = 0, $nothing = null)
287
  {
@@ -697,7 +697,7 @@ class AmazonS3 extends CFRuntime
697
  $data = new $this->response_class($headers, $this->parse_callback($request->get_response_body()), $request->get_response_code());
698
 
699
  // Did Amazon tell us to redirect? Typically happens for multiple rapid requests EU datacenters.
700
- // @see: http://docs.amazonwebservices.com/AmazonS3/latest/Redirects.html
701
  if ((integer) $request->get_response_code() === 307) // Temporary redirect to new endpoint.
702
  {
703
  $data = $this->authenticate($bucket, $opt, $headers['location'], ++$redirects);
@@ -838,7 +838,7 @@ class AmazonS3 extends CFRuntime
838
  *
839
  * @param string $vhost (Required) The virtual host to use in place of the default `bucket.s3.amazonaws.com` domain.
840
  * @return $this A reference to the current instance.
841
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/VirtualHosting.html Virtual Hosting of Buckets
842
  */
843
  public function set_vhost($vhost)
844
  {
@@ -875,7 +875,7 @@ class AmazonS3 extends CFRuntime
875
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
876
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request.</li></ul>
877
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
878
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/UsingBucket.html Working with Amazon S3 Buckets
879
  */
880
  public function create_bucket($bucket, $region, $acl = self::ACL_PRIVATE, $opt = null)
881
  {
@@ -1031,7 +1031,7 @@ class AmazonS3 extends CFRuntime
1031
  * <li><code>preauth</code> - <code>integer|string</code> - Optional - Specifies that a presigned URL for this request should be returned. May be passed as a number of seconds since UNIX Epoch, or any string compatible with <php:strtotime()>.</li>
1032
  * <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>
1033
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1034
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html REST Access Control Policy
1035
  */
1036
  public function get_bucket_acl($bucket, $opt = null)
1037
  {
@@ -1052,7 +1052,7 @@ class AmazonS3 extends CFRuntime
1052
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
1053
  * <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>
1054
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1055
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html REST Access Control Policy
1056
  */
1057
  public function set_bucket_acl($bucket, $acl = self::ACL_PRIVATE, $opt = null)
1058
  {
@@ -1112,7 +1112,7 @@ class AmazonS3 extends CFRuntime
1112
  * <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>
1113
  * <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>
1114
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1115
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html REST Access Control Policy
1116
  */
1117
  public function create_object($bucket, $filename, $opt = null)
1118
  {
@@ -1331,7 +1331,7 @@ class AmazonS3 extends CFRuntime
1331
  * <li><code>metadataDirective</code> - <code>string</code> - Optional - Accepts either COPY or REPLACE. You will likely never need to use this, as it manages itself with no issues.</li>
1332
  * <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>
1333
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1334
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/UsingCopyingObjects.html Copying Amazon S3 Objects
1335
  */
1336
  public function copy_object($source, $dest, $opt = null)
1337
  {
@@ -1452,7 +1452,7 @@ class AmazonS3 extends CFRuntime
1452
  * <li><code>meta</code> - <code>array</code> - Optional - An associative array of key-value pairs. Any header with the <code>x-amz-meta-</code> prefix is considered user metadata and is stored with the Amazon S3 object. 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>
1453
  * <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>
1454
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1455
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/UsingCopyingObjects.html Copying Amazon S3 Objects
1456
  */
1457
  public function update_object($bucket, $filename, $opt = null)
1458
  {
@@ -1481,7 +1481,7 @@ class AmazonS3 extends CFRuntime
1481
  * <li><code>preauth</code> - <code>integer|string</code> - Optional - Specifies that a presigned URL for this request should be returned. May be passed as a number of seconds since UNIX Epoch, or any string compatible with <php:strtotime()>.</li>
1482
  * <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>
1483
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1484
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html REST Access Control Policy
1485
  */
1486
  public function get_object_acl($bucket, $filename, $opt = null)
1487
  {
@@ -1504,7 +1504,7 @@ class AmazonS3 extends CFRuntime
1504
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
1505
  * <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>
1506
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1507
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html REST Access Control Policy
1508
  */
1509
  public function set_object_acl($bucket, $filename, $acl = self::ACL_PRIVATE, $opt = null)
1510
  {
@@ -1555,7 +1555,7 @@ class AmazonS3 extends CFRuntime
1555
  * @param string $canonical_name (Required) The canonical display name for the bucket owner. Use the `AWS_CANONICAL_NAME` constant or the `display_name` value from <get_canonical_user_id()>.
1556
  * @param array $users (Optional) An array of associative arrays. Each associative array contains an `id` value and a `permission` value.
1557
  * @return string Access Control Policy XML.
1558
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/S3_ACLs.html Access Control Lists
1559
  */
1560
  public function generate_access_policy($canonical_id, $canonical_name, $users)
1561
  {
@@ -1624,7 +1624,7 @@ class AmazonS3 extends CFRuntime
1624
  * <li><code>preauth</code> - <code>integer|string</code> - Optional - Specifies that a presigned URL for this request should be returned. May be passed as a number of seconds since UNIX Epoch, or any string compatible with <php:strtotime()>.</li>
1625
  * <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>
1626
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1627
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/ServerLogs.html Server Access Logging
1628
  */
1629
  public function get_logs($bucket, $opt = null)
1630
  {
@@ -1647,7 +1647,7 @@ class AmazonS3 extends CFRuntime
1647
  * <li><code>users</code> - <code>array</code> - Optional - An array of associative arrays specifying any user to give access to. Each associative array contains an <code>id</code> and <code>permission</code> value.</li>
1648
  * <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>
1649
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1650
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/LoggingAPI.html Server Access Logging Configuration API
1651
  */
1652
  public function enable_logging($bucket, $target_bucket, $target_prefix, $opt = null)
1653
  {
@@ -1725,7 +1725,7 @@ class AmazonS3 extends CFRuntime
1725
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
1726
  * <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>
1727
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1728
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/LoggingAPI.html Server Access Logging Configuration API
1729
  */
1730
  public function disable_logging($bucket, $opt = null)
1731
  {
@@ -2285,7 +2285,7 @@ class AmazonS3 extends CFRuntime
2285
  * <li><code>torrent</code> - <code>boolean</code> - Optional - A value of <code>true</code> will return a URL to a torrent of the Amazon S3 object. A value of <code>false</code> will return a non-torrent URL. Defaults to <code>false</code>.</li>
2286
  * <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>
2287
  * @return string The file URL, with authentication and/or torrent parameters if requested.
2288
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/S3_QSAuth.html Using Query String Authentication
2289
  */
2290
  public function get_object_url($bucket, $filename, $preauth = 0, $opt = null)
2291
  {
@@ -2328,7 +2328,7 @@ class AmazonS3 extends CFRuntime
2328
  * @param string $filename (Required) The file name for the object.
2329
  * @param integer|string $preauth (Optional) Specifies that a presigned URL for this request should be returned. May be passed as a number of seconds since UNIX Epoch, or any string compatible with <php:strtotime()>.
2330
  * @return string The torrent URL, with authentication parameters if requested.
2331
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/index.html?S3TorrentRetrieve.html Using BitTorrent to Retrieve Objects Stored in Amazon S3
2332
  */
2333
  public function get_torrent_url($bucket, $filename, $preauth = 0)
2334
  {
@@ -2692,7 +2692,7 @@ class AmazonS3 extends CFRuntime
2692
  * <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>
2693
  * <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>
2694
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
2695
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html REST Access Control Policy
2696
  */
2697
  public function initiate_multipart_upload($bucket, $filename, $opt = null)
2698
  {
@@ -2995,7 +2995,7 @@ class AmazonS3 extends CFRuntime
2995
  * <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>
2996
  * <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>
2997
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
2998
- * @link http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html REST Access Control Policy
2999
  */
3000
  public function create_mpu_object($bucket, $filename, $opt = null)
3001
  {
@@ -3202,13 +3202,13 @@ class AmazonS3 extends CFRuntime
3202
  // WEBSITE CONFIGURATION
3203
 
3204
  /**
3205
- * This operation enables/configures an S3 Website using the corresponding bucket as the content source.
3206
  * The website will have one default domain name associated with it, which is the bucket name. If you
3207
- * attempt to configure an S3 website for a bucket whose name is not compatible with DNS, Amazon S3
3208
- * returns an <code>InvalidBucketName</code> error. For more information on bucket names and DNS,
3209
- * refer to Bucket Restrictions and Limitations.
3210
  *
3211
- * To visit the S3 bucket as a website a new endpoint is created in the following pattern
3212
  * <code>http://&lt;bucketName&gt;.s3-website-&lt;region&gt;.amazonaws.com</code>. This is a sample URL
3213
  * for a bucket called <code>example-bucket</code> in the <code>us-east-1</code> region.
3214
  * (e.g., <code>http://example-bucket.s3-website-us-east-1.amazonaws.com</code>)
@@ -3243,8 +3243,8 @@ class AmazonS3 extends CFRuntime
3243
  }
3244
 
3245
  /**
3246
- * This operation retrieves the website configuration for a bucket. The contents of this response are identical
3247
- * to the content submitted by the user during the website creation operation. If a website configuration has
3248
  * never been set, Amazon S3 will return a 404 error.
3249
  *
3250
  * @param string $bucket (Required) The name of the bucket to use.
@@ -3266,7 +3266,7 @@ class AmazonS3 extends CFRuntime
3266
  }
3267
 
3268
  /**
3269
- * This operation removes the website configuration for a bucket.
3270
  *
3271
  * @param string $bucket (Required) The name of the bucket to use.
3272
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
281
  * @param string $location (Do Not Use) Used internally by this function on occasions when Amazon S3 returns a redirect code and it needs to call itself recursively.
282
  * @param integer $redirects (Do Not Use) Used internally by this function on occasions when Amazon S3 returns a redirect code and it needs to call itself recursively.
283
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
284
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_Authentication.html REST authentication
285
  */
286
  public function authenticate($bucket, $opt = null, $location = null, $redirects = 0, $nothing = null)
287
  {
697
  $data = new $this->response_class($headers, $this->parse_callback($request->get_response_body()), $request->get_response_code());
698
 
699
  // Did Amazon tell us to redirect? Typically happens for multiple rapid requests EU datacenters.
700
+ // @see: http://docs.amazonwebservices.com/AmazonS3/latest/dev/Redirects.html
701
  if ((integer) $request->get_response_code() === 307) // Temporary redirect to new endpoint.
702
  {
703
  $data = $this->authenticate($bucket, $opt, $headers['location'], ++$redirects);
838
  *
839
  * @param string $vhost (Required) The virtual host to use in place of the default `bucket.s3.amazonaws.com` domain.
840
  * @return $this A reference to the current instance.
841
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/VirtualHosting.html Virtual Hosting of Buckets
842
  */
843
  public function set_vhost($vhost)
844
  {
875
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
876
  * <li><code>returnCurlHandle</code> - <code>boolean</code> - Optional - A private toggle specifying that the cURL handle be returned rather than actually completing the request.</li></ul>
877
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
878
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/UsingBucket.html Working with Amazon S3 Buckets
879
  */
880
  public function create_bucket($bucket, $region, $acl = self::ACL_PRIVATE, $opt = null)
881
  {
1031
  * <li><code>preauth</code> - <code>integer|string</code> - Optional - Specifies that a presigned URL for this request should be returned. May be passed as a number of seconds since UNIX Epoch, or any string compatible with <php:strtotime()>.</li>
1032
  * <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>
1033
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1034
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/RESTAccessPolicy.html REST Access Control Policy
1035
  */
1036
  public function get_bucket_acl($bucket, $opt = null)
1037
  {
1052
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
1053
  * <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>
1054
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1055
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/RESTAccessPolicy.html REST Access Control Policy
1056
  */
1057
  public function set_bucket_acl($bucket, $acl = self::ACL_PRIVATE, $opt = null)
1058
  {
1112
  * <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>
1113
  * <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>
1114
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1115
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/RESTAccessPolicy.html REST Access Control Policy
1116
  */
1117
  public function create_object($bucket, $filename, $opt = null)
1118
  {
1331
  * <li><code>metadataDirective</code> - <code>string</code> - Optional - Accepts either COPY or REPLACE. You will likely never need to use this, as it manages itself with no issues.</li>
1332
  * <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>
1333
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1334
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/API/RESTObjectCOPY.html Copying Amazon S3 Objects
1335
  */
1336
  public function copy_object($source, $dest, $opt = null)
1337
  {
1452
  * <li><code>meta</code> - <code>array</code> - Optional - An associative array of key-value pairs. Any header with the <code>x-amz-meta-</code> prefix is considered user metadata and is stored with the Amazon S3 object. 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>
1453
  * <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>
1454
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1455
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/API/RESTObjectCOPY.html Copying Amazon S3 Objects
1456
  */
1457
  public function update_object($bucket, $filename, $opt = null)
1458
  {
1481
  * <li><code>preauth</code> - <code>integer|string</code> - Optional - Specifies that a presigned URL for this request should be returned. May be passed as a number of seconds since UNIX Epoch, or any string compatible with <php:strtotime()>.</li>
1482
  * <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>
1483
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1484
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/RESTAccessPolicy.html REST Access Control Policy
1485
  */
1486
  public function get_object_acl($bucket, $filename, $opt = null)
1487
  {
1504
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
1505
  * <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>
1506
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1507
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/RESTAccessPolicy.html REST Access Control Policy
1508
  */
1509
  public function set_object_acl($bucket, $filename, $acl = self::ACL_PRIVATE, $opt = null)
1510
  {
1555
  * @param string $canonical_name (Required) The canonical display name for the bucket owner. Use the `AWS_CANONICAL_NAME` constant or the `display_name` value from <get_canonical_user_id()>.
1556
  * @param array $users (Optional) An array of associative arrays. Each associative array contains an `id` value and a `permission` value.
1557
  * @return string Access Control Policy XML.
1558
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_ACLs.html Access Control Lists
1559
  */
1560
  public function generate_access_policy($canonical_id, $canonical_name, $users)
1561
  {
1624
  * <li><code>preauth</code> - <code>integer|string</code> - Optional - Specifies that a presigned URL for this request should be returned. May be passed as a number of seconds since UNIX Epoch, or any string compatible with <php:strtotime()>.</li>
1625
  * <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>
1626
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1627
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/ServerLogs.html Server Access Logging
1628
  */
1629
  public function get_logs($bucket, $opt = null)
1630
  {
1647
  * <li><code>users</code> - <code>array</code> - Optional - An array of associative arrays specifying any user to give access to. Each associative array contains an <code>id</code> and <code>permission</code> value.</li>
1648
  * <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>
1649
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1650
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/LoggingAPI.html Server Access Logging Configuration API
1651
  */
1652
  public function enable_logging($bucket, $target_bucket, $target_prefix, $opt = null)
1653
  {
1725
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
1726
  * <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>
1727
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
1728
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/LoggingAPI.html Server Access Logging Configuration API
1729
  */
1730
  public function disable_logging($bucket, $opt = null)
1731
  {
2285
  * <li><code>torrent</code> - <code>boolean</code> - Optional - A value of <code>true</code> will return a URL to a torrent of the Amazon S3 object. A value of <code>false</code> will return a non-torrent URL. Defaults to <code>false</code>.</li>
2286
  * <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>
2287
  * @return string The file URL, with authentication and/or torrent parameters if requested.
2288
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html Using Query String Authentication
2289
  */
2290
  public function get_object_url($bucket, $filename, $preauth = 0, $opt = null)
2291
  {
2328
  * @param string $filename (Required) The file name for the object.
2329
  * @param integer|string $preauth (Optional) Specifies that a presigned URL for this request should be returned. May be passed as a number of seconds since UNIX Epoch, or any string compatible with <php:strtotime()>.
2330
  * @return string The torrent URL, with authentication parameters if requested.
2331
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?S3TorrentRetrieve.html Using BitTorrent to Retrieve Objects Stored in Amazon S3
2332
  */
2333
  public function get_torrent_url($bucket, $filename, $preauth = 0)
2334
  {
2692
  * <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>
2693
  * <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>
2694
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
2695
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/RESTAccessPolicy.html REST Access Control Policy
2696
  */
2697
  public function initiate_multipart_upload($bucket, $filename, $opt = null)
2698
  {
2995
  * <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>
2996
  * <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>
2997
  * @return CFResponse A <CFResponse> object containing a parsed HTTP response.
2998
+ * @link http://docs.amazonwebservices.com/AmazonS3/latest/dev/RESTAccessPolicy.html REST Access Control Policy
2999
  */
3000
  public function create_mpu_object($bucket, $filename, $opt = null)
3001
  {
3202
  // WEBSITE CONFIGURATION
3203
 
3204
  /**
3205
+ * Enables and configures an Amazon S3 website using the corresponding bucket as the content source.
3206
  * The website will have one default domain name associated with it, which is the bucket name. If you
3207
+ * attempt to configure an Amazon S3 website for a bucket whose name is not compatible with DNS,
3208
+ * Amazon S3 returns an <code>InvalidBucketName</code> error. For more information on bucket names and DNS,
3209
+ * refer to <a href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/BucketRestrictions.html">Bucket Restrictions and Limitations.</a>
3210
  *
3211
+ * To visit the bucket as a website a new endpoint is created in the following pattern:
3212
  * <code>http://&lt;bucketName&gt;.s3-website-&lt;region&gt;.amazonaws.com</code>. This is a sample URL
3213
  * for a bucket called <code>example-bucket</code> in the <code>us-east-1</code> region.
3214
  * (e.g., <code>http://example-bucket.s3-website-us-east-1.amazonaws.com</code>)
3243
  }
3244
 
3245
  /**
3246
+ * Retrieves the website configuration for a bucket. The contents of this response are identical to the
3247
+ * content submitted by the user during the website creation operation. If a website configuration has
3248
  * never been set, Amazon S3 will return a 404 error.
3249
  *
3250
  * @param string $bucket (Required) The name of the bucket to use.
3266
  }
3267
 
3268
  /**
3269
+ * Removes the website configuration for a bucket.
3270
  *
3271
  * @param string $bucket (Required) The name of the bucket to use.
3272
  * @param array $opt (Optional) An associative array of parameters that can have the following keys: <ul>
app/libs/aws/services/sdb.class.php CHANGED
@@ -31,7 +31,7 @@
31
  *
32
  * Visit <a href="http://aws.amazon.com/simpledb/">http://aws.amazon.com/simpledb/</a> for more information.
33
  *
34
- * @version Wed Feb 16 17:09:59 PST 2011
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
31
  *
32
  * Visit <a href="http://aws.amazon.com/simpledb/">http://aws.amazon.com/simpledb/</a> for more information.
33
  *
34
+ * @version Thu Feb 24 12:24:00 PST 2011
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
app/libs/aws/services/ses.class.php CHANGED
@@ -23,7 +23,7 @@
23
  * For specific details on how to construct a service request, please consult the <a
24
  * href="http://docs.amazonwebservices.com/ses/latest/DeveloperGuide">Amazon SES Developer Guide</a>.
25
  *
26
- * @version Wed Feb 16 17:06:48 PST 2011
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/ses/Amazon Simple Email Service
23
  * For specific details on how to construct a service request, please consult the <a
24
  * href="http://docs.amazonwebservices.com/ses/latest/DeveloperGuide">Amazon SES Developer Guide</a>.
25
  *
26
+ * @version Thu Feb 24 12:20:37 PST 2011
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/ses/Amazon Simple Email Service
app/libs/aws/services/sns.class.php CHANGED
@@ -17,7 +17,7 @@
17
  /**
18
 
19
  *
20
- * @version Wed Feb 16 17:10:34 PST 2011
21
  * @license See the included NOTICE.md file for complete information.
22
  * @copyright See the included NOTICE.md file for complete information.
23
  * @link http://aws.amazon.com/sns/Amazon Simple Notification Service
17
  /**
18
 
19
  *
20
+ * @version Thu Feb 24 12:24:35 PST 2011
21
  * @license See the included NOTICE.md file for complete information.
22
  * @copyright See the included NOTICE.md file for complete information.
23
  * @link http://aws.amazon.com/sns/Amazon Simple Notification Service
app/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 Wed Feb 16 17:11:10 PST 2011
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
30
  *
31
  * Visit <a href="http://aws.amazon.com/sqs/">http://aws.amazon.com/sqs/</a> for more information.
32
  *
33
+ * @version Thu Feb 24 12:25:08 PST 2011
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
app/libs/aws/utilities/stacktemplate.class.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2010-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License").
6
+ * You may not use this file except in compliance with the License.
7
+ * A copy of the License is located at
8
+ *
9
+ * http://aws.amazon.com/apache2.0
10
+ *
11
+ * or in the "license" file accompanying this file. This file is distributed
12
+ * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13
+ * express or implied. See the License for the specific language governing
14
+ * permissions and limitations under the License.
15
+ */
16
+
17
+
18
+ /*%******************************************************************************************%*/
19
+ // CLASS
20
+
21
+ /**
22
+ * Simplifies the process of preparing JSON stack templates.
23
+ *
24
+ * @version 2011.02.03
25
+ * @license See the included NOTICE.md file for more information.
26
+ * @copyright See the included NOTICE.md file for more information.
27
+ * @link http://aws.amazon.com/php/ PHP Developer Center
28
+ */
29
+ class CFStackTemplate
30
+ {
31
+ /**
32
+ * Removes whitespace from a JSON template.
33
+ *
34
+ * @param string $template (Required) A JSON representation of the stack template. Must have <a href="http://docs.php.net/manual/en/function.json-decode.php#refsect1-function.json-decode-examples">strict JSON-specific formatting</a>.
35
+ * @return string A JSON representation of the template.
36
+ */
37
+ public static function json($template)
38
+ {
39
+ return json_encode(json_decode($template, true));
40
+ }
41
+
42
+ /**
43
+ * Converts an associative array (map) of the template into a JSON string.
44
+ *
45
+ * @param array $template (Required) An associative array that maps directly to its JSON counterpart.
46
+ * @return string A JSON representation of the template.
47
+ */
48
+ public static function map($template)
49
+ {
50
+ return json_encode($template);
51
+ }
52
+ }
backwpup.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: BackWPup
4
  Plugin URI: http://danielhuesken.de/portfolio/backwpup/
5
  Description: Backup and more of your WordPress Blog Database and Files.
6
  Author: Daniel H&uuml;sken
7
- Version: 1.5.0
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
@@ -34,7 +34,7 @@ if ( !defined('ABSPATH') )
34
  //Set plugin dirname
35
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
36
  //Set Plugin Version
37
- define('BACKWPUP_VERSION', '1.5.0');
38
  //Set useable destinations
39
  if (!defined('BACKWPUP_DESTS'))
40
  define('BACKWPUP_DESTS', 'S3,RSC,FTP,DROPBOX');
4
  Plugin URI: http://danielhuesken.de/portfolio/backwpup/
5
  Description: Backup and more of your WordPress Blog Database and Files.
6
  Author: Daniel H&uuml;sken
7
+ Version: 1.5.1
8
  Author URI: http://danielhuesken.de
9
  Text Domain: backwpup
10
  Domain Path: /lang/
34
  //Set plugin dirname
35
  define('BACKWPUP_PLUGIN_BASEDIR', dirname(plugin_basename(__FILE__)));
36
  //Set Plugin Version
37
+ define('BACKWPUP_VERSION', '1.5.1');
38
  //Set useable destinations
39
  if (!defined('BACKWPUP_DESTS'))
40
  define('BACKWPUP_DESTS', 'S3,RSC,FTP,DROPBOX');
lang/backwpup.pot CHANGED
@@ -1,1154 +1,1517 @@
1
- # Translation of the WordPress plugin BackWPup 1.0.0 by Daniel H&uuml;sken.
2
- # Copyright (C) 2010 Daniel H&uuml;sken
3
  # This file is distributed under the same license as the BackWPup package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
- #
6
- #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: BackWPup 1.0.0\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/backwpup\n"
11
- "POT-Creation-Date: 2010-06-23 17:08+0000\n"
 
 
 
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=utf-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
 
19
- #: app/backwpup_dojob.php:21
20
- msgid "[WARNING]"
21
  msgstr ""
22
 
23
- #: app/backwpup_dojob.php:30
24
- msgid "[ERROR]"
25
  msgstr ""
26
 
27
- #: app/backwpup_dojob.php:37
28
- msgid "[DEPRECATED]"
29
  msgstr ""
30
 
31
- #: app/backwpup_dojob.php:41
32
- msgid "[PARSING ERROR]"
33
  msgstr ""
34
 
35
- #: app/backwpup_dojob.php:45
36
- msgid "[STRICT NOTICE]"
37
  msgstr ""
38
 
39
- #: app/backwpup_dojob.php:49
40
- msgid "[RECOVERABLE ERROR]"
41
  msgstr ""
42
 
43
- #: app/backwpup_dojob.php:172
44
- #, php-format
45
- msgid "BackWPup Log for %1$s from %2$s at %3$s"
46
  msgstr ""
47
 
48
- #: app/backwpup_dojob.php:185
49
- #, php-format
50
- msgid "PHP Safe Mode is on!!! Max exec time is %1$d sec."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  msgstr ""
52
 
53
- #: app/backwpup_dojob.php:192
54
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgid ""
56
- "Memory limit set to %1$s ,because can not use PHP: memory_get_usage() "
57
- "function to dynamicli increase the Memeory!"
58
  msgstr ""
59
 
60
- #: app/backwpup_dojob.php:241
61
- #, php-format
62
- msgid "Can not create Folder: %1$s"
 
63
  msgstr ""
64
 
65
- #: app/backwpup_dojob.php:246
66
- #, php-format
67
- msgid "Can not write to Folder: %1$s"
68
  msgstr ""
69
 
70
- #: app/backwpup_dojob.php:286
71
- #, php-format
72
- msgid "PHP Safe Mode is on!!! Can not increase Memory Limit is %1$s"
73
  msgstr ""
74
 
75
- #: app/backwpup_dojob.php:291
76
- #, php-format
77
- msgid "Memory increased from %1$s to %2$s"
78
  msgstr ""
79
 
80
- #: app/backwpup_dojob.php:293
81
- #, php-format
82
- msgid "Can not increase Memory Limit is %1$s"
 
83
  msgstr ""
84
 
85
- #: app/backwpup_dojob.php:303
86
- msgid "Set Blog to Maintenance Mode"
87
  msgstr ""
88
 
89
- #: app/backwpup_dojob.php:319
90
- msgid "Set Blog to normal Mode"
91
  msgstr ""
92
 
93
- #: app/backwpup_dojob.php:335
94
- msgid "Run Database check..."
95
  msgstr ""
96
 
97
- #: app/backwpup_dojob.php:354 app/backwpup_dojob.php:356
98
- #: app/backwpup_dojob.php:358
99
- #, php-format
100
- msgid "Result of table check for %1$s is: %2$s"
101
  msgstr ""
102
 
103
- #: app/backwpup_dojob.php:361 app/backwpup_dojob.php:373
104
- #: app/backwpup_dojob.php:397 app/backwpup_dojob.php:407
105
- #: app/backwpup_dojob.php:448 app/backwpup_dojob.php:460
106
- #: app/backwpup_dojob.php:564 app/tools/db_restore.php:63
107
- #, php-format
108
- msgid "BackWPup database error %1$s for query %2$s"
109
  msgstr ""
110
 
111
- #: app/backwpup_dojob.php:366 app/backwpup_dojob.php:368
112
- #: app/backwpup_dojob.php:370
113
- #, php-format
114
- msgid "Result of table repair for %1$s is: %2$s"
115
  msgstr ""
116
 
117
- #: app/backwpup_dojob.php:378
118
- msgid "Database check done!"
119
  msgstr ""
120
 
121
- #: app/backwpup_dojob.php:380
122
- msgid "No Tables to check"
123
  msgstr ""
124
 
125
- #: app/backwpup_dojob.php:442
126
- msgid "Run Database Dump to file..."
127
  msgstr ""
128
 
129
- #: app/backwpup_dojob.php:493
130
- msgid "Dump Database table: "
131
  msgstr ""
132
 
133
- #: app/backwpup_dojob.php:509
134
- msgid "Can not create Database Dump file"
135
  msgstr ""
136
 
137
- #: app/backwpup_dojob.php:512
138
- msgid "No Tables to Dump"
139
  msgstr ""
140
 
141
- #: app/backwpup_dojob.php:515
142
- msgid "Database Dump done!"
143
  msgstr ""
144
 
145
- #: app/backwpup_dojob.php:517
146
- msgid "Add Database Dump to Backup:"
147
  msgstr ""
148
 
149
- #: app/backwpup_dojob.php:525
150
- msgid "Run Wordpress Export to XML file..."
151
  msgstr ""
152
 
153
- #: app/backwpup_dojob.php:527
154
- msgid "Export to XML done!"
155
  msgstr ""
156
 
157
- #: app/backwpup_dojob.php:529
158
- msgid "Add XML Export to Backup:"
159
  msgstr ""
160
 
161
- #: app/backwpup_dojob.php:533
162
- msgid "Can not Export to XML!"
163
  msgstr ""
164
 
165
- #: app/backwpup_dojob.php:540
166
- msgid "Run Database optimize..."
167
  msgstr ""
168
 
169
- #: app/backwpup_dojob.php:557 app/backwpup_dojob.php:559
170
- #: app/backwpup_dojob.php:561
171
- #, php-format
172
- msgid "Result of table optimize for %1$s is: %2$s"
173
  msgstr ""
174
 
175
- #: app/backwpup_dojob.php:567
176
- msgid "Database optimize done!"
177
  msgstr ""
178
 
179
- #: app/backwpup_dojob.php:570
180
- msgid "No Tables to optimize"
181
  msgstr ""
182
 
183
- #: app/backwpup_dojob.php:600
184
- msgid "Can not read file:"
185
  msgstr ""
186
 
187
- #: app/backwpup_dojob.php:603
188
- msgid "Is not a file or directory:"
 
 
189
  msgstr ""
190
 
191
- #: app/backwpup_dojob.php:612
192
- msgid "Make a list of files to Backup ...."
193
  msgstr ""
194
 
195
- #: app/backwpup_dojob.php:647
196
- msgid "No files to Backup"
197
  msgstr ""
198
 
199
- #: app/backwpup_dojob.php:649
200
- msgid "Size off all files:"
201
  msgstr ""
202
 
203
- #: app/backwpup_dojob.php:657
204
- msgid "Create Backup Zip file..."
205
  msgstr ""
206
 
207
- #: app/backwpup_dojob.php:662 app/backwpup_dojob.php:682
208
- msgid "Add File to ZIP file:"
209
  msgstr ""
210
 
211
- #: app/backwpup_dojob.php:664
212
- msgid "Can not add File to ZIP file:"
213
  msgstr ""
214
 
215
- #: app/backwpup_dojob.php:668 app/backwpup_dojob.php:688
216
- msgid "Backup Zip file create done!"
217
  msgstr ""
218
 
219
- #: app/backwpup_dojob.php:670
220
- msgid "Can not create Backup ZIP file:"
221
  msgstr ""
222
 
223
- #: app/backwpup_dojob.php:680
224
- msgid "Create Backup Zip (PclZip) file..."
 
225
  msgstr ""
226
 
227
- #: app/backwpup_dojob.php:686
228
- msgid "Zip file create:"
229
  msgstr ""
230
 
231
- #: app/backwpup_dojob.php:705
232
- msgid "Can not create TAR Backup file"
233
  msgstr ""
234
 
235
- #: app/backwpup_dojob.php:708
236
- msgid "Create Backup Archive file..."
237
  msgstr ""
238
 
239
- #: app/backwpup_dojob.php:714
240
- msgid "Add File to Backup Archive:"
241
  msgstr ""
242
 
243
- #: app/backwpup_dojob.php:783
244
- msgid "Backup Archive file create done!"
245
  msgstr ""
246
 
247
- #: app/backwpup_dojob.php:790 app/backwpup_dojob.php:792
248
- #: app/backwpup_dojob.php:868 app/backwpup_dojob.php:874
249
- msgid "FTP Client command:"
250
  msgstr ""
251
 
252
- #: app/backwpup_dojob.php:797
253
- msgid "FTP Server Preliminary reply:"
254
  msgstr ""
255
 
256
- #: app/backwpup_dojob.php:800 app/backwpup_dojob.php:851
257
- msgid "FTP Server Completion reply:"
258
  msgstr ""
259
 
260
- #: app/backwpup_dojob.php:803
261
- msgid "FTP Server Intermediate reply:"
262
  msgstr ""
263
 
264
- #: app/backwpup_dojob.php:806 app/backwpup_dojob.php:809
265
- #: app/backwpup_dojob.php:872 app/backwpup_dojob.php:876
266
- msgid "FTP Server reply:"
267
  msgstr ""
268
 
269
- #: app/backwpup_dojob.php:833
270
- msgid "Connected by SSL to FTP server:"
271
  msgstr ""
272
 
273
- #: app/backwpup_dojob.php:839
274
- msgid "Connected insecure to FTP server:"
 
 
275
  msgstr ""
276
 
277
- #: app/backwpup_dojob.php:844
278
- msgid "Can not connect to FTP server:"
279
  msgstr ""
280
 
281
- #: app/backwpup_dojob.php:870
282
- msgid "Server Completion reply: 227 Entering Passive Mode"
283
  msgstr ""
284
 
285
- #: app/backwpup_dojob.php:872
286
- msgid "Can not Entering Passive Mode"
287
  msgstr ""
288
 
289
- #: app/backwpup_dojob.php:884
290
- msgid "FTP Dir on Server not exists!"
291
  msgstr ""
292
 
293
- #: app/backwpup_dojob.php:886
294
- msgid "FTP Dir created!"
295
  msgstr ""
296
 
297
- #: app/backwpup_dojob.php:889
298
- msgid "FTP Dir on Server can not created!"
299
  msgstr ""
300
 
301
- #: app/backwpup_dojob.php:895
302
- msgid "Backup File transferred to FTP Server:"
303
  msgstr ""
304
 
305
- #: app/backwpup_dojob.php:897
306
- msgid "Can not transfer backup to FTP server."
307
  msgstr ""
308
 
309
- #: app/backwpup_dojob.php:913
310
- msgid "Can not delete file on FTP Server:"
311
  msgstr ""
312
 
313
- #: app/backwpup_dojob.php:916
314
- msgid "files deleted on FTP Server:"
315
  msgstr ""
316
 
317
- #: app/backwpup_dojob.php:928
318
- msgid "Prepare Sending backupfile with mail..."
319
  msgstr ""
320
 
321
- #: app/backwpup_dojob.php:931
322
- msgid "No file to send!"
323
  msgstr ""
324
 
325
- #: app/backwpup_dojob.php:953
326
- msgid "Send mail with SMTP"
327
  msgstr ""
328
 
329
- #: app/backwpup_dojob.php:957
330
- msgid "Send mail with Sendmail"
331
  msgstr ""
332
 
333
- #: app/backwpup_dojob.php:960
334
- msgid "Send mail with PHP mail"
335
  msgstr ""
336
 
337
- #: app/backwpup_dojob.php:964
338
- msgid "Creating mail"
339
  msgstr ""
340
 
341
- #: app/backwpup_dojob.php:968
342
- msgid "BackWPup File from"
343
  msgstr ""
344
 
345
- #: app/backwpup_dojob.php:976
346
- msgid "Backup Archive too big for sending by mail"
347
  msgstr ""
348
 
349
- #: app/backwpup_dojob.php:981
350
- msgid "Adding Attachment to mail"
351
  msgstr ""
352
 
353
- #: app/backwpup_dojob.php:985
354
- msgid "Send mail...."
355
  msgstr ""
356
 
357
- #: app/backwpup_dojob.php:987
358
- msgid "Mail send!!!"
359
  msgstr ""
360
 
361
- #: app/backwpup_dojob.php:989
362
- msgid "Can not send mail:"
363
  msgstr ""
364
 
365
- #: app/backwpup_dojob.php:1003
366
- msgid "Can not load curl extension is needed for S3!"
367
  msgstr ""
368
 
369
- #: app/backwpup_dojob.php:1012
370
- msgid "Connected to S3 Bucket:"
371
  msgstr ""
372
 
373
- #: app/backwpup_dojob.php:1015
374
- msgid "Backup File transferred to S3://"
375
  msgstr ""
376
 
377
- #: app/backwpup_dojob.php:1017
378
- msgid "Can not transfer backup to S3."
379
  msgstr ""
380
 
381
- #: app/backwpup_dojob.php:1037
382
- msgid "Can not delete file on S3//:"
383
  msgstr ""
384
 
385
- #: app/backwpup_dojob.php:1039
386
- msgid "files deleted on S3 Bucket!"
387
  msgstr ""
388
 
389
- #: app/backwpup_dojob.php:1044
390
- msgid "S3 Bucket not exists:"
391
  msgstr ""
392
 
393
- #: app/backwpup_dojob.php:1067
394
- msgid "old backup files deleted!!!"
395
  msgstr ""
396
 
397
- #: app/backwpup_dojob.php:1076
398
- #, php-format
399
- msgid "Backup Archive File size is %1s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
  msgstr ""
401
 
402
- #: app/backwpup_dojob.php:1108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  msgid "old Log files deleted!!!"
404
  msgstr ""
405
 
406
- #: app/backwpup_dojob.php:1117
407
- #, php-format
 
 
 
408
  msgid "Job done in %1s sec."
409
  msgstr ""
410
 
411
- #: app/backwpup_dojob.php:1144
412
- msgid "Jobname:"
413
  msgstr ""
414
 
415
- #: app/backwpup_dojob.php:1145
416
- msgid "Jobtype:"
417
  msgstr ""
418
 
419
- #: app/backwpup_dojob.php:1147
420
- msgid "Errors:"
421
  msgstr ""
422
 
423
- #: app/backwpup_dojob.php:1149
424
- msgid "Warnings:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
  msgstr ""
426
 
427
- #: app/backwpup_dojob.php:1150
428
- msgid "BackWPup Log File from"
429
  msgstr ""
430
 
431
- #. #-#-#-#-# plugin.pot (BackWPup 1.0.0) #-#-#-#-#
432
- #. Plugin Name of the plugin/theme
433
- #: app/functions.php:8 app/options.php:8
434
- msgid "BackWPup"
435
  msgstr ""
436
 
437
- #: app/functions.php:13
438
- msgid "Job"
439
  msgstr ""
440
 
441
- #: app/functions.php:13 app/functions.php:26
442
- msgid "Type"
443
  msgstr ""
444
 
445
- #: app/functions.php:13
446
- msgid "Backup/Log Date/Time"
447
  msgstr ""
448
 
449
- #: app/functions.php:13
450
- msgid "Status"
451
  msgstr ""
452
 
453
- #: app/functions.php:13
454
- msgid "Size"
455
  msgstr ""
456
 
457
- #: app/functions.php:13
458
- msgid "Runtime"
459
  msgstr ""
460
 
461
- #: app/functions.php:26
462
- msgid "ID"
463
  msgstr ""
464
 
465
- #: app/functions.php:26
466
- msgid "Job Name"
467
  msgstr ""
468
 
469
- #: app/functions.php:26
470
- msgid "Next Run"
471
  msgstr ""
472
 
473
- #: app/functions.php:26
474
- msgid "Last Run"
475
  msgstr ""
476
 
477
- #: app/functions.php:34 app/functions.php:165
478
- msgid "Support"
479
  msgstr ""
480
 
481
- #: app/functions.php:35 app/functions.php:164
482
- msgid "FAQ"
483
  msgstr ""
484
 
485
- #: app/functions.php:36
486
- msgid "Plugin Homepage"
487
  msgstr ""
488
 
489
- #: app/functions.php:37
490
- msgid "Plugin Home on WordPress.org"
491
  msgstr ""
492
 
493
- #: app/functions.php:38 app/functions.php:166
494
- msgid "Donate"
495
  msgstr ""
496
 
497
- #: app/functions.php:41
498
- msgid "Version:"
499
  msgstr ""
500
 
501
- #: app/functions.php:42
502
- msgid "Author:"
503
  msgstr ""
504
 
505
- #: app/functions.php:156
506
- msgid "Go to Settings Page"
507
  msgstr ""
508
 
509
- #: app/functions.php:156 app/options-logs.php:13 app/options-runnow.php:13
510
- #: app/options-settings.php:13 app/options-tools.php:14
511
- #: app/options-view_log.php:13 app/options.php:13
512
- msgid "Settings"
513
  msgstr ""
514
 
515
- #: app/functions.php:177
516
- msgid "BackWPup Job "
 
517
  msgstr ""
518
 
519
- #: app/functions.php:219
520
- msgid "WP XML Export"
 
 
 
 
521
  msgstr ""
522
 
523
- #: app/functions.php:222
524
- msgid "Database Backup"
525
  msgstr ""
526
 
527
- #: app/functions.php:225 app/options-jobs.php:176
528
- msgid "File Backup"
529
  msgstr ""
530
 
531
- #: app/functions.php:228
532
- msgid "Optimize Database Tables"
533
  msgstr ""
534
 
535
- #: app/functions.php:231
536
- msgid "Check Database Tables"
537
  msgstr ""
538
 
539
- #: app/functions.php:275
540
- msgid "Logs:"
541
  msgstr ""
542
 
543
- #: app/functions.php:291 app/options-view_log.php:17
544
- msgid "View Log"
545
  msgstr ""
546
 
547
- #: app/functions.php:299 app/options-logs.php:116
548
- msgid "ERROR(S)"
549
  msgstr ""
550
 
551
- #: app/functions.php:301 app/options-logs.php:118
552
- msgid "WARNING(S)"
553
  msgstr ""
554
 
555
- #: app/functions.php:303 app/options-logs.php:120
556
- msgid "OK"
557
  msgstr ""
558
 
559
- #: app/functions.php:311 app/functions.php:329 app/options-settings.php:67
560
- msgid "none"
561
  msgstr ""
562
 
563
- #: app/functions.php:314
564
- msgid "Scheduled Jobs:"
565
  msgstr ""
566
 
567
- #: app/functions.php:318
568
- msgid "Edit Job"
569
  msgstr ""
570
 
571
- #: app/functions.php:321 app/options.php:98
572
- msgid "Running since:"
573
  msgstr ""
574
 
575
- #: app/functions.php:321 app/options-logs.php:137 app/options.php:98
576
- #: app/options.php:111
577
- msgid "sec."
578
  msgstr ""
579
 
580
- #: app/options-jobs.php:8
581
- msgid "BackWPup Job Settings"
582
  msgstr ""
583
 
584
- #: app/options-jobs.php:26
585
- msgid "Job Type"
586
  msgstr ""
587
 
588
- #: app/options-jobs.php:38 app/options-logs.php:97 app/options.php:76
589
- msgid ""
590
- "You are about to delete this Job. \n"
591
- " 'Cancel' to stop, 'OK' to delete."
592
  msgstr ""
593
 
594
- #: app/options-jobs.php:38 app/options-logs.php:24 app/options-logs.php:97
595
- #: app/options-logs.php:151 app/options.php:24 app/options.php:76
596
- #: app/options.php:129
597
- msgid "Delete"
598
  msgstr ""
599
 
600
- #: app/options-jobs.php:41 app/options-settings.php:25
601
- #: app/options-settings.php:103
602
- msgid "Save Changes"
603
  msgstr ""
604
 
605
- #: app/options-jobs.php:48
606
- msgid "Job Schedule"
607
  msgstr ""
608
 
609
- #: app/options-jobs.php:50
610
- msgid "Activate scheduling"
611
  msgstr ""
612
 
613
- #: app/options-jobs.php:52
614
- msgid "Run Every:"
615
  msgstr ""
616
 
617
- #: app/options-jobs.php:61
618
- msgid "Min(s)"
619
  msgstr ""
620
 
621
- #: app/options-jobs.php:62
622
- msgid "Hour(s)"
623
  msgstr ""
624
 
625
- #: app/options-jobs.php:63
626
- msgid "Day(s)"
627
  msgstr ""
628
 
629
- #: app/options-jobs.php:66
630
- msgid "Start Date/Time:"
631
  msgstr ""
632
 
633
- #: app/options-jobs.php:75
634
- msgid "January"
635
  msgstr ""
636
 
637
- #: app/options-jobs.php:75
638
- msgid "February"
639
  msgstr ""
640
 
641
- #: app/options-jobs.php:75
642
- msgid "March"
643
  msgstr ""
644
 
645
- #: app/options-jobs.php:75
646
- msgid "April"
647
  msgstr ""
648
 
649
- #: app/options-jobs.php:75
650
- msgid "May"
651
  msgstr ""
652
 
653
- #: app/options-jobs.php:75
654
- msgid "June"
655
  msgstr ""
656
 
657
- #: app/options-jobs.php:75
658
- msgid "July"
659
  msgstr ""
660
 
661
- #: app/options-jobs.php:75
662
- msgid "August"
663
  msgstr ""
664
 
665
- #: app/options-jobs.php:75
666
- msgid "September"
667
  msgstr ""
668
 
669
- #: app/options-jobs.php:75
670
- msgid "October"
671
  msgstr ""
672
 
673
- #: app/options-jobs.php:75
674
- msgid "November"
675
  msgstr ""
676
 
677
- #: app/options-jobs.php:75
678
- msgid "December"
679
  msgstr ""
680
 
681
- #: app/options-jobs.php:106
682
- msgid "Backup File Format"
683
  msgstr ""
684
 
685
- #: app/options-jobs.php:112
686
- msgid "ZIP (.zip)"
687
  msgstr ""
688
 
689
- #: app/options-jobs.php:113
690
- msgid "TAR (.tar)"
691
  msgstr ""
692
 
693
- #: app/options-jobs.php:115
694
- msgid "TAR GZIP (.tar.gz)"
695
  msgstr ""
696
 
697
- #: app/options-jobs.php:117
698
- msgid "TAR BZIP2 (.tar.bz2)"
699
  msgstr ""
700
 
701
- #: app/options-jobs.php:123
702
- msgid "Send log"
703
  msgstr ""
704
 
705
- #: app/options-jobs.php:125 app/options-jobs.php:255
706
- msgid "E-Mail-Adress:"
707
  msgstr ""
708
 
709
- #: app/options-jobs.php:132
710
- msgid "Send only E-Mail on errors."
711
  msgstr ""
712
 
713
- #: app/options-jobs.php:144 app/options-jobs.php:145
714
- msgid "Enter Job name here"
715
  msgstr ""
716
 
717
- #: app/options-jobs.php:150
718
- msgid "Database Jobs"
719
  msgstr ""
720
 
721
- #: app/options-jobs.php:153
722
- msgid "Database Tabels to Exclude:"
723
  msgstr ""
724
 
725
- #: app/options-jobs.php:171
726
- msgid "Set Blog Maintenance Mode on Database Operations"
727
  msgstr ""
728
 
729
- #: app/options-jobs.php:178
730
- msgid "Blog Folders to Backup:"
731
  msgstr ""
732
 
733
- #: app/options-jobs.php:188
734
- msgid "Blog root and WP Files"
735
  msgstr ""
736
 
737
- #: app/options-jobs.php:189
738
- msgid "Blog Content"
739
  msgstr ""
740
 
741
- #: app/options-jobs.php:190
742
- msgid "Blog Plugins"
743
  msgstr ""
744
 
745
- #: app/options-jobs.php:192
746
- msgid "Include Folders to Backup:"
747
  msgstr ""
748
 
749
- #: app/options-jobs.php:193 app/options-jobs.php:197
750
- msgid "Example:"
751
  msgstr ""
752
 
753
- #: app/options-jobs.php:196
754
- msgid "Exclude Files/Folders from Backup:"
755
  msgstr ""
756
 
757
- #: app/options-jobs.php:203
758
- msgid "Backup to Directory"
759
  msgstr ""
760
 
761
- #: app/options-jobs.php:213
762
- msgid "Full Path to Folder for Backup Files:"
763
  msgstr ""
764
 
765
- #: app/options-jobs.php:215
766
- msgid "Max. Backup Files in Folder:"
767
  msgstr ""
768
 
769
- #: app/options-jobs.php:215 app/options-jobs.php:231 app/options-jobs.php:247
770
- #: app/options-settings.php:83
771
- msgid "(Oldest files will deleted first.)"
772
  msgstr ""
773
 
774
- #: app/options-jobs.php:220
775
- msgid "Backup to FTP Server"
776
  msgstr ""
777
 
778
- #: app/options-jobs.php:222
779
- msgid "Hostname:"
780
  msgstr ""
781
 
782
- #: app/options-jobs.php:224
783
- msgid "Username:"
784
  msgstr ""
785
 
786
- #: app/options-jobs.php:226
787
- msgid "Password:"
788
  msgstr ""
789
 
790
- #: app/options-jobs.php:228
791
- msgid "Directory on Server:"
792
  msgstr ""
793
 
794
- #: app/options-jobs.php:231
795
- msgid "Max. Backup Files in FTP Folder:"
796
  msgstr ""
797
 
798
- #: app/options-jobs.php:236
799
- msgid "Backup to Amazon S3"
 
800
  msgstr ""
801
 
802
- #: app/options-jobs.php:238 app/options-tools.php:79
803
- msgid "Access Key ID:"
804
  msgstr ""
805
 
806
- #: app/options-jobs.php:240 app/options-tools.php:80
807
- msgid "Secret Access Key:"
808
  msgstr ""
809
 
810
- #: app/options-jobs.php:242
811
- msgid "Bucket:"
812
  msgstr ""
813
 
814
- #: app/options-jobs.php:244
815
- msgid "Directory in Bucket:"
816
  msgstr ""
817
 
818
- #: app/options-jobs.php:247
819
- msgid "Max. Backup Files inn Bucket Folder:"
820
  msgstr ""
821
 
822
- #: app/options-jobs.php:248
823
- msgid "Use SSL connection."
824
  msgstr ""
825
 
826
- #: app/options-jobs.php:253
827
- msgid "Backup to E-Mail"
828
  msgstr ""
829
 
830
- #: app/options-jobs.php:258
831
- msgid "Max. File Size for sending Backups with mail:"
832
  msgstr ""
833
 
834
- #: app/options-logs.php:8
835
- msgid "BackWPup Logs"
836
  msgstr ""
837
 
838
- #: app/options-logs.php:10 app/options-runnow.php:10
839
- #: app/options-settings.php:10 app/options-tools.php:11
840
- #: app/options-view_log.php:10 app/options.php:10
841
- msgid "Jobs"
842
  msgstr ""
843
 
844
- #: app/options-logs.php:11 app/options-runnow.php:11
845
- #: app/options-settings.php:11 app/options-settings.php:78
846
- #: app/options-tools.php:12 app/options-view_log.php:11 app/options.php:11
847
- msgid "Logs"
848
  msgstr ""
849
 
850
- #: app/options-logs.php:12 app/options-runnow.php:12
851
- #: app/options-settings.php:12 app/options-tools.php:13
852
- #: app/options-view_log.php:12 app/options.php:12
853
- msgid "Tools"
854
  msgstr ""
855
 
856
- #: app/options-logs.php:23 app/options-logs.php:150 app/options.php:23
857
- #: app/options.php:128
858
- msgid "Bulk Actions"
859
  msgstr ""
860
 
861
- #: app/options-logs.php:26 app/options-logs.php:153 app/options.php:26
862
- #: app/options.php:131
863
- msgid "Apply"
864
  msgstr ""
865
 
866
- #: app/options-logs.php:94
867
  msgid "View log"
868
  msgstr ""
869
 
870
- #: app/options-logs.php:96
871
  msgid "View"
872
  msgstr ""
873
 
874
- #: app/options-logs.php:98
875
- msgid "Download Log"
876
  msgstr ""
877
 
878
- #: app/options-logs.php:100
879
- msgid "Download Backup"
880
  msgstr ""
881
 
882
- #: app/options-logs.php:129
883
- msgid "File not exists"
884
  msgstr ""
885
 
886
- #: app/options-logs.php:131
887
  msgid "only Log"
888
  msgstr ""
889
 
890
- #: app/options-runnow-iframe.php:16
891
- msgid "Do Job"
892
  msgstr ""
893
 
894
- #: app/options-runnow.php:8
895
- msgid "BackWPup Job Running"
896
  msgstr ""
897
 
898
- #: app/options-runnow.php:17
899
- msgid "Running Job"
 
 
900
  msgstr ""
901
 
902
- #: app/options-save.php:20
903
- msgid "Jobs %1 deleted"
904
  msgstr ""
905
 
906
- #: app/options-save.php:28
907
- msgid "Job %1 deleted"
 
 
908
  msgstr ""
909
 
910
- #: app/options-save.php:43
911
- msgid "Logs deleted"
912
  msgstr ""
913
 
914
- #: app/options-save.php:48
915
- msgid "Log deleted"
916
  msgstr ""
917
 
918
- #: app/options-save.php:69
919
- msgid "Settings saved"
920
  msgstr ""
921
 
922
- #: app/options-save.php:82
923
- msgid "Copy of"
924
  msgstr ""
925
 
926
- #: app/options-save.php:85
927
- msgid "Job copied"
928
  msgstr ""
929
 
930
- #: app/options-save.php:103
931
- msgid "File does not exist."
932
  msgstr ""
933
 
934
- #: app/options-save.php:166
935
- msgid "Job '%1' changes saved"
936
  msgstr ""
937
 
938
- #: app/options-settings.php:8
939
- msgid "BackWPup Settings"
940
  msgstr ""
941
 
942
- #: app/options-settings.php:32
943
- msgid "Max Memory Usage"
944
  msgstr ""
945
 
946
- #: app/options-settings.php:35
947
- msgid "PHP.ini Memory Limit:"
948
  msgstr ""
949
 
950
- #: app/options-settings.php:41
951
- msgid "Set Memory limit:"
952
  msgstr ""
953
 
954
- #: app/options-settings.php:43
955
- msgid "Memory will be automatically increased!!!"
956
  msgstr ""
957
 
958
- #: app/options-settings.php:50
959
- msgid "Send Mail"
960
  msgstr ""
961
 
962
- #: app/options-settings.php:52
963
- msgid "Sender Email:"
964
  msgstr ""
965
 
966
- #: app/options-settings.php:53
967
- msgid "Sender Name:"
968
  msgstr ""
969
 
970
- #: app/options-settings.php:54
971
- msgid "Send mail method:"
972
  msgstr ""
973
 
974
- #: app/options-settings.php:57
975
- msgid "PHP: mail()"
976
  msgstr ""
977
 
978
- #: app/options-settings.php:58
979
- msgid "Sendmail"
980
  msgstr ""
981
 
982
- #: app/options-settings.php:59
983
- msgid "SMTP"
984
  msgstr ""
985
 
986
- #: app/options-settings.php:62
987
- msgid "Sendmail Path:"
988
  msgstr ""
989
 
990
- #: app/options-settings.php:64
991
- msgid "SMTP Hostname:"
992
  msgstr ""
993
 
994
- #: app/options-settings.php:65
995
- msgid "SMTP Secure Connection:"
996
  msgstr ""
997
 
998
- #: app/options-settings.php:71
999
- msgid "SMTP Username:"
1000
  msgstr ""
1001
 
1002
- #: app/options-settings.php:72
1003
- msgid "SMTP Password:"
1004
  msgstr ""
1005
 
1006
- #: app/options-settings.php:80
1007
- msgid "Log file Folder:"
1008
  msgstr ""
1009
 
1010
- #: app/options-settings.php:82
1011
- msgid "Max. Log Files in Folder:"
1012
  msgstr ""
1013
 
1014
- #: app/options-settings.php:88
1015
- msgid "Disable WP-Cron"
1016
  msgstr ""
1017
 
1018
- #: app/options-settings.php:90
1019
- msgid "Use Cron job of Hoster and disable WP_Cron"
1020
  msgstr ""
1021
 
1022
- #: app/options-settings.php:91
1023
- msgid "You must set up a cron job that calls:"
1024
  msgstr ""
1025
 
1026
- #: app/options-settings.php:93
1027
- msgid "or URL:"
1028
  msgstr ""
1029
 
1030
- #: app/options-settings.php:98
1031
- msgid "Temp Folder"
1032
  msgstr ""
1033
 
1034
- #: app/options-tools.php:8
1035
- msgid "BackWPup Tools"
1036
  msgstr ""
1037
 
1038
- #: app/options-tools.php:34
1039
- msgid "Database restore"
1040
  msgstr ""
1041
 
1042
- #: app/options-tools.php:37 app/options-tools.php:55
1043
- msgid "Restore"
1044
  msgstr ""
1045
 
1046
- #: app/options-tools.php:52
1047
- msgid "SQL File to restore:"
1048
  msgstr ""
1049
 
1050
- #: app/options-tools.php:58
1051
- msgid "Copy SQL file to Blog root folder to use restore."
1052
  msgstr ""
1053
 
1054
- #: app/options-tools.php:66
1055
- msgid "Create Amazon S3 Bucket"
1056
  msgstr ""
1057
 
1058
- #: app/options-tools.php:69 app/options-tools.php:83
1059
- msgid "Create"
1060
  msgstr ""
1061
 
1062
- #: app/options-tools.php:73
1063
- msgid "Amazone S3 Bucket created."
1064
  msgstr ""
1065
 
1066
- #: app/options-tools.php:75
1067
- msgid "Can not create Amazon S3 Bucket."
1068
  msgstr ""
1069
 
1070
- #: app/options-tools.php:81
1071
- msgid "Bucket Name:"
1072
  msgstr ""
1073
 
1074
- #: app/options-tools.php:82
1075
- msgid "Bucket Region:"
 
 
 
1076
  msgstr ""
1077
 
1078
- #: app/options-tools.php:82
1079
- msgid "US"
1080
  msgstr ""
1081
 
1082
- #: app/options-tools.php:82
1083
- msgid "Europe"
1084
  msgstr ""
1085
 
1086
- #: app/options-view_log.php:8
1087
- msgid "BackWPup View Log"
1088
  msgstr ""
1089
 
1090
- #: app/options.php:8
1091
- msgid "Add New"
1092
  msgstr ""
1093
 
1094
- #: app/options.php:72
1095
- msgid "Edit:"
1096
  msgstr ""
1097
 
1098
- #: app/options.php:74
1099
- msgid "Edit"
1100
  msgstr ""
1101
 
1102
- #: app/options.php:75
1103
- msgid "Copy"
1104
  msgstr ""
1105
 
1106
- #: app/options.php:77
1107
- msgid "Run Now"
1108
  msgstr ""
1109
 
1110
- #: app/options.php:102
1111
- msgid "Inactive"
1112
  msgstr ""
1113
 
1114
- #: app/options.php:111
1115
- msgid "Runtime:"
1116
  msgstr ""
1117
 
1118
- #: app/options.php:113
1119
- msgid "None"
1120
  msgstr ""
1121
 
1122
- #: app/tools/db_restore.php:29 app/tools/db_restore.php:48
1123
- #: app/tools/db_restore.php:63
1124
- msgid "ERROR:"
1125
  msgstr ""
1126
 
1127
- #: app/tools/db_restore.php:29
1128
- #, php-format
1129
- msgid "Pleace set <i>$table_prefix = '%1$s';</i> in wp-config.php"
 
 
 
 
 
 
1130
  msgstr ""
1131
 
1132
- #: app/tools/db_restore.php:48
1133
- #, php-format
1134
- msgid "Pleace set <i>define('DB_CHARSET', '%1$s');</i> in wp-config.php"
1135
  msgstr ""
1136
 
1137
- #: app/tools/db_restore.php:69
1138
- #, php-format
1139
- msgid "%1$s Database Querys done."
1140
  msgstr ""
1141
 
1142
- #: app/tools/db_restore.php:70
1143
- msgid "Make changes for Blogurl and ABSPATH if needed."
 
1144
  msgstr ""
1145
 
1146
- #: app/tools/db_restore.php:79
1147
- msgid "Restore Done. Please delete the SQL file after Restore."
1148
  msgstr ""
1149
 
1150
- #: backwpup.php:53
1151
- msgid "Sorry, BackWPup works only with WordPress 2.8 and PHP 5 or heigher!!!"
1152
  msgstr ""
1153
 
1154
  #. Plugin URI of the plugin/theme
1
+ # Copyright (C) 2010 BackWPup
 
2
  # This file is distributed under the same license as the BackWPup package.
 
 
 
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: BackWPup 1.5.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/backwpup\n"
7
+ "POT-Creation-Date: 2011-02-26 21:58:32+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
14
 
15
+ #: app/options-runnow-iframe.php:13
16
+ msgid "Do Job"
17
  msgstr ""
18
 
19
+ #: app/options-tools.php:8
20
+ msgid "BackWPup Tools"
21
  msgstr ""
22
 
23
+ #: app/options-tools.php:29
24
+ msgid "Database restore"
25
  msgstr ""
26
 
27
+ #: app/options-tools.php:32 app/options-tools.php:50
28
+ msgid "Restore"
29
  msgstr ""
30
 
31
+ #: app/options-tools.php:47
32
+ msgid "SQL File to restore:"
33
  msgstr ""
34
 
35
+ #: app/options-tools.php:53
36
+ msgid "Copy SQL file to Blog root folder to use restore."
37
  msgstr ""
38
 
39
+ #: app/options-tools.php:61
40
+ msgid "Import Jobs settings"
 
41
  msgstr ""
42
 
43
+ #: app/options-tools.php:63
44
+ msgid "Select File to import:"
45
+ msgstr ""
46
+
47
+ #: app/options-tools.php:64 app/options-tools.php:66
48
+ msgid "Upload"
49
+ msgstr ""
50
+
51
+ #: app/options-tools.php:67
52
+ msgid "Select Jobs to Import:"
53
+ msgstr ""
54
+
55
+ #: app/options-tools.php:71
56
+ msgid "Import Type"
57
+ msgstr ""
58
+
59
+ #: app/options-tools.php:71
60
+ msgid "No Import"
61
  msgstr ""
62
 
63
+ #: app/options-tools.php:73
64
+ msgid "Overwrite"
65
+ msgstr ""
66
+
67
+ #: app/options-tools.php:73
68
+ msgid "Append"
69
+ msgstr ""
70
+
71
+ #: app/options-tools.php:75 app/options-tools.php:79 app/options-tools.php:81
72
+ msgid "Import"
73
+ msgstr ""
74
+
75
+ #: app/options-tools.php:117
76
+ msgid "Jobs imported!"
77
+ msgstr ""
78
+
79
+ #: app/options-settings.php:10
80
+ msgid "BackWPup Settings"
81
+ msgstr ""
82
+
83
+ #: app/options-settings.php:22 app/options-settings.php:84
84
+ #: app/options-edit-job.php:48 app/compatibility/class-wp-list-table.php:960
85
+ msgid "Save Changes"
86
+ msgstr ""
87
+
88
+ #: app/options-settings.php:29
89
+ msgid "Send Mail"
90
+ msgstr ""
91
+
92
+ #: app/options-settings.php:31
93
+ msgid "Sender Email:"
94
+ msgstr ""
95
+
96
+ #: app/options-settings.php:32
97
+ msgid "Sender Name:"
98
+ msgstr ""
99
+
100
+ #: app/options-settings.php:33
101
+ msgid "Send mail method:"
102
+ msgstr ""
103
+
104
+ #: app/options-settings.php:36
105
+ msgid "PHP: mail()"
106
+ msgstr ""
107
+
108
+ #: app/options-settings.php:37
109
+ msgid "Sendmail"
110
+ msgstr ""
111
+
112
+ #: app/options-settings.php:38
113
+ msgid "SMTP"
114
+ msgstr ""
115
+
116
+ #: app/options-settings.php:41
117
+ msgid "Sendmail Path:"
118
+ msgstr ""
119
+
120
+ #: app/options-settings.php:43
121
+ msgid "SMTP Hostname:"
122
+ msgstr ""
123
+
124
+ #: app/options-settings.php:44
125
+ msgid "SMTP Secure Connection:"
126
+ msgstr ""
127
+
128
+ #: app/options-settings.php:46 app/functions.php:405 app/functions.php:422
129
+ msgid "none"
130
+ msgstr ""
131
+
132
+ #: app/options-settings.php:50
133
+ msgid "SMTP Username:"
134
+ msgstr ""
135
+
136
+ #: app/options-settings.php:51
137
+ msgid "SMTP Password:"
138
+ msgstr ""
139
+
140
+ #: app/options-settings.php:57 app/functions.php:192
141
+ msgid "Logs"
142
+ msgstr ""
143
+
144
+ #: app/options-settings.php:59
145
+ msgid "Log file Folder:"
146
+ msgstr ""
147
+
148
+ #: app/options-settings.php:61
149
+ msgid "Max. Log Files in Folder:"
150
+ msgstr ""
151
+
152
+ #: app/options-settings.php:62 app/options-edit-job.php:332
153
+ #: app/options-edit-job.php:349 app/options-edit-job.php:373
154
+ #: app/options-edit-job.php:397
155
+ msgid "(Oldest files will deleted first.)"
156
+ msgstr ""
157
+
158
+ #: app/options-settings.php:63
159
+ msgid "Gzip Log files!"
160
+ msgstr ""
161
+
162
+ #: app/options-settings.php:64
163
+ msgid "Log deteiled File list."
164
+ msgstr ""
165
+
166
+ #: app/options-settings.php:69
167
+ msgid "Disable WP-Cron"
168
+ msgstr ""
169
+
170
+ #: app/options-settings.php:71
171
+ msgid "Use Cron job of Hoster and disable WP_Cron"
172
+ msgstr ""
173
+
174
+ #: app/options-settings.php:72
175
+ msgid "You must set up a cron job that calls:"
176
+ msgstr ""
177
+
178
+ #: app/options-settings.php:74
179
+ msgid "or URL:"
180
+ msgstr ""
181
+
182
+ #: app/options-settings.php:79
183
+ msgid "Temp Folder"
184
+ msgstr ""
185
+
186
+ #: app/options-edit-job.php:12
187
+ msgid "BackWPup Job Settings"
188
+ msgstr ""
189
+
190
+ #: app/options-edit-job.php:33
191
+ msgid "Job Type"
192
+ msgstr ""
193
+
194
+ #: app/options-edit-job.php:45 app/list-tables.php:108
195
  msgid ""
196
+ "You are about to delete this Job. \n"
197
+ " 'Cancel' to stop, 'OK' to delete."
198
  msgstr ""
199
 
200
+ #: app/options-edit-job.php:45 app/list-tables.php:47 app/list-tables.php:108
201
+ #: app/list-tables.php:254 app/list-tables.php:317 app/list-tables.php:417
202
+ #: app/list-tables.php:474
203
+ msgid "Delete"
204
  msgstr ""
205
 
206
+ #: app/options-edit-job.php:55
207
+ msgid "Job Schedule"
 
208
  msgstr ""
209
 
210
+ #: app/options-edit-job.php:57
211
+ msgid "Activate scheduling"
 
212
  msgstr ""
213
 
214
+ #: app/options-edit-job.php:60
215
+ msgid "Minutes: "
 
216
  msgstr ""
217
 
218
+ #: app/options-edit-job.php:68 app/options-edit-job.php:85
219
+ #: app/options-edit-job.php:102 app/options-edit-job.php:120
220
+ #: app/options-edit-job.php:144
221
+ msgid "Any (*)"
222
  msgstr ""
223
 
224
+ #: app/options-edit-job.php:77
225
+ msgid "Hours:"
226
  msgstr ""
227
 
228
+ #: app/options-edit-job.php:94
229
+ msgid "Days:"
230
  msgstr ""
231
 
232
+ #: app/options-edit-job.php:112
233
+ msgid "Months:"
234
  msgstr ""
235
 
236
+ #: app/options-edit-job.php:121
237
+ msgid "January"
 
 
238
  msgstr ""
239
 
240
+ #: app/options-edit-job.php:122
241
+ msgid "February"
 
 
 
 
242
  msgstr ""
243
 
244
+ #: app/options-edit-job.php:123
245
+ msgid "March"
 
 
246
  msgstr ""
247
 
248
+ #: app/options-edit-job.php:124
249
+ msgid "April"
250
  msgstr ""
251
 
252
+ #: app/options-edit-job.php:125
253
+ msgid "May"
254
  msgstr ""
255
 
256
+ #: app/options-edit-job.php:126
257
+ msgid "June"
258
  msgstr ""
259
 
260
+ #: app/options-edit-job.php:127
261
+ msgid "July"
262
  msgstr ""
263
 
264
+ #: app/options-edit-job.php:128
265
+ msgid "Augest"
266
  msgstr ""
267
 
268
+ #: app/options-edit-job.php:129
269
+ msgid "September"
270
  msgstr ""
271
 
272
+ #: app/options-edit-job.php:130
273
+ msgid "October"
274
  msgstr ""
275
 
276
+ #: app/options-edit-job.php:131
277
+ msgid "November"
278
  msgstr ""
279
 
280
+ #: app/options-edit-job.php:132
281
+ msgid "December"
282
  msgstr ""
283
 
284
+ #: app/options-edit-job.php:136
285
+ msgid "Weekday:"
286
  msgstr ""
287
 
288
+ #: app/options-edit-job.php:145
289
+ msgid "Sunday"
290
  msgstr ""
291
 
292
+ #: app/options-edit-job.php:146
293
+ msgid "Monday"
294
  msgstr ""
295
 
296
+ #: app/options-edit-job.php:147
297
+ msgid "Tuesday"
298
  msgstr ""
299
 
300
+ #: app/options-edit-job.php:148
301
+ msgid "Wednesday"
 
 
302
  msgstr ""
303
 
304
+ #: app/options-edit-job.php:149
305
+ msgid "Thursday"
306
  msgstr ""
307
 
308
+ #: app/options-edit-job.php:150
309
+ msgid "Friday"
310
  msgstr ""
311
 
312
+ #: app/options-edit-job.php:151
313
+ msgid "Saturday"
314
  msgstr ""
315
 
316
+ #: app/options-edit-job.php:156
317
+ msgid ""
318
+ "Working as <a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank"
319
+ "\">Cron</a> job schedule:"
320
  msgstr ""
321
 
322
+ #: app/options-edit-job.php:157
323
+ msgid "Next runtime:"
324
  msgstr ""
325
 
326
+ #: app/options-edit-job.php:163
327
+ msgid "Backup File"
328
  msgstr ""
329
 
330
+ #: app/options-edit-job.php:165
331
+ msgid "File Prefix:"
332
  msgstr ""
333
 
334
+ #: app/options-edit-job.php:167
335
+ msgid "File Formart:"
336
  msgstr ""
337
 
338
+ #: app/options-edit-job.php:170 app/options-edit-job.php:172
339
+ msgid "Zip"
340
  msgstr ""
341
 
342
+ #: app/options-edit-job.php:173
343
+ msgid "Tar"
344
  msgstr ""
345
 
346
+ #: app/options-edit-job.php:175 app/options-edit-job.php:177
347
+ msgid "Tar GZip"
348
  msgstr ""
349
 
350
+ #: app/options-edit-job.php:179 app/options-edit-job.php:181
351
+ msgid "Tar BZip2"
352
  msgstr ""
353
 
354
+ #: app/options-edit-job.php:182 app/options-edit-job.php:318
355
+ #: app/options-edit-job.php:322
356
+ msgid "Example:"
357
  msgstr ""
358
 
359
+ #: app/options-edit-job.php:189
360
+ msgid "Send log"
361
  msgstr ""
362
 
363
+ #: app/options-edit-job.php:191 app/options-edit-job.php:420
364
+ msgid "E-Mail-Adress:"
365
  msgstr ""
366
 
367
+ #: app/options-edit-job.php:193
368
+ msgid "Send only E-Mail on errors."
369
  msgstr ""
370
 
371
+ #: app/options-edit-job.php:205
372
+ msgid "Enter Job name here"
373
  msgstr ""
374
 
375
+ #: app/options-edit-job.php:211
376
+ msgid "Database Jobs"
377
  msgstr ""
378
 
379
+ #: app/options-edit-job.php:214
380
+ msgid "Database Tabels to Exclude:"
 
381
  msgstr ""
382
 
383
+ #: app/options-edit-job.php:225
384
+ msgid "Use short INSERTs instat of full (with keys)"
385
  msgstr ""
386
 
387
+ #: app/options-edit-job.php:226
388
+ msgid "Set Blog Maintenance Mode on Database Operations"
389
  msgstr ""
390
 
391
+ #: app/options-edit-job.php:231 app/functions.php:313
392
+ msgid "File Backup"
393
  msgstr ""
394
 
395
+ #: app/options-edit-job.php:233
396
+ msgid "Blog Folders to Backup:"
 
397
  msgstr ""
398
 
399
+ #: app/options-edit-job.php:236
400
+ msgid "root"
401
  msgstr ""
402
 
403
+ #: app/options-edit-job.php:239 app/options-edit-job.php:255
404
+ #: app/options-edit-job.php:271 app/options-edit-job.php:287
405
+ #: app/options-edit-job.php:303
406
+ msgid "Exclude:"
407
  msgstr ""
408
 
409
+ #: app/options-edit-job.php:252
410
+ msgid "Content"
411
  msgstr ""
412
 
413
+ #: app/options-edit-job.php:268
414
+ msgid "Plugins"
415
  msgstr ""
416
 
417
+ #: app/options-edit-job.php:284
418
+ msgid "Themes"
419
  msgstr ""
420
 
421
+ #: app/options-edit-job.php:300
422
+ msgid "Blog Uploads"
423
  msgstr ""
424
 
425
+ #: app/options-edit-job.php:317
426
+ msgid "Include Folders to Backup:"
427
  msgstr ""
428
 
429
+ #: app/options-edit-job.php:321
430
+ msgid "Exclude Files/Folders from Backup:"
431
  msgstr ""
432
 
433
+ #: app/options-edit-job.php:328
434
+ msgid "Backup to Directory"
435
  msgstr ""
436
 
437
+ #: app/options-edit-job.php:330
438
+ msgid "Full Path to Folder for Backup Files:"
439
  msgstr ""
440
 
441
+ #: app/options-edit-job.php:332
442
+ msgid "Max. Backup Files in Folder:"
443
  msgstr ""
444
 
445
+ #: app/options-edit-job.php:338
446
+ msgid "Backup to FTP Server"
447
  msgstr ""
448
 
449
+ #: app/options-edit-job.php:340
450
+ msgid "Hostname:"
451
  msgstr ""
452
 
453
+ #: app/options-edit-job.php:342 app/options-edit-job.php:387
454
+ msgid "Username:"
455
  msgstr ""
456
 
457
+ #: app/options-edit-job.php:344 app/options-edit-job.php:409
458
+ msgid "Password:"
459
  msgstr ""
460
 
461
+ #: app/options-edit-job.php:346
462
+ msgid "Directory on Server:"
463
  msgstr ""
464
 
465
+ #: app/options-edit-job.php:349
466
+ msgid "Max. Backup Files in FTP Folder:"
467
  msgstr ""
468
 
469
+ #: app/options-edit-job.php:350
470
+ msgid "Use SSL-FTP Connection."
471
  msgstr ""
472
 
473
+ #: app/options-edit-job.php:351
474
+ msgid "Use FTP Passiv mode."
475
  msgstr ""
476
 
477
+ #: app/options-edit-job.php:358
478
+ msgid "Backup to Amazon S3"
479
  msgstr ""
480
 
481
+ #: app/options-edit-job.php:361 app/options-edit-job.php:385
482
+ msgid "curl Support required"
483
  msgstr ""
484
 
485
+ #: app/options-edit-job.php:363
486
+ msgid "Access Key ID:"
487
  msgstr ""
488
 
489
+ #: app/options-edit-job.php:365
490
+ msgid "Secret Access Key:"
491
  msgstr ""
492
 
493
+ #: app/options-edit-job.php:367
494
+ msgid "Bucket:"
495
  msgstr ""
496
 
497
+ #: app/options-edit-job.php:370
498
+ msgid "Create Bucket:"
499
  msgstr ""
500
 
501
+ #: app/options-edit-job.php:370
502
+ msgid "Bucket Region"
503
  msgstr ""
504
 
505
+ #: app/options-edit-job.php:370
506
+ msgid "US-East (Northern Virginia)"
507
  msgstr ""
508
 
509
+ #: app/options-edit-job.php:370
510
+ msgid "US-West (Northern California)"
511
  msgstr ""
512
 
513
+ #: app/options-edit-job.php:370
514
+ msgid "EU (Ireland)"
515
  msgstr ""
516
 
517
+ #: app/options-edit-job.php:370
518
+ msgid "Asia Pacific (Singapore)"
519
  msgstr ""
520
 
521
+ #: app/options-edit-job.php:371
522
+ msgid "Directory in Bucket:"
523
  msgstr ""
524
 
525
+ #: app/options-edit-job.php:373
526
+ msgid "Max. Backup Files in Bucket Folder:"
527
  msgstr ""
528
 
529
+ #: app/options-edit-job.php:374
530
+ msgid "Save Backups with reduced redundancy!"
531
+ msgstr ""
532
+
533
+ #: app/options-edit-job.php:382
534
+ msgid "Backup to Rackspace Cloud"
535
+ msgstr ""
536
+
537
+ #: app/options-edit-job.php:389
538
+ msgid "API Key:"
539
+ msgstr ""
540
+
541
+ #: app/options-edit-job.php:391
542
+ msgid "Container:"
543
+ msgstr ""
544
+
545
+ #: app/options-edit-job.php:394
546
+ msgid "Create Container:"
547
+ msgstr ""
548
+
549
+ #: app/options-edit-job.php:395
550
+ msgid "Directory in Container:"
551
+ msgstr ""
552
+
553
+ #: app/options-edit-job.php:397
554
+ msgid "Max. Backup Files in Container Folder:"
555
+ msgstr ""
556
+
557
+ #: app/options-edit-job.php:405
558
+ msgid "Backup to Dropbox"
559
+ msgstr ""
560
+
561
+ #: app/options-edit-job.php:407
562
+ msgid "Email:"
563
+ msgstr ""
564
+
565
+ #: app/options-edit-job.php:411
566
+ msgid "Directory:"
567
+ msgstr ""
568
+
569
+ #: app/options-edit-job.php:418
570
+ msgid "Backup to E-Mail"
571
+ msgstr ""
572
+
573
+ #: app/options-edit-job.php:423
574
+ msgid "Max. File Size for sending Backups with mail:"
575
+ msgstr ""
576
+
577
+ #: app/options-save.php:28
578
+ msgid "Copy of"
579
+ msgstr ""
580
+
581
+ #: app/options-save.php:63 app/backwpup_dojob.php:77
582
+ #: app/backwpup_dojob.php:237
583
+ msgid "[ERROR]"
584
+ msgstr ""
585
+
586
+ #: app/options-save.php:63
587
+ msgid "Backup Cleand by User!!!"
588
+ msgstr ""
589
+
590
+ #: app/options-save.php:133 app/options-save.php:241 app/options-save.php:297
591
+ msgid "File does not exist."
592
  msgstr ""
593
 
594
+ #: app/options-save.php:330
595
+ msgid "Settings saved"
596
+ msgstr ""
597
+
598
+ #: app/options-save.php:468
599
+ msgid "Job '%1' changes saved."
600
+ msgstr ""
601
+
602
+ #: app/options-save.php:468
603
+ msgid "Jobs overview."
604
+ msgstr ""
605
+
606
+ #: app/backwpup_dojob.php:64
607
+ msgid "BackWPup Log for %1$s from %2$s at %3$s"
608
+ msgstr ""
609
+
610
+ #: app/backwpup_dojob.php:74
611
+ msgid "Working Job will closed!!! And a new started!!!"
612
+ msgstr ""
613
+
614
+ #: app/backwpup_dojob.php:77
615
+ msgid "Backup Aborted working to long!!!"
616
+ msgstr ""
617
+
618
+ #: app/backwpup_dojob.php:94
619
+ msgid "Job %1$s already running!!!"
620
+ msgstr ""
621
+
622
+ #: app/backwpup_dojob.php:129
623
+ msgid "PHP Safe Mode is on!!! Max exec time is %1$d sec."
624
+ msgstr ""
625
+
626
+ #: app/backwpup_dojob.php:133
627
+ msgid ""
628
+ "Memory limit set to %1$s ,because can not use PHP: memory_get_usage() "
629
+ "function to dynamically increase the Memory!"
630
+ msgstr ""
631
+
632
+ #: app/backwpup_dojob.php:199
633
  msgid "old Log files deleted!!!"
634
  msgstr ""
635
 
636
+ #: app/backwpup_dojob.php:204
637
+ msgid "Backup Archive File size is %1s"
638
+ msgstr ""
639
+
640
+ #: app/backwpup_dojob.php:206
641
  msgid "Job done in %1s sec."
642
  msgstr ""
643
 
644
+ #: app/backwpup_dojob.php:231
645
+ msgid "[WARNING]"
646
  msgstr ""
647
 
648
+ #: app/backwpup_dojob.php:241
649
+ msgid "[DEPRECATED]"
650
  msgstr ""
651
 
652
+ #: app/backwpup_dojob.php:244
653
+ msgid "[STRICT NOTICE]"
654
  msgstr ""
655
 
656
+ #: app/backwpup_dojob.php:247
657
+ msgid "[RECOVERABLE ERROR]"
658
+ msgstr ""
659
+
660
+ #: app/backwpup_dojob.php:303
661
+ msgid "Can not create Folder: %1$s"
662
+ msgstr ""
663
+
664
+ #: app/backwpup_dojob.php:308
665
+ msgid "Can not write to Folder: %1$s"
666
+ msgstr ""
667
+
668
+ #: app/backwpup_dojob.php:342
669
+ msgid "PHP Safe Mode is on!!! Can not increase Memory Limit is %1$s"
670
+ msgstr ""
671
+
672
+ #: app/backwpup_dojob.php:369
673
+ msgid "Memory increased from %1$s to %2$s"
674
+ msgstr ""
675
+
676
+ #: app/backwpup_dojob.php:371
677
+ msgid "Can not increase Memory Limit is %1$s"
678
+ msgstr ""
679
+
680
+ #: app/backwpup_dojob.php:381
681
+ msgid "Set Blog to Maintenance Mode"
682
+ msgstr ""
683
+
684
+ #: app/backwpup_dojob.php:397
685
+ msgid "Set Blog to normal Mode"
686
+ msgstr ""
687
+
688
+ #: app/backwpup_dojob.php:413
689
+ msgid "Run Database check..."
690
+ msgstr ""
691
+
692
+ #: app/backwpup_dojob.php:428 app/backwpup_dojob.php:430
693
+ #: app/backwpup_dojob.php:432
694
+ msgid "Result of table check for %1$s is: %2$s"
695
+ msgstr ""
696
+
697
+ #: app/backwpup_dojob.php:435 app/backwpup_dojob.php:447
698
+ #: app/backwpup_dojob.php:471 app/backwpup_dojob.php:481
699
+ #: app/backwpup_dojob.php:526 app/backwpup_dojob.php:538
700
+ #: app/backwpup_dojob.php:665 app/tools/db_restore.php:68
701
+ #: app/tools/db_restore.php:79 app/tools/db_restore.php:82
702
+ #: app/tools/db_restore.php:85 app/tools/db_restore.php:90
703
+ msgid "BackWPup database error %1$s for query %2$s"
704
+ msgstr ""
705
+
706
+ #: app/backwpup_dojob.php:440 app/backwpup_dojob.php:442
707
+ #: app/backwpup_dojob.php:444
708
+ msgid "Result of table repair for %1$s is: %2$s"
709
+ msgstr ""
710
+
711
+ #: app/backwpup_dojob.php:452
712
+ msgid "Database check done!"
713
+ msgstr ""
714
+
715
+ #: app/backwpup_dojob.php:454
716
+ msgid "No Tables to check"
717
+ msgstr ""
718
+
719
+ #: app/backwpup_dojob.php:519
720
+ msgid "Run Database Dump to file..."
721
+ msgstr ""
722
+
723
+ #: app/backwpup_dojob.php:571
724
+ msgid "Dump Database table: "
725
+ msgstr ""
726
+
727
+ #: app/backwpup_dojob.php:586
728
+ msgid "Database Dump done!"
729
+ msgstr ""
730
+
731
+ #: app/backwpup_dojob.php:588
732
+ msgid "Can not create Database Dump file"
733
+ msgstr ""
734
+
735
+ #: app/backwpup_dojob.php:591
736
+ msgid "No Tables to Dump"
737
+ msgstr ""
738
+
739
+ #: app/backwpup_dojob.php:597
740
+ msgid "Add Database Dump to Backup:"
741
+ msgstr ""
742
+
743
+ #: app/backwpup_dojob.php:607 app/backwpup_dojob.php:624
744
+ msgid "Run Wordpress Export to XML file..."
745
+ msgstr ""
746
+
747
+ #: app/backwpup_dojob.php:616
748
+ msgid "cURL:"
749
+ msgstr ""
750
+
751
+ #: app/backwpup_dojob.php:626
752
+ msgid "Export to XML done!"
753
+ msgstr ""
754
+
755
+ #: app/backwpup_dojob.php:628
756
+ msgid "Can not Export to XML!"
757
+ msgstr ""
758
+
759
+ #: app/backwpup_dojob.php:631
760
+ msgid "Can not Export to XML! no cURL or allow_url_fopen Support!"
761
+ msgstr ""
762
+
763
+ #: app/backwpup_dojob.php:635
764
+ msgid "Add XML Export to Backup:"
765
+ msgstr ""
766
+
767
+ #: app/backwpup_dojob.php:644
768
+ msgid "Run Database optimize..."
769
+ msgstr ""
770
+
771
+ #: app/backwpup_dojob.php:658 app/backwpup_dojob.php:660
772
+ #: app/backwpup_dojob.php:662
773
+ msgid "Result of table optimize for %1$s is: %2$s"
774
+ msgstr ""
775
+
776
+ #: app/backwpup_dojob.php:668
777
+ msgid "Database optimize done!"
778
+ msgstr ""
779
+
780
+ #: app/backwpup_dojob.php:671
781
+ msgid "No Tables to optimize"
782
+ msgstr ""
783
+
784
+ #: app/backwpup_dojob.php:689
785
+ msgid "File or Folder is not readable:"
786
+ msgstr ""
787
+
788
+ #: app/backwpup_dojob.php:691
789
+ msgid "Link not followed:"
790
  msgstr ""
791
 
792
+ #: app/backwpup_dojob.php:699
793
+ msgid "Is not a file or directory:"
794
  msgstr ""
795
 
796
+ #: app/backwpup_dojob.php:709
797
+ msgid "Make a list of files to Backup ...."
 
 
798
  msgstr ""
799
 
800
+ #: app/backwpup_dojob.php:758
801
+ msgid "No files to Backup"
802
  msgstr ""
803
 
804
+ #: app/backwpup_dojob.php:760
805
+ msgid "Files to Backup:"
806
  msgstr ""
807
 
808
+ #: app/backwpup_dojob.php:761
809
+ msgid "Size of all Files:"
810
  msgstr ""
811
 
812
+ #: app/backwpup_dojob.php:769
813
+ msgid "Create Backup Zip file..."
814
  msgstr ""
815
 
816
+ #: app/backwpup_dojob.php:777 app/backwpup_dojob.php:801
817
+ msgid "Add File to ZIP file:"
818
  msgstr ""
819
 
820
+ #: app/backwpup_dojob.php:781
821
+ msgid "Can not add File to ZIP file:"
822
  msgstr ""
823
 
824
+ #: app/backwpup_dojob.php:785 app/backwpup_dojob.php:808
825
+ msgid "Backup Zip file create done!"
826
  msgstr ""
827
 
828
+ #: app/backwpup_dojob.php:787
829
+ msgid "Can not create Backup ZIP file:"
830
  msgstr ""
831
 
832
+ #: app/backwpup_dojob.php:798
833
+ msgid "Create Backup Zip (PclZip) file..."
834
  msgstr ""
835
 
836
+ #: app/backwpup_dojob.php:806
837
+ msgid "Zip file create:"
838
  msgstr ""
839
 
840
+ #: app/backwpup_dojob.php:825
841
+ msgid "Can not create TAR Backup file"
842
  msgstr ""
843
 
844
+ #: app/backwpup_dojob.php:828
845
+ msgid "Create Backup Archive file..."
846
  msgstr ""
847
 
848
+ #: app/backwpup_dojob.php:835
849
+ msgid "Add File to Backup Archive:"
850
  msgstr ""
851
 
852
+ #: app/backwpup_dojob.php:911
853
+ msgid "Backup Archive file create done!"
854
  msgstr ""
855
 
856
+ #: app/backwpup_dojob.php:929
857
+ msgid "Connected by SSL-FTP to Server:"
858
  msgstr ""
859
 
860
+ #: app/backwpup_dojob.php:931
861
+ msgid "Can not connect by SSL-FTP to Server:"
862
  msgstr ""
863
 
864
+ #: app/backwpup_dojob.php:935
865
+ msgid "PHP Function to connect with SSL-FTP to Server not exists!"
866
  msgstr ""
867
 
868
+ #: app/backwpup_dojob.php:941
869
+ msgid "Connected to FTP Server:"
870
  msgstr ""
871
 
872
+ #: app/backwpup_dojob.php:943
873
+ msgid "Can not connect to FTP Server:"
 
 
874
  msgstr ""
875
 
876
+ #: app/backwpup_dojob.php:950 app/backwpup_dojob.php:957
877
+ #: app/backwpup_dojob.php:969 app/backwpup_dojob.php:982
878
+ msgid "FTP Client command:"
879
  msgstr ""
880
 
881
+ #: app/backwpup_dojob.php:952 app/backwpup_dojob.php:955
882
+ #: app/backwpup_dojob.php:959 app/backwpup_dojob.php:972
883
+ #: app/backwpup_dojob.php:974 app/backwpup_dojob.php:977
884
+ #: app/backwpup_dojob.php:979 app/backwpup_dojob.php:985
885
+ #: app/backwpup_dojob.php:987
886
+ msgid "FTP Server reply:"
887
  msgstr ""
888
 
889
+ #: app/backwpup_dojob.php:972
890
+ msgid "Entering Passive Mode"
891
  msgstr ""
892
 
893
+ #: app/backwpup_dojob.php:974
894
+ msgid "Can not Entering Passive Mode"
895
  msgstr ""
896
 
897
+ #: app/backwpup_dojob.php:977
898
+ msgid "Entering Normal Mode"
899
  msgstr ""
900
 
901
+ #: app/backwpup_dojob.php:979
902
+ msgid "Can not Entering Normal Mode"
903
  msgstr ""
904
 
905
+ #: app/backwpup_dojob.php:987
906
+ msgid "Error getting SYSTYPE"
907
  msgstr ""
908
 
909
+ #: app/backwpup_dojob.php:995
910
+ msgid "FTP Folder on Server not exists!"
911
  msgstr ""
912
 
913
+ #: app/backwpup_dojob.php:997
914
+ msgid "FTP Folder created!"
915
  msgstr ""
916
 
917
+ #: app/backwpup_dojob.php:1000
918
+ msgid "FTP Folder on Server can not created!"
919
  msgstr ""
920
 
921
+ #: app/backwpup_dojob.php:1006
922
+ msgid "Backup File transferred to FTP Server:"
923
  msgstr ""
924
 
925
+ #: app/backwpup_dojob.php:1008
926
+ msgid "Can not transfer backup to FTP server."
927
  msgstr ""
928
 
929
+ #: app/backwpup_dojob.php:1024
930
+ msgid "Can not delete file on FTP Server:"
931
  msgstr ""
932
 
933
+ #: app/backwpup_dojob.php:1027
934
+ msgid "files deleted on FTP Server:"
935
  msgstr ""
936
 
937
+ #: app/backwpup_dojob.php:1039
938
+ msgid "Prepare Sending backup file with mail..."
939
  msgstr ""
940
 
941
+ #: app/backwpup_dojob.php:1059
942
+ msgid "Send mail with SMTP"
 
943
  msgstr ""
944
 
945
+ #: app/backwpup_dojob.php:1063
946
+ msgid "Send mail with Sendmail"
947
  msgstr ""
948
 
949
+ #: app/backwpup_dojob.php:1066
950
+ msgid "Send mail with PHP mail"
951
  msgstr ""
952
 
953
+ #: app/backwpup_dojob.php:1070
954
+ msgid "Creating mail"
 
 
955
  msgstr ""
956
 
957
+ #: app/backwpup_dojob.php:1074
958
+ msgid "BackWPup File from"
 
 
959
  msgstr ""
960
 
961
+ #: app/backwpup_dojob.php:1082
962
+ msgid "Backup Archive too big for sending by mail"
 
963
  msgstr ""
964
 
965
+ #: app/backwpup_dojob.php:1087
966
+ msgid "Adding Attachment to mail"
967
  msgstr ""
968
 
969
+ #: app/backwpup_dojob.php:1091
970
+ msgid "Send mail...."
971
  msgstr ""
972
 
973
+ #: app/backwpup_dojob.php:1093
974
+ msgid "Can not send mail:"
975
  msgstr ""
976
 
977
+ #: app/backwpup_dojob.php:1095
978
+ msgid "Mail send!!!"
979
  msgstr ""
980
 
981
+ #: app/backwpup_dojob.php:1113
982
+ msgid "Connected to S3 Bucket:"
983
  msgstr ""
984
 
985
+ #: app/backwpup_dojob.php:1122
986
+ msgid "Backup File transferred to S3://"
987
  msgstr ""
988
 
989
+ #: app/backwpup_dojob.php:1125
990
+ msgid "Can not transfer backup to S3."
991
  msgstr ""
992
 
993
+ #: app/backwpup_dojob.php:1146
994
+ msgid "Can not delete file on S3://"
995
  msgstr ""
996
 
997
+ #: app/backwpup_dojob.php:1149
998
+ msgid "files deleted on S3 Bucket!"
999
  msgstr ""
1000
 
1001
+ #: app/backwpup_dojob.php:1156
1002
+ msgid "S3 Bucket not exists:"
1003
  msgstr ""
1004
 
1005
+ #: app/backwpup_dojob.php:1159
1006
+ msgid "Amazon S3 API:"
1007
  msgstr ""
1008
 
1009
+ #: app/backwpup_dojob.php:1170
1010
+ msgid "Can not load curl extension is needed for Rackspase Cloud!"
1011
  msgstr ""
1012
 
1013
+ #: app/backwpup_dojob.php:1182
1014
+ msgid "Connected to Rackspase ..."
1015
  msgstr ""
1016
 
1017
+ #: app/backwpup_dojob.php:1198 app/backwpup_dojob.php:1248
1018
+ msgid "Rackspase Cloud API:"
1019
  msgstr ""
1020
 
1021
+ #: app/backwpup_dojob.php:1204
1022
+ msgid "Rackspase Cloud Container not exists:"
1023
  msgstr ""
1024
 
1025
+ #: app/backwpup_dojob.php:1216
1026
+ msgid "Backup File transferred to RSC://"
1027
  msgstr ""
1028
 
1029
+ #: app/backwpup_dojob.php:1219
1030
+ msgid "Can not transfer backup to RSC."
1031
  msgstr ""
1032
 
1033
+ #: app/backwpup_dojob.php:1241
1034
+ msgid "Can not delete file on RSC://"
1035
  msgstr ""
1036
 
1037
+ #: app/backwpup_dojob.php:1244
1038
+ msgid "files deleted on Racspase Cloud Container!"
1039
  msgstr ""
1040
 
1041
+ #: app/backwpup_dojob.php:1275
1042
+ msgid "old backup files deleted!!!"
1043
  msgstr ""
1044
 
1045
+ #: app/backwpup_dojob.php:1285
1046
+ msgid "Can not load curl extension is needed for Dropbox!"
1047
  msgstr ""
1048
 
1049
+ #: app/backwpup_dojob.php:1292
1050
+ msgid "Connect to DropBox ..."
1051
  msgstr ""
1052
 
1053
+ #: app/backwpup_dojob.php:1295
1054
+ msgid "Backup File transferred to DropBox."
1055
  msgstr ""
1056
 
1057
+ #: app/backwpup_dojob.php:1297
1058
+ msgid "DropBox:"
1059
  msgstr ""
1060
 
1061
+ #: app/backwpup_dojob.php:1397
1062
+ msgid "Jobname:"
1063
  msgstr ""
1064
 
1065
+ #: app/backwpup_dojob.php:1398
1066
+ msgid "Jobtype:"
1067
  msgstr ""
1068
 
1069
+ #: app/backwpup_dojob.php:1400
1070
+ msgid "Errors:"
1071
  msgstr ""
1072
 
1073
+ #: app/backwpup_dojob.php:1402
1074
+ msgid "Warnings:"
1075
  msgstr ""
1076
 
1077
+ #: app/backwpup_dojob.php:1407
1078
+ msgid "BackWPup Log from"
1079
  msgstr ""
1080
 
1081
+ #: app/list-tables.php:22 app/list-tables.php:198 app/list-tables.php:375
1082
+ msgid "No rights"
1083
  msgstr ""
1084
 
1085
+ #: app/list-tables.php:41
1086
+ msgid "No Jobs."
1087
  msgstr ""
1088
 
1089
+ #: app/list-tables.php:46 app/list-tables.php:107
1090
+ msgid "Export"
1091
  msgstr ""
1092
 
1093
+ #: app/list-tables.php:55
1094
+ msgid "ID"
1095
  msgstr ""
1096
 
1097
+ #: app/list-tables.php:56
1098
+ msgid "Job Name"
1099
  msgstr ""
1100
 
1101
+ #: app/list-tables.php:57 app/list-tables.php:263
1102
+ msgid "Type"
1103
  msgstr ""
1104
 
1105
+ #: app/list-tables.php:58
1106
+ msgid "Information"
1107
  msgstr ""
1108
 
1109
+ #: app/list-tables.php:59
1110
+ msgid "Next Run"
1111
  msgstr ""
1112
 
1113
+ #: app/list-tables.php:60
1114
+ msgid "Last Run"
1115
  msgstr ""
1116
 
1117
+ #: app/list-tables.php:102
1118
+ msgid "Edit:"
1119
  msgstr ""
1120
 
1121
+ #: app/list-tables.php:105
1122
+ msgid "Edit"
1123
  msgstr ""
1124
 
1125
+ #: app/list-tables.php:106
1126
+ msgid "Copy"
1127
  msgstr ""
1128
 
1129
+ #: app/list-tables.php:109
1130
+ msgid "Run Now"
 
1131
  msgstr ""
1132
 
1133
+ #: app/list-tables.php:111
1134
+ msgid "Clear"
1135
  msgstr ""
1136
 
1137
+ #: app/list-tables.php:133
1138
+ msgid "Files Size:"
1139
  msgstr ""
1140
 
1141
+ #: app/list-tables.php:135
1142
+ msgid "Files count:"
1143
  msgstr ""
1144
 
1145
+ #: app/list-tables.php:142
1146
+ msgid "DB Tables:"
1147
  msgstr ""
1148
 
1149
+ #: app/list-tables.php:143
1150
+ msgid "DB Rows:"
1151
  msgstr ""
1152
 
1153
+ #: app/list-tables.php:152 app/functions.php:414
1154
+ msgid "Running since:"
1155
  msgstr ""
1156
 
1157
+ #: app/list-tables.php:152 app/list-tables.php:168 app/list-tables.php:353
1158
+ #: app/functions.php:414
1159
+ msgid "sec."
1160
  msgstr ""
1161
 
1162
+ #: app/list-tables.php:156
1163
+ msgid "Inactive"
1164
  msgstr ""
1165
 
1166
+ #: app/list-tables.php:159
1167
+ msgid "<a href=\"http://wikipedia.org/wiki/Cron\" target=\"_blank\">Cron</a>:"
1168
  msgstr ""
1169
 
1170
+ #: app/list-tables.php:168
1171
+ msgid "Runtime:"
1172
  msgstr ""
1173
 
1174
+ #: app/list-tables.php:170
1175
+ msgid "None"
1176
  msgstr ""
1177
 
1178
+ #: app/list-tables.php:173
1179
+ msgid "Download last Backup"
1180
  msgstr ""
1181
 
1182
+ #: app/list-tables.php:173 app/list-tables.php:318 app/list-tables.php:475
1183
+ msgid "Download"
1184
  msgstr ""
1185
 
1186
+ #: app/list-tables.php:175
1187
+ msgid "View last Log"
1188
  msgstr ""
1189
 
1190
+ #: app/list-tables.php:175
1191
+ msgid "Log"
1192
  msgstr ""
1193
 
1194
+ #: app/list-tables.php:249
1195
+ msgid "No Logs."
1196
  msgstr ""
1197
 
1198
+ #: app/list-tables.php:262
1199
+ msgid "Job"
 
 
1200
  msgstr ""
1201
 
1202
+ #: app/list-tables.php:264
1203
+ msgid "Backup/Log Date/Time"
 
 
1204
  msgstr ""
1205
 
1206
+ #: app/list-tables.php:265
1207
+ msgid "Status"
 
 
1208
  msgstr ""
1209
 
1210
+ #: app/list-tables.php:266 app/list-tables.php:426
1211
+ msgid "Size"
 
1212
  msgstr ""
1213
 
1214
+ #: app/list-tables.php:267
1215
+ msgid "Runtime"
 
1216
  msgstr ""
1217
 
1218
+ #: app/list-tables.php:314
1219
  msgid "View log"
1220
  msgstr ""
1221
 
1222
+ #: app/list-tables.php:316
1223
  msgid "View"
1224
  msgstr ""
1225
 
1226
+ #: app/list-tables.php:334 app/functions.php:393
1227
+ msgid "ERROR(S)"
1228
  msgstr ""
1229
 
1230
+ #: app/list-tables.php:336 app/functions.php:395
1231
+ msgid "WARNING(S)"
1232
  msgstr ""
1233
 
1234
+ #: app/list-tables.php:338 app/functions.php:397
1235
+ msgid "OK"
1236
  msgstr ""
1237
 
1238
+ #: app/list-tables.php:347
1239
  msgid "only Log"
1240
  msgstr ""
1241
 
1242
+ #: app/list-tables.php:411
1243
+ msgid "No Backups."
1244
  msgstr ""
1245
 
1246
+ #: app/list-tables.php:425
1247
+ msgid "Backupfile"
1248
  msgstr ""
1249
 
1250
+ #: app/list-tables.php:474
1251
+ msgid ""
1252
+ "You are about to delete this Backup Archive. \n"
1253
+ " 'Cancel' to stop, 'OK' to delete."
1254
  msgstr ""
1255
 
1256
+ #: app/list-tables.php:492
1257
+ msgid "?"
1258
  msgstr ""
1259
 
1260
+ #. #-#-#-#-# plugin.pot (BackWPup 1.5.0) #-#-#-#-#
1261
+ #. Plugin Name of the plugin/theme
1262
+ #: app/functions.php:8 app/functions.php:82 app/functions.php:261
1263
+ msgid "BackWPup"
1264
  msgstr ""
1265
 
1266
+ #: app/functions.php:26
1267
+ msgid "BackWPup Logs"
1268
  msgstr ""
1269
 
1270
+ #: app/functions.php:45
1271
+ msgid "BackWPup Manage Backups"
1272
  msgstr ""
1273
 
1274
+ #: app/functions.php:61
1275
+ msgid "BackWPup Job Running"
1276
  msgstr ""
1277
 
1278
+ #: app/functions.php:64
1279
+ msgid "Running Job"
1280
  msgstr ""
1281
 
1282
+ #: app/functions.php:72
1283
+ msgid "BackWPup View Logs"
1284
  msgstr ""
1285
 
1286
+ #: app/functions.php:75 app/functions.php:385
1287
+ msgid "View Log"
1288
  msgstr ""
1289
 
1290
+ #: app/functions.php:82
1291
+ msgid "Add New"
1292
  msgstr ""
1293
 
1294
+ #: app/functions.php:106 app/functions.php:253
1295
+ msgid "Support"
1296
  msgstr ""
1297
 
1298
+ #: app/functions.php:107 app/functions.php:252
1299
+ msgid "FAQ"
1300
  msgstr ""
1301
 
1302
+ #: app/functions.php:108
1303
+ msgid "Plugin Homepage"
1304
  msgstr ""
1305
 
1306
+ #: app/functions.php:109
1307
+ msgid "Plugin Home on WordPress.org"
1308
  msgstr ""
1309
 
1310
+ #: app/functions.php:110 app/functions.php:254
1311
+ msgid "Donate"
1312
  msgstr ""
1313
 
1314
+ #: app/functions.php:117
1315
+ msgid "Version:"
1316
  msgstr ""
1317
 
1318
+ #: app/functions.php:118
1319
+ msgid "Author:"
1320
  msgstr ""
1321
 
1322
+ #: app/functions.php:191
1323
+ msgid "Jobs"
1324
  msgstr ""
1325
 
1326
+ #: app/functions.php:193
1327
+ msgid "Backups"
1328
  msgstr ""
1329
 
1330
+ #: app/functions.php:194
1331
+ msgid "Tools"
1332
  msgstr ""
1333
 
1334
+ #: app/functions.php:195 app/functions.php:244
1335
+ msgid "Settings"
1336
  msgstr ""
1337
 
1338
+ #: app/functions.php:244
1339
+ msgid "Go to Settings Page"
1340
  msgstr ""
1341
 
1342
+ #: app/functions.php:307
1343
+ msgid "WP XML Export"
1344
  msgstr ""
1345
 
1346
+ #: app/functions.php:310
1347
+ msgid "Database Backup"
1348
  msgstr ""
1349
 
1350
+ #: app/functions.php:316
1351
+ msgid "Optimize Database Tables"
1352
  msgstr ""
1353
 
1354
+ #: app/functions.php:319
1355
+ msgid "Check Database Tables"
1356
  msgstr ""
1357
 
1358
+ #: app/functions.php:369
1359
+ msgid "Logs:"
1360
  msgstr ""
1361
 
1362
+ #: app/functions.php:408
1363
+ msgid "Scheduled Jobs:"
1364
  msgstr ""
1365
 
1366
+ #: app/functions.php:411
1367
+ msgid "Edit Job"
1368
  msgstr ""
1369
 
1370
+ #: app/functions.php:701
1371
+ msgid "- WordPress 2.8 or heiger needed!"
1372
  msgstr ""
1373
 
1374
+ #: app/functions.php:705
1375
+ msgid "- PHP 5.2.0 or higher needed!"
1376
  msgstr ""
1377
 
1378
+ #: app/functions.php:709
1379
+ msgid "- Logs Folder not exists (Try too create it on first Job run):"
1380
  msgstr ""
1381
 
1382
+ #: app/functions.php:712
1383
+ msgid "- Logs Folder not writeable:"
1384
  msgstr ""
1385
 
1386
+ #: app/functions.php:715
1387
+ msgid "- Temp Folder not exists (Try too create it on first Job run):"
1388
  msgstr ""
1389
 
1390
+ #: app/functions.php:718
1391
+ msgid "- Temp Folder not writeable:"
1392
  msgstr ""
1393
 
1394
+ #: app/functions.php:723
1395
+ msgid "- Please Check Scheduling time for Job:"
1396
  msgstr ""
1397
 
1398
+ #: app/functions.php:726
1399
+ msgid "- WP-Cron don't working please check it!"
1400
  msgstr ""
1401
 
1402
+ #: app/functions5.php:22
1403
+ msgid "New"
1404
  msgstr ""
1405
 
1406
+ #: app/functions5.php:418
1407
+ msgid "Missing Access Key ID!"
1408
  msgstr ""
1409
 
1410
+ #: app/functions5.php:425
1411
+ msgid "Missing Secret Access Key!"
1412
  msgstr ""
1413
 
1414
+ #: app/functions5.php:435
1415
+ msgid "No Buckets found! Or wrong Keys!"
1416
  msgstr ""
1417
 
1418
+ #: app/functions5.php:467
1419
+ msgid "Missing Username!"
1420
  msgstr ""
1421
 
1422
+ #: app/functions5.php:474
1423
+ msgid "Missing API Key!"
1424
  msgstr ""
1425
 
1426
+ #: app/functions5.php:495
1427
+ msgid "No Containerss found!"
1428
  msgstr ""
1429
 
1430
+ #: app/tools/db_restore.php:34 app/tools/db_restore.php:53
1431
+ #: app/tools/db_restore.php:68 app/tools/db_restore.php:79
1432
+ #: app/tools/db_restore.php:82 app/tools/db_restore.php:85
1433
+ #: app/tools/db_restore.php:90
1434
+ msgid "ERROR:"
1435
  msgstr ""
1436
 
1437
+ #: app/tools/db_restore.php:34
1438
+ msgid "Pleace set <i>$table_prefix = '%1$s';</i> in wp-config.php"
1439
  msgstr ""
1440
 
1441
+ #: app/tools/db_restore.php:53
1442
+ msgid "Pleace set <i>define('DB_CHARSET', '%1$s');</i> in wp-config.php"
1443
  msgstr ""
1444
 
1445
+ #: app/tools/db_restore.php:74
1446
+ msgid "%1$s Database Querys done."
1447
  msgstr ""
1448
 
1449
+ #: app/tools/db_restore.php:75
1450
+ msgid "Make changes for Blogurl and ABSPATH if needed."
1451
  msgstr ""
1452
 
1453
+ #: app/tools/db_restore.php:92
1454
+ msgid "Restore Done. Please delete the SQL file after Restore."
1455
  msgstr ""
1456
 
1457
+ #: app/compatibility/class-wp-list-table.php:181
1458
+ msgid "No items found."
1459
  msgstr ""
1460
 
1461
+ #: app/compatibility/class-wp-list-table.php:284
1462
+ msgid "Bulk Actions"
1463
  msgstr ""
1464
 
1465
+ #: app/compatibility/class-wp-list-table.php:289
1466
+ msgid "Apply"
1467
  msgstr ""
1468
 
1469
+ #: app/compatibility/class-wp-list-table.php:363
1470
+ msgid "Show all dates"
1471
  msgstr ""
1472
 
1473
+ #: app/compatibility/class-wp-list-table.php:391
1474
+ msgid "List View"
1475
  msgstr ""
1476
 
1477
+ #: app/compatibility/class-wp-list-table.php:392
1478
+ msgid "Excerpt View"
1479
  msgstr ""
1480
 
1481
+ #: app/compatibility/class-wp-list-table.php:418
1482
+ msgid "%s pending"
 
1483
  msgstr ""
1484
 
1485
+ #: app/compatibility/class-wp-list-table.php:474
1486
+ #: app/compatibility/class-wp-list-table.php:870
1487
+ msgid "1 item"
1488
+ msgid_plural "%s items"
1489
+ msgstr[0] ""
1490
+ msgstr[1] ""
1491
+
1492
+ #: app/compatibility/class-wp-list-table.php:492
1493
+ msgid "Go to the first page"
1494
  msgstr ""
1495
 
1496
+ #: app/compatibility/class-wp-list-table.php:499
1497
+ msgid "Go to the previous page"
 
1498
  msgstr ""
1499
 
1500
+ #: app/compatibility/class-wp-list-table.php:508
1501
+ msgid "Current page"
 
1502
  msgstr ""
1503
 
1504
+ #: app/compatibility/class-wp-list-table.php:515
1505
+ msgctxt "paging"
1506
+ msgid "%1$s of %2$s"
1507
  msgstr ""
1508
 
1509
+ #: app/compatibility/class-wp-list-table.php:519
1510
+ msgid "Go to the next page"
1511
  msgstr ""
1512
 
1513
+ #: app/compatibility/class-wp-list-table.php:526
1514
+ msgid "Go to the last page"
1515
  msgstr ""
1516
 
1517
  #. Plugin URI of the plugin/theme
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === BackWPup ===
2
  Contributors: danielhuesken, zlli
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=daniel%40huesken-net%2ede&item_name=Daniel%20Huesken%20Plugin%20Donation&item_number=BackWPup&no_shipping=0&no_note=1&tax=0&currency_code=EUR&lc=DE&bn=PP%2dDonationsBF&charset=UTF%2d8
4
- Tags: backup, admin, file, Database, mysql, cron, ftp, S3, export, xml, Rackspase, cloud, webdav
5
  Requires at least: 2.8
6
  Tested up to: 3.1.0
7
- Stable tag: 1.5.0
8
 
9
  Backup and more of your WordPress Blog Database and Files
10
 
@@ -98,6 +98,10 @@ Destinations are:
98
  1. Job Page
99
 
100
  == Changelog ==
 
 
 
 
101
  = 1.5.0 =
102
  * use AWS SDK ver.1.2.4 now for Amazon S3
103
  * Update rackspase cloud files to ver.1.7.6
1
  === BackWPup ===
2
  Contributors: danielhuesken, zlli
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=daniel%40huesken-net%2ede&item_name=Daniel%20Huesken%20Plugin%20Donation&item_number=BackWPup&no_shipping=0&no_note=1&tax=0&currency_code=EUR&lc=DE&bn=PP%2dDonationsBF&charset=UTF%2d8
4
+ Tags: backup, admin, file, Database, mysql, cron, ftp, S3, export, xml, Rackspase, cloud, webdav, dropbox
5
  Requires at least: 2.8
6
  Tested up to: 3.1.0
7
+ Stable tag: 1.5.1
8
 
9
  Backup and more of your WordPress Blog Database and Files
10
 
98
  1. Job Page
99
 
100
  == Changelog ==
101
+ = 1.5.1 =
102
+ * changed user capability from '10' to 'export'
103
+ * Updatet AWS SDK to ver.1.2.5 for Amazon S3
104
+
105
  = 1.5.0 =
106
  * use AWS SDK ver.1.2.4 now for Amazon S3
107
  * Update rackspase cloud files to ver.1.7.6