Version Description
- Improved terms lock option
- Added zip and unzip option with the asset manager
- Extended download history feature
Download this release
Release Info
Developer | codename065 |
Plugin | WordPress Download Manager |
Version | 3.1.12 |
Comparing to | |
See all releases |
Code changes from version 3.1.11 to 3.1.12
- admin/menus/class.Categories.php +2 -1
- admin/tpls/metaboxes/attach-file.php +8 -10
- admin/tpls/metaboxes/lock-options.php +13 -9
- admin/tpls/metaboxes/package-settings.php +17 -7
- admin/tpls/stats/history.php +353 -51
- admin/tpls/templates.php +1 -0
- assets/css/admin-styles.css +3 -0
- assets/css/front.css +4 -0
- assets/images/spinner-bars.svg +36 -0
- assets/js/simple-scrollbar.min.js +1 -0
- download-manager.php +30 -48
- languages/download-manager-es_ES.mo +0 -0
- languages/download-manager-es_ES.po +1319 -636
- languages/download-manager-fr_FR.mo +0 -0
- languages/download-manager-fr_FR.po +1464 -596
- languages/download-manager-it_IT.mo +0 -0
- languages/download-manager-it_IT.po +1273 -580
- languages/download-manager.mo +0 -0
- languages/download-manager.po +1083 -540
- libs/class.AssetManager.php +558 -419
- libs/class.DownloadStats.php +43 -16
- libs/class.FileSystem.php +97 -37
- libs/class.Installer.php +2 -1
- libs/class.Query.php +313 -0
- readme.txt +6 -1
- tpls/asset-manager-ui.php +38 -1
- tpls/page-templates/page-template-default.php +2 -4
- tpls/wpdm-all-downloads.php +13 -0
- tpls/wpdm-login-form.php +29 -12
- wpdm-functions.php +12 -7
- wpdm-start-download.php +10 -21
admin/menus/class.Categories.php
CHANGED
@@ -37,8 +37,9 @@ class Categories
|
|
37 |
function categoryIDColumnData($c, $column_name, $term_id) {
|
38 |
|
39 |
if ($column_name == 'tag_ID') {
|
40 |
-
|
41 |
}
|
|
|
42 |
}
|
43 |
|
44 |
function metaFields() {
|
37 |
function categoryIDColumnData($c, $column_name, $term_id) {
|
38 |
|
39 |
if ($column_name == 'tag_ID') {
|
40 |
+
return $term_id;
|
41 |
}
|
42 |
+
return $c;
|
43 |
}
|
44 |
|
45 |
function metaFields() {
|
admin/tpls/metaboxes/attach-file.php
CHANGED
@@ -8,19 +8,16 @@
|
|
8 |
$afile = is_array($afiles)&&isset($afiles[0])?$afiles[0]:'';
|
9 |
$afile = trim($afile);
|
10 |
$mfz = get_post_meta(get_the_ID(), '__wpdm_package_size', true);
|
|
|
11 |
if($afile !=''){
|
12 |
-
|
13 |
-
if(strpos($afile, "://")){
|
14 |
$fparts = parse_url($afile);
|
15 |
-
$
|
|
|
|
|
16 |
}
|
17 |
else {
|
18 |
-
|
19 |
-
$filesize = number_format(filesize(UPLOAD_DIR . '/' . $afile) / 1025, 2) . " KB";
|
20 |
-
else if (file_exists(ABSPATH.$afile))
|
21 |
-
$filesize = number_format(filesize(ABSPATH.$afile) / 1025, 2) . " KB";
|
22 |
-
else if (file_exists($afile))
|
23 |
-
$filesize = number_format(filesize($afile) / 1025, 2) . " KB";
|
24 |
}
|
25 |
|
26 |
if(strpos($afile, "#")) {
|
@@ -28,12 +25,13 @@
|
|
28 |
$afile = $afile[1];
|
29 |
}
|
30 |
|
|
|
31 |
?>
|
32 |
<div class="media">
|
33 |
<a href="#" id="dcf" title="Delete Current File" class="pull-right" style="font-size:24px">
|
34 |
<i class="fa fa-trash color-red"></i>
|
35 |
</a>
|
36 |
-
<div class="media-body"><strong><?php echo basename($afile); ?></strong><br><span class="text-success"><?php echo $mfz?$mfz
|
37 |
</div>
|
38 |
|
39 |
<?php } else echo "<span style='font-weight:bold;color:#ddd'>". __('No file uploaded yet!', 'download-manager')."</span>"; ?>
|
8 |
$afile = is_array($afiles)&&isset($afiles[0])?$afiles[0]:'';
|
9 |
$afile = trim($afile);
|
10 |
$mfz = get_post_meta(get_the_ID(), '__wpdm_package_size', true);
|
11 |
+
$url = false;
|
12 |
if($afile !=''){
|
13 |
+
if(substr_count($afile, "://") > 0){
|
|
|
14 |
$fparts = parse_url($afile);
|
15 |
+
$url = true;
|
16 |
+
$hurl = strlen($fparts['host']) > 20 ? substr($fparts['host'], 0, 20)."..." : $fparts['host'];
|
17 |
+
$filesize = "<span class='w3eden'><span class='text-primary ellipsis ttip' title='{$afile}'><i class='fa fa-link'></i> {$hurl}</span></span>";
|
18 |
}
|
19 |
else {
|
20 |
+
$filesize = wpdm_file_size($afile);
|
|
|
|
|
|
|
|
|
|
|
21 |
}
|
22 |
|
23 |
if(strpos($afile, "#")) {
|
25 |
$afile = $afile[1];
|
26 |
}
|
27 |
|
28 |
+
|
29 |
?>
|
30 |
<div class="media">
|
31 |
<a href="#" id="dcf" title="Delete Current File" class="pull-right" style="font-size:24px">
|
32 |
<i class="fa fa-trash color-red"></i>
|
33 |
</a>
|
34 |
+
<div class="media-body"><strong><?php echo basename($afile); ?></strong><br><span class="text-success"><?php echo (double)$mfz && !$url ?$mfz:$filesize; ?></span></div>
|
35 |
</div>
|
36 |
|
37 |
<?php } else echo "<span style='font-weight:bold;color:#ddd'>". __('No file uploaded yet!', 'download-manager')."</span>"; ?>
|
admin/tpls/metaboxes/lock-options.php
CHANGED
@@ -5,25 +5,29 @@
|
|
5 |
<div class="wpdm-accordion w3eden">
|
6 |
<!-- Terms Lock -->
|
7 |
<div class="panel panel-default">
|
8 |
-
<h3 class="panel-heading"><label><input type="checkbox" class="wpdmlock" rel='
|
9 |
-
<div id="
|
10 |
-
|
11 |
<div class="form-group">
|
12 |
-
<label
|
13 |
-
|
14 |
</div>
|
15 |
<div class="form-group">
|
16 |
-
<label for="
|
17 |
-
<
|
18 |
</div>
|
19 |
<div class="form-group">
|
20 |
-
<label for="
|
21 |
-
|
|
|
|
|
22 |
</div>
|
|
|
|
|
23 |
|
24 |
|
25 |
</div>
|
26 |
</div>
|
|
|
27 |
<!-- Password Lock -->
|
28 |
<div class="panel panel-default">
|
29 |
<h3 class="panel-heading"><label><input type="checkbox" class="wpdmlock" rel='password' name="file[password_lock]" <?php if(get_post_meta($post->ID,'__wpdm_password_lock', true)=='1') echo "checked=checked"; ?> value="1"><span class="checkx"><i class="fas fa-check-double"></i></span><?php echo __('Enable Password Lock','download-manager'); ?></label></h3>
|
5 |
<div class="wpdm-accordion w3eden">
|
6 |
<!-- Terms Lock -->
|
7 |
<div class="panel panel-default">
|
8 |
+
<h3 class="panel-heading"><label><input type="checkbox" class="wpdmlock" rel='terms' name="file[terms_lock]" <?php if(get_post_meta($post->ID,'__wpdm_terms_lock', true)=='1') echo "checked=checked"; ?> value="1"><span class="checkx"><i class="fas fa-check-double"></i></span><?php echo __( "Must Agree with Terms" , "download-manager" ); ?></label></h3>
|
9 |
+
<div id="terms" class="fwpdmlock panel-body" <?php if(get_post_meta($post->ID,'__wpdm_terms_lock', true)!='1') echo "style='display:none'"; ?> >
|
|
|
10 |
<div class="form-group">
|
11 |
+
<label><?php echo __( "Terms Page:" , "download-manager" ); ?></label><br/>
|
12 |
+
<?php wp_dropdown_pages(['name' => 'file[terms_page]', 'class' => 'form-control d-block', 'id' => 'wpdm_terms_page', 'show_option_none' => __( 'Use custom content below', 'download-manager' ), 'selected' => get_post_meta($post->ID, '__wpdm_terms_page', true)]) ?>
|
13 |
</div>
|
14 |
<div class="form-group">
|
15 |
+
<label for="pps_z"><?php echo __( "Terms Title:" , "download-manager" ); ?></label>
|
16 |
+
<input type="text" class="form-control input-lg" name="file[terms_title]" value="<?php echo esc_html(stripslashes(get_post_meta($post->ID,'__wpdm_terms_title', true))); ?>" />
|
17 |
</div>
|
18 |
<div class="form-group">
|
19 |
+
<label for="pps_z"><?php echo __( "Terms and Conditions:" , "download-manager" ); ?></label>
|
20 |
+
<?php
|
21 |
+
wp_editor(stripslashes(get_post_meta($post->ID,'__wpdm_terms_conditions', true)), "tc_z", ['textarea_name' => 'file[terms_conditions]', 'media_buttons' => false]);
|
22 |
+
?>
|
23 |
</div>
|
24 |
+
<label for="pps_z"><?php echo __( "Terms Checkbox Label:" , "download-manager" ); ?></label>
|
25 |
+
<input type="text" class="form-control input-lg" name="file[terms_check_label]" value="<?php echo esc_html(stripslashes(get_post_meta($post->ID,'__wpdm_terms_check_label', true))); ?>" />
|
26 |
|
27 |
|
28 |
</div>
|
29 |
</div>
|
30 |
+
|
31 |
<!-- Password Lock -->
|
32 |
<div class="panel panel-default">
|
33 |
<h3 class="panel-heading"><label><input type="checkbox" class="wpdmlock" rel='password' name="file[password_lock]" <?php if(get_post_meta($post->ID,'__wpdm_password_lock', true)=='1') echo "checked=checked"; ?> value="1"><span class="checkx"><i class="fas fa-check-double"></i></span><?php echo __('Enable Password Lock','download-manager'); ?></label></h3>
|
admin/tpls/metaboxes/package-settings.php
CHANGED
@@ -20,35 +20,36 @@
|
|
20 |
<table cellpadding="5" id="file_settings_table" cellspacing="0" width="100%" class="table table-bordered table-hover">
|
21 |
<tr id="version_row">
|
22 |
<td width="150px"><?php echo __('Version:','download-manager'); ?></td>
|
23 |
-
<td><input size="10" type="text" class="form-control input-sm"
|
24 |
-
</td
|
|
|
25 |
|
26 |
<tr id="link_label_row">
|
27 |
<td><?php echo __('Link Label:','download-manager'); ?></td>
|
28 |
-
<td><input size="10" type="text" class="form-control input-sm"
|
29 |
</td></tr>
|
30 |
|
31 |
<tr id="package_size_row">
|
32 |
<td><?php echo __('File Size:','download-manager'); ?></td>
|
33 |
-
<td><input
|
34 |
</tr>
|
35 |
|
36 |
|
37 |
<tr id="stock_row">
|
38 |
<td><?php echo __('Stock Limit:','download-manager'); ?></td>
|
39 |
-
<td><input size="10" class="form-control input-sm"
|
40 |
</tr>
|
41 |
|
42 |
|
43 |
|
44 |
<tr id="view_count_row">
|
45 |
<td><?php echo __('View Count:','download-manager'); ?></td>
|
46 |
-
<td><input size="10"
|
47 |
</tr>
|
48 |
|
49 |
<tr id="download_count_row">
|
50 |
<td><?php echo __('Download Count:','download-manager'); ?></td>
|
51 |
-
<td><input size="10"
|
52 |
</tr>
|
53 |
|
54 |
|
@@ -295,6 +296,15 @@
|
|
295 |
</script>
|
296 |
|
297 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
#ftabs{
|
299 |
background: #f5f5f5;
|
300 |
margin-top: -6px;margin-left: -12px;margin-right: -12px;
|
20 |
<table cellpadding="5" id="file_settings_table" cellspacing="0" width="100%" class="table table-bordered table-hover">
|
21 |
<tr id="version_row">
|
22 |
<td width="150px"><?php echo __('Version:','download-manager'); ?></td>
|
23 |
+
<td><input placeholder="1.0.0" size="10" type="text" class="form-control input-sm" value="<?php echo esc_attr(get_post_meta($post->ID,'__wpdm_version',true)); ?>" name="file[version]" />
|
24 |
+
</td>
|
25 |
+
</tr>
|
26 |
|
27 |
<tr id="link_label_row">
|
28 |
<td><?php echo __('Link Label:','download-manager'); ?></td>
|
29 |
+
<td><input placeholder="<?=__( 'Download', 'download-manager' ); ?>" size="10" type="text" class="form-control input-sm" value="<?php echo esc_attr(get_post_meta($post->ID,'__wpdm_link_label',true)); ?>" name="file[link_label]" />
|
30 |
</td></tr>
|
31 |
|
32 |
<tr id="package_size_row">
|
33 |
<td><?php echo __('File Size:','download-manager'); ?></td>
|
34 |
+
<td><input placeholder="0.00 MB" size="10" class="form-control input-sm" type="text" name="file[package_size]" value="<?php echo esc_attr(get_post_meta($post->ID,'__wpdm_package_size',true)); ?>" /></td>
|
35 |
</tr>
|
36 |
|
37 |
|
38 |
<tr id="stock_row">
|
39 |
<td><?php echo __('Stock Limit:','download-manager'); ?></td>
|
40 |
+
<td><input placeholder="<?=__( 'Unlimited', 'download-manager' ); ?>" size="10" class="form-control input-sm" type="number" name="file[quota]" value="<?php echo (int)get_post_meta($post->ID,'__wpdm_quota',true); ?>" /></td>
|
41 |
</tr>
|
42 |
|
43 |
|
44 |
|
45 |
<tr id="view_count_row">
|
46 |
<td><?php echo __('View Count:','download-manager'); ?></td>
|
47 |
+
<td><input size="10" placeholder="0" type="number" class="form-control input-sm" name="file[view_count]" value="<?php echo (int)get_post_meta($post->ID,'__wpdm_view_count',true); ?>" /> <i class="info fa fa-info" title="Set/Reset Download Count for this package"></i></td>
|
48 |
</tr>
|
49 |
|
50 |
<tr id="download_count_row">
|
51 |
<td><?php echo __('Download Count:','download-manager'); ?></td>
|
52 |
+
<td><input size="10" placeholder="0" type="number" class="form-control input-sm" name="file[download_count]" value="<?php echo (int)get_post_meta($post->ID,'__wpdm_download_count',true); ?>" /> <i class="info fa fa-info" title="Set/Reset Download Count for this package"></i></td>
|
53 |
</tr>
|
54 |
|
55 |
|
296 |
</script>
|
297 |
|
298 |
<style>
|
299 |
+
#file_settings_table {
|
300 |
+
margin: 0;
|
301 |
+
}
|
302 |
+
#file_settings_table tr td:first-child{
|
303 |
+
background: #f3f3f3;
|
304 |
+
}
|
305 |
+
#file_settings_table .form-control{
|
306 |
+
width: 300px;
|
307 |
+
}
|
308 |
#ftabs{
|
309 |
background: #f5f5f5;
|
310 |
margin-top: -6px;margin-left: -12px;margin-right: -12px;
|
admin/tpls/stats/history.php
CHANGED
@@ -1,64 +1,366 @@
|
|
|
|
|
|
1 |
|
|
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
<thead>
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
10 |
</thead>
|
11 |
<tbody>
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
22 |
?>
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
<?php
|
29 |
-
|
30 |
-
|
31 |
|
32 |
</tbody>
|
33 |
-
<tfoot>
|
34 |
-
<tr>
|
35 |
-
<th colspan="3">
|
36 |
-
<?php
|
37 |
-
isset($_GET['pgd']) && $_GET['pgd'] > 1 ? $current = (int)$_GET['pgd'] : $current = 1;
|
38 |
-
$pagination = array(
|
39 |
-
'base' => @add_query_arg('pgd','%#%'),
|
40 |
-
'format' => '',
|
41 |
-
'total' => ceil($wpdb->get_var("select count(*) from {$wpdb->prefix}ahm_download_stats")/$items_per_page),
|
42 |
-
'current' => $current,
|
43 |
-
'show_all' => false,
|
44 |
-
'type' => 'list',
|
45 |
-
'prev_next' => True,
|
46 |
-
'prev_text' => '<i class="icon icon-angle-left"></i> Previous',
|
47 |
-
'next_text' => 'Next <i class="icon icon-angle-right"></i>',
|
48 |
-
);
|
49 |
-
|
50 |
-
//if( $wp_rewrite->using_permalinks() && !is_search())
|
51 |
-
// $pagination['base'] = user_trailingslashit( trailingslashit( remove_query_arg('s',get_pagenum_link(1) ) ) . 'paged=%#%', 'paged');
|
52 |
-
|
53 |
-
if( !empty($wp_query->query_vars['s']) )
|
54 |
-
$pagination['add_args'] = array('s'=>get_query_var('s'));
|
55 |
-
|
56 |
-
echo '<div class="text-center">' . str_replace('<ul class=\'page-numbers\'>','<ul class="pagination pagination-centered page-numbers" style="margin: 0">', paginate_links($pagination)) . '</div>';
|
57 |
-
?>
|
58 |
-
</th>
|
59 |
-
</tr>
|
60 |
-
</tfoot>
|
61 |
</table>
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
global $wpdb;
|
3 |
|
4 |
+
$get_params = $_GET;
|
5 |
|
6 |
+
// Tables used
|
7 |
+
$states_table = "{$wpdb->prefix}ahm_download_stats";
|
8 |
+
$posts_table = "{$wpdb->prefix}posts";
|
9 |
+
$users_table = "{$wpdb->prefix}users";
|
10 |
+
|
11 |
+
/**
|
12 |
+
* Query Parameters
|
13 |
+
*/
|
14 |
+
$from_date_string = isset($_GET['from_date']) ? $_GET['from_date'] : null; // format Y-m-d 2020-05-31
|
15 |
+
$to_date_string = isset($_GET['to_date']) ? $_GET['to_date'] : null;
|
16 |
+
$user_ids = wpdm_query_var('user_ids') ?: [];
|
17 |
+
$package_ids = wpdm_query_var('package_ids') ?: [];
|
18 |
+
$page_no = wpdm_query_var('page_no', 'int') ?: 1;
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Sanitize parameters
|
22 |
+
*/
|
23 |
+
$from_date_string = sanitize_text_field($from_date_string);
|
24 |
+
$to_date_string = sanitize_text_field($to_date_string);
|
25 |
+
$user_ids = array_map('sanitize_text_field', $user_ids);
|
26 |
+
$package_ids = array_map('sanitize_text_field', $package_ids);
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Selected/Initial Values for the fields
|
30 |
+
* These are necessary for initialize filter fields
|
31 |
+
*/
|
32 |
+
|
33 |
+
$min_timestamp = $wpdb->get_var("SELECT min(timestamp) from $states_table") ?: time();
|
34 |
+
$selected_from_date = $from_date_string ? new DateTime($from_date_string) : (new DateTime())->setTimestamp($min_timestamp);
|
35 |
+
|
36 |
+
$selected_to_date = $to_date_string ? (new DateTime($to_date_string)) : (new DateTime())->setTimestamp(time());
|
37 |
+
$selected_to_date->modify('tomorrow'); // we need to get the timestamp of the end of selected to_date
|
38 |
+
$end_of_selected_to_date_timestamp = $selected_to_date->getTimestamp() - 1;
|
39 |
+
$selected_to_date->setTimestamp($end_of_selected_to_date_timestamp);
|
40 |
+
|
41 |
+
|
42 |
+
$user_ids_string = implode(',', $user_ids);
|
43 |
+
$selected_users = [];
|
44 |
+
if (!empty($user_ids_string)) {
|
45 |
+
$selected_users = $wpdb->get_results("SELECT ID, user_login, display_name, user_email FROM $users_table WHERE ID IN ({$user_ids_string})");
|
46 |
+
}
|
47 |
+
|
48 |
+
$package_ids_string = implode(',', $package_ids);
|
49 |
+
$selected_packages = [];
|
50 |
+
if (!empty($package_ids_string)) {
|
51 |
+
$selected_packages = $wpdb->get_results("SELECT ID, post_title FROM $posts_table WHERE ID IN ({$package_ids_string})");
|
52 |
+
}
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Filter query parts
|
58 |
+
*/
|
59 |
+
|
60 |
+
$timestamp_filter = " AND s.timestamp >= {$selected_from_date->getTimestamp()} AND s.timestamp <= {$selected_to_date->getTimestamp()}";
|
61 |
+
|
62 |
+
$user_ids_filter = "";
|
63 |
+
if (count($user_ids) > 0) {
|
64 |
+
$user_ids_filter = " AND s.uid IN (" . $user_ids_string . ") ";
|
65 |
+
}
|
66 |
+
|
67 |
+
$package_ids_filter = "";
|
68 |
+
if (count($package_ids) > 0) {
|
69 |
+
$package_ids_filter = " AND s.pid IN (" . $package_ids_string . ") ";
|
70 |
+
}
|
71 |
+
|
72 |
+
$uniqq = "";
|
73 |
+
if(wpdm_query_var('uniq'))
|
74 |
+
$uniqq = " group by pid ";
|
75 |
+
|
76 |
+
|
77 |
+
/**
|
78 |
+
* Statistics query
|
79 |
+
*/
|
80 |
+
|
81 |
+
$items_per_page = 30;
|
82 |
+
$start = $page_no ? ($page_no - 1) * $items_per_page : 0;
|
83 |
+
|
84 |
+
$hash = \WPDM\libs\Crypt::encrypt("SELECT [##fields##] FROM $states_table s WHERE 1 {$package_ids_filter} {$user_ids_filter} {$timestamp_filter} {$uniqq}");
|
85 |
+
//pd($selected_from_date->getTimestamp());
|
86 |
+
$count_downloads_without_paging = $wpdb->get_var("SELECT count(s.id) FROM $states_table s, $posts_table p WHERE s.pid = p.ID
|
87 |
+
{$package_ids_filter} {$user_ids_filter} {$timestamp_filter} {$uniqq}
|
88 |
+
");
|
89 |
+
|
90 |
+
$filtered_result_rows = $wpdb->get_results("SELECT p.post_title, s.* FROM $states_table s, $posts_table p WHERE s.pid = p.ID
|
91 |
+
{$package_ids_filter} {$user_ids_filter} {$timestamp_filter} {$uniqq}
|
92 |
+
order by `timestamp` desc limit $start, $items_per_page
|
93 |
+
");
|
94 |
+
|
95 |
+
$pagination = array(
|
96 |
+
'base' => @add_query_arg('page_no', '%#%'),
|
97 |
+
'format' => '',
|
98 |
+
'total' => ceil($count_downloads_without_paging / $items_per_page),
|
99 |
+
'current' => $page_no,
|
100 |
+
'show_all' => false,
|
101 |
+
'type' => 'list',
|
102 |
+
'prev_next' => True,
|
103 |
+
'prev_text' => '<i class="icon icon-angle-left"></i> Previous',
|
104 |
+
'next_text' => 'Next <i class="icon icon-angle-right"></i>',
|
105 |
+
);
|
106 |
+
|
107 |
+
?>
|
108 |
+
|
109 |
+
<!-- Filters -->
|
110 |
+
<div class="row">
|
111 |
+
<form method="get" action="<?php echo admin_url('edit.php'); ?>">
|
112 |
+
<!-- hidden fields. Necessary for navigating this page -->
|
113 |
+
<input type="hidden" name="post_type" value="wpdmpro" />
|
114 |
+
<input type="hidden" name="page" value="wpdm-stats" />
|
115 |
+
<input type="hidden" name="type" value="history" />
|
116 |
+
<input type="hidden" name="filter" value="1" />
|
117 |
+
|
118 |
+
<section class="col-md-12">
|
119 |
+
<!-- From date filter -->
|
120 |
+
<div class="col-md-3">
|
121 |
+
<div class="input-group input-group-lg">
|
122 |
+
<div class="input-group-addon">
|
123 |
+
<span class="input-group-text"><?php _e("From Date", "download-manager"); ?>:</span>
|
124 |
+
</div>
|
125 |
+
<input type="text" name="from_date" value="<?= $selected_from_date->format('Y-m-d') ?>" class="datepicker form-control bg-white text-right" readonly="readonly" />
|
126 |
+
</div>
|
127 |
+
</div>
|
128 |
+
|
129 |
+
<!-- To date filter -->
|
130 |
+
<div class="col-md-3">
|
131 |
+
<div class="input-group input-group-lg">
|
132 |
+
<div class="input-group-addon">
|
133 |
+
<span class="input-group-text"><?php _e("To Date", "download-manager"); ?>:</span>
|
134 |
+
</div>
|
135 |
+
<input type="text" name="to_date" value="<?= $selected_to_date->format('Y-m-d') ?>" class="datepicker form-control bg-white text-right" readonly="readonly" />
|
136 |
+
</div>
|
137 |
+
</div>
|
138 |
+
|
139 |
+
<!-- User names filter -->
|
140 |
+
<div class="col-md-6">
|
141 |
+
<div class="input-group input-group-lg">
|
142 |
+
<div class="input-group-addon">
|
143 |
+
<span class="input-group-text"><?php _e("Users", "download-manager"); ?></span>
|
144 |
+
</div>
|
145 |
+
|
146 |
+
<select id="user_ids" name="user_ids[]" multiple="multiple" style="width: 100%; height: 100%">
|
147 |
+
<?php foreach ($selected_users as $u) : ?>
|
148 |
+
<option selected value="<?= $u->ID ?>"> <?= $u->display_name . "($u->user_login)" ?> </option>
|
149 |
+
<?php endforeach ?>
|
150 |
+
</select>
|
151 |
+
|
152 |
+
<!-- remove user filter -->
|
153 |
+
<?php if (count($user_ids)) {
|
154 |
+
$get_params_xu = $get_params;
|
155 |
+
unset($get_params_xu['user_ids']);
|
156 |
+
|
157 |
+
$reset_url = add_query_arg($get_params_xu, 'edit.php');
|
158 |
+
?>
|
159 |
+
<div class="input-group-btn">
|
160 |
+
<a href="<?php echo $reset_url; ?>" class="btn btn-secondary"><i class="fa fa-times-circle"></i></a>
|
161 |
+
</div>
|
162 |
+
<?php } ?>
|
163 |
+
</div>
|
164 |
+
</div>
|
165 |
+
</section>
|
166 |
+
|
167 |
+
<section class="col-md-12" style="margin-top: 20px">
|
168 |
+
<!-- Package title filter -->
|
169 |
+
<div class="col-md-9">
|
170 |
+
<div class="input-group input-group-lg">
|
171 |
+
<div class="input-group-addon">
|
172 |
+
<span class="input-group-text"><?php _e("Packages", "download-manager"); ?></span>
|
173 |
+
</div>
|
174 |
+
<select id="package_ids" name="package_ids[]" multiple="multiple" style="width: 100%; height: 100%">
|
175 |
+
<?php foreach ($selected_packages as $p) : ?>
|
176 |
+
<option selected value="<?= $p->ID ?>"> <?= $p->post_title ?> </option>
|
177 |
+
<?php endforeach ?>
|
178 |
+
</select>
|
179 |
+
<!-- remove package filter -->
|
180 |
+
<?php if (count($package_ids)) {
|
181 |
+
$get_params_xp = $get_params;
|
182 |
+
unset($get_params_xp['package_ids']);
|
183 |
+
|
184 |
+
$reset_url = add_query_arg($get_params_xp, 'edit.php');
|
185 |
+
?>
|
186 |
+
<div class="input-group-btn">
|
187 |
+
<a href="<?php echo $reset_url; ?>" class="btn btn-secondary"><i class="fa fa-times-circle"></i></a>
|
188 |
+
</div>
|
189 |
+
<?php } ?>
|
190 |
+
</div>
|
191 |
+
</div>
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
<!-- Filter submit button -->
|
196 |
+
<div class="col-md-3">
|
197 |
+
<div style="float:right">
|
198 |
+
<button type="submit" class="btn btn-primary btn-lg"><?php echo __("Filter", "download-manager") ?></button>
|
199 |
+
<a href="edit.php?post_type=wpdmpro&page=wpdm-stats&type=history" class="btn btn-danger btn-lg"><?php echo __("Reset", "download-manager") ?></a>
|
200 |
+
</div>
|
201 |
+
</div>
|
202 |
+
</section>
|
203 |
+
|
204 |
+
|
205 |
+
|
206 |
+
</form>
|
207 |
+
</div>
|
208 |
+
|
209 |
+
|
210 |
+
<br />
|
211 |
+
|
212 |
+
|
213 |
+
<?php if ($count_downloads_without_paging) : ?>
|
214 |
+
<p> <strong>Showing downloads <?= $start + 1 ?> - <?= $start + count($filtered_result_rows) ?> of total <?= $count_downloads_without_paging ?> </strong></p>
|
215 |
+
|
216 |
+
<!-- Result table -->
|
217 |
+
<div class="panel panel-default dashboard-panel">
|
218 |
+
<table class="table table-striped">
|
219 |
<thead>
|
220 |
+
<tr>
|
221 |
+
<th class="bg-white"><?php _e("Package Name", "download-manager"); ?></th>
|
222 |
+
<th class="bg-white"><?php _e("Version", "download-manager"); ?></th>
|
223 |
+
<th class="bg-white"><?php _e("Download Time", "download-manager"); ?></th>
|
224 |
+
<th class="bg-white"><?php _e("User", "download-manager"); ?></th>
|
225 |
+
<th class="bg-white"><?php _e("IP", "download-manager"); ?></th>
|
226 |
+
<th class="bg-white"><?php _e("Browser", "download-manager"); ?></th>
|
227 |
+
<th class="bg-white"><?php _e("OS", "download-manager"); ?></th>
|
228 |
+
</tr>
|
229 |
</thead>
|
230 |
<tbody>
|
231 |
+
<?php
|
232 |
+
foreach ($filtered_result_rows as $stat) {
|
233 |
+
$agent = WPDM()->userAgent->set($stat->agent)->parse();
|
234 |
+
$display_name = 'Guest';
|
235 |
+
if ($stat->uid > 0) {
|
236 |
+
$user = get_user_by('id', $stat->uid);
|
237 |
+
if (is_object($user))
|
238 |
+
$display_name = $user->display_name;
|
239 |
+
else
|
240 |
+
$display_name = '[ Deleted User ]';
|
241 |
+
}
|
242 |
?>
|
243 |
+
<tr>
|
244 |
+
<!-- Package -->
|
245 |
+
<td>
|
246 |
+
<a title='Filter By This Package' class='ttip' href="edit.php?post_type=wpdmpro&page=wpdm-stats&type=history&pid=<?php echo $stat->pid ?>">
|
247 |
+
<?php echo $stat->post_title; ?>
|
248 |
+
</a>
|
249 |
+
<div class="show-on-hover pull-right">
|
250 |
+
<a target='_blank' href="post.php?action=edit&post=<?php echo $stat->pid; ?>" title='Edit Package' class='ttip'>
|
251 |
+
<i class="fas fa-pen-square"></i>
|
252 |
+
</a>
|
253 |
+
—
|
254 |
+
<a target='_blank' href="<?php echo get_permalink($stat->pid); ?>" title='View Package' class='ttip'>
|
255 |
+
<i class="fas fa-eye"></i>
|
256 |
+
</a>
|
257 |
+
</div>
|
258 |
+
</td>
|
259 |
+
<!-- version -->
|
260 |
+
<td><?php echo $stat->version; ?></td>
|
261 |
+
<!-- time -->
|
262 |
+
<td><?php echo wp_date(get_option('date_format') . " " . get_option('time_format'), $stat->timestamp); ?></td>
|
263 |
+
<!-- user -->
|
264 |
+
<td><?php echo $stat->uid > 0 ? "<a title='Filter By This User' class='ttip' href='edit.php?post_type=wpdmpro&page=wpdm-stats&type=history&filter=1&user_ids[0]={$stat->uid}'>{$display_name}</a><div class='show-on-hover pull-right'><a target='_blank' title='Edit User' class='ttip' href='user-edit.php?user_id={$stat->uid}'><i class='fas fa-pen'></i></a></div>" : "Guest"; ?></td>
|
265 |
+
<!-- IP -->
|
266 |
+
<td><?php echo ((get_option('__wpdm_noip') == 0) ? "<a target='_blank' href='https://ip-api.com/#{$stat->ip}'>{$stat->ip}</a>" : "Unknown"); ?></td>
|
267 |
+
<!-- Browser -->
|
268 |
+
<td><?php echo $agent->browserName; ?></td>
|
269 |
+
<!-- OS -->
|
270 |
+
<td><?php echo $agent->OS; ?></td>
|
271 |
+
</tr>
|
272 |
<?php
|
273 |
+
}
|
274 |
+
?>
|
275 |
|
276 |
</tbody>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
</table>
|
278 |
|
279 |
+
<div class="panel-footer">
|
280 |
+
<?php
|
281 |
+
|
282 |
+
|
283 |
+
//if( $wp_rewrite->using_permalinks() && !is_search())
|
284 |
+
// $pagination['base'] = user_trailingslashit( trailingslashit( remove_query_arg('s',get_pagenum_link(1) ) ) . 'paged=%#%', 'paged');
|
285 |
+
|
286 |
+
if (!empty($wp_query->query_vars['s']))
|
287 |
+
$pagination['add_args'] = array('s' => get_query_var('s'));
|
288 |
+
|
289 |
+
echo '<div class="text-center">' . str_replace('<ul class=\'page-numbers\'>', '<ul class="pagination pagination-centered page-numbers" style="margin: 0">', paginate_links($pagination)) . '</div>';
|
290 |
+
?>
|
291 |
+
</div>
|
292 |
+
</div>
|
293 |
+
|
294 |
+
<?php else : ?>
|
295 |
+
<div class="col-md-12">
|
296 |
+
<div class="alert alert-info">
|
297 |
+
<p>No downloads found</p>
|
298 |
+
</div>
|
299 |
+
</div>
|
300 |
+
<?php endif; ?>
|
301 |
+
|
302 |
+
<!-- SCRIPTS -->
|
303 |
+
|
304 |
+
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" />
|
305 |
+
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/select2.min.js"></script>
|
306 |
+
<script>
|
307 |
+
jQuery(function($) {
|
308 |
+
|
309 |
+
$(".datepicker").datepicker({
|
310 |
+
dateFormat: 'yy-mm-dd',
|
311 |
+
minDate: new Date(<?= intval($min_timestamp) * 1000 ?>),
|
312 |
+
maxDate: new Date()
|
313 |
+
});
|
314 |
+
|
315 |
+
|
316 |
+
$('#package_ids').select2({
|
317 |
+
theme: "classic",
|
318 |
+
placeholder: "Filter by package titles",
|
319 |
+
ajax: {
|
320 |
+
url: ajaxurl,
|
321 |
+
dataType: 'json',
|
322 |
+
delay: 250,
|
323 |
+
data: function(params) {
|
324 |
+
return {
|
325 |
+
action: 'wpdm_stats_get_packages',
|
326 |
+
term: params.term, // search term
|
327 |
+
};
|
328 |
+
},
|
329 |
+
cache: true
|
330 |
+
},
|
331 |
+
minimumInputLength: 2
|
332 |
+
});
|
333 |
+
|
334 |
+
|
335 |
+
$('#user_ids').select2({
|
336 |
+
theme: "classic",
|
337 |
+
placeholder: "Filter by user name, email",
|
338 |
+
ajax: {
|
339 |
+
url: ajaxurl,
|
340 |
+
dataType: 'json',
|
341 |
+
delay: 250,
|
342 |
+
data: function(params) {
|
343 |
+
return {
|
344 |
+
action: 'wpdm_stats_get_users',
|
345 |
+
term: params.term, // search term
|
346 |
+
};
|
347 |
+
},
|
348 |
+
cache: true
|
349 |
+
},
|
350 |
+
minimumInputLength: 2
|
351 |
+
});
|
352 |
|
353 |
+
})
|
354 |
+
</script>
|
355 |
+
<style>
|
356 |
+
.w3eden .input-group *{
|
357 |
+
border-radius: 0 !important;
|
358 |
+
}
|
359 |
+
.w3eden .panel th.bg-white {
|
360 |
+
background: #ffffff !important;
|
361 |
+
}
|
362 |
|
363 |
+
.select2-container--classic .select2-selection--multiple {
|
364 |
+
padding-bottom: 10px;
|
365 |
+
}
|
366 |
+
</style>
|
admin/tpls/templates.php
CHANGED
@@ -17,6 +17,7 @@
|
|
17 |
<?php if(!isset($_GET['_type']) || $_GET['_type']!='email'){ ?>
|
18 |
<blockquote class="alert alert-info" style="margin-bottom: 10px">
|
19 |
<?php echo sprintf(__( "Custom Template editor is available with <a target='_blank' href='%s'>WordPress Download Manager Pro</a>" , "download-manager" ), 'https://www.wpdownloadmanager.com/pricing/'); ?>
|
|
|
20 |
</blockquote>
|
21 |
<?php } ?>
|
22 |
|
17 |
<?php if(!isset($_GET['_type']) || $_GET['_type']!='email'){ ?>
|
18 |
<blockquote class="alert alert-info" style="margin-bottom: 10px">
|
19 |
<?php echo sprintf(__( "Custom Template editor is available with <a target='_blank' href='%s'>WordPress Download Manager Pro</a>" , "download-manager" ), 'https://www.wpdownloadmanager.com/pricing/'); ?>
|
20 |
+
| <?php echo sprintf(__( "Please follow the <a target='_blank' href='%s'>documentation</a> to edit exiting template files" , "download-manager" ), 'https://www.wpdownloadmanager.com/doc/template-files/'); ?>
|
21 |
</blockquote>
|
22 |
<?php } ?>
|
23 |
|
assets/css/admin-styles.css
CHANGED
@@ -2134,3 +2134,6 @@ body.wpdm-iframe-modal-open {
|
|
2134 |
opacity: 1;
|
2135 |
transition: all ease-in-out 400ms;
|
2136 |
}
|
|
|
|
|
|
2134 |
opacity: 1;
|
2135 |
transition: all ease-in-out 400ms;
|
2136 |
}
|
2137 |
+
#wpdm_terms_page_chosen {
|
2138 |
+
width: 400px !important;
|
2139 |
+
}
|
assets/css/front.css
CHANGED
@@ -2694,3 +2694,7 @@ i.udbsap{
|
|
2694 |
margin: 0;
|
2695 |
}
|
2696 |
/* Audio Player Ends */
|
|
|
|
|
|
|
|
2694 |
margin: 0;
|
2695 |
}
|
2696 |
/* Audio Player Ends */
|
2697 |
+
|
2698 |
+
.hide_empty:empty{
|
2699 |
+
display: none;
|
2700 |
+
}
|
assets/images/spinner-bars.svg
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="330px" height="330px" viewBox="0 0 327.3 327.3">
|
3 |
+
<defs>
|
4 |
+
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
|
5 |
+
<stop offset="20%" style="stop-color:#3971ff;stop-opacity:1" />
|
6 |
+
<stop offset="100%" style="stop-color:#763af9;stop-opacity:1" />
|
7 |
+
</linearGradient>
|
8 |
+
</defs>
|
9 |
+
<style type="text/css">
|
10 |
+
.st0{fill:#3C80E4;}
|
11 |
+
.st1{fill:#094168;}
|
12 |
+
.st2{fill:none;stroke:url(#grad1);stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:30.8144,30.8144;}
|
13 |
+
</style>
|
14 |
+
<circle class="st2" cx="163.9" cy="164.1" r="156.9">
|
15 |
+
<animateTransform attributeName="transform"
|
16 |
+
attributeType = "XML"
|
17 |
+
type = "rotate"
|
18 |
+
from = "0 165 165"
|
19 |
+
to = "360 165 165"
|
20 |
+
dur = "6s"
|
21 |
+
repeatCount = "indefinite"/>
|
22 |
+
</circle>
|
23 |
+
<path id="arrow" class="st0" d="M154.1,191.1l-63-62.7c-5.4-5.4-5.4-14.1-0.1-19.5c0,0,0,0,0,0L95,105c5.4-5.4,14.1-5.4,19.5-0.1
|
24 |
+
c0,0,0,0,0,0l49.3,49.1l48.9-49.4c5.4-5.4,14.1-5.5,19.5-0.1c0,0,0,0,0,0l3.9,3.9c5.4,5.4,5.5,14.1,0.1,19.5c0,0,0,0,0,0l-62.5,63.2
|
25 |
+
C168.3,196.5,159.6,196.5,154.1,191.1C154.2,191.1,154.2,191.1,154.1,191.1z">
|
26 |
+
<animateTransform id="a"
|
27 |
+
attributeName="transform"
|
28 |
+
attributeType = "XML"
|
29 |
+
type = "translate"
|
30 |
+
dur = "1.2s"
|
31 |
+
values="0,6;0,-12;0,6"
|
32 |
+
repeatCount = "indefinite"/>
|
33 |
+
</path>
|
34 |
+
<path id="circle" class="st1" d="M179.5,206.7c-8.6,8.6-22.5,8.7-31.2,0.1c0,0,0,0,0,0l-30.2-30c-15.6,25.3-7.8,58.4,17.5,74
|
35 |
+
s58.4,7.8,74-17.5c10.7-17.4,10.7-39.4-0.2-56.8L179.5,206.7z"/>
|
36 |
+
</svg>
|
assets/js/simple-scrollbar.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
(function(n,t){function u(n){n.hasOwnProperty("data-simple-scrollbar")||Object.defineProperty(n,"data-simple-scrollbar",new SimpleScrollbar(n))}function e(n,i){function f(n){var t=n.pageY-u;u=n.pageY;r(function(){i.el.scrollTop+=t/i.scrollRatio})}function e(){n.classList.remove("ss-grabbed");t.body.classList.remove("ss-grabbed");t.removeEventListener("mousemove",f);t.removeEventListener("mouseup",e)}var u;n.addEventListener("mousedown",function(i){return u=i.pageY,n.classList.add("ss-grabbed"),t.body.classList.add("ss-grabbed"),t.addEventListener("mousemove",f),t.addEventListener("mouseup",e),!1})}function i(n){for(this.target=n,this.bar='<div class="ss-scroll">',this.wrapper=t.createElement("div"),this.wrapper.setAttribute("class","ss-wrapper"),this.el=t.createElement("div"),this.el.setAttribute("class","ss-content"),this.wrapper.appendChild(this.el);this.target.firstChild;)this.el.appendChild(this.target.firstChild);this.target.appendChild(this.wrapper);this.target.insertAdjacentHTML("beforeend",this.bar);this.bar=this.target.lastChild;e(this.bar,this);this.moveBar();this.el.addEventListener("scroll",this.moveBar.bind(this));this.el.addEventListener("mouseenter",this.moveBar.bind(this));this.target.classList.add("ss-container")}function f(){for(var i=t.querySelectorAll("*[ss-container]"),n=0;n<i.length;n++)u(i[n])}var r=n.requestAnimationFrame||n.setImmediate||function(n){return setTimeout(n,0)};i.prototype={moveBar:function(){var t=this.el.scrollHeight,i=this.el.clientHeight,n=this;this.scrollRatio=i/t;r(function(){n.bar.style.cssText="height:"+i/t*100+"%; top:"+n.el.scrollTop/t*100+"%;right:-"+(n.target.clientWidth-n.bar.clientWidth)+"px;"})}};t.addEventListener("DOMContentLoaded",f);i.initEl=u;i.initAll=f;n.SimpleScrollbar=i})(window,document)
|
download-manager.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Download Manager
|
|
4 |
Plugin URI: https://www.wpdownloadmanager.com/pricing/
|
5 |
Description: Manage, Protect and Track file downloads, and sell digital products from your WordPress site. A complete digital asset management solution.
|
6 |
Author: W3 Eden
|
7 |
-
Version: 3.1.
|
8 |
Author URI: https://www.wpdownloadmanager.com/
|
9 |
Text Domain: download-manager
|
10 |
Domain Path: /languages
|
@@ -22,11 +22,13 @@ global $WPDM, $wpdm_asset;
|
|
22 |
use WPDM\admin\WordPressDownloadManagerAdmin;
|
23 |
use WPDM\libs\Apply;
|
24 |
use WPDM\libs\CategoryHandler;
|
|
|
25 |
use WPDM\libs\FileSystem;
|
26 |
use WPDM\libs\MediaHandler;
|
27 |
use WPDM\libs\PackageTemplate;
|
28 |
use WPDM\libs\ShortCodes;
|
29 |
use WPDM\libs\User;
|
|
|
30 |
|
31 |
$content_dir = str_replace('\\','/',WP_CONTENT_DIR);
|
32 |
|
@@ -106,7 +108,7 @@ class WordPressDownloadManager{
|
|
106 |
|
107 |
function __construct(){
|
108 |
|
109 |
-
define('WPDM_Version','3.1.
|
110 |
|
111 |
register_activation_hook(__FILE__, array($this, 'Install'));
|
112 |
|
@@ -142,6 +144,8 @@ class WordPressDownloadManager{
|
|
142 |
$this->template = new Template();
|
143 |
$this->ui = new UI();
|
144 |
$this->packageTemplate = new PackageTemplate();
|
|
|
|
|
145 |
$this->message = new \WPDM_Messages();
|
146 |
|
147 |
//do_action("wpdm_addon_init", WPDM_Version);
|
@@ -151,59 +155,37 @@ class WordPressDownloadManager{
|
|
151 |
/**
|
152 |
* @usage Install Plugin
|
153 |
*/
|
154 |
-
function
|
155 |
-
|
156 |
-
|
157 |
-
delete_option('wpdm_latest');
|
158 |
-
|
159 |
-
$sqls[] = "CREATE TABLE IF NOT EXISTS `{$wpdb->prefix}ahm_download_stats` (
|
160 |
-
`id` int(11) NOT NULL AUTO_INCREMENT,
|
161 |
-
`pid` int(11) NOT NULL,
|
162 |
-
`uid` int(11) NOT NULL,
|
163 |
-
`oid` varchar(100) NOT NULL,
|
164 |
-
`year` int(4) NOT NULL,
|
165 |
-
`month` int(2) NOT NULL,
|
166 |
-
`day` int(2) NOT NULL,
|
167 |
-
`timestamp` int(11) NOT NULL,
|
168 |
-
`ip` varchar(20) NOT NULL,
|
169 |
-
PRIMARY KEY (`id`)
|
170 |
-
)";
|
171 |
-
|
172 |
-
$sqls[] = "CREATE TABLE IF NOT EXISTS `{$wpdb->prefix}ahm_emails` (
|
173 |
-
`id` int(11) NOT NULL AUTO_INCREMENT,
|
174 |
-
`email` varchar(255) NOT NULL,
|
175 |
-
`pid` int(11) NOT NULL,
|
176 |
-
`date` int(11) NOT NULL,
|
177 |
-
`custom_data` text NOT NULL,
|
178 |
-
`request_status` INT( 1 ) NOT NULL,
|
179 |
-
PRIMARY KEY (`id`)
|
180 |
-
)";
|
181 |
-
|
182 |
-
$sqls[] = "CREATE TABLE IF NOT EXISTS `{$wpdb->prefix}ahm_assets` (
|
183 |
-
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
|
184 |
-
`path` text NOT NULL,
|
185 |
-
`owner` int(11) NOT NULL,
|
186 |
-
`activities` text NOT NULL,
|
187 |
-
`comments` text NOT NULL,
|
188 |
-
`access` text NOT NULL,
|
189 |
-
`metadata` text NOT NULL,
|
190 |
-
PRIMARY KEY (`ID`)
|
191 |
-
)";
|
192 |
-
|
193 |
-
|
194 |
-
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
195 |
-
foreach($sqls as $sql){
|
196 |
-
$wpdb->query($sql);
|
197 |
-
///dbDelta($sql);
|
198 |
-
}
|
199 |
|
|
|
200 |
|
201 |
-
$this->RegisterPostTypeTaxonomy();
|
202 |
flush_rewrite_rules();
|
203 |
self::createDir();
|
204 |
|
205 |
}
|
206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
/**
|
208 |
* @usage Load Plugin Text Domain
|
209 |
*/
|
4 |
Plugin URI: https://www.wpdownloadmanager.com/pricing/
|
5 |
Description: Manage, Protect and Track file downloads, and sell digital products from your WordPress site. A complete digital asset management solution.
|
6 |
Author: W3 Eden
|
7 |
+
Version: 3.1.12
|
8 |
Author URI: https://www.wpdownloadmanager.com/
|
9 |
Text Domain: download-manager
|
10 |
Domain Path: /languages
|
22 |
use WPDM\admin\WordPressDownloadManagerAdmin;
|
23 |
use WPDM\libs\Apply;
|
24 |
use WPDM\libs\CategoryHandler;
|
25 |
+
use WPDM\libs\DownloadStats;
|
26 |
use WPDM\libs\FileSystem;
|
27 |
use WPDM\libs\MediaHandler;
|
28 |
use WPDM\libs\PackageTemplate;
|
29 |
use WPDM\libs\ShortCodes;
|
30 |
use WPDM\libs\User;
|
31 |
+
use WPDM\libs\UserAgent;
|
32 |
|
33 |
$content_dir = str_replace('\\','/',WP_CONTENT_DIR);
|
34 |
|
108 |
|
109 |
function __construct(){
|
110 |
|
111 |
+
define('WPDM_Version','3.1.12');
|
112 |
|
113 |
register_activation_hook(__FILE__, array($this, 'Install'));
|
114 |
|
144 |
$this->template = new Template();
|
145 |
$this->ui = new UI();
|
146 |
$this->packageTemplate = new PackageTemplate();
|
147 |
+
$this->downloadHistory = new DownloadStats();
|
148 |
+
$this->userAgent = new UserAgent();
|
149 |
$this->message = new \WPDM_Messages();
|
150 |
|
151 |
//do_action("wpdm_addon_init", WPDM_Version);
|
155 |
/**
|
156 |
* @usage Install Plugin
|
157 |
*/
|
158 |
+
function install(){
|
159 |
+
|
160 |
+
Installer::init();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
|
162 |
+
$this->registerPostTypeTaxonomy();
|
163 |
|
|
|
164 |
flush_rewrite_rules();
|
165 |
self::createDir();
|
166 |
|
167 |
}
|
168 |
|
169 |
+
/**
|
170 |
+
* Update plugin
|
171 |
+
* @param $upgrader_object
|
172 |
+
* @param $options
|
173 |
+
*/
|
174 |
+
function update( $upgrader_object, $options ) {
|
175 |
+
$current_plugin_path_name = plugin_basename( __FILE__ );
|
176 |
+
|
177 |
+
if ($options['action'] == 'update' && $options['type'] == 'plugin' ){
|
178 |
+
foreach($options['plugins'] as $each_plugin){
|
179 |
+
if ($each_plugin==$current_plugin_path_name){
|
180 |
+
if(Installer::dbUpdateRequired()){
|
181 |
+
Installer::updateDB();
|
182 |
+
return;
|
183 |
+
}
|
184 |
+
}
|
185 |
+
}
|
186 |
+
}
|
187 |
+
}
|
188 |
+
|
189 |
/**
|
190 |
* @usage Load Plugin Text Domain
|
191 |
*/
|
languages/download-manager-es_ES.mo
CHANGED
Binary file
|
languages/download-manager-es_ES.po
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Download Manager\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
@@ -9,17 +9,17 @@ msgstr ""
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
-
#: admin/class.WordPressDownloadManagerAdmin.php:
|
18 |
#: admin/tpls/metaboxes/package-settings.php:6
|
19 |
msgid "Package Settings"
|
20 |
msgstr "Ajustes del paquete"
|
21 |
|
22 |
-
#: admin/class.WordPressDownloadManagerAdmin.php:
|
23 |
msgid "Attach File"
|
24 |
msgstr "Adjuntar archivo"
|
25 |
|
@@ -31,43 +31,99 @@ msgstr "Complementos ‹ Gestor de descargas"
|
|
31 |
msgid "Add-Ons"
|
32 |
msgstr "Complementos"
|
33 |
|
34 |
-
#: admin/menus/class.Categories.php:
|
35 |
#, fuzzy
|
36 |
#| msgid "Category"
|
37 |
msgid "Category Image:"
|
38 |
msgstr "Categoría"
|
39 |
|
40 |
-
#: admin/menus/class.Categories.php:
|
41 |
msgid "Image URL"
|
42 |
msgstr "URL de la imagen"
|
43 |
|
44 |
-
#: admin/menus/class.Categories.php:
|
45 |
#, fuzzy
|
46 |
#| msgid "Select Category:"
|
47 |
msgid "Select Category Image"
|
48 |
msgstr "Selecciona una categoría:"
|
49 |
|
50 |
-
#: admin/menus/class.Categories.php:
|
51 |
-
|
52 |
-
|
|
|
53 |
|
54 |
-
#: admin/menus/class.Categories.php:
|
55 |
msgid "Access:"
|
56 |
msgstr "Acceso:"
|
57 |
|
58 |
-
#: admin/menus/class.Categories.php:
|
59 |
msgid ""
|
60 |
"Select the roles who should have access to the packages under this category"
|
61 |
msgstr ""
|
62 |
"Seleccione los roles que deberían tener acceso a los paquetes en esta "
|
63 |
"categoría"
|
64 |
|
65 |
-
#: admin/menus/class.Categories.php:
|
66 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
67 |
msgid "All Visitors"
|
68 |
msgstr "Todos los visitantes"
|
69 |
|
70 |
-
#: admin/menus/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid "Direct Download"
|
72 |
msgstr "Descarga directa"
|
73 |
|
@@ -79,15 +135,15 @@ msgstr "Configuraciones ‹ Gestor de descargas"
|
|
79 |
msgid "Settings"
|
80 |
msgstr "Ajustes"
|
81 |
|
82 |
-
#: admin/menus/class.Settings.php:
|
83 |
-
#: admin/menus/class.Settings.php:
|
84 |
-
#: admin/menus/class.Settings.php:
|
85 |
msgid "Security token is expired! Refresh the page and try again."
|
86 |
msgstr ""
|
87 |
"¡ El token de seguridad ha caducado! Actualice la página e inténtelo de "
|
88 |
"nuevo."
|
89 |
|
90 |
-
#: admin/menus/class.Settings.php:
|
91 |
msgid "Privacy Settings Saved Successfully"
|
92 |
msgstr "Configuración de privacidad guardada correctamente"
|
93 |
|
@@ -125,6 +181,33 @@ msgstr "Complementos WPDM"
|
|
125 |
msgid "Failed to connect with server!"
|
126 |
msgstr "Error al conectar con el servidor!"
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
#: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
|
129 |
#, fuzzy
|
130 |
#| msgid "Link Template:"
|
@@ -192,14 +275,6 @@ msgstr "nombre del producto"
|
|
192 |
msgid "From Email"
|
193 |
msgstr "Email"
|
194 |
|
195 |
-
#: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:185
|
196 |
-
#: admin/tpls/templates.php:343 tpls/asset-manager-ui.php:550
|
197 |
-
#: tpls/user-dashboard/edit-profile.php:51 tpls/wpdm-edit-user-profile.php:51
|
198 |
-
#, fuzzy
|
199 |
-
#| msgid "Save Settings"
|
200 |
-
msgid "Save Changes"
|
201 |
-
msgstr "Guardar ajustes"
|
202 |
-
|
203 |
#: admin/tpls/email-template-editor.php:119
|
204 |
#, fuzzy
|
205 |
#| msgid ": Update Available"
|
@@ -230,60 +305,49 @@ msgstr ""
|
|
230 |
msgid "Emails"
|
231 |
msgstr "Email"
|
232 |
|
233 |
-
#: admin/tpls/emails-template.php:23 admin/tpls/templates.php:
|
234 |
#, fuzzy
|
235 |
#| msgid "General Email Template"
|
236 |
msgid "Email Template"
|
237 |
msgstr "Plantilla general de correo electrónico"
|
238 |
|
239 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
240 |
msgid "attached file is missing/deleted"
|
241 |
msgstr "el archivo adjunto falta o se ha borrado"
|
242 |
|
243 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
244 |
msgid "No file uploaded yet!"
|
245 |
msgstr "Aún no se ha subido ningún archivo!"
|
246 |
|
247 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
248 |
-
msgid "Upload"
|
249 |
-
msgstr "Subir"
|
250 |
-
|
251 |
-
#: admin/tpls/metaboxes/attach-file.php:43 libs/class.FileList.php:305
|
252 |
-
msgid "Browse"
|
253 |
-
msgstr "Buscar"
|
254 |
-
|
255 |
-
#: admin/tpls/metaboxes/attach-file.php:45
|
256 |
-
msgid "URL"
|
257 |
-
msgstr "URL"
|
258 |
-
|
259 |
-
#: admin/tpls/metaboxes/attach-file.php:52
|
260 |
#, fuzzy
|
261 |
#| msgid "Drop files here"
|
262 |
msgid "Drop file here"
|
263 |
msgstr "Soltar archivos aquí"
|
264 |
|
265 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
266 |
-
#: wpdm-functions.php:
|
267 |
msgid "Allowed Files"
|
268 |
msgstr "Archivos permitidos"
|
269 |
|
270 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
271 |
msgid "Invalid File Type!"
|
272 |
msgstr "¡Tipo de archivo invalido!"
|
273 |
|
274 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
275 |
msgid "Unauthorized Access!"
|
276 |
msgstr "¡Acceso no autorizado!"
|
277 |
|
278 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
|
|
279 |
msgid "Delete Current File"
|
280 |
msgstr "Eliminar archivo actual"
|
281 |
|
282 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
283 |
msgid "Are you sure?"
|
284 |
msgstr "¿Estás seguro?"
|
285 |
|
286 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
287 |
msgid ""
|
288 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
289 |
"circle\"></i> Removed!</div></div>"
|
@@ -291,7 +355,19 @@ msgstr ""
|
|
291 |
"<div class = \"w3eden\"> <div class = \"text-danger\"> <i class = \"fa fa-"
|
292 |
"check-circle\"> </i> Eliminado! </div> </div>"
|
293 |
|
294 |
-
#: admin/tpls/metaboxes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
msgid "Icon URL"
|
296 |
msgstr "URL del icono"
|
297 |
|
@@ -307,26 +383,36 @@ msgid "Must Agree with Terms"
|
|
307 |
msgstr "Debe estar de acuerdo con los términos"
|
308 |
|
309 |
#: admin/tpls/metaboxes/lock-options.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
msgid "Terms Title:"
|
311 |
msgstr "Título de los términos:"
|
312 |
|
313 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
314 |
msgid "Terms and Conditions:"
|
315 |
msgstr "Términos y Condiciones:"
|
316 |
|
317 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
318 |
msgid "Terms Checkbox Label:"
|
319 |
msgstr "Términos Etiqueta de casilla de verificación:"
|
320 |
|
321 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
322 |
msgid "Enable Password Lock"
|
323 |
msgstr "Habilitar bloqueo de contraseña"
|
324 |
|
325 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
326 |
msgid "Password:"
|
327 |
msgstr "Contraseña:"
|
328 |
|
329 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
330 |
msgid ""
|
331 |
"If you want to use multiple passwords, keep each one inside [], like [123]"
|
332 |
"[456][789]"
|
@@ -334,15 +420,15 @@ msgstr ""
|
|
334 |
"Si desea utilizar varias contraseñas, mantenga cada una dentro de [], como "
|
335 |
"[123] [456] [789]"
|
336 |
|
337 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
338 |
msgid "Enable Captcha Lock"
|
339 |
msgstr "Habilitar Bloqueo Captcha"
|
340 |
|
341 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
342 |
msgid "Please configure reCAPTCHA"
|
343 |
msgstr "Por favor, configure reCAPTCHA"
|
344 |
|
345 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
346 |
msgid "Users will be asked for reCAPTCHA verification before download."
|
347 |
msgstr ""
|
348 |
"Se solicitará a los usuarios que verifiquen reCAPTCHA antes de descargar."
|
@@ -359,47 +445,74 @@ msgstr "Iconos"
|
|
359 |
msgid "Version:"
|
360 |
msgstr "Versión:"
|
361 |
|
362 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
363 |
msgid "Link Label:"
|
364 |
msgstr "Etiqueta de enlace:"
|
365 |
|
366 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
msgid "File Size:"
|
368 |
msgstr "Tamaño Archivo:"
|
369 |
|
370 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
371 |
msgid "Stock Limit:"
|
372 |
msgstr "Limite Stock:"
|
373 |
|
374 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
|
|
|
|
|
|
375 |
msgid "View Count:"
|
376 |
msgstr "Contador Visualizaciones:"
|
377 |
|
378 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
379 |
msgid "Download Count:"
|
380 |
msgstr "Contador Descargas:"
|
381 |
|
382 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
383 |
msgid "Allow Access:"
|
384 |
msgstr "Permitir el acceso:"
|
385 |
|
386 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
387 |
msgid "Who should be able to download?"
|
388 |
msgstr "¿Quién debería poder descargar?"
|
389 |
|
390 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
391 |
msgid "Page Template:"
|
392 |
msgstr "Plantilla de página:"
|
393 |
|
394 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
395 |
msgid "Master Key"
|
396 |
msgstr "Llave maestra"
|
397 |
|
398 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
399 |
msgid "Regenerate Master Key for Download"
|
400 |
msgstr "Regenerar clave maestra para descargar"
|
401 |
|
402 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
403 |
msgid "This key can be used for direct download"
|
404 |
msgstr "Esta clave puede ser utilizada para descarga directa."
|
405 |
|
@@ -415,8 +528,9 @@ msgstr "Descargar la configuración del administrador"
|
|
415 |
msgid "Check For Updates"
|
416 |
msgstr "Buscar actualizaciones"
|
417 |
|
418 |
-
#: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:
|
419 |
-
#: tpls/wpdm-dashboard.php:
|
|
|
420 |
msgid "Logout"
|
421 |
msgstr "Cerrar sesión"
|
422 |
|
@@ -442,63 +556,47 @@ msgid "Free Add-ons"
|
|
442 |
msgstr "Complementos gratuitos"
|
443 |
|
444 |
#: admin/tpls/settings/addon-update.php:58
|
445 |
-
#: admin/tpls/settings/addon-update.php:
|
446 |
msgid "Product Name"
|
447 |
msgstr "nombre del producto"
|
448 |
|
449 |
#: admin/tpls/settings/addon-update.php:59
|
450 |
-
#: admin/tpls/settings/addon-update.php:
|
451 |
msgid "Active(v)"
|
452 |
msgstr "Activo (v)"
|
453 |
|
454 |
#: admin/tpls/settings/addon-update.php:60
|
455 |
-
#: admin/tpls/settings/addon-update.php:
|
456 |
msgid "Latest(v)"
|
457 |
msgstr "Último (v)"
|
458 |
|
459 |
-
#: admin/tpls/settings/addon-update.php:
|
460 |
-
#: admin/tpls/settings/addon-update.php:
|
461 |
-
#: admin/tpls/settings/user-interface.php:109
|
462 |
-
#: admin/tpls/settings/user-interface.php:139 libs/class.FileList.php:96
|
463 |
-
#: libs/class.FileList.php:98 libs/class.FileList.php:134
|
464 |
-
#: libs/class.FileList.php:136 libs/class.FileList.php:201
|
465 |
-
#: libs/class.FileList.php:248 libs/class.FileList.php:303
|
466 |
-
#: libs/class.Package.php:74 libs/class.Package.php:152
|
467 |
-
#: libs/class.Package.php:646 libs/class.Package.php:671
|
468 |
-
#: libs/class.Package.php:738 libs/class.Package.php:821
|
469 |
-
#: libs/class.Package.php:847 libs/class.Package.php:874
|
470 |
-
#: libs/class.Package.php:1246 libs/class.PackageLocks.php:59
|
471 |
-
#: libs/class.PackageLocks.php:96 tpls/lock-options-iframe.php:243
|
472 |
-
#: tpls/wpdm-all-downloads.php:160 tpls/wpdm-asset.php:21
|
473 |
-
#: wpdm-functions.php:103 wpdm-functions.php:128 wpdm-functions.php:194
|
474 |
-
msgid "Download"
|
475 |
-
msgstr "Descargar"
|
476 |
-
|
477 |
-
#: admin/tpls/settings/addon-update.php:85
|
478 |
-
#: admin/tpls/settings/addon-update.php:126
|
479 |
msgid "Install"
|
480 |
msgstr "Instalar"
|
481 |
|
482 |
-
#: admin/tpls/settings/addon-update.php:
|
483 |
-
#: admin/tpls/settings/addon-update.php:
|
484 |
msgid "Update"
|
485 |
msgstr "Actualizar"
|
486 |
|
487 |
-
#: admin/tpls/settings/addon-update.php:
|
488 |
-
#: admin/tpls/settings/addon-update.php:
|
489 |
msgid "Updated"
|
490 |
msgstr "Actualizado"
|
491 |
|
492 |
-
#: admin/tpls/settings/addon-update.php:
|
493 |
msgid "Expired"
|
494 |
msgstr "Muerto"
|
495 |
|
496 |
-
#: admin/tpls/settings/addon-update.php:
|
497 |
-
#: tpls/
|
|
|
|
|
498 |
msgid "Please Wait..."
|
499 |
msgstr "Por favor espera..."
|
500 |
|
501 |
-
#: admin/tpls/settings/addon-update.php:
|
502 |
msgid "Success!"
|
503 |
msgstr "¡Éxito!"
|
504 |
|
@@ -530,19 +628,19 @@ msgstr "Restablecer Base Dir"
|
|
530 |
msgid "File Browser Access:"
|
531 |
msgstr "Acceso al navegador de archivos:"
|
532 |
|
533 |
-
#: admin/tpls/settings/basic.php:
|
534 |
msgid "Who will have access to server file browser"
|
535 |
msgstr "¿Quién tendrá acceso al navegador de archivos del servidor?"
|
536 |
|
537 |
-
#: admin/tpls/settings/basic.php:
|
538 |
msgid "Upload Settings"
|
539 |
msgstr "Cargar Configuraciones"
|
540 |
|
541 |
-
#: admin/tpls/settings/basic.php:
|
542 |
msgid "Sanitize Filename"
|
543 |
msgstr "Desinfectar nombre de archivo"
|
544 |
|
545 |
-
#: admin/tpls/settings/basic.php:
|
546 |
msgid ""
|
547 |
"Check the option if you want to sanitize uploaded file names to remove "
|
548 |
"illegal chars"
|
@@ -550,11 +648,11 @@ msgstr ""
|
|
550 |
"Marque la opción si desea limpiar los nombres de los archivos cargados para "
|
551 |
"eliminar caracteres ilegales"
|
552 |
|
553 |
-
#: admin/tpls/settings/basic.php:
|
554 |
msgid "Chunk Upload"
|
555 |
msgstr "Subida de Chunk"
|
556 |
|
557 |
-
#: admin/tpls/settings/basic.php:
|
558 |
msgid ""
|
559 |
"Check the option if you want to enable chunk upload to override http upload "
|
560 |
"limits"
|
@@ -562,27 +660,27 @@ msgstr ""
|
|
562 |
"Marque la opción si desea habilitar la carga de trozos para anular los "
|
563 |
"límites de carga de http"
|
564 |
|
565 |
-
#: admin/tpls/settings/basic.php:
|
566 |
msgid "Chunk Size"
|
567 |
msgstr "Tamaño de porción"
|
568 |
|
569 |
-
#: admin/tpls/settings/basic.php:
|
570 |
msgid "File Download"
|
571 |
msgstr "Descarga de archivos"
|
572 |
|
573 |
-
#: admin/tpls/settings/basic.php:
|
574 |
msgid "Download Speed:"
|
575 |
msgstr "Velocidad de Descarga:"
|
576 |
|
577 |
-
#: admin/tpls/settings/basic.php:
|
578 |
msgid "Blocked IPs"
|
579 |
msgstr "IPs bloqueadas"
|
580 |
|
581 |
-
#: admin/tpls/settings/basic.php:
|
582 |
msgid "One IP per line"
|
583 |
msgstr "Una IP por línea"
|
584 |
|
585 |
-
#: admin/tpls/settings/basic.php:
|
586 |
msgid ""
|
587 |
"List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 "
|
588 |
"or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
|
@@ -592,15 +690,15 @@ msgstr ""
|
|
592 |
"192.168.23.12 o 192.168.23.1/24 o 192.168.23. *, IPv6 - 2a01: 8760: 2: "
|
593 |
"3001 :: 1 o 2620: 112: 3000 :: / 44)"
|
594 |
|
595 |
-
#: admin/tpls/settings/basic.php:
|
596 |
msgid "Write a Message for Blocked IPs"
|
597 |
msgstr "Escribe un mensaje para IPs bloqueadas"
|
598 |
|
599 |
-
#: admin/tpls/settings/basic.php:
|
600 |
msgid "Message for Blocked IPs"
|
601 |
msgstr "Mensaje para IPs bloqueadas"
|
602 |
|
603 |
-
#: admin/tpls/settings/basic.php:
|
604 |
msgid ""
|
605 |
"If you get broken download, then try enabling/disabling following options, "
|
606 |
"as sometimes server may not support output buffering or partial downloads"
|
@@ -609,27 +707,27 @@ msgstr ""
|
|
609 |
"siguientes opciones, ya que a veces el servidor no admite el búfer de salida "
|
610 |
"o descargas parciales"
|
611 |
|
612 |
-
#: admin/tpls/settings/basic.php:
|
613 |
msgid "Resumable Downloads"
|
614 |
msgstr "Descargas reanudables"
|
615 |
|
616 |
-
#: admin/tpls/settings/basic.php:
|
617 |
msgid "Enabled"
|
618 |
msgstr "Habilitado"
|
619 |
|
620 |
-
#: admin/tpls/settings/basic.php:
|
621 |
msgid "Disabled"
|
622 |
msgstr "Deshabilitado"
|
623 |
|
624 |
-
#: admin/tpls/settings/basic.php:
|
625 |
msgid "Output Buffering"
|
626 |
msgstr "Buffer de salida"
|
627 |
|
628 |
-
#: admin/tpls/settings/basic.php:
|
629 |
msgid "Open in Browser"
|
630 |
msgstr "Abrir en el navegador"
|
631 |
|
632 |
-
#: admin/tpls/settings/basic.php:
|
633 |
msgid ""
|
634 |
"Try to Open in Browser instead of download when someone clicks on download "
|
635 |
"link"
|
@@ -638,14 +736,33 @@ msgstr ""
|
|
638 |
"clic en el enlace de descarga"
|
639 |
|
640 |
#: admin/tpls/settings/basic.php:178
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
641 |
msgid "reCAPTCHA Lock Settings"
|
642 |
msgstr "ReCAPTCHA Lock Settings"
|
643 |
|
644 |
-
#: admin/tpls/settings/basic.php:
|
645 |
msgid "reCAPTCHA Site Key"
|
646 |
msgstr "ReCAPTCHA Site Key"
|
647 |
|
648 |
-
#: admin/tpls/settings/basic.php:
|
649 |
msgid ""
|
650 |
"Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
|
651 |
"www.google.com/recaptcha/admin#list\">here</a>"
|
@@ -653,42 +770,69 @@ msgstr ""
|
|
653 |
"Registre un nuevo sitio para reCAPTCHA desde <a target=\"_blank\" href="
|
654 |
"\"https://www.google.com/recaptcha/admin#list\"> aquí </a>"
|
655 |
|
656 |
-
#: admin/tpls/settings/basic.php:
|
657 |
msgid "reCAPTCHA Secret Key"
|
658 |
msgstr "clave secreta reCAPTCHA"
|
659 |
|
660 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
661 |
msgid "Misc Settings"
|
662 |
msgstr "Configuraciones Misc"
|
663 |
|
664 |
-
#: admin/tpls/settings/basic.php:
|
665 |
msgid "Login Page"
|
666 |
msgstr "Página de inicio de sesión"
|
667 |
|
668 |
-
#: admin/tpls/settings/basic.php:
|
669 |
-
#: admin/tpls/settings/basic.php:
|
670 |
msgid "None Selected"
|
671 |
msgstr "Ninguna seleccionada"
|
672 |
|
673 |
-
#: admin/tpls/settings/basic.php:
|
674 |
-
#: admin/tpls/settings/basic.php:
|
675 |
#, php-format
|
676 |
msgid "The page where you used short-code %s"
|
677 |
msgstr "La página donde usaste el código corto% s"
|
678 |
|
679 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
680 |
msgid "Register Page"
|
681 |
msgstr "Página de registro"
|
682 |
|
683 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
684 |
msgid "Dashboard Page"
|
685 |
msgstr "Página del tablero"
|
686 |
|
687 |
-
#: admin/tpls/settings/basic.php:
|
688 |
msgid "Include Packages in Main RSS Feed"
|
689 |
msgstr "Incluir paquetes en RSS principal"
|
690 |
|
691 |
-
#: admin/tpls/settings/basic.php:
|
692 |
#, php-format
|
693 |
msgid ""
|
694 |
"Check this option if you want to show wpdm packages in your main <a target="
|
@@ -740,84 +884,100 @@ msgid "Delete All Stats Data"
|
|
740 |
msgstr ""
|
741 |
|
742 |
#: admin/tpls/settings/user-interface.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
msgid "Disable Style & Script"
|
744 |
msgstr "Deshabilitar Estilo y Script"
|
745 |
|
746 |
-
#: admin/tpls/settings/user-interface.php:
|
747 |
msgid "Bootstrap JS"
|
748 |
msgstr "Bootstrap JS"
|
749 |
|
750 |
-
#: admin/tpls/settings/user-interface.php:
|
751 |
msgid "Bootstrap CSS"
|
752 |
msgstr "CSS Bootstrap"
|
753 |
|
754 |
-
#: admin/tpls/settings/user-interface.php:
|
755 |
msgid "Font Awesome"
|
756 |
msgstr "Fuente impresionante"
|
757 |
|
758 |
-
#: admin/tpls/settings/user-interface.php:
|
759 |
msgid "Front CSS"
|
760 |
msgstr "CSS frontal"
|
761 |
|
762 |
-
#: admin/tpls/settings/user-interface.php:
|
763 |
msgid "Google Font"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: admin/tpls/settings/user-interface.php:
|
767 |
msgid ""
|
768 |
"Because, sometimes your theme may have those scripts/styles enqueued already"
|
769 |
msgstr "Porque, a veces, su tema puede tener esos scripts / estilos en cola ya"
|
770 |
|
771 |
-
#: admin/tpls/settings/user-interface.php:
|
772 |
msgid "Colors"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: admin/tpls/settings/user-interface.php:
|
776 |
msgid "Primary:"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: admin/tpls/settings/user-interface.php:
|
780 |
msgid "Secondary:"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: admin/tpls/settings/user-interface.php:
|
784 |
msgid "Info:"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: admin/tpls/settings/user-interface.php:
|
788 |
#, fuzzy
|
789 |
#| msgid "Success!"
|
790 |
msgid "Success:"
|
791 |
msgstr "¡Éxito!"
|
792 |
|
793 |
-
#: admin/tpls/settings/user-interface.php:
|
794 |
#, fuzzy
|
795 |
#| msgid "Warning!"
|
796 |
msgid "Warning:"
|
797 |
msgstr "¡Advertencia!"
|
798 |
|
799 |
-
#: admin/tpls/settings/user-interface.php:
|
800 |
msgid "Danger:"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: admin/tpls/settings/user-interface.php:
|
804 |
#, fuzzy
|
805 |
#| msgid "Download Count"
|
806 |
msgid "Download Button"
|
807 |
msgstr "Descargar Conde"
|
808 |
|
809 |
-
#: admin/tpls/settings/user-interface.php:
|
810 |
#, fuzzy
|
811 |
#| msgid "Register Page"
|
812 |
msgid "Details Page"
|
813 |
msgstr "Página de registro"
|
814 |
|
815 |
-
#: admin/tpls/settings/user-interface.php:
|
816 |
-
#: admin/tpls/settings/user-interface.php:
|
817 |
msgid "Border Radius"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: admin/tpls/settings/user-interface.php:
|
821 |
#, fuzzy
|
822 |
#| msgid "Dashboard Page"
|
823 |
msgid "Shortcode Page"
|
@@ -832,7 +992,7 @@ msgid "Export History"
|
|
832 |
msgstr "Historial de exportaciones"
|
833 |
|
834 |
#: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
|
835 |
-
#: tpls/already-logged-in.php:
|
836 |
msgid "Download History"
|
837 |
msgstr "Descargar historial"
|
838 |
|
@@ -848,20 +1008,80 @@ msgstr "Limpiando..."
|
|
848 |
msgid "Download History is Empty"
|
849 |
msgstr "Historial de descarga vacío"
|
850 |
|
851 |
-
#: admin/tpls/stats/history.php:
|
852 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
853 |
msgid "Package Name"
|
854 |
msgstr "Nombre del paquete"
|
855 |
|
856 |
-
#: admin/tpls/stats/history.php:
|
857 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
858 |
msgid "Download Time"
|
859 |
msgstr "Tiempo de descarga"
|
860 |
|
861 |
-
#: admin/tpls/stats/history.php:
|
862 |
-
|
|
|
|
|
863 |
msgstr "Usuario / IP"
|
864 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
865 |
#: admin/tpls/templates.php:19
|
866 |
#, php-format
|
867 |
msgid ""
|
@@ -869,222 +1089,240 @@ msgid ""
|
|
869 |
"href='%s'>WordPress Download Manager Pro</a>"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: admin/tpls/templates.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
873 |
#, fuzzy
|
874 |
#| msgid "Sample Package Name"
|
875 |
msgid "Template Name"
|
876 |
msgstr "Nombre del paquete de muestra"
|
877 |
|
878 |
-
#: admin/tpls/templates.php:
|
879 |
#, fuzzy
|
880 |
#| msgid "Page Template:"
|
881 |
msgid "Template ID"
|
882 |
msgstr "Plantilla de página:"
|
883 |
|
884 |
-
#: admin/tpls/templates.php:
|
885 |
#, fuzzy
|
886 |
#| msgid "Action"
|
887 |
msgid "Actions"
|
888 |
msgstr "Acción"
|
889 |
|
890 |
-
#: admin/tpls/templates.php:
|
891 |
msgid "To:"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: admin/tpls/templates.php:
|
895 |
#, fuzzy
|
896 |
#| msgid "Edit File"
|
897 |
msgid "Edit"
|
898 |
msgstr "Editar archivo"
|
899 |
|
900 |
-
#: admin/tpls/templates.php:
|
|
|
901 |
#, fuzzy
|
902 |
#| msgid "Icon URL"
|
903 |
msgid "Logo URL"
|
904 |
msgstr "URL del icono"
|
905 |
|
906 |
-
#: admin/tpls/templates.php:
|
907 |
msgid "Banner/Background Image URL"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: admin/tpls/templates.php:
|
911 |
msgid "Footer Text"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: admin/tpls/templates.php:
|
915 |
msgid "Facebook Page URL"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: admin/tpls/templates.php:
|
919 |
#, fuzzy
|
920 |
#| msgid "Edit Profile"
|
921 |
msgid "Twitter Profile URL"
|
922 |
msgstr "Editar perfil"
|
923 |
|
924 |
-
#: admin/tpls/templates.php:
|
925 |
msgid "Youtube Profile URL"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: admin/tpls/templates.php:
|
929 |
msgid "Template Preview"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: admin/tpls/templates.php:
|
933 |
msgid ""
|
934 |
"This is a preview, original template color scheme may look little different, "
|
935 |
"but structure will be same"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: admin/tpls/templates.php:
|
939 |
#, fuzzy
|
940 |
#| msgid "Loading..."
|
941 |
msgid "Saving..."
|
942 |
msgstr "Cargando..."
|
943 |
|
944 |
-
#: download-manager.php:
|
945 |
-
#:
|
|
|
|
|
|
|
|
|
946 |
msgid "Downloads"
|
947 |
msgstr "Descargas"
|
948 |
|
949 |
-
#: download-manager.php:
|
950 |
msgid "File"
|
951 |
msgstr "Expediente"
|
952 |
|
953 |
-
#: download-manager.php:
|
954 |
msgid "Add New"
|
955 |
msgstr "Añadir nuevo"
|
956 |
|
957 |
-
#: download-manager.php:
|
958 |
msgid "Add New File"
|
959 |
msgstr "Agregar nuevo archivo"
|
960 |
|
961 |
-
#: download-manager.php:
|
962 |
msgid "Edit File"
|
963 |
msgstr "Editar archivo"
|
964 |
|
965 |
-
#: download-manager.php:
|
966 |
msgid "New File"
|
967 |
msgstr "Archivo nuevo"
|
968 |
|
969 |
-
#: download-manager.php:
|
970 |
msgid "All Files"
|
971 |
msgstr "Todos los archivos"
|
972 |
|
973 |
-
#: download-manager.php:
|
974 |
msgid "View File"
|
975 |
msgstr "Ver archivo"
|
976 |
|
977 |
-
#: download-manager.php:
|
978 |
msgid "Search Files"
|
979 |
msgstr "Buscar archivos"
|
980 |
|
981 |
-
#: download-manager.php:
|
982 |
msgid "No File Found"
|
983 |
msgstr "Archivo no encontrado"
|
984 |
|
985 |
-
#: download-manager.php:
|
986 |
msgid "No Files found in Trash"
|
987 |
msgstr "No se encontraron archivos en la Papelera"
|
988 |
|
989 |
-
#: download-manager.php:
|
990 |
-
#: tpls/wpdm-all-downloads.php:158
|
991 |
msgid "Categories"
|
992 |
msgstr "Categorías"
|
993 |
|
994 |
-
#: download-manager.php:
|
995 |
msgid "Category"
|
996 |
msgstr "Categoría"
|
997 |
|
998 |
-
#: download-manager.php:
|
999 |
msgid "Search Categories"
|
1000 |
msgstr "Buscar Categorías"
|
1001 |
|
1002 |
-
#: download-manager.php:
|
1003 |
msgid "All Categories"
|
1004 |
msgstr "Todas las categorias"
|
1005 |
|
1006 |
-
#: download-manager.php:
|
1007 |
msgid "Parent Category"
|
1008 |
msgstr "Categoría padre"
|
1009 |
|
1010 |
-
#: download-manager.php:
|
1011 |
msgid "Parent Category:"
|
1012 |
msgstr "Categoría padre:"
|
1013 |
|
1014 |
-
#: download-manager.php:
|
1015 |
msgid "Edit Category"
|
1016 |
msgstr "Editar categoria"
|
1017 |
|
1018 |
-
#: download-manager.php:
|
1019 |
msgid "Update Category"
|
1020 |
msgstr "Actualizar categoría"
|
1021 |
|
1022 |
-
#: download-manager.php:
|
1023 |
msgid "Add New Category"
|
1024 |
msgstr "Añadir nueva categoria"
|
1025 |
|
1026 |
-
#: download-manager.php:
|
1027 |
msgid "New Category Name"
|
1028 |
msgstr "Nombre de la nueva categoría"
|
1029 |
|
1030 |
-
#: libs/class.Apply.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1031 |
msgid "Something is Wrong! Please refresh the page and try again"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: libs/class.Apply.php:
|
1035 |
msgid "Error: User registration is disabled!"
|
1036 |
msgstr "Error: ¡El registro de usuario está deshabilitado!"
|
1037 |
|
1038 |
-
#: libs/class.Apply.php:
|
1039 |
msgid "Username is Empty!"
|
1040 |
msgstr "El nombre de usuario está vacío!"
|
1041 |
|
1042 |
-
#: libs/class.Apply.php:
|
1043 |
-
|
|
|
|
|
1044 |
msgstr "Dirección de correo electrónico no válida!"
|
1045 |
|
1046 |
-
#: libs/class.Apply.php:
|
1047 |
#, fuzzy
|
1048 |
-
#| msgid "
|
1049 |
-
msgid "
|
1050 |
-
msgstr "
|
1051 |
|
1052 |
-
#: libs/class.Apply.php:
|
1053 |
#, fuzzy
|
1054 |
#| msgid "Edit File"
|
1055 |
msgid "Edit User"
|
1056 |
msgstr "Editar archivo"
|
1057 |
|
1058 |
-
#: libs/class.Apply.php:
|
1059 |
-
msgid "New user registration on your site WordPress Download Manager:"
|
1060 |
-
msgstr ""
|
1061 |
-
|
1062 |
-
#: libs/class.Apply.php:270
|
1063 |
-
#, php-format
|
1064 |
-
msgid "[%s] New User Registration"
|
1065 |
-
msgstr ""
|
1066 |
-
|
1067 |
-
#: libs/class.Apply.php:280
|
1068 |
msgid ""
|
1069 |
"Your account has been created successfully and login info sent to your mail "
|
1070 |
"address."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: libs/class.Apply.php:
|
1074 |
-
msgid "Your account has been created successfully"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: libs/class.Apply.php:
|
1078 |
-
|
|
|
|
|
1079 |
msgstr "El Email ya existe."
|
1080 |
|
1081 |
-
#: libs/class.Apply.php:
|
1082 |
#, fuzzy
|
1083 |
#| msgid "User already exists."
|
1084 |
msgid "Username already exists."
|
1085 |
msgstr "El usuario ya existe."
|
1086 |
|
1087 |
-
#: libs/class.Apply.php:
|
1088 |
#, fuzzy
|
1089 |
#| msgid "Security token is expired! Refresh the page and try again."
|
1090 |
msgid "Session Expired! Please try again."
|
@@ -1092,35 +1330,31 @@ msgstr ""
|
|
1092 |
"¡ El token de seguridad ha caducado! Actualice la página e inténtelo de "
|
1093 |
"nuevo."
|
1094 |
|
1095 |
-
#: libs/class.Apply.php:
|
1096 |
msgid "You don't have permission to download this file"
|
1097 |
msgstr "No tienes permiso para descargar este archivo."
|
1098 |
|
1099 |
-
#: libs/class.Apply.php:
|
1100 |
msgid "Download link is expired. Please get new download link."
|
1101 |
msgstr ""
|
1102 |
"El enlace de descarga ha caducado. Por favor, obtenga el nuevo enlace de "
|
1103 |
"descarga."
|
1104 |
|
1105 |
-
#: libs/class.Apply.php:
|
1106 |
msgid "Download link is expired or not valid. Please get new download link."
|
1107 |
msgstr ""
|
1108 |
"El enlace de descarga ha caducado o no es válido. Por favor, obtenga el "
|
1109 |
"nuevo enlace de descarga."
|
1110 |
|
1111 |
-
#: libs/class.Apply.php:
|
1112 |
msgid "Stock Limit Reached"
|
1113 |
msgstr "Límite de stock alcanzado"
|
1114 |
|
1115 |
-
#: libs/class.Apply.php:
|
1116 |
msgid "Invalid download link."
|
1117 |
msgstr "Enlace de descarga no válido."
|
1118 |
|
1119 |
-
#: libs/class.
|
1120 |
-
msgid "Price"
|
1121 |
-
msgstr "Precio"
|
1122 |
-
|
1123 |
-
#: libs/class.AssetManager.php:114
|
1124 |
#, fuzzy
|
1125 |
#| msgid "Download link is expired or not valid. Please get new download link."
|
1126 |
msgid ""
|
@@ -1130,239 +1364,396 @@ msgstr ""
|
|
1130 |
"El enlace de descarga ha caducado o no es válido. Por favor, obtenga el "
|
1131 |
"nuevo enlace de descarga."
|
1132 |
|
1133 |
-
#: libs/class.AssetManager.php:
|
1134 |
msgid "Asset Manager"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: libs/class.AssetManager.php:
|
1138 |
-
#: libs/class.AssetManager.php:
|
1139 |
-
#: libs/class.AssetManager.php:
|
1140 |
-
#: libs/class.AssetManager.php:
|
1141 |
-
#: libs/class.AssetManager.php:
|
1142 |
-
#: libs/class.AssetManager.php:
|
1143 |
-
#: libs/class.AssetManager.php:
|
1144 |
-
#: libs/class.AssetManager.php:
|
1145 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1146 |
msgid "Error! Session Expired. Try refreshing page."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: libs/class.AssetManager.php:
|
1150 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1151 |
#, fuzzy
|
1152 |
#| msgid "Unauthorized Access!"
|
1153 |
msgid "Error! Unauthorized Access."
|
1154 |
msgstr "¡Acceso no autorizado!"
|
1155 |
|
1156 |
-
#: libs/class.AssetManager.php:
|
1157 |
-
#: libs/class.AssetManager.php:
|
1158 |
-
#: libs/class.AssetManager.php:
|
1159 |
-
|
1160 |
-
#: libs/class.AssetManager.php:468
|
1161 |
-
msgid "Error! Unauthorized Path."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: libs/class.AssetManager.php:
|
|
|
1165 |
msgid "Home"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
1169 |
#, fuzzy
|
1170 |
#| msgid "Page Template:"
|
1171 |
msgid "Invalid source path"
|
1172 |
msgstr "Plantilla de página:"
|
1173 |
|
1174 |
-
#: libs/class.AssetManager.php:
|
1175 |
msgid "Invalid destination path"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: libs/class.AssetManager.php:
|
1179 |
#, fuzzy
|
1180 |
#| msgid "Privacy Settings Saved Successfully"
|
1181 |
msgid "File moved successfully"
|
1182 |
msgstr "Configuración de privacidad guardada correctamente"
|
1183 |
|
1184 |
-
#: libs/class.AssetManager.php:
|
1185 |
msgid "File copied successfully"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: libs/class.AssetManager.php:
|
1189 |
msgid "Asset not found!"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
1193 |
msgid "Error! Invalid Destination Path."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: libs/class.AssetManager.php:
|
1197 |
#, fuzzy
|
1198 |
#| msgid "Please activate \"zlib\" in your server"
|
1199 |
msgid "Please activate \"zlib\" in your server to perform zip operations"
|
1200 |
msgstr "Por favor active \"zlib\" en su servidor"
|
1201 |
|
1202 |
-
#: libs/class.AssetManager.php:
|
1203 |
msgid "Unzipped successfully."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: libs/class.AssetManager.php:
|
1207 |
msgid "Error! Couldn't open the zip file."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: libs/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1211 |
msgid "General Email Template"
|
1212 |
msgstr "Plantilla general de correo electrónico"
|
1213 |
|
1214 |
-
#: libs/class.Email.php:
|
1215 |
msgid "User Signup Notification"
|
1216 |
msgstr "Notificación de registro de usuario"
|
1217 |
|
1218 |
-
#: libs/class.Email.php:
|
1219 |
#, php-format
|
1220 |
msgid "Welcome to %s"
|
1221 |
msgstr "Bienvenido a% s"
|
1222 |
|
1223 |
-
#: libs/class.Email.php:
|
1224 |
-
msgid "Password Reset Notification"
|
1225 |
-
msgstr "Notificación de restablecimiento de contraseña"
|
1226 |
-
|
1227 |
-
#: libs/class.Email.php:42
|
1228 |
#, php-format
|
1229 |
-
msgid "
|
1230 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1231 |
|
1232 |
-
#: libs/class.Email.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1233 |
msgid "Email Lock Notification"
|
1234 |
msgstr "Notificación de bloqueo de correo electrónico"
|
1235 |
|
1236 |
-
#: libs/class.Email.php:
|
1237 |
msgid "Download [#package_name#]"
|
1238 |
msgstr "Descargar [# package_name #]"
|
1239 |
|
1240 |
-
#: libs/class.Email.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1241 |
msgid "Sample Package Name"
|
1242 |
msgstr "Nombre del paquete de muestra"
|
1243 |
|
1244 |
-
#: libs/class.FileList.php:
|
1245 |
-
#: libs/class.FileList.php:
|
1246 |
-
#:
|
|
|
1247 |
msgid "Password"
|
1248 |
msgstr "Contraseña"
|
1249 |
|
1250 |
-
#: libs/class.FileList.php:
|
1251 |
msgid "Action"
|
1252 |
msgstr "Acción"
|
1253 |
|
1254 |
-
#: libs/class.
|
1255 |
-
|
1256 |
-
|
|
|
|
|
1257 |
|
1258 |
-
#: libs/class.
|
1259 |
-
msgid "
|
1260 |
-
msgstr "
|
1261 |
|
1262 |
-
#: libs/class.
|
1263 |
-
msgid "
|
1264 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1265 |
|
1266 |
-
#: libs/class.
|
1267 |
-
msgid "
|
1268 |
-
msgstr "
|
1269 |
|
1270 |
-
#: libs/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1271 |
msgid "ID missing!"
|
1272 |
msgstr "Falta la identificación"
|
1273 |
|
1274 |
-
#: libs/class.Package.php:
|
1275 |
-
#: libs/class.Package.php:
|
1276 |
msgid "Icon"
|
1277 |
msgstr "Icono"
|
1278 |
|
1279 |
-
#: libs/class.Package.php:
|
1280 |
msgid "Thumbnail"
|
1281 |
msgstr "Miniatura"
|
1282 |
|
1283 |
-
#: libs/class.Package.php:
|
1284 |
-
#:
|
1285 |
msgid "Download Limit Exceeded"
|
1286 |
msgstr "Límite de descarga excedido"
|
1287 |
|
1288 |
-
#: libs/class.Package.php:
|
1289 |
-
#: libs/class.Package.php:
|
1290 |
msgid "DOWNLOAD ERROR"
|
1291 |
msgstr "ERROR DE DESCARGA"
|
1292 |
|
1293 |
-
#: libs/class.Package.php:
|
1294 |
-
#: libs/class.Package.php:
|
1295 |
msgid "Download was expired on"
|
1296 |
msgstr "La descarga ha caducado el"
|
1297 |
|
1298 |
-
#: libs/class.Package.php:
|
1299 |
-
#: libs/class.Package.php:
|
1300 |
msgid "Download will be available from "
|
1301 |
msgstr "La descarga estará disponible desde"
|
1302 |
|
1303 |
-
#: libs/class.Package.php:
|
1304 |
msgid "Terms and Conditions"
|
1305 |
msgstr "Términos y Condiciones"
|
1306 |
|
1307 |
-
#: libs/class.Package.php:
|
1308 |
-
|
1309 |
-
|
|
|
|
|
1310 |
|
1311 |
-
#: libs/class.Package.php:
|
1312 |
msgid "No File Attached!"
|
1313 |
msgstr "No hay archivo adjunto!"
|
1314 |
|
1315 |
-
#: libs/class.Package.php:
|
1316 |
-
#: libs/class.Package.php:
|
1317 |
-
#: wpdm-functions.php:
|
1318 |
msgid "Download:"
|
1319 |
msgstr "Descargar:"
|
1320 |
|
1321 |
-
#: libs/class.Package.php:
|
1322 |
msgid "Download limit exceeded!"
|
1323 |
msgstr "Límite de descarga superado!"
|
1324 |
|
1325 |
-
#: libs/class.Package.php:
|
1326 |
msgid "Verify CAPTCHA to Download"
|
1327 |
msgstr "Verificar CAPTCHA para descargar"
|
1328 |
|
1329 |
-
#: libs/class.Package.php:
|
1330 |
-
#: libs/class.Package.php:
|
1331 |
msgid "DOWNLOAD ERROR:"
|
1332 |
msgstr "ERROR DE DESCARGA:"
|
1333 |
|
1334 |
-
#: libs/class.Package.php:
|
1335 |
msgid "Limit Over!"
|
1336 |
msgstr "Límite de más!"
|
1337 |
|
1338 |
-
#: libs/class.PackageLocks.php:
|
|
|
1339 |
msgid "Enter Correct Password to Download"
|
1340 |
msgstr "Introduzca la contraseña correcta para descargar"
|
1341 |
|
1342 |
-
#: libs/class.PackageLocks.php:
|
1343 |
-
#: tpls/
|
|
|
|
|
|
|
1344 |
msgid "Processing..."
|
1345 |
msgstr "Procesando..."
|
1346 |
|
1347 |
-
#: libs/class.PackageLocks.php:
|
|
|
|
|
1348 |
msgid "Enter Password"
|
1349 |
msgstr "Introducir la contraseña"
|
1350 |
|
1351 |
-
#: libs/class.PackageLocks.php:
|
|
|
1352 |
msgid "Submit"
|
1353 |
msgstr "Enviar"
|
1354 |
|
1355 |
-
#: libs/class.Pagination.php:50 tpls/wpdm-all-downloads.php:
|
1356 |
-
#: tpls/wpdm-all-downloads.php:
|
|
|
1357 |
msgid "Previous"
|
1358 |
msgstr "Anterior"
|
1359 |
|
1360 |
-
#: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:
|
1361 |
-
#: tpls/wpdm-all-downloads.php:
|
|
|
1362 |
msgid "Next"
|
1363 |
msgstr "Siguiente"
|
1364 |
|
1365 |
-
#: libs/class.ShortCodes.php:
|
1366 |
msgid "User registration is disabled"
|
1367 |
msgstr "El registro de usuario está deshabilitado"
|
1368 |
|
@@ -1370,6 +1761,77 @@ msgstr "El registro de usuario está deshabilitado"
|
|
1370 |
msgid "Failed To Open File!"
|
1371 |
msgstr "¡Fallo al abrir el archivo!"
|
1372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1373 |
#: libs/class.UserDashboard.php:17
|
1374 |
msgid "Profile"
|
1375 |
msgstr "Perfil"
|
@@ -1382,29 +1844,27 @@ msgstr "Editar perfil"
|
|
1382 |
msgid "Account"
|
1383 |
msgstr ""
|
1384 |
|
|
|
|
|
|
|
|
|
1385 |
#: modules/server-file-browser.php:8
|
1386 |
msgid "Not Allowed!"
|
1387 |
msgstr "¡No permitido!"
|
1388 |
|
1389 |
-
#: modules/server-file-browser.php:
|
1390 |
msgid "Add file(s) from server"
|
1391 |
msgstr "Añadir archivo (s) desde el servidor"
|
1392 |
|
1393 |
-
#: modules/strings.php:10
|
1394 |
msgid "Download Count"
|
1395 |
msgstr "Descargar Conde"
|
1396 |
|
1397 |
-
#: modules/strings.php:
|
1398 |
-
#, fuzzy
|
1399 |
-
#| msgid "Version:"
|
1400 |
-
msgid "Version"
|
1401 |
-
msgstr "Versión:"
|
1402 |
-
|
1403 |
-
#: modules/strings.php:12 modules/strings.php:22
|
1404 |
msgid "Stock"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: modules/strings.php:13
|
1408 |
msgid "File Size"
|
1409 |
msgstr "Tamaño del archivo"
|
1410 |
|
@@ -1420,590 +1880,777 @@ msgstr "¡Tipo de archivo invalido!"
|
|
1420 |
msgid "File Count"
|
1421 |
msgstr "Conteo de visitas"
|
1422 |
|
1423 |
-
#: modules/strings.php:16 tpls/wpdm-all-downloads.php:
|
|
|
1424 |
msgid "Create Date"
|
1425 |
msgstr "Fecha de Creación"
|
1426 |
|
1427 |
-
#: modules/strings.php:17
|
1428 |
msgid "Last Updated"
|
1429 |
msgstr "Última actualización"
|
1430 |
|
1431 |
-
#: modules/strings.php:
|
|
|
1432 |
#, fuzzy
|
1433 |
#| msgid "Version:"
|
1434 |
msgid "Description"
|
1435 |
msgstr "Versión:"
|
1436 |
|
1437 |
-
#: modules/strings.php:
|
1438 |
#, fuzzy
|
1439 |
#| msgid "Package Name"
|
1440 |
msgid "Package Info"
|
1441 |
msgstr "Nombre del paquete"
|
1442 |
|
1443 |
-
#: modules/strings.php:
|
1444 |
#, fuzzy
|
1445 |
#| msgid "Attach File"
|
1446 |
msgid "Attached Files"
|
1447 |
msgstr "Adjuntar archivo"
|
1448 |
|
1449 |
-
#: modules/strings.php:
|
1450 |
#, fuzzy
|
1451 |
#| msgid "Total Views"
|
1452 |
msgid "Total Files"
|
1453 |
msgstr "Vistas totales"
|
1454 |
|
1455 |
-
#: modules/
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
#: modules/widgets.php:108 modules/widgets.php:164 modules/widgets.php:229
|
1460 |
-
#: modules/widgets.php:319 modules/widgets.php:435
|
1461 |
-
msgid "Title:"
|
1462 |
-
msgstr "Título:"
|
1463 |
-
|
1464 |
-
#: modules/widgets.php:168 modules/widgets.php:233 modules/widgets.php:329
|
1465 |
-
msgid "Number of packages to show:"
|
1466 |
-
msgstr "Número de paquetes a mostrar:"
|
1467 |
-
|
1468 |
-
#: modules/widgets.php:172 modules/widgets.php:238 modules/widgets.php:334
|
1469 |
-
msgid "Link Template:"
|
1470 |
-
msgstr "Plantilla de enlace:"
|
1471 |
-
|
1472 |
-
#: modules/widgets.php:323
|
1473 |
-
msgid "Select Category:"
|
1474 |
-
msgstr "Selecciona una categoría:"
|
1475 |
-
|
1476 |
-
#: modules/widgets.php:358 tpls/user-dashboard/profile.php:19
|
1477 |
-
msgid "Total Downloads"
|
1478 |
-
msgstr "Descargas totales"
|
1479 |
-
|
1480 |
-
#: modules/widgets.php:359
|
1481 |
-
msgid "Total Views"
|
1482 |
-
msgstr "Vistas totales"
|
1483 |
-
|
1484 |
-
#: modules/widgets.php:360 modules/widgets.php:444 wpdm-functions.php:783
|
1485 |
-
msgid "Publish Date"
|
1486 |
-
msgstr "Fecha de publicación"
|
1487 |
-
|
1488 |
-
#: modules/widgets.php:362
|
1489 |
-
msgid "Size"
|
1490 |
-
msgstr "Tamaño"
|
1491 |
-
|
1492 |
-
#: modules/widgets.php:439
|
1493 |
-
msgid "Fields to Show:"
|
1494 |
-
msgstr "Campos para mostrar:"
|
1495 |
-
|
1496 |
-
#: modules/widgets.php:443
|
1497 |
-
msgid "View Count"
|
1498 |
-
msgstr "Conteo de visitas"
|
1499 |
-
|
1500 |
-
#: modules/widgets.php:445 wpdm-functions.php:784
|
1501 |
-
msgid "Update Date"
|
1502 |
-
msgstr "Fecha de actualización"
|
1503 |
-
|
1504 |
-
#: modules/widgets.php:447
|
1505 |
-
msgid "Download Link"
|
1506 |
-
msgstr "Enlace de descarga"
|
1507 |
|
1508 |
-
#: modules/
|
1509 |
-
msgid "
|
1510 |
-
msgstr "
|
1511 |
|
1512 |
-
#: modules/
|
1513 |
-
msgid "
|
1514 |
-
msgstr "
|
1515 |
|
1516 |
-
#: tpls/already-logged-in.php:
|
1517 |
#, fuzzy
|
1518 |
#| msgid "Welcome to %s"
|
1519 |
msgid "Welcome"
|
1520 |
msgstr "Bienvenido a% s"
|
1521 |
|
1522 |
-
#: tpls/already-logged-in.php:
|
1523 |
msgid "You are already logged in."
|
1524 |
msgstr "Ya se ha autentificado."
|
1525 |
|
1526 |
-
#: tpls/already-logged-in.php:
|
1527 |
#, fuzzy
|
1528 |
#| msgid "Dashboard Page"
|
1529 |
msgid "Dashboard"
|
1530 |
msgstr "Página del tablero"
|
1531 |
|
1532 |
-
#: tpls/asset-manager-ui.php:500
|
1533 |
#, fuzzy
|
1534 |
#| msgid "New File"
|
1535 |
msgid "New Folder"
|
1536 |
msgstr "Archivo nuevo"
|
1537 |
|
1538 |
-
#: tpls/asset-manager-ui.php:
|
|
|
1539 |
#, fuzzy
|
1540 |
#| msgid "Upload"
|
1541 |
msgid "Upload File"
|
1542 |
msgstr "Subir"
|
1543 |
|
1544 |
-
#: tpls/asset-manager-ui.php:508
|
1545 |
msgid "Digital Asset Manager"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: tpls/asset-manager-ui.php:611
|
1549 |
#, fuzzy
|
1550 |
#| msgid "Dashboard Page"
|
1551 |
msgid "Copy Shortcode"
|
1552 |
msgstr "Página del tablero"
|
1553 |
|
1554 |
-
#: tpls/asset-manager-ui.php:713
|
1555 |
#, fuzzy
|
1556 |
#| msgid "Drop files here"
|
1557 |
msgid "Drop files here"
|
1558 |
msgstr "Soltar archivos aquí"
|
1559 |
|
1560 |
-
#: tpls/asset-manager-ui.php:820
|
1561 |
msgid "Authorized User Groups:"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: tpls/asset-manager-ui.php:842
|
1565 |
#, fuzzy
|
1566 |
#| msgid "Unauthorized Access!"
|
1567 |
msgid "Authorized Users:"
|
1568 |
msgstr "¡Acceso no autorizado!"
|
1569 |
|
1570 |
-
#: tpls/
|
|
|
|
|
|
|
|
|
|
|
|
|
1571 |
msgid "Buy"
|
1572 |
msgstr "Comprar"
|
1573 |
|
1574 |
-
#: tpls/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1575 |
msgid "Search Package"
|
1576 |
msgstr "Paquete de búsqueda"
|
1577 |
|
1578 |
-
#: tpls/simple-search-form.php:18
|
|
|
1579 |
msgid "Search Result For"
|
1580 |
msgstr "Resultado de la búsqueda para"
|
1581 |
|
|
|
1582 |
#: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
|
|
|
1583 |
msgid "Loading"
|
1584 |
msgstr "Cargando"
|
1585 |
|
1586 |
-
#: tpls/
|
1587 |
-
#:
|
1588 |
-
msgid "
|
1589 |
-
msgstr "
|
1590 |
|
1591 |
-
#: tpls/
|
1592 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: tpls/
|
1596 |
-
#:
|
1597 |
-
msgid "
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: tpls/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1601 |
msgid "Basic Profile"
|
1602 |
msgstr "Perfil basico"
|
1603 |
|
1604 |
-
#: tpls/user-dashboard/edit-profile.php:27
|
|
|
1605 |
msgid "Display name:"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: tpls/user-dashboard/edit-profile.php:28
|
|
|
1609 |
msgid "PayPal Email:"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: tpls/user-dashboard/edit-profile.php:30
|
|
|
1613 |
#, fuzzy
|
1614 |
#| msgid "Username"
|
1615 |
msgid "Username:"
|
1616 |
msgstr "Nombre de usuario"
|
1617 |
|
1618 |
-
#: tpls/user-dashboard/edit-profile.php:31
|
|
|
1619 |
#, fuzzy
|
1620 |
#| msgid "E-mail"
|
1621 |
msgid "Email:"
|
1622 |
msgstr "Email"
|
1623 |
|
1624 |
-
#: tpls/user-dashboard/edit-profile.php:33
|
|
|
1625 |
#, fuzzy
|
1626 |
#| msgid "Password:"
|
1627 |
msgid "New Password:"
|
1628 |
msgstr "Contraseña:"
|
1629 |
|
1630 |
-
#: tpls/user-dashboard/edit-profile.php:33
|
1631 |
-
msgid "Use nothing if you don
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: tpls/user-dashboard/edit-profile.php:34
|
|
|
1635 |
#, fuzzy
|
1636 |
#| msgid "Enter Password"
|
1637 |
msgid "Re-type New Password:"
|
1638 |
msgstr "Introducir la contraseña"
|
1639 |
|
1640 |
-
#: tpls/user-dashboard/
|
1641 |
-
#, fuzzy
|
1642 |
-
#| msgid "Version:"
|
1643 |
-
msgid "Description:"
|
1644 |
-
msgstr "Versión:"
|
1645 |
-
|
1646 |
-
#: tpls/user-dashboard/profile.php:7
|
1647 |
msgid "User Level"
|
1648 |
msgstr "Nivel de usuario"
|
1649 |
|
1650 |
-
#: tpls/user-dashboard/profile.php:
|
|
|
|
|
|
|
|
|
|
|
1651 |
msgid "Today's Download"
|
1652 |
msgstr "Descarga de hoy"
|
1653 |
|
1654 |
-
#: tpls/user-dashboard/profile.php:35
|
1655 |
msgid "Recommended Downloads"
|
1656 |
msgstr "Descargas Recomendadas"
|
1657 |
|
1658 |
-
#: tpls/user-dashboard/profile.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1659 |
msgid "Last 5 Downloads"
|
1660 |
msgstr "Últimas 5 descargas"
|
1661 |
|
1662 |
-
#: tpls/wpdm-all-downloads.php:112
|
1663 |
msgid "Display _MENU_ downloads per page"
|
1664 |
msgstr "Mostrar _MENU_ descargas por página"
|
1665 |
|
1666 |
-
#: tpls/wpdm-all-downloads.php:113
|
1667 |
msgid "Nothing _START_ to - sorry"
|
1668 |
msgstr "Nada _START_ para - lo siento"
|
1669 |
|
1670 |
-
#: tpls/wpdm-all-downloads.php:114
|
1671 |
msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
|
1672 |
msgstr "Mostrando _START_ a _END_ de _TOTAL_ descargas"
|
1673 |
|
1674 |
-
#: tpls/wpdm-all-downloads.php:115
|
1675 |
msgid "No downloads available"
|
1676 |
msgstr "No hay descargas disponibles"
|
1677 |
|
1678 |
-
#: tpls/wpdm-all-downloads.php:116
|
1679 |
msgid "(filtered from _MAX_ total downloads)"
|
1680 |
msgstr "(filtrado de _MAX_ descargas totales)"
|
1681 |
|
1682 |
-
#: tpls/wpdm-all-downloads.php:117
|
1683 |
msgid "No data available in table"
|
1684 |
msgstr "No hay datos disponibles en la tabla"
|
1685 |
|
1686 |
-
#: tpls/wpdm-all-downloads.php:120
|
1687 |
msgid "Loading..."
|
1688 |
msgstr "Cargando..."
|
1689 |
|
1690 |
-
#: tpls/wpdm-all-downloads.php:122
|
1691 |
msgid "Search:"
|
1692 |
msgstr "Buscar:"
|
1693 |
|
1694 |
-
#: tpls/wpdm-all-downloads.php:124
|
1695 |
msgid "First"
|
1696 |
msgstr "primero"
|
1697 |
|
1698 |
-
#: tpls/wpdm-all-downloads.php:125
|
1699 |
msgid "Last"
|
1700 |
msgstr "Último"
|
1701 |
|
1702 |
-
#: tpls/wpdm-all-downloads.php:130
|
1703 |
msgid "activate to sort column ascending"
|
1704 |
msgstr "activar para ordenar la columna ascendente"
|
1705 |
|
1706 |
-
#: tpls/wpdm-all-downloads.php:131
|
1707 |
msgid "activate to sort column descending"
|
1708 |
msgstr "activar para ordenar la columna descendente"
|
1709 |
|
1710 |
-
#: tpls/wpdm-all-downloads.php:135
|
1711 |
msgid "All"
|
1712 |
msgstr "Todos"
|
1713 |
|
1714 |
-
#: tpls/wpdm-all-downloads.php:
|
1715 |
-
msgid "file(s)"
|
1716 |
-
msgstr "archivo (s)"
|
1717 |
-
|
1718 |
-
#: tpls/wpdm-all-downloads.php:266
|
1719 |
msgid "downloads"
|
1720 |
msgstr "descargas"
|
1721 |
|
1722 |
-
#: tpls/wpdm-all-downloads.php:266
|
1723 |
msgid "download"
|
1724 |
msgstr "descargar"
|
1725 |
|
1726 |
-
#: tpls/wpdm-all-downloads.php:272
|
1727 |
msgid "views"
|
1728 |
msgstr "puntos de vista"
|
1729 |
|
1730 |
-
#: tpls/wpdm-all-downloads.php:272
|
1731 |
msgid "view"
|
1732 |
msgstr "ver"
|
1733 |
|
1734 |
-
#: tpls/wpdm-all-downloads.php:312
|
1735 |
msgid "No Packages Found"
|
1736 |
msgstr "No se encontraron paquetes"
|
1737 |
|
1738 |
-
#: tpls/wpdm-asset.php:23
|
1739 |
#, fuzzy
|
1740 |
#| msgid "Direct Download"
|
1741 |
msgid "Login to Download"
|
1742 |
msgstr "Descarga directa"
|
1743 |
|
1744 |
-
#: tpls/wpdm-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1745 |
msgid "Select Options"
|
1746 |
msgstr "Seleccione opciones"
|
1747 |
|
1748 |
-
#: tpls/wpdm-generate-password.php:19
|
1749 |
msgid "Number of passwords:"
|
1750 |
msgstr "Número de contraseñas:"
|
1751 |
|
1752 |
-
#: tpls/wpdm-generate-password.php:23
|
1753 |
msgid "Number of chars for each password:"
|
1754 |
msgstr "Número de caracteres para cada contraseña:"
|
1755 |
|
1756 |
-
#: tpls/wpdm-generate-password.php:
|
1757 |
-
|
|
|
|
|
1758 |
msgstr "Caracteres válidos:"
|
1759 |
|
1760 |
-
#: tpls/wpdm-generate-password.php:
|
1761 |
-
msgid "
|
1762 |
-
msgstr "
|
1763 |
|
1764 |
-
#: tpls/wpdm-generate-password.php:
|
1765 |
-
msgid "
|
1766 |
-
msgstr "
|
1767 |
|
1768 |
-
#: tpls/wpdm-
|
1769 |
-
msgid "
|
1770 |
-
msgstr "
|
1771 |
|
1772 |
-
#: tpls/wpdm-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1773 |
#, fuzzy
|
1774 |
-
#| msgid "
|
1775 |
-
msgid "
|
1776 |
-
msgstr "
|
1777 |
|
1778 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1779 |
msgid "Remember Me"
|
1780 |
msgstr "Recuérdame"
|
1781 |
|
1782 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1783 |
msgid "Forgot Password?"
|
1784 |
msgstr "¿Se te olvidó tu contraseña?"
|
1785 |
|
1786 |
-
#: tpls/wpdm-login-form.php:
|
1787 |
-
#: tpls/wpdm-reg-form.php:
|
1788 |
-
|
1789 |
-
|
|
|
1790 |
|
1791 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1792 |
msgid "Don't have an account yet?"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: tpls/wpdm-login-form.php:
|
|
|
|
|
1796 |
#, fuzzy
|
1797 |
#| msgid "Register Page"
|
1798 |
msgid "Register Now"
|
1799 |
msgstr "Página de registro"
|
1800 |
|
1801 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1802 |
msgid "Logging In..."
|
1803 |
msgstr "Iniciar sesión..."
|
1804 |
|
1805 |
-
#: tpls/wpdm-login-form.php:
|
|
|
|
|
1806 |
msgid "LOGIN FAILED!"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: tpls/wpdm-login-form.php:
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
|
|
|
|
|
|
1813 |
msgstr ""
|
1814 |
-
"¡Error de inicio de sesion! Por favor, vuelva a comprobar la información de "
|
1815 |
-
"inicio de sesión."
|
1816 |
|
1817 |
-
#: tpls/wpdm-
|
1818 |
-
|
1819 |
-
|
1820 |
-
msgid "Lost Password?"
|
1821 |
-
msgstr "¿Se te olvidó tu contraseña?"
|
1822 |
|
1823 |
-
#: tpls/wpdm-
|
1824 |
-
msgid ""
|
1825 |
-
"Please enter your username or email address. You will receive a link to "
|
1826 |
-
"create a new password via email."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: tpls/wpdm-
|
1830 |
-
|
1831 |
-
|
1832 |
-
|
1833 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1834 |
|
1835 |
-
#:
|
1836 |
#, fuzzy
|
1837 |
-
#| msgid "
|
1838 |
-
msgid "
|
1839 |
-
msgstr "
|
1840 |
|
1841 |
-
#:
|
1842 |
-
|
1843 |
-
|
1844 |
-
msgstr "¡ERROR!"
|
1845 |
|
1846 |
-
#:
|
1847 |
-
msgid "
|
1848 |
-
msgstr ""
|
1849 |
|
1850 |
-
#:
|
1851 |
-
msgid "
|
1852 |
-
msgstr ""
|
1853 |
|
1854 |
-
#:
|
1855 |
-
|
1856 |
-
|
|
|
|
|
|
|
1857 |
|
1858 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1859 |
#, fuzzy
|
1860 |
-
#| msgid "
|
1861 |
-
msgid "
|
1862 |
-
msgstr "
|
1863 |
|
1864 |
-
#:
|
1865 |
#, fuzzy
|
1866 |
-
#| msgid "
|
1867 |
-
msgid "
|
1868 |
-
msgstr "
|
1869 |
|
1870 |
-
#:
|
1871 |
-
msgid "
|
1872 |
-
msgstr "
|
1873 |
|
1874 |
-
#:
|
1875 |
#, fuzzy
|
1876 |
-
#| msgid "
|
1877 |
-
msgid "
|
1878 |
-
msgstr "
|
1879 |
|
1880 |
-
#:
|
1881 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#:
|
1885 |
-
|
1886 |
-
|
1887 |
-
msgid "Password Updated"
|
1888 |
-
msgstr "Última actualización"
|
1889 |
|
1890 |
-
#:
|
1891 |
#, fuzzy
|
1892 |
-
#| msgid "
|
1893 |
-
msgid "
|
1894 |
-
msgstr "
|
1895 |
|
1896 |
-
#:
|
1897 |
-
msgid "
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1901 |
#, fuzzy
|
1902 |
-
#| msgid "
|
1903 |
-
msgid "
|
1904 |
-
msgstr "
|
1905 |
|
1906 |
-
#:
|
|
|
|
|
|
|
|
|
1907 |
#, fuzzy
|
1908 |
-
#| msgid "
|
1909 |
-
msgid "
|
1910 |
-
msgstr "
|
1911 |
|
1912 |
-
#:
|
1913 |
-
msgid "
|
1914 |
-
msgstr "
|
1915 |
|
1916 |
-
#:
|
1917 |
-
msgid "
|
1918 |
-
msgstr "
|
1919 |
|
1920 |
-
#:
|
1921 |
-
msgid "
|
1922 |
-
msgstr "
|
1923 |
|
1924 |
-
#:
|
1925 |
-
|
1926 |
-
|
|
|
|
|
1927 |
|
1928 |
-
#:
|
1929 |
-
msgid "
|
|
|
|
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#:
|
1933 |
-
|
1934 |
-
|
|
|
|
|
1935 |
|
1936 |
-
#:
|
1937 |
-
msgid "
|
1938 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1939 |
|
1940 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1941 |
msgid "Select category"
|
1942 |
msgstr "Selecciona una categoría"
|
1943 |
|
1944 |
-
#: wpdm-core.php:
|
1945 |
-
msgid "New Package Notification"
|
1946 |
-
msgstr "Notificación de nuevo paquete"
|
1947 |
-
|
1948 |
-
#: wpdm-core.php:189
|
1949 |
msgid ": Update Available"
|
1950 |
msgstr ": Actualización disponible"
|
1951 |
|
1952 |
-
#: wpdm-functions.php:
|
1953 |
msgid "Permission Denied"
|
1954 |
msgstr "Permiso denegado"
|
1955 |
|
1956 |
-
#: wpdm-functions.php:
|
1957 |
msgid "Captcha Verification Failed!"
|
1958 |
msgstr "Captcha Verification Failed!"
|
1959 |
|
1960 |
-
#: wpdm-functions.php:
|
1961 |
msgid "Wrong Password! Try Again."
|
1962 |
msgstr "¡Contraseña incorrecta! Inténtalo de nuevo."
|
1963 |
|
1964 |
-
#: wpdm-functions.php:
|
1965 |
msgid "Password usages limit exceeded"
|
1966 |
msgstr "Límite de uso de contraseña excedido"
|
1967 |
|
1968 |
-
#: wpdm-functions.php:
|
1969 |
-
msgid "Sub-Categories"
|
1970 |
-
msgstr "Subcategorias"
|
1971 |
-
|
1972 |
-
#: wpdm-functions.php:781
|
1973 |
-
msgid "Title"
|
1974 |
-
msgstr "Título"
|
1975 |
-
|
1976 |
-
#: wpdm-functions.php:785
|
1977 |
-
msgid "Asc"
|
1978 |
-
msgstr "Asc"
|
1979 |
-
|
1980 |
-
#: wpdm-functions.php:786
|
1981 |
-
msgid "Desc"
|
1982 |
-
msgstr "Desc"
|
1983 |
-
|
1984 |
-
#: wpdm-functions.php:787
|
1985 |
-
msgid "Search"
|
1986 |
-
msgstr "Buscar"
|
1987 |
-
|
1988 |
-
#: wpdm-functions.php:788
|
1989 |
-
msgid "Order"
|
1990 |
-
msgstr "Orden"
|
1991 |
-
|
1992 |
-
#: wpdm-functions.php:789
|
1993 |
-
msgid "Order By"
|
1994 |
-
msgstr "Ordenar por"
|
1995 |
-
|
1996 |
-
#: wpdm-functions.php:1336
|
1997 |
#, fuzzy
|
1998 |
#| msgid "Select category"
|
1999 |
msgid "Select Image"
|
2000 |
msgstr "Selecciona una categoría"
|
2001 |
|
2002 |
-
#: wpdm-functions.php:
|
2003 |
msgid "SELECT IMAGE"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: wpdm-functions.php:
|
2007 |
#, fuzzy
|
2008 |
#| msgid "Upload"
|
2009 |
msgid "Uploading"
|
@@ -2017,18 +2664,60 @@ msgstr "Su dirección IP está bloqueada!"
|
|
2017 |
msgid "Package is not available!"
|
2018 |
msgstr "¡El paquete no está disponible!"
|
2019 |
|
2020 |
-
#: wpdm-start-download.php:
|
2021 |
msgid "Sorry! Download is not available yet."
|
2022 |
msgstr "¡Lo siento! La descarga no está disponible todavía."
|
2023 |
|
2024 |
-
#: wpdm-start-download.php:
|
2025 |
msgid "Please activate \"zlib\" in your server"
|
2026 |
msgstr "Por favor active \"zlib\" en su servidor"
|
2027 |
|
2028 |
-
#: wpdm-start-download.php:
|
2029 |
msgid "No file found!"
|
2030 |
msgstr "¡Archivo no encontrado!"
|
2031 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2032 |
#, fuzzy
|
2033 |
#~| msgid "Request Reset"
|
2034 |
#~ msgid "Request New"
|
@@ -2044,9 +2733,3 @@ msgstr "¡Archivo no encontrado!"
|
|
2044 |
#~| msgid "Logging In..."
|
2045 |
#~ msgid "Log In"
|
2046 |
#~ msgstr "Iniciar sesión..."
|
2047 |
-
|
2048 |
-
#~ msgid "Invalid Token!"
|
2049 |
-
#~ msgstr "¡Simbolo no valido!"
|
2050 |
-
|
2051 |
-
#~ msgid "New Package is Added By [#name#]"
|
2052 |
-
#~ msgstr "Nuevo paquete es agregado por [# nombre #]"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Download Manager\n"
|
4 |
+
"POT-Creation-Date: 2020-12-13 13:58+0600\n"
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.4.1\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
+
#: admin/class.WordPressDownloadManagerAdmin.php:171
|
18 |
#: admin/tpls/metaboxes/package-settings.php:6
|
19 |
msgid "Package Settings"
|
20 |
msgstr "Ajustes del paquete"
|
21 |
|
22 |
+
#: admin/class.WordPressDownloadManagerAdmin.php:172
|
23 |
msgid "Attach File"
|
24 |
msgstr "Adjuntar archivo"
|
25 |
|
31 |
msgid "Add-Ons"
|
32 |
msgstr "Complementos"
|
33 |
|
34 |
+
#: admin/menus/class.Categories.php:49 admin/menus/class.Categories.php:253
|
35 |
#, fuzzy
|
36 |
#| msgid "Category"
|
37 |
msgid "Category Image:"
|
38 |
msgstr "Categoría"
|
39 |
|
40 |
+
#: admin/menus/class.Categories.php:52 admin/menus/class.Categories.php:258
|
41 |
msgid "Image URL"
|
42 |
msgstr "URL de la imagen"
|
43 |
|
44 |
+
#: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
|
45 |
#, fuzzy
|
46 |
#| msgid "Select Category:"
|
47 |
msgid "Select Category Image"
|
48 |
msgstr "Selecciona una categoría:"
|
49 |
|
50 |
+
#: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
|
51 |
+
#: libs/class.FileList.php:307
|
52 |
+
msgid "Browse"
|
53 |
+
msgstr "Buscar"
|
54 |
|
55 |
+
#: admin/menus/class.Categories.php:117 admin/menus/class.Categories.php:323
|
56 |
msgid "Access:"
|
57 |
msgstr "Acceso:"
|
58 |
|
59 |
+
#: admin/menus/class.Categories.php:119 admin/menus/class.Categories.php:326
|
60 |
msgid ""
|
61 |
"Select the roles who should have access to the packages under this category"
|
62 |
msgstr ""
|
63 |
"Seleccione los roles que deberían tener acceso a los paquetes en esta "
|
64 |
"categoría"
|
65 |
|
66 |
+
#: admin/menus/class.Categories.php:122 admin/menus/class.Categories.php:339
|
67 |
+
#: admin/tpls/metaboxes/package-settings.php:68 tpls/asset-manager-ui.php:832
|
68 |
+
#: tpls3/asset-manager-ui.php:825
|
69 |
msgid "All Visitors"
|
70 |
msgstr "Todos los visitantes"
|
71 |
|
72 |
+
#: admin/menus/class.Categories.php:138 admin/menus/class.Categories.php:368
|
73 |
+
#, fuzzy
|
74 |
+
#| msgid "Page Template:"
|
75 |
+
msgid "Category Page Template"
|
76 |
+
msgstr "Plantilla de página:"
|
77 |
+
|
78 |
+
#: admin/menus/class.Categories.php:141 admin/menus/class.Categories.php:371
|
79 |
+
msgid "Use Global"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: admin/menus/class.Categories.php:142 admin/menus/class.Categories.php:372
|
83 |
+
msgid "Do Not Apply"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: admin/menus/class.Categories.php:144 admin/menus/class.Categories.php:374
|
87 |
+
msgid "Keep current template as it is provided with the active theme"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin/menus/class.Categories.php:146 admin/menus/class.Categories.php:376
|
91 |
+
#, fuzzy
|
92 |
+
#| msgid "Link Template:"
|
93 |
+
msgid "Use Link Template"
|
94 |
+
msgstr "Plantilla de enlace:"
|
95 |
+
|
96 |
+
#: admin/menus/class.Categories.php:159 admin/menus/class.Categories.php:389
|
97 |
+
#: widgets/class.CatPackages.php:91 widgets/class.ListPackages.php:126
|
98 |
+
#: widgets/class.NewDownloads.php:60 widgets/class.TopDownloads.php:59
|
99 |
+
msgid "Link Template:"
|
100 |
+
msgstr "Plantilla de enlace:"
|
101 |
+
|
102 |
+
#: admin/menus/class.Categories.php:165 admin/menus/class.Categories.php:395
|
103 |
+
#, fuzzy
|
104 |
+
#| msgid "Register Page"
|
105 |
+
msgid "Items Per Page:"
|
106 |
+
msgstr "Página de registro"
|
107 |
+
|
108 |
+
#: admin/menus/class.Categories.php:169 admin/menus/class.Categories.php:399
|
109 |
+
msgid "Toolbar:"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: admin/menus/class.Categories.php:171 admin/menus/class.Categories.php:401
|
113 |
+
msgid "Show"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: admin/menus/class.Categories.php:172 admin/menus/class.Categories.php:402
|
117 |
+
msgid "Hide"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: admin/menus/class.Categories.php:178 admin/menus/class.Categories.php:408
|
121 |
+
#, fuzzy
|
122 |
+
#| msgid "Number of passwords:"
|
123 |
+
msgid "Number of Columns"
|
124 |
+
msgstr "Número de contraseñas:"
|
125 |
+
|
126 |
+
#: admin/menus/class.Packages.php:203
|
127 |
msgid "Direct Download"
|
128 |
msgstr "Descarga directa"
|
129 |
|
135 |
msgid "Settings"
|
136 |
msgstr "Ajustes"
|
137 |
|
138 |
+
#: admin/menus/class.Settings.php:138 admin/menus/class.Settings.php:169
|
139 |
+
#: admin/menus/class.Settings.php:188 admin/menus/class.Settings.php:244
|
140 |
+
#: admin/menus/class.Settings.php:260
|
141 |
msgid "Security token is expired! Refresh the page and try again."
|
142 |
msgstr ""
|
143 |
"¡ El token de seguridad ha caducado! Actualice la página e inténtelo de "
|
144 |
"nuevo."
|
145 |
|
146 |
+
#: admin/menus/class.Settings.php:331
|
147 |
msgid "Privacy Settings Saved Successfully"
|
148 |
msgstr "Configuración de privacidad guardada correctamente"
|
149 |
|
181 |
msgid "Failed to connect with server!"
|
182 |
msgstr "Error al conectar con el servidor!"
|
183 |
|
184 |
+
#: admin/tpls/asset-manager-picker.php:9
|
185 |
+
msgid "Asset Manager Picker"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: admin/tpls/asset-manager-picker.php:693
|
189 |
+
#, fuzzy
|
190 |
+
#| msgid "Server File Browser"
|
191 |
+
msgid "Server File Picker"
|
192 |
+
msgstr "Explorador de archivos del servidor"
|
193 |
+
|
194 |
+
#: admin/tpls/asset-manager-picker.php:727
|
195 |
+
#: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:186
|
196 |
+
#: admin/tpls/templates.php:347 tpls/asset-manager-ui.php:555
|
197 |
+
#: tpls/user-dashboard/edit-profile.php:48 tpls/wpdm-edit-user-profile.php:64
|
198 |
+
#: tpls3/asset-manager-ui.php:550 tpls3/user-dashboard/edit-profile.php:51
|
199 |
+
#: tpls3/wpdm-edit-user-profile.php:51
|
200 |
+
#, fuzzy
|
201 |
+
#| msgid "Save Settings"
|
202 |
+
msgid "Save Changes"
|
203 |
+
msgstr "Guardar ajustes"
|
204 |
+
|
205 |
+
#: admin/tpls/asset-manager-picker.php:753
|
206 |
+
#, fuzzy
|
207 |
+
#| msgid "Attach File"
|
208 |
+
msgid "Attach selected file"
|
209 |
+
msgstr "Adjuntar archivo"
|
210 |
+
|
211 |
#: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
|
212 |
#, fuzzy
|
213 |
#| msgid "Link Template:"
|
275 |
msgid "From Email"
|
276 |
msgstr "Email"
|
277 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
#: admin/tpls/email-template-editor.php:119
|
279 |
#, fuzzy
|
280 |
#| msgid ": Update Available"
|
305 |
msgid "Emails"
|
306 |
msgstr "Email"
|
307 |
|
308 |
+
#: admin/tpls/emails-template.php:23 admin/tpls/templates.php:106
|
309 |
#, fuzzy
|
310 |
#| msgid "General Email Template"
|
311 |
msgid "Email Template"
|
312 |
msgstr "Plantilla general de correo electrónico"
|
313 |
|
314 |
+
#: admin/tpls/metaboxes/attach-file.php:7
|
315 |
msgid "attached file is missing/deleted"
|
316 |
msgstr "el archivo adjunto falta o se ha borrado"
|
317 |
|
318 |
+
#: admin/tpls/metaboxes/attach-file.php:37
|
319 |
msgid "No file uploaded yet!"
|
320 |
msgstr "Aún no se ha subido ningún archivo!"
|
321 |
|
322 |
+
#: admin/tpls/metaboxes/attach-file.php:46
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
#, fuzzy
|
324 |
#| msgid "Drop files here"
|
325 |
msgid "Drop file here"
|
326 |
msgstr "Soltar archivos aquí"
|
327 |
|
328 |
+
#: admin/tpls/metaboxes/attach-file.php:68 tpls/asset-manager-ui.php:745
|
329 |
+
#: tpls3/asset-manager-ui.php:738 wpdm-functions.php:1480
|
330 |
msgid "Allowed Files"
|
331 |
msgstr "Archivos permitidos"
|
332 |
|
333 |
+
#: admin/tpls/metaboxes/attach-file.php:147
|
334 |
msgid "Invalid File Type!"
|
335 |
msgstr "¡Tipo de archivo invalido!"
|
336 |
|
337 |
+
#: admin/tpls/metaboxes/attach-file.php:149
|
338 |
msgid "Unauthorized Access!"
|
339 |
msgstr "¡Acceso no autorizado!"
|
340 |
|
341 |
+
#: admin/tpls/metaboxes/attach-file.php:153
|
342 |
+
#: admin/tpls/metaboxes/attach-file.php:252
|
343 |
msgid "Delete Current File"
|
344 |
msgstr "Eliminar archivo actual"
|
345 |
|
346 |
+
#: admin/tpls/metaboxes/attach-file.php:186 admin/tpls/templates.php:369
|
347 |
msgid "Are you sure?"
|
348 |
msgstr "¿Estás seguro?"
|
349 |
|
350 |
+
#: admin/tpls/metaboxes/attach-file.php:188
|
351 |
msgid ""
|
352 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
353 |
"circle\"></i> Removed!</div></div>"
|
355 |
"<div class = \"w3eden\"> <div class = \"text-danger\"> <i class = \"fa fa-"
|
356 |
"check-circle\"> </i> Eliminado! </div> </div>"
|
357 |
|
358 |
+
#: admin/tpls/metaboxes/attach-file.php:200
|
359 |
+
#, fuzzy
|
360 |
+
#| msgid "Insert From Media Library"
|
361 |
+
msgid "Select from media library"
|
362 |
+
msgstr "Insertar desde la biblioteca de medios"
|
363 |
+
|
364 |
+
#: admin/tpls/metaboxes/attach-file.php:232
|
365 |
+
#, fuzzy
|
366 |
+
#| msgid "Add file(s) from server"
|
367 |
+
msgid "Select from server"
|
368 |
+
msgstr "Añadir archivo (s) desde el servidor"
|
369 |
+
|
370 |
+
#: admin/tpls/metaboxes/icons.php:5
|
371 |
msgid "Icon URL"
|
372 |
msgstr "URL del icono"
|
373 |
|
383 |
msgstr "Debe estar de acuerdo con los términos"
|
384 |
|
385 |
#: admin/tpls/metaboxes/lock-options.php:11
|
386 |
+
#, fuzzy
|
387 |
+
#| msgid "Terms Title:"
|
388 |
+
msgid "Terms Page:"
|
389 |
+
msgstr "Título de los términos:"
|
390 |
+
|
391 |
+
#: admin/tpls/metaboxes/lock-options.php:12
|
392 |
+
msgid "Use custom content below"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: admin/tpls/metaboxes/lock-options.php:15
|
396 |
msgid "Terms Title:"
|
397 |
msgstr "Título de los términos:"
|
398 |
|
399 |
+
#: admin/tpls/metaboxes/lock-options.php:19
|
400 |
msgid "Terms and Conditions:"
|
401 |
msgstr "Términos y Condiciones:"
|
402 |
|
403 |
+
#: admin/tpls/metaboxes/lock-options.php:24
|
404 |
msgid "Terms Checkbox Label:"
|
405 |
msgstr "Términos Etiqueta de casilla de verificación:"
|
406 |
|
407 |
+
#: admin/tpls/metaboxes/lock-options.php:33
|
408 |
msgid "Enable Password Lock"
|
409 |
msgstr "Habilitar bloqueo de contraseña"
|
410 |
|
411 |
+
#: admin/tpls/metaboxes/lock-options.php:36
|
412 |
msgid "Password:"
|
413 |
msgstr "Contraseña:"
|
414 |
|
415 |
+
#: admin/tpls/metaboxes/lock-options.php:39
|
416 |
msgid ""
|
417 |
"If you want to use multiple passwords, keep each one inside [], like [123]"
|
418 |
"[456][789]"
|
420 |
"Si desea utilizar varias contraseñas, mantenga cada una dentro de [], como "
|
421 |
"[123] [456] [789]"
|
422 |
|
423 |
+
#: admin/tpls/metaboxes/lock-options.php:48
|
424 |
msgid "Enable Captcha Lock"
|
425 |
msgstr "Habilitar Bloqueo Captcha"
|
426 |
|
427 |
+
#: admin/tpls/metaboxes/lock-options.php:51
|
428 |
msgid "Please configure reCAPTCHA"
|
429 |
msgstr "Por favor, configure reCAPTCHA"
|
430 |
|
431 |
+
#: admin/tpls/metaboxes/lock-options.php:52
|
432 |
msgid "Users will be asked for reCAPTCHA verification before download."
|
433 |
msgstr ""
|
434 |
"Se solicitará a los usuarios que verifiquen reCAPTCHA antes de descargar."
|
445 |
msgid "Version:"
|
446 |
msgstr "Versión:"
|
447 |
|
448 |
+
#: admin/tpls/metaboxes/package-settings.php:28
|
449 |
msgid "Link Label:"
|
450 |
msgstr "Etiqueta de enlace:"
|
451 |
|
452 |
+
#: admin/tpls/metaboxes/package-settings.php:29
|
453 |
+
#: admin/tpls/settings/addon-update.php:61
|
454 |
+
#: admin/tpls/settings/addon-update.php:107
|
455 |
+
#: admin/tpls/settings/user-interface.php:115
|
456 |
+
#: admin/tpls/settings/user-interface.php:145 libs/class.FileList.php:98
|
457 |
+
#: libs/class.FileList.php:100 libs/class.FileList.php:136
|
458 |
+
#: libs/class.FileList.php:138 libs/class.FileList.php:203
|
459 |
+
#: libs/class.FileList.php:250 libs/class.FileList.php:305
|
460 |
+
#: libs/class.Package.php:77 libs/class.Package.php:155
|
461 |
+
#: libs/class.Package.php:634 libs/class.Package.php:659
|
462 |
+
#: libs/class.Package.php:726 libs/class.Package.php:819
|
463 |
+
#: libs/class.Package.php:851 libs/class.Package.php:1295
|
464 |
+
#: libs/class.PackageLocks.php:74 libs/class.PackageLocks.php:111
|
465 |
+
#: tpls/lock-options-iframe.php:289 tpls/lock-options/password-lock.php:41
|
466 |
+
#: tpls/lock-options/recaptcha-lock.php:24 tpls/wpdm-all-downloads.php:191
|
467 |
+
#: tpls/wpdm-all-downloads.php:347 tpls/wpdm-asset.php:21
|
468 |
+
#: tpls3/lock-options-iframe.php:243 tpls3/lock-options/password-lock.php:41
|
469 |
+
#: tpls3/lock-options/recaptcha-lock.php:24 tpls3/wpdm-all-downloads.php:160
|
470 |
+
#: tpls3/wpdm-asset.php:21 wpdm-functions.php:94 wpdm-functions.php:119
|
471 |
+
#: wpdm-functions.php:187
|
472 |
+
msgid "Download"
|
473 |
+
msgstr "Descargar"
|
474 |
+
|
475 |
+
#: admin/tpls/metaboxes/package-settings.php:33
|
476 |
msgid "File Size:"
|
477 |
msgstr "Tamaño Archivo:"
|
478 |
|
479 |
+
#: admin/tpls/metaboxes/package-settings.php:39
|
480 |
msgid "Stock Limit:"
|
481 |
msgstr "Limite Stock:"
|
482 |
|
483 |
+
#: admin/tpls/metaboxes/package-settings.php:40
|
484 |
+
msgid "Unlimited"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: admin/tpls/metaboxes/package-settings.php:46
|
488 |
msgid "View Count:"
|
489 |
msgstr "Contador Visualizaciones:"
|
490 |
|
491 |
+
#: admin/tpls/metaboxes/package-settings.php:51
|
492 |
msgid "Download Count:"
|
493 |
msgstr "Contador Descargas:"
|
494 |
|
495 |
+
#: admin/tpls/metaboxes/package-settings.php:57
|
496 |
msgid "Allow Access:"
|
497 |
msgstr "Permitir el acceso:"
|
498 |
|
499 |
+
#: admin/tpls/metaboxes/package-settings.php:59
|
500 |
msgid "Who should be able to download?"
|
501 |
msgstr "¿Quién debería poder descargar?"
|
502 |
|
503 |
+
#: admin/tpls/metaboxes/package-settings.php:88
|
504 |
msgid "Page Template:"
|
505 |
msgstr "Plantilla de página:"
|
506 |
|
507 |
+
#: admin/tpls/metaboxes/package-settings.php:99
|
508 |
msgid "Master Key"
|
509 |
msgstr "Llave maestra"
|
510 |
|
511 |
+
#: admin/tpls/metaboxes/package-settings.php:100
|
512 |
msgid "Regenerate Master Key for Download"
|
513 |
msgstr "Regenerar clave maestra para descargar"
|
514 |
|
515 |
+
#: admin/tpls/metaboxes/package-settings.php:100
|
516 |
msgid "This key can be used for direct download"
|
517 |
msgstr "Esta clave puede ser utilizada para descarga directa."
|
518 |
|
528 |
msgid "Check For Updates"
|
529 |
msgstr "Buscar actualizaciones"
|
530 |
|
531 |
+
#: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:23
|
532 |
+
#: tpls/wpdm-dashboard.php:30 tpls3/already-logged-in.php:23
|
533 |
+
#: tpls3/wpdm-dashboard.php:28
|
534 |
msgid "Logout"
|
535 |
msgstr "Cerrar sesión"
|
536 |
|
556 |
msgstr "Complementos gratuitos"
|
557 |
|
558 |
#: admin/tpls/settings/addon-update.php:58
|
559 |
+
#: admin/tpls/settings/addon-update.php:104
|
560 |
msgid "Product Name"
|
561 |
msgstr "nombre del producto"
|
562 |
|
563 |
#: admin/tpls/settings/addon-update.php:59
|
564 |
+
#: admin/tpls/settings/addon-update.php:105
|
565 |
msgid "Active(v)"
|
566 |
msgstr "Activo (v)"
|
567 |
|
568 |
#: admin/tpls/settings/addon-update.php:60
|
569 |
+
#: admin/tpls/settings/addon-update.php:106
|
570 |
msgid "Latest(v)"
|
571 |
msgstr "Último (v)"
|
572 |
|
573 |
+
#: admin/tpls/settings/addon-update.php:86
|
574 |
+
#: admin/tpls/settings/addon-update.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
msgid "Install"
|
576 |
msgstr "Instalar"
|
577 |
|
578 |
+
#: admin/tpls/settings/addon-update.php:88
|
579 |
+
#: admin/tpls/settings/addon-update.php:129
|
580 |
msgid "Update"
|
581 |
msgstr "Actualizar"
|
582 |
|
583 |
+
#: admin/tpls/settings/addon-update.php:89
|
584 |
+
#: admin/tpls/settings/addon-update.php:130
|
585 |
msgid "Updated"
|
586 |
msgstr "Actualizado"
|
587 |
|
588 |
+
#: admin/tpls/settings/addon-update.php:91
|
589 |
msgid "Expired"
|
590 |
msgstr "Muerto"
|
591 |
|
592 |
+
#: admin/tpls/settings/addon-update.php:145 tpls/lost-password-form.php:59
|
593 |
+
#: tpls/reset-password-form.php:48 tpls/wpdm-reg-form.php:103
|
594 |
+
#: tpls3/lost-password-form.php:41 tpls3/reset-password-form.php:48
|
595 |
+
#: tpls3/wpdm-reg-form.php:106
|
596 |
msgid "Please Wait..."
|
597 |
msgstr "Por favor espera..."
|
598 |
|
599 |
+
#: admin/tpls/settings/addon-update.php:147
|
600 |
msgid "Success!"
|
601 |
msgstr "¡Éxito!"
|
602 |
|
628 |
msgid "File Browser Access:"
|
629 |
msgstr "Acceso al navegador de archivos:"
|
630 |
|
631 |
+
#: admin/tpls/settings/basic.php:67
|
632 |
msgid "Who will have access to server file browser"
|
633 |
msgstr "¿Quién tendrá acceso al navegador de archivos del servidor?"
|
634 |
|
635 |
+
#: admin/tpls/settings/basic.php:99
|
636 |
msgid "Upload Settings"
|
637 |
msgstr "Cargar Configuraciones"
|
638 |
|
639 |
+
#: admin/tpls/settings/basic.php:103
|
640 |
msgid "Sanitize Filename"
|
641 |
msgstr "Desinfectar nombre de archivo"
|
642 |
|
643 |
+
#: admin/tpls/settings/basic.php:104
|
644 |
msgid ""
|
645 |
"Check the option if you want to sanitize uploaded file names to remove "
|
646 |
"illegal chars"
|
648 |
"Marque la opción si desea limpiar los nombres de los archivos cargados para "
|
649 |
"eliminar caracteres ilegales"
|
650 |
|
651 |
+
#: admin/tpls/settings/basic.php:111
|
652 |
msgid "Chunk Upload"
|
653 |
msgstr "Subida de Chunk"
|
654 |
|
655 |
+
#: admin/tpls/settings/basic.php:112
|
656 |
msgid ""
|
657 |
"Check the option if you want to enable chunk upload to override http upload "
|
658 |
"limits"
|
660 |
"Marque la opción si desea habilitar la carga de trozos para anular los "
|
661 |
"límites de carga de http"
|
662 |
|
663 |
+
#: admin/tpls/settings/basic.php:117
|
664 |
msgid "Chunk Size"
|
665 |
msgstr "Tamaño de porción"
|
666 |
|
667 |
+
#: admin/tpls/settings/basic.php:130
|
668 |
msgid "File Download"
|
669 |
msgstr "Descarga de archivos"
|
670 |
|
671 |
+
#: admin/tpls/settings/basic.php:134
|
672 |
msgid "Download Speed:"
|
673 |
msgstr "Velocidad de Descarga:"
|
674 |
|
675 |
+
#: admin/tpls/settings/basic.php:142
|
676 |
msgid "Blocked IPs"
|
677 |
msgstr "IPs bloqueadas"
|
678 |
|
679 |
+
#: admin/tpls/settings/basic.php:144
|
680 |
msgid "One IP per line"
|
681 |
msgstr "Una IP por línea"
|
682 |
|
683 |
+
#: admin/tpls/settings/basic.php:145
|
684 |
msgid ""
|
685 |
"List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 "
|
686 |
"or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
|
690 |
"192.168.23.12 o 192.168.23.1/24 o 192.168.23. *, IPv6 - 2a01: 8760: 2: "
|
691 |
"3001 :: 1 o 2620: 112: 3000 :: / 44)"
|
692 |
|
693 |
+
#: admin/tpls/settings/basic.php:148
|
694 |
msgid "Write a Message for Blocked IPs"
|
695 |
msgstr "Escribe un mensaje para IPs bloqueadas"
|
696 |
|
697 |
+
#: admin/tpls/settings/basic.php:149
|
698 |
msgid "Message for Blocked IPs"
|
699 |
msgstr "Mensaje para IPs bloqueadas"
|
700 |
|
701 |
+
#: admin/tpls/settings/basic.php:153
|
702 |
msgid ""
|
703 |
"If you get broken download, then try enabling/disabling following options, "
|
704 |
"as sometimes server may not support output buffering or partial downloads"
|
707 |
"siguientes opciones, ya que a veces el servidor no admite el búfer de salida "
|
708 |
"o descargas parciales"
|
709 |
|
710 |
+
#: admin/tpls/settings/basic.php:156
|
711 |
msgid "Resumable Downloads"
|
712 |
msgstr "Descargas reanudables"
|
713 |
|
714 |
+
#: admin/tpls/settings/basic.php:158 admin/tpls/settings/basic.php:165
|
715 |
msgid "Enabled"
|
716 |
msgstr "Habilitado"
|
717 |
|
718 |
+
#: admin/tpls/settings/basic.php:159 admin/tpls/settings/basic.php:166
|
719 |
msgid "Disabled"
|
720 |
msgstr "Deshabilitado"
|
721 |
|
722 |
+
#: admin/tpls/settings/basic.php:163
|
723 |
msgid "Output Buffering"
|
724 |
msgstr "Buffer de salida"
|
725 |
|
726 |
+
#: admin/tpls/settings/basic.php:172
|
727 |
msgid "Open in Browser"
|
728 |
msgstr "Abrir en el navegador"
|
729 |
|
730 |
+
#: admin/tpls/settings/basic.php:173
|
731 |
msgid ""
|
732 |
"Try to Open in Browser instead of download when someone clicks on download "
|
733 |
"link"
|
736 |
"clic en el enlace de descarga"
|
737 |
|
738 |
#: admin/tpls/settings/basic.php:178
|
739 |
+
#, fuzzy
|
740 |
+
#| msgid "Download Link"
|
741 |
+
msgid "Mask Download Link"
|
742 |
+
msgstr "Enlace de descarga"
|
743 |
+
|
744 |
+
#: admin/tpls/settings/basic.php:179
|
745 |
+
#, fuzzy
|
746 |
+
#| msgid "Download Link"
|
747 |
+
msgid "Unmask Download Link"
|
748 |
+
msgstr "Enlace de descarga"
|
749 |
+
|
750 |
+
#: admin/tpls/settings/basic.php:180
|
751 |
+
msgid ""
|
752 |
+
"Check this option if you want to mask/unmask file download link. If you "
|
753 |
+
"unmask download link, bots will be able the find any public download link "
|
754 |
+
"easily."
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: admin/tpls/settings/basic.php:184
|
758 |
msgid "reCAPTCHA Lock Settings"
|
759 |
msgstr "ReCAPTCHA Lock Settings"
|
760 |
|
761 |
+
#: admin/tpls/settings/basic.php:186
|
762 |
msgid "reCAPTCHA Site Key"
|
763 |
msgstr "ReCAPTCHA Site Key"
|
764 |
|
765 |
+
#: admin/tpls/settings/basic.php:188
|
766 |
msgid ""
|
767 |
"Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
|
768 |
"www.google.com/recaptcha/admin#list\">here</a>"
|
770 |
"Registre un nuevo sitio para reCAPTCHA desde <a target=\"_blank\" href="
|
771 |
"\"https://www.google.com/recaptcha/admin#list\"> aquí </a>"
|
772 |
|
773 |
+
#: admin/tpls/settings/basic.php:191
|
774 |
msgid "reCAPTCHA Secret Key"
|
775 |
msgstr "clave secreta reCAPTCHA"
|
776 |
|
777 |
+
#: admin/tpls/settings/basic.php:196
|
778 |
+
msgid "Enable sign up form CAPTCHA validation"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: admin/tpls/settings/basic.php:200
|
782 |
+
msgid "Enable sign in form CAPTCHA validation"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: admin/tpls/settings/basic.php:212
|
786 |
msgid "Misc Settings"
|
787 |
msgstr "Configuraciones Misc"
|
788 |
|
789 |
+
#: admin/tpls/settings/basic.php:217
|
790 |
msgid "Login Page"
|
791 |
msgstr "Página de inicio de sesión"
|
792 |
|
793 |
+
#: admin/tpls/settings/basic.php:218 admin/tpls/settings/basic.php:227
|
794 |
+
#: admin/tpls/settings/basic.php:235
|
795 |
msgid "None Selected"
|
796 |
msgstr "Ninguna seleccionada"
|
797 |
|
798 |
+
#: admin/tpls/settings/basic.php:219 admin/tpls/settings/basic.php:228
|
799 |
+
#: admin/tpls/settings/basic.php:236
|
800 |
#, php-format
|
801 |
msgid "The page where you used short-code %s"
|
802 |
msgstr "La página donde usaste el código corto% s"
|
803 |
|
804 |
+
#: admin/tpls/settings/basic.php:220
|
805 |
+
msgid "Enable modal login form"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: admin/tpls/settings/basic.php:221
|
809 |
+
#, php-format
|
810 |
+
msgid ""
|
811 |
+
"%s will show the modal login form, <a target=\"_blank\" href=\"%s\">follow "
|
812 |
+
"the docs</a> for moore details"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: admin/tpls/settings/basic.php:226
|
816 |
msgid "Register Page"
|
817 |
msgstr "Página de registro"
|
818 |
|
819 |
+
#: admin/tpls/settings/basic.php:229
|
820 |
+
msgid "Enable email verification on signup"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: admin/tpls/settings/basic.php:230
|
824 |
+
msgid "Login automatically after signup is completed"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: admin/tpls/settings/basic.php:234
|
828 |
msgid "Dashboard Page"
|
829 |
msgstr "Página del tablero"
|
830 |
|
831 |
+
#: admin/tpls/settings/basic.php:241
|
832 |
msgid "Include Packages in Main RSS Feed"
|
833 |
msgstr "Incluir paquetes en RSS principal"
|
834 |
|
835 |
+
#: admin/tpls/settings/basic.php:242
|
836 |
#, php-format
|
837 |
msgid ""
|
838 |
"Check this option if you want to show wpdm packages in your main <a target="
|
884 |
msgstr ""
|
885 |
|
886 |
#: admin/tpls/settings/user-interface.php:14
|
887 |
+
msgid "Active Bootstrap Version"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: admin/tpls/settings/user-interface.php:16
|
891 |
+
#, fuzzy
|
892 |
+
#| msgid "Bootstrap JS"
|
893 |
+
msgid "Bootstrap 4"
|
894 |
+
msgstr "Bootstrap JS"
|
895 |
+
|
896 |
+
#: admin/tpls/settings/user-interface.php:16
|
897 |
+
#, fuzzy
|
898 |
+
#| msgid "Bootstrap JS"
|
899 |
+
msgid "Bootstrap 3"
|
900 |
+
msgstr "Bootstrap JS"
|
901 |
+
|
902 |
+
#: admin/tpls/settings/user-interface.php:20
|
903 |
msgid "Disable Style & Script"
|
904 |
msgstr "Deshabilitar Estilo y Script"
|
905 |
|
906 |
+
#: admin/tpls/settings/user-interface.php:26
|
907 |
msgid "Bootstrap JS"
|
908 |
msgstr "Bootstrap JS"
|
909 |
|
910 |
+
#: admin/tpls/settings/user-interface.php:27
|
911 |
msgid "Bootstrap CSS"
|
912 |
msgstr "CSS Bootstrap"
|
913 |
|
914 |
+
#: admin/tpls/settings/user-interface.php:28
|
915 |
msgid "Font Awesome"
|
916 |
msgstr "Fuente impresionante"
|
917 |
|
918 |
+
#: admin/tpls/settings/user-interface.php:29
|
919 |
msgid "Front CSS"
|
920 |
msgstr "CSS frontal"
|
921 |
|
922 |
+
#: admin/tpls/settings/user-interface.php:30
|
923 |
msgid "Google Font"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: admin/tpls/settings/user-interface.php:32
|
927 |
msgid ""
|
928 |
"Because, sometimes your theme may have those scripts/styles enqueued already"
|
929 |
msgstr "Porque, a veces, su tema puede tener esos scripts / estilos en cola ya"
|
930 |
|
931 |
+
#: admin/tpls/settings/user-interface.php:38
|
932 |
msgid "Colors"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: admin/tpls/settings/user-interface.php:54
|
936 |
msgid "Primary:"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: admin/tpls/settings/user-interface.php:60
|
940 |
msgid "Secondary:"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: admin/tpls/settings/user-interface.php:66
|
944 |
msgid "Info:"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: admin/tpls/settings/user-interface.php:72
|
948 |
#, fuzzy
|
949 |
#| msgid "Success!"
|
950 |
msgid "Success:"
|
951 |
msgstr "¡Éxito!"
|
952 |
|
953 |
+
#: admin/tpls/settings/user-interface.php:78
|
954 |
#, fuzzy
|
955 |
#| msgid "Warning!"
|
956 |
msgid "Warning:"
|
957 |
msgstr "¡Advertencia!"
|
958 |
|
959 |
+
#: admin/tpls/settings/user-interface.php:84
|
960 |
msgid "Danger:"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: admin/tpls/settings/user-interface.php:96
|
964 |
#, fuzzy
|
965 |
#| msgid "Download Count"
|
966 |
msgid "Download Button"
|
967 |
msgstr "Descargar Conde"
|
968 |
|
969 |
+
#: admin/tpls/settings/user-interface.php:100
|
970 |
#, fuzzy
|
971 |
#| msgid "Register Page"
|
972 |
msgid "Details Page"
|
973 |
msgstr "Página de registro"
|
974 |
|
975 |
+
#: admin/tpls/settings/user-interface.php:125
|
976 |
+
#: admin/tpls/settings/user-interface.php:155
|
977 |
msgid "Border Radius"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: admin/tpls/settings/user-interface.php:130
|
981 |
#, fuzzy
|
982 |
#| msgid "Dashboard Page"
|
983 |
msgid "Shortcode Page"
|
992 |
msgstr "Historial de exportaciones"
|
993 |
|
994 |
#: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
|
995 |
+
#: tpls/already-logged-in.php:22 tpls3/already-logged-in.php:22
|
996 |
msgid "Download History"
|
997 |
msgstr "Descargar historial"
|
998 |
|
1008 |
msgid "Download History is Empty"
|
1009 |
msgstr "Historial de descarga vacío"
|
1010 |
|
1011 |
+
#: admin/tpls/stats/history.php:123
|
1012 |
+
#, fuzzy
|
1013 |
+
#| msgid "Product Name"
|
1014 |
+
msgid "From Date"
|
1015 |
+
msgstr "nombre del producto"
|
1016 |
+
|
1017 |
+
#: admin/tpls/stats/history.php:133
|
1018 |
+
msgid "To Date"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: admin/tpls/stats/history.php:143
|
1022 |
+
#, fuzzy
|
1023 |
+
#| msgid "User/IP"
|
1024 |
+
msgid "Users"
|
1025 |
+
msgstr "Usuario / IP"
|
1026 |
+
|
1027 |
+
#: admin/tpls/stats/history.php:172
|
1028 |
+
#, fuzzy
|
1029 |
+
#| msgid "Package Name"
|
1030 |
+
msgid "Packages"
|
1031 |
+
msgstr "Nombre del paquete"
|
1032 |
+
|
1033 |
+
#: admin/tpls/stats/history.php:198
|
1034 |
+
msgid "Filter"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: admin/tpls/stats/history.php:199
|
1038 |
+
msgid "Reset"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: admin/tpls/stats/history.php:221 tpls/user-dashboard/download-history.php:7
|
1042 |
+
#: tpls/user-dashboard/profile.php:115 tpls/user-dashboard/profile.php:145
|
1043 |
+
#: tpls3/user-dashboard/download-history.php:9
|
1044 |
+
#: tpls3/user-dashboard/profile.php:81
|
1045 |
msgid "Package Name"
|
1046 |
msgstr "Nombre del paquete"
|
1047 |
|
1048 |
+
#: admin/tpls/stats/history.php:222 modules/strings.php:11
|
1049 |
+
#: widgets/class.PackageInfo.php:25 widgets/class.PackageInfo.php:121
|
1050 |
+
#, fuzzy
|
1051 |
+
#| msgid "Version:"
|
1052 |
+
msgid "Version"
|
1053 |
+
msgstr "Versión:"
|
1054 |
+
|
1055 |
+
#: admin/tpls/stats/history.php:223 tpls/user-dashboard/download-history.php:8
|
1056 |
+
#: tpls/user-dashboard/profile.php:146
|
1057 |
+
#: tpls3/user-dashboard/download-history.php:10
|
1058 |
+
#: tpls3/user-dashboard/profile.php:82
|
1059 |
msgid "Download Time"
|
1060 |
msgstr "Tiempo de descarga"
|
1061 |
|
1062 |
+
#: admin/tpls/stats/history.php:224
|
1063 |
+
#, fuzzy
|
1064 |
+
#| msgid "User/IP"
|
1065 |
+
msgid "User"
|
1066 |
msgstr "Usuario / IP"
|
1067 |
|
1068 |
+
#: admin/tpls/stats/history.php:225 tpls/user-dashboard/download-history.php:9
|
1069 |
+
#: tpls/user-dashboard/profile.php:147
|
1070 |
+
#: tpls3/user-dashboard/download-history.php:11
|
1071 |
+
#: tpls3/user-dashboard/profile.php:83
|
1072 |
+
msgid "IP"
|
1073 |
+
msgstr "IP"
|
1074 |
+
|
1075 |
+
#: admin/tpls/stats/history.php:226
|
1076 |
+
#, fuzzy
|
1077 |
+
#| msgid "Browse"
|
1078 |
+
msgid "Browser"
|
1079 |
+
msgstr "Buscar"
|
1080 |
+
|
1081 |
+
#: admin/tpls/stats/history.php:227
|
1082 |
+
msgid "OS"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
#: admin/tpls/templates.php:19
|
1086 |
#, php-format
|
1087 |
msgid ""
|
1089 |
"href='%s'>WordPress Download Manager Pro</a>"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: admin/tpls/templates.php:20
|
1093 |
+
#, php-format
|
1094 |
+
msgid ""
|
1095 |
+
"Please follow the <a target='_blank' href='%s'>documentation</a> to edit "
|
1096 |
+
"exiting template files"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: admin/tpls/templates.php:28
|
1100 |
#, fuzzy
|
1101 |
#| msgid "Sample Package Name"
|
1102 |
msgid "Template Name"
|
1103 |
msgstr "Nombre del paquete de muestra"
|
1104 |
|
1105 |
+
#: admin/tpls/templates.php:29
|
1106 |
#, fuzzy
|
1107 |
#| msgid "Page Template:"
|
1108 |
msgid "Template ID"
|
1109 |
msgstr "Plantilla de página:"
|
1110 |
|
1111 |
+
#: admin/tpls/templates.php:31
|
1112 |
#, fuzzy
|
1113 |
#| msgid "Action"
|
1114 |
msgid "Actions"
|
1115 |
msgstr "Acción"
|
1116 |
|
1117 |
+
#: admin/tpls/templates.php:74
|
1118 |
msgid "To:"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: admin/tpls/templates.php:82
|
1122 |
#, fuzzy
|
1123 |
#| msgid "Edit File"
|
1124 |
msgid "Edit"
|
1125 |
msgstr "Editar archivo"
|
1126 |
|
1127 |
+
#: admin/tpls/templates.php:123 admin/tpls/templates.php:124
|
1128 |
+
#: tpls/wpdm-edit-user-profile.php:23
|
1129 |
#, fuzzy
|
1130 |
#| msgid "Icon URL"
|
1131 |
msgid "Logo URL"
|
1132 |
msgstr "URL del icono"
|
1133 |
|
1134 |
+
#: admin/tpls/templates.php:127 admin/tpls/templates.php:128
|
1135 |
msgid "Banner/Background Image URL"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: admin/tpls/templates.php:139
|
1139 |
msgid "Footer Text"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: admin/tpls/templates.php:143
|
1143 |
msgid "Facebook Page URL"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: admin/tpls/templates.php:147
|
1147 |
#, fuzzy
|
1148 |
#| msgid "Edit Profile"
|
1149 |
msgid "Twitter Profile URL"
|
1150 |
msgstr "Editar perfil"
|
1151 |
|
1152 |
+
#: admin/tpls/templates.php:151
|
1153 |
msgid "Youtube Profile URL"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: admin/tpls/templates.php:201
|
1157 |
msgid "Template Preview"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: admin/tpls/templates.php:207
|
1161 |
msgid ""
|
1162 |
"This is a preview, original template color scheme may look little different, "
|
1163 |
"but structure will be same"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: admin/tpls/templates.php:343
|
1167 |
#, fuzzy
|
1168 |
#| msgid "Loading..."
|
1169 |
msgid "Saving..."
|
1170 |
msgstr "Cargando..."
|
1171 |
|
1172 |
+
#: download-manager.php:202 download-manager.php:214
|
1173 |
+
#: libs/class.CategoryHandler.php:336 libs/class.CategoryHandler.php:356
|
1174 |
+
#: libs/class.ShortCodes.php:423 libs/class.UserProfile.php:20
|
1175 |
+
#: tpls/shortcodes/toolbar.php:43 tpls/shortcodes/toolbar.php:77
|
1176 |
+
#: tpls3/shortcodes/toolbar.php:43 tpls3/shortcodes/toolbar.php:77
|
1177 |
+
#: wpdm-functions.php:823 wpdm-functions.php:842
|
1178 |
msgid "Downloads"
|
1179 |
msgstr "Descargas"
|
1180 |
|
1181 |
+
#: download-manager.php:203 libs/class.FileList.php:69
|
1182 |
msgid "File"
|
1183 |
msgstr "Expediente"
|
1184 |
|
1185 |
+
#: download-manager.php:204
|
1186 |
msgid "Add New"
|
1187 |
msgstr "Añadir nuevo"
|
1188 |
|
1189 |
+
#: download-manager.php:205
|
1190 |
msgid "Add New File"
|
1191 |
msgstr "Agregar nuevo archivo"
|
1192 |
|
1193 |
+
#: download-manager.php:206
|
1194 |
msgid "Edit File"
|
1195 |
msgstr "Editar archivo"
|
1196 |
|
1197 |
+
#: download-manager.php:207
|
1198 |
msgid "New File"
|
1199 |
msgstr "Archivo nuevo"
|
1200 |
|
1201 |
+
#: download-manager.php:208
|
1202 |
msgid "All Files"
|
1203 |
msgstr "Todos los archivos"
|
1204 |
|
1205 |
+
#: download-manager.php:209
|
1206 |
msgid "View File"
|
1207 |
msgstr "Ver archivo"
|
1208 |
|
1209 |
+
#: download-manager.php:210
|
1210 |
msgid "Search Files"
|
1211 |
msgstr "Buscar archivos"
|
1212 |
|
1213 |
+
#: download-manager.php:211
|
1214 |
msgid "No File Found"
|
1215 |
msgstr "Archivo no encontrado"
|
1216 |
|
1217 |
+
#: download-manager.php:212
|
1218 |
msgid "No Files found in Trash"
|
1219 |
msgstr "No se encontraron archivos en la Papelera"
|
1220 |
|
1221 |
+
#: download-manager.php:243 download-manager.php:253
|
1222 |
+
#: tpls/wpdm-all-downloads.php:189 tpls3/wpdm-all-downloads.php:158
|
1223 |
msgid "Categories"
|
1224 |
msgstr "Categorías"
|
1225 |
|
1226 |
+
#: download-manager.php:244
|
1227 |
msgid "Category"
|
1228 |
msgstr "Categoría"
|
1229 |
|
1230 |
+
#: download-manager.php:245
|
1231 |
msgid "Search Categories"
|
1232 |
msgstr "Buscar Categorías"
|
1233 |
|
1234 |
+
#: download-manager.php:246
|
1235 |
msgid "All Categories"
|
1236 |
msgstr "Todas las categorias"
|
1237 |
|
1238 |
+
#: download-manager.php:247
|
1239 |
msgid "Parent Category"
|
1240 |
msgstr "Categoría padre"
|
1241 |
|
1242 |
+
#: download-manager.php:248
|
1243 |
msgid "Parent Category:"
|
1244 |
msgstr "Categoría padre:"
|
1245 |
|
1246 |
+
#: download-manager.php:249
|
1247 |
msgid "Edit Category"
|
1248 |
msgstr "Editar categoria"
|
1249 |
|
1250 |
+
#: download-manager.php:250
|
1251 |
msgid "Update Category"
|
1252 |
msgstr "Actualizar categoría"
|
1253 |
|
1254 |
+
#: download-manager.php:251
|
1255 |
msgid "Add New Category"
|
1256 |
msgstr "Añadir nueva categoria"
|
1257 |
|
1258 |
+
#: download-manager.php:252
|
1259 |
msgid "New Category Name"
|
1260 |
msgstr "Nombre de la nueva categoría"
|
1261 |
|
1262 |
+
#: libs/class.Apply.php:162 libs/class.Apply.php:249
|
1263 |
+
#, fuzzy
|
1264 |
+
#| msgid "Invalid Token!"
|
1265 |
+
msgid "Invalid CAPTCHA!"
|
1266 |
+
msgstr "¡Simbolo no valido!"
|
1267 |
+
|
1268 |
+
#: libs/class.Apply.php:195 tpls/wpdm-reg-form.php:112
|
1269 |
+
#: tpls3/wpdm-reg-form.php:115
|
1270 |
+
msgid "Success! Redirecting..."
|
1271 |
+
msgstr "¡Éxito! Redireccionando ..."
|
1272 |
+
|
1273 |
+
#: libs/class.Apply.php:232
|
1274 |
msgid "Something is Wrong! Please refresh the page and try again"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: libs/class.Apply.php:262
|
1278 |
msgid "Error: User registration is disabled!"
|
1279 |
msgstr "Error: ¡El registro de usuario está deshabilitado!"
|
1280 |
|
1281 |
+
#: libs/class.Apply.php:287
|
1282 |
msgid "Username is Empty!"
|
1283 |
msgstr "El nombre de usuario está vacío!"
|
1284 |
|
1285 |
+
#: libs/class.Apply.php:302
|
1286 |
+
#, fuzzy
|
1287 |
+
#| msgid "Invalid Email Address!"
|
1288 |
+
msgid "Invalid email address!"
|
1289 |
msgstr "Dirección de correo electrónico no válida!"
|
1290 |
|
1291 |
+
#: libs/class.Apply.php:326
|
1292 |
#, fuzzy
|
1293 |
+
#| msgid "Last Updated"
|
1294 |
+
msgid "Passwords not matched!"
|
1295 |
+
msgstr "Última actualización"
|
1296 |
|
1297 |
+
#: libs/class.Apply.php:403
|
1298 |
#, fuzzy
|
1299 |
#| msgid "Edit File"
|
1300 |
msgid "Edit User"
|
1301 |
msgstr "Editar archivo"
|
1302 |
|
1303 |
+
#: libs/class.Apply.php:422
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1304 |
msgid ""
|
1305 |
"Your account has been created successfully and login info sent to your mail "
|
1306 |
"address."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: libs/class.Apply.php:424 libs/class.Apply.php:430
|
1310 |
+
msgid "Your account has been created successfully."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: libs/class.Apply.php:448
|
1314 |
+
#, fuzzy
|
1315 |
+
#| msgid "Email already exists."
|
1316 |
+
msgid "Email already exist!"
|
1317 |
msgstr "El Email ya existe."
|
1318 |
|
1319 |
+
#: libs/class.Apply.php:461
|
1320 |
#, fuzzy
|
1321 |
#| msgid "User already exists."
|
1322 |
msgid "Username already exists."
|
1323 |
msgstr "El usuario ya existe."
|
1324 |
|
1325 |
+
#: libs/class.Apply.php:526 libs/class.Apply.php:529
|
1326 |
#, fuzzy
|
1327 |
#| msgid "Security token is expired! Refresh the page and try again."
|
1328 |
msgid "Session Expired! Please try again."
|
1330 |
"¡ El token de seguridad ha caducado! Actualice la página e inténtelo de "
|
1331 |
"nuevo."
|
1332 |
|
1333 |
+
#: libs/class.Apply.php:676
|
1334 |
msgid "You don't have permission to download this file"
|
1335 |
msgstr "No tienes permiso para descargar este archivo."
|
1336 |
|
1337 |
+
#: libs/class.Apply.php:683
|
1338 |
msgid "Download link is expired. Please get new download link."
|
1339 |
msgstr ""
|
1340 |
"El enlace de descarga ha caducado. Por favor, obtenga el nuevo enlace de "
|
1341 |
"descarga."
|
1342 |
|
1343 |
+
#: libs/class.Apply.php:685
|
1344 |
msgid "Download link is expired or not valid. Please get new download link."
|
1345 |
msgstr ""
|
1346 |
"El enlace de descarga ha caducado o no es válido. Por favor, obtenga el "
|
1347 |
"nuevo enlace de descarga."
|
1348 |
|
1349 |
+
#: libs/class.Apply.php:692
|
1350 |
msgid "Stock Limit Reached"
|
1351 |
msgstr "Límite de stock alcanzado"
|
1352 |
|
1353 |
+
#: libs/class.Apply.php:698
|
1354 |
msgid "Invalid download link."
|
1355 |
msgstr "Enlace de descarga no válido."
|
1356 |
|
1357 |
+
#: libs/class.AssetManager.php:156
|
|
|
|
|
|
|
|
|
1358 |
#, fuzzy
|
1359 |
#| msgid "Download link is expired or not valid. Please get new download link."
|
1360 |
msgid ""
|
1364 |
"El enlace de descarga ha caducado o no es válido. Por favor, obtenga el "
|
1365 |
"nuevo enlace de descarga."
|
1366 |
|
1367 |
+
#: libs/class.AssetManager.php:180
|
1368 |
msgid "Asset Manager"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: libs/class.AssetManager.php:197 libs/class.AssetManager.php:212
|
1372 |
+
#: libs/class.AssetManager.php:234 libs/class.AssetManager.php:236
|
1373 |
+
#: libs/class.AssetManager.php:292 libs/class.AssetManager.php:294
|
1374 |
+
#: libs/class.AssetManager.php:308 libs/class.AssetManager.php:310
|
1375 |
+
#: libs/class.AssetManager.php:325 libs/class.AssetManager.php:327
|
1376 |
+
#: libs/class.AssetManager.php:344 libs/class.AssetManager.php:346
|
1377 |
+
#: libs/class.AssetManager.php:390 libs/class.AssetManager.php:409
|
1378 |
+
#: libs/class.AssetManager.php:411 libs/class.AssetManager.php:421
|
1379 |
+
#: libs/class.AssetManager.php:423 libs/class.AssetManager.php:433
|
1380 |
+
#: libs/class.AssetManager.php:435 libs/class.AssetManager.php:444
|
1381 |
+
#: libs/class.AssetManager.php:446 libs/class.AssetManager.php:458
|
1382 |
+
#: libs/class.AssetManager.php:460 libs/class.AssetManager.php:470
|
1383 |
+
#: libs/class.AssetManager.php:472 libs/class.AssetManager.php:493
|
1384 |
+
#: libs/class.AssetManager.php:495 libs/class.AssetManager.php:513
|
1385 |
+
#: libs/class.AssetManager.php:515 libs/class.AssetManager.php:541
|
1386 |
+
#: libs/class.AssetManager.php:543
|
1387 |
msgid "Error! Session Expired. Try refreshing page."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: libs/class.AssetManager.php:203 libs/class.AssetManager.php:218
|
1391 |
+
#: libs/class.AssetManager.php:241 libs/class.AssetManager.php:300
|
1392 |
+
#: libs/class.AssetManager.php:316 libs/class.AssetManager.php:331
|
1393 |
+
#: libs/class.AssetManager.php:349 libs/class.AssetManager.php:395
|
1394 |
+
#: libs/class.AssetManager.php:400 libs/class.AssetManager.php:477
|
1395 |
+
#: libs/class.AssetManager.php:639
|
1396 |
+
msgid "Error! Unauthorized Path."
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: libs/class.AssetManager.php:214 libs/class.AssetManager.php:392
|
1400 |
#, fuzzy
|
1401 |
#| msgid "Unauthorized Access!"
|
1402 |
msgid "Error! Unauthorized Access."
|
1403 |
msgstr "¡Acceso no autorizado!"
|
1404 |
|
1405 |
+
#: libs/class.AssetManager.php:222 libs/class.AssetManager.php:479
|
1406 |
+
#: libs/class.AssetManager.php:503 libs/class.AssetManager.php:522
|
1407 |
+
#: libs/class.AssetManager.php:555
|
1408 |
+
msgid "Error! FileType is not allowed."
|
|
|
|
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: libs/class.AssetManager.php:275 tpls/lost-password-form.php:33
|
1412 |
+
#: tpls3/lost-password-form.php:28
|
1413 |
msgid "Home"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: libs/class.AssetManager.php:295 libs/class.AssetManager.php:311
|
1417 |
+
msgid "<b>Unauthorized Action!</b><br/>Execution is cancelled by the system."
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: libs/class.AssetManager.php:527 libs/class.AssetManager.php:551
|
1421 |
#, fuzzy
|
1422 |
#| msgid "Page Template:"
|
1423 |
msgid "Invalid source path"
|
1424 |
msgstr "Plantilla de página:"
|
1425 |
|
1426 |
+
#: libs/class.AssetManager.php:528 libs/class.AssetManager.php:552
|
1427 |
msgid "Invalid destination path"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: libs/class.AssetManager.php:536
|
1431 |
#, fuzzy
|
1432 |
#| msgid "Privacy Settings Saved Successfully"
|
1433 |
msgid "File moved successfully"
|
1434 |
msgstr "Configuración de privacidad guardada correctamente"
|
1435 |
|
1436 |
+
#: libs/class.AssetManager.php:559
|
1437 |
msgid "File copied successfully"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: libs/class.AssetManager.php:606
|
1441 |
msgid "Asset not found!"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: libs/class.AssetManager.php:638
|
1445 |
+
msgid "Error! Only Administrator can execute this operation."
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: libs/class.AssetManager.php:640
|
1449 |
msgid "Error! Invalid Destination Path."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: libs/class.AssetManager.php:641
|
1453 |
#, fuzzy
|
1454 |
#| msgid "Please activate \"zlib\" in your server"
|
1455 |
msgid "Please activate \"zlib\" in your server to perform zip operations"
|
1456 |
msgstr "Por favor active \"zlib\" en su servidor"
|
1457 |
|
1458 |
+
#: libs/class.AssetManager.php:646
|
1459 |
msgid "Unzipped successfully."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: libs/class.AssetManager.php:648
|
1463 |
msgid "Error! Couldn't open the zip file."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: libs/class.CategoryHandler.php:336 wpdm-functions.php:823
|
1467 |
+
msgid "Sub-Categories"
|
1468 |
+
msgstr "Subcategorias"
|
1469 |
+
|
1470 |
+
#: libs/class.CategoryHandler.php:355 libs/class.ShortCodes.php:422
|
1471 |
+
#: modules/strings.php:18 tpls/shortcodes/toolbar.php:41
|
1472 |
+
#: tpls/shortcodes/toolbar.php:75 tpls/wpdm-edit-user-profile.php:15
|
1473 |
+
#: tpls3/shortcodes/toolbar.php:41 tpls3/shortcodes/toolbar.php:75
|
1474 |
+
#: wpdm-functions.php:841
|
1475 |
+
msgid "Title"
|
1476 |
+
msgstr "Título"
|
1477 |
+
|
1478 |
+
#: libs/class.CategoryHandler.php:357 libs/class.ShortCodes.php:424
|
1479 |
+
#: tpls/shortcodes/toolbar.php:40 tpls/shortcodes/toolbar.php:74
|
1480 |
+
#: tpls3/shortcodes/toolbar.php:40 tpls3/shortcodes/toolbar.php:74
|
1481 |
+
#: widgets/class.PackageInfo.php:22 widgets/class.PackageInfo.php:119
|
1482 |
+
#: wpdm-functions.php:843
|
1483 |
+
msgid "Publish Date"
|
1484 |
+
msgstr "Fecha de publicación"
|
1485 |
+
|
1486 |
+
#: libs/class.CategoryHandler.php:358 libs/class.ShortCodes.php:425
|
1487 |
+
#: tpls/shortcodes/toolbar.php:42 tpls/shortcodes/toolbar.php:76
|
1488 |
+
#: tpls3/shortcodes/toolbar.php:42 tpls3/shortcodes/toolbar.php:76
|
1489 |
+
#: widgets/class.PackageInfo.php:120 wpdm-functions.php:844
|
1490 |
+
msgid "Update Date"
|
1491 |
+
msgstr "Fecha de actualización"
|
1492 |
+
|
1493 |
+
#: libs/class.CategoryHandler.php:359 libs/class.ShortCodes.php:426
|
1494 |
+
#: wpdm-functions.php:845
|
1495 |
+
msgid "Asc"
|
1496 |
+
msgstr "Asc"
|
1497 |
+
|
1498 |
+
#: libs/class.CategoryHandler.php:360 libs/class.ShortCodes.php:427
|
1499 |
+
#: wpdm-functions.php:846
|
1500 |
+
msgid "Desc"
|
1501 |
+
msgstr "Desc"
|
1502 |
+
|
1503 |
+
#: libs/class.CategoryHandler.php:361 libs/class.ShortCodes.php:428
|
1504 |
+
#: wpdm-functions.php:847
|
1505 |
+
msgid "Search"
|
1506 |
+
msgstr "Buscar"
|
1507 |
+
|
1508 |
+
#: libs/class.CategoryHandler.php:362 libs/class.ShortCodes.php:429
|
1509 |
+
#: wpdm-functions.php:848
|
1510 |
+
msgid "Order"
|
1511 |
+
msgstr "Orden"
|
1512 |
+
|
1513 |
+
#: libs/class.CategoryHandler.php:363 libs/class.ShortCodes.php:430
|
1514 |
+
#: wpdm-functions.php:849
|
1515 |
+
msgid "Order By"
|
1516 |
+
msgstr "Ordenar por"
|
1517 |
+
|
1518 |
+
#: libs/class.Email.php:43
|
1519 |
msgid "General Email Template"
|
1520 |
msgstr "Plantilla general de correo electrónico"
|
1521 |
|
1522 |
+
#: libs/class.Email.php:52 libs/class.Email.php:62
|
1523 |
msgid "User Signup Notification"
|
1524 |
msgstr "Notificación de registro de usuario"
|
1525 |
|
1526 |
+
#: libs/class.Email.php:55
|
1527 |
#, php-format
|
1528 |
msgid "Welcome to %s"
|
1529 |
msgstr "Bienvenido a% s"
|
1530 |
|
1531 |
+
#: libs/class.Email.php:65
|
|
|
|
|
|
|
|
|
1532 |
#, php-format
|
1533 |
+
msgid "[ %s ] New User Registration"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: libs/class.Email.php:69
|
1537 |
+
msgid "New user registration on your site WordPress Download Manager:"
|
1538 |
+
msgstr ""
|
1539 |
|
1540 |
+
#: libs/class.Email.php:73
|
1541 |
+
msgid "Password Reset Notification"
|
1542 |
+
msgstr "Notificación de restablecimiento de contraseña"
|
1543 |
+
|
1544 |
+
#: libs/class.Email.php:76
|
1545 |
+
#, php-format
|
1546 |
+
msgid "Request to reset your %s password"
|
1547 |
+
msgstr "Solicitud para restablecer su contraseña% s"
|
1548 |
+
|
1549 |
+
#: libs/class.Email.php:83
|
1550 |
msgid "Email Lock Notification"
|
1551 |
msgstr "Notificación de bloqueo de correo electrónico"
|
1552 |
|
1553 |
+
#: libs/class.Email.php:86
|
1554 |
msgid "Download [#package_name#]"
|
1555 |
msgstr "Descargar [# package_name #]"
|
1556 |
|
1557 |
+
#: libs/class.Email.php:93 wpdm-core.php:192
|
1558 |
+
msgid "New Package Notification"
|
1559 |
+
msgstr "Notificación de nuevo paquete"
|
1560 |
+
|
1561 |
+
#: libs/class.Email.php:96
|
1562 |
+
msgid "New Package is Added By [#name#]"
|
1563 |
+
msgstr "Nuevo paquete es agregado por [# nombre #]"
|
1564 |
+
|
1565 |
+
#: libs/class.Email.php:260
|
1566 |
msgid "Sample Package Name"
|
1567 |
msgstr "Nombre del paquete de muestra"
|
1568 |
|
1569 |
+
#: libs/class.FileList.php:64 libs/class.FileList.php:96
|
1570 |
+
#: libs/class.FileList.php:134 libs/class.FileList.php:202
|
1571 |
+
#: libs/class.User.php:62 libs/class.User.php:91 tpls3/wpdm-login-form.php:61
|
1572 |
+
#: tpls3/wpdm-login-modal-form.php:61
|
1573 |
msgid "Password"
|
1574 |
msgstr "Contraseña"
|
1575 |
|
1576 |
+
#: libs/class.FileList.php:65
|
1577 |
msgid "Action"
|
1578 |
msgstr "Acción"
|
1579 |
|
1580 |
+
#: libs/class.MediaAccessControl.php:60
|
1581 |
+
#, fuzzy
|
1582 |
+
#| msgid "Wrong Password! Try Again."
|
1583 |
+
msgid "<b>Error:</b> Wrong Password! Try Again."
|
1584 |
+
msgstr "¡Contraseña incorrecta! Inténtalo de nuevo."
|
1585 |
|
1586 |
+
#: libs/class.MediaAccessControl.php:84
|
1587 |
+
msgid "Protected Media File"
|
1588 |
+
msgstr ""
|
1589 |
|
1590 |
+
#: libs/class.MediaAccessControl.php:84
|
1591 |
+
msgid "You are not allowed to access the media file"
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: libs/class.MediaAccessControl.php:160
|
1595 |
+
msgid "This file is not protected."
|
1596 |
+
msgstr ""
|
1597 |
|
1598 |
+
#: libs/class.MediaAccessControl.php:163
|
1599 |
+
msgid "Protect this file"
|
1600 |
+
msgstr ""
|
1601 |
|
1602 |
+
#: libs/class.MediaAccessControl.php:168
|
1603 |
+
msgid "This file is protected"
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: libs/class.MediaAccessControl.php:170
|
1607 |
+
msgid "Block Direct Access"
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: libs/class.MediaAccessControl.php:173
|
1611 |
+
msgid "Remove Protection"
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: libs/class.MediaAccessControl.php:207 libs/class.MediaAccessControl.php:222
|
1615 |
+
msgid "This file is not protected yet!"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: libs/class.MediaAccessControl.php:209 libs/class.MediaAccessControl.php:224
|
1619 |
+
#: libs/class.MediaAccessControl.php:267
|
1620 |
+
msgid "Checking status..."
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: libs/class.MediaHandler.php:17
|
1624 |
+
#, fuzzy
|
1625 |
+
#| msgid "Download Manager Settings"
|
1626 |
+
msgid "Download Manager"
|
1627 |
+
msgstr "Descargar la configuración del administrador"
|
1628 |
+
|
1629 |
+
#: libs/class.Messages.php:103
|
1630 |
+
#, fuzzy
|
1631 |
+
#| msgid "Download Limit Exceeded"
|
1632 |
+
msgid "Download Limit Exceeded!"
|
1633 |
+
msgstr "Límite de descarga excedido"
|
1634 |
+
|
1635 |
+
#: libs/class.Messages.php:111 libs/class.Package.php:921
|
1636 |
+
#: libs/class.ShortCodes.php:142 tpls/lost-password-form.php:34
|
1637 |
+
#: tpls/wpdm-login-form.php:63 tpls/wpdm-login-modal-form.php:75
|
1638 |
+
#: tpls/wpdm-reg-form.php:79 tpls3/lost-password-form.php:29
|
1639 |
+
#: tpls3/wpdm-login-form.php:101 tpls3/wpdm-login-modal-form.php:88
|
1640 |
+
#: tpls3/wpdm-reg-form.php:82
|
1641 |
+
msgid "Login"
|
1642 |
+
msgstr "Iniciar sesión"
|
1643 |
+
|
1644 |
+
#: libs/class.Messages.php:119
|
1645 |
+
#, fuzzy
|
1646 |
+
#| msgid "Permission Denied"
|
1647 |
+
msgid "Access Denied"
|
1648 |
+
msgstr "Permiso denegado"
|
1649 |
+
|
1650 |
+
#: libs/class.Package.php:28
|
1651 |
msgid "ID missing!"
|
1652 |
msgstr "Falta la identificación"
|
1653 |
|
1654 |
+
#: libs/class.Package.php:130 libs/class.Package.php:133
|
1655 |
+
#: libs/class.Package.php:135
|
1656 |
msgid "Icon"
|
1657 |
msgstr "Icono"
|
1658 |
|
1659 |
+
#: libs/class.Package.php:138 libs/class.Package.php:145
|
1660 |
msgid "Thumbnail"
|
1661 |
msgstr "Miniatura"
|
1662 |
|
1663 |
+
#: libs/class.Package.php:169 libs/class.Package.php:643 wpdm-functions.php:103
|
1664 |
+
#: wpdm-start-download.php:24
|
1665 |
msgid "Download Limit Exceeded"
|
1666 |
msgstr "Límite de descarga excedido"
|
1667 |
|
1668 |
+
#: libs/class.Package.php:172 libs/class.Package.php:180
|
1669 |
+
#: libs/class.Package.php:188 libs/class.Package.php:196
|
1670 |
msgid "DOWNLOAD ERROR"
|
1671 |
msgstr "ERROR DE DESCARGA"
|
1672 |
|
1673 |
+
#: libs/class.Package.php:177 libs/class.Package.php:647
|
1674 |
+
#: libs/class.Package.php:875 wpdm-functions.php:107
|
1675 |
msgid "Download was expired on"
|
1676 |
msgstr "La descarga ha caducado el"
|
1677 |
|
1678 |
+
#: libs/class.Package.php:185 libs/class.Package.php:654
|
1679 |
+
#: libs/class.Package.php:881 wpdm-functions.php:114
|
1680 |
msgid "Download will be available from "
|
1681 |
msgstr "La descarga estará disponible desde"
|
1682 |
|
1683 |
+
#: libs/class.Package.php:219
|
1684 |
msgid "Terms and Conditions"
|
1685 |
msgstr "Términos y Condiciones"
|
1686 |
|
1687 |
+
#: libs/class.Package.php:220
|
1688 |
+
#, fuzzy
|
1689 |
+
#| msgid "Terms and Conditions"
|
1690 |
+
msgid "I Agree With Terms and Conditions"
|
1691 |
+
msgstr "Términos y Condiciones"
|
1692 |
|
1693 |
+
#: libs/class.Package.php:451
|
1694 |
msgid "No File Attached!"
|
1695 |
msgstr "No hay archivo adjunto!"
|
1696 |
|
1697 |
+
#: libs/class.Package.php:649 libs/class.Package.php:656
|
1698 |
+
#: libs/class.Package.php:666 wpdm-functions.php:109 wpdm-functions.php:116
|
1699 |
+
#: wpdm-functions.php:126
|
1700 |
msgid "Download:"
|
1701 |
msgstr "Descargar:"
|
1702 |
|
1703 |
+
#: libs/class.Package.php:748 wpdm-functions.php:208
|
1704 |
msgid "Download limit exceeded!"
|
1705 |
msgstr "Límite de descarga superado!"
|
1706 |
|
1707 |
+
#: libs/class.Package.php:810
|
1708 |
msgid "Verify CAPTCHA to Download"
|
1709 |
msgstr "Verificar CAPTCHA para descargar"
|
1710 |
|
1711 |
+
#: libs/class.Package.php:876 libs/class.Package.php:882
|
1712 |
+
#: libs/class.Package.php:894
|
1713 |
msgid "DOWNLOAD ERROR:"
|
1714 |
msgstr "ERROR DE DESCARGA:"
|
1715 |
|
1716 |
+
#: libs/class.Package.php:970
|
1717 |
msgid "Limit Over!"
|
1718 |
msgstr "Límite de más!"
|
1719 |
|
1720 |
+
#: libs/class.PackageLocks.php:44 tpls/lock-options/password-lock.php:11
|
1721 |
+
#: tpls3/lock-options/password-lock.php:11
|
1722 |
msgid "Enter Correct Password to Download"
|
1723 |
msgstr "Introduzca la contraseña correcta para descargar"
|
1724 |
|
1725 |
+
#: libs/class.PackageLocks.php:47 libs/class.PackageLocks.php:63
|
1726 |
+
#: tpls/lock-options/password-lock.php:14
|
1727 |
+
#: tpls/lock-options/password-lock.php:30 tpls/wpdm-all-downloads.php:47
|
1728 |
+
#: tpls3/lock-options/password-lock.php:14
|
1729 |
+
#: tpls3/lock-options/password-lock.php:30 tpls3/wpdm-all-downloads.php:121
|
1730 |
msgid "Processing..."
|
1731 |
msgstr "Procesando..."
|
1732 |
|
1733 |
+
#: libs/class.PackageLocks.php:54 libs/class.User.php:93
|
1734 |
+
#: tpls/lock-options/password-lock.php:21
|
1735 |
+
#: tpls3/lock-options/password-lock.php:21
|
1736 |
msgid "Enter Password"
|
1737 |
msgstr "Introducir la contraseña"
|
1738 |
|
1739 |
+
#: libs/class.PackageLocks.php:55 tpls/lock-options/password-lock.php:22
|
1740 |
+
#: tpls3/lock-options/password-lock.php:22
|
1741 |
msgid "Submit"
|
1742 |
msgstr "Enviar"
|
1743 |
|
1744 |
+
#: libs/class.Pagination.php:50 tpls/wpdm-all-downloads.php:53
|
1745 |
+
#: tpls/wpdm-all-downloads.php:398 tpls3/wpdm-all-downloads.php:127
|
1746 |
+
#: tpls3/wpdm-all-downloads.php:333 wpdm-functions.php:1887
|
1747 |
msgid "Previous"
|
1748 |
msgstr "Anterior"
|
1749 |
|
1750 |
+
#: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:52
|
1751 |
+
#: tpls/wpdm-all-downloads.php:399 tpls3/wpdm-all-downloads.php:126
|
1752 |
+
#: tpls3/wpdm-all-downloads.php:334 wpdm-functions.php:1888
|
1753 |
msgid "Next"
|
1754 |
msgstr "Siguiente"
|
1755 |
|
1756 |
+
#: libs/class.ShortCodes.php:189
|
1757 |
msgid "User registration is disabled"
|
1758 |
msgstr "El registro de usuario está deshabilitado"
|
1759 |
|
1761 |
msgid "Failed To Open File!"
|
1762 |
msgstr "¡Fallo al abrir el archivo!"
|
1763 |
|
1764 |
+
#: libs/class.User.php:41
|
1765 |
+
#, fuzzy
|
1766 |
+
#| msgid "Product Name"
|
1767 |
+
msgid "First name"
|
1768 |
+
msgstr "nombre del producto"
|
1769 |
+
|
1770 |
+
#: libs/class.User.php:41
|
1771 |
+
#, fuzzy
|
1772 |
+
#| msgid "Product Name"
|
1773 |
+
msgid "Your First Name"
|
1774 |
+
msgstr "nombre del producto"
|
1775 |
+
|
1776 |
+
#: libs/class.User.php:42
|
1777 |
+
#, fuzzy
|
1778 |
+
#| msgid "Last Updated"
|
1779 |
+
msgid "Last name"
|
1780 |
+
msgstr "Última actualización"
|
1781 |
+
|
1782 |
+
#: libs/class.User.php:42
|
1783 |
+
#, fuzzy
|
1784 |
+
#| msgid "Last Updated"
|
1785 |
+
msgid "Your Last Name"
|
1786 |
+
msgstr "Última actualización"
|
1787 |
+
|
1788 |
+
#: libs/class.User.php:47
|
1789 |
+
msgid "Username"
|
1790 |
+
msgstr "Nombre de usuario"
|
1791 |
+
|
1792 |
+
#: libs/class.User.php:49
|
1793 |
+
msgid "User Login ID"
|
1794 |
+
msgstr ""
|
1795 |
+
|
1796 |
+
#: libs/class.User.php:53
|
1797 |
+
#, fuzzy
|
1798 |
+
#| msgid "E-mail"
|
1799 |
+
msgid "Email"
|
1800 |
+
msgstr "Email"
|
1801 |
+
|
1802 |
+
#: libs/class.User.php:55
|
1803 |
+
#, fuzzy
|
1804 |
+
#| msgid "Invalid Email Address!"
|
1805 |
+
msgid "Your Email Address"
|
1806 |
+
msgstr "Dirección de correo electrónico no válida!"
|
1807 |
+
|
1808 |
+
#: libs/class.User.php:62
|
1809 |
+
msgid "Be Secure"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: libs/class.User.php:63 tpls/reset-password-form.php:30
|
1813 |
+
#: tpls3/reset-password-form.php:30
|
1814 |
+
msgid "Confirm Password"
|
1815 |
+
msgstr "Confirmar contraseña"
|
1816 |
+
|
1817 |
+
#: libs/class.User.php:63
|
1818 |
+
msgid "Do Not Forget"
|
1819 |
+
msgstr ""
|
1820 |
+
|
1821 |
+
#: libs/class.User.php:86
|
1822 |
+
#, fuzzy
|
1823 |
+
#| msgid "Login"
|
1824 |
+
msgid "Login ID"
|
1825 |
+
msgstr "Iniciar sesión"
|
1826 |
+
|
1827 |
+
#: libs/class.User.php:88 tpls/lost-password-form.php:23
|
1828 |
+
#: tpls/lost-password-form.php:24 tpls3/lost-password-form.php:20
|
1829 |
+
#: tpls3/wpdm-login-form.php:55 tpls3/wpdm-login-modal-form.php:55
|
1830 |
+
#, fuzzy
|
1831 |
+
#| msgid "Username is Empty!"
|
1832 |
+
msgid "Username or Email"
|
1833 |
+
msgstr "El nombre de usuario está vacío!"
|
1834 |
+
|
1835 |
#: libs/class.UserDashboard.php:17
|
1836 |
msgid "Profile"
|
1837 |
msgstr "Perfil"
|
1844 |
msgid "Account"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: libs/class.UserProfile.php:21
|
1848 |
+
msgid "Favourites"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
#: modules/server-file-browser.php:8
|
1852 |
msgid "Not Allowed!"
|
1853 |
msgstr "¡No permitido!"
|
1854 |
|
1855 |
+
#: modules/server-file-browser.php:84
|
1856 |
msgid "Add file(s) from server"
|
1857 |
msgstr "Añadir archivo (s) desde el servidor"
|
1858 |
|
1859 |
+
#: modules/strings.php:10 widgets/class.PackageInfo.php:117
|
1860 |
msgid "Download Count"
|
1861 |
msgstr "Descargar Conde"
|
1862 |
|
1863 |
+
#: modules/strings.php:12
|
|
|
|
|
|
|
|
|
|
|
|
|
1864 |
msgid "Stock"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: modules/strings.php:13
|
1868 |
msgid "File Size"
|
1869 |
msgstr "Tamaño del archivo"
|
1870 |
|
1880 |
msgid "File Count"
|
1881 |
msgstr "Conteo de visitas"
|
1882 |
|
1883 |
+
#: modules/strings.php:16 tpls/wpdm-all-downloads.php:190
|
1884 |
+
#: tpls3/wpdm-all-downloads.php:159
|
1885 |
msgid "Create Date"
|
1886 |
msgstr "Fecha de Creación"
|
1887 |
|
1888 |
+
#: modules/strings.php:17 widgets/class.PackageInfo.php:23
|
1889 |
msgid "Last Updated"
|
1890 |
msgstr "Última actualización"
|
1891 |
|
1892 |
+
#: modules/strings.php:19 tpls/wpdm-edit-user-profile.php:47
|
1893 |
+
#: tpls/wpdm-edit-user-profile.php:48
|
1894 |
#, fuzzy
|
1895 |
#| msgid "Version:"
|
1896 |
msgid "Description"
|
1897 |
msgstr "Versión:"
|
1898 |
|
1899 |
+
#: modules/strings.php:20
|
1900 |
#, fuzzy
|
1901 |
#| msgid "Package Name"
|
1902 |
msgid "Package Info"
|
1903 |
msgstr "Nombre del paquete"
|
1904 |
|
1905 |
+
#: modules/strings.php:21
|
1906 |
#, fuzzy
|
1907 |
#| msgid "Attach File"
|
1908 |
msgid "Attached Files"
|
1909 |
msgstr "Adjuntar archivo"
|
1910 |
|
1911 |
+
#: modules/strings.php:22
|
1912 |
#, fuzzy
|
1913 |
#| msgid "Total Views"
|
1914 |
msgid "Total Files"
|
1915 |
msgstr "Vistas totales"
|
1916 |
|
1917 |
+
#: modules/strings.php:23 tpls/wpdm-all-downloads.php:318
|
1918 |
+
#: tpls3/wpdm-all-downloads.php:260
|
1919 |
+
msgid "file(s)"
|
1920 |
+
msgstr "archivo (s)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1921 |
|
1922 |
+
#: modules/strings.php:24
|
1923 |
+
msgid "Buy Now"
|
1924 |
+
msgstr ""
|
1925 |
|
1926 |
+
#: modules/strings.php:25
|
1927 |
+
msgid "Price"
|
1928 |
+
msgstr "Precio"
|
1929 |
|
1930 |
+
#: tpls/already-logged-in.php:15 tpls3/already-logged-in.php:15
|
1931 |
#, fuzzy
|
1932 |
#| msgid "Welcome to %s"
|
1933 |
msgid "Welcome"
|
1934 |
msgstr "Bienvenido a% s"
|
1935 |
|
1936 |
+
#: tpls/already-logged-in.php:17 tpls3/already-logged-in.php:17
|
1937 |
msgid "You are already logged in."
|
1938 |
msgstr "Ya se ha autentificado."
|
1939 |
|
1940 |
+
#: tpls/already-logged-in.php:21 tpls3/already-logged-in.php:21
|
1941 |
#, fuzzy
|
1942 |
#| msgid "Dashboard Page"
|
1943 |
msgid "Dashboard"
|
1944 |
msgstr "Página del tablero"
|
1945 |
|
1946 |
+
#: tpls/asset-manager-ui.php:505 tpls3/asset-manager-ui.php:500
|
1947 |
#, fuzzy
|
1948 |
#| msgid "New File"
|
1949 |
msgid "New Folder"
|
1950 |
msgstr "Archivo nuevo"
|
1951 |
|
1952 |
+
#: tpls/asset-manager-ui.php:507 tpls/asset-manager-ui.php:713
|
1953 |
+
#: tpls3/asset-manager-ui.php:502 tpls3/asset-manager-ui.php:706
|
1954 |
#, fuzzy
|
1955 |
#| msgid "Upload"
|
1956 |
msgid "Upload File"
|
1957 |
msgstr "Subir"
|
1958 |
|
1959 |
+
#: tpls/asset-manager-ui.php:513 tpls3/asset-manager-ui.php:508
|
1960 |
msgid "Digital Asset Manager"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: tpls/asset-manager-ui.php:616 tpls3/asset-manager-ui.php:611
|
1964 |
#, fuzzy
|
1965 |
#| msgid "Dashboard Page"
|
1966 |
msgid "Copy Shortcode"
|
1967 |
msgstr "Página del tablero"
|
1968 |
|
1969 |
+
#: tpls/asset-manager-ui.php:720 tpls3/asset-manager-ui.php:713
|
1970 |
#, fuzzy
|
1971 |
#| msgid "Drop files here"
|
1972 |
msgid "Drop files here"
|
1973 |
msgstr "Soltar archivos aquí"
|
1974 |
|
1975 |
+
#: tpls/asset-manager-ui.php:827 tpls3/asset-manager-ui.php:820
|
1976 |
msgid "Authorized User Groups:"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: tpls/asset-manager-ui.php:849 tpls3/asset-manager-ui.php:842
|
1980 |
#, fuzzy
|
1981 |
#| msgid "Unauthorized Access!"
|
1982 |
msgid "Authorized Users:"
|
1983 |
msgstr "¡Acceso no autorizado!"
|
1984 |
|
1985 |
+
#: tpls/asset-viewer.php:6
|
1986 |
+
#, fuzzy
|
1987 |
+
#| msgid "You don't have permission to download this file"
|
1988 |
+
msgid "You do not have access to this asset"
|
1989 |
+
msgstr "No tienes permiso para descargar este archivo."
|
1990 |
+
|
1991 |
+
#: tpls/lock-options-iframe.php:289 tpls3/lock-options-iframe.php:243
|
1992 |
msgid "Buy"
|
1993 |
msgstr "Comprar"
|
1994 |
|
1995 |
+
#: tpls/lost-password-form.php:17 tpls3/lost-password-form.php:15
|
1996 |
+
#, fuzzy
|
1997 |
+
#| msgid "Forgot Password?"
|
1998 |
+
msgid "Lost Password?"
|
1999 |
+
msgstr "¿Se te olvidó tu contraseña?"
|
2000 |
+
|
2001 |
+
#: tpls/lost-password-form.php:19 tpls3/lost-password-form.php:17
|
2002 |
+
msgid ""
|
2003 |
+
"Please enter your username or email address. You will receive a link to "
|
2004 |
+
"create a new password via email."
|
2005 |
+
msgstr ""
|
2006 |
+
|
2007 |
+
#: tpls/lost-password-form.php:29 tpls3/lost-password-form.php:24
|
2008 |
+
#, fuzzy
|
2009 |
+
#| msgid "Generated Passwords"
|
2010 |
+
msgid "Reset Password"
|
2011 |
+
msgstr "Contraseñas generadas"
|
2012 |
+
|
2013 |
+
#: tpls/lost-password-form.php:35 tpls3/lost-password-form.php:30
|
2014 |
+
#, fuzzy
|
2015 |
+
#| msgid "Register Page"
|
2016 |
+
msgid "Register"
|
2017 |
+
msgstr "Página de registro"
|
2018 |
+
|
2019 |
+
#: tpls/lost-password-form.php:53
|
2020 |
+
msgid "MAO: SENT!"
|
2021 |
+
msgstr ""
|
2022 |
+
|
2023 |
+
#: tpls/lost-password-form.php:53
|
2024 |
+
msgid "Password reset link sent to your email."
|
2025 |
+
msgstr ""
|
2026 |
+
|
2027 |
+
#: tpls/lost-password-form.php:65 tpls/reset-password-form.php:54
|
2028 |
+
#: tpls/reset-password-form.php:73 tpls3/lost-password-form.php:47
|
2029 |
+
#: tpls3/reset-password-form.php:54 tpls3/reset-password-form.php:73
|
2030 |
+
msgid "ERROR!"
|
2031 |
+
msgstr "¡ERROR!"
|
2032 |
+
|
2033 |
+
#: tpls/lost-password-form.php:65 tpls3/lost-password-form.php:47
|
2034 |
+
msgid "Account not found."
|
2035 |
+
msgstr ""
|
2036 |
+
|
2037 |
+
#: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
|
2038 |
+
msgid "MAIL SENT!"
|
2039 |
+
msgstr ""
|
2040 |
+
|
2041 |
+
#: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
|
2042 |
+
msgid "Please check your inbox."
|
2043 |
+
msgstr ""
|
2044 |
+
|
2045 |
+
#: tpls/reset-password-form.php:21 tpls/reset-password-form.php:26
|
2046 |
+
#: tpls3/reset-password-form.php:21 tpls3/reset-password-form.php:26
|
2047 |
+
#, fuzzy
|
2048 |
+
#| msgid "Password"
|
2049 |
+
msgid "New Password"
|
2050 |
+
msgstr "Contraseña"
|
2051 |
+
|
2052 |
+
#: tpls/reset-password-form.php:23 tpls3/reset-password-form.php:23
|
2053 |
+
#, fuzzy
|
2054 |
+
#| msgid "Generated Passwords"
|
2055 |
+
msgid "Please enter a new password"
|
2056 |
+
msgstr "Contraseñas generadas"
|
2057 |
+
|
2058 |
+
#: tpls/reset-password-form.php:34 tpls3/reset-password-form.php:34
|
2059 |
+
#, fuzzy
|
2060 |
+
#| msgid "Enter Password"
|
2061 |
+
msgid "Update Password"
|
2062 |
+
msgstr "Introducir la contraseña"
|
2063 |
+
|
2064 |
+
#: tpls/reset-password-form.php:45 tpls3/reset-password-form.php:45
|
2065 |
+
msgid "Confirm password value must be same as the new password"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: tpls/reset-password-form.php:52 tpls/user-dashboard/edit-profile.php:16
|
2069 |
+
#: tpls3/reset-password-form.php:52 tpls3/user-dashboard/edit-profile.php:16
|
2070 |
+
#: tpls3/wpdm-edit-user-profile.php:16
|
2071 |
+
msgid "DONE!"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: tpls/reset-password-form.php:52 tpls3/reset-password-form.php:52
|
2075 |
+
#, fuzzy
|
2076 |
+
#| msgid "Last Updated"
|
2077 |
+
msgid "Password Updated"
|
2078 |
+
msgstr "Última actualización"
|
2079 |
+
|
2080 |
+
#: tpls/reset-password-form.php:52 tpls3/reset-password-form.php:52
|
2081 |
+
#, fuzzy
|
2082 |
+
#| msgid "Go To Dashboard"
|
2083 |
+
msgid "Go to your account dashboard"
|
2084 |
+
msgstr "Ir al panel de control"
|
2085 |
+
|
2086 |
+
#: tpls/reset-password-form.php:54 tpls3/reset-password-form.php:54
|
2087 |
+
#, fuzzy
|
2088 |
+
#| msgid "Last Updated"
|
2089 |
+
msgid "Password Update Failed"
|
2090 |
+
msgstr "Última actualización"
|
2091 |
+
|
2092 |
+
#: tpls/search-result.php:3 tpls/simple-search-form.php:5
|
2093 |
+
#: tpls3/simple-search-form.php:5
|
2094 |
msgid "Search Package"
|
2095 |
msgstr "Paquete de búsqueda"
|
2096 |
|
2097 |
+
#: tpls/search-result.php:16 tpls/simple-search-form.php:18
|
2098 |
+
#: tpls3/simple-search-form.php:18
|
2099 |
msgid "Search Result For"
|
2100 |
msgstr "Resultado de la búsqueda para"
|
2101 |
|
2102 |
+
#: tpls/search-result.php:17 tpls/search-result.php:21
|
2103 |
#: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
|
2104 |
+
#: tpls3/simple-search-form.php:19 tpls3/simple-search-form.php:23
|
2105 |
msgid "Loading"
|
2106 |
msgstr "Cargando"
|
2107 |
|
2108 |
+
#: tpls/shortcodes/toolbar.php:35 tpls/shortcodes/toolbar.php:69
|
2109 |
+
#: tpls3/shortcodes/toolbar.php:35 tpls3/shortcodes/toolbar.php:69
|
2110 |
+
msgid "Search Keyword..."
|
2111 |
+
msgstr ""
|
2112 |
|
2113 |
+
#: tpls/shortcodes/toolbar.php:39 tpls/shortcodes/toolbar.php:73
|
2114 |
+
#: tpls3/shortcodes/toolbar.php:39 tpls3/shortcodes/toolbar.php:73
|
2115 |
+
#, fuzzy
|
2116 |
+
#| msgid "Order By"
|
2117 |
+
msgid "Order By:"
|
2118 |
+
msgstr "Ordenar por"
|
2119 |
+
|
2120 |
+
#: tpls/shortcodes/toolbar.php:44 tpls/shortcodes/toolbar.php:78
|
2121 |
+
#: tpls3/shortcodes/toolbar.php:44 tpls3/shortcodes/toolbar.php:78
|
2122 |
+
#, fuzzy
|
2123 |
+
#| msgid "views"
|
2124 |
+
msgid "Views"
|
2125 |
+
msgstr "puntos de vista"
|
2126 |
+
|
2127 |
+
#: tpls/shortcodes/toolbar.php:49 tpls/shortcodes/toolbar.php:83
|
2128 |
+
#: tpls3/shortcodes/toolbar.php:49 tpls3/shortcodes/toolbar.php:83
|
2129 |
+
#, fuzzy
|
2130 |
+
#| msgid "Order"
|
2131 |
+
msgid "Order:"
|
2132 |
+
msgstr "Orden"
|
2133 |
+
|
2134 |
+
#: tpls/shortcodes/toolbar.php:50 tpls/shortcodes/toolbar.php:84
|
2135 |
+
#: tpls3/shortcodes/toolbar.php:50 tpls3/shortcodes/toolbar.php:84
|
2136 |
+
msgid "Descending"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: tpls/shortcodes/toolbar.php:51 tpls/shortcodes/toolbar.php:85
|
2140 |
+
#: tpls3/shortcodes/toolbar.php:51 tpls3/shortcodes/toolbar.php:85
|
2141 |
+
msgid "Ascending"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: tpls/shortcodes/toolbar.php:55 tpls/shortcodes/toolbar.php:89
|
2145 |
+
#: tpls3/shortcodes/toolbar.php:55 tpls3/shortcodes/toolbar.php:89
|
2146 |
+
#, fuzzy
|
2147 |
+
#| msgid "All Files"
|
2148 |
+
msgid "Apply Filter"
|
2149 |
+
msgstr "Todos los archivos"
|
2150 |
+
|
2151 |
+
#: tpls/user-dashboard/edit-profile.php:13
|
2152 |
+
#: tpls3/user-dashboard/edit-profile.php:13 tpls3/wpdm-edit-user-profile.php:13
|
2153 |
+
msgid "SAVE FAILED!"
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: tpls/user-dashboard/edit-profile.php:24
|
2157 |
+
#: tpls3/user-dashboard/edit-profile.php:24 tpls3/wpdm-edit-user-profile.php:24
|
2158 |
msgid "Basic Profile"
|
2159 |
msgstr "Perfil basico"
|
2160 |
|
2161 |
+
#: tpls/user-dashboard/edit-profile.php:27
|
2162 |
+
#: tpls3/user-dashboard/edit-profile.php:27 tpls3/wpdm-edit-user-profile.php:27
|
2163 |
msgid "Display name:"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: tpls/user-dashboard/edit-profile.php:28
|
2167 |
+
#: tpls3/user-dashboard/edit-profile.php:28 tpls3/wpdm-edit-user-profile.php:28
|
2168 |
msgid "PayPal Email:"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: tpls/user-dashboard/edit-profile.php:30
|
2172 |
+
#: tpls3/user-dashboard/edit-profile.php:30 tpls3/wpdm-edit-user-profile.php:30
|
2173 |
#, fuzzy
|
2174 |
#| msgid "Username"
|
2175 |
msgid "Username:"
|
2176 |
msgstr "Nombre de usuario"
|
2177 |
|
2178 |
+
#: tpls/user-dashboard/edit-profile.php:31
|
2179 |
+
#: tpls3/user-dashboard/edit-profile.php:31 tpls3/wpdm-edit-user-profile.php:31
|
2180 |
#, fuzzy
|
2181 |
#| msgid "E-mail"
|
2182 |
msgid "Email:"
|
2183 |
msgstr "Email"
|
2184 |
|
2185 |
+
#: tpls/user-dashboard/edit-profile.php:33
|
2186 |
+
#: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
|
2187 |
#, fuzzy
|
2188 |
#| msgid "Password:"
|
2189 |
msgid "New Password:"
|
2190 |
msgstr "Contraseña:"
|
2191 |
|
2192 |
+
#: tpls/user-dashboard/edit-profile.php:33
|
2193 |
+
msgid "Use nothing if you don't want to change old password"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: tpls/user-dashboard/edit-profile.php:34
|
2197 |
+
#: tpls3/user-dashboard/edit-profile.php:34 tpls3/wpdm-edit-user-profile.php:34
|
2198 |
#, fuzzy
|
2199 |
#| msgid "Enter Password"
|
2200 |
msgid "Re-type New Password:"
|
2201 |
msgstr "Introducir la contraseña"
|
2202 |
|
2203 |
+
#: tpls/user-dashboard/profile.php:22 tpls3/user-dashboard/profile.php:7
|
|
|
|
|
|
|
|
|
|
|
|
|
2204 |
msgid "User Level"
|
2205 |
msgstr "Nivel de usuario"
|
2206 |
|
2207 |
+
#: tpls/user-dashboard/profile.php:34 tpls3/user-dashboard/profile.php:19
|
2208 |
+
#: widgets/class.PackageInfo.php:20
|
2209 |
+
msgid "Total Downloads"
|
2210 |
+
msgstr "Descargas totales"
|
2211 |
+
|
2212 |
+
#: tpls/user-dashboard/profile.php:42 tpls3/user-dashboard/profile.php:27
|
2213 |
msgid "Today's Download"
|
2214 |
msgstr "Descarga de hoy"
|
2215 |
|
2216 |
+
#: tpls/user-dashboard/profile.php:53 tpls3/user-dashboard/profile.php:35
|
2217 |
msgid "Recommended Downloads"
|
2218 |
msgstr "Descargas Recomendadas"
|
2219 |
|
2220 |
+
#: tpls/user-dashboard/profile.php:110
|
2221 |
+
msgid "My Favourites"
|
2222 |
+
msgstr ""
|
2223 |
+
|
2224 |
+
#: tpls/user-dashboard/profile.php:116
|
2225 |
+
msgid "Remove"
|
2226 |
+
msgstr ""
|
2227 |
+
|
2228 |
+
#: tpls/user-dashboard/profile.php:141 tpls3/user-dashboard/profile.php:77
|
2229 |
msgid "Last 5 Downloads"
|
2230 |
msgstr "Últimas 5 descargas"
|
2231 |
|
2232 |
+
#: tpls/wpdm-all-downloads.php:38 tpls3/wpdm-all-downloads.php:112
|
2233 |
msgid "Display _MENU_ downloads per page"
|
2234 |
msgstr "Mostrar _MENU_ descargas por página"
|
2235 |
|
2236 |
+
#: tpls/wpdm-all-downloads.php:39 tpls3/wpdm-all-downloads.php:113
|
2237 |
msgid "Nothing _START_ to - sorry"
|
2238 |
msgstr "Nada _START_ para - lo siento"
|
2239 |
|
2240 |
+
#: tpls/wpdm-all-downloads.php:40 tpls3/wpdm-all-downloads.php:114
|
2241 |
msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
|
2242 |
msgstr "Mostrando _START_ a _END_ de _TOTAL_ descargas"
|
2243 |
|
2244 |
+
#: tpls/wpdm-all-downloads.php:41 tpls3/wpdm-all-downloads.php:115
|
2245 |
msgid "No downloads available"
|
2246 |
msgstr "No hay descargas disponibles"
|
2247 |
|
2248 |
+
#: tpls/wpdm-all-downloads.php:42 tpls3/wpdm-all-downloads.php:116
|
2249 |
msgid "(filtered from _MAX_ total downloads)"
|
2250 |
msgstr "(filtrado de _MAX_ descargas totales)"
|
2251 |
|
2252 |
+
#: tpls/wpdm-all-downloads.php:43 tpls3/wpdm-all-downloads.php:117
|
2253 |
msgid "No data available in table"
|
2254 |
msgstr "No hay datos disponibles en la tabla"
|
2255 |
|
2256 |
+
#: tpls/wpdm-all-downloads.php:46 tpls3/wpdm-all-downloads.php:120
|
2257 |
msgid "Loading..."
|
2258 |
msgstr "Cargando..."
|
2259 |
|
2260 |
+
#: tpls/wpdm-all-downloads.php:48 tpls3/wpdm-all-downloads.php:122
|
2261 |
msgid "Search:"
|
2262 |
msgstr "Buscar:"
|
2263 |
|
2264 |
+
#: tpls/wpdm-all-downloads.php:50 tpls3/wpdm-all-downloads.php:124
|
2265 |
msgid "First"
|
2266 |
msgstr "primero"
|
2267 |
|
2268 |
+
#: tpls/wpdm-all-downloads.php:51 tpls3/wpdm-all-downloads.php:125
|
2269 |
msgid "Last"
|
2270 |
msgstr "Último"
|
2271 |
|
2272 |
+
#: tpls/wpdm-all-downloads.php:56 tpls3/wpdm-all-downloads.php:130
|
2273 |
msgid "activate to sort column ascending"
|
2274 |
msgstr "activar para ordenar la columna ascendente"
|
2275 |
|
2276 |
+
#: tpls/wpdm-all-downloads.php:57 tpls3/wpdm-all-downloads.php:131
|
2277 |
msgid "activate to sort column descending"
|
2278 |
msgstr "activar para ordenar la columna descendente"
|
2279 |
|
2280 |
+
#: tpls/wpdm-all-downloads.php:61 tpls3/wpdm-all-downloads.php:135
|
2281 |
msgid "All"
|
2282 |
msgstr "Todos"
|
2283 |
|
2284 |
+
#: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
|
|
|
|
|
|
|
|
|
2285 |
msgid "downloads"
|
2286 |
msgstr "descargas"
|
2287 |
|
2288 |
+
#: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
|
2289 |
msgid "download"
|
2290 |
msgstr "descargar"
|
2291 |
|
2292 |
+
#: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
|
2293 |
msgid "views"
|
2294 |
msgstr "puntos de vista"
|
2295 |
|
2296 |
+
#: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
|
2297 |
msgid "view"
|
2298 |
msgstr "ver"
|
2299 |
|
2300 |
+
#: tpls/wpdm-all-downloads.php:377 tpls3/wpdm-all-downloads.php:312
|
2301 |
msgid "No Packages Found"
|
2302 |
msgstr "No se encontraron paquetes"
|
2303 |
|
2304 |
+
#: tpls/wpdm-asset.php:23 tpls3/wpdm-asset.php:23
|
2305 |
#, fuzzy
|
2306 |
#| msgid "Direct Download"
|
2307 |
msgid "Login to Download"
|
2308 |
msgstr "Descarga directa"
|
2309 |
|
2310 |
+
#: tpls/wpdm-edit-user-profile.php:9
|
2311 |
+
#, fuzzy
|
2312 |
+
#| msgid "View File"
|
2313 |
+
msgid "View Profile"
|
2314 |
+
msgstr "Ver archivo"
|
2315 |
+
|
2316 |
+
#: tpls/wpdm-edit-user-profile.php:10
|
2317 |
+
#, fuzzy
|
2318 |
+
#| msgid "Basic Profile"
|
2319 |
+
msgid "Public Profile Info"
|
2320 |
+
msgstr "Perfil basico"
|
2321 |
+
|
2322 |
+
#: tpls/wpdm-edit-user-profile.php:19
|
2323 |
+
msgid "Short Intro"
|
2324 |
+
msgstr ""
|
2325 |
+
|
2326 |
+
#: tpls/wpdm-edit-user-profile.php:32
|
2327 |
+
#, fuzzy
|
2328 |
+
#| msgid "Image URL"
|
2329 |
+
msgid "Banner URL"
|
2330 |
+
msgstr "URL de la imagen"
|
2331 |
+
|
2332 |
+
#: tpls/wpdm-edit-user-profile.php:41
|
2333 |
+
msgid "Profile Header Text Color"
|
2334 |
+
msgstr ""
|
2335 |
+
|
2336 |
+
#: tpls/wpdm-edit-user-profile.php:55
|
2337 |
+
#, fuzzy
|
2338 |
+
#| msgid "Save Settings"
|
2339 |
+
msgid "Payment Settings"
|
2340 |
+
msgstr "Guardar ajustes"
|
2341 |
+
|
2342 |
+
#: tpls/wpdm-edit-user-profile.php:58
|
2343 |
+
msgid "PayPal Email"
|
2344 |
+
msgstr ""
|
2345 |
+
|
2346 |
+
#: tpls/wpdm-generate-password.php:30 tpls3/wpdm-generate-password.php:17
|
2347 |
msgid "Select Options"
|
2348 |
msgstr "Seleccione opciones"
|
2349 |
|
2350 |
+
#: tpls/wpdm-generate-password.php:34 tpls3/wpdm-generate-password.php:19
|
2351 |
msgid "Number of passwords:"
|
2352 |
msgstr "Número de contraseñas:"
|
2353 |
|
2354 |
+
#: tpls/wpdm-generate-password.php:37 tpls3/wpdm-generate-password.php:23
|
2355 |
msgid "Number of chars for each password:"
|
2356 |
msgstr "Número de caracteres para cada contraseña:"
|
2357 |
|
2358 |
+
#: tpls/wpdm-generate-password.php:42
|
2359 |
+
#, fuzzy
|
2360 |
+
#| msgid "Valid chars:"
|
2361 |
+
msgid "Valid Chars:"
|
2362 |
msgstr "Caracteres válidos:"
|
2363 |
|
2364 |
+
#: tpls/wpdm-generate-password.php:43
|
2365 |
+
msgid "Small Letters"
|
2366 |
+
msgstr ""
|
2367 |
|
2368 |
+
#: tpls/wpdm-generate-password.php:44
|
2369 |
+
msgid "Capital Letters"
|
2370 |
+
msgstr ""
|
2371 |
|
2372 |
+
#: tpls/wpdm-generate-password.php:45
|
2373 |
+
msgid "Numbers"
|
2374 |
+
msgstr ""
|
2375 |
|
2376 |
+
#: tpls/wpdm-generate-password.php:46
|
2377 |
+
msgid "Special Chars"
|
2378 |
+
msgstr ""
|
2379 |
+
|
2380 |
+
#: tpls/wpdm-generate-password.php:55 tpls3/wpdm-generate-password.php:36
|
2381 |
+
msgid "Generated Passwords"
|
2382 |
+
msgstr "Contraseñas generadas"
|
2383 |
+
|
2384 |
+
#: tpls/wpdm-generate-password.php:60
|
2385 |
#, fuzzy
|
2386 |
+
#| msgid "Generated Passwords"
|
2387 |
+
msgid "Insert Password(s)"
|
2388 |
+
msgstr "Contraseñas generadas"
|
2389 |
|
2390 |
+
#: tpls/wpdm-login-form.php:58 tpls/wpdm-login-modal-form.php:65
|
2391 |
+
#: tpls3/wpdm-login-form.php:97 tpls3/wpdm-login-modal-form.php:77
|
2392 |
msgid "Remember Me"
|
2393 |
msgstr "Recuérdame"
|
2394 |
|
2395 |
+
#: tpls/wpdm-login-form.php:59 tpls/wpdm-login-modal-form.php:66
|
2396 |
+
#: tpls3/wpdm-login-form.php:98 tpls3/wpdm-login-modal-form.php:78
|
2397 |
msgid "Forgot Password?"
|
2398 |
msgstr "¿Se te olvidó tu contraseña?"
|
2399 |
|
2400 |
+
#: tpls/wpdm-login-form.php:70 tpls/wpdm-login-modal-form.php:92
|
2401 |
+
#: tpls/wpdm-reg-form.php:59 tpls3/wpdm-login-form.php:105
|
2402 |
+
#: tpls3/wpdm-login-modal-form.php:105 tpls3/wpdm-reg-form.php:62
|
2403 |
+
msgid "Or connect using your social account"
|
2404 |
+
msgstr ""
|
2405 |
|
2406 |
+
#: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
|
2407 |
+
#: tpls3/wpdm-login-form.php:116 tpls3/wpdm-login-modal-form.php:116
|
2408 |
msgid "Don't have an account yet?"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
|
2412 |
+
#: tpls/wpdm-reg-form.php:50 tpls3/wpdm-login-form.php:116
|
2413 |
+
#: tpls3/wpdm-login-modal-form.php:116 tpls3/wpdm-reg-form.php:53
|
2414 |
#, fuzzy
|
2415 |
#| msgid "Register Page"
|
2416 |
msgid "Register Now"
|
2417 |
msgstr "Página de registro"
|
2418 |
|
2419 |
+
#: tpls/wpdm-login-form.php:107 tpls/wpdm-login-modal-form.php:116
|
2420 |
+
#: tpls3/wpdm-login-form.php:136 tpls3/wpdm-login-modal-form.php:128
|
2421 |
msgid "Logging In..."
|
2422 |
msgstr "Iniciar sesión..."
|
2423 |
|
2424 |
+
#: tpls/wpdm-login-form.php:113 tpls/wpdm-login-form.php:130
|
2425 |
+
#: tpls/wpdm-login-modal-form.php:121 tpls3/wpdm-login-form.php:141
|
2426 |
+
#: tpls3/wpdm-login-modal-form.php:133
|
2427 |
msgid "LOGIN FAILED!"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: tpls/wpdm-login-modal-form.php:42 tpls3/wpdm-login-form.php:41
|
2431 |
+
#: tpls3/wpdm-login-modal-form.php:42
|
2432 |
+
msgid "Login Failed!"
|
2433 |
+
msgstr "¡Error de inicio de sesion!"
|
2434 |
+
|
2435 |
+
#: tpls/wpdm-reg-form.php:61 tpls3/wpdm-reg-form.php:64
|
2436 |
+
msgid "Connect using your social account"
|
2437 |
msgstr ""
|
|
|
|
|
2438 |
|
2439 |
+
#: tpls/wpdm-reg-form.php:79 tpls3/wpdm-reg-form.php:82
|
2440 |
+
msgid "Already have an account?"
|
2441 |
+
msgstr ""
|
|
|
|
|
2442 |
|
2443 |
+
#: tpls/wpdm-reg-form.php:97 tpls3/wpdm-reg-form.php:100
|
2444 |
+
msgid "Password did not match with the confirm password"
|
|
|
|
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: tpls/wpdm-reg-form.php:125 tpls3/wpdm-reg-form.php:127
|
2448 |
+
msgid "Signup Error:"
|
2449 |
+
msgstr ""
|
2450 |
+
|
2451 |
+
#: tpls/wpdm-reg-form.php:148 tpls3/wpdm-reg-form.php:145
|
2452 |
+
msgid "Registration is disabled!"
|
2453 |
+
msgstr "¡El registro está inhabilitado!"
|
2454 |
+
|
2455 |
+
#: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
|
2456 |
+
msgid "Use nothing if you don\\'t want to change old password"
|
2457 |
+
msgstr ""
|
2458 |
|
2459 |
+
#: tpls3/user-dashboard/edit-profile.php:40 tpls3/wpdm-edit-user-profile.php:40
|
2460 |
#, fuzzy
|
2461 |
+
#| msgid "Version:"
|
2462 |
+
msgid "Description:"
|
2463 |
+
msgstr "Versión:"
|
2464 |
|
2465 |
+
#: tpls3/wpdm-generate-password.php:27
|
2466 |
+
msgid "Valid chars:"
|
2467 |
+
msgstr "Caracteres válidos:"
|
|
|
2468 |
|
2469 |
+
#: tpls3/wpdm-generate-password.php:40
|
2470 |
+
msgid "Generate"
|
2471 |
+
msgstr "Generar"
|
2472 |
|
2473 |
+
#: widgets/class.Affiliate.php:35
|
2474 |
+
msgid "WPDM Affiliate ID:"
|
2475 |
+
msgstr "ID de afiliado de WPDM:"
|
2476 |
|
2477 |
+
#: widgets/class.CatPackages.php:76 widgets/class.Categories.php:127
|
2478 |
+
#: widgets/class.ListPackages.php:89 widgets/class.NewDownloads.php:51
|
2479 |
+
#: widgets/class.PackageInfo.php:110 widgets/class.Search.php:40
|
2480 |
+
#: widgets/class.Tags.php:72 widgets/class.TopDownloads.php:51
|
2481 |
+
msgid "Title:"
|
2482 |
+
msgstr "Título:"
|
2483 |
|
2484 |
+
#: widgets/class.CatPackages.php:80 widgets/class.ListPackages.php:93
|
2485 |
+
msgid "Select Category:"
|
2486 |
+
msgstr "Selecciona una categoría:"
|
2487 |
+
|
2488 |
+
#: widgets/class.CatPackages.php:86 widgets/class.ListPackages.php:121
|
2489 |
+
#: widgets/class.NewDownloads.php:55 widgets/class.TopDownloads.php:55
|
2490 |
+
msgid "Number of packages to show:"
|
2491 |
+
msgstr "Número de paquetes a mostrar:"
|
2492 |
+
|
2493 |
+
#: widgets/class.Categories.php:131
|
2494 |
#, fuzzy
|
2495 |
+
#| msgid "Parent Category:"
|
2496 |
+
msgid "Parent:"
|
2497 |
+
msgstr "Categoría padre:"
|
2498 |
|
2499 |
+
#: widgets/class.Categories.php:135
|
2500 |
#, fuzzy
|
2501 |
+
#| msgid "Category"
|
2502 |
+
msgid "On Category Page:"
|
2503 |
+
msgstr "Categoría"
|
2504 |
|
2505 |
+
#: widgets/class.Categories.php:137
|
2506 |
+
msgid "Show all"
|
2507 |
+
msgstr ""
|
2508 |
|
2509 |
+
#: widgets/class.Categories.php:138
|
2510 |
#, fuzzy
|
2511 |
+
#| msgid "Sub-Categories"
|
2512 |
+
msgid "Show subcategories only"
|
2513 |
+
msgstr "Subcategorias"
|
2514 |
|
2515 |
+
#: widgets/class.Categories.php:142
|
2516 |
+
#, fuzzy
|
2517 |
+
#| msgid "Style"
|
2518 |
+
msgid "Style:"
|
2519 |
+
msgstr "Estilo"
|
2520 |
+
|
2521 |
+
#: widgets/class.Categories.php:149
|
2522 |
+
msgid "Top Level Only"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: widgets/class.Categories.php:152
|
2526 |
+
msgid "Hide widget when no category"
|
2527 |
+
msgstr ""
|
|
|
|
|
2528 |
|
2529 |
+
#: widgets/class.ListPackages.php:100
|
2530 |
#, fuzzy
|
2531 |
+
#| msgid "File Download"
|
2532 |
+
msgid "On Single Download Page"
|
2533 |
+
msgstr "Descarga de archivos"
|
2534 |
|
2535 |
+
#: widgets/class.ListPackages.php:101
|
2536 |
+
msgid "Show packages from current package category"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: widgets/class.PackageInfo.php:21
|
2540 |
+
msgid "Total Views"
|
2541 |
+
msgstr "Vistas totales"
|
2542 |
+
|
2543 |
+
#: widgets/class.PackageInfo.php:24
|
2544 |
+
msgid "Size"
|
2545 |
+
msgstr "Tamaño"
|
2546 |
+
|
2547 |
+
#: widgets/class.PackageInfo.php:114
|
2548 |
+
msgid "Fields to Show:"
|
2549 |
+
msgstr "Campos para mostrar:"
|
2550 |
+
|
2551 |
+
#: widgets/class.PackageInfo.php:118
|
2552 |
+
msgid "View Count"
|
2553 |
+
msgstr "Conteo de visitas"
|
2554 |
+
|
2555 |
+
#: widgets/class.PackageInfo.php:122
|
2556 |
#, fuzzy
|
2557 |
+
#| msgid "Package Name"
|
2558 |
+
msgid "Package Size"
|
2559 |
+
msgstr "Nombre del paquete"
|
2560 |
|
2561 |
+
#: widgets/class.PackageInfo.php:123
|
2562 |
+
msgid "Download Link"
|
2563 |
+
msgstr "Enlace de descarga"
|
2564 |
+
|
2565 |
+
#: widgets/class.PackageInfo.php:124
|
2566 |
#, fuzzy
|
2567 |
+
#| msgid "Download Count"
|
2568 |
+
msgid "Embed Download Options"
|
2569 |
+
msgstr "Descargar Conde"
|
2570 |
|
2571 |
+
#: widgets/class.PackageInfo.php:125
|
2572 |
+
msgid "Style"
|
2573 |
+
msgstr "Estilo"
|
2574 |
|
2575 |
+
#: widgets/class.PackageInfo.php:125
|
2576 |
+
msgid "Tabular View"
|
2577 |
+
msgstr "Vista tabular"
|
2578 |
|
2579 |
+
#: widgets/class.PackageInfo.php:126
|
2580 |
+
msgid "Show QR Code"
|
2581 |
+
msgstr ""
|
2582 |
|
2583 |
+
#: widgets/class.Search.php:20
|
2584 |
+
#, fuzzy
|
2585 |
+
#| msgid "Search"
|
2586 |
+
msgid "Search..."
|
2587 |
+
msgstr "Buscar"
|
2588 |
|
2589 |
+
#: widgets/class.Search.php:24
|
2590 |
+
msgid ""
|
2591 |
+
"Search result page was configured properly. Please create a page with "
|
2592 |
+
"shortcode [wpdm_search_result] and select thee page from widget settings"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: widgets/class.Search.php:44
|
2596 |
+
#, fuzzy
|
2597 |
+
#| msgid "Search Result For"
|
2598 |
+
msgid "Search Result Page"
|
2599 |
+
msgstr "Resultado de la búsqueda para"
|
2600 |
|
2601 |
+
#: widgets/class.Search.php:47
|
2602 |
+
msgid ""
|
2603 |
+
"Note: Create a page with short-code <code>[wpdm_search_result]</code> and "
|
2604 |
+
"select that page as search redult page"
|
2605 |
+
msgstr ""
|
2606 |
+
|
2607 |
+
#: widgets/class.Tags.php:76
|
2608 |
+
#, fuzzy
|
2609 |
+
#| msgid "Title:"
|
2610 |
+
msgid "Sub Title:"
|
2611 |
+
msgstr "Título:"
|
2612 |
|
2613 |
+
#: widgets/class.Tags.php:80
|
2614 |
+
#, fuzzy
|
2615 |
+
#| msgid "Number of packages to show:"
|
2616 |
+
msgid "Number of tags to show:"
|
2617 |
+
msgstr "Número de paquetes a mostrar:"
|
2618 |
+
|
2619 |
+
#: wpdm-core.php:110
|
2620 |
msgid "Select category"
|
2621 |
msgstr "Selecciona una categoría"
|
2622 |
|
2623 |
+
#: wpdm-core.php:194
|
|
|
|
|
|
|
|
|
2624 |
msgid ": Update Available"
|
2625 |
msgstr ": Actualización disponible"
|
2626 |
|
2627 |
+
#: wpdm-functions.php:136
|
2628 |
msgid "Permission Denied"
|
2629 |
msgstr "Permiso denegado"
|
2630 |
|
2631 |
+
#: wpdm-functions.php:272
|
2632 |
msgid "Captcha Verification Failed!"
|
2633 |
msgstr "Captcha Verification Failed!"
|
2634 |
|
2635 |
+
#: wpdm-functions.php:311 wpdm-functions.php:315
|
2636 |
msgid "Wrong Password! Try Again."
|
2637 |
msgstr "¡Contraseña incorrecta! Inténtalo de nuevo."
|
2638 |
|
2639 |
+
#: wpdm-functions.php:328
|
2640 |
msgid "Password usages limit exceeded"
|
2641 |
msgstr "Límite de uso de contraseña excedido"
|
2642 |
|
2643 |
+
#: wpdm-functions.php:1425
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2644 |
#, fuzzy
|
2645 |
#| msgid "Select category"
|
2646 |
msgid "Select Image"
|
2647 |
msgstr "Selecciona una categoría"
|
2648 |
|
2649 |
+
#: wpdm-functions.php:1456 wpdm-functions.php:1560
|
2650 |
msgid "SELECT IMAGE"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: wpdm-functions.php:1541
|
2654 |
#, fuzzy
|
2655 |
#| msgid "Upload"
|
2656 |
msgid "Uploading"
|
2664 |
msgid "Package is not available!"
|
2665 |
msgstr "¡El paquete no está disponible!"
|
2666 |
|
2667 |
+
#: wpdm-start-download.php:49
|
2668 |
msgid "Sorry! Download is not available yet."
|
2669 |
msgstr "¡Lo siento! La descarga no está disponible todavía."
|
2670 |
|
2671 |
+
#: wpdm-start-download.php:66
|
2672 |
msgid "Please activate \"zlib\" in your server"
|
2673 |
msgstr "Por favor active \"zlib\" en su servidor"
|
2674 |
|
2675 |
+
#: wpdm-start-download.php:102
|
2676 |
msgid "No file found!"
|
2677 |
msgstr "¡Archivo no encontrado!"
|
2678 |
|
2679 |
+
#~ msgid "Upload"
|
2680 |
+
#~ msgstr "Subir"
|
2681 |
+
|
2682 |
+
#~ msgid "URL"
|
2683 |
+
#~ msgstr "URL"
|
2684 |
+
|
2685 |
+
#, fuzzy
|
2686 |
+
#~| msgid "Password:"
|
2687 |
+
#~ msgid "Password: "
|
2688 |
+
#~ msgstr "Contraseña:"
|
2689 |
+
|
2690 |
+
#~ msgid "Operation Failed!"
|
2691 |
+
#~ msgstr "¡Operación fallida!"
|
2692 |
+
|
2693 |
+
#~ msgid "Warning!"
|
2694 |
+
#~ msgstr "¡Advertencia!"
|
2695 |
+
|
2696 |
+
#~ msgid "Attention!"
|
2697 |
+
#~ msgstr "¡Atención!"
|
2698 |
+
|
2699 |
+
#~ msgid "Awesome!"
|
2700 |
+
#~ msgstr "¡Increíble!"
|
2701 |
+
|
2702 |
+
#~ msgid "I Agree"
|
2703 |
+
#~ msgstr "Estoy de acuerdo"
|
2704 |
+
|
2705 |
+
#, fuzzy
|
2706 |
+
#~| msgid "Login failed! Please re-check login info."
|
2707 |
+
#~ msgid "Please re-check login info."
|
2708 |
+
#~ msgstr ""
|
2709 |
+
#~ "¡Error de inicio de sesion! Por favor, vuelva a comprobar la información "
|
2710 |
+
#~ "de inicio de sesión."
|
2711 |
+
|
2712 |
+
#~ msgid "E-mail"
|
2713 |
+
#~ msgstr "Email"
|
2714 |
+
|
2715 |
+
#~ msgid "Not Matched!"
|
2716 |
+
#~ msgstr "¡No coinciden!"
|
2717 |
+
|
2718 |
+
#~ msgid "Join Now!"
|
2719 |
+
#~ msgstr "¡Únete ahora!"
|
2720 |
+
|
2721 |
#, fuzzy
|
2722 |
#~| msgid "Request Reset"
|
2723 |
#~ msgid "Request New"
|
2733 |
#~| msgid "Logging In..."
|
2734 |
#~ msgid "Log In"
|
2735 |
#~ msgstr "Iniciar sesión..."
|
|
|
|
|
|
|
|
|
|
|
|
languages/download-manager-fr_FR.mo
CHANGED
Binary file
|
languages/download-manager-fr_FR.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WordPress Download Manager - Development "
|
6 |
"(trunk)\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: fr\n"
|
@@ -13,17 +13,17 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
16 |
-
"X-Generator: Poedit 2.
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: admin/class.WordPressDownloadManagerAdmin.php:
|
22 |
#: admin/tpls/metaboxes/package-settings.php:6
|
23 |
msgid "Package Settings"
|
24 |
msgstr "Réglages du paquet"
|
25 |
|
26 |
-
#: admin/class.WordPressDownloadManagerAdmin.php:
|
27 |
msgid "Attach File"
|
28 |
msgstr "Joindre un fichier"
|
29 |
|
@@ -35,39 +35,95 @@ msgstr "Modules ‹ Download Manager"
|
|
35 |
msgid "Add-Ons"
|
36 |
msgstr "Modules"
|
37 |
|
38 |
-
#: admin/menus/class.Categories.php:
|
39 |
msgid "Category Image:"
|
40 |
msgstr "Image de catégorie :"
|
41 |
|
42 |
-
#: admin/menus/class.Categories.php:
|
43 |
msgid "Image URL"
|
44 |
msgstr "URL de l’image"
|
45 |
|
46 |
-
#: admin/menus/class.Categories.php:
|
47 |
msgid "Select Category Image"
|
48 |
msgstr "Sélectionner une image de catégorie"
|
49 |
|
50 |
-
#: admin/menus/class.Categories.php:
|
51 |
-
|
52 |
-
|
|
|
53 |
|
54 |
-
#: admin/menus/class.Categories.php:
|
55 |
msgid "Access:"
|
56 |
msgstr "Accès :"
|
57 |
|
58 |
-
#: admin/menus/class.Categories.php:
|
59 |
msgid ""
|
60 |
"Select the roles who should have access to the packages under this category"
|
61 |
msgstr ""
|
62 |
"Sélectionnez les rôles qui devraient avoir accès aux paquets de cette "
|
63 |
"catégorie"
|
64 |
|
65 |
-
#: admin/menus/class.Categories.php:
|
66 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
67 |
msgid "All Visitors"
|
68 |
msgstr "Tou·te·s les internautes"
|
69 |
|
70 |
-
#: admin/menus/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid "Direct Download"
|
72 |
msgstr "Télécharger"
|
73 |
|
@@ -79,13 +135,13 @@ msgstr "Réglages ‹ Download Manager"
|
|
79 |
msgid "Settings"
|
80 |
msgstr "Réglages"
|
81 |
|
82 |
-
#: admin/menus/class.Settings.php:
|
83 |
-
#: admin/menus/class.Settings.php:
|
84 |
-
#: admin/menus/class.Settings.php:
|
85 |
msgid "Security token is expired! Refresh the page and try again."
|
86 |
msgstr "Le jeton de sécurité a expiré ! Rafraîchissez la page et réessayez."
|
87 |
|
88 |
-
#: admin/menus/class.Settings.php:
|
89 |
msgid "Privacy Settings Saved Successfully"
|
90 |
msgstr "Les réglages de confidentialité ont bien été sauvegardés"
|
91 |
|
@@ -106,7 +162,7 @@ msgstr "Modèles ‹ Download Manager"
|
|
106 |
msgid "Templates"
|
107 |
msgstr "Modèles"
|
108 |
|
109 |
-
#: admin/menus/class.Templates.php:
|
110 |
msgid ""
|
111 |
"No package found! Please create at least 1 package to see template preview"
|
112 |
msgstr ""
|
@@ -121,6 +177,31 @@ msgstr "Modules WPDM"
|
|
121 |
msgid "Failed to connect with server!"
|
122 |
msgstr "Échec de connexion au serveur !"
|
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
#: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
|
125 |
msgid "Link Templates"
|
126 |
msgstr "Modèles de lien"
|
@@ -172,12 +253,6 @@ msgstr "Nom de l’expéditeur"
|
|
172 |
msgid "From Email"
|
173 |
msgstr "E-mail de l’expéditeur"
|
174 |
|
175 |
-
#: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:184
|
176 |
-
#: admin/tpls/templates.php:342 tpls/user-dashboard/edit-profile.php:51
|
177 |
-
#: tpls/wpdm-edit-user-profile.php:51
|
178 |
-
msgid "Save Changes"
|
179 |
-
msgstr "Enregistrer les modifications"
|
180 |
-
|
181 |
#: admin/tpls/email-template-editor.php:119
|
182 |
msgid "Template Variables"
|
183 |
msgstr "Variables de modèle"
|
@@ -204,55 +279,45 @@ msgstr "Exporter les e-mails uniques"
|
|
204 |
msgid "Emails"
|
205 |
msgstr "E-mails"
|
206 |
|
207 |
-
#: admin/tpls/emails-template.php:23 admin/tpls/templates.php:
|
208 |
msgid "Email Template"
|
209 |
msgstr "Modèle d’e-mail"
|
210 |
|
211 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
212 |
msgid "attached file is missing/deleted"
|
213 |
msgstr "fichier joint manquant/supprimé"
|
214 |
|
215 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
216 |
msgid "No file uploaded yet!"
|
217 |
msgstr "Aucun fichier mis en ligne pour le moment !"
|
218 |
|
219 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
220 |
-
msgid "Upload"
|
221 |
-
msgstr "Mettre en ligne"
|
222 |
-
|
223 |
-
#: admin/tpls/metaboxes/attach-file.php:38 libs/class.FileList.php:305
|
224 |
-
msgid "Browse"
|
225 |
-
msgstr "Parcourir"
|
226 |
-
|
227 |
-
#: admin/tpls/metaboxes/attach-file.php:40
|
228 |
-
msgid "URL"
|
229 |
-
msgstr "URL"
|
230 |
-
|
231 |
-
#: admin/tpls/metaboxes/attach-file.php:47
|
232 |
msgid "Drop file here"
|
233 |
msgstr "Déposez le fichier ici"
|
234 |
|
235 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
|
|
236 |
msgid "Allowed Files"
|
237 |
msgstr "Fichiers autorisés"
|
238 |
|
239 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
240 |
msgid "Invalid File Type!"
|
241 |
msgstr "Type de fichier invalide !"
|
242 |
|
243 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
244 |
msgid "Unauthorized Access!"
|
245 |
msgstr "Accès non autorisé !"
|
246 |
|
247 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
|
|
248 |
msgid "Delete Current File"
|
249 |
msgstr "Supprime le fichier actuel"
|
250 |
|
251 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
252 |
msgid "Are you sure?"
|
253 |
msgstr "Confirmez-vous ?"
|
254 |
|
255 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
256 |
msgid ""
|
257 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
258 |
"circle\"></i> Removed!</div></div>"
|
@@ -260,7 +325,19 @@ msgstr ""
|
|
260 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
261 |
"circle\"></i> Retiré !</div></div>"
|
262 |
|
263 |
-
#: admin/tpls/metaboxes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
msgid "Icon URL"
|
265 |
msgstr "URL de l’icône"
|
266 |
|
@@ -276,26 +353,36 @@ msgid "Must Agree with Terms"
|
|
276 |
msgstr "Doit accepter les conditions d’utilisation"
|
277 |
|
278 |
#: admin/tpls/metaboxes/lock-options.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
msgid "Terms Title:"
|
280 |
msgstr "Titre des conditions :"
|
281 |
|
282 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
283 |
msgid "Terms and Conditions:"
|
284 |
msgstr "Conditions d‘utilisation :"
|
285 |
|
286 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
287 |
msgid "Terms Checkbox Label:"
|
288 |
msgstr "Libellé de la case à cocher confirmant l’acceptation des conditions :"
|
289 |
|
290 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
291 |
msgid "Enable Password Lock"
|
292 |
msgstr "Activer la protection par mot de passe"
|
293 |
|
294 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
295 |
msgid "Password:"
|
296 |
msgstr "Mot de passe :"
|
297 |
|
298 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
299 |
msgid ""
|
300 |
"If you want to use multiple passwords, keep each one inside [], like [123]"
|
301 |
"[456][789]"
|
@@ -303,15 +390,15 @@ msgstr ""
|
|
303 |
"Si vous souhaitez utiliser plusieurs mots de passe, saisissez chacun d’entre "
|
304 |
"eux entre crochets. Comme ceci : [123][456][789]."
|
305 |
|
306 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
307 |
msgid "Enable Captcha Lock"
|
308 |
msgstr "Activer la protection par CAPTCHA"
|
309 |
|
310 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
311 |
msgid "Please configure reCAPTCHA"
|
312 |
msgstr "Veuillez configurer reCAPTCHA"
|
313 |
|
314 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
315 |
msgid "Users will be asked for reCAPTCHA verification before download."
|
316 |
msgstr "Les utilisateurs devront valider le reCAPTCHA avant de télécharger."
|
317 |
|
@@ -327,47 +414,74 @@ msgstr "Icônes"
|
|
327 |
msgid "Version:"
|
328 |
msgstr "Version :"
|
329 |
|
330 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
331 |
msgid "Link Label:"
|
332 |
msgstr "Libellé du lien :"
|
333 |
|
334 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
msgid "File Size:"
|
336 |
msgstr "Taille du fichier :"
|
337 |
|
338 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
339 |
msgid "Stock Limit:"
|
340 |
msgstr "Nombre limite de téléchargement :"
|
341 |
|
342 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
|
|
|
|
|
|
343 |
msgid "View Count:"
|
344 |
msgstr "Nombre de vues :"
|
345 |
|
346 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
347 |
msgid "Download Count:"
|
348 |
msgstr "Nombre de téléchargements :"
|
349 |
|
350 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
351 |
msgid "Allow Access:"
|
352 |
msgstr "Autoriser l’accès :"
|
353 |
|
354 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
355 |
msgid "Who should be able to download?"
|
356 |
msgstr "Qui devrait pouvoir télécharger ?"
|
357 |
|
358 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
359 |
msgid "Page Template:"
|
360 |
msgstr "Modèle de page :"
|
361 |
|
362 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
363 |
msgid "Master Key"
|
364 |
msgstr "Clé passe-partout"
|
365 |
|
366 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
367 |
msgid "Regenerate Master Key for Download"
|
368 |
msgstr "Générer une nouvelle clé passe-partout pour le téléchargement"
|
369 |
|
370 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
371 |
msgid "This key can be used for direct download"
|
372 |
msgstr "Cette clé peut être utilisée pour un téléchargement direct"
|
373 |
|
@@ -383,8 +497,9 @@ msgstr "Réglages de Download Manager"
|
|
383 |
msgid "Check For Updates"
|
384 |
msgstr "Vérifier les mises à jour"
|
385 |
|
386 |
-
#: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:
|
387 |
-
#: tpls/wpdm-dashboard.php:
|
|
|
388 |
msgid "Logout"
|
389 |
msgstr "Se déconnecter"
|
390 |
|
@@ -410,63 +525,47 @@ msgid "Free Add-ons"
|
|
410 |
msgstr "Modules gratuits"
|
411 |
|
412 |
#: admin/tpls/settings/addon-update.php:58
|
413 |
-
#: admin/tpls/settings/addon-update.php:
|
414 |
msgid "Product Name"
|
415 |
msgstr "Nom du produit"
|
416 |
|
417 |
#: admin/tpls/settings/addon-update.php:59
|
418 |
-
#: admin/tpls/settings/addon-update.php:
|
419 |
msgid "Active(v)"
|
420 |
msgstr "Version active"
|
421 |
|
422 |
#: admin/tpls/settings/addon-update.php:60
|
423 |
-
#: admin/tpls/settings/addon-update.php:
|
424 |
msgid "Latest(v)"
|
425 |
msgstr "Dernière version"
|
426 |
|
427 |
-
#: admin/tpls/settings/addon-update.php:
|
428 |
-
#: admin/tpls/settings/addon-update.php:
|
429 |
-
#: admin/tpls/settings/user-interface.php:109
|
430 |
-
#: admin/tpls/settings/user-interface.php:139 libs/class.FileList.php:96
|
431 |
-
#: libs/class.FileList.php:98 libs/class.FileList.php:134
|
432 |
-
#: libs/class.FileList.php:136 libs/class.FileList.php:201
|
433 |
-
#: libs/class.FileList.php:248 libs/class.FileList.php:303
|
434 |
-
#: libs/class.Package.php:74 libs/class.Package.php:152
|
435 |
-
#: libs/class.Package.php:646 libs/class.Package.php:671
|
436 |
-
#: libs/class.Package.php:738 libs/class.Package.php:821
|
437 |
-
#: libs/class.Package.php:847 libs/class.Package.php:874
|
438 |
-
#: libs/class.Package.php:1244 libs/class.PackageLocks.php:59
|
439 |
-
#: libs/class.PackageLocks.php:96 tpls/lock-options-iframe.php:243
|
440 |
-
#: tpls/wpdm-all-downloads.php:158 wpdm-functions.php:103
|
441 |
-
#: wpdm-functions.php:128 wpdm-functions.php:194
|
442 |
-
msgid "Download"
|
443 |
-
msgstr "Télécharger"
|
444 |
-
|
445 |
-
#: admin/tpls/settings/addon-update.php:85
|
446 |
-
#: admin/tpls/settings/addon-update.php:126
|
447 |
msgid "Install"
|
448 |
msgstr "Installer"
|
449 |
|
450 |
-
#: admin/tpls/settings/addon-update.php:
|
451 |
-
#: admin/tpls/settings/addon-update.php:
|
452 |
msgid "Update"
|
453 |
msgstr "Mettre à jour"
|
454 |
|
455 |
-
#: admin/tpls/settings/addon-update.php:
|
456 |
-
#: admin/tpls/settings/addon-update.php:
|
457 |
msgid "Updated"
|
458 |
msgstr "Mis à jour"
|
459 |
|
460 |
-
#: admin/tpls/settings/addon-update.php:
|
461 |
msgid "Expired"
|
462 |
msgstr "Expiré"
|
463 |
|
464 |
-
#: admin/tpls/settings/addon-update.php:
|
465 |
-
#: tpls/
|
|
|
|
|
466 |
msgid "Please Wait..."
|
467 |
msgstr "Veuillez patienter…"
|
468 |
|
469 |
-
#: admin/tpls/settings/addon-update.php:
|
470 |
msgid "Success!"
|
471 |
msgstr "Réussi !"
|
472 |
|
@@ -498,19 +597,19 @@ msgstr "Restaurer la valeur par défaut"
|
|
498 |
msgid "File Browser Access:"
|
499 |
msgstr "Accès au navigateur de fichiers :"
|
500 |
|
501 |
-
#: admin/tpls/settings/basic.php:
|
502 |
msgid "Who will have access to server file browser"
|
503 |
msgstr "Qui aura accès au navigateur de fichiers serveur ?"
|
504 |
|
505 |
-
#: admin/tpls/settings/basic.php:
|
506 |
msgid "Upload Settings"
|
507 |
msgstr "Réglages pour la mise en ligne"
|
508 |
|
509 |
-
#: admin/tpls/settings/basic.php:
|
510 |
msgid "Sanitize Filename"
|
511 |
msgstr "Nettoyer le nom des fichiers"
|
512 |
|
513 |
-
#: admin/tpls/settings/basic.php:
|
514 |
msgid ""
|
515 |
"Check the option if you want to sanitize uploaded file names to remove "
|
516 |
"illegal chars"
|
@@ -518,11 +617,11 @@ msgstr ""
|
|
518 |
"Cochez la case si vous souhaitez nettoyer les noms des fichiers téléchargés "
|
519 |
"afin de supprimer les caractères non autorisés."
|
520 |
|
521 |
-
#: admin/tpls/settings/basic.php:
|
522 |
msgid "Chunk Upload"
|
523 |
msgstr "Téléversement par fragments"
|
524 |
|
525 |
-
#: admin/tpls/settings/basic.php:
|
526 |
msgid ""
|
527 |
"Check the option if you want to enable chunk upload to override http upload "
|
528 |
"limits"
|
@@ -530,27 +629,27 @@ msgstr ""
|
|
530 |
"Cocher l’option si vous souhaitez activer le téléversement par fragments "
|
531 |
"afin d’outrepasser les limites de téléversement HTTP"
|
532 |
|
533 |
-
#: admin/tpls/settings/basic.php:
|
534 |
msgid "Chunk Size"
|
535 |
msgstr "Taille des fragments"
|
536 |
|
537 |
-
#: admin/tpls/settings/basic.php:
|
538 |
msgid "File Download"
|
539 |
msgstr "Téléchargement de fichiers"
|
540 |
|
541 |
-
#: admin/tpls/settings/basic.php:
|
542 |
msgid "Download Speed:"
|
543 |
msgstr "Vitesse de téléchargement :"
|
544 |
|
545 |
-
#: admin/tpls/settings/basic.php:
|
546 |
msgid "Blocked IPs"
|
547 |
msgstr "Adresses IP bloquées"
|
548 |
|
549 |
-
#: admin/tpls/settings/basic.php:
|
550 |
msgid "One IP per line"
|
551 |
msgstr "Une adresse IP par ligne"
|
552 |
|
553 |
-
#: admin/tpls/settings/basic.php:
|
554 |
msgid ""
|
555 |
"List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 "
|
556 |
"or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
|
@@ -560,15 +659,15 @@ msgstr ""
|
|
560 |
"192.168.23.12 ou 192.168.23.1/24 ou 192.168.23.*, IPv6 - 2a01:8760:2:3001::1 "
|
561 |
"ou 2620:112:3000::/44)"
|
562 |
|
563 |
-
#: admin/tpls/settings/basic.php:
|
564 |
msgid "Write a Message for Blocked IPs"
|
565 |
msgstr "Écrivez un message pour les adresses IP bloquées"
|
566 |
|
567 |
-
#: admin/tpls/settings/basic.php:
|
568 |
msgid "Message for Blocked IPs"
|
569 |
msgstr "Message pour les adresses IP bloquées"
|
570 |
|
571 |
-
#: admin/tpls/settings/basic.php:
|
572 |
msgid ""
|
573 |
"If you get broken download, then try enabling/disabling following options, "
|
574 |
"as sometimes server may not support output buffering or partial downloads"
|
@@ -577,27 +676,27 @@ msgstr ""
|
|
577 |
"suivantes, car parfois le serveur ne supporte pas la temporisation de sortie "
|
578 |
"(output buffering) ou les téléchargements partiels"
|
579 |
|
580 |
-
#: admin/tpls/settings/basic.php:
|
581 |
msgid "Resumable Downloads"
|
582 |
msgstr "Reprise des téléchargements"
|
583 |
|
584 |
-
#: admin/tpls/settings/basic.php:
|
585 |
msgid "Enabled"
|
586 |
msgstr "Activé"
|
587 |
|
588 |
-
#: admin/tpls/settings/basic.php:
|
589 |
msgid "Disabled"
|
590 |
msgstr "Désactivé"
|
591 |
|
592 |
-
#: admin/tpls/settings/basic.php:
|
593 |
msgid "Output Buffering"
|
594 |
msgstr "Temporisation de sortie (output buffering)"
|
595 |
|
596 |
-
#: admin/tpls/settings/basic.php:
|
597 |
msgid "Open in Browser"
|
598 |
msgstr "Ouvrir dans le navigateur"
|
599 |
|
600 |
-
#: admin/tpls/settings/basic.php:
|
601 |
msgid ""
|
602 |
"Try to Open in Browser instead of download when someone clicks on download "
|
603 |
"link"
|
@@ -606,14 +705,33 @@ msgstr ""
|
|
606 |
"visiteur clique sur le lien de téléchargement"
|
607 |
|
608 |
#: admin/tpls/settings/basic.php:178
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
609 |
msgid "reCAPTCHA Lock Settings"
|
610 |
msgstr "Réglages de la protection par reCAPTCHA"
|
611 |
|
612 |
-
#: admin/tpls/settings/basic.php:
|
613 |
msgid "reCAPTCHA Site Key"
|
614 |
msgstr "Clé du site reCAPTCHA"
|
615 |
|
616 |
-
#: admin/tpls/settings/basic.php:
|
617 |
msgid ""
|
618 |
"Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
|
619 |
"www.google.com/recaptcha/admin#list\">here</a>"
|
@@ -621,42 +739,69 @@ msgstr ""
|
|
621 |
"Enregistrer un nouveau site pour reCAPTCHA <a target=\"_blank\" href="
|
622 |
"\"https://www.google.com/recaptcha/admin#list\">ici</a>"
|
623 |
|
624 |
-
#: admin/tpls/settings/basic.php:
|
625 |
msgid "reCAPTCHA Secret Key"
|
626 |
msgstr "Clé secrète reCAPTCHA"
|
627 |
|
628 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
629 |
msgid "Misc Settings"
|
630 |
msgstr "Réglages divers"
|
631 |
|
632 |
-
#: admin/tpls/settings/basic.php:
|
633 |
msgid "Login Page"
|
634 |
msgstr "Page de connexion"
|
635 |
|
636 |
-
#: admin/tpls/settings/basic.php:
|
637 |
-
#: admin/tpls/settings/basic.php:
|
638 |
msgid "None Selected"
|
639 |
msgstr "Aucune sélection"
|
640 |
|
641 |
-
#: admin/tpls/settings/basic.php:
|
642 |
-
#: admin/tpls/settings/basic.php:
|
643 |
#, php-format
|
644 |
msgid "The page where you used short-code %s"
|
645 |
msgstr "La page où vous avez utilisé le code court %s"
|
646 |
|
647 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
648 |
msgid "Register Page"
|
649 |
msgstr "Page d’inscription"
|
650 |
|
651 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
msgid "Dashboard Page"
|
653 |
msgstr "Page du tableau de bord"
|
654 |
|
655 |
-
#: admin/tpls/settings/basic.php:
|
656 |
msgid "Include Packages in Main RSS Feed"
|
657 |
msgstr "Inclure wpdm à votre flux RSS principal"
|
658 |
|
659 |
-
#: admin/tpls/settings/basic.php:
|
660 |
#, php-format
|
661 |
msgid ""
|
662 |
"Check this option if you want to show wpdm packages in your main <a target="
|
@@ -706,76 +851,92 @@ msgid "Delete All Stats Data"
|
|
706 |
msgstr "Supprimer toutes les données statistiques"
|
707 |
|
708 |
#: admin/tpls/settings/user-interface.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
709 |
msgid "Disable Style & Script"
|
710 |
msgstr "Désactiver les styles et les scripts"
|
711 |
|
712 |
-
#: admin/tpls/settings/user-interface.php:
|
713 |
msgid "Bootstrap JS"
|
714 |
msgstr "JS Bootstrap"
|
715 |
|
716 |
-
#: admin/tpls/settings/user-interface.php:
|
717 |
msgid "Bootstrap CSS"
|
718 |
msgstr "CSS Bootstrap"
|
719 |
|
720 |
-
#: admin/tpls/settings/user-interface.php:
|
721 |
msgid "Font Awesome"
|
722 |
msgstr "Font Awesome"
|
723 |
|
724 |
-
#: admin/tpls/settings/user-interface.php:
|
725 |
msgid "Front CSS"
|
726 |
msgstr "CSS sur l’interface publique"
|
727 |
|
728 |
-
#: admin/tpls/settings/user-interface.php:
|
729 |
msgid "Google Font"
|
730 |
msgstr "Google Font"
|
731 |
|
732 |
-
#: admin/tpls/settings/user-interface.php:
|
733 |
msgid ""
|
734 |
"Because, sometimes your theme may have those scripts/styles enqueued already"
|
735 |
msgstr "Parce que parfois, votre thème a déjà ajouté ces scripts/styles."
|
736 |
|
737 |
-
#: admin/tpls/settings/user-interface.php:
|
738 |
msgid "Colors"
|
739 |
msgstr "Couleurs"
|
740 |
|
741 |
-
#: admin/tpls/settings/user-interface.php:
|
742 |
msgid "Primary:"
|
743 |
msgstr "Primaire :"
|
744 |
|
745 |
-
#: admin/tpls/settings/user-interface.php:
|
746 |
msgid "Secondary:"
|
747 |
msgstr "Secondaire :"
|
748 |
|
749 |
-
#: admin/tpls/settings/user-interface.php:
|
750 |
msgid "Info:"
|
751 |
msgstr "Info :"
|
752 |
|
753 |
-
#: admin/tpls/settings/user-interface.php:
|
754 |
msgid "Success:"
|
755 |
msgstr "Succès :"
|
756 |
|
757 |
-
#: admin/tpls/settings/user-interface.php:
|
758 |
msgid "Warning:"
|
759 |
msgstr "Avertissement :"
|
760 |
|
761 |
-
#: admin/tpls/settings/user-interface.php:
|
762 |
msgid "Danger:"
|
763 |
msgstr "Danger :"
|
764 |
|
765 |
-
#: admin/tpls/settings/user-interface.php:
|
766 |
msgid "Download Button"
|
767 |
msgstr "Bouton de téléchargement"
|
768 |
|
769 |
-
#: admin/tpls/settings/user-interface.php:
|
770 |
msgid "Details Page"
|
771 |
msgstr "Page des détails"
|
772 |
|
773 |
-
#: admin/tpls/settings/user-interface.php:
|
774 |
-
#: admin/tpls/settings/user-interface.php:
|
775 |
msgid "Border Radius"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: admin/tpls/settings/user-interface.php:
|
779 |
msgid "Shortcode Page"
|
780 |
msgstr "Page de code court"
|
781 |
|
@@ -788,7 +949,7 @@ msgid "Export History"
|
|
788 |
msgstr "Exporter l’historique"
|
789 |
|
790 |
#: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
|
791 |
-
#: tpls/already-logged-in.php:
|
792 |
msgid "Download History"
|
793 |
msgstr "Historique des téléchargements"
|
794 |
|
@@ -804,20 +965,80 @@ msgstr "Effacement en cours…"
|
|
804 |
msgid "Download History is Empty"
|
805 |
msgstr "L’historique de téléchargement est vide."
|
806 |
|
807 |
-
#: admin/tpls/stats/history.php:
|
808 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
809 |
msgid "Package Name"
|
810 |
msgstr "Nom du paquet"
|
811 |
|
812 |
-
#: admin/tpls/stats/history.php:
|
813 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
814 |
msgid "Download Time"
|
815 |
msgstr "Heure de téléchargement"
|
816 |
|
817 |
-
#: admin/tpls/stats/history.php:
|
818 |
-
|
|
|
|
|
819 |
msgstr "Utilisateur/IP"
|
820 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
#: admin/tpls/templates.php:19
|
822 |
#, php-format
|
823 |
msgid ""
|
@@ -827,55 +1048,63 @@ msgstr ""
|
|
827 |
"L’éditeur de modèle personnalisé est disponible avec <a target='_blank' "
|
828 |
"href='%s'>WordPress Download Manager Pro</a>"
|
829 |
|
830 |
-
#: admin/tpls/templates.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
831 |
msgid "Template Name"
|
832 |
msgstr "Nom du modèle"
|
833 |
|
834 |
-
#: admin/tpls/templates.php:
|
835 |
msgid "Template ID"
|
836 |
msgstr "ID du modèle"
|
837 |
|
838 |
-
#: admin/tpls/templates.php:
|
839 |
msgid "Actions"
|
840 |
msgstr "Actions"
|
841 |
|
842 |
-
#: admin/tpls/templates.php:
|
843 |
msgid "To:"
|
844 |
msgstr "À :"
|
845 |
|
846 |
-
#: admin/tpls/templates.php:
|
847 |
msgid "Edit"
|
848 |
msgstr "Modifier"
|
849 |
|
850 |
-
#: admin/tpls/templates.php:
|
|
|
851 |
msgid "Logo URL"
|
852 |
msgstr "URL du logo"
|
853 |
|
854 |
-
#: admin/tpls/templates.php:
|
855 |
msgid "Banner/Background Image URL"
|
856 |
msgstr "URL de l’image de bannière/arrière-plan"
|
857 |
|
858 |
-
#: admin/tpls/templates.php:
|
859 |
msgid "Footer Text"
|
860 |
msgstr "Texte du pied de page"
|
861 |
|
862 |
-
#: admin/tpls/templates.php:
|
863 |
msgid "Facebook Page URL"
|
864 |
msgstr "URL de la page Facebook"
|
865 |
|
866 |
-
#: admin/tpls/templates.php:
|
867 |
msgid "Twitter Profile URL"
|
868 |
msgstr "URL du profil Twitter"
|
869 |
|
870 |
-
#: admin/tpls/templates.php:
|
871 |
msgid "Youtube Profile URL"
|
872 |
msgstr "URL du profil Youtube"
|
873 |
|
874 |
-
#: admin/tpls/templates.php:
|
875 |
msgid "Template Preview"
|
876 |
msgstr "Aperçu du modèle"
|
877 |
|
878 |
-
#: admin/tpls/templates.php:
|
879 |
msgid ""
|
880 |
"This is a preview, original template color scheme may look little different, "
|
881 |
"but structure will be same"
|
@@ -883,132 +1112,138 @@ msgstr ""
|
|
883 |
"Ceci est un aperçu, le jeu de couleurs du modèle original peut sembler "
|
884 |
"légèrement différent mais la structure sera la même"
|
885 |
|
886 |
-
#: admin/tpls/templates.php:
|
887 |
msgid "Saving..."
|
888 |
msgstr "Enregistrement…"
|
889 |
|
890 |
-
#: download-manager.php:
|
891 |
-
#:
|
|
|
|
|
|
|
|
|
892 |
msgid "Downloads"
|
893 |
msgstr "Téléchargements"
|
894 |
|
895 |
-
#: download-manager.php:
|
896 |
msgid "File"
|
897 |
msgstr "Fichier"
|
898 |
|
899 |
-
#: download-manager.php:
|
900 |
msgid "Add New"
|
901 |
msgstr "Ajouter"
|
902 |
|
903 |
-
#: download-manager.php:
|
904 |
msgid "Add New File"
|
905 |
msgstr "Ajouter un nouveau fichier"
|
906 |
|
907 |
-
#: download-manager.php:
|
908 |
msgid "Edit File"
|
909 |
msgstr "Modifier le fichier"
|
910 |
|
911 |
-
#: download-manager.php:
|
912 |
msgid "New File"
|
913 |
msgstr "Nouveau fichier"
|
914 |
|
915 |
-
#: download-manager.php:
|
916 |
msgid "All Files"
|
917 |
msgstr "Tous les fichiers"
|
918 |
|
919 |
-
#: download-manager.php:
|
920 |
msgid "View File"
|
921 |
msgstr "Voir le fichier"
|
922 |
|
923 |
-
#: download-manager.php:
|
924 |
msgid "Search Files"
|
925 |
msgstr "Rechercher des fichiers"
|
926 |
|
927 |
-
#: download-manager.php:
|
928 |
msgid "No File Found"
|
929 |
msgstr "Aucun fichier trouvé"
|
930 |
|
931 |
-
#: download-manager.php:
|
932 |
msgid "No Files found in Trash"
|
933 |
msgstr "Aucun fichier trouvé dans la corbeille"
|
934 |
|
935 |
-
#: download-manager.php:
|
936 |
-
#: tpls/wpdm-all-downloads.php:
|
937 |
msgid "Categories"
|
938 |
msgstr "Catégories"
|
939 |
|
940 |
-
#: download-manager.php:
|
941 |
msgid "Category"
|
942 |
msgstr "Catégorie"
|
943 |
|
944 |
-
#: download-manager.php:
|
945 |
msgid "Search Categories"
|
946 |
msgstr "Rechercher dans les catégories"
|
947 |
|
948 |
-
#: download-manager.php:
|
949 |
msgid "All Categories"
|
950 |
msgstr "Toutes les catégories"
|
951 |
|
952 |
-
#: download-manager.php:
|
953 |
msgid "Parent Category"
|
954 |
msgstr "Catégorie parente"
|
955 |
|
956 |
-
#: download-manager.php:
|
957 |
msgid "Parent Category:"
|
958 |
msgstr "Catégorie parente :"
|
959 |
|
960 |
-
#: download-manager.php:
|
961 |
msgid "Edit Category"
|
962 |
msgstr "Modifier la catégorie"
|
963 |
|
964 |
-
#: download-manager.php:
|
965 |
msgid "Update Category"
|
966 |
msgstr "Mettre à jour la catégorie"
|
967 |
|
968 |
-
#: download-manager.php:
|
969 |
msgid "Add New Category"
|
970 |
msgstr "Ajouter une nouvelle catégorie"
|
971 |
|
972 |
-
#: download-manager.php:
|
973 |
msgid "New Category Name"
|
974 |
msgstr "Nom de la nouvelle catégorie"
|
975 |
|
976 |
-
#: libs/class.Apply.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
977 |
msgid "Something is Wrong! Please refresh the page and try again"
|
978 |
msgstr "Quelque chose ne va pas ! Veuillez rafraîchir la page et réessayer."
|
979 |
|
980 |
-
#: libs/class.Apply.php:
|
981 |
msgid "Error: User registration is disabled!"
|
982 |
msgstr "Erreur : l’inscription d’utilisateurs est désactivée !"
|
983 |
|
984 |
-
#: libs/class.Apply.php:
|
985 |
msgid "Username is Empty!"
|
986 |
msgstr "L’identifiant est vide !"
|
987 |
|
988 |
-
#: libs/class.Apply.php:
|
989 |
-
|
|
|
|
|
990 |
msgstr "Adresse de messagerie non valide."
|
991 |
|
992 |
-
#: libs/class.Apply.php:
|
993 |
-
|
994 |
-
|
|
|
|
|
995 |
|
996 |
-
#: libs/class.Apply.php:
|
997 |
msgid "Edit User"
|
998 |
msgstr "Modifier l’utilisateur·rice"
|
999 |
|
1000 |
-
#: libs/class.Apply.php:
|
1001 |
-
msgid "New user registration on your site WordPress Download Manager:"
|
1002 |
-
msgstr ""
|
1003 |
-
"Inscription d’une nouvelle utilisatrice ou utilisateur sur votre site "
|
1004 |
-
"WordPress Download Manager :"
|
1005 |
-
|
1006 |
-
#: libs/class.Apply.php:270
|
1007 |
-
#, php-format
|
1008 |
-
msgid "[%s] New User Registration"
|
1009 |
-
msgstr "[%s] Inscription d’un·e nouvel·le utilisateur·rice"
|
1010 |
-
|
1011 |
-
#: libs/class.Apply.php:280
|
1012 |
msgid ""
|
1013 |
"Your account has been created successfully and login info sent to your mail "
|
1014 |
"address."
|
@@ -1016,212 +1251,459 @@ msgstr ""
|
|
1016 |
"Votre compte a bien été crée et les informations de connexion ont été "
|
1017 |
"envoyées à votre adresse e-mail."
|
1018 |
|
1019 |
-
#: libs/class.Apply.php:
|
1020 |
-
|
|
|
|
|
1021 |
msgstr "Votre compte a bien été crée"
|
1022 |
|
1023 |
-
#: libs/class.Apply.php:
|
1024 |
-
|
|
|
|
|
1025 |
msgstr "L’e-mail existe déjà."
|
1026 |
|
1027 |
-
#: libs/class.Apply.php:
|
1028 |
msgid "Username already exists."
|
1029 |
msgstr "Cet identifiant existe déjà."
|
1030 |
|
1031 |
-
#: libs/class.Apply.php:
|
1032 |
#, fuzzy
|
1033 |
#| msgid "Security token is expired! Refresh the page and try again."
|
1034 |
msgid "Session Expired! Please try again."
|
1035 |
msgstr "Le jeton de sécurité a expiré ! Rafraîchissez la page et réessayez."
|
1036 |
|
1037 |
-
#: libs/class.Apply.php:
|
1038 |
msgid "You don't have permission to download this file"
|
1039 |
msgstr "Vous n‘avez pas le droit de télécharger ce fichier."
|
1040 |
|
1041 |
-
#: libs/class.Apply.php:
|
1042 |
msgid "Download link is expired. Please get new download link."
|
1043 |
msgstr ""
|
1044 |
"Le lien de téléchargement a expiré. Veuillez récupérer un nouveau lien de "
|
1045 |
"téléchargement."
|
1046 |
|
1047 |
-
#: libs/class.Apply.php:
|
1048 |
msgid "Download link is expired or not valid. Please get new download link."
|
1049 |
msgstr ""
|
1050 |
"Le lien de téléchargement a expiré ou n’est pas valide. Veuillez récupérer "
|
1051 |
"un nouveau lien de téléchargement."
|
1052 |
|
1053 |
-
#: libs/class.Apply.php:
|
1054 |
msgid "Stock Limit Reached"
|
1055 |
msgstr "Nombre limite de téléchargement atteint"
|
1056 |
|
1057 |
-
#: libs/class.Apply.php:
|
1058 |
msgid "Invalid download link."
|
1059 |
msgstr "Lien de téléchargement invalide."
|
1060 |
|
1061 |
-
#: libs/class.
|
1062 |
-
|
1063 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1064 |
|
1065 |
-
#: libs/class.
|
1066 |
-
msgid "
|
1067 |
-
msgstr "
|
1068 |
|
1069 |
-
#: libs/class.
|
1070 |
-
|
1071 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
|
1073 |
-
#: libs/class.
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
|
|
|
|
|
|
|
|
1077 |
|
1078 |
-
#: libs/class.
|
1079 |
-
|
1080 |
-
|
|
|
|
|
1081 |
|
1082 |
-
#: libs/class.
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
|
|
1086 |
|
1087 |
-
#: libs/class.
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
msgstr "Notification pour un nouveau paquet"
|
1092 |
|
1093 |
-
#: libs/class.
|
|
|
|
|
|
|
|
|
1094 |
#, fuzzy
|
1095 |
-
#| msgid "
|
1096 |
-
msgid "
|
1097 |
-
msgstr "
|
1098 |
|
1099 |
-
#: libs/class.
|
1100 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1101 |
msgstr "Exemple de nom de paquet"
|
1102 |
|
1103 |
-
#: libs/class.FileList.php:
|
1104 |
-
#: libs/class.FileList.php:
|
1105 |
-
#:
|
|
|
1106 |
msgid "Password"
|
1107 |
msgstr "Mot de passe"
|
1108 |
|
1109 |
-
#: libs/class.FileList.php:
|
1110 |
msgid "Action"
|
1111 |
msgstr "Action"
|
1112 |
|
1113 |
-
#: libs/class.
|
1114 |
-
|
1115 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1116 |
|
1117 |
-
#: libs/class.
|
1118 |
-
msgid "
|
1119 |
-
msgstr "
|
1120 |
|
1121 |
-
#: libs/class.
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
-
#: libs/class.
|
1126 |
-
msgid "
|
1127 |
-
msgstr "
|
1128 |
|
1129 |
-
#: libs/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1130 |
msgid "ID missing!"
|
1131 |
msgstr "ID manquant !"
|
1132 |
|
1133 |
-
#: libs/class.Package.php:
|
1134 |
-
#: libs/class.Package.php:
|
1135 |
msgid "Icon"
|
1136 |
msgstr "Icône"
|
1137 |
|
1138 |
-
#: libs/class.Package.php:
|
1139 |
msgid "Thumbnail"
|
1140 |
msgstr "Miniature"
|
1141 |
|
1142 |
-
#: libs/class.Package.php:
|
1143 |
-
#:
|
1144 |
msgid "Download Limit Exceeded"
|
1145 |
msgstr "Limite de téléchargement dépassée"
|
1146 |
|
1147 |
-
#: libs/class.Package.php:
|
1148 |
-
#: libs/class.Package.php:
|
1149 |
msgid "DOWNLOAD ERROR"
|
1150 |
msgstr "ERREUR DE TÉLÉCHARGEMENT"
|
1151 |
|
1152 |
-
#: libs/class.Package.php:
|
1153 |
-
#: libs/class.Package.php:
|
1154 |
msgid "Download was expired on"
|
1155 |
msgstr "Le téléchargement a expiré le"
|
1156 |
|
1157 |
-
#: libs/class.Package.php:
|
1158 |
-
#: libs/class.Package.php:
|
1159 |
msgid "Download will be available from "
|
1160 |
msgstr "Ce téléchargement sera disponible à partir du "
|
1161 |
|
1162 |
-
#: libs/class.Package.php:
|
1163 |
msgid "Terms and Conditions"
|
1164 |
msgstr "Conditions générales d’utilisation"
|
1165 |
|
1166 |
-
#: libs/class.Package.php:
|
1167 |
-
|
1168 |
-
|
|
|
|
|
1169 |
|
1170 |
-
#: libs/class.Package.php:
|
1171 |
msgid "No File Attached!"
|
1172 |
msgstr "Aucun fichier joint !"
|
1173 |
|
1174 |
-
#: libs/class.Package.php:
|
1175 |
-
#: libs/class.Package.php:
|
1176 |
-
#: wpdm-functions.php:
|
1177 |
msgid "Download:"
|
1178 |
msgstr "Téléchargement :"
|
1179 |
|
1180 |
-
#: libs/class.Package.php:
|
1181 |
msgid "Download limit exceeded!"
|
1182 |
msgstr "Limite de téléchargement dépassée !"
|
1183 |
|
1184 |
-
#: libs/class.Package.php:
|
1185 |
msgid "Verify CAPTCHA to Download"
|
1186 |
msgstr "Validez le CAPTCHA pour télécharger"
|
1187 |
|
1188 |
-
#: libs/class.Package.php:
|
1189 |
-
#: libs/class.Package.php:
|
1190 |
msgid "DOWNLOAD ERROR:"
|
1191 |
msgstr "ERREUR DE TÉLÉCHARGEMENT :"
|
1192 |
|
1193 |
-
#: libs/class.Package.php:
|
1194 |
msgid "Limit Over!"
|
1195 |
msgstr "Limite atteinte !"
|
1196 |
|
1197 |
-
#: libs/class.PackageLocks.php:
|
|
|
1198 |
msgid "Enter Correct Password to Download"
|
1199 |
msgstr "Saisissez le bon mot de passe pour pouvoir télécharger"
|
1200 |
|
1201 |
-
#: libs/class.PackageLocks.php:
|
1202 |
-
#: tpls/
|
|
|
|
|
|
|
1203 |
msgid "Processing..."
|
1204 |
msgstr "En cours de traitement…"
|
1205 |
|
1206 |
-
#: libs/class.PackageLocks.php:
|
|
|
|
|
1207 |
msgid "Enter Password"
|
1208 |
msgstr "Saisissez le mot de passe"
|
1209 |
|
1210 |
-
#: libs/class.PackageLocks.php:
|
|
|
1211 |
msgid "Submit"
|
1212 |
msgstr "Valider"
|
1213 |
|
1214 |
-
#: libs/class.Pagination.php:50 tpls/wpdm-all-downloads.php:
|
1215 |
-
#: tpls/wpdm-all-downloads.php:
|
|
|
1216 |
msgid "Previous"
|
1217 |
msgstr "Précédent"
|
1218 |
|
1219 |
-
#: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:
|
1220 |
-
#: tpls/wpdm-all-downloads.php:
|
|
|
1221 |
msgid "Next"
|
1222 |
msgstr "Suivant"
|
1223 |
|
1224 |
-
#: libs/class.ShortCodes.php:
|
1225 |
msgid "User registration is disabled"
|
1226 |
msgstr "Les inscriptions sont désactivées."
|
1227 |
|
@@ -1229,6 +1711,77 @@ msgstr "Les inscriptions sont désactivées."
|
|
1229 |
msgid "Failed To Open File!"
|
1230 |
msgstr "L’ouverture du fichier a échouée !"
|
1231 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1232 |
#: libs/class.UserDashboard.php:17
|
1233 |
msgid "Profile"
|
1234 |
msgstr "Profil"
|
@@ -1241,542 +1794,818 @@ msgstr "Modifier votre profil."
|
|
1241 |
msgid "Account"
|
1242 |
msgstr ""
|
1243 |
|
|
|
|
|
|
|
|
|
1244 |
#: modules/server-file-browser.php:8
|
1245 |
msgid "Not Allowed!"
|
1246 |
msgstr "Non autorisé !"
|
1247 |
|
1248 |
-
#: modules/server-file-browser.php:
|
1249 |
msgid "Add file(s) from server"
|
1250 |
msgstr "Ajouter des fichiers depuis le serveur"
|
1251 |
|
1252 |
-
#: modules/widgets.php:
|
1253 |
-
msgid "
|
1254 |
-
msgstr "
|
1255 |
-
|
1256 |
-
#: modules/widgets.php:108 modules/widgets.php:164 modules/widgets.php:229
|
1257 |
-
#: modules/widgets.php:319 modules/widgets.php:435
|
1258 |
-
msgid "Title:"
|
1259 |
-
msgstr "Titre :"
|
1260 |
-
|
1261 |
-
#: modules/widgets.php:168 modules/widgets.php:233 modules/widgets.php:329
|
1262 |
-
msgid "Number of packages to show:"
|
1263 |
-
msgstr "Nombre de paquets à afficher :"
|
1264 |
|
1265 |
-
#: modules/
|
1266 |
-
msgid "
|
1267 |
-
msgstr "
|
1268 |
|
1269 |
-
#: modules/
|
1270 |
-
msgid "
|
1271 |
-
msgstr "
|
1272 |
|
1273 |
-
#: modules/
|
1274 |
-
|
1275 |
-
|
|
|
|
|
1276 |
|
1277 |
-
#: modules/
|
1278 |
-
|
1279 |
-
|
|
|
|
|
1280 |
|
1281 |
-
#: modules/
|
1282 |
-
|
1283 |
-
|
|
|
1284 |
|
1285 |
-
#: modules/widgets.php:
|
1286 |
msgid "Last Updated"
|
1287 |
msgstr "Dernière mise à jour"
|
1288 |
|
1289 |
-
#: modules/
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
msgstr "Champs à afficher :"
|
1296 |
-
|
1297 |
-
#: modules/widgets.php:442
|
1298 |
-
msgid "Download Count"
|
1299 |
-
msgstr "Nombre de téléchargements"
|
1300 |
|
1301 |
-
#: modules/
|
1302 |
-
|
1303 |
-
|
|
|
|
|
1304 |
|
1305 |
-
#: modules/
|
1306 |
-
|
1307 |
-
|
|
|
|
|
1308 |
|
1309 |
-
#: modules/
|
1310 |
-
|
1311 |
-
|
|
|
|
|
1312 |
|
1313 |
-
#: modules/
|
1314 |
-
|
1315 |
-
|
|
|
1316 |
|
1317 |
-
#: modules/
|
1318 |
-
msgid "
|
1319 |
-
msgstr "
|
1320 |
|
1321 |
-
#: modules/
|
1322 |
-
msgid "
|
1323 |
-
msgstr "
|
1324 |
|
1325 |
-
#: tpls/already-logged-in.php:
|
1326 |
#, fuzzy
|
1327 |
#| msgid "Welcome to %s"
|
1328 |
msgid "Welcome"
|
1329 |
msgstr "Bienvenue sur %s"
|
1330 |
|
1331 |
-
#: tpls/already-logged-in.php:
|
1332 |
msgid "You are already logged in."
|
1333 |
msgstr "Vous êtes déjà connecté."
|
1334 |
|
1335 |
-
#: tpls/already-logged-in.php:
|
1336 |
#, fuzzy
|
1337 |
#| msgid "Dashboard Page"
|
1338 |
msgid "Dashboard"
|
1339 |
msgstr "Page du tableau de bord"
|
1340 |
|
1341 |
-
#: tpls/
|
1342 |
-
|
1343 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1344 |
|
1345 |
-
#: tpls/simple-search-form.php:5
|
|
|
1346 |
msgid "Search Package"
|
1347 |
msgstr "Rechercher un paquet"
|
1348 |
|
1349 |
-
#: tpls/simple-search-form.php:18
|
|
|
1350 |
msgid "Search Result For"
|
1351 |
msgstr "Résultats de recherche pour"
|
1352 |
|
|
|
1353 |
#: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
|
|
|
1354 |
msgid "Loading"
|
1355 |
msgstr "Chargement"
|
1356 |
|
1357 |
-
#: tpls/
|
1358 |
-
#:
|
1359 |
-
msgid "
|
1360 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1361 |
|
1362 |
-
#: tpls/user-dashboard/edit-profile.php:13
|
|
|
1363 |
#, fuzzy
|
1364 |
#| msgid "REGISTRATION FAILED!"
|
1365 |
msgid "SAVE FAILED!"
|
1366 |
msgstr "L’INSCRIPTION A ÉCHOUÉ !"
|
1367 |
|
1368 |
-
#: tpls/user-dashboard/edit-profile.php:
|
1369 |
-
#:
|
1370 |
-
msgid "DONE!"
|
1371 |
-
msgstr ""
|
1372 |
-
|
1373 |
-
#: tpls/user-dashboard/edit-profile.php:24 tpls/wpdm-edit-user-profile.php:24
|
1374 |
msgid "Basic Profile"
|
1375 |
msgstr "Profil de base"
|
1376 |
|
1377 |
-
#: tpls/user-dashboard/edit-profile.php:27
|
|
|
1378 |
msgid "Display name:"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: tpls/user-dashboard/edit-profile.php:28
|
|
|
1382 |
msgid "PayPal Email:"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: tpls/user-dashboard/edit-profile.php:30
|
|
|
1386 |
#, fuzzy
|
1387 |
#| msgid "Username"
|
1388 |
msgid "Username:"
|
1389 |
msgstr "Identifiant"
|
1390 |
|
1391 |
-
#: tpls/user-dashboard/edit-profile.php:31
|
|
|
1392 |
#, fuzzy
|
1393 |
#| msgid "Emails"
|
1394 |
msgid "Email:"
|
1395 |
msgstr "E-mails"
|
1396 |
|
1397 |
-
#: tpls/user-dashboard/edit-profile.php:33
|
|
|
1398 |
#, fuzzy
|
1399 |
#| msgid "Password:"
|
1400 |
msgid "New Password:"
|
1401 |
msgstr "Mot de passe :"
|
1402 |
|
1403 |
-
#: tpls/user-dashboard/edit-profile.php:33
|
1404 |
-
msgid "Use nothing if you don
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: tpls/user-dashboard/edit-profile.php:34
|
|
|
1408 |
#, fuzzy
|
1409 |
#| msgid "Enter Password"
|
1410 |
msgid "Re-type New Password:"
|
1411 |
msgstr "Saisissez le mot de passe"
|
1412 |
|
1413 |
-
#: tpls/user-dashboard/
|
1414 |
-
#, fuzzy
|
1415 |
-
#| msgid "Version:"
|
1416 |
-
msgid "Description:"
|
1417 |
-
msgstr "Version :"
|
1418 |
-
|
1419 |
-
#: tpls/user-dashboard/profile.php:7
|
1420 |
msgid "User Level"
|
1421 |
msgstr "Niveau d‘utilisateur"
|
1422 |
|
1423 |
-
#: tpls/user-dashboard/profile.php:
|
|
|
|
|
|
|
|
|
|
|
1424 |
msgid "Today's Download"
|
1425 |
msgstr "Téléchargements du jour"
|
1426 |
|
1427 |
-
#: tpls/user-dashboard/profile.php:35
|
1428 |
msgid "Recommended Downloads"
|
1429 |
msgstr "Téléchargements recommandés"
|
1430 |
|
1431 |
-
#: tpls/user-dashboard/profile.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1432 |
msgid "Last 5 Downloads"
|
1433 |
msgstr "Les 5 derniers téléchargements"
|
1434 |
|
1435 |
-
#: tpls/wpdm-all-downloads.php:
|
1436 |
msgid "Display _MENU_ downloads per page"
|
1437 |
msgstr "Afficher _MENU_ téléchargements par page"
|
1438 |
|
1439 |
-
#: tpls/wpdm-all-downloads.php:
|
1440 |
msgid "Nothing _START_ to - sorry"
|
1441 |
msgstr "Aucun paquet trouvé"
|
1442 |
|
1443 |
-
#: tpls/wpdm-all-downloads.php:
|
1444 |
msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
|
1445 |
msgstr ""
|
1446 |
"Affichage des téléchargements _START_ à _END_ sur _TOTAL_ téléchargements"
|
1447 |
|
1448 |
-
#: tpls/wpdm-all-downloads.php:
|
1449 |
msgid "No downloads available"
|
1450 |
msgstr "Aucun téléchargement disponible"
|
1451 |
|
1452 |
-
#: tpls/wpdm-all-downloads.php:
|
1453 |
msgid "(filtered from _MAX_ total downloads)"
|
1454 |
msgstr "(filtrés sur un total de _MAX_ téléchargements)"
|
1455 |
|
1456 |
-
#: tpls/wpdm-all-downloads.php:
|
1457 |
msgid "No data available in table"
|
1458 |
msgstr "Aucune donnée disponible"
|
1459 |
|
1460 |
-
#: tpls/wpdm-all-downloads.php:
|
1461 |
msgid "Loading..."
|
1462 |
msgstr "Chargement en cours…"
|
1463 |
|
1464 |
-
#: tpls/wpdm-all-downloads.php:
|
1465 |
msgid "Search:"
|
1466 |
msgstr "Rechercher :"
|
1467 |
|
1468 |
-
#: tpls/wpdm-all-downloads.php:
|
1469 |
msgid "First"
|
1470 |
msgstr "Premier"
|
1471 |
|
1472 |
-
#: tpls/wpdm-all-downloads.php:
|
1473 |
msgid "Last"
|
1474 |
msgstr "Dernier"
|
1475 |
|
1476 |
-
#: tpls/wpdm-all-downloads.php:
|
1477 |
msgid "activate to sort column ascending"
|
1478 |
msgstr "activer pour trier la colonne par ordre croissant"
|
1479 |
|
1480 |
-
#: tpls/wpdm-all-downloads.php:
|
1481 |
msgid "activate to sort column descending"
|
1482 |
msgstr "activer pour trier la colonne par ordre décroissant"
|
1483 |
|
1484 |
-
#: tpls/wpdm-all-downloads.php:
|
1485 |
msgid "All"
|
1486 |
msgstr "Tout"
|
1487 |
|
1488 |
-
#: tpls/wpdm-all-downloads.php:
|
1489 |
-
msgid "Create Date"
|
1490 |
-
msgstr "Date de création"
|
1491 |
-
|
1492 |
-
#: tpls/wpdm-all-downloads.php:258
|
1493 |
-
msgid "file(s)"
|
1494 |
-
msgstr "fichier·s"
|
1495 |
-
|
1496 |
-
#: tpls/wpdm-all-downloads.php:264
|
1497 |
msgid "downloads"
|
1498 |
msgstr "téléchargements"
|
1499 |
|
1500 |
-
#: tpls/wpdm-all-downloads.php:
|
1501 |
msgid "download"
|
1502 |
msgstr "téléchargement"
|
1503 |
|
1504 |
-
#: tpls/wpdm-all-downloads.php:
|
1505 |
msgid "views"
|
1506 |
msgstr "vues"
|
1507 |
|
1508 |
-
#: tpls/wpdm-all-downloads.php:
|
1509 |
msgid "view"
|
1510 |
msgstr "vue"
|
1511 |
|
1512 |
-
#: tpls/wpdm-all-downloads.php:
|
1513 |
msgid "No Packages Found"
|
1514 |
msgstr "Aucun paquet trouvé"
|
1515 |
|
1516 |
-
#: tpls/wpdm-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1517 |
msgid "Select Options"
|
1518 |
msgstr "Sélectionnez les options"
|
1519 |
|
1520 |
-
#: tpls/wpdm-generate-password.php:19
|
1521 |
msgid "Number of passwords:"
|
1522 |
msgstr "Nombre de mots de passe :"
|
1523 |
|
1524 |
-
#: tpls/wpdm-generate-password.php:23
|
1525 |
msgid "Number of chars for each password:"
|
1526 |
msgstr "Nombre de caractères pour chaque mot de passe :"
|
1527 |
|
1528 |
-
#: tpls/wpdm-generate-password.php:
|
1529 |
-
|
|
|
|
|
1530 |
msgstr "Caractères valides :"
|
1531 |
|
1532 |
-
#: tpls/wpdm-generate-password.php:
|
1533 |
-
msgid "
|
1534 |
-
msgstr "
|
1535 |
|
1536 |
-
#: tpls/wpdm-generate-password.php:
|
1537 |
-
msgid "
|
1538 |
-
msgstr "
|
1539 |
|
1540 |
-
#: tpls/wpdm-
|
1541 |
-
msgid "
|
1542 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1543 |
|
1544 |
-
#: tpls/wpdm-
|
|
|
|
|
|
|
|
|
1545 |
#, fuzzy
|
1546 |
-
#| msgid "
|
1547 |
-
msgid "
|
1548 |
-
msgstr "
|
1549 |
|
1550 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1551 |
msgid "Remember Me"
|
1552 |
msgstr "Se souvenir de moi"
|
1553 |
|
1554 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1555 |
msgid "Forgot Password?"
|
1556 |
msgstr "Mot de passe oublié ?"
|
1557 |
|
1558 |
-
#: tpls/wpdm-login-form.php:
|
1559 |
-
#: tpls/wpdm-reg-form.php:
|
1560 |
-
|
1561 |
-
|
|
|
1562 |
|
1563 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1564 |
msgid "Don't have an account yet?"
|
1565 |
msgstr "Vous n’avez pas encore de compte ?"
|
1566 |
|
1567 |
-
#: tpls/wpdm-login-form.php:
|
|
|
|
|
1568 |
#, fuzzy
|
1569 |
#| msgid "Register Page"
|
1570 |
msgid "Register Now"
|
1571 |
msgstr "Page d’inscription"
|
1572 |
|
1573 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1574 |
msgid "Logging In..."
|
1575 |
msgstr "Connexion en cours…"
|
1576 |
|
1577 |
-
#: tpls/wpdm-login-form.php:
|
|
|
|
|
1578 |
#, fuzzy
|
1579 |
#| msgid "REGISTRATION FAILED!"
|
1580 |
msgid "LOGIN FAILED!"
|
1581 |
msgstr "L’INSCRIPTION A ÉCHOUÉ !"
|
1582 |
|
1583 |
-
#: tpls/wpdm-login-form.php:
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
|
|
|
|
|
|
1587 |
msgstr ""
|
1588 |
-
"La connexion a échouée ! Veuillez vérifier vos informations de connexion."
|
1589 |
|
1590 |
-
#: tpls/wpdm-
|
1591 |
-
|
1592 |
-
|
1593 |
-
msgid "Lost Password?"
|
1594 |
-
msgstr "Mot de passe oublié ?"
|
1595 |
|
1596 |
-
#: tpls/wpdm-
|
1597 |
-
msgid ""
|
1598 |
-
"Please enter your username or email address. You will receive a link to "
|
1599 |
-
"create a new password via email."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: tpls/wpdm-
|
1603 |
-
|
1604 |
-
|
1605 |
-
msgid "Reset Password"
|
1606 |
-
msgstr "Mots de passe générés"
|
1607 |
|
1608 |
-
#: tpls/wpdm-
|
1609 |
-
msgid "
|
|
|
|
|
|
|
|
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#:
|
1613 |
#, fuzzy
|
1614 |
-
#| msgid "
|
1615 |
-
msgid "
|
1616 |
-
msgstr "
|
1617 |
|
1618 |
-
#:
|
1619 |
-
|
1620 |
-
|
1621 |
-
msgstr "ERREUR !"
|
1622 |
|
1623 |
-
#:
|
1624 |
-
msgid "
|
1625 |
-
msgstr ""
|
1626 |
|
1627 |
-
#:
|
1628 |
-
msgid "
|
1629 |
-
msgstr ""
|
1630 |
|
1631 |
-
#:
|
1632 |
-
|
1633 |
-
|
|
|
|
|
|
|
1634 |
|
1635 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1636 |
#, fuzzy
|
1637 |
-
#| msgid "
|
1638 |
-
msgid "
|
1639 |
-
msgstr "
|
1640 |
|
1641 |
-
#:
|
1642 |
#, fuzzy
|
1643 |
-
#| msgid "
|
1644 |
-
msgid "
|
1645 |
-
msgstr "
|
1646 |
|
1647 |
-
#:
|
1648 |
-
msgid "
|
1649 |
-
msgstr "
|
1650 |
|
1651 |
-
#:
|
1652 |
#, fuzzy
|
1653 |
-
#| msgid "
|
1654 |
-
msgid "
|
1655 |
-
msgstr "
|
1656 |
|
1657 |
-
#:
|
1658 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#:
|
1662 |
#, fuzzy
|
1663 |
-
#| msgid "
|
1664 |
-
msgid "
|
1665 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1666 |
|
1667 |
-
#:
|
1668 |
#, fuzzy
|
1669 |
-
#| msgid "
|
1670 |
-
msgid "
|
1671 |
-
msgstr "
|
1672 |
|
1673 |
-
#:
|
1674 |
-
msgid "
|
1675 |
-
msgstr "
|
1676 |
|
1677 |
-
#:
|
1678 |
-
|
1679 |
-
|
|
|
|
|
1680 |
|
1681 |
-
#:
|
1682 |
-
msgid "
|
1683 |
-
msgstr "
|
1684 |
|
1685 |
-
#:
|
1686 |
-
msgid "
|
1687 |
-
msgstr "
|
1688 |
|
1689 |
-
#:
|
1690 |
-
msgid "
|
1691 |
-
msgstr "
|
1692 |
|
1693 |
-
#:
|
1694 |
-
|
1695 |
-
|
|
|
|
|
1696 |
|
1697 |
-
#:
|
1698 |
-
msgid "
|
1699 |
-
|
|
|
|
|
1700 |
|
1701 |
-
#:
|
1702 |
-
|
1703 |
-
|
|
|
|
|
1704 |
|
1705 |
-
#:
|
1706 |
-
msgid "
|
1707 |
-
|
|
|
|
|
1708 |
|
1709 |
-
#:
|
1710 |
-
|
1711 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1712 |
|
1713 |
-
#: wpdm-core.php:
|
1714 |
msgid "Select category"
|
1715 |
msgstr "Sélectionnez une catégorie"
|
1716 |
|
1717 |
-
#: wpdm-core.php:
|
1718 |
-
msgid "New Package Notification"
|
1719 |
-
msgstr "Notification pour un nouveau paquet"
|
1720 |
-
|
1721 |
-
#: wpdm-core.php:189
|
1722 |
#, fuzzy
|
1723 |
#| msgid "Update Date"
|
1724 |
msgid ": Update Available"
|
1725 |
msgstr "Date de mise à jour"
|
1726 |
|
1727 |
-
#: wpdm-functions.php:
|
1728 |
msgid "Permission Denied"
|
1729 |
msgstr "Permission refusée"
|
1730 |
|
1731 |
-
#: wpdm-functions.php:
|
1732 |
msgid "Captcha Verification Failed!"
|
1733 |
msgstr "La vérification CAPTCHA a échoué !"
|
1734 |
|
1735 |
-
#: wpdm-functions.php:
|
1736 |
msgid "Wrong Password! Try Again."
|
1737 |
msgstr "Mot de passe incorrect ! Essayez à nouveau."
|
1738 |
|
1739 |
-
#: wpdm-functions.php:
|
1740 |
msgid "Password usages limit exceeded"
|
1741 |
msgstr "Limite d‘utilisation du mot de passe dépassée !"
|
1742 |
|
1743 |
-
#: wpdm-functions.php:
|
1744 |
-
msgid "Sub-Categories"
|
1745 |
-
msgstr "Sous-catégories"
|
1746 |
-
|
1747 |
-
#: wpdm-functions.php:805
|
1748 |
-
msgid "Title"
|
1749 |
-
msgstr "Titre"
|
1750 |
-
|
1751 |
-
#: wpdm-functions.php:809
|
1752 |
-
msgid "Asc"
|
1753 |
-
msgstr "Asc."
|
1754 |
-
|
1755 |
-
#: wpdm-functions.php:810
|
1756 |
-
msgid "Desc"
|
1757 |
-
msgstr "Desc."
|
1758 |
-
|
1759 |
-
#: wpdm-functions.php:811
|
1760 |
-
msgid "Search"
|
1761 |
-
msgstr "Rechercher"
|
1762 |
-
|
1763 |
-
#: wpdm-functions.php:812
|
1764 |
-
msgid "Order"
|
1765 |
-
msgstr "Tri"
|
1766 |
-
|
1767 |
-
#: wpdm-functions.php:813
|
1768 |
-
msgid "Order By"
|
1769 |
-
msgstr "Trier par"
|
1770 |
-
|
1771 |
-
#: wpdm-functions.php:1360
|
1772 |
msgid "Select Image"
|
1773 |
msgstr "Sélectionner une image"
|
1774 |
|
1775 |
-
#: wpdm-functions.php:
|
1776 |
msgid "SELECT IMAGE"
|
1777 |
msgstr "SÉLECTIONNER UNE IMAGE"
|
1778 |
|
1779 |
-
#: wpdm-functions.php:
|
1780 |
msgid "Uploading"
|
1781 |
msgstr "Téléversement en cours"
|
1782 |
|
@@ -1784,7 +2613,7 @@ msgstr "Téléversement en cours"
|
|
1784 |
msgid "Your IP address is blocked!"
|
1785 |
msgstr "Votre adresse IP est bloquée !"
|
1786 |
|
1787 |
-
#: wpdm-start-download.php:
|
1788 |
msgid "Package is not available!"
|
1789 |
msgstr "Paquet indisponible !"
|
1790 |
|
@@ -1800,6 +2629,45 @@ msgstr "Veuillez activer « zlib » sur votre serveur"
|
|
1800 |
msgid "No file found!"
|
1801 |
msgstr "Aucun fichier trouvé !"
|
1802 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1803 |
#~ msgid "Request New"
|
1804 |
#~ msgstr "Demander un nouveau mot de passe"
|
1805 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WordPress Download Manager - Development "
|
6 |
"(trunk)\n"
|
7 |
+
"POT-Creation-Date: 2020-12-13 13:58+0600\n"
|
8 |
+
"PO-Revision-Date: 2020-12-13 13:58+0600\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: fr\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
16 |
+
"X-Generator: Poedit 2.4.1\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: admin/class.WordPressDownloadManagerAdmin.php:171
|
22 |
#: admin/tpls/metaboxes/package-settings.php:6
|
23 |
msgid "Package Settings"
|
24 |
msgstr "Réglages du paquet"
|
25 |
|
26 |
+
#: admin/class.WordPressDownloadManagerAdmin.php:172
|
27 |
msgid "Attach File"
|
28 |
msgstr "Joindre un fichier"
|
29 |
|
35 |
msgid "Add-Ons"
|
36 |
msgstr "Modules"
|
37 |
|
38 |
+
#: admin/menus/class.Categories.php:49 admin/menus/class.Categories.php:253
|
39 |
msgid "Category Image:"
|
40 |
msgstr "Image de catégorie :"
|
41 |
|
42 |
+
#: admin/menus/class.Categories.php:52 admin/menus/class.Categories.php:258
|
43 |
msgid "Image URL"
|
44 |
msgstr "URL de l’image"
|
45 |
|
46 |
+
#: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
|
47 |
msgid "Select Category Image"
|
48 |
msgstr "Sélectionner une image de catégorie"
|
49 |
|
50 |
+
#: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
|
51 |
+
#: libs/class.FileList.php:307
|
52 |
+
msgid "Browse"
|
53 |
+
msgstr "Parcourir"
|
54 |
|
55 |
+
#: admin/menus/class.Categories.php:117 admin/menus/class.Categories.php:323
|
56 |
msgid "Access:"
|
57 |
msgstr "Accès :"
|
58 |
|
59 |
+
#: admin/menus/class.Categories.php:119 admin/menus/class.Categories.php:326
|
60 |
msgid ""
|
61 |
"Select the roles who should have access to the packages under this category"
|
62 |
msgstr ""
|
63 |
"Sélectionnez les rôles qui devraient avoir accès aux paquets de cette "
|
64 |
"catégorie"
|
65 |
|
66 |
+
#: admin/menus/class.Categories.php:122 admin/menus/class.Categories.php:339
|
67 |
+
#: admin/tpls/metaboxes/package-settings.php:68 tpls/asset-manager-ui.php:832
|
68 |
+
#: tpls3/asset-manager-ui.php:825
|
69 |
msgid "All Visitors"
|
70 |
msgstr "Tou·te·s les internautes"
|
71 |
|
72 |
+
#: admin/menus/class.Categories.php:138 admin/menus/class.Categories.php:368
|
73 |
+
#, fuzzy
|
74 |
+
#| msgid "Page Templates"
|
75 |
+
msgid "Category Page Template"
|
76 |
+
msgstr "Modèles de page"
|
77 |
+
|
78 |
+
#: admin/menus/class.Categories.php:141 admin/menus/class.Categories.php:371
|
79 |
+
msgid "Use Global"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: admin/menus/class.Categories.php:142 admin/menus/class.Categories.php:372
|
83 |
+
msgid "Do Not Apply"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: admin/menus/class.Categories.php:144 admin/menus/class.Categories.php:374
|
87 |
+
msgid "Keep current template as it is provided with the active theme"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin/menus/class.Categories.php:146 admin/menus/class.Categories.php:376
|
91 |
+
#, fuzzy
|
92 |
+
#| msgid "Link Templates"
|
93 |
+
msgid "Use Link Template"
|
94 |
+
msgstr "Modèles de lien"
|
95 |
+
|
96 |
+
#: admin/menus/class.Categories.php:159 admin/menus/class.Categories.php:389
|
97 |
+
#: widgets/class.CatPackages.php:91 widgets/class.ListPackages.php:126
|
98 |
+
#: widgets/class.NewDownloads.php:60 widgets/class.TopDownloads.php:59
|
99 |
+
msgid "Link Template:"
|
100 |
+
msgstr "Modèle de lien :"
|
101 |
+
|
102 |
+
#: admin/menus/class.Categories.php:165 admin/menus/class.Categories.php:395
|
103 |
+
#, fuzzy
|
104 |
+
#| msgid "Register Page"
|
105 |
+
msgid "Items Per Page:"
|
106 |
+
msgstr "Page d’inscription"
|
107 |
+
|
108 |
+
#: admin/menus/class.Categories.php:169 admin/menus/class.Categories.php:399
|
109 |
+
msgid "Toolbar:"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: admin/menus/class.Categories.php:171 admin/menus/class.Categories.php:401
|
113 |
+
msgid "Show"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: admin/menus/class.Categories.php:172 admin/menus/class.Categories.php:402
|
117 |
+
msgid "Hide"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: admin/menus/class.Categories.php:178 admin/menus/class.Categories.php:408
|
121 |
+
#, fuzzy
|
122 |
+
#| msgid "Number of passwords:"
|
123 |
+
msgid "Number of Columns"
|
124 |
+
msgstr "Nombre de mots de passe :"
|
125 |
+
|
126 |
+
#: admin/menus/class.Packages.php:203
|
127 |
msgid "Direct Download"
|
128 |
msgstr "Télécharger"
|
129 |
|
135 |
msgid "Settings"
|
136 |
msgstr "Réglages"
|
137 |
|
138 |
+
#: admin/menus/class.Settings.php:138 admin/menus/class.Settings.php:169
|
139 |
+
#: admin/menus/class.Settings.php:188 admin/menus/class.Settings.php:244
|
140 |
+
#: admin/menus/class.Settings.php:260
|
141 |
msgid "Security token is expired! Refresh the page and try again."
|
142 |
msgstr "Le jeton de sécurité a expiré ! Rafraîchissez la page et réessayez."
|
143 |
|
144 |
+
#: admin/menus/class.Settings.php:331
|
145 |
msgid "Privacy Settings Saved Successfully"
|
146 |
msgstr "Les réglages de confidentialité ont bien été sauvegardés"
|
147 |
|
162 |
msgid "Templates"
|
163 |
msgstr "Modèles"
|
164 |
|
165 |
+
#: admin/menus/class.Templates.php:142
|
166 |
msgid ""
|
167 |
"No package found! Please create at least 1 package to see template preview"
|
168 |
msgstr ""
|
177 |
msgid "Failed to connect with server!"
|
178 |
msgstr "Échec de connexion au serveur !"
|
179 |
|
180 |
+
#: admin/tpls/asset-manager-picker.php:9
|
181 |
+
msgid "Asset Manager Picker"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: admin/tpls/asset-manager-picker.php:693
|
185 |
+
#, fuzzy
|
186 |
+
#| msgid "Server File Browser"
|
187 |
+
msgid "Server File Picker"
|
188 |
+
msgstr "Navigateur de fichiers serveur"
|
189 |
+
|
190 |
+
#: admin/tpls/asset-manager-picker.php:727
|
191 |
+
#: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:186
|
192 |
+
#: admin/tpls/templates.php:347 tpls/asset-manager-ui.php:555
|
193 |
+
#: tpls/user-dashboard/edit-profile.php:48 tpls/wpdm-edit-user-profile.php:64
|
194 |
+
#: tpls3/asset-manager-ui.php:550 tpls3/user-dashboard/edit-profile.php:51
|
195 |
+
#: tpls3/wpdm-edit-user-profile.php:51
|
196 |
+
msgid "Save Changes"
|
197 |
+
msgstr "Enregistrer les modifications"
|
198 |
+
|
199 |
+
#: admin/tpls/asset-manager-picker.php:753
|
200 |
+
#, fuzzy
|
201 |
+
#| msgid "Attach File"
|
202 |
+
msgid "Attach selected file"
|
203 |
+
msgstr "Joindre un fichier"
|
204 |
+
|
205 |
#: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
|
206 |
msgid "Link Templates"
|
207 |
msgstr "Modèles de lien"
|
253 |
msgid "From Email"
|
254 |
msgstr "E-mail de l’expéditeur"
|
255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
#: admin/tpls/email-template-editor.php:119
|
257 |
msgid "Template Variables"
|
258 |
msgstr "Variables de modèle"
|
279 |
msgid "Emails"
|
280 |
msgstr "E-mails"
|
281 |
|
282 |
+
#: admin/tpls/emails-template.php:23 admin/tpls/templates.php:106
|
283 |
msgid "Email Template"
|
284 |
msgstr "Modèle d’e-mail"
|
285 |
|
286 |
+
#: admin/tpls/metaboxes/attach-file.php:7
|
287 |
msgid "attached file is missing/deleted"
|
288 |
msgstr "fichier joint manquant/supprimé"
|
289 |
|
290 |
+
#: admin/tpls/metaboxes/attach-file.php:37
|
291 |
msgid "No file uploaded yet!"
|
292 |
msgstr "Aucun fichier mis en ligne pour le moment !"
|
293 |
|
294 |
+
#: admin/tpls/metaboxes/attach-file.php:46
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
msgid "Drop file here"
|
296 |
msgstr "Déposez le fichier ici"
|
297 |
|
298 |
+
#: admin/tpls/metaboxes/attach-file.php:68 tpls/asset-manager-ui.php:745
|
299 |
+
#: tpls3/asset-manager-ui.php:738 wpdm-functions.php:1480
|
300 |
msgid "Allowed Files"
|
301 |
msgstr "Fichiers autorisés"
|
302 |
|
303 |
+
#: admin/tpls/metaboxes/attach-file.php:147
|
304 |
msgid "Invalid File Type!"
|
305 |
msgstr "Type de fichier invalide !"
|
306 |
|
307 |
+
#: admin/tpls/metaboxes/attach-file.php:149
|
308 |
msgid "Unauthorized Access!"
|
309 |
msgstr "Accès non autorisé !"
|
310 |
|
311 |
+
#: admin/tpls/metaboxes/attach-file.php:153
|
312 |
+
#: admin/tpls/metaboxes/attach-file.php:252
|
313 |
msgid "Delete Current File"
|
314 |
msgstr "Supprime le fichier actuel"
|
315 |
|
316 |
+
#: admin/tpls/metaboxes/attach-file.php:186 admin/tpls/templates.php:369
|
317 |
msgid "Are you sure?"
|
318 |
msgstr "Confirmez-vous ?"
|
319 |
|
320 |
+
#: admin/tpls/metaboxes/attach-file.php:188
|
321 |
msgid ""
|
322 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
323 |
"circle\"></i> Removed!</div></div>"
|
325 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
326 |
"circle\"></i> Retiré !</div></div>"
|
327 |
|
328 |
+
#: admin/tpls/metaboxes/attach-file.php:200
|
329 |
+
#, fuzzy
|
330 |
+
#| msgid "Insert From Media Library"
|
331 |
+
msgid "Select from media library"
|
332 |
+
msgstr "Insérer depuis la bibliothèque de médias"
|
333 |
+
|
334 |
+
#: admin/tpls/metaboxes/attach-file.php:232
|
335 |
+
#, fuzzy
|
336 |
+
#| msgid "Add file(s) from server"
|
337 |
+
msgid "Select from server"
|
338 |
+
msgstr "Ajouter des fichiers depuis le serveur"
|
339 |
+
|
340 |
+
#: admin/tpls/metaboxes/icons.php:5
|
341 |
msgid "Icon URL"
|
342 |
msgstr "URL de l’icône"
|
343 |
|
353 |
msgstr "Doit accepter les conditions d’utilisation"
|
354 |
|
355 |
#: admin/tpls/metaboxes/lock-options.php:11
|
356 |
+
#, fuzzy
|
357 |
+
#| msgid "Terms Title:"
|
358 |
+
msgid "Terms Page:"
|
359 |
+
msgstr "Titre des conditions :"
|
360 |
+
|
361 |
+
#: admin/tpls/metaboxes/lock-options.php:12
|
362 |
+
msgid "Use custom content below"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: admin/tpls/metaboxes/lock-options.php:15
|
366 |
msgid "Terms Title:"
|
367 |
msgstr "Titre des conditions :"
|
368 |
|
369 |
+
#: admin/tpls/metaboxes/lock-options.php:19
|
370 |
msgid "Terms and Conditions:"
|
371 |
msgstr "Conditions d‘utilisation :"
|
372 |
|
373 |
+
#: admin/tpls/metaboxes/lock-options.php:24
|
374 |
msgid "Terms Checkbox Label:"
|
375 |
msgstr "Libellé de la case à cocher confirmant l’acceptation des conditions :"
|
376 |
|
377 |
+
#: admin/tpls/metaboxes/lock-options.php:33
|
378 |
msgid "Enable Password Lock"
|
379 |
msgstr "Activer la protection par mot de passe"
|
380 |
|
381 |
+
#: admin/tpls/metaboxes/lock-options.php:36
|
382 |
msgid "Password:"
|
383 |
msgstr "Mot de passe :"
|
384 |
|
385 |
+
#: admin/tpls/metaboxes/lock-options.php:39
|
386 |
msgid ""
|
387 |
"If you want to use multiple passwords, keep each one inside [], like [123]"
|
388 |
"[456][789]"
|
390 |
"Si vous souhaitez utiliser plusieurs mots de passe, saisissez chacun d’entre "
|
391 |
"eux entre crochets. Comme ceci : [123][456][789]."
|
392 |
|
393 |
+
#: admin/tpls/metaboxes/lock-options.php:48
|
394 |
msgid "Enable Captcha Lock"
|
395 |
msgstr "Activer la protection par CAPTCHA"
|
396 |
|
397 |
+
#: admin/tpls/metaboxes/lock-options.php:51
|
398 |
msgid "Please configure reCAPTCHA"
|
399 |
msgstr "Veuillez configurer reCAPTCHA"
|
400 |
|
401 |
+
#: admin/tpls/metaboxes/lock-options.php:52
|
402 |
msgid "Users will be asked for reCAPTCHA verification before download."
|
403 |
msgstr "Les utilisateurs devront valider le reCAPTCHA avant de télécharger."
|
404 |
|
414 |
msgid "Version:"
|
415 |
msgstr "Version :"
|
416 |
|
417 |
+
#: admin/tpls/metaboxes/package-settings.php:28
|
418 |
msgid "Link Label:"
|
419 |
msgstr "Libellé du lien :"
|
420 |
|
421 |
+
#: admin/tpls/metaboxes/package-settings.php:29
|
422 |
+
#: admin/tpls/settings/addon-update.php:61
|
423 |
+
#: admin/tpls/settings/addon-update.php:107
|
424 |
+
#: admin/tpls/settings/user-interface.php:115
|
425 |
+
#: admin/tpls/settings/user-interface.php:145 libs/class.FileList.php:98
|
426 |
+
#: libs/class.FileList.php:100 libs/class.FileList.php:136
|
427 |
+
#: libs/class.FileList.php:138 libs/class.FileList.php:203
|
428 |
+
#: libs/class.FileList.php:250 libs/class.FileList.php:305
|
429 |
+
#: libs/class.Package.php:77 libs/class.Package.php:155
|
430 |
+
#: libs/class.Package.php:634 libs/class.Package.php:659
|
431 |
+
#: libs/class.Package.php:726 libs/class.Package.php:819
|
432 |
+
#: libs/class.Package.php:851 libs/class.Package.php:1295
|
433 |
+
#: libs/class.PackageLocks.php:74 libs/class.PackageLocks.php:111
|
434 |
+
#: tpls/lock-options-iframe.php:289 tpls/lock-options/password-lock.php:41
|
435 |
+
#: tpls/lock-options/recaptcha-lock.php:24 tpls/wpdm-all-downloads.php:191
|
436 |
+
#: tpls/wpdm-all-downloads.php:347 tpls/wpdm-asset.php:21
|
437 |
+
#: tpls3/lock-options-iframe.php:243 tpls3/lock-options/password-lock.php:41
|
438 |
+
#: tpls3/lock-options/recaptcha-lock.php:24 tpls3/wpdm-all-downloads.php:160
|
439 |
+
#: tpls3/wpdm-asset.php:21 wpdm-functions.php:94 wpdm-functions.php:119
|
440 |
+
#: wpdm-functions.php:187
|
441 |
+
msgid "Download"
|
442 |
+
msgstr "Télécharger"
|
443 |
+
|
444 |
+
#: admin/tpls/metaboxes/package-settings.php:33
|
445 |
msgid "File Size:"
|
446 |
msgstr "Taille du fichier :"
|
447 |
|
448 |
+
#: admin/tpls/metaboxes/package-settings.php:39
|
449 |
msgid "Stock Limit:"
|
450 |
msgstr "Nombre limite de téléchargement :"
|
451 |
|
452 |
+
#: admin/tpls/metaboxes/package-settings.php:40
|
453 |
+
msgid "Unlimited"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: admin/tpls/metaboxes/package-settings.php:46
|
457 |
msgid "View Count:"
|
458 |
msgstr "Nombre de vues :"
|
459 |
|
460 |
+
#: admin/tpls/metaboxes/package-settings.php:51
|
461 |
msgid "Download Count:"
|
462 |
msgstr "Nombre de téléchargements :"
|
463 |
|
464 |
+
#: admin/tpls/metaboxes/package-settings.php:57
|
465 |
msgid "Allow Access:"
|
466 |
msgstr "Autoriser l’accès :"
|
467 |
|
468 |
+
#: admin/tpls/metaboxes/package-settings.php:59
|
469 |
msgid "Who should be able to download?"
|
470 |
msgstr "Qui devrait pouvoir télécharger ?"
|
471 |
|
472 |
+
#: admin/tpls/metaboxes/package-settings.php:88
|
473 |
msgid "Page Template:"
|
474 |
msgstr "Modèle de page :"
|
475 |
|
476 |
+
#: admin/tpls/metaboxes/package-settings.php:99
|
477 |
msgid "Master Key"
|
478 |
msgstr "Clé passe-partout"
|
479 |
|
480 |
+
#: admin/tpls/metaboxes/package-settings.php:100
|
481 |
msgid "Regenerate Master Key for Download"
|
482 |
msgstr "Générer une nouvelle clé passe-partout pour le téléchargement"
|
483 |
|
484 |
+
#: admin/tpls/metaboxes/package-settings.php:100
|
485 |
msgid "This key can be used for direct download"
|
486 |
msgstr "Cette clé peut être utilisée pour un téléchargement direct"
|
487 |
|
497 |
msgid "Check For Updates"
|
498 |
msgstr "Vérifier les mises à jour"
|
499 |
|
500 |
+
#: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:23
|
501 |
+
#: tpls/wpdm-dashboard.php:30 tpls3/already-logged-in.php:23
|
502 |
+
#: tpls3/wpdm-dashboard.php:28
|
503 |
msgid "Logout"
|
504 |
msgstr "Se déconnecter"
|
505 |
|
525 |
msgstr "Modules gratuits"
|
526 |
|
527 |
#: admin/tpls/settings/addon-update.php:58
|
528 |
+
#: admin/tpls/settings/addon-update.php:104
|
529 |
msgid "Product Name"
|
530 |
msgstr "Nom du produit"
|
531 |
|
532 |
#: admin/tpls/settings/addon-update.php:59
|
533 |
+
#: admin/tpls/settings/addon-update.php:105
|
534 |
msgid "Active(v)"
|
535 |
msgstr "Version active"
|
536 |
|
537 |
#: admin/tpls/settings/addon-update.php:60
|
538 |
+
#: admin/tpls/settings/addon-update.php:106
|
539 |
msgid "Latest(v)"
|
540 |
msgstr "Dernière version"
|
541 |
|
542 |
+
#: admin/tpls/settings/addon-update.php:86
|
543 |
+
#: admin/tpls/settings/addon-update.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
544 |
msgid "Install"
|
545 |
msgstr "Installer"
|
546 |
|
547 |
+
#: admin/tpls/settings/addon-update.php:88
|
548 |
+
#: admin/tpls/settings/addon-update.php:129
|
549 |
msgid "Update"
|
550 |
msgstr "Mettre à jour"
|
551 |
|
552 |
+
#: admin/tpls/settings/addon-update.php:89
|
553 |
+
#: admin/tpls/settings/addon-update.php:130
|
554 |
msgid "Updated"
|
555 |
msgstr "Mis à jour"
|
556 |
|
557 |
+
#: admin/tpls/settings/addon-update.php:91
|
558 |
msgid "Expired"
|
559 |
msgstr "Expiré"
|
560 |
|
561 |
+
#: admin/tpls/settings/addon-update.php:145 tpls/lost-password-form.php:59
|
562 |
+
#: tpls/reset-password-form.php:48 tpls/wpdm-reg-form.php:103
|
563 |
+
#: tpls3/lost-password-form.php:41 tpls3/reset-password-form.php:48
|
564 |
+
#: tpls3/wpdm-reg-form.php:106
|
565 |
msgid "Please Wait..."
|
566 |
msgstr "Veuillez patienter…"
|
567 |
|
568 |
+
#: admin/tpls/settings/addon-update.php:147
|
569 |
msgid "Success!"
|
570 |
msgstr "Réussi !"
|
571 |
|
597 |
msgid "File Browser Access:"
|
598 |
msgstr "Accès au navigateur de fichiers :"
|
599 |
|
600 |
+
#: admin/tpls/settings/basic.php:67
|
601 |
msgid "Who will have access to server file browser"
|
602 |
msgstr "Qui aura accès au navigateur de fichiers serveur ?"
|
603 |
|
604 |
+
#: admin/tpls/settings/basic.php:99
|
605 |
msgid "Upload Settings"
|
606 |
msgstr "Réglages pour la mise en ligne"
|
607 |
|
608 |
+
#: admin/tpls/settings/basic.php:103
|
609 |
msgid "Sanitize Filename"
|
610 |
msgstr "Nettoyer le nom des fichiers"
|
611 |
|
612 |
+
#: admin/tpls/settings/basic.php:104
|
613 |
msgid ""
|
614 |
"Check the option if you want to sanitize uploaded file names to remove "
|
615 |
"illegal chars"
|
617 |
"Cochez la case si vous souhaitez nettoyer les noms des fichiers téléchargés "
|
618 |
"afin de supprimer les caractères non autorisés."
|
619 |
|
620 |
+
#: admin/tpls/settings/basic.php:111
|
621 |
msgid "Chunk Upload"
|
622 |
msgstr "Téléversement par fragments"
|
623 |
|
624 |
+
#: admin/tpls/settings/basic.php:112
|
625 |
msgid ""
|
626 |
"Check the option if you want to enable chunk upload to override http upload "
|
627 |
"limits"
|
629 |
"Cocher l’option si vous souhaitez activer le téléversement par fragments "
|
630 |
"afin d’outrepasser les limites de téléversement HTTP"
|
631 |
|
632 |
+
#: admin/tpls/settings/basic.php:117
|
633 |
msgid "Chunk Size"
|
634 |
msgstr "Taille des fragments"
|
635 |
|
636 |
+
#: admin/tpls/settings/basic.php:130
|
637 |
msgid "File Download"
|
638 |
msgstr "Téléchargement de fichiers"
|
639 |
|
640 |
+
#: admin/tpls/settings/basic.php:134
|
641 |
msgid "Download Speed:"
|
642 |
msgstr "Vitesse de téléchargement :"
|
643 |
|
644 |
+
#: admin/tpls/settings/basic.php:142
|
645 |
msgid "Blocked IPs"
|
646 |
msgstr "Adresses IP bloquées"
|
647 |
|
648 |
+
#: admin/tpls/settings/basic.php:144
|
649 |
msgid "One IP per line"
|
650 |
msgstr "Une adresse IP par ligne"
|
651 |
|
652 |
+
#: admin/tpls/settings/basic.php:145
|
653 |
msgid ""
|
654 |
"List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 "
|
655 |
"or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
|
659 |
"192.168.23.12 ou 192.168.23.1/24 ou 192.168.23.*, IPv6 - 2a01:8760:2:3001::1 "
|
660 |
"ou 2620:112:3000::/44)"
|
661 |
|
662 |
+
#: admin/tpls/settings/basic.php:148
|
663 |
msgid "Write a Message for Blocked IPs"
|
664 |
msgstr "Écrivez un message pour les adresses IP bloquées"
|
665 |
|
666 |
+
#: admin/tpls/settings/basic.php:149
|
667 |
msgid "Message for Blocked IPs"
|
668 |
msgstr "Message pour les adresses IP bloquées"
|
669 |
|
670 |
+
#: admin/tpls/settings/basic.php:153
|
671 |
msgid ""
|
672 |
"If you get broken download, then try enabling/disabling following options, "
|
673 |
"as sometimes server may not support output buffering or partial downloads"
|
676 |
"suivantes, car parfois le serveur ne supporte pas la temporisation de sortie "
|
677 |
"(output buffering) ou les téléchargements partiels"
|
678 |
|
679 |
+
#: admin/tpls/settings/basic.php:156
|
680 |
msgid "Resumable Downloads"
|
681 |
msgstr "Reprise des téléchargements"
|
682 |
|
683 |
+
#: admin/tpls/settings/basic.php:158 admin/tpls/settings/basic.php:165
|
684 |
msgid "Enabled"
|
685 |
msgstr "Activé"
|
686 |
|
687 |
+
#: admin/tpls/settings/basic.php:159 admin/tpls/settings/basic.php:166
|
688 |
msgid "Disabled"
|
689 |
msgstr "Désactivé"
|
690 |
|
691 |
+
#: admin/tpls/settings/basic.php:163
|
692 |
msgid "Output Buffering"
|
693 |
msgstr "Temporisation de sortie (output buffering)"
|
694 |
|
695 |
+
#: admin/tpls/settings/basic.php:172
|
696 |
msgid "Open in Browser"
|
697 |
msgstr "Ouvrir dans le navigateur"
|
698 |
|
699 |
+
#: admin/tpls/settings/basic.php:173
|
700 |
msgid ""
|
701 |
"Try to Open in Browser instead of download when someone clicks on download "
|
702 |
"link"
|
705 |
"visiteur clique sur le lien de téléchargement"
|
706 |
|
707 |
#: admin/tpls/settings/basic.php:178
|
708 |
+
#, fuzzy
|
709 |
+
#| msgid "Download Link"
|
710 |
+
msgid "Mask Download Link"
|
711 |
+
msgstr "Lien de téléchargement"
|
712 |
+
|
713 |
+
#: admin/tpls/settings/basic.php:179
|
714 |
+
#, fuzzy
|
715 |
+
#| msgid "Download Link"
|
716 |
+
msgid "Unmask Download Link"
|
717 |
+
msgstr "Lien de téléchargement"
|
718 |
+
|
719 |
+
#: admin/tpls/settings/basic.php:180
|
720 |
+
msgid ""
|
721 |
+
"Check this option if you want to mask/unmask file download link. If you "
|
722 |
+
"unmask download link, bots will be able the find any public download link "
|
723 |
+
"easily."
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: admin/tpls/settings/basic.php:184
|
727 |
msgid "reCAPTCHA Lock Settings"
|
728 |
msgstr "Réglages de la protection par reCAPTCHA"
|
729 |
|
730 |
+
#: admin/tpls/settings/basic.php:186
|
731 |
msgid "reCAPTCHA Site Key"
|
732 |
msgstr "Clé du site reCAPTCHA"
|
733 |
|
734 |
+
#: admin/tpls/settings/basic.php:188
|
735 |
msgid ""
|
736 |
"Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
|
737 |
"www.google.com/recaptcha/admin#list\">here</a>"
|
739 |
"Enregistrer un nouveau site pour reCAPTCHA <a target=\"_blank\" href="
|
740 |
"\"https://www.google.com/recaptcha/admin#list\">ici</a>"
|
741 |
|
742 |
+
#: admin/tpls/settings/basic.php:191
|
743 |
msgid "reCAPTCHA Secret Key"
|
744 |
msgstr "Clé secrète reCAPTCHA"
|
745 |
|
746 |
+
#: admin/tpls/settings/basic.php:196
|
747 |
+
msgid "Enable sign up form CAPTCHA validation"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: admin/tpls/settings/basic.php:200
|
751 |
+
msgid "Enable sign in form CAPTCHA validation"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: admin/tpls/settings/basic.php:212
|
755 |
msgid "Misc Settings"
|
756 |
msgstr "Réglages divers"
|
757 |
|
758 |
+
#: admin/tpls/settings/basic.php:217
|
759 |
msgid "Login Page"
|
760 |
msgstr "Page de connexion"
|
761 |
|
762 |
+
#: admin/tpls/settings/basic.php:218 admin/tpls/settings/basic.php:227
|
763 |
+
#: admin/tpls/settings/basic.php:235
|
764 |
msgid "None Selected"
|
765 |
msgstr "Aucune sélection"
|
766 |
|
767 |
+
#: admin/tpls/settings/basic.php:219 admin/tpls/settings/basic.php:228
|
768 |
+
#: admin/tpls/settings/basic.php:236
|
769 |
#, php-format
|
770 |
msgid "The page where you used short-code %s"
|
771 |
msgstr "La page où vous avez utilisé le code court %s"
|
772 |
|
773 |
+
#: admin/tpls/settings/basic.php:220
|
774 |
+
msgid "Enable modal login form"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: admin/tpls/settings/basic.php:221
|
778 |
+
#, php-format
|
779 |
+
msgid ""
|
780 |
+
"%s will show the modal login form, <a target=\"_blank\" href=\"%s\">follow "
|
781 |
+
"the docs</a> for moore details"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: admin/tpls/settings/basic.php:226
|
785 |
msgid "Register Page"
|
786 |
msgstr "Page d’inscription"
|
787 |
|
788 |
+
#: admin/tpls/settings/basic.php:229
|
789 |
+
msgid "Enable email verification on signup"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: admin/tpls/settings/basic.php:230
|
793 |
+
msgid "Login automatically after signup is completed"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: admin/tpls/settings/basic.php:234
|
797 |
msgid "Dashboard Page"
|
798 |
msgstr "Page du tableau de bord"
|
799 |
|
800 |
+
#: admin/tpls/settings/basic.php:241
|
801 |
msgid "Include Packages in Main RSS Feed"
|
802 |
msgstr "Inclure wpdm à votre flux RSS principal"
|
803 |
|
804 |
+
#: admin/tpls/settings/basic.php:242
|
805 |
#, php-format
|
806 |
msgid ""
|
807 |
"Check this option if you want to show wpdm packages in your main <a target="
|
851 |
msgstr "Supprimer toutes les données statistiques"
|
852 |
|
853 |
#: admin/tpls/settings/user-interface.php:14
|
854 |
+
msgid "Active Bootstrap Version"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: admin/tpls/settings/user-interface.php:16
|
858 |
+
#, fuzzy
|
859 |
+
#| msgid "Bootstrap JS"
|
860 |
+
msgid "Bootstrap 4"
|
861 |
+
msgstr "JS Bootstrap"
|
862 |
+
|
863 |
+
#: admin/tpls/settings/user-interface.php:16
|
864 |
+
#, fuzzy
|
865 |
+
#| msgid "Bootstrap JS"
|
866 |
+
msgid "Bootstrap 3"
|
867 |
+
msgstr "JS Bootstrap"
|
868 |
+
|
869 |
+
#: admin/tpls/settings/user-interface.php:20
|
870 |
msgid "Disable Style & Script"
|
871 |
msgstr "Désactiver les styles et les scripts"
|
872 |
|
873 |
+
#: admin/tpls/settings/user-interface.php:26
|
874 |
msgid "Bootstrap JS"
|
875 |
msgstr "JS Bootstrap"
|
876 |
|
877 |
+
#: admin/tpls/settings/user-interface.php:27
|
878 |
msgid "Bootstrap CSS"
|
879 |
msgstr "CSS Bootstrap"
|
880 |
|
881 |
+
#: admin/tpls/settings/user-interface.php:28
|
882 |
msgid "Font Awesome"
|
883 |
msgstr "Font Awesome"
|
884 |
|
885 |
+
#: admin/tpls/settings/user-interface.php:29
|
886 |
msgid "Front CSS"
|
887 |
msgstr "CSS sur l’interface publique"
|
888 |
|
889 |
+
#: admin/tpls/settings/user-interface.php:30
|
890 |
msgid "Google Font"
|
891 |
msgstr "Google Font"
|
892 |
|
893 |
+
#: admin/tpls/settings/user-interface.php:32
|
894 |
msgid ""
|
895 |
"Because, sometimes your theme may have those scripts/styles enqueued already"
|
896 |
msgstr "Parce que parfois, votre thème a déjà ajouté ces scripts/styles."
|
897 |
|
898 |
+
#: admin/tpls/settings/user-interface.php:38
|
899 |
msgid "Colors"
|
900 |
msgstr "Couleurs"
|
901 |
|
902 |
+
#: admin/tpls/settings/user-interface.php:54
|
903 |
msgid "Primary:"
|
904 |
msgstr "Primaire :"
|
905 |
|
906 |
+
#: admin/tpls/settings/user-interface.php:60
|
907 |
msgid "Secondary:"
|
908 |
msgstr "Secondaire :"
|
909 |
|
910 |
+
#: admin/tpls/settings/user-interface.php:66
|
911 |
msgid "Info:"
|
912 |
msgstr "Info :"
|
913 |
|
914 |
+
#: admin/tpls/settings/user-interface.php:72
|
915 |
msgid "Success:"
|
916 |
msgstr "Succès :"
|
917 |
|
918 |
+
#: admin/tpls/settings/user-interface.php:78
|
919 |
msgid "Warning:"
|
920 |
msgstr "Avertissement :"
|
921 |
|
922 |
+
#: admin/tpls/settings/user-interface.php:84
|
923 |
msgid "Danger:"
|
924 |
msgstr "Danger :"
|
925 |
|
926 |
+
#: admin/tpls/settings/user-interface.php:96
|
927 |
msgid "Download Button"
|
928 |
msgstr "Bouton de téléchargement"
|
929 |
|
930 |
+
#: admin/tpls/settings/user-interface.php:100
|
931 |
msgid "Details Page"
|
932 |
msgstr "Page des détails"
|
933 |
|
934 |
+
#: admin/tpls/settings/user-interface.php:125
|
935 |
+
#: admin/tpls/settings/user-interface.php:155
|
936 |
msgid "Border Radius"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: admin/tpls/settings/user-interface.php:130
|
940 |
msgid "Shortcode Page"
|
941 |
msgstr "Page de code court"
|
942 |
|
949 |
msgstr "Exporter l’historique"
|
950 |
|
951 |
#: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
|
952 |
+
#: tpls/already-logged-in.php:22 tpls3/already-logged-in.php:22
|
953 |
msgid "Download History"
|
954 |
msgstr "Historique des téléchargements"
|
955 |
|
965 |
msgid "Download History is Empty"
|
966 |
msgstr "L’historique de téléchargement est vide."
|
967 |
|
968 |
+
#: admin/tpls/stats/history.php:123
|
969 |
+
#, fuzzy
|
970 |
+
#| msgid "From Name"
|
971 |
+
msgid "From Date"
|
972 |
+
msgstr "Nom de l’expéditeur"
|
973 |
+
|
974 |
+
#: admin/tpls/stats/history.php:133
|
975 |
+
msgid "To Date"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: admin/tpls/stats/history.php:143
|
979 |
+
#, fuzzy
|
980 |
+
#| msgid "User/IP"
|
981 |
+
msgid "Users"
|
982 |
+
msgstr "Utilisateur/IP"
|
983 |
+
|
984 |
+
#: admin/tpls/stats/history.php:172
|
985 |
+
#, fuzzy
|
986 |
+
#| msgid "Package Name"
|
987 |
+
msgid "Packages"
|
988 |
+
msgstr "Nom du paquet"
|
989 |
+
|
990 |
+
#: admin/tpls/stats/history.php:198
|
991 |
+
msgid "Filter"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: admin/tpls/stats/history.php:199
|
995 |
+
msgid "Reset"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: admin/tpls/stats/history.php:221 tpls/user-dashboard/download-history.php:7
|
999 |
+
#: tpls/user-dashboard/profile.php:115 tpls/user-dashboard/profile.php:145
|
1000 |
+
#: tpls3/user-dashboard/download-history.php:9
|
1001 |
+
#: tpls3/user-dashboard/profile.php:81
|
1002 |
msgid "Package Name"
|
1003 |
msgstr "Nom du paquet"
|
1004 |
|
1005 |
+
#: admin/tpls/stats/history.php:222 modules/strings.php:11
|
1006 |
+
#: widgets/class.PackageInfo.php:25 widgets/class.PackageInfo.php:121
|
1007 |
+
#, fuzzy
|
1008 |
+
#| msgid "Version:"
|
1009 |
+
msgid "Version"
|
1010 |
+
msgstr "Version :"
|
1011 |
+
|
1012 |
+
#: admin/tpls/stats/history.php:223 tpls/user-dashboard/download-history.php:8
|
1013 |
+
#: tpls/user-dashboard/profile.php:146
|
1014 |
+
#: tpls3/user-dashboard/download-history.php:10
|
1015 |
+
#: tpls3/user-dashboard/profile.php:82
|
1016 |
msgid "Download Time"
|
1017 |
msgstr "Heure de téléchargement"
|
1018 |
|
1019 |
+
#: admin/tpls/stats/history.php:224
|
1020 |
+
#, fuzzy
|
1021 |
+
#| msgid "User/IP"
|
1022 |
+
msgid "User"
|
1023 |
msgstr "Utilisateur/IP"
|
1024 |
|
1025 |
+
#: admin/tpls/stats/history.php:225 tpls/user-dashboard/download-history.php:9
|
1026 |
+
#: tpls/user-dashboard/profile.php:147
|
1027 |
+
#: tpls3/user-dashboard/download-history.php:11
|
1028 |
+
#: tpls3/user-dashboard/profile.php:83
|
1029 |
+
msgid "IP"
|
1030 |
+
msgstr "IP"
|
1031 |
+
|
1032 |
+
#: admin/tpls/stats/history.php:226
|
1033 |
+
#, fuzzy
|
1034 |
+
#| msgid "Browse"
|
1035 |
+
msgid "Browser"
|
1036 |
+
msgstr "Parcourir"
|
1037 |
+
|
1038 |
+
#: admin/tpls/stats/history.php:227
|
1039 |
+
msgid "OS"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
#: admin/tpls/templates.php:19
|
1043 |
#, php-format
|
1044 |
msgid ""
|
1048 |
"L’éditeur de modèle personnalisé est disponible avec <a target='_blank' "
|
1049 |
"href='%s'>WordPress Download Manager Pro</a>"
|
1050 |
|
1051 |
+
#: admin/tpls/templates.php:20
|
1052 |
+
#, php-format
|
1053 |
+
msgid ""
|
1054 |
+
"Please follow the <a target='_blank' href='%s'>documentation</a> to edit "
|
1055 |
+
"exiting template files"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: admin/tpls/templates.php:28
|
1059 |
msgid "Template Name"
|
1060 |
msgstr "Nom du modèle"
|
1061 |
|
1062 |
+
#: admin/tpls/templates.php:29
|
1063 |
msgid "Template ID"
|
1064 |
msgstr "ID du modèle"
|
1065 |
|
1066 |
+
#: admin/tpls/templates.php:31
|
1067 |
msgid "Actions"
|
1068 |
msgstr "Actions"
|
1069 |
|
1070 |
+
#: admin/tpls/templates.php:74
|
1071 |
msgid "To:"
|
1072 |
msgstr "À :"
|
1073 |
|
1074 |
+
#: admin/tpls/templates.php:82
|
1075 |
msgid "Edit"
|
1076 |
msgstr "Modifier"
|
1077 |
|
1078 |
+
#: admin/tpls/templates.php:123 admin/tpls/templates.php:124
|
1079 |
+
#: tpls/wpdm-edit-user-profile.php:23
|
1080 |
msgid "Logo URL"
|
1081 |
msgstr "URL du logo"
|
1082 |
|
1083 |
+
#: admin/tpls/templates.php:127 admin/tpls/templates.php:128
|
1084 |
msgid "Banner/Background Image URL"
|
1085 |
msgstr "URL de l’image de bannière/arrière-plan"
|
1086 |
|
1087 |
+
#: admin/tpls/templates.php:139
|
1088 |
msgid "Footer Text"
|
1089 |
msgstr "Texte du pied de page"
|
1090 |
|
1091 |
+
#: admin/tpls/templates.php:143
|
1092 |
msgid "Facebook Page URL"
|
1093 |
msgstr "URL de la page Facebook"
|
1094 |
|
1095 |
+
#: admin/tpls/templates.php:147
|
1096 |
msgid "Twitter Profile URL"
|
1097 |
msgstr "URL du profil Twitter"
|
1098 |
|
1099 |
+
#: admin/tpls/templates.php:151
|
1100 |
msgid "Youtube Profile URL"
|
1101 |
msgstr "URL du profil Youtube"
|
1102 |
|
1103 |
+
#: admin/tpls/templates.php:201
|
1104 |
msgid "Template Preview"
|
1105 |
msgstr "Aperçu du modèle"
|
1106 |
|
1107 |
+
#: admin/tpls/templates.php:207
|
1108 |
msgid ""
|
1109 |
"This is a preview, original template color scheme may look little different, "
|
1110 |
"but structure will be same"
|
1112 |
"Ceci est un aperçu, le jeu de couleurs du modèle original peut sembler "
|
1113 |
"légèrement différent mais la structure sera la même"
|
1114 |
|
1115 |
+
#: admin/tpls/templates.php:343
|
1116 |
msgid "Saving..."
|
1117 |
msgstr "Enregistrement…"
|
1118 |
|
1119 |
+
#: download-manager.php:202 download-manager.php:214
|
1120 |
+
#: libs/class.CategoryHandler.php:336 libs/class.CategoryHandler.php:356
|
1121 |
+
#: libs/class.ShortCodes.php:423 libs/class.UserProfile.php:20
|
1122 |
+
#: tpls/shortcodes/toolbar.php:43 tpls/shortcodes/toolbar.php:77
|
1123 |
+
#: tpls3/shortcodes/toolbar.php:43 tpls3/shortcodes/toolbar.php:77
|
1124 |
+
#: wpdm-functions.php:823 wpdm-functions.php:842
|
1125 |
msgid "Downloads"
|
1126 |
msgstr "Téléchargements"
|
1127 |
|
1128 |
+
#: download-manager.php:203 libs/class.FileList.php:69
|
1129 |
msgid "File"
|
1130 |
msgstr "Fichier"
|
1131 |
|
1132 |
+
#: download-manager.php:204
|
1133 |
msgid "Add New"
|
1134 |
msgstr "Ajouter"
|
1135 |
|
1136 |
+
#: download-manager.php:205
|
1137 |
msgid "Add New File"
|
1138 |
msgstr "Ajouter un nouveau fichier"
|
1139 |
|
1140 |
+
#: download-manager.php:206
|
1141 |
msgid "Edit File"
|
1142 |
msgstr "Modifier le fichier"
|
1143 |
|
1144 |
+
#: download-manager.php:207
|
1145 |
msgid "New File"
|
1146 |
msgstr "Nouveau fichier"
|
1147 |
|
1148 |
+
#: download-manager.php:208
|
1149 |
msgid "All Files"
|
1150 |
msgstr "Tous les fichiers"
|
1151 |
|
1152 |
+
#: download-manager.php:209
|
1153 |
msgid "View File"
|
1154 |
msgstr "Voir le fichier"
|
1155 |
|
1156 |
+
#: download-manager.php:210
|
1157 |
msgid "Search Files"
|
1158 |
msgstr "Rechercher des fichiers"
|
1159 |
|
1160 |
+
#: download-manager.php:211
|
1161 |
msgid "No File Found"
|
1162 |
msgstr "Aucun fichier trouvé"
|
1163 |
|
1164 |
+
#: download-manager.php:212
|
1165 |
msgid "No Files found in Trash"
|
1166 |
msgstr "Aucun fichier trouvé dans la corbeille"
|
1167 |
|
1168 |
+
#: download-manager.php:243 download-manager.php:253
|
1169 |
+
#: tpls/wpdm-all-downloads.php:189 tpls3/wpdm-all-downloads.php:158
|
1170 |
msgid "Categories"
|
1171 |
msgstr "Catégories"
|
1172 |
|
1173 |
+
#: download-manager.php:244
|
1174 |
msgid "Category"
|
1175 |
msgstr "Catégorie"
|
1176 |
|
1177 |
+
#: download-manager.php:245
|
1178 |
msgid "Search Categories"
|
1179 |
msgstr "Rechercher dans les catégories"
|
1180 |
|
1181 |
+
#: download-manager.php:246
|
1182 |
msgid "All Categories"
|
1183 |
msgstr "Toutes les catégories"
|
1184 |
|
1185 |
+
#: download-manager.php:247
|
1186 |
msgid "Parent Category"
|
1187 |
msgstr "Catégorie parente"
|
1188 |
|
1189 |
+
#: download-manager.php:248
|
1190 |
msgid "Parent Category:"
|
1191 |
msgstr "Catégorie parente :"
|
1192 |
|
1193 |
+
#: download-manager.php:249
|
1194 |
msgid "Edit Category"
|
1195 |
msgstr "Modifier la catégorie"
|
1196 |
|
1197 |
+
#: download-manager.php:250
|
1198 |
msgid "Update Category"
|
1199 |
msgstr "Mettre à jour la catégorie"
|
1200 |
|
1201 |
+
#: download-manager.php:251
|
1202 |
msgid "Add New Category"
|
1203 |
msgstr "Ajouter une nouvelle catégorie"
|
1204 |
|
1205 |
+
#: download-manager.php:252
|
1206 |
msgid "New Category Name"
|
1207 |
msgstr "Nom de la nouvelle catégorie"
|
1208 |
|
1209 |
+
#: libs/class.Apply.php:162 libs/class.Apply.php:249
|
1210 |
+
msgid "Invalid CAPTCHA!"
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: libs/class.Apply.php:195 tpls/wpdm-reg-form.php:112
|
1214 |
+
#: tpls3/wpdm-reg-form.php:115
|
1215 |
+
msgid "Success! Redirecting..."
|
1216 |
+
msgstr "Réussi ! Redirection…"
|
1217 |
+
|
1218 |
+
#: libs/class.Apply.php:232
|
1219 |
msgid "Something is Wrong! Please refresh the page and try again"
|
1220 |
msgstr "Quelque chose ne va pas ! Veuillez rafraîchir la page et réessayer."
|
1221 |
|
1222 |
+
#: libs/class.Apply.php:262
|
1223 |
msgid "Error: User registration is disabled!"
|
1224 |
msgstr "Erreur : l’inscription d’utilisateurs est désactivée !"
|
1225 |
|
1226 |
+
#: libs/class.Apply.php:287
|
1227 |
msgid "Username is Empty!"
|
1228 |
msgstr "L’identifiant est vide !"
|
1229 |
|
1230 |
+
#: libs/class.Apply.php:302
|
1231 |
+
#, fuzzy
|
1232 |
+
#| msgid "Invalid Email Address!"
|
1233 |
+
msgid "Invalid email address!"
|
1234 |
msgstr "Adresse de messagerie non valide."
|
1235 |
|
1236 |
+
#: libs/class.Apply.php:326
|
1237 |
+
#, fuzzy
|
1238 |
+
#| msgid "Last Updated"
|
1239 |
+
msgid "Passwords not matched!"
|
1240 |
+
msgstr "Dernière mise à jour"
|
1241 |
|
1242 |
+
#: libs/class.Apply.php:403
|
1243 |
msgid "Edit User"
|
1244 |
msgstr "Modifier l’utilisateur·rice"
|
1245 |
|
1246 |
+
#: libs/class.Apply.php:422
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1247 |
msgid ""
|
1248 |
"Your account has been created successfully and login info sent to your mail "
|
1249 |
"address."
|
1251 |
"Votre compte a bien été crée et les informations de connexion ont été "
|
1252 |
"envoyées à votre adresse e-mail."
|
1253 |
|
1254 |
+
#: libs/class.Apply.php:424 libs/class.Apply.php:430
|
1255 |
+
#, fuzzy
|
1256 |
+
#| msgid "Your account has been created successfully"
|
1257 |
+
msgid "Your account has been created successfully."
|
1258 |
msgstr "Votre compte a bien été crée"
|
1259 |
|
1260 |
+
#: libs/class.Apply.php:448
|
1261 |
+
#, fuzzy
|
1262 |
+
#| msgid "Email already exists."
|
1263 |
+
msgid "Email already exist!"
|
1264 |
msgstr "L’e-mail existe déjà."
|
1265 |
|
1266 |
+
#: libs/class.Apply.php:461
|
1267 |
msgid "Username already exists."
|
1268 |
msgstr "Cet identifiant existe déjà."
|
1269 |
|
1270 |
+
#: libs/class.Apply.php:526 libs/class.Apply.php:529
|
1271 |
#, fuzzy
|
1272 |
#| msgid "Security token is expired! Refresh the page and try again."
|
1273 |
msgid "Session Expired! Please try again."
|
1274 |
msgstr "Le jeton de sécurité a expiré ! Rafraîchissez la page et réessayez."
|
1275 |
|
1276 |
+
#: libs/class.Apply.php:676
|
1277 |
msgid "You don't have permission to download this file"
|
1278 |
msgstr "Vous n‘avez pas le droit de télécharger ce fichier."
|
1279 |
|
1280 |
+
#: libs/class.Apply.php:683
|
1281 |
msgid "Download link is expired. Please get new download link."
|
1282 |
msgstr ""
|
1283 |
"Le lien de téléchargement a expiré. Veuillez récupérer un nouveau lien de "
|
1284 |
"téléchargement."
|
1285 |
|
1286 |
+
#: libs/class.Apply.php:685
|
1287 |
msgid "Download link is expired or not valid. Please get new download link."
|
1288 |
msgstr ""
|
1289 |
"Le lien de téléchargement a expiré ou n’est pas valide. Veuillez récupérer "
|
1290 |
"un nouveau lien de téléchargement."
|
1291 |
|
1292 |
+
#: libs/class.Apply.php:692
|
1293 |
msgid "Stock Limit Reached"
|
1294 |
msgstr "Nombre limite de téléchargement atteint"
|
1295 |
|
1296 |
+
#: libs/class.Apply.php:698
|
1297 |
msgid "Invalid download link."
|
1298 |
msgstr "Lien de téléchargement invalide."
|
1299 |
|
1300 |
+
#: libs/class.AssetManager.php:156
|
1301 |
+
#, fuzzy
|
1302 |
+
#| msgid "Download link is expired or not valid. Please get new download link."
|
1303 |
+
msgid ""
|
1304 |
+
"Download link is expired! Go back and Refresh the page to regenerate "
|
1305 |
+
"download link"
|
1306 |
+
msgstr ""
|
1307 |
+
"Le lien de téléchargement a expiré ou n’est pas valide. Veuillez récupérer "
|
1308 |
+
"un nouveau lien de téléchargement."
|
1309 |
|
1310 |
+
#: libs/class.AssetManager.php:180
|
1311 |
+
msgid "Asset Manager"
|
1312 |
+
msgstr ""
|
1313 |
|
1314 |
+
#: libs/class.AssetManager.php:197 libs/class.AssetManager.php:212
|
1315 |
+
#: libs/class.AssetManager.php:234 libs/class.AssetManager.php:236
|
1316 |
+
#: libs/class.AssetManager.php:292 libs/class.AssetManager.php:294
|
1317 |
+
#: libs/class.AssetManager.php:308 libs/class.AssetManager.php:310
|
1318 |
+
#: libs/class.AssetManager.php:325 libs/class.AssetManager.php:327
|
1319 |
+
#: libs/class.AssetManager.php:344 libs/class.AssetManager.php:346
|
1320 |
+
#: libs/class.AssetManager.php:390 libs/class.AssetManager.php:409
|
1321 |
+
#: libs/class.AssetManager.php:411 libs/class.AssetManager.php:421
|
1322 |
+
#: libs/class.AssetManager.php:423 libs/class.AssetManager.php:433
|
1323 |
+
#: libs/class.AssetManager.php:435 libs/class.AssetManager.php:444
|
1324 |
+
#: libs/class.AssetManager.php:446 libs/class.AssetManager.php:458
|
1325 |
+
#: libs/class.AssetManager.php:460 libs/class.AssetManager.php:470
|
1326 |
+
#: libs/class.AssetManager.php:472 libs/class.AssetManager.php:493
|
1327 |
+
#: libs/class.AssetManager.php:495 libs/class.AssetManager.php:513
|
1328 |
+
#: libs/class.AssetManager.php:515 libs/class.AssetManager.php:541
|
1329 |
+
#: libs/class.AssetManager.php:543
|
1330 |
+
msgid "Error! Session Expired. Try refreshing page."
|
1331 |
+
msgstr ""
|
1332 |
|
1333 |
+
#: libs/class.AssetManager.php:203 libs/class.AssetManager.php:218
|
1334 |
+
#: libs/class.AssetManager.php:241 libs/class.AssetManager.php:300
|
1335 |
+
#: libs/class.AssetManager.php:316 libs/class.AssetManager.php:331
|
1336 |
+
#: libs/class.AssetManager.php:349 libs/class.AssetManager.php:395
|
1337 |
+
#: libs/class.AssetManager.php:400 libs/class.AssetManager.php:477
|
1338 |
+
#: libs/class.AssetManager.php:639
|
1339 |
+
msgid "Error! Unauthorized Path."
|
1340 |
+
msgstr ""
|
1341 |
|
1342 |
+
#: libs/class.AssetManager.php:214 libs/class.AssetManager.php:392
|
1343 |
+
#, fuzzy
|
1344 |
+
#| msgid "Unauthorized Access!"
|
1345 |
+
msgid "Error! Unauthorized Access."
|
1346 |
+
msgstr "Accès non autorisé !"
|
1347 |
|
1348 |
+
#: libs/class.AssetManager.php:222 libs/class.AssetManager.php:479
|
1349 |
+
#: libs/class.AssetManager.php:503 libs/class.AssetManager.php:522
|
1350 |
+
#: libs/class.AssetManager.php:555
|
1351 |
+
msgid "Error! FileType is not allowed."
|
1352 |
+
msgstr ""
|
1353 |
|
1354 |
+
#: libs/class.AssetManager.php:275 tpls/lost-password-form.php:33
|
1355 |
+
#: tpls3/lost-password-form.php:28
|
1356 |
+
msgid "Home"
|
1357 |
+
msgstr ""
|
|
|
1358 |
|
1359 |
+
#: libs/class.AssetManager.php:295 libs/class.AssetManager.php:311
|
1360 |
+
msgid "<b>Unauthorized Action!</b><br/>Execution is cancelled by the system."
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: libs/class.AssetManager.php:527 libs/class.AssetManager.php:551
|
1364 |
#, fuzzy
|
1365 |
+
#| msgid "Template ID"
|
1366 |
+
msgid "Invalid source path"
|
1367 |
+
msgstr "ID du modèle"
|
1368 |
|
1369 |
+
#: libs/class.AssetManager.php:528 libs/class.AssetManager.php:552
|
1370 |
+
msgid "Invalid destination path"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: libs/class.AssetManager.php:536
|
1374 |
+
#, fuzzy
|
1375 |
+
#| msgid "Privacy Settings Saved Successfully"
|
1376 |
+
msgid "File moved successfully"
|
1377 |
+
msgstr "Les réglages de confidentialité ont bien été sauvegardés"
|
1378 |
+
|
1379 |
+
#: libs/class.AssetManager.php:559
|
1380 |
+
msgid "File copied successfully"
|
1381 |
+
msgstr ""
|
1382 |
+
|
1383 |
+
#: libs/class.AssetManager.php:606
|
1384 |
+
msgid "Asset not found!"
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: libs/class.AssetManager.php:638
|
1388 |
+
msgid "Error! Only Administrator can execute this operation."
|
1389 |
+
msgstr ""
|
1390 |
+
|
1391 |
+
#: libs/class.AssetManager.php:640
|
1392 |
+
msgid "Error! Invalid Destination Path."
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: libs/class.AssetManager.php:641
|
1396 |
+
#, fuzzy
|
1397 |
+
#| msgid "Please activate \"zlib\" in your server"
|
1398 |
+
msgid "Please activate \"zlib\" in your server to perform zip operations"
|
1399 |
+
msgstr "Veuillez activer « zlib » sur votre serveur"
|
1400 |
+
|
1401 |
+
#: libs/class.AssetManager.php:646
|
1402 |
+
msgid "Unzipped successfully."
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: libs/class.AssetManager.php:648
|
1406 |
+
msgid "Error! Couldn't open the zip file."
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: libs/class.CategoryHandler.php:336 wpdm-functions.php:823
|
1410 |
+
msgid "Sub-Categories"
|
1411 |
+
msgstr "Sous-catégories"
|
1412 |
+
|
1413 |
+
#: libs/class.CategoryHandler.php:355 libs/class.ShortCodes.php:422
|
1414 |
+
#: modules/strings.php:18 tpls/shortcodes/toolbar.php:41
|
1415 |
+
#: tpls/shortcodes/toolbar.php:75 tpls/wpdm-edit-user-profile.php:15
|
1416 |
+
#: tpls3/shortcodes/toolbar.php:41 tpls3/shortcodes/toolbar.php:75
|
1417 |
+
#: wpdm-functions.php:841
|
1418 |
+
msgid "Title"
|
1419 |
+
msgstr "Titre"
|
1420 |
+
|
1421 |
+
#: libs/class.CategoryHandler.php:357 libs/class.ShortCodes.php:424
|
1422 |
+
#: tpls/shortcodes/toolbar.php:40 tpls/shortcodes/toolbar.php:74
|
1423 |
+
#: tpls3/shortcodes/toolbar.php:40 tpls3/shortcodes/toolbar.php:74
|
1424 |
+
#: widgets/class.PackageInfo.php:22 widgets/class.PackageInfo.php:119
|
1425 |
+
#: wpdm-functions.php:843
|
1426 |
+
msgid "Publish Date"
|
1427 |
+
msgstr "Date de publication"
|
1428 |
+
|
1429 |
+
#: libs/class.CategoryHandler.php:358 libs/class.ShortCodes.php:425
|
1430 |
+
#: tpls/shortcodes/toolbar.php:42 tpls/shortcodes/toolbar.php:76
|
1431 |
+
#: tpls3/shortcodes/toolbar.php:42 tpls3/shortcodes/toolbar.php:76
|
1432 |
+
#: widgets/class.PackageInfo.php:120 wpdm-functions.php:844
|
1433 |
+
msgid "Update Date"
|
1434 |
+
msgstr "Date de mise à jour"
|
1435 |
+
|
1436 |
+
#: libs/class.CategoryHandler.php:359 libs/class.ShortCodes.php:426
|
1437 |
+
#: wpdm-functions.php:845
|
1438 |
+
msgid "Asc"
|
1439 |
+
msgstr "Asc."
|
1440 |
+
|
1441 |
+
#: libs/class.CategoryHandler.php:360 libs/class.ShortCodes.php:427
|
1442 |
+
#: wpdm-functions.php:846
|
1443 |
+
msgid "Desc"
|
1444 |
+
msgstr "Desc."
|
1445 |
+
|
1446 |
+
#: libs/class.CategoryHandler.php:361 libs/class.ShortCodes.php:428
|
1447 |
+
#: wpdm-functions.php:847
|
1448 |
+
msgid "Search"
|
1449 |
+
msgstr "Rechercher"
|
1450 |
+
|
1451 |
+
#: libs/class.CategoryHandler.php:362 libs/class.ShortCodes.php:429
|
1452 |
+
#: wpdm-functions.php:848
|
1453 |
+
msgid "Order"
|
1454 |
+
msgstr "Tri"
|
1455 |
+
|
1456 |
+
#: libs/class.CategoryHandler.php:363 libs/class.ShortCodes.php:430
|
1457 |
+
#: wpdm-functions.php:849
|
1458 |
+
msgid "Order By"
|
1459 |
+
msgstr "Trier par"
|
1460 |
+
|
1461 |
+
#: libs/class.Email.php:43
|
1462 |
+
msgid "General Email Template"
|
1463 |
+
msgstr "Modèle général d’e-mail"
|
1464 |
+
|
1465 |
+
#: libs/class.Email.php:52 libs/class.Email.php:62
|
1466 |
+
msgid "User Signup Notification"
|
1467 |
+
msgstr "Notification pour l’inscription d’un utilisateur"
|
1468 |
+
|
1469 |
+
#: libs/class.Email.php:55
|
1470 |
+
#, php-format
|
1471 |
+
msgid "Welcome to %s"
|
1472 |
+
msgstr "Bienvenue sur %s"
|
1473 |
+
|
1474 |
+
#: libs/class.Email.php:65
|
1475 |
+
#, fuzzy, php-format
|
1476 |
+
#| msgid "[%s] New User Registration"
|
1477 |
+
msgid "[ %s ] New User Registration"
|
1478 |
+
msgstr "[%s] Inscription d’un·e nouvel·le utilisateur·rice"
|
1479 |
+
|
1480 |
+
#: libs/class.Email.php:69
|
1481 |
+
msgid "New user registration on your site WordPress Download Manager:"
|
1482 |
+
msgstr ""
|
1483 |
+
"Inscription d’une nouvelle utilisatrice ou utilisateur sur votre site "
|
1484 |
+
"WordPress Download Manager :"
|
1485 |
+
|
1486 |
+
#: libs/class.Email.php:73
|
1487 |
+
msgid "Password Reset Notification"
|
1488 |
+
msgstr "Notification pour la réinitialisation du mot de passe"
|
1489 |
+
|
1490 |
+
#: libs/class.Email.php:76
|
1491 |
+
#, php-format
|
1492 |
+
msgid "Request to reset your %s password"
|
1493 |
+
msgstr "Demande de réinitialisation de votre mot de passe pour le site %s"
|
1494 |
+
|
1495 |
+
#: libs/class.Email.php:83
|
1496 |
+
#, fuzzy
|
1497 |
+
#| msgid "New Package Notification"
|
1498 |
+
msgid "Email Lock Notification"
|
1499 |
+
msgstr "Notification pour un nouveau paquet"
|
1500 |
+
|
1501 |
+
#: libs/class.Email.php:86
|
1502 |
+
#, fuzzy
|
1503 |
+
#| msgid "Download Manager"
|
1504 |
+
msgid "Download [#package_name#]"
|
1505 |
+
msgstr "Download Manager"
|
1506 |
+
|
1507 |
+
#: libs/class.Email.php:93 wpdm-core.php:192
|
1508 |
+
msgid "New Package Notification"
|
1509 |
+
msgstr "Notification pour un nouveau paquet"
|
1510 |
+
|
1511 |
+
#: libs/class.Email.php:96
|
1512 |
+
msgid "New Package is Added By [#name#]"
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: libs/class.Email.php:260
|
1516 |
+
msgid "Sample Package Name"
|
1517 |
msgstr "Exemple de nom de paquet"
|
1518 |
|
1519 |
+
#: libs/class.FileList.php:64 libs/class.FileList.php:96
|
1520 |
+
#: libs/class.FileList.php:134 libs/class.FileList.php:202
|
1521 |
+
#: libs/class.User.php:62 libs/class.User.php:91 tpls3/wpdm-login-form.php:61
|
1522 |
+
#: tpls3/wpdm-login-modal-form.php:61
|
1523 |
msgid "Password"
|
1524 |
msgstr "Mot de passe"
|
1525 |
|
1526 |
+
#: libs/class.FileList.php:65
|
1527 |
msgid "Action"
|
1528 |
msgstr "Action"
|
1529 |
|
1530 |
+
#: libs/class.MediaAccessControl.php:60
|
1531 |
+
#, fuzzy
|
1532 |
+
#| msgid "Wrong Password! Try Again."
|
1533 |
+
msgid "<b>Error:</b> Wrong Password! Try Again."
|
1534 |
+
msgstr "Mot de passe incorrect ! Essayez à nouveau."
|
1535 |
+
|
1536 |
+
#: libs/class.MediaAccessControl.php:84
|
1537 |
+
msgid "Protected Media File"
|
1538 |
+
msgstr ""
|
1539 |
+
|
1540 |
+
#: libs/class.MediaAccessControl.php:84
|
1541 |
+
msgid "You are not allowed to access the media file"
|
1542 |
+
msgstr ""
|
1543 |
+
|
1544 |
+
#: libs/class.MediaAccessControl.php:160
|
1545 |
+
msgid "This file is not protected."
|
1546 |
+
msgstr ""
|
1547 |
|
1548 |
+
#: libs/class.MediaAccessControl.php:163
|
1549 |
+
msgid "Protect this file"
|
1550 |
+
msgstr ""
|
1551 |
|
1552 |
+
#: libs/class.MediaAccessControl.php:168
|
1553 |
+
msgid "This file is protected"
|
1554 |
+
msgstr ""
|
1555 |
|
1556 |
+
#: libs/class.MediaAccessControl.php:170
|
1557 |
+
msgid "Block Direct Access"
|
1558 |
+
msgstr ""
|
1559 |
|
1560 |
+
#: libs/class.MediaAccessControl.php:173
|
1561 |
+
msgid "Remove Protection"
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: libs/class.MediaAccessControl.php:207 libs/class.MediaAccessControl.php:222
|
1565 |
+
msgid "This file is not protected yet!"
|
1566 |
+
msgstr ""
|
1567 |
+
|
1568 |
+
#: libs/class.MediaAccessControl.php:209 libs/class.MediaAccessControl.php:224
|
1569 |
+
#: libs/class.MediaAccessControl.php:267
|
1570 |
+
msgid "Checking status..."
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: libs/class.MediaHandler.php:17
|
1574 |
+
#, fuzzy
|
1575 |
+
#| msgid "Download Manager Settings"
|
1576 |
+
msgid "Download Manager"
|
1577 |
+
msgstr "Réglages de Download Manager"
|
1578 |
+
|
1579 |
+
#: libs/class.Messages.php:103
|
1580 |
+
#, fuzzy
|
1581 |
+
#| msgid "Download Limit Exceeded"
|
1582 |
+
msgid "Download Limit Exceeded!"
|
1583 |
+
msgstr "Limite de téléchargement dépassée"
|
1584 |
+
|
1585 |
+
#: libs/class.Messages.php:111 libs/class.Package.php:921
|
1586 |
+
#: libs/class.ShortCodes.php:142 tpls/lost-password-form.php:34
|
1587 |
+
#: tpls/wpdm-login-form.php:63 tpls/wpdm-login-modal-form.php:75
|
1588 |
+
#: tpls/wpdm-reg-form.php:79 tpls3/lost-password-form.php:29
|
1589 |
+
#: tpls3/wpdm-login-form.php:101 tpls3/wpdm-login-modal-form.php:88
|
1590 |
+
#: tpls3/wpdm-reg-form.php:82
|
1591 |
+
msgid "Login"
|
1592 |
+
msgstr "Se connecter"
|
1593 |
+
|
1594 |
+
#: libs/class.Messages.php:119
|
1595 |
+
#, fuzzy
|
1596 |
+
#| msgid "Permission Denied"
|
1597 |
+
msgid "Access Denied"
|
1598 |
+
msgstr "Permission refusée"
|
1599 |
+
|
1600 |
+
#: libs/class.Package.php:28
|
1601 |
msgid "ID missing!"
|
1602 |
msgstr "ID manquant !"
|
1603 |
|
1604 |
+
#: libs/class.Package.php:130 libs/class.Package.php:133
|
1605 |
+
#: libs/class.Package.php:135
|
1606 |
msgid "Icon"
|
1607 |
msgstr "Icône"
|
1608 |
|
1609 |
+
#: libs/class.Package.php:138 libs/class.Package.php:145
|
1610 |
msgid "Thumbnail"
|
1611 |
msgstr "Miniature"
|
1612 |
|
1613 |
+
#: libs/class.Package.php:169 libs/class.Package.php:643 wpdm-functions.php:103
|
1614 |
+
#: wpdm-start-download.php:24
|
1615 |
msgid "Download Limit Exceeded"
|
1616 |
msgstr "Limite de téléchargement dépassée"
|
1617 |
|
1618 |
+
#: libs/class.Package.php:172 libs/class.Package.php:180
|
1619 |
+
#: libs/class.Package.php:188 libs/class.Package.php:196
|
1620 |
msgid "DOWNLOAD ERROR"
|
1621 |
msgstr "ERREUR DE TÉLÉCHARGEMENT"
|
1622 |
|
1623 |
+
#: libs/class.Package.php:177 libs/class.Package.php:647
|
1624 |
+
#: libs/class.Package.php:875 wpdm-functions.php:107
|
1625 |
msgid "Download was expired on"
|
1626 |
msgstr "Le téléchargement a expiré le"
|
1627 |
|
1628 |
+
#: libs/class.Package.php:185 libs/class.Package.php:654
|
1629 |
+
#: libs/class.Package.php:881 wpdm-functions.php:114
|
1630 |
msgid "Download will be available from "
|
1631 |
msgstr "Ce téléchargement sera disponible à partir du "
|
1632 |
|
1633 |
+
#: libs/class.Package.php:219
|
1634 |
msgid "Terms and Conditions"
|
1635 |
msgstr "Conditions générales d’utilisation"
|
1636 |
|
1637 |
+
#: libs/class.Package.php:220
|
1638 |
+
#, fuzzy
|
1639 |
+
#| msgid "Terms and Conditions"
|
1640 |
+
msgid "I Agree With Terms and Conditions"
|
1641 |
+
msgstr "Conditions générales d’utilisation"
|
1642 |
|
1643 |
+
#: libs/class.Package.php:451
|
1644 |
msgid "No File Attached!"
|
1645 |
msgstr "Aucun fichier joint !"
|
1646 |
|
1647 |
+
#: libs/class.Package.php:649 libs/class.Package.php:656
|
1648 |
+
#: libs/class.Package.php:666 wpdm-functions.php:109 wpdm-functions.php:116
|
1649 |
+
#: wpdm-functions.php:126
|
1650 |
msgid "Download:"
|
1651 |
msgstr "Téléchargement :"
|
1652 |
|
1653 |
+
#: libs/class.Package.php:748 wpdm-functions.php:208
|
1654 |
msgid "Download limit exceeded!"
|
1655 |
msgstr "Limite de téléchargement dépassée !"
|
1656 |
|
1657 |
+
#: libs/class.Package.php:810
|
1658 |
msgid "Verify CAPTCHA to Download"
|
1659 |
msgstr "Validez le CAPTCHA pour télécharger"
|
1660 |
|
1661 |
+
#: libs/class.Package.php:876 libs/class.Package.php:882
|
1662 |
+
#: libs/class.Package.php:894
|
1663 |
msgid "DOWNLOAD ERROR:"
|
1664 |
msgstr "ERREUR DE TÉLÉCHARGEMENT :"
|
1665 |
|
1666 |
+
#: libs/class.Package.php:970
|
1667 |
msgid "Limit Over!"
|
1668 |
msgstr "Limite atteinte !"
|
1669 |
|
1670 |
+
#: libs/class.PackageLocks.php:44 tpls/lock-options/password-lock.php:11
|
1671 |
+
#: tpls3/lock-options/password-lock.php:11
|
1672 |
msgid "Enter Correct Password to Download"
|
1673 |
msgstr "Saisissez le bon mot de passe pour pouvoir télécharger"
|
1674 |
|
1675 |
+
#: libs/class.PackageLocks.php:47 libs/class.PackageLocks.php:63
|
1676 |
+
#: tpls/lock-options/password-lock.php:14
|
1677 |
+
#: tpls/lock-options/password-lock.php:30 tpls/wpdm-all-downloads.php:47
|
1678 |
+
#: tpls3/lock-options/password-lock.php:14
|
1679 |
+
#: tpls3/lock-options/password-lock.php:30 tpls3/wpdm-all-downloads.php:121
|
1680 |
msgid "Processing..."
|
1681 |
msgstr "En cours de traitement…"
|
1682 |
|
1683 |
+
#: libs/class.PackageLocks.php:54 libs/class.User.php:93
|
1684 |
+
#: tpls/lock-options/password-lock.php:21
|
1685 |
+
#: tpls3/lock-options/password-lock.php:21
|
1686 |
msgid "Enter Password"
|
1687 |
msgstr "Saisissez le mot de passe"
|
1688 |
|
1689 |
+
#: libs/class.PackageLocks.php:55 tpls/lock-options/password-lock.php:22
|
1690 |
+
#: tpls3/lock-options/password-lock.php:22
|
1691 |
msgid "Submit"
|
1692 |
msgstr "Valider"
|
1693 |
|
1694 |
+
#: libs/class.Pagination.php:50 tpls/wpdm-all-downloads.php:53
|
1695 |
+
#: tpls/wpdm-all-downloads.php:398 tpls3/wpdm-all-downloads.php:127
|
1696 |
+
#: tpls3/wpdm-all-downloads.php:333 wpdm-functions.php:1887
|
1697 |
msgid "Previous"
|
1698 |
msgstr "Précédent"
|
1699 |
|
1700 |
+
#: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:52
|
1701 |
+
#: tpls/wpdm-all-downloads.php:399 tpls3/wpdm-all-downloads.php:126
|
1702 |
+
#: tpls3/wpdm-all-downloads.php:334 wpdm-functions.php:1888
|
1703 |
msgid "Next"
|
1704 |
msgstr "Suivant"
|
1705 |
|
1706 |
+
#: libs/class.ShortCodes.php:189
|
1707 |
msgid "User registration is disabled"
|
1708 |
msgstr "Les inscriptions sont désactivées."
|
1709 |
|
1711 |
msgid "Failed To Open File!"
|
1712 |
msgstr "L’ouverture du fichier a échouée !"
|
1713 |
|
1714 |
+
#: libs/class.User.php:41
|
1715 |
+
#, fuzzy
|
1716 |
+
#| msgid "First Name"
|
1717 |
+
msgid "First name"
|
1718 |
+
msgstr "Prénom"
|
1719 |
+
|
1720 |
+
#: libs/class.User.php:41
|
1721 |
+
#, fuzzy
|
1722 |
+
#| msgid "First Name"
|
1723 |
+
msgid "Your First Name"
|
1724 |
+
msgstr "Prénom"
|
1725 |
+
|
1726 |
+
#: libs/class.User.php:42
|
1727 |
+
#, fuzzy
|
1728 |
+
#| msgid "Last Name"
|
1729 |
+
msgid "Last name"
|
1730 |
+
msgstr "Nom"
|
1731 |
+
|
1732 |
+
#: libs/class.User.php:42
|
1733 |
+
#, fuzzy
|
1734 |
+
#| msgid "Last Name"
|
1735 |
+
msgid "Your Last Name"
|
1736 |
+
msgstr "Nom"
|
1737 |
+
|
1738 |
+
#: libs/class.User.php:47
|
1739 |
+
msgid "Username"
|
1740 |
+
msgstr "Identifiant"
|
1741 |
+
|
1742 |
+
#: libs/class.User.php:49
|
1743 |
+
msgid "User Login ID"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: libs/class.User.php:53
|
1747 |
+
#, fuzzy
|
1748 |
+
#| msgid "Emails"
|
1749 |
+
msgid "Email"
|
1750 |
+
msgstr "E-mails"
|
1751 |
+
|
1752 |
+
#: libs/class.User.php:55
|
1753 |
+
#, fuzzy
|
1754 |
+
#| msgid "Invalid Email Address!"
|
1755 |
+
msgid "Your Email Address"
|
1756 |
+
msgstr "Adresse de messagerie non valide."
|
1757 |
+
|
1758 |
+
#: libs/class.User.php:62
|
1759 |
+
msgid "Be Secure"
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: libs/class.User.php:63 tpls/reset-password-form.php:30
|
1763 |
+
#: tpls3/reset-password-form.php:30
|
1764 |
+
msgid "Confirm Password"
|
1765 |
+
msgstr "Confirmation du mot de passe"
|
1766 |
+
|
1767 |
+
#: libs/class.User.php:63
|
1768 |
+
msgid "Do Not Forget"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: libs/class.User.php:86
|
1772 |
+
#, fuzzy
|
1773 |
+
#| msgid "Login"
|
1774 |
+
msgid "Login ID"
|
1775 |
+
msgstr "Se connecter"
|
1776 |
+
|
1777 |
+
#: libs/class.User.php:88 tpls/lost-password-form.php:23
|
1778 |
+
#: tpls/lost-password-form.php:24 tpls3/lost-password-form.php:20
|
1779 |
+
#: tpls3/wpdm-login-form.php:55 tpls3/wpdm-login-modal-form.php:55
|
1780 |
+
#, fuzzy
|
1781 |
+
#| msgid "Username is Empty!"
|
1782 |
+
msgid "Username or Email"
|
1783 |
+
msgstr "L’identifiant est vide !"
|
1784 |
+
|
1785 |
#: libs/class.UserDashboard.php:17
|
1786 |
msgid "Profile"
|
1787 |
msgstr "Profil"
|
1794 |
msgid "Account"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: libs/class.UserProfile.php:21
|
1798 |
+
msgid "Favourites"
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
#: modules/server-file-browser.php:8
|
1802 |
msgid "Not Allowed!"
|
1803 |
msgstr "Non autorisé !"
|
1804 |
|
1805 |
+
#: modules/server-file-browser.php:84
|
1806 |
msgid "Add file(s) from server"
|
1807 |
msgstr "Ajouter des fichiers depuis le serveur"
|
1808 |
|
1809 |
+
#: modules/strings.php:10 widgets/class.PackageInfo.php:117
|
1810 |
+
msgid "Download Count"
|
1811 |
+
msgstr "Nombre de téléchargements"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1812 |
|
1813 |
+
#: modules/strings.php:12
|
1814 |
+
msgid "Stock"
|
1815 |
+
msgstr ""
|
1816 |
|
1817 |
+
#: modules/strings.php:13
|
1818 |
+
msgid "File Size"
|
1819 |
+
msgstr "Taille du fichier"
|
1820 |
|
1821 |
+
#: modules/strings.php:14
|
1822 |
+
#, fuzzy
|
1823 |
+
#| msgid "Invalid File Type!"
|
1824 |
+
msgid "File Type"
|
1825 |
+
msgstr "Type de fichier invalide !"
|
1826 |
|
1827 |
+
#: modules/strings.php:15
|
1828 |
+
#, fuzzy
|
1829 |
+
#| msgid "View Count"
|
1830 |
+
msgid "File Count"
|
1831 |
+
msgstr "Nombre de vues"
|
1832 |
|
1833 |
+
#: modules/strings.php:16 tpls/wpdm-all-downloads.php:190
|
1834 |
+
#: tpls3/wpdm-all-downloads.php:159
|
1835 |
+
msgid "Create Date"
|
1836 |
+
msgstr "Date de création"
|
1837 |
|
1838 |
+
#: modules/strings.php:17 widgets/class.PackageInfo.php:23
|
1839 |
msgid "Last Updated"
|
1840 |
msgstr "Dernière mise à jour"
|
1841 |
|
1842 |
+
#: modules/strings.php:19 tpls/wpdm-edit-user-profile.php:47
|
1843 |
+
#: tpls/wpdm-edit-user-profile.php:48
|
1844 |
+
#, fuzzy
|
1845 |
+
#| msgid "Version:"
|
1846 |
+
msgid "Description"
|
1847 |
+
msgstr "Version :"
|
|
|
|
|
|
|
|
|
|
|
1848 |
|
1849 |
+
#: modules/strings.php:20
|
1850 |
+
#, fuzzy
|
1851 |
+
#| msgid "Package Name"
|
1852 |
+
msgid "Package Info"
|
1853 |
+
msgstr "Nom du paquet"
|
1854 |
|
1855 |
+
#: modules/strings.php:21
|
1856 |
+
#, fuzzy
|
1857 |
+
#| msgid "Attach File"
|
1858 |
+
msgid "Attached Files"
|
1859 |
+
msgstr "Joindre un fichier"
|
1860 |
|
1861 |
+
#: modules/strings.php:22
|
1862 |
+
#, fuzzy
|
1863 |
+
#| msgid "Total Views"
|
1864 |
+
msgid "Total Files"
|
1865 |
+
msgstr "Nombre total de vues"
|
1866 |
|
1867 |
+
#: modules/strings.php:23 tpls/wpdm-all-downloads.php:318
|
1868 |
+
#: tpls3/wpdm-all-downloads.php:260
|
1869 |
+
msgid "file(s)"
|
1870 |
+
msgstr "fichier·s"
|
1871 |
|
1872 |
+
#: modules/strings.php:24
|
1873 |
+
msgid "Buy Now"
|
1874 |
+
msgstr ""
|
1875 |
|
1876 |
+
#: modules/strings.php:25
|
1877 |
+
msgid "Price"
|
1878 |
+
msgstr "Prix"
|
1879 |
|
1880 |
+
#: tpls/already-logged-in.php:15 tpls3/already-logged-in.php:15
|
1881 |
#, fuzzy
|
1882 |
#| msgid "Welcome to %s"
|
1883 |
msgid "Welcome"
|
1884 |
msgstr "Bienvenue sur %s"
|
1885 |
|
1886 |
+
#: tpls/already-logged-in.php:17 tpls3/already-logged-in.php:17
|
1887 |
msgid "You are already logged in."
|
1888 |
msgstr "Vous êtes déjà connecté."
|
1889 |
|
1890 |
+
#: tpls/already-logged-in.php:21 tpls3/already-logged-in.php:21
|
1891 |
#, fuzzy
|
1892 |
#| msgid "Dashboard Page"
|
1893 |
msgid "Dashboard"
|
1894 |
msgstr "Page du tableau de bord"
|
1895 |
|
1896 |
+
#: tpls/asset-manager-ui.php:505 tpls3/asset-manager-ui.php:500
|
1897 |
+
#, fuzzy
|
1898 |
+
#| msgid "New File"
|
1899 |
+
msgid "New Folder"
|
1900 |
+
msgstr "Nouveau fichier"
|
1901 |
+
|
1902 |
+
#: tpls/asset-manager-ui.php:507 tpls/asset-manager-ui.php:713
|
1903 |
+
#: tpls3/asset-manager-ui.php:502 tpls3/asset-manager-ui.php:706
|
1904 |
+
#, fuzzy
|
1905 |
+
#| msgid "Upload"
|
1906 |
+
msgid "Upload File"
|
1907 |
+
msgstr "Mettre en ligne"
|
1908 |
+
|
1909 |
+
#: tpls/asset-manager-ui.php:513 tpls3/asset-manager-ui.php:508
|
1910 |
+
msgid "Digital Asset Manager"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: tpls/asset-manager-ui.php:616 tpls3/asset-manager-ui.php:611
|
1914 |
+
#, fuzzy
|
1915 |
+
#| msgid "Shortcode Page"
|
1916 |
+
msgid "Copy Shortcode"
|
1917 |
+
msgstr "Page de code court"
|
1918 |
+
|
1919 |
+
#: tpls/asset-manager-ui.php:720 tpls3/asset-manager-ui.php:713
|
1920 |
+
#, fuzzy
|
1921 |
+
#| msgid "Drop file here"
|
1922 |
+
msgid "Drop files here"
|
1923 |
+
msgstr "Déposez le fichier ici"
|
1924 |
+
|
1925 |
+
#: tpls/asset-manager-ui.php:827 tpls3/asset-manager-ui.php:820
|
1926 |
+
msgid "Authorized User Groups:"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: tpls/asset-manager-ui.php:849 tpls3/asset-manager-ui.php:842
|
1930 |
+
#, fuzzy
|
1931 |
+
#| msgid "Unauthorized Access!"
|
1932 |
+
msgid "Authorized Users:"
|
1933 |
+
msgstr "Accès non autorisé !"
|
1934 |
+
|
1935 |
+
#: tpls/asset-viewer.php:6
|
1936 |
+
#, fuzzy
|
1937 |
+
#| msgid "You don't have permission to download this file"
|
1938 |
+
msgid "You do not have access to this asset"
|
1939 |
+
msgstr "Vous n‘avez pas le droit de télécharger ce fichier."
|
1940 |
+
|
1941 |
+
#: tpls/lock-options-iframe.php:289 tpls3/lock-options-iframe.php:243
|
1942 |
+
msgid "Buy"
|
1943 |
+
msgstr "Acheter"
|
1944 |
+
|
1945 |
+
#: tpls/lost-password-form.php:17 tpls3/lost-password-form.php:15
|
1946 |
+
#, fuzzy
|
1947 |
+
#| msgid "Forgot Password?"
|
1948 |
+
msgid "Lost Password?"
|
1949 |
+
msgstr "Mot de passe oublié ?"
|
1950 |
+
|
1951 |
+
#: tpls/lost-password-form.php:19 tpls3/lost-password-form.php:17
|
1952 |
+
msgid ""
|
1953 |
+
"Please enter your username or email address. You will receive a link to "
|
1954 |
+
"create a new password via email."
|
1955 |
+
msgstr ""
|
1956 |
+
|
1957 |
+
#: tpls/lost-password-form.php:29 tpls3/lost-password-form.php:24
|
1958 |
+
#, fuzzy
|
1959 |
+
#| msgid "Generated Passwords"
|
1960 |
+
msgid "Reset Password"
|
1961 |
+
msgstr "Mots de passe générés"
|
1962 |
+
|
1963 |
+
#: tpls/lost-password-form.php:35 tpls3/lost-password-form.php:30
|
1964 |
+
#, fuzzy
|
1965 |
+
#| msgid "Register Page"
|
1966 |
+
msgid "Register"
|
1967 |
+
msgstr "Page d’inscription"
|
1968 |
+
|
1969 |
+
#: tpls/lost-password-form.php:53
|
1970 |
+
msgid "MAO: SENT!"
|
1971 |
+
msgstr ""
|
1972 |
+
|
1973 |
+
#: tpls/lost-password-form.php:53
|
1974 |
+
msgid "Password reset link sent to your email."
|
1975 |
+
msgstr ""
|
1976 |
+
|
1977 |
+
#: tpls/lost-password-form.php:65 tpls/reset-password-form.php:54
|
1978 |
+
#: tpls/reset-password-form.php:73 tpls3/lost-password-form.php:47
|
1979 |
+
#: tpls3/reset-password-form.php:54 tpls3/reset-password-form.php:73
|
1980 |
+
msgid "ERROR!"
|
1981 |
+
msgstr "ERREUR !"
|
1982 |
+
|
1983 |
+
#: tpls/lost-password-form.php:65 tpls3/lost-password-form.php:47
|
1984 |
+
msgid "Account not found."
|
1985 |
+
msgstr ""
|
1986 |
+
|
1987 |
+
#: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
|
1988 |
+
msgid "MAIL SENT!"
|
1989 |
+
msgstr ""
|
1990 |
+
|
1991 |
+
#: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
|
1992 |
+
msgid "Please check your inbox."
|
1993 |
+
msgstr ""
|
1994 |
+
|
1995 |
+
#: tpls/reset-password-form.php:21 tpls/reset-password-form.php:26
|
1996 |
+
#: tpls3/reset-password-form.php:21 tpls3/reset-password-form.php:26
|
1997 |
+
#, fuzzy
|
1998 |
+
#| msgid "Password"
|
1999 |
+
msgid "New Password"
|
2000 |
+
msgstr "Mot de passe"
|
2001 |
+
|
2002 |
+
#: tpls/reset-password-form.php:23 tpls3/reset-password-form.php:23
|
2003 |
+
#, fuzzy
|
2004 |
+
#| msgid "Generated Passwords"
|
2005 |
+
msgid "Please enter a new password"
|
2006 |
+
msgstr "Mots de passe générés"
|
2007 |
+
|
2008 |
+
#: tpls/reset-password-form.php:34 tpls3/reset-password-form.php:34
|
2009 |
+
#, fuzzy
|
2010 |
+
#| msgid "Enter Password"
|
2011 |
+
msgid "Update Password"
|
2012 |
+
msgstr "Saisissez le mot de passe"
|
2013 |
+
|
2014 |
+
#: tpls/reset-password-form.php:45 tpls3/reset-password-form.php:45
|
2015 |
+
msgid "Confirm password value must be same as the new password"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: tpls/reset-password-form.php:52 tpls/user-dashboard/edit-profile.php:16
|
2019 |
+
#: tpls3/reset-password-form.php:52 tpls3/user-dashboard/edit-profile.php:16
|
2020 |
+
#: tpls3/wpdm-edit-user-profile.php:16
|
2021 |
+
msgid "DONE!"
|
2022 |
+
msgstr ""
|
2023 |
+
|
2024 |
+
#: tpls/reset-password-form.php:52 tpls3/reset-password-form.php:52
|
2025 |
+
#, fuzzy
|
2026 |
+
#| msgid "Last Updated"
|
2027 |
+
msgid "Password Updated"
|
2028 |
+
msgstr "Dernière mise à jour"
|
2029 |
+
|
2030 |
+
#: tpls/reset-password-form.php:52 tpls3/reset-password-form.php:52
|
2031 |
+
#, fuzzy
|
2032 |
+
#| msgid "Go To Dashboard"
|
2033 |
+
msgid "Go to your account dashboard"
|
2034 |
+
msgstr "Aller sur le tableau de bord"
|
2035 |
+
|
2036 |
+
#: tpls/reset-password-form.php:54 tpls3/reset-password-form.php:54
|
2037 |
+
#, fuzzy
|
2038 |
+
#| msgid "Last Updated"
|
2039 |
+
msgid "Password Update Failed"
|
2040 |
+
msgstr "Dernière mise à jour"
|
2041 |
|
2042 |
+
#: tpls/search-result.php:3 tpls/simple-search-form.php:5
|
2043 |
+
#: tpls3/simple-search-form.php:5
|
2044 |
msgid "Search Package"
|
2045 |
msgstr "Rechercher un paquet"
|
2046 |
|
2047 |
+
#: tpls/search-result.php:16 tpls/simple-search-form.php:18
|
2048 |
+
#: tpls3/simple-search-form.php:18
|
2049 |
msgid "Search Result For"
|
2050 |
msgstr "Résultats de recherche pour"
|
2051 |
|
2052 |
+
#: tpls/search-result.php:17 tpls/search-result.php:21
|
2053 |
#: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
|
2054 |
+
#: tpls3/simple-search-form.php:19 tpls3/simple-search-form.php:23
|
2055 |
msgid "Loading"
|
2056 |
msgstr "Chargement"
|
2057 |
|
2058 |
+
#: tpls/shortcodes/toolbar.php:35 tpls/shortcodes/toolbar.php:69
|
2059 |
+
#: tpls3/shortcodes/toolbar.php:35 tpls3/shortcodes/toolbar.php:69
|
2060 |
+
msgid "Search Keyword..."
|
2061 |
+
msgstr ""
|
2062 |
+
|
2063 |
+
#: tpls/shortcodes/toolbar.php:39 tpls/shortcodes/toolbar.php:73
|
2064 |
+
#: tpls3/shortcodes/toolbar.php:39 tpls3/shortcodes/toolbar.php:73
|
2065 |
+
#, fuzzy
|
2066 |
+
#| msgid "Order By"
|
2067 |
+
msgid "Order By:"
|
2068 |
+
msgstr "Trier par"
|
2069 |
+
|
2070 |
+
#: tpls/shortcodes/toolbar.php:44 tpls/shortcodes/toolbar.php:78
|
2071 |
+
#: tpls3/shortcodes/toolbar.php:44 tpls3/shortcodes/toolbar.php:78
|
2072 |
+
#, fuzzy
|
2073 |
+
#| msgid "views"
|
2074 |
+
msgid "Views"
|
2075 |
+
msgstr "vues"
|
2076 |
+
|
2077 |
+
#: tpls/shortcodes/toolbar.php:49 tpls/shortcodes/toolbar.php:83
|
2078 |
+
#: tpls3/shortcodes/toolbar.php:49 tpls3/shortcodes/toolbar.php:83
|
2079 |
+
#, fuzzy
|
2080 |
+
#| msgid "Order"
|
2081 |
+
msgid "Order:"
|
2082 |
+
msgstr "Tri"
|
2083 |
+
|
2084 |
+
#: tpls/shortcodes/toolbar.php:50 tpls/shortcodes/toolbar.php:84
|
2085 |
+
#: tpls3/shortcodes/toolbar.php:50 tpls3/shortcodes/toolbar.php:84
|
2086 |
+
msgid "Descending"
|
2087 |
+
msgstr ""
|
2088 |
+
|
2089 |
+
#: tpls/shortcodes/toolbar.php:51 tpls/shortcodes/toolbar.php:85
|
2090 |
+
#: tpls3/shortcodes/toolbar.php:51 tpls3/shortcodes/toolbar.php:85
|
2091 |
+
msgid "Ascending"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: tpls/shortcodes/toolbar.php:55 tpls/shortcodes/toolbar.php:89
|
2095 |
+
#: tpls3/shortcodes/toolbar.php:55 tpls3/shortcodes/toolbar.php:89
|
2096 |
+
#, fuzzy
|
2097 |
+
#| msgid "All Files"
|
2098 |
+
msgid "Apply Filter"
|
2099 |
+
msgstr "Tous les fichiers"
|
2100 |
|
2101 |
+
#: tpls/user-dashboard/edit-profile.php:13
|
2102 |
+
#: tpls3/user-dashboard/edit-profile.php:13 tpls3/wpdm-edit-user-profile.php:13
|
2103 |
#, fuzzy
|
2104 |
#| msgid "REGISTRATION FAILED!"
|
2105 |
msgid "SAVE FAILED!"
|
2106 |
msgstr "L’INSCRIPTION A ÉCHOUÉ !"
|
2107 |
|
2108 |
+
#: tpls/user-dashboard/edit-profile.php:24
|
2109 |
+
#: tpls3/user-dashboard/edit-profile.php:24 tpls3/wpdm-edit-user-profile.php:24
|
|
|
|
|
|
|
|
|
2110 |
msgid "Basic Profile"
|
2111 |
msgstr "Profil de base"
|
2112 |
|
2113 |
+
#: tpls/user-dashboard/edit-profile.php:27
|
2114 |
+
#: tpls3/user-dashboard/edit-profile.php:27 tpls3/wpdm-edit-user-profile.php:27
|
2115 |
msgid "Display name:"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: tpls/user-dashboard/edit-profile.php:28
|
2119 |
+
#: tpls3/user-dashboard/edit-profile.php:28 tpls3/wpdm-edit-user-profile.php:28
|
2120 |
msgid "PayPal Email:"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: tpls/user-dashboard/edit-profile.php:30
|
2124 |
+
#: tpls3/user-dashboard/edit-profile.php:30 tpls3/wpdm-edit-user-profile.php:30
|
2125 |
#, fuzzy
|
2126 |
#| msgid "Username"
|
2127 |
msgid "Username:"
|
2128 |
msgstr "Identifiant"
|
2129 |
|
2130 |
+
#: tpls/user-dashboard/edit-profile.php:31
|
2131 |
+
#: tpls3/user-dashboard/edit-profile.php:31 tpls3/wpdm-edit-user-profile.php:31
|
2132 |
#, fuzzy
|
2133 |
#| msgid "Emails"
|
2134 |
msgid "Email:"
|
2135 |
msgstr "E-mails"
|
2136 |
|
2137 |
+
#: tpls/user-dashboard/edit-profile.php:33
|
2138 |
+
#: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
|
2139 |
#, fuzzy
|
2140 |
#| msgid "Password:"
|
2141 |
msgid "New Password:"
|
2142 |
msgstr "Mot de passe :"
|
2143 |
|
2144 |
+
#: tpls/user-dashboard/edit-profile.php:33
|
2145 |
+
msgid "Use nothing if you don't want to change old password"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: tpls/user-dashboard/edit-profile.php:34
|
2149 |
+
#: tpls3/user-dashboard/edit-profile.php:34 tpls3/wpdm-edit-user-profile.php:34
|
2150 |
#, fuzzy
|
2151 |
#| msgid "Enter Password"
|
2152 |
msgid "Re-type New Password:"
|
2153 |
msgstr "Saisissez le mot de passe"
|
2154 |
|
2155 |
+
#: tpls/user-dashboard/profile.php:22 tpls3/user-dashboard/profile.php:7
|
|
|
|
|
|
|
|
|
|
|
|
|
2156 |
msgid "User Level"
|
2157 |
msgstr "Niveau d‘utilisateur"
|
2158 |
|
2159 |
+
#: tpls/user-dashboard/profile.php:34 tpls3/user-dashboard/profile.php:19
|
2160 |
+
#: widgets/class.PackageInfo.php:20
|
2161 |
+
msgid "Total Downloads"
|
2162 |
+
msgstr "Nombre total de téléchargements"
|
2163 |
+
|
2164 |
+
#: tpls/user-dashboard/profile.php:42 tpls3/user-dashboard/profile.php:27
|
2165 |
msgid "Today's Download"
|
2166 |
msgstr "Téléchargements du jour"
|
2167 |
|
2168 |
+
#: tpls/user-dashboard/profile.php:53 tpls3/user-dashboard/profile.php:35
|
2169 |
msgid "Recommended Downloads"
|
2170 |
msgstr "Téléchargements recommandés"
|
2171 |
|
2172 |
+
#: tpls/user-dashboard/profile.php:110
|
2173 |
+
msgid "My Favourites"
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: tpls/user-dashboard/profile.php:116
|
2177 |
+
msgid "Remove"
|
2178 |
+
msgstr ""
|
2179 |
+
|
2180 |
+
#: tpls/user-dashboard/profile.php:141 tpls3/user-dashboard/profile.php:77
|
2181 |
msgid "Last 5 Downloads"
|
2182 |
msgstr "Les 5 derniers téléchargements"
|
2183 |
|
2184 |
+
#: tpls/wpdm-all-downloads.php:38 tpls3/wpdm-all-downloads.php:112
|
2185 |
msgid "Display _MENU_ downloads per page"
|
2186 |
msgstr "Afficher _MENU_ téléchargements par page"
|
2187 |
|
2188 |
+
#: tpls/wpdm-all-downloads.php:39 tpls3/wpdm-all-downloads.php:113
|
2189 |
msgid "Nothing _START_ to - sorry"
|
2190 |
msgstr "Aucun paquet trouvé"
|
2191 |
|
2192 |
+
#: tpls/wpdm-all-downloads.php:40 tpls3/wpdm-all-downloads.php:114
|
2193 |
msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
|
2194 |
msgstr ""
|
2195 |
"Affichage des téléchargements _START_ à _END_ sur _TOTAL_ téléchargements"
|
2196 |
|
2197 |
+
#: tpls/wpdm-all-downloads.php:41 tpls3/wpdm-all-downloads.php:115
|
2198 |
msgid "No downloads available"
|
2199 |
msgstr "Aucun téléchargement disponible"
|
2200 |
|
2201 |
+
#: tpls/wpdm-all-downloads.php:42 tpls3/wpdm-all-downloads.php:116
|
2202 |
msgid "(filtered from _MAX_ total downloads)"
|
2203 |
msgstr "(filtrés sur un total de _MAX_ téléchargements)"
|
2204 |
|
2205 |
+
#: tpls/wpdm-all-downloads.php:43 tpls3/wpdm-all-downloads.php:117
|
2206 |
msgid "No data available in table"
|
2207 |
msgstr "Aucune donnée disponible"
|
2208 |
|
2209 |
+
#: tpls/wpdm-all-downloads.php:46 tpls3/wpdm-all-downloads.php:120
|
2210 |
msgid "Loading..."
|
2211 |
msgstr "Chargement en cours…"
|
2212 |
|
2213 |
+
#: tpls/wpdm-all-downloads.php:48 tpls3/wpdm-all-downloads.php:122
|
2214 |
msgid "Search:"
|
2215 |
msgstr "Rechercher :"
|
2216 |
|
2217 |
+
#: tpls/wpdm-all-downloads.php:50 tpls3/wpdm-all-downloads.php:124
|
2218 |
msgid "First"
|
2219 |
msgstr "Premier"
|
2220 |
|
2221 |
+
#: tpls/wpdm-all-downloads.php:51 tpls3/wpdm-all-downloads.php:125
|
2222 |
msgid "Last"
|
2223 |
msgstr "Dernier"
|
2224 |
|
2225 |
+
#: tpls/wpdm-all-downloads.php:56 tpls3/wpdm-all-downloads.php:130
|
2226 |
msgid "activate to sort column ascending"
|
2227 |
msgstr "activer pour trier la colonne par ordre croissant"
|
2228 |
|
2229 |
+
#: tpls/wpdm-all-downloads.php:57 tpls3/wpdm-all-downloads.php:131
|
2230 |
msgid "activate to sort column descending"
|
2231 |
msgstr "activer pour trier la colonne par ordre décroissant"
|
2232 |
|
2233 |
+
#: tpls/wpdm-all-downloads.php:61 tpls3/wpdm-all-downloads.php:135
|
2234 |
msgid "All"
|
2235 |
msgstr "Tout"
|
2236 |
|
2237 |
+
#: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2238 |
msgid "downloads"
|
2239 |
msgstr "téléchargements"
|
2240 |
|
2241 |
+
#: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
|
2242 |
msgid "download"
|
2243 |
msgstr "téléchargement"
|
2244 |
|
2245 |
+
#: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
|
2246 |
msgid "views"
|
2247 |
msgstr "vues"
|
2248 |
|
2249 |
+
#: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
|
2250 |
msgid "view"
|
2251 |
msgstr "vue"
|
2252 |
|
2253 |
+
#: tpls/wpdm-all-downloads.php:377 tpls3/wpdm-all-downloads.php:312
|
2254 |
msgid "No Packages Found"
|
2255 |
msgstr "Aucun paquet trouvé"
|
2256 |
|
2257 |
+
#: tpls/wpdm-asset.php:23 tpls3/wpdm-asset.php:23
|
2258 |
+
#, fuzzy
|
2259 |
+
#| msgid "Direct Download"
|
2260 |
+
msgid "Login to Download"
|
2261 |
+
msgstr "Télécharger"
|
2262 |
+
|
2263 |
+
#: tpls/wpdm-edit-user-profile.php:9
|
2264 |
+
#, fuzzy
|
2265 |
+
#| msgid "View File"
|
2266 |
+
msgid "View Profile"
|
2267 |
+
msgstr "Voir le fichier"
|
2268 |
+
|
2269 |
+
#: tpls/wpdm-edit-user-profile.php:10
|
2270 |
+
#, fuzzy
|
2271 |
+
#| msgid "Basic Profile"
|
2272 |
+
msgid "Public Profile Info"
|
2273 |
+
msgstr "Profil de base"
|
2274 |
+
|
2275 |
+
#: tpls/wpdm-edit-user-profile.php:19
|
2276 |
+
msgid "Short Intro"
|
2277 |
+
msgstr ""
|
2278 |
+
|
2279 |
+
#: tpls/wpdm-edit-user-profile.php:32
|
2280 |
+
#, fuzzy
|
2281 |
+
#| msgid "Image URL"
|
2282 |
+
msgid "Banner URL"
|
2283 |
+
msgstr "URL de l’image"
|
2284 |
+
|
2285 |
+
#: tpls/wpdm-edit-user-profile.php:41
|
2286 |
+
msgid "Profile Header Text Color"
|
2287 |
+
msgstr ""
|
2288 |
+
|
2289 |
+
#: tpls/wpdm-edit-user-profile.php:55
|
2290 |
+
#, fuzzy
|
2291 |
+
#| msgid "Save Settings"
|
2292 |
+
msgid "Payment Settings"
|
2293 |
+
msgstr "Enregistrer les réglages"
|
2294 |
+
|
2295 |
+
#: tpls/wpdm-edit-user-profile.php:58
|
2296 |
+
msgid "PayPal Email"
|
2297 |
+
msgstr ""
|
2298 |
+
|
2299 |
+
#: tpls/wpdm-generate-password.php:30 tpls3/wpdm-generate-password.php:17
|
2300 |
msgid "Select Options"
|
2301 |
msgstr "Sélectionnez les options"
|
2302 |
|
2303 |
+
#: tpls/wpdm-generate-password.php:34 tpls3/wpdm-generate-password.php:19
|
2304 |
msgid "Number of passwords:"
|
2305 |
msgstr "Nombre de mots de passe :"
|
2306 |
|
2307 |
+
#: tpls/wpdm-generate-password.php:37 tpls3/wpdm-generate-password.php:23
|
2308 |
msgid "Number of chars for each password:"
|
2309 |
msgstr "Nombre de caractères pour chaque mot de passe :"
|
2310 |
|
2311 |
+
#: tpls/wpdm-generate-password.php:42
|
2312 |
+
#, fuzzy
|
2313 |
+
#| msgid "Valid chars:"
|
2314 |
+
msgid "Valid Chars:"
|
2315 |
msgstr "Caractères valides :"
|
2316 |
|
2317 |
+
#: tpls/wpdm-generate-password.php:43
|
2318 |
+
msgid "Small Letters"
|
2319 |
+
msgstr ""
|
2320 |
|
2321 |
+
#: tpls/wpdm-generate-password.php:44
|
2322 |
+
msgid "Capital Letters"
|
2323 |
+
msgstr ""
|
2324 |
|
2325 |
+
#: tpls/wpdm-generate-password.php:45
|
2326 |
+
msgid "Numbers"
|
2327 |
+
msgstr ""
|
2328 |
+
|
2329 |
+
#: tpls/wpdm-generate-password.php:46
|
2330 |
+
msgid "Special Chars"
|
2331 |
+
msgstr ""
|
2332 |
|
2333 |
+
#: tpls/wpdm-generate-password.php:55 tpls3/wpdm-generate-password.php:36
|
2334 |
+
msgid "Generated Passwords"
|
2335 |
+
msgstr "Mots de passe générés"
|
2336 |
+
|
2337 |
+
#: tpls/wpdm-generate-password.php:60
|
2338 |
#, fuzzy
|
2339 |
+
#| msgid "Generated Passwords"
|
2340 |
+
msgid "Insert Password(s)"
|
2341 |
+
msgstr "Mots de passe générés"
|
2342 |
|
2343 |
+
#: tpls/wpdm-login-form.php:58 tpls/wpdm-login-modal-form.php:65
|
2344 |
+
#: tpls3/wpdm-login-form.php:97 tpls3/wpdm-login-modal-form.php:77
|
2345 |
msgid "Remember Me"
|
2346 |
msgstr "Se souvenir de moi"
|
2347 |
|
2348 |
+
#: tpls/wpdm-login-form.php:59 tpls/wpdm-login-modal-form.php:66
|
2349 |
+
#: tpls3/wpdm-login-form.php:98 tpls3/wpdm-login-modal-form.php:78
|
2350 |
msgid "Forgot Password?"
|
2351 |
msgstr "Mot de passe oublié ?"
|
2352 |
|
2353 |
+
#: tpls/wpdm-login-form.php:70 tpls/wpdm-login-modal-form.php:92
|
2354 |
+
#: tpls/wpdm-reg-form.php:59 tpls3/wpdm-login-form.php:105
|
2355 |
+
#: tpls3/wpdm-login-modal-form.php:105 tpls3/wpdm-reg-form.php:62
|
2356 |
+
msgid "Or connect using your social account"
|
2357 |
+
msgstr ""
|
2358 |
|
2359 |
+
#: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
|
2360 |
+
#: tpls3/wpdm-login-form.php:116 tpls3/wpdm-login-modal-form.php:116
|
2361 |
msgid "Don't have an account yet?"
|
2362 |
msgstr "Vous n’avez pas encore de compte ?"
|
2363 |
|
2364 |
+
#: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
|
2365 |
+
#: tpls/wpdm-reg-form.php:50 tpls3/wpdm-login-form.php:116
|
2366 |
+
#: tpls3/wpdm-login-modal-form.php:116 tpls3/wpdm-reg-form.php:53
|
2367 |
#, fuzzy
|
2368 |
#| msgid "Register Page"
|
2369 |
msgid "Register Now"
|
2370 |
msgstr "Page d’inscription"
|
2371 |
|
2372 |
+
#: tpls/wpdm-login-form.php:107 tpls/wpdm-login-modal-form.php:116
|
2373 |
+
#: tpls3/wpdm-login-form.php:136 tpls3/wpdm-login-modal-form.php:128
|
2374 |
msgid "Logging In..."
|
2375 |
msgstr "Connexion en cours…"
|
2376 |
|
2377 |
+
#: tpls/wpdm-login-form.php:113 tpls/wpdm-login-form.php:130
|
2378 |
+
#: tpls/wpdm-login-modal-form.php:121 tpls3/wpdm-login-form.php:141
|
2379 |
+
#: tpls3/wpdm-login-modal-form.php:133
|
2380 |
#, fuzzy
|
2381 |
#| msgid "REGISTRATION FAILED!"
|
2382 |
msgid "LOGIN FAILED!"
|
2383 |
msgstr "L’INSCRIPTION A ÉCHOUÉ !"
|
2384 |
|
2385 |
+
#: tpls/wpdm-login-modal-form.php:42 tpls3/wpdm-login-form.php:41
|
2386 |
+
#: tpls3/wpdm-login-modal-form.php:42
|
2387 |
+
msgid "Login Failed!"
|
2388 |
+
msgstr "La connexion a échoué !"
|
2389 |
+
|
2390 |
+
#: tpls/wpdm-reg-form.php:61 tpls3/wpdm-reg-form.php:64
|
2391 |
+
msgid "Connect using your social account"
|
2392 |
msgstr ""
|
|
|
2393 |
|
2394 |
+
#: tpls/wpdm-reg-form.php:79 tpls3/wpdm-reg-form.php:82
|
2395 |
+
msgid "Already have an account?"
|
2396 |
+
msgstr "Vous avez déjà un compte ?"
|
|
|
|
|
2397 |
|
2398 |
+
#: tpls/wpdm-reg-form.php:97 tpls3/wpdm-reg-form.php:100
|
2399 |
+
msgid "Password did not match with the confirm password"
|
|
|
|
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: tpls/wpdm-reg-form.php:125 tpls3/wpdm-reg-form.php:127
|
2403 |
+
msgid "Signup Error:"
|
2404 |
+
msgstr ""
|
|
|
|
|
2405 |
|
2406 |
+
#: tpls/wpdm-reg-form.php:148 tpls3/wpdm-reg-form.php:145
|
2407 |
+
msgid "Registration is disabled!"
|
2408 |
+
msgstr "Les inscriptions sont désactivées !"
|
2409 |
+
|
2410 |
+
#: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
|
2411 |
+
msgid "Use nothing if you don\\'t want to change old password"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: tpls3/user-dashboard/edit-profile.php:40 tpls3/wpdm-edit-user-profile.php:40
|
2415 |
#, fuzzy
|
2416 |
+
#| msgid "Version:"
|
2417 |
+
msgid "Description:"
|
2418 |
+
msgstr "Version :"
|
2419 |
|
2420 |
+
#: tpls3/wpdm-generate-password.php:27
|
2421 |
+
msgid "Valid chars:"
|
2422 |
+
msgstr "Caractères valides :"
|
|
|
2423 |
|
2424 |
+
#: tpls3/wpdm-generate-password.php:40
|
2425 |
+
msgid "Generate"
|
2426 |
+
msgstr "Générer"
|
2427 |
|
2428 |
+
#: widgets/class.Affiliate.php:35
|
2429 |
+
msgid "WPDM Affiliate ID:"
|
2430 |
+
msgstr "ID d‘affilié WPDM :"
|
2431 |
|
2432 |
+
#: widgets/class.CatPackages.php:76 widgets/class.Categories.php:127
|
2433 |
+
#: widgets/class.ListPackages.php:89 widgets/class.NewDownloads.php:51
|
2434 |
+
#: widgets/class.PackageInfo.php:110 widgets/class.Search.php:40
|
2435 |
+
#: widgets/class.Tags.php:72 widgets/class.TopDownloads.php:51
|
2436 |
+
msgid "Title:"
|
2437 |
+
msgstr "Titre :"
|
2438 |
|
2439 |
+
#: widgets/class.CatPackages.php:80 widgets/class.ListPackages.php:93
|
2440 |
+
msgid "Select Category:"
|
2441 |
+
msgstr "Sélectionnez une catégorie :"
|
2442 |
+
|
2443 |
+
#: widgets/class.CatPackages.php:86 widgets/class.ListPackages.php:121
|
2444 |
+
#: widgets/class.NewDownloads.php:55 widgets/class.TopDownloads.php:55
|
2445 |
+
msgid "Number of packages to show:"
|
2446 |
+
msgstr "Nombre de paquets à afficher :"
|
2447 |
+
|
2448 |
+
#: widgets/class.Categories.php:131
|
2449 |
#, fuzzy
|
2450 |
+
#| msgid "Parent Category:"
|
2451 |
+
msgid "Parent:"
|
2452 |
+
msgstr "Catégorie parente :"
|
2453 |
|
2454 |
+
#: widgets/class.Categories.php:135
|
2455 |
#, fuzzy
|
2456 |
+
#| msgid "Category Image:"
|
2457 |
+
msgid "On Category Page:"
|
2458 |
+
msgstr "Image de catégorie :"
|
2459 |
|
2460 |
+
#: widgets/class.Categories.php:137
|
2461 |
+
msgid "Show all"
|
2462 |
+
msgstr ""
|
2463 |
|
2464 |
+
#: widgets/class.Categories.php:138
|
2465 |
#, fuzzy
|
2466 |
+
#| msgid "Sub-Categories"
|
2467 |
+
msgid "Show subcategories only"
|
2468 |
+
msgstr "Sous-catégories"
|
2469 |
|
2470 |
+
#: widgets/class.Categories.php:142
|
2471 |
+
#, fuzzy
|
2472 |
+
#| msgid "Style"
|
2473 |
+
msgid "Style:"
|
2474 |
+
msgstr "Style"
|
2475 |
+
|
2476 |
+
#: widgets/class.Categories.php:149
|
2477 |
+
msgid "Top Level Only"
|
2478 |
+
msgstr ""
|
2479 |
+
|
2480 |
+
#: widgets/class.Categories.php:152
|
2481 |
+
msgid "Hide widget when no category"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: widgets/class.ListPackages.php:100
|
2485 |
#, fuzzy
|
2486 |
+
#| msgid "File Download"
|
2487 |
+
msgid "On Single Download Page"
|
2488 |
+
msgstr "Téléchargement de fichiers"
|
2489 |
+
|
2490 |
+
#: widgets/class.ListPackages.php:101
|
2491 |
+
msgid "Show packages from current package category"
|
2492 |
+
msgstr ""
|
2493 |
+
|
2494 |
+
#: widgets/class.PackageInfo.php:21
|
2495 |
+
msgid "Total Views"
|
2496 |
+
msgstr "Nombre total de vues"
|
2497 |
+
|
2498 |
+
#: widgets/class.PackageInfo.php:24
|
2499 |
+
msgid "Size"
|
2500 |
+
msgstr "Taille"
|
2501 |
+
|
2502 |
+
#: widgets/class.PackageInfo.php:114
|
2503 |
+
msgid "Fields to Show:"
|
2504 |
+
msgstr "Champs à afficher :"
|
2505 |
+
|
2506 |
+
#: widgets/class.PackageInfo.php:118
|
2507 |
+
msgid "View Count"
|
2508 |
+
msgstr "Nombre de vues"
|
2509 |
|
2510 |
+
#: widgets/class.PackageInfo.php:122
|
2511 |
#, fuzzy
|
2512 |
+
#| msgid "Package Name"
|
2513 |
+
msgid "Package Size"
|
2514 |
+
msgstr "Nom du paquet"
|
2515 |
|
2516 |
+
#: widgets/class.PackageInfo.php:123
|
2517 |
+
msgid "Download Link"
|
2518 |
+
msgstr "Lien de téléchargement"
|
2519 |
|
2520 |
+
#: widgets/class.PackageInfo.php:124
|
2521 |
+
#, fuzzy
|
2522 |
+
#| msgid "Download Button"
|
2523 |
+
msgid "Embed Download Options"
|
2524 |
+
msgstr "Bouton de téléchargement"
|
2525 |
|
2526 |
+
#: widgets/class.PackageInfo.php:125
|
2527 |
+
msgid "Style"
|
2528 |
+
msgstr "Style"
|
2529 |
|
2530 |
+
#: widgets/class.PackageInfo.php:125
|
2531 |
+
msgid "Tabular View"
|
2532 |
+
msgstr "Vue en tableau"
|
2533 |
|
2534 |
+
#: widgets/class.PackageInfo.php:126
|
2535 |
+
msgid "Show QR Code"
|
2536 |
+
msgstr ""
|
2537 |
|
2538 |
+
#: widgets/class.Search.php:20
|
2539 |
+
#, fuzzy
|
2540 |
+
#| msgid "Search"
|
2541 |
+
msgid "Search..."
|
2542 |
+
msgstr "Rechercher"
|
2543 |
|
2544 |
+
#: widgets/class.Search.php:24
|
2545 |
+
msgid ""
|
2546 |
+
"Search result page was configured properly. Please create a page with "
|
2547 |
+
"shortcode [wpdm_search_result] and select thee page from widget settings"
|
2548 |
+
msgstr ""
|
2549 |
|
2550 |
+
#: widgets/class.Search.php:44
|
2551 |
+
#, fuzzy
|
2552 |
+
#| msgid "Search Result For"
|
2553 |
+
msgid "Search Result Page"
|
2554 |
+
msgstr "Résultats de recherche pour"
|
2555 |
|
2556 |
+
#: widgets/class.Search.php:47
|
2557 |
+
msgid ""
|
2558 |
+
"Note: Create a page with short-code <code>[wpdm_search_result]</code> and "
|
2559 |
+
"select that page as search redult page"
|
2560 |
+
msgstr ""
|
2561 |
|
2562 |
+
#: widgets/class.Tags.php:76
|
2563 |
+
#, fuzzy
|
2564 |
+
#| msgid "Title:"
|
2565 |
+
msgid "Sub Title:"
|
2566 |
+
msgstr "Titre :"
|
2567 |
+
|
2568 |
+
#: widgets/class.Tags.php:80
|
2569 |
+
#, fuzzy
|
2570 |
+
#| msgid "Number of packages to show:"
|
2571 |
+
msgid "Number of tags to show:"
|
2572 |
+
msgstr "Nombre de paquets à afficher :"
|
2573 |
|
2574 |
+
#: wpdm-core.php:110
|
2575 |
msgid "Select category"
|
2576 |
msgstr "Sélectionnez une catégorie"
|
2577 |
|
2578 |
+
#: wpdm-core.php:194
|
|
|
|
|
|
|
|
|
2579 |
#, fuzzy
|
2580 |
#| msgid "Update Date"
|
2581 |
msgid ": Update Available"
|
2582 |
msgstr "Date de mise à jour"
|
2583 |
|
2584 |
+
#: wpdm-functions.php:136
|
2585 |
msgid "Permission Denied"
|
2586 |
msgstr "Permission refusée"
|
2587 |
|
2588 |
+
#: wpdm-functions.php:272
|
2589 |
msgid "Captcha Verification Failed!"
|
2590 |
msgstr "La vérification CAPTCHA a échoué !"
|
2591 |
|
2592 |
+
#: wpdm-functions.php:311 wpdm-functions.php:315
|
2593 |
msgid "Wrong Password! Try Again."
|
2594 |
msgstr "Mot de passe incorrect ! Essayez à nouveau."
|
2595 |
|
2596 |
+
#: wpdm-functions.php:328
|
2597 |
msgid "Password usages limit exceeded"
|
2598 |
msgstr "Limite d‘utilisation du mot de passe dépassée !"
|
2599 |
|
2600 |
+
#: wpdm-functions.php:1425
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2601 |
msgid "Select Image"
|
2602 |
msgstr "Sélectionner une image"
|
2603 |
|
2604 |
+
#: wpdm-functions.php:1456 wpdm-functions.php:1560
|
2605 |
msgid "SELECT IMAGE"
|
2606 |
msgstr "SÉLECTIONNER UNE IMAGE"
|
2607 |
|
2608 |
+
#: wpdm-functions.php:1541
|
2609 |
msgid "Uploading"
|
2610 |
msgstr "Téléversement en cours"
|
2611 |
|
2613 |
msgid "Your IP address is blocked!"
|
2614 |
msgstr "Votre adresse IP est bloquée !"
|
2615 |
|
2616 |
+
#: wpdm-start-download.php:22
|
2617 |
msgid "Package is not available!"
|
2618 |
msgstr "Paquet indisponible !"
|
2619 |
|
2629 |
msgid "No file found!"
|
2630 |
msgstr "Aucun fichier trouvé !"
|
2631 |
|
2632 |
+
#~ msgid "URL"
|
2633 |
+
#~ msgstr "URL"
|
2634 |
+
|
2635 |
+
#~ msgid "Password: "
|
2636 |
+
#~ msgstr "Mot de passe : "
|
2637 |
+
|
2638 |
+
#~ msgid "Operation Failed!"
|
2639 |
+
#~ msgstr "L’opération a échouée !"
|
2640 |
+
|
2641 |
+
#~ msgid "Warning!"
|
2642 |
+
#~ msgstr "Attention !"
|
2643 |
+
|
2644 |
+
#~ msgid "Attention!"
|
2645 |
+
#~ msgstr "Avertissement !"
|
2646 |
+
|
2647 |
+
#~ msgid "Awesome!"
|
2648 |
+
#~ msgstr "Super !"
|
2649 |
+
|
2650 |
+
#~ msgid "I Agree"
|
2651 |
+
#~ msgstr "Je suis d’accord"
|
2652 |
+
|
2653 |
+
#, fuzzy
|
2654 |
+
#~| msgid "Login failed! Please re-check login info."
|
2655 |
+
#~ msgid "Please re-check login info."
|
2656 |
+
#~ msgstr ""
|
2657 |
+
#~ "La connexion a échouée ! Veuillez vérifier vos informations de connexion."
|
2658 |
+
|
2659 |
+
#~ msgid "REGISTRATION FAILED!"
|
2660 |
+
#~ msgstr "L’INSCRIPTION A ÉCHOUÉ !"
|
2661 |
+
|
2662 |
+
#~ msgid "E-mail"
|
2663 |
+
#~ msgstr "E-mail"
|
2664 |
+
|
2665 |
+
#~ msgid "Not Matched!"
|
2666 |
+
#~ msgstr "Ne correspond pas !"
|
2667 |
+
|
2668 |
+
#~ msgid "Join Now!"
|
2669 |
+
#~ msgstr "S‘inscrire !"
|
2670 |
+
|
2671 |
#~ msgid "Request New"
|
2672 |
#~ msgstr "Demander un nouveau mot de passe"
|
2673 |
|
languages/download-manager-it_IT.mo
CHANGED
Binary file
|
languages/download-manager-it_IT.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WordPress Download Manager - Development "
|
6 |
"(trunk)\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: it\n"
|
@@ -13,17 +13,17 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
-
"X-Generator: Poedit 2.
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: admin/class.WordPressDownloadManagerAdmin.php:
|
22 |
#: admin/tpls/metaboxes/package-settings.php:6
|
23 |
msgid "Package Settings"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin/class.WordPressDownloadManagerAdmin.php:
|
27 |
msgid "Attach File"
|
28 |
msgstr "Allega file"
|
29 |
|
@@ -35,39 +35,93 @@ msgstr ""
|
|
35 |
msgid "Add-Ons"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/menus/class.Categories.php:
|
39 |
msgid "Category Image:"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin/menus/class.Categories.php:
|
43 |
msgid "Image URL"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin/menus/class.Categories.php:
|
47 |
msgid "Select Category Image"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin/menus/class.Categories.php:
|
51 |
-
|
52 |
-
|
|
|
53 |
|
54 |
-
#: admin/menus/class.Categories.php:
|
55 |
msgid "Access:"
|
56 |
msgstr "Accesso:"
|
57 |
|
58 |
-
#: admin/menus/class.Categories.php:
|
59 |
msgid ""
|
60 |
"Select the roles who should have access to the packages under this category"
|
61 |
msgstr ""
|
62 |
"Selezionare i ruoli che dovrebbero avere accesso ai pacchetti in questa "
|
63 |
"categoria"
|
64 |
|
65 |
-
#: admin/menus/class.Categories.php:
|
66 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
67 |
msgid "All Visitors"
|
68 |
msgstr "Tutti i Visitatori"
|
69 |
|
70 |
-
#: admin/menus/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid "Direct Download"
|
72 |
msgstr ""
|
73 |
|
@@ -79,13 +133,13 @@ msgstr "Impostazioni Download Manager"
|
|
79 |
msgid "Settings"
|
80 |
msgstr "Impostazioni"
|
81 |
|
82 |
-
#: admin/menus/class.Settings.php:
|
83 |
-
#: admin/menus/class.Settings.php:
|
84 |
-
#: admin/menus/class.Settings.php:
|
85 |
msgid "Security token is expired! Refresh the page and try again."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin/menus/class.Settings.php:
|
89 |
msgid "Privacy Settings Saved Successfully"
|
90 |
msgstr ""
|
91 |
|
@@ -119,6 +173,31 @@ msgstr "WPDM Add-Ons"
|
|
119 |
msgid "Failed to connect with server!"
|
120 |
msgstr "Errore nel connettersi al server!"
|
121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
#: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
|
123 |
msgid "Link Templates"
|
124 |
msgstr ""
|
@@ -170,12 +249,6 @@ msgstr ""
|
|
170 |
msgid "From Email"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:185
|
174 |
-
#: admin/tpls/templates.php:343 tpls/asset-manager-ui.php:550
|
175 |
-
#: tpls/user-dashboard/edit-profile.php:51 tpls/wpdm-edit-user-profile.php:51
|
176 |
-
msgid "Save Changes"
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
#: admin/tpls/email-template-editor.php:119
|
180 |
msgid "Template Variables"
|
181 |
msgstr ""
|
@@ -200,56 +273,45 @@ msgstr ""
|
|
200 |
msgid "Emails"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: admin/tpls/emails-template.php:23 admin/tpls/templates.php:
|
204 |
msgid "Email Template"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
208 |
msgid "attached file is missing/deleted"
|
209 |
msgstr "manca/cancellato l'allegato"
|
210 |
|
211 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
212 |
msgid "No file uploaded yet!"
|
213 |
msgstr "Il file non è stato ancora inviato!"
|
214 |
|
215 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
216 |
-
msgid "Upload"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: admin/tpls/metaboxes/attach-file.php:43 libs/class.FileList.php:305
|
220 |
-
msgid "Browse"
|
221 |
-
msgstr "Esplora"
|
222 |
-
|
223 |
-
#: admin/tpls/metaboxes/attach-file.php:45
|
224 |
-
msgid "URL"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: admin/tpls/metaboxes/attach-file.php:52
|
228 |
msgid "Drop file here"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
232 |
-
#: wpdm-functions.php:
|
233 |
msgid "Allowed Files"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
237 |
msgid "Invalid File Type!"
|
238 |
msgstr "Tipo di File non valido!"
|
239 |
|
240 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
241 |
msgid "Unauthorized Access!"
|
242 |
msgstr "Accesso non autorizzato!"
|
243 |
|
244 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
|
|
245 |
msgid "Delete Current File"
|
246 |
msgstr "Cancella il file corrente"
|
247 |
|
248 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
249 |
msgid "Are you sure?"
|
250 |
msgstr "Sei sicuro?"
|
251 |
|
252 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
253 |
msgid ""
|
254 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
255 |
"circle\"></i> Removed!</div></div>"
|
@@ -257,7 +319,17 @@ msgstr ""
|
|
257 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
258 |
"circle\"></i> Rimosso!</div></div>"
|
259 |
|
260 |
-
#: admin/tpls/metaboxes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "Icon URL"
|
262 |
msgstr "URL dell'icona"
|
263 |
|
@@ -273,40 +345,50 @@ msgid "Must Agree with Terms"
|
|
273 |
msgstr "Devi accettare i Termini e le Condizioni"
|
274 |
|
275 |
#: admin/tpls/metaboxes/lock-options.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
msgid "Terms Title:"
|
277 |
msgstr "Titolo:"
|
278 |
|
279 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
280 |
msgid "Terms and Conditions:"
|
281 |
msgstr "Termini e Condizioni:"
|
282 |
|
283 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
284 |
msgid "Terms Checkbox Label:"
|
285 |
msgstr "Etichetta della Casella Contratto:"
|
286 |
|
287 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
288 |
msgid "Enable Password Lock"
|
289 |
msgstr "Abilita il blocco della Password"
|
290 |
|
291 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
292 |
msgid "Password:"
|
293 |
msgstr "Password:"
|
294 |
|
295 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
296 |
msgid ""
|
297 |
"If you want to use multiple passwords, keep each one inside [], like [123]"
|
298 |
"[456][789]"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
302 |
msgid "Enable Captcha Lock"
|
303 |
msgstr "Abilita il blocco del Captcha"
|
304 |
|
305 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
306 |
msgid "Please configure reCAPTCHA"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
310 |
msgid "Users will be asked for reCAPTCHA verification before download."
|
311 |
msgstr ""
|
312 |
"Agli utenti verrà richiesto di compilare il reCAPTCHA per poter scaricare."
|
@@ -323,47 +405,74 @@ msgstr "Icone"
|
|
323 |
msgid "Version:"
|
324 |
msgstr "Versione:"
|
325 |
|
326 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
327 |
msgid "Link Label:"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
msgid "File Size:"
|
332 |
msgstr "Dimensione File:"
|
333 |
|
334 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
335 |
msgid "Stock Limit:"
|
336 |
msgstr "Limite di magazzino:"
|
337 |
|
338 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
|
|
|
|
|
|
339 |
msgid "View Count:"
|
340 |
msgstr "Conteggio Visite:"
|
341 |
|
342 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
343 |
msgid "Download Count:"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
347 |
msgid "Allow Access:"
|
348 |
msgstr "Consenti l'Accesso:"
|
349 |
|
350 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
351 |
msgid "Who should be able to download?"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
355 |
msgid "Page Template:"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
359 |
msgid "Master Key"
|
360 |
msgstr "Chiave Maestra"
|
361 |
|
362 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
363 |
msgid "Regenerate Master Key for Download"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
367 |
msgid "This key can be used for direct download"
|
368 |
msgstr "Questa Chiave potrebbe essere usata per il download diretto"
|
369 |
|
@@ -379,8 +488,9 @@ msgstr "Impostazioni Download Manager"
|
|
379 |
msgid "Check For Updates"
|
380 |
msgstr "Controlla Aggiornamenti"
|
381 |
|
382 |
-
#: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:
|
383 |
-
#: tpls/wpdm-dashboard.php:
|
|
|
384 |
msgid "Logout"
|
385 |
msgstr "Esci"
|
386 |
|
@@ -406,63 +516,47 @@ msgid "Free Add-ons"
|
|
406 |
msgstr ""
|
407 |
|
408 |
#: admin/tpls/settings/addon-update.php:58
|
409 |
-
#: admin/tpls/settings/addon-update.php:
|
410 |
msgid "Product Name"
|
411 |
msgstr "Nome del prodotto"
|
412 |
|
413 |
#: admin/tpls/settings/addon-update.php:59
|
414 |
-
#: admin/tpls/settings/addon-update.php:
|
415 |
msgid "Active(v)"
|
416 |
msgstr "Attivi(v)"
|
417 |
|
418 |
#: admin/tpls/settings/addon-update.php:60
|
419 |
-
#: admin/tpls/settings/addon-update.php:
|
420 |
msgid "Latest(v)"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: admin/tpls/settings/addon-update.php:
|
424 |
-
#: admin/tpls/settings/addon-update.php:
|
425 |
-
#: admin/tpls/settings/user-interface.php:109
|
426 |
-
#: admin/tpls/settings/user-interface.php:139 libs/class.FileList.php:96
|
427 |
-
#: libs/class.FileList.php:98 libs/class.FileList.php:134
|
428 |
-
#: libs/class.FileList.php:136 libs/class.FileList.php:201
|
429 |
-
#: libs/class.FileList.php:248 libs/class.FileList.php:303
|
430 |
-
#: libs/class.Package.php:74 libs/class.Package.php:152
|
431 |
-
#: libs/class.Package.php:646 libs/class.Package.php:671
|
432 |
-
#: libs/class.Package.php:738 libs/class.Package.php:821
|
433 |
-
#: libs/class.Package.php:847 libs/class.Package.php:874
|
434 |
-
#: libs/class.Package.php:1246 libs/class.PackageLocks.php:59
|
435 |
-
#: libs/class.PackageLocks.php:96 tpls/lock-options-iframe.php:243
|
436 |
-
#: tpls/wpdm-all-downloads.php:158 tpls/wpdm-asset.php:21
|
437 |
-
#: wpdm-functions.php:103 wpdm-functions.php:128 wpdm-functions.php:194
|
438 |
-
msgid "Download"
|
439 |
-
msgstr "Scarica"
|
440 |
-
|
441 |
-
#: admin/tpls/settings/addon-update.php:85
|
442 |
-
#: admin/tpls/settings/addon-update.php:126
|
443 |
msgid "Install"
|
444 |
msgstr "Installa"
|
445 |
|
446 |
-
#: admin/tpls/settings/addon-update.php:
|
447 |
-
#: admin/tpls/settings/addon-update.php:
|
448 |
msgid "Update"
|
449 |
msgstr "Aggiorna"
|
450 |
|
451 |
-
#: admin/tpls/settings/addon-update.php:
|
452 |
-
#: admin/tpls/settings/addon-update.php:
|
453 |
msgid "Updated"
|
454 |
msgstr "Aggiornati"
|
455 |
|
456 |
-
#: admin/tpls/settings/addon-update.php:
|
457 |
msgid "Expired"
|
458 |
msgstr "Scaduti"
|
459 |
|
460 |
-
#: admin/tpls/settings/addon-update.php:
|
461 |
-
#: tpls/
|
|
|
|
|
462 |
msgid "Please Wait..."
|
463 |
msgstr "Attendere........"
|
464 |
|
465 |
-
#: admin/tpls/settings/addon-update.php:
|
466 |
msgid "Success!"
|
467 |
msgstr "Completato!"
|
468 |
|
@@ -494,56 +588,56 @@ msgstr ""
|
|
494 |
msgid "File Browser Access:"
|
495 |
msgstr "Accedi all'Esplorazione dei File"
|
496 |
|
497 |
-
#: admin/tpls/settings/basic.php:
|
498 |
msgid "Who will have access to server file browser"
|
499 |
msgstr "Chi potrebbe accedere all'Esplorazione dei File"
|
500 |
|
501 |
-
#: admin/tpls/settings/basic.php:
|
502 |
msgid "Upload Settings"
|
503 |
msgstr "Impostazioni per l'Invio"
|
504 |
|
505 |
-
#: admin/tpls/settings/basic.php:
|
506 |
msgid "Sanitize Filename"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/tpls/settings/basic.php:
|
510 |
msgid ""
|
511 |
"Check the option if you want to sanitize uploaded file names to remove "
|
512 |
"illegal chars"
|
513 |
msgstr ""
|
514 |
"Scegli questa opzione se vuoi togliere i caratteri inutili dai nomi dei File"
|
515 |
|
516 |
-
#: admin/tpls/settings/basic.php:
|
517 |
msgid "Chunk Upload"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: admin/tpls/settings/basic.php:
|
521 |
msgid ""
|
522 |
"Check the option if you want to enable chunk upload to override http upload "
|
523 |
"limits"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/tpls/settings/basic.php:
|
527 |
msgid "Chunk Size"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/tpls/settings/basic.php:
|
531 |
msgid "File Download"
|
532 |
msgstr "Scarica File"
|
533 |
|
534 |
-
#: admin/tpls/settings/basic.php:
|
535 |
msgid "Download Speed:"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: admin/tpls/settings/basic.php:
|
539 |
msgid "Blocked IPs"
|
540 |
msgstr "IP bloccati"
|
541 |
|
542 |
-
#: admin/tpls/settings/basic.php:
|
543 |
msgid "One IP per line"
|
544 |
msgstr "Un IP per riga"
|
545 |
|
546 |
-
#: admin/tpls/settings/basic.php:
|
547 |
msgid ""
|
548 |
"List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 "
|
549 |
"or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
|
@@ -553,15 +647,15 @@ msgstr ""
|
|
553 |
"192.168.23.1/24 o 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 o "
|
554 |
"2620:112:3000::/44 )"
|
555 |
|
556 |
-
#: admin/tpls/settings/basic.php:
|
557 |
msgid "Write a Message for Blocked IPs"
|
558 |
msgstr "Scrivi un Messaggio per gli IP bloccati"
|
559 |
|
560 |
-
#: admin/tpls/settings/basic.php:
|
561 |
msgid "Message for Blocked IPs"
|
562 |
msgstr "Messaggio per IP bloccati"
|
563 |
|
564 |
-
#: admin/tpls/settings/basic.php:
|
565 |
msgid ""
|
566 |
"If you get broken download, then try enabling/disabling following options, "
|
567 |
"as sometimes server may not support output buffering or partial downloads"
|
@@ -569,27 +663,27 @@ msgstr ""
|
|
569 |
"Se ottieni un File corrotto, prova a disabilitare/abilitare le seguenti "
|
570 |
"opzioni, a volte il server non consente il buffering o gli scarichi parziali."
|
571 |
|
572 |
-
#: admin/tpls/settings/basic.php:
|
573 |
msgid "Resumable Downloads"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/tpls/settings/basic.php:
|
577 |
msgid "Enabled"
|
578 |
msgstr "Abilitato"
|
579 |
|
580 |
-
#: admin/tpls/settings/basic.php:
|
581 |
msgid "Disabled"
|
582 |
msgstr "Disabilitato"
|
583 |
|
584 |
-
#: admin/tpls/settings/basic.php:
|
585 |
msgid "Output Buffering"
|
586 |
msgstr "Buffering in Uscita"
|
587 |
|
588 |
-
#: admin/tpls/settings/basic.php:
|
589 |
msgid "Open in Browser"
|
590 |
msgstr "Apri con il Browser"
|
591 |
|
592 |
-
#: admin/tpls/settings/basic.php:
|
593 |
msgid ""
|
594 |
"Try to Open in Browser instead of download when someone clicks on download "
|
595 |
"link"
|
@@ -598,14 +692,33 @@ msgstr ""
|
|
598 |
"sul collegamento"
|
599 |
|
600 |
#: admin/tpls/settings/basic.php:178
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
601 |
msgid "reCAPTCHA Lock Settings"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: admin/tpls/settings/basic.php:
|
605 |
msgid "reCAPTCHA Site Key"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: admin/tpls/settings/basic.php:
|
609 |
msgid ""
|
610 |
"Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
|
611 |
"www.google.com/recaptcha/admin#list\">here</a>"
|
@@ -613,42 +726,69 @@ msgstr ""
|
|
613 |
"Registra un nuovo Sito per il reCAPTCHA cliccando <a target=\"_blank\" href="
|
614 |
"\"https://www.google.com/recaptcha/admin#list\">qui</a>"
|
615 |
|
616 |
-
#: admin/tpls/settings/basic.php:
|
617 |
msgid "reCAPTCHA Secret Key"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
621 |
msgid "Misc Settings"
|
622 |
msgstr "Altre Impostazioni"
|
623 |
|
624 |
-
#: admin/tpls/settings/basic.php:
|
625 |
msgid "Login Page"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: admin/tpls/settings/basic.php:
|
629 |
-
#: admin/tpls/settings/basic.php:
|
630 |
msgid "None Selected"
|
631 |
msgstr "Nessuno selezionato"
|
632 |
|
633 |
-
#: admin/tpls/settings/basic.php:
|
634 |
-
#: admin/tpls/settings/basic.php:
|
635 |
#, php-format
|
636 |
msgid "The page where you used short-code %s"
|
637 |
msgstr "La pagina dove hai usato short-code %s"
|
638 |
|
639 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
msgid "Register Page"
|
641 |
msgstr "Pagina di Registrazione"
|
642 |
|
643 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
644 |
msgid "Dashboard Page"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: admin/tpls/settings/basic.php:
|
648 |
msgid "Include Packages in Main RSS Feed"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: admin/tpls/settings/basic.php:
|
652 |
#, php-format
|
653 |
msgid ""
|
654 |
"Check this option if you want to show wpdm packages in your main <a target="
|
@@ -690,76 +830,92 @@ msgid "Delete All Stats Data"
|
|
690 |
msgstr ""
|
691 |
|
692 |
#: admin/tpls/settings/user-interface.php:14
|
693 |
-
msgid "
|
694 |
msgstr ""
|
695 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
696 |
#: admin/tpls/settings/user-interface.php:20
|
|
|
|
|
|
|
|
|
697 |
msgid "Bootstrap JS"
|
698 |
msgstr "Ricarica il JS"
|
699 |
|
700 |
-
#: admin/tpls/settings/user-interface.php:
|
701 |
msgid "Bootstrap CSS"
|
702 |
msgstr "Ricarica il CSS"
|
703 |
|
704 |
-
#: admin/tpls/settings/user-interface.php:
|
705 |
msgid "Font Awesome"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: admin/tpls/settings/user-interface.php:
|
709 |
msgid "Front CSS"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: admin/tpls/settings/user-interface.php:
|
713 |
msgid "Google Font"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: admin/tpls/settings/user-interface.php:
|
717 |
msgid ""
|
718 |
"Because, sometimes your theme may have those scripts/styles enqueued already"
|
719 |
msgstr "A volte il tuo tema ha già questi codici "
|
720 |
|
721 |
-
#: admin/tpls/settings/user-interface.php:
|
722 |
msgid "Colors"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: admin/tpls/settings/user-interface.php:
|
726 |
msgid "Primary:"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: admin/tpls/settings/user-interface.php:
|
730 |
msgid "Secondary:"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: admin/tpls/settings/user-interface.php:
|
734 |
msgid "Info:"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: admin/tpls/settings/user-interface.php:
|
738 |
msgid "Success:"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: admin/tpls/settings/user-interface.php:
|
742 |
msgid "Warning:"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: admin/tpls/settings/user-interface.php:
|
746 |
msgid "Danger:"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: admin/tpls/settings/user-interface.php:
|
750 |
msgid "Download Button"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: admin/tpls/settings/user-interface.php:
|
754 |
msgid "Details Page"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: admin/tpls/settings/user-interface.php:
|
758 |
-
#: admin/tpls/settings/user-interface.php:
|
759 |
msgid "Border Radius"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: admin/tpls/settings/user-interface.php:
|
763 |
msgid "Shortcode Page"
|
764 |
msgstr ""
|
765 |
|
@@ -772,7 +928,7 @@ msgid "Export History"
|
|
772 |
msgstr ""
|
773 |
|
774 |
#: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
|
775 |
-
#: tpls/already-logged-in.php:
|
776 |
msgid "Download History"
|
777 |
msgstr "Cronologia dei Download"
|
778 |
|
@@ -788,18 +944,78 @@ msgstr ""
|
|
788 |
msgid "Download History is Empty"
|
789 |
msgstr "L'elenco dei download è vuoto"
|
790 |
|
791 |
-
#: admin/tpls/stats/history.php:
|
792 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
793 |
msgid "Package Name"
|
794 |
msgstr "Nome Pacchetto"
|
795 |
|
796 |
-
#: admin/tpls/stats/history.php:
|
797 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
798 |
msgid "Download Time"
|
799 |
msgstr "Tempo stimato"
|
800 |
|
801 |
-
#: admin/tpls/stats/history.php:
|
802 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
803 |
msgstr ""
|
804 |
|
805 |
#: admin/tpls/templates.php:19
|
@@ -809,464 +1025,627 @@ msgid ""
|
|
809 |
"href='%s'>WordPress Download Manager Pro</a>"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: admin/tpls/templates.php:
|
813 |
-
|
|
|
|
|
|
|
814 |
msgstr ""
|
815 |
|
816 |
#: admin/tpls/templates.php:28
|
|
|
|
|
|
|
|
|
817 |
msgid "Template ID"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: admin/tpls/templates.php:
|
821 |
msgid "Actions"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: admin/tpls/templates.php:
|
825 |
msgid "To:"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: admin/tpls/templates.php:
|
829 |
msgid "Edit"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: admin/tpls/templates.php:
|
|
|
833 |
msgid "Logo URL"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: admin/tpls/templates.php:
|
837 |
msgid "Banner/Background Image URL"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: admin/tpls/templates.php:
|
841 |
msgid "Footer Text"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: admin/tpls/templates.php:
|
845 |
msgid "Facebook Page URL"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: admin/tpls/templates.php:
|
849 |
msgid "Twitter Profile URL"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: admin/tpls/templates.php:
|
853 |
msgid "Youtube Profile URL"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: admin/tpls/templates.php:
|
857 |
msgid "Template Preview"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: admin/tpls/templates.php:
|
861 |
msgid ""
|
862 |
"This is a preview, original template color scheme may look little different, "
|
863 |
"but structure will be same"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: admin/tpls/templates.php:
|
867 |
msgid "Saving..."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: download-manager.php:
|
871 |
-
#:
|
|
|
|
|
|
|
|
|
872 |
msgid "Downloads"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: download-manager.php:
|
876 |
msgid "File"
|
877 |
msgstr "File"
|
878 |
|
879 |
-
#: download-manager.php:
|
880 |
msgid "Add New"
|
881 |
msgstr "Aggiungi nuovo"
|
882 |
|
883 |
-
#: download-manager.php:
|
884 |
msgid "Add New File"
|
885 |
msgstr "Aggiungi nuovo file"
|
886 |
|
887 |
-
#: download-manager.php:
|
888 |
msgid "Edit File"
|
889 |
msgstr "Modifica File"
|
890 |
|
891 |
-
#: download-manager.php:
|
892 |
msgid "New File"
|
893 |
msgstr "Nuovo File"
|
894 |
|
895 |
-
#: download-manager.php:
|
896 |
msgid "All Files"
|
897 |
msgstr "Tutti i file"
|
898 |
|
899 |
-
#: download-manager.php:
|
900 |
msgid "View File"
|
901 |
msgstr "Vedi File"
|
902 |
|
903 |
-
#: download-manager.php:
|
904 |
msgid "Search Files"
|
905 |
msgstr "Cerca nei File"
|
906 |
|
907 |
-
#: download-manager.php:
|
908 |
msgid "No File Found"
|
909 |
msgstr "Nessun file trovato"
|
910 |
|
911 |
-
#: download-manager.php:
|
912 |
msgid "No Files found in Trash"
|
913 |
msgstr "Nessun file nel cestino"
|
914 |
|
915 |
-
#: download-manager.php:
|
916 |
-
#: tpls/wpdm-all-downloads.php:
|
917 |
msgid "Categories"
|
918 |
msgstr "Categorie"
|
919 |
|
920 |
-
#: download-manager.php:
|
921 |
msgid "Category"
|
922 |
msgstr "Categoria"
|
923 |
|
924 |
-
#: download-manager.php:
|
925 |
msgid "Search Categories"
|
926 |
msgstr "Cerca categorie"
|
927 |
|
928 |
-
#: download-manager.php:
|
929 |
msgid "All Categories"
|
930 |
msgstr "Tutte le Categorie"
|
931 |
|
932 |
-
#: download-manager.php:
|
933 |
msgid "Parent Category"
|
934 |
msgstr "Categoria genitore"
|
935 |
|
936 |
-
#: download-manager.php:
|
937 |
msgid "Parent Category:"
|
938 |
msgstr "Categoria genitore:"
|
939 |
|
940 |
-
#: download-manager.php:
|
941 |
msgid "Edit Category"
|
942 |
msgstr "Modifica categoria"
|
943 |
|
944 |
-
#: download-manager.php:
|
945 |
msgid "Update Category"
|
946 |
msgstr "Aggiorna categoria"
|
947 |
|
948 |
-
#: download-manager.php:
|
949 |
msgid "Add New Category"
|
950 |
msgstr "Aggiungi una nuova categoria"
|
951 |
|
952 |
-
#: download-manager.php:
|
953 |
msgid "New Category Name"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: libs/class.Apply.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
957 |
msgid "Something is Wrong! Please refresh the page and try again"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: libs/class.Apply.php:
|
961 |
msgid "Error: User registration is disabled!"
|
962 |
msgstr "Errore: la registrazione degli utenti è disabilitata!"
|
963 |
|
964 |
-
#: libs/class.Apply.php:
|
965 |
msgid "Username is Empty!"
|
966 |
msgstr "Nome Utente vuoto!"
|
967 |
|
968 |
-
#: libs/class.Apply.php:
|
969 |
-
|
|
|
|
|
970 |
msgstr "Indirizzo email non valido!"
|
971 |
|
972 |
-
#: libs/class.Apply.php:
|
973 |
-
msgid "
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: libs/class.Apply.php:
|
977 |
msgid "Edit User"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: libs/class.Apply.php:
|
981 |
-
msgid "New user registration on your site WordPress Download Manager:"
|
982 |
-
msgstr ""
|
983 |
-
|
984 |
-
#: libs/class.Apply.php:270
|
985 |
-
#, php-format
|
986 |
-
msgid "[%s] New User Registration"
|
987 |
-
msgstr ""
|
988 |
-
|
989 |
-
#: libs/class.Apply.php:280
|
990 |
msgid ""
|
991 |
"Your account has been created successfully and login info sent to your mail "
|
992 |
"address."
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: libs/class.Apply.php:
|
996 |
-
msgid "Your account has been created successfully"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: libs/class.Apply.php:
|
1000 |
-
msgid "Email already
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: libs/class.Apply.php:
|
1004 |
msgid "Username already exists."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: libs/class.Apply.php:
|
1008 |
msgid "Session Expired! Please try again."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: libs/class.Apply.php:
|
1012 |
msgid "You don't have permission to download this file"
|
1013 |
msgstr "Non hai il permesso di scaricare questo file"
|
1014 |
|
1015 |
-
#: libs/class.Apply.php:
|
1016 |
msgid "Download link is expired. Please get new download link."
|
1017 |
msgstr ""
|
1018 |
"Link per il download scaduto. Si prega di ottenere nuovi link per il "
|
1019 |
"download."
|
1020 |
|
1021 |
-
#: libs/class.Apply.php:
|
1022 |
msgid "Download link is expired or not valid. Please get new download link."
|
1023 |
msgstr ""
|
1024 |
"Link per il download scaduto o non valido. Si prega di ottenere nuovi link "
|
1025 |
"per il download."
|
1026 |
|
1027 |
-
#: libs/class.Apply.php:
|
1028 |
msgid "Stock Limit Reached"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: libs/class.Apply.php:
|
1032 |
msgid "Invalid download link."
|
1033 |
msgstr "Link non valido."
|
1034 |
|
1035 |
-
#: libs/class.
|
1036 |
-
msgid "Price"
|
1037 |
-
msgstr "Prezzo"
|
1038 |
-
|
1039 |
-
#: libs/class.AssetManager.php:114
|
1040 |
msgid ""
|
1041 |
"Download link is expired! Go back and Refresh the page to regenerate "
|
1042 |
"download link"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: libs/class.AssetManager.php:
|
1046 |
msgid "Asset Manager"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: libs/class.AssetManager.php:
|
1050 |
-
#: libs/class.AssetManager.php:
|
1051 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
1052 |
#: libs/class.AssetManager.php:344 libs/class.AssetManager.php:346
|
1053 |
-
#: libs/class.AssetManager.php:
|
1054 |
-
#: libs/class.AssetManager.php:
|
1055 |
-
#: libs/class.AssetManager.php:423 libs/class.AssetManager.php:
|
1056 |
-
#: libs/class.AssetManager.php:
|
1057 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
|
|
1058 |
msgid "Error! Session Expired. Try refreshing page."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: libs/class.AssetManager.php:
|
1062 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1063 |
msgid "Error! Unauthorized Access."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: libs/class.AssetManager.php:
|
1067 |
-
#: libs/class.AssetManager.php:
|
1068 |
-
#: libs/class.AssetManager.php:
|
1069 |
-
|
1070 |
-
#: libs/class.AssetManager.php:557
|
1071 |
-
msgid "Error! Unauthorized Path."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: libs/class.AssetManager.php:
|
|
|
1075 |
msgid "Home"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
1079 |
msgid "Invalid source path"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: libs/class.AssetManager.php:
|
1083 |
msgid "Invalid destination path"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: libs/class.AssetManager.php:
|
1087 |
msgid "File moved successfully"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: libs/class.AssetManager.php:
|
1091 |
msgid "File copied successfully"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: libs/class.AssetManager.php:
|
1095 |
msgid "Asset not found!"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
1099 |
msgid "Error! Invalid Destination Path."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: libs/class.AssetManager.php:
|
1103 |
msgid "Please activate \"zlib\" in your server to perform zip operations"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: libs/class.AssetManager.php:
|
1107 |
msgid "Unzipped successfully."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: libs/class.AssetManager.php:
|
1111 |
msgid "Error! Couldn't open the zip file."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: libs/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1115 |
msgid "General Email Template"
|
1116 |
msgstr "Modello di Email Generica"
|
1117 |
|
1118 |
-
#: libs/class.Email.php:
|
1119 |
msgid "User Signup Notification"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: libs/class.Email.php:
|
1123 |
#, php-format
|
1124 |
msgid "Welcome to %s"
|
1125 |
msgstr "Benvenuto a %s"
|
1126 |
|
1127 |
-
#: libs/class.Email.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1128 |
msgid "Password Reset Notification"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: libs/class.Email.php:
|
1132 |
#, php-format
|
1133 |
msgid "Request to reset your %s password"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: libs/class.Email.php:
|
1137 |
msgid "Email Lock Notification"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: libs/class.Email.php:
|
1141 |
msgid "Download [#package_name#]"
|
1142 |
msgstr "Scarica [#package_name#]"
|
1143 |
|
1144 |
-
#: libs/class.Email.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1145 |
msgid "Sample Package Name"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: libs/class.FileList.php:
|
1149 |
-
#: libs/class.FileList.php:
|
1150 |
-
#:
|
|
|
1151 |
msgid "Password"
|
1152 |
msgstr "Password"
|
1153 |
|
1154 |
-
#: libs/class.FileList.php:
|
1155 |
msgid "Action"
|
1156 |
msgstr "Azione"
|
1157 |
|
1158 |
-
#: libs/class.
|
1159 |
-
msgid "
|
1160 |
-
msgstr "
|
1161 |
|
1162 |
-
#: libs/class.
|
1163 |
-
msgid "
|
1164 |
-
msgstr "
|
1165 |
|
1166 |
-
#: libs/class.
|
1167 |
-
msgid "
|
1168 |
-
msgstr "
|
1169 |
|
1170 |
-
#: libs/class.
|
1171 |
-
msgid "
|
1172 |
-
msgstr "
|
1173 |
|
1174 |
-
#: libs/class.
|
1175 |
-
msgid "
|
1176 |
-
msgstr "
|
1177 |
|
1178 |
-
#: libs/class.
|
1179 |
-
|
1180 |
-
|
1181 |
-
msgstr "Icona"
|
1182 |
|
1183 |
-
#: libs/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1184 |
msgid "Thumbnail"
|
1185 |
msgstr "Miniatura"
|
1186 |
|
1187 |
-
#: libs/class.Package.php:
|
1188 |
-
#:
|
1189 |
msgid "Download Limit Exceeded"
|
1190 |
msgstr "Limite di scaricamento superato"
|
1191 |
|
1192 |
-
#: libs/class.Package.php:
|
1193 |
-
#: libs/class.Package.php:
|
1194 |
msgid "DOWNLOAD ERROR"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: libs/class.Package.php:
|
1198 |
-
#: libs/class.Package.php:
|
1199 |
msgid "Download was expired on"
|
1200 |
msgstr "Il Download è scaduto il"
|
1201 |
|
1202 |
-
#: libs/class.Package.php:
|
1203 |
-
#: libs/class.Package.php:
|
1204 |
msgid "Download will be available from "
|
1205 |
msgstr "Il download sarà disponibile da "
|
1206 |
|
1207 |
-
#: libs/class.Package.php:
|
1208 |
msgid "Terms and Conditions"
|
1209 |
msgstr "Termini e Condizioni"
|
1210 |
|
1211 |
-
#: libs/class.Package.php:
|
1212 |
-
|
1213 |
-
|
|
|
|
|
1214 |
|
1215 |
-
#: libs/class.Package.php:
|
1216 |
msgid "No File Attached!"
|
1217 |
msgstr "Nessun Allegato!"
|
1218 |
|
1219 |
-
#: libs/class.Package.php:
|
1220 |
-
#: libs/class.Package.php:
|
1221 |
-
#: wpdm-functions.php:
|
1222 |
msgid "Download:"
|
1223 |
msgstr "Download:"
|
1224 |
|
1225 |
-
#: libs/class.Package.php:
|
1226 |
msgid "Download limit exceeded!"
|
1227 |
msgstr "Limite di scaricamento superato!"
|
1228 |
|
1229 |
-
#: libs/class.Package.php:
|
1230 |
msgid "Verify CAPTCHA to Download"
|
1231 |
msgstr "Verifica il Captcha per scaricare"
|
1232 |
|
1233 |
-
#: libs/class.Package.php:
|
1234 |
-
#: libs/class.Package.php:
|
1235 |
msgid "DOWNLOAD ERROR:"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: libs/class.Package.php:
|
1239 |
msgid "Limit Over!"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: libs/class.PackageLocks.php:
|
|
|
1243 |
msgid "Enter Correct Password to Download"
|
1244 |
msgstr "Scrivi la Password per scaricare gratuitamente"
|
1245 |
|
1246 |
-
#: libs/class.PackageLocks.php:
|
1247 |
-
#: tpls/
|
|
|
|
|
|
|
1248 |
msgid "Processing..."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: libs/class.PackageLocks.php:
|
|
|
|
|
1252 |
msgid "Enter Password"
|
1253 |
msgstr "Scrivi la Password"
|
1254 |
|
1255 |
-
#: libs/class.PackageLocks.php:
|
|
|
1256 |
msgid "Submit"
|
1257 |
msgstr "Invia"
|
1258 |
|
1259 |
-
#: libs/class.Pagination.php:50 tpls/wpdm-all-downloads.php:
|
1260 |
-
#: tpls/wpdm-all-downloads.php:
|
|
|
1261 |
msgid "Previous"
|
1262 |
msgstr "Precedente"
|
1263 |
|
1264 |
-
#: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:
|
1265 |
-
#: tpls/wpdm-all-downloads.php:
|
|
|
1266 |
msgid "Next"
|
1267 |
msgstr "Successivo"
|
1268 |
|
1269 |
-
#: libs/class.ShortCodes.php:
|
1270 |
msgid "User registration is disabled"
|
1271 |
msgstr "Errore: la registrazione degli utenti è disabilitata"
|
1272 |
|
@@ -1274,6 +1653,71 @@ msgstr "Errore: la registrazione degli utenti è disabilitata"
|
|
1274 |
msgid "Failed To Open File!"
|
1275 |
msgstr ""
|
1276 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1277 |
#: libs/class.UserDashboard.php:17
|
1278 |
msgid "Profile"
|
1279 |
msgstr ""
|
@@ -1286,528 +1730,765 @@ msgstr "Modifica il tuo profilo"
|
|
1286 |
msgid "Account"
|
1287 |
msgstr ""
|
1288 |
|
|
|
|
|
|
|
|
|
1289 |
#: modules/server-file-browser.php:8
|
1290 |
msgid "Not Allowed!"
|
1291 |
msgstr "Non hai i permessi per farlo!"
|
1292 |
|
1293 |
-
#: modules/server-file-browser.php:
|
1294 |
msgid "Add file(s) from server"
|
1295 |
msgstr "Aggiungi File dal Server"
|
1296 |
|
1297 |
-
#: modules/widgets.php:
|
1298 |
-
msgid "
|
1299 |
-
msgstr ""
|
1300 |
|
1301 |
-
#: modules/
|
1302 |
-
|
1303 |
-
msgid "Title:"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: modules/
|
1307 |
-
msgid "
|
1308 |
-
msgstr "
|
1309 |
-
|
1310 |
-
#: modules/widgets.php:172 modules/widgets.php:238 modules/widgets.php:334
|
1311 |
-
msgid "Link Template:"
|
1312 |
-
msgstr "Link Template:"
|
1313 |
-
|
1314 |
-
#: modules/widgets.php:323
|
1315 |
-
msgid "Select Category:"
|
1316 |
-
msgstr "Seleziona una categoria:"
|
1317 |
|
1318 |
-
#: modules/
|
1319 |
-
|
1320 |
-
|
|
|
|
|
1321 |
|
1322 |
-
#: modules/
|
1323 |
-
|
1324 |
-
|
|
|
|
|
1325 |
|
1326 |
-
#: modules/
|
1327 |
-
|
|
|
1328 |
msgstr "Data di Pubblicazione"
|
1329 |
|
1330 |
-
#: modules/widgets.php:
|
1331 |
msgid "Last Updated"
|
1332 |
msgstr "Ultimo aggiornamento"
|
1333 |
|
1334 |
-
#: modules/
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
#: modules/widgets.php:439
|
1339 |
-
msgid "Fields to Show:"
|
1340 |
-
msgstr "Campi da Mostrare:"
|
1341 |
-
|
1342 |
-
#: modules/widgets.php:442
|
1343 |
-
msgid "Download Count"
|
1344 |
-
msgstr "Conteggio Download"
|
1345 |
|
1346 |
-
#: modules/
|
1347 |
-
|
1348 |
-
|
|
|
|
|
1349 |
|
1350 |
-
#: modules/
|
1351 |
-
|
1352 |
-
|
|
|
|
|
1353 |
|
1354 |
-
#: modules/
|
1355 |
-
|
1356 |
-
|
|
|
|
|
1357 |
|
1358 |
-
#: modules/
|
1359 |
-
|
1360 |
-
|
|
|
1361 |
|
1362 |
-
#: modules/
|
1363 |
-
msgid "
|
1364 |
-
msgstr "
|
1365 |
|
1366 |
-
#: modules/
|
1367 |
-
msgid "
|
1368 |
-
msgstr "
|
1369 |
|
1370 |
-
#: tpls/already-logged-in.php:
|
1371 |
msgid "Welcome"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: tpls/already-logged-in.php:
|
1375 |
msgid "You are already logged in."
|
1376 |
msgstr "Sei già autenticato."
|
1377 |
|
1378 |
-
#: tpls/already-logged-in.php:
|
1379 |
msgid "Dashboard"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: tpls/asset-manager-ui.php:500
|
1383 |
msgid "New Folder"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: tpls/asset-manager-ui.php:
|
|
|
1387 |
msgid "Upload File"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: tpls/asset-manager-ui.php:508
|
1391 |
msgid "Digital Asset Manager"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: tpls/asset-manager-ui.php:611
|
1395 |
msgid "Copy Shortcode"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: tpls/asset-manager-ui.php:713
|
1399 |
msgid "Drop files here"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: tpls/asset-manager-ui.php:820
|
1403 |
msgid "Authorized User Groups:"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: tpls/asset-manager-ui.php:842
|
1407 |
msgid "Authorized Users:"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: tpls/
|
|
|
|
|
|
|
|
|
|
|
|
|
1411 |
msgid "Buy"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: tpls/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1415 |
msgid "Search Package"
|
1416 |
msgstr "Nome del Pacchetto Campione"
|
1417 |
|
1418 |
-
#: tpls/simple-search-form.php:18
|
|
|
1419 |
msgid "Search Result For"
|
1420 |
msgstr ""
|
1421 |
|
|
|
1422 |
#: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
|
|
|
1423 |
msgid "Loading"
|
1424 |
msgstr "Carico"
|
1425 |
|
1426 |
-
#: tpls/
|
1427 |
-
#:
|
1428 |
-
msgid "
|
1429 |
-
msgstr "
|
1430 |
|
1431 |
-
#: tpls/
|
1432 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: tpls/
|
1436 |
-
#:
|
1437 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: tpls/user-dashboard/edit-profile.php:24
|
|
|
1441 |
msgid "Basic Profile"
|
1442 |
msgstr "Profilo di Base"
|
1443 |
|
1444 |
-
#: tpls/user-dashboard/edit-profile.php:27
|
|
|
1445 |
msgid "Display name:"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: tpls/user-dashboard/edit-profile.php:28
|
|
|
1449 |
msgid "PayPal Email:"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: tpls/user-dashboard/edit-profile.php:30
|
|
|
1453 |
msgid "Username:"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: tpls/user-dashboard/edit-profile.php:31
|
|
|
1457 |
msgid "Email:"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: tpls/user-dashboard/edit-profile.php:33
|
|
|
1461 |
msgid "New Password:"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: tpls/user-dashboard/edit-profile.php:33
|
1465 |
-
msgid "Use nothing if you don
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: tpls/user-dashboard/edit-profile.php:34
|
|
|
1469 |
msgid "Re-type New Password:"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: tpls/user-dashboard/
|
1473 |
-
msgid "Description:"
|
1474 |
-
msgstr ""
|
1475 |
-
|
1476 |
-
#: tpls/user-dashboard/profile.php:7
|
1477 |
msgid "User Level"
|
1478 |
msgstr "Livello Utente"
|
1479 |
|
1480 |
-
#: tpls/user-dashboard/profile.php:
|
|
|
|
|
|
|
|
|
|
|
1481 |
msgid "Today's Download"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: tpls/user-dashboard/profile.php:35
|
1485 |
msgid "Recommended Downloads"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: tpls/user-dashboard/profile.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1489 |
msgid "Last 5 Downloads"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: tpls/wpdm-all-downloads.php:
|
1493 |
msgid "Display _MENU_ downloads per page"
|
1494 |
msgstr "Mostra _MENU_ per pagina"
|
1495 |
|
1496 |
-
#: tpls/wpdm-all-downloads.php:
|
1497 |
msgid "Nothing _START_ to - sorry"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: tpls/wpdm-all-downloads.php:
|
1501 |
msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: tpls/wpdm-all-downloads.php:
|
1505 |
msgid "No downloads available"
|
1506 |
msgstr "Non ci sono download disponibili"
|
1507 |
|
1508 |
-
#: tpls/wpdm-all-downloads.php:
|
1509 |
msgid "(filtered from _MAX_ total downloads)"
|
1510 |
msgstr "(filtrato da _MAX_ voci totali)"
|
1511 |
|
1512 |
-
#: tpls/wpdm-all-downloads.php:
|
1513 |
msgid "No data available in table"
|
1514 |
msgstr "Nessun dato presente nella tabella"
|
1515 |
|
1516 |
-
#: tpls/wpdm-all-downloads.php:
|
1517 |
msgid "Loading..."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: tpls/wpdm-all-downloads.php:
|
1521 |
msgid "Search:"
|
1522 |
msgstr "Ricerca:"
|
1523 |
|
1524 |
-
#: tpls/wpdm-all-downloads.php:
|
1525 |
msgid "First"
|
1526 |
msgstr "Primo"
|
1527 |
|
1528 |
-
#: tpls/wpdm-all-downloads.php:
|
1529 |
msgid "Last"
|
1530 |
msgstr "Ultimo"
|
1531 |
|
1532 |
-
#: tpls/wpdm-all-downloads.php:
|
1533 |
msgid "activate to sort column ascending"
|
1534 |
msgstr "attiva per ordinare la colonna in ordine crescente"
|
1535 |
|
1536 |
-
#: tpls/wpdm-all-downloads.php:
|
1537 |
msgid "activate to sort column descending"
|
1538 |
msgstr "attiva per ordinare la colonna in ordine decrescente"
|
1539 |
|
1540 |
-
#: tpls/wpdm-all-downloads.php:
|
1541 |
msgid "All"
|
1542 |
msgstr "Tutti"
|
1543 |
|
1544 |
-
#: tpls/wpdm-all-downloads.php:
|
1545 |
-
msgid "Create Date"
|
1546 |
-
msgstr "Data di Pubblicazione"
|
1547 |
-
|
1548 |
-
#: tpls/wpdm-all-downloads.php:258
|
1549 |
-
msgid "file(s)"
|
1550 |
-
msgstr ""
|
1551 |
-
|
1552 |
-
#: tpls/wpdm-all-downloads.php:264
|
1553 |
msgid "downloads"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: tpls/wpdm-all-downloads.php:
|
1557 |
msgid "download"
|
1558 |
msgstr "download"
|
1559 |
|
1560 |
-
#: tpls/wpdm-all-downloads.php:
|
1561 |
msgid "views"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: tpls/wpdm-all-downloads.php:
|
1565 |
msgid "view"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: tpls/wpdm-all-downloads.php:
|
1569 |
msgid "No Packages Found"
|
1570 |
msgstr "Pacchetti non trovati"
|
1571 |
|
1572 |
-
#: tpls/wpdm-asset.php:23
|
1573 |
msgid "Login to Download"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: tpls/wpdm-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1577 |
msgid "Select Options"
|
1578 |
msgstr "Opzioni di scelta"
|
1579 |
|
1580 |
-
#: tpls/wpdm-generate-password.php:19
|
1581 |
msgid "Number of passwords:"
|
1582 |
msgstr "Numero di passwords:"
|
1583 |
|
1584 |
-
#: tpls/wpdm-generate-password.php:23
|
1585 |
msgid "Number of chars for each password:"
|
1586 |
msgstr "Numero di caratteri di ogni password:"
|
1587 |
|
1588 |
-
#: tpls/wpdm-generate-password.php:
|
1589 |
-
|
|
|
|
|
1590 |
msgstr "Caratteri validi:"
|
1591 |
|
1592 |
-
#: tpls/wpdm-generate-password.php:
|
1593 |
-
msgid "
|
1594 |
-
msgstr "
|
1595 |
|
1596 |
-
#: tpls/wpdm-generate-password.php:
|
1597 |
-
msgid "
|
1598 |
-
msgstr "
|
1599 |
|
1600 |
-
#: tpls/wpdm-
|
1601 |
-
msgid "
|
1602 |
-
msgstr "
|
1603 |
|
1604 |
-
#: tpls/wpdm-
|
1605 |
-
msgid "
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: tpls/wpdm-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1609 |
msgid "Remember Me"
|
1610 |
msgstr "Ricordami"
|
1611 |
|
1612 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1613 |
msgid "Forgot Password?"
|
1614 |
msgstr "Password dimenticata?"
|
1615 |
|
1616 |
-
#: tpls/wpdm-login-form.php:
|
1617 |
-
#: tpls/wpdm-reg-form.php:
|
1618 |
-
|
|
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1622 |
msgid "Don't have an account yet?"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: tpls/wpdm-login-form.php:
|
|
|
|
|
1626 |
msgid "Register Now"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1630 |
msgid "Logging In..."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: tpls/wpdm-login-form.php:
|
|
|
|
|
1634 |
msgid "LOGIN FAILED!"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: tpls/wpdm-login-form.php:
|
1638 |
-
|
|
|
|
|
|
|
|
|
|
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: tpls/wpdm-
|
1642 |
-
msgid "
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: tpls/wpdm-
|
1646 |
-
msgid ""
|
1647 |
-
"Please enter your username or email address. You will receive a link to "
|
1648 |
-
"create a new password via email."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: tpls/wpdm-
|
1652 |
-
msgid "
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: tpls/wpdm-
|
1656 |
-
msgid "
|
1657 |
-
msgstr "
|
1658 |
|
1659 |
-
#:
|
1660 |
-
|
1661 |
-
msgid "ERROR!"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#:
|
1665 |
-
msgid "
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#:
|
1669 |
-
msgid "
|
1670 |
-
msgstr ""
|
1671 |
|
1672 |
-
#:
|
1673 |
-
msgid "
|
1674 |
-
msgstr ""
|
1675 |
|
1676 |
-
#:
|
1677 |
-
msgid "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#:
|
1681 |
-
|
|
|
|
|
|
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#:
|
1685 |
-
msgid "
|
1686 |
-
msgstr "
|
1687 |
|
1688 |
-
#:
|
1689 |
-
|
1690 |
-
|
|
|
1691 |
|
1692 |
-
#:
|
1693 |
-
|
1694 |
-
|
|
|
|
|
1695 |
|
1696 |
-
#:
|
1697 |
-
|
1698 |
-
|
|
|
|
|
1699 |
|
1700 |
-
#:
|
1701 |
-
msgid "
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#:
|
1705 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#:
|
1709 |
-
msgid "
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#:
|
1713 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#:
|
1717 |
-
msgid "
|
1718 |
-
msgstr "
|
1719 |
|
1720 |
-
#:
|
1721 |
-
msgid "
|
1722 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1723 |
|
1724 |
-
#:
|
1725 |
-
msgid "
|
|
|
|
|
|
|
|
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#:
|
1729 |
-
|
1730 |
-
|
|
|
|
|
1731 |
|
1732 |
-
#:
|
1733 |
-
msgid "
|
|
|
|
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#:
|
1737 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#:
|
1741 |
-
|
1742 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1743 |
|
1744 |
-
#: wpdm-core.php:
|
1745 |
msgid "Select category"
|
1746 |
msgstr "Scegli una categoria"
|
1747 |
|
1748 |
-
#: wpdm-core.php:
|
1749 |
-
msgid "New Package Notification"
|
1750 |
-
msgstr ""
|
1751 |
-
|
1752 |
-
#: wpdm-core.php:189
|
1753 |
#, fuzzy
|
1754 |
#| msgid "Update Date"
|
1755 |
msgid ": Update Available"
|
1756 |
msgstr "Data aggiornamento"
|
1757 |
|
1758 |
-
#: wpdm-functions.php:
|
1759 |
msgid "Permission Denied"
|
1760 |
msgstr "Autorizzazione negata"
|
1761 |
|
1762 |
-
#: wpdm-functions.php:
|
1763 |
msgid "Captcha Verification Failed!"
|
1764 |
msgstr "Verifica Captcha fallita!"
|
1765 |
|
1766 |
-
#: wpdm-functions.php:
|
1767 |
msgid "Wrong Password! Try Again."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: wpdm-functions.php:
|
1771 |
msgid "Password usages limit exceeded"
|
1772 |
msgstr "Limite di scaricamento superato"
|
1773 |
|
1774 |
-
#: wpdm-functions.php:
|
1775 |
-
msgid "Sub-Categories"
|
1776 |
-
msgstr "Sotto-Categorie"
|
1777 |
-
|
1778 |
-
#: wpdm-functions.php:781
|
1779 |
-
msgid "Title"
|
1780 |
-
msgstr "Titolo"
|
1781 |
-
|
1782 |
-
#: wpdm-functions.php:785
|
1783 |
-
msgid "Asc"
|
1784 |
-
msgstr "Asc"
|
1785 |
-
|
1786 |
-
#: wpdm-functions.php:786
|
1787 |
-
msgid "Desc"
|
1788 |
-
msgstr "Disc"
|
1789 |
-
|
1790 |
-
#: wpdm-functions.php:787
|
1791 |
-
msgid "Search"
|
1792 |
-
msgstr "Ricerca"
|
1793 |
-
|
1794 |
-
#: wpdm-functions.php:788
|
1795 |
-
msgid "Order"
|
1796 |
-
msgstr "Ordine"
|
1797 |
-
|
1798 |
-
#: wpdm-functions.php:789
|
1799 |
-
msgid "Order By"
|
1800 |
-
msgstr "Ordina per"
|
1801 |
-
|
1802 |
-
#: wpdm-functions.php:1336
|
1803 |
msgid "Select Image"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: wpdm-functions.php:
|
1807 |
msgid "SELECT IMAGE"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: wpdm-functions.php:
|
1811 |
msgid "Uploading"
|
1812 |
msgstr ""
|
1813 |
|
@@ -1815,7 +2496,7 @@ msgstr ""
|
|
1815 |
msgid "Your IP address is blocked!"
|
1816 |
msgstr "L'indirizzo IP è bloccato!"
|
1817 |
|
1818 |
-
#: wpdm-start-download.php:
|
1819 |
msgid "Package is not available!"
|
1820 |
msgstr "Pacchetto non disponibile!"
|
1821 |
|
@@ -1831,11 +2512,23 @@ msgstr "Attiva \"zlib\" nel tuo server"
|
|
1831 |
msgid "No file found!"
|
1832 |
msgstr "Nessun file trovato!"
|
1833 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1834 |
#~ msgid "https://www.wpdownloadmanager.com/"
|
1835 |
#~ msgstr "https://www.wpdownloadmanager.com/"
|
1836 |
|
1837 |
#~ msgid "https://www.wpdownloadmanager.com/purchases/"
|
1838 |
#~ msgstr "https://www.wpdownloadmanager.com/purchases/"
|
1839 |
-
|
1840 |
-
#~ msgid "Download Manager"
|
1841 |
-
#~ msgstr "Download Manager"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WordPress Download Manager - Development "
|
6 |
"(trunk)\n"
|
7 |
+
"POT-Creation-Date: 2020-12-13 13:58+0600\n"
|
8 |
+
"PO-Revision-Date: 2020-12-13 13:58+0600\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: it\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 2.4.1\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: admin/class.WordPressDownloadManagerAdmin.php:171
|
22 |
#: admin/tpls/metaboxes/package-settings.php:6
|
23 |
msgid "Package Settings"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin/class.WordPressDownloadManagerAdmin.php:172
|
27 |
msgid "Attach File"
|
28 |
msgstr "Allega file"
|
29 |
|
35 |
msgid "Add-Ons"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/menus/class.Categories.php:49 admin/menus/class.Categories.php:253
|
39 |
msgid "Category Image:"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin/menus/class.Categories.php:52 admin/menus/class.Categories.php:258
|
43 |
msgid "Image URL"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
|
47 |
msgid "Select Category Image"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
|
51 |
+
#: libs/class.FileList.php:307
|
52 |
+
msgid "Browse"
|
53 |
+
msgstr "Esplora"
|
54 |
|
55 |
+
#: admin/menus/class.Categories.php:117 admin/menus/class.Categories.php:323
|
56 |
msgid "Access:"
|
57 |
msgstr "Accesso:"
|
58 |
|
59 |
+
#: admin/menus/class.Categories.php:119 admin/menus/class.Categories.php:326
|
60 |
msgid ""
|
61 |
"Select the roles who should have access to the packages under this category"
|
62 |
msgstr ""
|
63 |
"Selezionare i ruoli che dovrebbero avere accesso ai pacchetti in questa "
|
64 |
"categoria"
|
65 |
|
66 |
+
#: admin/menus/class.Categories.php:122 admin/menus/class.Categories.php:339
|
67 |
+
#: admin/tpls/metaboxes/package-settings.php:68 tpls/asset-manager-ui.php:832
|
68 |
+
#: tpls3/asset-manager-ui.php:825
|
69 |
msgid "All Visitors"
|
70 |
msgstr "Tutti i Visitatori"
|
71 |
|
72 |
+
#: admin/menus/class.Categories.php:138 admin/menus/class.Categories.php:368
|
73 |
+
msgid "Category Page Template"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: admin/menus/class.Categories.php:141 admin/menus/class.Categories.php:371
|
77 |
+
msgid "Use Global"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: admin/menus/class.Categories.php:142 admin/menus/class.Categories.php:372
|
81 |
+
msgid "Do Not Apply"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: admin/menus/class.Categories.php:144 admin/menus/class.Categories.php:374
|
85 |
+
msgid "Keep current template as it is provided with the active theme"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: admin/menus/class.Categories.php:146 admin/menus/class.Categories.php:376
|
89 |
+
#, fuzzy
|
90 |
+
#| msgid "Link Template:"
|
91 |
+
msgid "Use Link Template"
|
92 |
+
msgstr "Link Template:"
|
93 |
+
|
94 |
+
#: admin/menus/class.Categories.php:159 admin/menus/class.Categories.php:389
|
95 |
+
#: widgets/class.CatPackages.php:91 widgets/class.ListPackages.php:126
|
96 |
+
#: widgets/class.NewDownloads.php:60 widgets/class.TopDownloads.php:59
|
97 |
+
msgid "Link Template:"
|
98 |
+
msgstr "Link Template:"
|
99 |
+
|
100 |
+
#: admin/menus/class.Categories.php:165 admin/menus/class.Categories.php:395
|
101 |
+
#, fuzzy
|
102 |
+
#| msgid "Register Page"
|
103 |
+
msgid "Items Per Page:"
|
104 |
+
msgstr "Pagina di Registrazione"
|
105 |
+
|
106 |
+
#: admin/menus/class.Categories.php:169 admin/menus/class.Categories.php:399
|
107 |
+
msgid "Toolbar:"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: admin/menus/class.Categories.php:171 admin/menus/class.Categories.php:401
|
111 |
+
msgid "Show"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: admin/menus/class.Categories.php:172 admin/menus/class.Categories.php:402
|
115 |
+
msgid "Hide"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: admin/menus/class.Categories.php:178 admin/menus/class.Categories.php:408
|
119 |
+
#, fuzzy
|
120 |
+
#| msgid "Number of passwords:"
|
121 |
+
msgid "Number of Columns"
|
122 |
+
msgstr "Numero di passwords:"
|
123 |
+
|
124 |
+
#: admin/menus/class.Packages.php:203
|
125 |
msgid "Direct Download"
|
126 |
msgstr ""
|
127 |
|
133 |
msgid "Settings"
|
134 |
msgstr "Impostazioni"
|
135 |
|
136 |
+
#: admin/menus/class.Settings.php:138 admin/menus/class.Settings.php:169
|
137 |
+
#: admin/menus/class.Settings.php:188 admin/menus/class.Settings.php:244
|
138 |
+
#: admin/menus/class.Settings.php:260
|
139 |
msgid "Security token is expired! Refresh the page and try again."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin/menus/class.Settings.php:331
|
143 |
msgid "Privacy Settings Saved Successfully"
|
144 |
msgstr ""
|
145 |
|
173 |
msgid "Failed to connect with server!"
|
174 |
msgstr "Errore nel connettersi al server!"
|
175 |
|
176 |
+
#: admin/tpls/asset-manager-picker.php:9
|
177 |
+
msgid "Asset Manager Picker"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: admin/tpls/asset-manager-picker.php:693
|
181 |
+
#, fuzzy
|
182 |
+
#| msgid "Server File Browser"
|
183 |
+
msgid "Server File Picker"
|
184 |
+
msgstr "Esplora i File nel Server"
|
185 |
+
|
186 |
+
#: admin/tpls/asset-manager-picker.php:727
|
187 |
+
#: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:186
|
188 |
+
#: admin/tpls/templates.php:347 tpls/asset-manager-ui.php:555
|
189 |
+
#: tpls/user-dashboard/edit-profile.php:48 tpls/wpdm-edit-user-profile.php:64
|
190 |
+
#: tpls3/asset-manager-ui.php:550 tpls3/user-dashboard/edit-profile.php:51
|
191 |
+
#: tpls3/wpdm-edit-user-profile.php:51
|
192 |
+
msgid "Save Changes"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: admin/tpls/asset-manager-picker.php:753
|
196 |
+
#, fuzzy
|
197 |
+
#| msgid "Attach File"
|
198 |
+
msgid "Attach selected file"
|
199 |
+
msgstr "Allega file"
|
200 |
+
|
201 |
#: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
|
202 |
msgid "Link Templates"
|
203 |
msgstr ""
|
249 |
msgid "From Email"
|
250 |
msgstr ""
|
251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
#: admin/tpls/email-template-editor.php:119
|
253 |
msgid "Template Variables"
|
254 |
msgstr ""
|
273 |
msgid "Emails"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin/tpls/emails-template.php:23 admin/tpls/templates.php:106
|
277 |
msgid "Email Template"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin/tpls/metaboxes/attach-file.php:7
|
281 |
msgid "attached file is missing/deleted"
|
282 |
msgstr "manca/cancellato l'allegato"
|
283 |
|
284 |
+
#: admin/tpls/metaboxes/attach-file.php:37
|
285 |
msgid "No file uploaded yet!"
|
286 |
msgstr "Il file non è stato ancora inviato!"
|
287 |
|
288 |
+
#: admin/tpls/metaboxes/attach-file.php:46
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
msgid "Drop file here"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin/tpls/metaboxes/attach-file.php:68 tpls/asset-manager-ui.php:745
|
293 |
+
#: tpls3/asset-manager-ui.php:738 wpdm-functions.php:1480
|
294 |
msgid "Allowed Files"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin/tpls/metaboxes/attach-file.php:147
|
298 |
msgid "Invalid File Type!"
|
299 |
msgstr "Tipo di File non valido!"
|
300 |
|
301 |
+
#: admin/tpls/metaboxes/attach-file.php:149
|
302 |
msgid "Unauthorized Access!"
|
303 |
msgstr "Accesso non autorizzato!"
|
304 |
|
305 |
+
#: admin/tpls/metaboxes/attach-file.php:153
|
306 |
+
#: admin/tpls/metaboxes/attach-file.php:252
|
307 |
msgid "Delete Current File"
|
308 |
msgstr "Cancella il file corrente"
|
309 |
|
310 |
+
#: admin/tpls/metaboxes/attach-file.php:186 admin/tpls/templates.php:369
|
311 |
msgid "Are you sure?"
|
312 |
msgstr "Sei sicuro?"
|
313 |
|
314 |
+
#: admin/tpls/metaboxes/attach-file.php:188
|
315 |
msgid ""
|
316 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
317 |
"circle\"></i> Removed!</div></div>"
|
319 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
320 |
"circle\"></i> Rimosso!</div></div>"
|
321 |
|
322 |
+
#: admin/tpls/metaboxes/attach-file.php:200
|
323 |
+
msgid "Select from media library"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: admin/tpls/metaboxes/attach-file.php:232
|
327 |
+
#, fuzzy
|
328 |
+
#| msgid "Add file(s) from server"
|
329 |
+
msgid "Select from server"
|
330 |
+
msgstr "Aggiungi File dal Server"
|
331 |
+
|
332 |
+
#: admin/tpls/metaboxes/icons.php:5
|
333 |
msgid "Icon URL"
|
334 |
msgstr "URL dell'icona"
|
335 |
|
345 |
msgstr "Devi accettare i Termini e le Condizioni"
|
346 |
|
347 |
#: admin/tpls/metaboxes/lock-options.php:11
|
348 |
+
#, fuzzy
|
349 |
+
#| msgid "Terms Title:"
|
350 |
+
msgid "Terms Page:"
|
351 |
+
msgstr "Titolo:"
|
352 |
+
|
353 |
+
#: admin/tpls/metaboxes/lock-options.php:12
|
354 |
+
msgid "Use custom content below"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: admin/tpls/metaboxes/lock-options.php:15
|
358 |
msgid "Terms Title:"
|
359 |
msgstr "Titolo:"
|
360 |
|
361 |
+
#: admin/tpls/metaboxes/lock-options.php:19
|
362 |
msgid "Terms and Conditions:"
|
363 |
msgstr "Termini e Condizioni:"
|
364 |
|
365 |
+
#: admin/tpls/metaboxes/lock-options.php:24
|
366 |
msgid "Terms Checkbox Label:"
|
367 |
msgstr "Etichetta della Casella Contratto:"
|
368 |
|
369 |
+
#: admin/tpls/metaboxes/lock-options.php:33
|
370 |
msgid "Enable Password Lock"
|
371 |
msgstr "Abilita il blocco della Password"
|
372 |
|
373 |
+
#: admin/tpls/metaboxes/lock-options.php:36
|
374 |
msgid "Password:"
|
375 |
msgstr "Password:"
|
376 |
|
377 |
+
#: admin/tpls/metaboxes/lock-options.php:39
|
378 |
msgid ""
|
379 |
"If you want to use multiple passwords, keep each one inside [], like [123]"
|
380 |
"[456][789]"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/tpls/metaboxes/lock-options.php:48
|
384 |
msgid "Enable Captcha Lock"
|
385 |
msgstr "Abilita il blocco del Captcha"
|
386 |
|
387 |
+
#: admin/tpls/metaboxes/lock-options.php:51
|
388 |
msgid "Please configure reCAPTCHA"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin/tpls/metaboxes/lock-options.php:52
|
392 |
msgid "Users will be asked for reCAPTCHA verification before download."
|
393 |
msgstr ""
|
394 |
"Agli utenti verrà richiesto di compilare il reCAPTCHA per poter scaricare."
|
405 |
msgid "Version:"
|
406 |
msgstr "Versione:"
|
407 |
|
408 |
+
#: admin/tpls/metaboxes/package-settings.php:28
|
409 |
msgid "Link Label:"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin/tpls/metaboxes/package-settings.php:29
|
413 |
+
#: admin/tpls/settings/addon-update.php:61
|
414 |
+
#: admin/tpls/settings/addon-update.php:107
|
415 |
+
#: admin/tpls/settings/user-interface.php:115
|
416 |
+
#: admin/tpls/settings/user-interface.php:145 libs/class.FileList.php:98
|
417 |
+
#: libs/class.FileList.php:100 libs/class.FileList.php:136
|
418 |
+
#: libs/class.FileList.php:138 libs/class.FileList.php:203
|
419 |
+
#: libs/class.FileList.php:250 libs/class.FileList.php:305
|
420 |
+
#: libs/class.Package.php:77 libs/class.Package.php:155
|
421 |
+
#: libs/class.Package.php:634 libs/class.Package.php:659
|
422 |
+
#: libs/class.Package.php:726 libs/class.Package.php:819
|
423 |
+
#: libs/class.Package.php:851 libs/class.Package.php:1295
|
424 |
+
#: libs/class.PackageLocks.php:74 libs/class.PackageLocks.php:111
|
425 |
+
#: tpls/lock-options-iframe.php:289 tpls/lock-options/password-lock.php:41
|
426 |
+
#: tpls/lock-options/recaptcha-lock.php:24 tpls/wpdm-all-downloads.php:191
|
427 |
+
#: tpls/wpdm-all-downloads.php:347 tpls/wpdm-asset.php:21
|
428 |
+
#: tpls3/lock-options-iframe.php:243 tpls3/lock-options/password-lock.php:41
|
429 |
+
#: tpls3/lock-options/recaptcha-lock.php:24 tpls3/wpdm-all-downloads.php:160
|
430 |
+
#: tpls3/wpdm-asset.php:21 wpdm-functions.php:94 wpdm-functions.php:119
|
431 |
+
#: wpdm-functions.php:187
|
432 |
+
msgid "Download"
|
433 |
+
msgstr "Scarica"
|
434 |
+
|
435 |
+
#: admin/tpls/metaboxes/package-settings.php:33
|
436 |
msgid "File Size:"
|
437 |
msgstr "Dimensione File:"
|
438 |
|
439 |
+
#: admin/tpls/metaboxes/package-settings.php:39
|
440 |
msgid "Stock Limit:"
|
441 |
msgstr "Limite di magazzino:"
|
442 |
|
443 |
+
#: admin/tpls/metaboxes/package-settings.php:40
|
444 |
+
msgid "Unlimited"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: admin/tpls/metaboxes/package-settings.php:46
|
448 |
msgid "View Count:"
|
449 |
msgstr "Conteggio Visite:"
|
450 |
|
451 |
+
#: admin/tpls/metaboxes/package-settings.php:51
|
452 |
msgid "Download Count:"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin/tpls/metaboxes/package-settings.php:57
|
456 |
msgid "Allow Access:"
|
457 |
msgstr "Consenti l'Accesso:"
|
458 |
|
459 |
+
#: admin/tpls/metaboxes/package-settings.php:59
|
460 |
msgid "Who should be able to download?"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/tpls/metaboxes/package-settings.php:88
|
464 |
msgid "Page Template:"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin/tpls/metaboxes/package-settings.php:99
|
468 |
msgid "Master Key"
|
469 |
msgstr "Chiave Maestra"
|
470 |
|
471 |
+
#: admin/tpls/metaboxes/package-settings.php:100
|
472 |
msgid "Regenerate Master Key for Download"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin/tpls/metaboxes/package-settings.php:100
|
476 |
msgid "This key can be used for direct download"
|
477 |
msgstr "Questa Chiave potrebbe essere usata per il download diretto"
|
478 |
|
488 |
msgid "Check For Updates"
|
489 |
msgstr "Controlla Aggiornamenti"
|
490 |
|
491 |
+
#: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:23
|
492 |
+
#: tpls/wpdm-dashboard.php:30 tpls3/already-logged-in.php:23
|
493 |
+
#: tpls3/wpdm-dashboard.php:28
|
494 |
msgid "Logout"
|
495 |
msgstr "Esci"
|
496 |
|
516 |
msgstr ""
|
517 |
|
518 |
#: admin/tpls/settings/addon-update.php:58
|
519 |
+
#: admin/tpls/settings/addon-update.php:104
|
520 |
msgid "Product Name"
|
521 |
msgstr "Nome del prodotto"
|
522 |
|
523 |
#: admin/tpls/settings/addon-update.php:59
|
524 |
+
#: admin/tpls/settings/addon-update.php:105
|
525 |
msgid "Active(v)"
|
526 |
msgstr "Attivi(v)"
|
527 |
|
528 |
#: admin/tpls/settings/addon-update.php:60
|
529 |
+
#: admin/tpls/settings/addon-update.php:106
|
530 |
msgid "Latest(v)"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin/tpls/settings/addon-update.php:86
|
534 |
+
#: admin/tpls/settings/addon-update.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
535 |
msgid "Install"
|
536 |
msgstr "Installa"
|
537 |
|
538 |
+
#: admin/tpls/settings/addon-update.php:88
|
539 |
+
#: admin/tpls/settings/addon-update.php:129
|
540 |
msgid "Update"
|
541 |
msgstr "Aggiorna"
|
542 |
|
543 |
+
#: admin/tpls/settings/addon-update.php:89
|
544 |
+
#: admin/tpls/settings/addon-update.php:130
|
545 |
msgid "Updated"
|
546 |
msgstr "Aggiornati"
|
547 |
|
548 |
+
#: admin/tpls/settings/addon-update.php:91
|
549 |
msgid "Expired"
|
550 |
msgstr "Scaduti"
|
551 |
|
552 |
+
#: admin/tpls/settings/addon-update.php:145 tpls/lost-password-form.php:59
|
553 |
+
#: tpls/reset-password-form.php:48 tpls/wpdm-reg-form.php:103
|
554 |
+
#: tpls3/lost-password-form.php:41 tpls3/reset-password-form.php:48
|
555 |
+
#: tpls3/wpdm-reg-form.php:106
|
556 |
msgid "Please Wait..."
|
557 |
msgstr "Attendere........"
|
558 |
|
559 |
+
#: admin/tpls/settings/addon-update.php:147
|
560 |
msgid "Success!"
|
561 |
msgstr "Completato!"
|
562 |
|
588 |
msgid "File Browser Access:"
|
589 |
msgstr "Accedi all'Esplorazione dei File"
|
590 |
|
591 |
+
#: admin/tpls/settings/basic.php:67
|
592 |
msgid "Who will have access to server file browser"
|
593 |
msgstr "Chi potrebbe accedere all'Esplorazione dei File"
|
594 |
|
595 |
+
#: admin/tpls/settings/basic.php:99
|
596 |
msgid "Upload Settings"
|
597 |
msgstr "Impostazioni per l'Invio"
|
598 |
|
599 |
+
#: admin/tpls/settings/basic.php:103
|
600 |
msgid "Sanitize Filename"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: admin/tpls/settings/basic.php:104
|
604 |
msgid ""
|
605 |
"Check the option if you want to sanitize uploaded file names to remove "
|
606 |
"illegal chars"
|
607 |
msgstr ""
|
608 |
"Scegli questa opzione se vuoi togliere i caratteri inutili dai nomi dei File"
|
609 |
|
610 |
+
#: admin/tpls/settings/basic.php:111
|
611 |
msgid "Chunk Upload"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/tpls/settings/basic.php:112
|
615 |
msgid ""
|
616 |
"Check the option if you want to enable chunk upload to override http upload "
|
617 |
"limits"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: admin/tpls/settings/basic.php:117
|
621 |
msgid "Chunk Size"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: admin/tpls/settings/basic.php:130
|
625 |
msgid "File Download"
|
626 |
msgstr "Scarica File"
|
627 |
|
628 |
+
#: admin/tpls/settings/basic.php:134
|
629 |
msgid "Download Speed:"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/tpls/settings/basic.php:142
|
633 |
msgid "Blocked IPs"
|
634 |
msgstr "IP bloccati"
|
635 |
|
636 |
+
#: admin/tpls/settings/basic.php:144
|
637 |
msgid "One IP per line"
|
638 |
msgstr "Un IP per riga"
|
639 |
|
640 |
+
#: admin/tpls/settings/basic.php:145
|
641 |
msgid ""
|
642 |
"List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 "
|
643 |
"or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
|
647 |
"192.168.23.1/24 o 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 o "
|
648 |
"2620:112:3000::/44 )"
|
649 |
|
650 |
+
#: admin/tpls/settings/basic.php:148
|
651 |
msgid "Write a Message for Blocked IPs"
|
652 |
msgstr "Scrivi un Messaggio per gli IP bloccati"
|
653 |
|
654 |
+
#: admin/tpls/settings/basic.php:149
|
655 |
msgid "Message for Blocked IPs"
|
656 |
msgstr "Messaggio per IP bloccati"
|
657 |
|
658 |
+
#: admin/tpls/settings/basic.php:153
|
659 |
msgid ""
|
660 |
"If you get broken download, then try enabling/disabling following options, "
|
661 |
"as sometimes server may not support output buffering or partial downloads"
|
663 |
"Se ottieni un File corrotto, prova a disabilitare/abilitare le seguenti "
|
664 |
"opzioni, a volte il server non consente il buffering o gli scarichi parziali."
|
665 |
|
666 |
+
#: admin/tpls/settings/basic.php:156
|
667 |
msgid "Resumable Downloads"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: admin/tpls/settings/basic.php:158 admin/tpls/settings/basic.php:165
|
671 |
msgid "Enabled"
|
672 |
msgstr "Abilitato"
|
673 |
|
674 |
+
#: admin/tpls/settings/basic.php:159 admin/tpls/settings/basic.php:166
|
675 |
msgid "Disabled"
|
676 |
msgstr "Disabilitato"
|
677 |
|
678 |
+
#: admin/tpls/settings/basic.php:163
|
679 |
msgid "Output Buffering"
|
680 |
msgstr "Buffering in Uscita"
|
681 |
|
682 |
+
#: admin/tpls/settings/basic.php:172
|
683 |
msgid "Open in Browser"
|
684 |
msgstr "Apri con il Browser"
|
685 |
|
686 |
+
#: admin/tpls/settings/basic.php:173
|
687 |
msgid ""
|
688 |
"Try to Open in Browser instead of download when someone clicks on download "
|
689 |
"link"
|
692 |
"sul collegamento"
|
693 |
|
694 |
#: admin/tpls/settings/basic.php:178
|
695 |
+
#, fuzzy
|
696 |
+
#| msgid "Download Link"
|
697 |
+
msgid "Mask Download Link"
|
698 |
+
msgstr "Link per il Download"
|
699 |
+
|
700 |
+
#: admin/tpls/settings/basic.php:179
|
701 |
+
#, fuzzy
|
702 |
+
#| msgid "Download Link"
|
703 |
+
msgid "Unmask Download Link"
|
704 |
+
msgstr "Link per il Download"
|
705 |
+
|
706 |
+
#: admin/tpls/settings/basic.php:180
|
707 |
+
msgid ""
|
708 |
+
"Check this option if you want to mask/unmask file download link. If you "
|
709 |
+
"unmask download link, bots will be able the find any public download link "
|
710 |
+
"easily."
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: admin/tpls/settings/basic.php:184
|
714 |
msgid "reCAPTCHA Lock Settings"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: admin/tpls/settings/basic.php:186
|
718 |
msgid "reCAPTCHA Site Key"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: admin/tpls/settings/basic.php:188
|
722 |
msgid ""
|
723 |
"Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
|
724 |
"www.google.com/recaptcha/admin#list\">here</a>"
|
726 |
"Registra un nuovo Sito per il reCAPTCHA cliccando <a target=\"_blank\" href="
|
727 |
"\"https://www.google.com/recaptcha/admin#list\">qui</a>"
|
728 |
|
729 |
+
#: admin/tpls/settings/basic.php:191
|
730 |
msgid "reCAPTCHA Secret Key"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: admin/tpls/settings/basic.php:196
|
734 |
+
msgid "Enable sign up form CAPTCHA validation"
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: admin/tpls/settings/basic.php:200
|
738 |
+
msgid "Enable sign in form CAPTCHA validation"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: admin/tpls/settings/basic.php:212
|
742 |
msgid "Misc Settings"
|
743 |
msgstr "Altre Impostazioni"
|
744 |
|
745 |
+
#: admin/tpls/settings/basic.php:217
|
746 |
msgid "Login Page"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: admin/tpls/settings/basic.php:218 admin/tpls/settings/basic.php:227
|
750 |
+
#: admin/tpls/settings/basic.php:235
|
751 |
msgid "None Selected"
|
752 |
msgstr "Nessuno selezionato"
|
753 |
|
754 |
+
#: admin/tpls/settings/basic.php:219 admin/tpls/settings/basic.php:228
|
755 |
+
#: admin/tpls/settings/basic.php:236
|
756 |
#, php-format
|
757 |
msgid "The page where you used short-code %s"
|
758 |
msgstr "La pagina dove hai usato short-code %s"
|
759 |
|
760 |
+
#: admin/tpls/settings/basic.php:220
|
761 |
+
msgid "Enable modal login form"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: admin/tpls/settings/basic.php:221
|
765 |
+
#, php-format
|
766 |
+
msgid ""
|
767 |
+
"%s will show the modal login form, <a target=\"_blank\" href=\"%s\">follow "
|
768 |
+
"the docs</a> for moore details"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: admin/tpls/settings/basic.php:226
|
772 |
msgid "Register Page"
|
773 |
msgstr "Pagina di Registrazione"
|
774 |
|
775 |
+
#: admin/tpls/settings/basic.php:229
|
776 |
+
msgid "Enable email verification on signup"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: admin/tpls/settings/basic.php:230
|
780 |
+
msgid "Login automatically after signup is completed"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: admin/tpls/settings/basic.php:234
|
784 |
msgid "Dashboard Page"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: admin/tpls/settings/basic.php:241
|
788 |
msgid "Include Packages in Main RSS Feed"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: admin/tpls/settings/basic.php:242
|
792 |
#, php-format
|
793 |
msgid ""
|
794 |
"Check this option if you want to show wpdm packages in your main <a target="
|
830 |
msgstr ""
|
831 |
|
832 |
#: admin/tpls/settings/user-interface.php:14
|
833 |
+
msgid "Active Bootstrap Version"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: admin/tpls/settings/user-interface.php:16
|
837 |
+
#, fuzzy
|
838 |
+
#| msgid "Bootstrap JS"
|
839 |
+
msgid "Bootstrap 4"
|
840 |
+
msgstr "Ricarica il JS"
|
841 |
+
|
842 |
+
#: admin/tpls/settings/user-interface.php:16
|
843 |
+
#, fuzzy
|
844 |
+
#| msgid "Bootstrap JS"
|
845 |
+
msgid "Bootstrap 3"
|
846 |
+
msgstr "Ricarica il JS"
|
847 |
+
|
848 |
#: admin/tpls/settings/user-interface.php:20
|
849 |
+
msgid "Disable Style & Script"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: admin/tpls/settings/user-interface.php:26
|
853 |
msgid "Bootstrap JS"
|
854 |
msgstr "Ricarica il JS"
|
855 |
|
856 |
+
#: admin/tpls/settings/user-interface.php:27
|
857 |
msgid "Bootstrap CSS"
|
858 |
msgstr "Ricarica il CSS"
|
859 |
|
860 |
+
#: admin/tpls/settings/user-interface.php:28
|
861 |
msgid "Font Awesome"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: admin/tpls/settings/user-interface.php:29
|
865 |
msgid "Front CSS"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: admin/tpls/settings/user-interface.php:30
|
869 |
msgid "Google Font"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: admin/tpls/settings/user-interface.php:32
|
873 |
msgid ""
|
874 |
"Because, sometimes your theme may have those scripts/styles enqueued already"
|
875 |
msgstr "A volte il tuo tema ha già questi codici "
|
876 |
|
877 |
+
#: admin/tpls/settings/user-interface.php:38
|
878 |
msgid "Colors"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: admin/tpls/settings/user-interface.php:54
|
882 |
msgid "Primary:"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: admin/tpls/settings/user-interface.php:60
|
886 |
msgid "Secondary:"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: admin/tpls/settings/user-interface.php:66
|
890 |
msgid "Info:"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: admin/tpls/settings/user-interface.php:72
|
894 |
msgid "Success:"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: admin/tpls/settings/user-interface.php:78
|
898 |
msgid "Warning:"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: admin/tpls/settings/user-interface.php:84
|
902 |
msgid "Danger:"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: admin/tpls/settings/user-interface.php:96
|
906 |
msgid "Download Button"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: admin/tpls/settings/user-interface.php:100
|
910 |
msgid "Details Page"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: admin/tpls/settings/user-interface.php:125
|
914 |
+
#: admin/tpls/settings/user-interface.php:155
|
915 |
msgid "Border Radius"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: admin/tpls/settings/user-interface.php:130
|
919 |
msgid "Shortcode Page"
|
920 |
msgstr ""
|
921 |
|
928 |
msgstr ""
|
929 |
|
930 |
#: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
|
931 |
+
#: tpls/already-logged-in.php:22 tpls3/already-logged-in.php:22
|
932 |
msgid "Download History"
|
933 |
msgstr "Cronologia dei Download"
|
934 |
|
944 |
msgid "Download History is Empty"
|
945 |
msgstr "L'elenco dei download è vuoto"
|
946 |
|
947 |
+
#: admin/tpls/stats/history.php:123
|
948 |
+
#, fuzzy
|
949 |
+
#| msgid "Create Date"
|
950 |
+
msgid "From Date"
|
951 |
+
msgstr "Data di Pubblicazione"
|
952 |
+
|
953 |
+
#: admin/tpls/stats/history.php:133
|
954 |
+
msgid "To Date"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: admin/tpls/stats/history.php:143
|
958 |
+
#, fuzzy
|
959 |
+
#| msgid "Username"
|
960 |
+
msgid "Users"
|
961 |
+
msgstr "Nome utente"
|
962 |
+
|
963 |
+
#: admin/tpls/stats/history.php:172
|
964 |
+
#, fuzzy
|
965 |
+
#| msgid "Package Name"
|
966 |
+
msgid "Packages"
|
967 |
+
msgstr "Nome Pacchetto"
|
968 |
+
|
969 |
+
#: admin/tpls/stats/history.php:198
|
970 |
+
msgid "Filter"
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#: admin/tpls/stats/history.php:199
|
974 |
+
msgid "Reset"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: admin/tpls/stats/history.php:221 tpls/user-dashboard/download-history.php:7
|
978 |
+
#: tpls/user-dashboard/profile.php:115 tpls/user-dashboard/profile.php:145
|
979 |
+
#: tpls3/user-dashboard/download-history.php:9
|
980 |
+
#: tpls3/user-dashboard/profile.php:81
|
981 |
msgid "Package Name"
|
982 |
msgstr "Nome Pacchetto"
|
983 |
|
984 |
+
#: admin/tpls/stats/history.php:222 modules/strings.php:11
|
985 |
+
#: widgets/class.PackageInfo.php:25 widgets/class.PackageInfo.php:121
|
986 |
+
#, fuzzy
|
987 |
+
#| msgid "Version:"
|
988 |
+
msgid "Version"
|
989 |
+
msgstr "Versione:"
|
990 |
+
|
991 |
+
#: admin/tpls/stats/history.php:223 tpls/user-dashboard/download-history.php:8
|
992 |
+
#: tpls/user-dashboard/profile.php:146
|
993 |
+
#: tpls3/user-dashboard/download-history.php:10
|
994 |
+
#: tpls3/user-dashboard/profile.php:82
|
995 |
msgid "Download Time"
|
996 |
msgstr "Tempo stimato"
|
997 |
|
998 |
+
#: admin/tpls/stats/history.php:224
|
999 |
+
#, fuzzy
|
1000 |
+
#| msgid "Username"
|
1001 |
+
msgid "User"
|
1002 |
+
msgstr "Nome utente"
|
1003 |
+
|
1004 |
+
#: admin/tpls/stats/history.php:225 tpls/user-dashboard/download-history.php:9
|
1005 |
+
#: tpls/user-dashboard/profile.php:147
|
1006 |
+
#: tpls3/user-dashboard/download-history.php:11
|
1007 |
+
#: tpls3/user-dashboard/profile.php:83
|
1008 |
+
msgid "IP"
|
1009 |
+
msgstr "IP"
|
1010 |
+
|
1011 |
+
#: admin/tpls/stats/history.php:226
|
1012 |
+
#, fuzzy
|
1013 |
+
#| msgid "Browse"
|
1014 |
+
msgid "Browser"
|
1015 |
+
msgstr "Esplora"
|
1016 |
+
|
1017 |
+
#: admin/tpls/stats/history.php:227
|
1018 |
+
msgid "OS"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
#: admin/tpls/templates.php:19
|
1025 |
"href='%s'>WordPress Download Manager Pro</a>"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: admin/tpls/templates.php:20
|
1029 |
+
#, php-format
|
1030 |
+
msgid ""
|
1031 |
+
"Please follow the <a target='_blank' href='%s'>documentation</a> to edit "
|
1032 |
+
"exiting template files"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: admin/tpls/templates.php:28
|
1036 |
+
msgid "Template Name"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: admin/tpls/templates.php:29
|
1040 |
msgid "Template ID"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: admin/tpls/templates.php:31
|
1044 |
msgid "Actions"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: admin/tpls/templates.php:74
|
1048 |
msgid "To:"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: admin/tpls/templates.php:82
|
1052 |
msgid "Edit"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: admin/tpls/templates.php:123 admin/tpls/templates.php:124
|
1056 |
+
#: tpls/wpdm-edit-user-profile.php:23
|
1057 |
msgid "Logo URL"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: admin/tpls/templates.php:127 admin/tpls/templates.php:128
|
1061 |
msgid "Banner/Background Image URL"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: admin/tpls/templates.php:139
|
1065 |
msgid "Footer Text"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: admin/tpls/templates.php:143
|
1069 |
msgid "Facebook Page URL"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: admin/tpls/templates.php:147
|
1073 |
msgid "Twitter Profile URL"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: admin/tpls/templates.php:151
|
1077 |
msgid "Youtube Profile URL"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: admin/tpls/templates.php:201
|
1081 |
msgid "Template Preview"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: admin/tpls/templates.php:207
|
1085 |
msgid ""
|
1086 |
"This is a preview, original template color scheme may look little different, "
|
1087 |
"but structure will be same"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: admin/tpls/templates.php:343
|
1091 |
msgid "Saving..."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: download-manager.php:202 download-manager.php:214
|
1095 |
+
#: libs/class.CategoryHandler.php:336 libs/class.CategoryHandler.php:356
|
1096 |
+
#: libs/class.ShortCodes.php:423 libs/class.UserProfile.php:20
|
1097 |
+
#: tpls/shortcodes/toolbar.php:43 tpls/shortcodes/toolbar.php:77
|
1098 |
+
#: tpls3/shortcodes/toolbar.php:43 tpls3/shortcodes/toolbar.php:77
|
1099 |
+
#: wpdm-functions.php:823 wpdm-functions.php:842
|
1100 |
msgid "Downloads"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: download-manager.php:203 libs/class.FileList.php:69
|
1104 |
msgid "File"
|
1105 |
msgstr "File"
|
1106 |
|
1107 |
+
#: download-manager.php:204
|
1108 |
msgid "Add New"
|
1109 |
msgstr "Aggiungi nuovo"
|
1110 |
|
1111 |
+
#: download-manager.php:205
|
1112 |
msgid "Add New File"
|
1113 |
msgstr "Aggiungi nuovo file"
|
1114 |
|
1115 |
+
#: download-manager.php:206
|
1116 |
msgid "Edit File"
|
1117 |
msgstr "Modifica File"
|
1118 |
|
1119 |
+
#: download-manager.php:207
|
1120 |
msgid "New File"
|
1121 |
msgstr "Nuovo File"
|
1122 |
|
1123 |
+
#: download-manager.php:208
|
1124 |
msgid "All Files"
|
1125 |
msgstr "Tutti i file"
|
1126 |
|
1127 |
+
#: download-manager.php:209
|
1128 |
msgid "View File"
|
1129 |
msgstr "Vedi File"
|
1130 |
|
1131 |
+
#: download-manager.php:210
|
1132 |
msgid "Search Files"
|
1133 |
msgstr "Cerca nei File"
|
1134 |
|
1135 |
+
#: download-manager.php:211
|
1136 |
msgid "No File Found"
|
1137 |
msgstr "Nessun file trovato"
|
1138 |
|
1139 |
+
#: download-manager.php:212
|
1140 |
msgid "No Files found in Trash"
|
1141 |
msgstr "Nessun file nel cestino"
|
1142 |
|
1143 |
+
#: download-manager.php:243 download-manager.php:253
|
1144 |
+
#: tpls/wpdm-all-downloads.php:189 tpls3/wpdm-all-downloads.php:158
|
1145 |
msgid "Categories"
|
1146 |
msgstr "Categorie"
|
1147 |
|
1148 |
+
#: download-manager.php:244
|
1149 |
msgid "Category"
|
1150 |
msgstr "Categoria"
|
1151 |
|
1152 |
+
#: download-manager.php:245
|
1153 |
msgid "Search Categories"
|
1154 |
msgstr "Cerca categorie"
|
1155 |
|
1156 |
+
#: download-manager.php:246
|
1157 |
msgid "All Categories"
|
1158 |
msgstr "Tutte le Categorie"
|
1159 |
|
1160 |
+
#: download-manager.php:247
|
1161 |
msgid "Parent Category"
|
1162 |
msgstr "Categoria genitore"
|
1163 |
|
1164 |
+
#: download-manager.php:248
|
1165 |
msgid "Parent Category:"
|
1166 |
msgstr "Categoria genitore:"
|
1167 |
|
1168 |
+
#: download-manager.php:249
|
1169 |
msgid "Edit Category"
|
1170 |
msgstr "Modifica categoria"
|
1171 |
|
1172 |
+
#: download-manager.php:250
|
1173 |
msgid "Update Category"
|
1174 |
msgstr "Aggiorna categoria"
|
1175 |
|
1176 |
+
#: download-manager.php:251
|
1177 |
msgid "Add New Category"
|
1178 |
msgstr "Aggiungi una nuova categoria"
|
1179 |
|
1180 |
+
#: download-manager.php:252
|
1181 |
msgid "New Category Name"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: libs/class.Apply.php:162 libs/class.Apply.php:249
|
1185 |
+
msgid "Invalid CAPTCHA!"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: libs/class.Apply.php:195 tpls/wpdm-reg-form.php:112
|
1189 |
+
#: tpls3/wpdm-reg-form.php:115
|
1190 |
+
msgid "Success! Redirecting..."
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: libs/class.Apply.php:232
|
1194 |
msgid "Something is Wrong! Please refresh the page and try again"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: libs/class.Apply.php:262
|
1198 |
msgid "Error: User registration is disabled!"
|
1199 |
msgstr "Errore: la registrazione degli utenti è disabilitata!"
|
1200 |
|
1201 |
+
#: libs/class.Apply.php:287
|
1202 |
msgid "Username is Empty!"
|
1203 |
msgstr "Nome Utente vuoto!"
|
1204 |
|
1205 |
+
#: libs/class.Apply.php:302
|
1206 |
+
#, fuzzy
|
1207 |
+
#| msgid "Invalid Email Address!"
|
1208 |
+
msgid "Invalid email address!"
|
1209 |
msgstr "Indirizzo email non valido!"
|
1210 |
|
1211 |
+
#: libs/class.Apply.php:326
|
1212 |
+
msgid "Passwords not matched!"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: libs/class.Apply.php:403
|
1216 |
msgid "Edit User"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: libs/class.Apply.php:422
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1220 |
msgid ""
|
1221 |
"Your account has been created successfully and login info sent to your mail "
|
1222 |
"address."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: libs/class.Apply.php:424 libs/class.Apply.php:430
|
1226 |
+
msgid "Your account has been created successfully."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: libs/class.Apply.php:448
|
1230 |
+
msgid "Email already exist!"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: libs/class.Apply.php:461
|
1234 |
msgid "Username already exists."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: libs/class.Apply.php:526 libs/class.Apply.php:529
|
1238 |
msgid "Session Expired! Please try again."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: libs/class.Apply.php:676
|
1242 |
msgid "You don't have permission to download this file"
|
1243 |
msgstr "Non hai il permesso di scaricare questo file"
|
1244 |
|
1245 |
+
#: libs/class.Apply.php:683
|
1246 |
msgid "Download link is expired. Please get new download link."
|
1247 |
msgstr ""
|
1248 |
"Link per il download scaduto. Si prega di ottenere nuovi link per il "
|
1249 |
"download."
|
1250 |
|
1251 |
+
#: libs/class.Apply.php:685
|
1252 |
msgid "Download link is expired or not valid. Please get new download link."
|
1253 |
msgstr ""
|
1254 |
"Link per il download scaduto o non valido. Si prega di ottenere nuovi link "
|
1255 |
"per il download."
|
1256 |
|
1257 |
+
#: libs/class.Apply.php:692
|
1258 |
msgid "Stock Limit Reached"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: libs/class.Apply.php:698
|
1262 |
msgid "Invalid download link."
|
1263 |
msgstr "Link non valido."
|
1264 |
|
1265 |
+
#: libs/class.AssetManager.php:156
|
|
|
|
|
|
|
|
|
1266 |
msgid ""
|
1267 |
"Download link is expired! Go back and Refresh the page to regenerate "
|
1268 |
"download link"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: libs/class.AssetManager.php:180
|
1272 |
msgid "Asset Manager"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: libs/class.AssetManager.php:197 libs/class.AssetManager.php:212
|
1276 |
+
#: libs/class.AssetManager.php:234 libs/class.AssetManager.php:236
|
1277 |
+
#: libs/class.AssetManager.php:292 libs/class.AssetManager.php:294
|
1278 |
+
#: libs/class.AssetManager.php:308 libs/class.AssetManager.php:310
|
1279 |
+
#: libs/class.AssetManager.php:325 libs/class.AssetManager.php:327
|
1280 |
#: libs/class.AssetManager.php:344 libs/class.AssetManager.php:346
|
1281 |
+
#: libs/class.AssetManager.php:390 libs/class.AssetManager.php:409
|
1282 |
+
#: libs/class.AssetManager.php:411 libs/class.AssetManager.php:421
|
1283 |
+
#: libs/class.AssetManager.php:423 libs/class.AssetManager.php:433
|
1284 |
+
#: libs/class.AssetManager.php:435 libs/class.AssetManager.php:444
|
1285 |
+
#: libs/class.AssetManager.php:446 libs/class.AssetManager.php:458
|
1286 |
+
#: libs/class.AssetManager.php:460 libs/class.AssetManager.php:470
|
1287 |
+
#: libs/class.AssetManager.php:472 libs/class.AssetManager.php:493
|
1288 |
+
#: libs/class.AssetManager.php:495 libs/class.AssetManager.php:513
|
1289 |
+
#: libs/class.AssetManager.php:515 libs/class.AssetManager.php:541
|
1290 |
+
#: libs/class.AssetManager.php:543
|
1291 |
msgid "Error! Session Expired. Try refreshing page."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: libs/class.AssetManager.php:203 libs/class.AssetManager.php:218
|
1295 |
+
#: libs/class.AssetManager.php:241 libs/class.AssetManager.php:300
|
1296 |
+
#: libs/class.AssetManager.php:316 libs/class.AssetManager.php:331
|
1297 |
+
#: libs/class.AssetManager.php:349 libs/class.AssetManager.php:395
|
1298 |
+
#: libs/class.AssetManager.php:400 libs/class.AssetManager.php:477
|
1299 |
+
#: libs/class.AssetManager.php:639
|
1300 |
+
msgid "Error! Unauthorized Path."
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: libs/class.AssetManager.php:214 libs/class.AssetManager.php:392
|
1304 |
msgid "Error! Unauthorized Access."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: libs/class.AssetManager.php:222 libs/class.AssetManager.php:479
|
1308 |
+
#: libs/class.AssetManager.php:503 libs/class.AssetManager.php:522
|
1309 |
+
#: libs/class.AssetManager.php:555
|
1310 |
+
msgid "Error! FileType is not allowed."
|
|
|
|
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: libs/class.AssetManager.php:275 tpls/lost-password-form.php:33
|
1314 |
+
#: tpls3/lost-password-form.php:28
|
1315 |
msgid "Home"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: libs/class.AssetManager.php:295 libs/class.AssetManager.php:311
|
1319 |
+
msgid "<b>Unauthorized Action!</b><br/>Execution is cancelled by the system."
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: libs/class.AssetManager.php:527 libs/class.AssetManager.php:551
|
1323 |
msgid "Invalid source path"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: libs/class.AssetManager.php:528 libs/class.AssetManager.php:552
|
1327 |
msgid "Invalid destination path"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: libs/class.AssetManager.php:536
|
1331 |
msgid "File moved successfully"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: libs/class.AssetManager.php:559
|
1335 |
msgid "File copied successfully"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: libs/class.AssetManager.php:606
|
1339 |
msgid "Asset not found!"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: libs/class.AssetManager.php:638
|
1343 |
+
msgid "Error! Only Administrator can execute this operation."
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: libs/class.AssetManager.php:640
|
1347 |
msgid "Error! Invalid Destination Path."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: libs/class.AssetManager.php:641
|
1351 |
msgid "Please activate \"zlib\" in your server to perform zip operations"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: libs/class.AssetManager.php:646
|
1355 |
msgid "Unzipped successfully."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: libs/class.AssetManager.php:648
|
1359 |
msgid "Error! Couldn't open the zip file."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: libs/class.CategoryHandler.php:336 wpdm-functions.php:823
|
1363 |
+
msgid "Sub-Categories"
|
1364 |
+
msgstr "Sotto-Categorie"
|
1365 |
+
|
1366 |
+
#: libs/class.CategoryHandler.php:355 libs/class.ShortCodes.php:422
|
1367 |
+
#: modules/strings.php:18 tpls/shortcodes/toolbar.php:41
|
1368 |
+
#: tpls/shortcodes/toolbar.php:75 tpls/wpdm-edit-user-profile.php:15
|
1369 |
+
#: tpls3/shortcodes/toolbar.php:41 tpls3/shortcodes/toolbar.php:75
|
1370 |
+
#: wpdm-functions.php:841
|
1371 |
+
msgid "Title"
|
1372 |
+
msgstr "Titolo"
|
1373 |
+
|
1374 |
+
#: libs/class.CategoryHandler.php:357 libs/class.ShortCodes.php:424
|
1375 |
+
#: tpls/shortcodes/toolbar.php:40 tpls/shortcodes/toolbar.php:74
|
1376 |
+
#: tpls3/shortcodes/toolbar.php:40 tpls3/shortcodes/toolbar.php:74
|
1377 |
+
#: widgets/class.PackageInfo.php:22 widgets/class.PackageInfo.php:119
|
1378 |
+
#: wpdm-functions.php:843
|
1379 |
+
msgid "Publish Date"
|
1380 |
+
msgstr "Data di Pubblicazione"
|
1381 |
+
|
1382 |
+
#: libs/class.CategoryHandler.php:358 libs/class.ShortCodes.php:425
|
1383 |
+
#: tpls/shortcodes/toolbar.php:42 tpls/shortcodes/toolbar.php:76
|
1384 |
+
#: tpls3/shortcodes/toolbar.php:42 tpls3/shortcodes/toolbar.php:76
|
1385 |
+
#: widgets/class.PackageInfo.php:120 wpdm-functions.php:844
|
1386 |
+
msgid "Update Date"
|
1387 |
+
msgstr "Data aggiornamento"
|
1388 |
+
|
1389 |
+
#: libs/class.CategoryHandler.php:359 libs/class.ShortCodes.php:426
|
1390 |
+
#: wpdm-functions.php:845
|
1391 |
+
msgid "Asc"
|
1392 |
+
msgstr "Asc"
|
1393 |
+
|
1394 |
+
#: libs/class.CategoryHandler.php:360 libs/class.ShortCodes.php:427
|
1395 |
+
#: wpdm-functions.php:846
|
1396 |
+
msgid "Desc"
|
1397 |
+
msgstr "Disc"
|
1398 |
+
|
1399 |
+
#: libs/class.CategoryHandler.php:361 libs/class.ShortCodes.php:428
|
1400 |
+
#: wpdm-functions.php:847
|
1401 |
+
msgid "Search"
|
1402 |
+
msgstr "Ricerca"
|
1403 |
+
|
1404 |
+
#: libs/class.CategoryHandler.php:362 libs/class.ShortCodes.php:429
|
1405 |
+
#: wpdm-functions.php:848
|
1406 |
+
msgid "Order"
|
1407 |
+
msgstr "Ordine"
|
1408 |
+
|
1409 |
+
#: libs/class.CategoryHandler.php:363 libs/class.ShortCodes.php:430
|
1410 |
+
#: wpdm-functions.php:849
|
1411 |
+
msgid "Order By"
|
1412 |
+
msgstr "Ordina per"
|
1413 |
+
|
1414 |
+
#: libs/class.Email.php:43
|
1415 |
msgid "General Email Template"
|
1416 |
msgstr "Modello di Email Generica"
|
1417 |
|
1418 |
+
#: libs/class.Email.php:52 libs/class.Email.php:62
|
1419 |
msgid "User Signup Notification"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: libs/class.Email.php:55
|
1423 |
#, php-format
|
1424 |
msgid "Welcome to %s"
|
1425 |
msgstr "Benvenuto a %s"
|
1426 |
|
1427 |
+
#: libs/class.Email.php:65
|
1428 |
+
#, php-format
|
1429 |
+
msgid "[ %s ] New User Registration"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: libs/class.Email.php:69
|
1433 |
+
msgid "New user registration on your site WordPress Download Manager:"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: libs/class.Email.php:73
|
1437 |
msgid "Password Reset Notification"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: libs/class.Email.php:76
|
1441 |
#, php-format
|
1442 |
msgid "Request to reset your %s password"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: libs/class.Email.php:83
|
1446 |
msgid "Email Lock Notification"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: libs/class.Email.php:86
|
1450 |
msgid "Download [#package_name#]"
|
1451 |
msgstr "Scarica [#package_name#]"
|
1452 |
|
1453 |
+
#: libs/class.Email.php:93 wpdm-core.php:192
|
1454 |
+
msgid "New Package Notification"
|
1455 |
+
msgstr ""
|
1456 |
+
|
1457 |
+
#: libs/class.Email.php:96
|
1458 |
+
msgid "New Package is Added By [#name#]"
|
1459 |
+
msgstr ""
|
1460 |
+
|
1461 |
+
#: libs/class.Email.php:260
|
1462 |
msgid "Sample Package Name"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: libs/class.FileList.php:64 libs/class.FileList.php:96
|
1466 |
+
#: libs/class.FileList.php:134 libs/class.FileList.php:202
|
1467 |
+
#: libs/class.User.php:62 libs/class.User.php:91 tpls3/wpdm-login-form.php:61
|
1468 |
+
#: tpls3/wpdm-login-modal-form.php:61
|
1469 |
msgid "Password"
|
1470 |
msgstr "Password"
|
1471 |
|
1472 |
+
#: libs/class.FileList.php:65
|
1473 |
msgid "Action"
|
1474 |
msgstr "Azione"
|
1475 |
|
1476 |
+
#: libs/class.MediaAccessControl.php:60
|
1477 |
+
msgid "<b>Error:</b> Wrong Password! Try Again."
|
1478 |
+
msgstr ""
|
1479 |
|
1480 |
+
#: libs/class.MediaAccessControl.php:84
|
1481 |
+
msgid "Protected Media File"
|
1482 |
+
msgstr ""
|
1483 |
|
1484 |
+
#: libs/class.MediaAccessControl.php:84
|
1485 |
+
msgid "You are not allowed to access the media file"
|
1486 |
+
msgstr ""
|
1487 |
|
1488 |
+
#: libs/class.MediaAccessControl.php:160
|
1489 |
+
msgid "This file is not protected."
|
1490 |
+
msgstr ""
|
1491 |
|
1492 |
+
#: libs/class.MediaAccessControl.php:163
|
1493 |
+
msgid "Protect this file"
|
1494 |
+
msgstr ""
|
1495 |
|
1496 |
+
#: libs/class.MediaAccessControl.php:168
|
1497 |
+
msgid "This file is protected"
|
1498 |
+
msgstr ""
|
|
|
1499 |
|
1500 |
+
#: libs/class.MediaAccessControl.php:170
|
1501 |
+
msgid "Block Direct Access"
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: libs/class.MediaAccessControl.php:173
|
1505 |
+
msgid "Remove Protection"
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: libs/class.MediaAccessControl.php:207 libs/class.MediaAccessControl.php:222
|
1509 |
+
msgid "This file is not protected yet!"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: libs/class.MediaAccessControl.php:209 libs/class.MediaAccessControl.php:224
|
1513 |
+
#: libs/class.MediaAccessControl.php:267
|
1514 |
+
msgid "Checking status..."
|
1515 |
+
msgstr ""
|
1516 |
+
|
1517 |
+
#: libs/class.MediaHandler.php:17
|
1518 |
+
msgid "Download Manager"
|
1519 |
+
msgstr "Download Manager"
|
1520 |
+
|
1521 |
+
#: libs/class.Messages.php:103
|
1522 |
+
#, fuzzy
|
1523 |
+
#| msgid "Download Limit Exceeded"
|
1524 |
+
msgid "Download Limit Exceeded!"
|
1525 |
+
msgstr "Limite di scaricamento superato"
|
1526 |
+
|
1527 |
+
#: libs/class.Messages.php:111 libs/class.Package.php:921
|
1528 |
+
#: libs/class.ShortCodes.php:142 tpls/lost-password-form.php:34
|
1529 |
+
#: tpls/wpdm-login-form.php:63 tpls/wpdm-login-modal-form.php:75
|
1530 |
+
#: tpls/wpdm-reg-form.php:79 tpls3/lost-password-form.php:29
|
1531 |
+
#: tpls3/wpdm-login-form.php:101 tpls3/wpdm-login-modal-form.php:88
|
1532 |
+
#: tpls3/wpdm-reg-form.php:82
|
1533 |
+
msgid "Login"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: libs/class.Messages.php:119
|
1537 |
+
#, fuzzy
|
1538 |
+
#| msgid "Permission Denied"
|
1539 |
+
msgid "Access Denied"
|
1540 |
+
msgstr "Autorizzazione negata"
|
1541 |
+
|
1542 |
+
#: libs/class.Package.php:28
|
1543 |
+
msgid "ID missing!"
|
1544 |
+
msgstr "Manca l'ID!"
|
1545 |
+
|
1546 |
+
#: libs/class.Package.php:130 libs/class.Package.php:133
|
1547 |
+
#: libs/class.Package.php:135
|
1548 |
+
msgid "Icon"
|
1549 |
+
msgstr "Icona"
|
1550 |
+
|
1551 |
+
#: libs/class.Package.php:138 libs/class.Package.php:145
|
1552 |
msgid "Thumbnail"
|
1553 |
msgstr "Miniatura"
|
1554 |
|
1555 |
+
#: libs/class.Package.php:169 libs/class.Package.php:643 wpdm-functions.php:103
|
1556 |
+
#: wpdm-start-download.php:24
|
1557 |
msgid "Download Limit Exceeded"
|
1558 |
msgstr "Limite di scaricamento superato"
|
1559 |
|
1560 |
+
#: libs/class.Package.php:172 libs/class.Package.php:180
|
1561 |
+
#: libs/class.Package.php:188 libs/class.Package.php:196
|
1562 |
msgid "DOWNLOAD ERROR"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: libs/class.Package.php:177 libs/class.Package.php:647
|
1566 |
+
#: libs/class.Package.php:875 wpdm-functions.php:107
|
1567 |
msgid "Download was expired on"
|
1568 |
msgstr "Il Download è scaduto il"
|
1569 |
|
1570 |
+
#: libs/class.Package.php:185 libs/class.Package.php:654
|
1571 |
+
#: libs/class.Package.php:881 wpdm-functions.php:114
|
1572 |
msgid "Download will be available from "
|
1573 |
msgstr "Il download sarà disponibile da "
|
1574 |
|
1575 |
+
#: libs/class.Package.php:219
|
1576 |
msgid "Terms and Conditions"
|
1577 |
msgstr "Termini e Condizioni"
|
1578 |
|
1579 |
+
#: libs/class.Package.php:220
|
1580 |
+
#, fuzzy
|
1581 |
+
#| msgid "Terms and Conditions"
|
1582 |
+
msgid "I Agree With Terms and Conditions"
|
1583 |
+
msgstr "Termini e Condizioni"
|
1584 |
|
1585 |
+
#: libs/class.Package.php:451
|
1586 |
msgid "No File Attached!"
|
1587 |
msgstr "Nessun Allegato!"
|
1588 |
|
1589 |
+
#: libs/class.Package.php:649 libs/class.Package.php:656
|
1590 |
+
#: libs/class.Package.php:666 wpdm-functions.php:109 wpdm-functions.php:116
|
1591 |
+
#: wpdm-functions.php:126
|
1592 |
msgid "Download:"
|
1593 |
msgstr "Download:"
|
1594 |
|
1595 |
+
#: libs/class.Package.php:748 wpdm-functions.php:208
|
1596 |
msgid "Download limit exceeded!"
|
1597 |
msgstr "Limite di scaricamento superato!"
|
1598 |
|
1599 |
+
#: libs/class.Package.php:810
|
1600 |
msgid "Verify CAPTCHA to Download"
|
1601 |
msgstr "Verifica il Captcha per scaricare"
|
1602 |
|
1603 |
+
#: libs/class.Package.php:876 libs/class.Package.php:882
|
1604 |
+
#: libs/class.Package.php:894
|
1605 |
msgid "DOWNLOAD ERROR:"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: libs/class.Package.php:970
|
1609 |
msgid "Limit Over!"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: libs/class.PackageLocks.php:44 tpls/lock-options/password-lock.php:11
|
1613 |
+
#: tpls3/lock-options/password-lock.php:11
|
1614 |
msgid "Enter Correct Password to Download"
|
1615 |
msgstr "Scrivi la Password per scaricare gratuitamente"
|
1616 |
|
1617 |
+
#: libs/class.PackageLocks.php:47 libs/class.PackageLocks.php:63
|
1618 |
+
#: tpls/lock-options/password-lock.php:14
|
1619 |
+
#: tpls/lock-options/password-lock.php:30 tpls/wpdm-all-downloads.php:47
|
1620 |
+
#: tpls3/lock-options/password-lock.php:14
|
1621 |
+
#: tpls3/lock-options/password-lock.php:30 tpls3/wpdm-all-downloads.php:121
|
1622 |
msgid "Processing..."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: libs/class.PackageLocks.php:54 libs/class.User.php:93
|
1626 |
+
#: tpls/lock-options/password-lock.php:21
|
1627 |
+
#: tpls3/lock-options/password-lock.php:21
|
1628 |
msgid "Enter Password"
|
1629 |
msgstr "Scrivi la Password"
|
1630 |
|
1631 |
+
#: libs/class.PackageLocks.php:55 tpls/lock-options/password-lock.php:22
|
1632 |
+
#: tpls3/lock-options/password-lock.php:22
|
1633 |
msgid "Submit"
|
1634 |
msgstr "Invia"
|
1635 |
|
1636 |
+
#: libs/class.Pagination.php:50 tpls/wpdm-all-downloads.php:53
|
1637 |
+
#: tpls/wpdm-all-downloads.php:398 tpls3/wpdm-all-downloads.php:127
|
1638 |
+
#: tpls3/wpdm-all-downloads.php:333 wpdm-functions.php:1887
|
1639 |
msgid "Previous"
|
1640 |
msgstr "Precedente"
|
1641 |
|
1642 |
+
#: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:52
|
1643 |
+
#: tpls/wpdm-all-downloads.php:399 tpls3/wpdm-all-downloads.php:126
|
1644 |
+
#: tpls3/wpdm-all-downloads.php:334 wpdm-functions.php:1888
|
1645 |
msgid "Next"
|
1646 |
msgstr "Successivo"
|
1647 |
|
1648 |
+
#: libs/class.ShortCodes.php:189
|
1649 |
msgid "User registration is disabled"
|
1650 |
msgstr "Errore: la registrazione degli utenti è disabilitata"
|
1651 |
|
1653 |
msgid "Failed To Open File!"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: libs/class.User.php:41
|
1657 |
+
#, fuzzy
|
1658 |
+
#| msgid "First"
|
1659 |
+
msgid "First name"
|
1660 |
+
msgstr "Primo"
|
1661 |
+
|
1662 |
+
#: libs/class.User.php:41
|
1663 |
+
msgid "Your First Name"
|
1664 |
+
msgstr ""
|
1665 |
+
|
1666 |
+
#: libs/class.User.php:42
|
1667 |
+
#, fuzzy
|
1668 |
+
#| msgid "Last Updated"
|
1669 |
+
msgid "Last name"
|
1670 |
+
msgstr "Ultimo aggiornamento"
|
1671 |
+
|
1672 |
+
#: libs/class.User.php:42
|
1673 |
+
#, fuzzy
|
1674 |
+
#| msgid "Product Name"
|
1675 |
+
msgid "Your Last Name"
|
1676 |
+
msgstr "Nome del prodotto"
|
1677 |
+
|
1678 |
+
#: libs/class.User.php:47
|
1679 |
+
msgid "Username"
|
1680 |
+
msgstr "Nome utente"
|
1681 |
+
|
1682 |
+
#: libs/class.User.php:49
|
1683 |
+
msgid "User Login ID"
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: libs/class.User.php:53
|
1687 |
+
#, fuzzy
|
1688 |
+
#| msgid "E-mail"
|
1689 |
+
msgid "Email"
|
1690 |
+
msgstr "E-mail"
|
1691 |
+
|
1692 |
+
#: libs/class.User.php:55
|
1693 |
+
#, fuzzy
|
1694 |
+
#| msgid "Invalid Email Address!"
|
1695 |
+
msgid "Your Email Address"
|
1696 |
+
msgstr "Indirizzo email non valido!"
|
1697 |
+
|
1698 |
+
#: libs/class.User.php:62
|
1699 |
+
msgid "Be Secure"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: libs/class.User.php:63 tpls/reset-password-form.php:30
|
1703 |
+
#: tpls3/reset-password-form.php:30
|
1704 |
+
msgid "Confirm Password"
|
1705 |
+
msgstr "Conferma la Password"
|
1706 |
+
|
1707 |
+
#: libs/class.User.php:63
|
1708 |
+
msgid "Do Not Forget"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: libs/class.User.php:86
|
1712 |
+
msgid "Login ID"
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: libs/class.User.php:88 tpls/lost-password-form.php:23
|
1716 |
+
#: tpls/lost-password-form.php:24 tpls3/lost-password-form.php:20
|
1717 |
+
#: tpls3/wpdm-login-form.php:55 tpls3/wpdm-login-modal-form.php:55
|
1718 |
+
msgid "Username or Email"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
#: libs/class.UserDashboard.php:17
|
1722 |
msgid "Profile"
|
1723 |
msgstr ""
|
1730 |
msgid "Account"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: libs/class.UserProfile.php:21
|
1734 |
+
msgid "Favourites"
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
#: modules/server-file-browser.php:8
|
1738 |
msgid "Not Allowed!"
|
1739 |
msgstr "Non hai i permessi per farlo!"
|
1740 |
|
1741 |
+
#: modules/server-file-browser.php:84
|
1742 |
msgid "Add file(s) from server"
|
1743 |
msgstr "Aggiungi File dal Server"
|
1744 |
|
1745 |
+
#: modules/strings.php:10 widgets/class.PackageInfo.php:117
|
1746 |
+
msgid "Download Count"
|
1747 |
+
msgstr "Conteggio Download"
|
1748 |
|
1749 |
+
#: modules/strings.php:12
|
1750 |
+
msgid "Stock"
|
|
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: modules/strings.php:13
|
1754 |
+
msgid "File Size"
|
1755 |
+
msgstr "Dimensioni file"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1756 |
|
1757 |
+
#: modules/strings.php:14
|
1758 |
+
#, fuzzy
|
1759 |
+
#| msgid "Invalid File Type!"
|
1760 |
+
msgid "File Type"
|
1761 |
+
msgstr "Tipo di File non valido!"
|
1762 |
|
1763 |
+
#: modules/strings.php:15
|
1764 |
+
#, fuzzy
|
1765 |
+
#| msgid "View Count"
|
1766 |
+
msgid "File Count"
|
1767 |
+
msgstr "Conteggio Viste"
|
1768 |
|
1769 |
+
#: modules/strings.php:16 tpls/wpdm-all-downloads.php:190
|
1770 |
+
#: tpls3/wpdm-all-downloads.php:159
|
1771 |
+
msgid "Create Date"
|
1772 |
msgstr "Data di Pubblicazione"
|
1773 |
|
1774 |
+
#: modules/strings.php:17 widgets/class.PackageInfo.php:23
|
1775 |
msgid "Last Updated"
|
1776 |
msgstr "Ultimo aggiornamento"
|
1777 |
|
1778 |
+
#: modules/strings.php:19 tpls/wpdm-edit-user-profile.php:47
|
1779 |
+
#: tpls/wpdm-edit-user-profile.php:48
|
1780 |
+
msgid "Description"
|
1781 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1782 |
|
1783 |
+
#: modules/strings.php:20
|
1784 |
+
#, fuzzy
|
1785 |
+
#| msgid "Package Name"
|
1786 |
+
msgid "Package Info"
|
1787 |
+
msgstr "Nome Pacchetto"
|
1788 |
|
1789 |
+
#: modules/strings.php:21
|
1790 |
+
#, fuzzy
|
1791 |
+
#| msgid "Attach File"
|
1792 |
+
msgid "Attached Files"
|
1793 |
+
msgstr "Allega file"
|
1794 |
|
1795 |
+
#: modules/strings.php:22
|
1796 |
+
#, fuzzy
|
1797 |
+
#| msgid "Total Views"
|
1798 |
+
msgid "Total Files"
|
1799 |
+
msgstr "Viste Totali"
|
1800 |
|
1801 |
+
#: modules/strings.php:23 tpls/wpdm-all-downloads.php:318
|
1802 |
+
#: tpls3/wpdm-all-downloads.php:260
|
1803 |
+
msgid "file(s)"
|
1804 |
+
msgstr ""
|
1805 |
|
1806 |
+
#: modules/strings.php:24
|
1807 |
+
msgid "Buy Now"
|
1808 |
+
msgstr ""
|
1809 |
|
1810 |
+
#: modules/strings.php:25
|
1811 |
+
msgid "Price"
|
1812 |
+
msgstr "Prezzo"
|
1813 |
|
1814 |
+
#: tpls/already-logged-in.php:15 tpls3/already-logged-in.php:15
|
1815 |
msgid "Welcome"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: tpls/already-logged-in.php:17 tpls3/already-logged-in.php:17
|
1819 |
msgid "You are already logged in."
|
1820 |
msgstr "Sei già autenticato."
|
1821 |
|
1822 |
+
#: tpls/already-logged-in.php:21 tpls3/already-logged-in.php:21
|
1823 |
msgid "Dashboard"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: tpls/asset-manager-ui.php:505 tpls3/asset-manager-ui.php:500
|
1827 |
msgid "New Folder"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: tpls/asset-manager-ui.php:507 tpls/asset-manager-ui.php:713
|
1831 |
+
#: tpls3/asset-manager-ui.php:502 tpls3/asset-manager-ui.php:706
|
1832 |
msgid "Upload File"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: tpls/asset-manager-ui.php:513 tpls3/asset-manager-ui.php:508
|
1836 |
msgid "Digital Asset Manager"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: tpls/asset-manager-ui.php:616 tpls3/asset-manager-ui.php:611
|
1840 |
msgid "Copy Shortcode"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: tpls/asset-manager-ui.php:720 tpls3/asset-manager-ui.php:713
|
1844 |
msgid "Drop files here"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: tpls/asset-manager-ui.php:827 tpls3/asset-manager-ui.php:820
|
1848 |
msgid "Authorized User Groups:"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: tpls/asset-manager-ui.php:849 tpls3/asset-manager-ui.php:842
|
1852 |
msgid "Authorized Users:"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: tpls/asset-viewer.php:6
|
1856 |
+
#, fuzzy
|
1857 |
+
#| msgid "You don't have permission to download this file"
|
1858 |
+
msgid "You do not have access to this asset"
|
1859 |
+
msgstr "Non hai il permesso di scaricare questo file"
|
1860 |
+
|
1861 |
+
#: tpls/lock-options-iframe.php:289 tpls3/lock-options-iframe.php:243
|
1862 |
msgid "Buy"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: tpls/lost-password-form.php:17 tpls3/lost-password-form.php:15
|
1866 |
+
msgid "Lost Password?"
|
1867 |
+
msgstr ""
|
1868 |
+
|
1869 |
+
#: tpls/lost-password-form.php:19 tpls3/lost-password-form.php:17
|
1870 |
+
msgid ""
|
1871 |
+
"Please enter your username or email address. You will receive a link to "
|
1872 |
+
"create a new password via email."
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: tpls/lost-password-form.php:29 tpls3/lost-password-form.php:24
|
1876 |
+
msgid "Reset Password"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: tpls/lost-password-form.php:35 tpls3/lost-password-form.php:30
|
1880 |
+
msgid "Register"
|
1881 |
+
msgstr "Registrati"
|
1882 |
+
|
1883 |
+
#: tpls/lost-password-form.php:53
|
1884 |
+
msgid "MAO: SENT!"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: tpls/lost-password-form.php:53
|
1888 |
+
msgid "Password reset link sent to your email."
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: tpls/lost-password-form.php:65 tpls/reset-password-form.php:54
|
1892 |
+
#: tpls/reset-password-form.php:73 tpls3/lost-password-form.php:47
|
1893 |
+
#: tpls3/reset-password-form.php:54 tpls3/reset-password-form.php:73
|
1894 |
+
msgid "ERROR!"
|
1895 |
+
msgstr ""
|
1896 |
+
|
1897 |
+
#: tpls/lost-password-form.php:65 tpls3/lost-password-form.php:47
|
1898 |
+
msgid "Account not found."
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
|
1902 |
+
msgid "MAIL SENT!"
|
1903 |
+
msgstr ""
|
1904 |
+
|
1905 |
+
#: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
|
1906 |
+
msgid "Please check your inbox."
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: tpls/reset-password-form.php:21 tpls/reset-password-form.php:26
|
1910 |
+
#: tpls3/reset-password-form.php:21 tpls3/reset-password-form.php:26
|
1911 |
+
msgid "New Password"
|
1912 |
+
msgstr ""
|
1913 |
+
|
1914 |
+
#: tpls/reset-password-form.php:23 tpls3/reset-password-form.php:23
|
1915 |
+
msgid "Please enter a new password"
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
+
#: tpls/reset-password-form.php:34 tpls3/reset-password-form.php:34
|
1919 |
+
msgid "Update Password"
|
1920 |
+
msgstr ""
|
1921 |
+
|
1922 |
+
#: tpls/reset-password-form.php:45 tpls3/reset-password-form.php:45
|
1923 |
+
msgid "Confirm password value must be same as the new password"
|
1924 |
+
msgstr ""
|
1925 |
+
|
1926 |
+
#: tpls/reset-password-form.php:52 tpls/user-dashboard/edit-profile.php:16
|
1927 |
+
#: tpls3/reset-password-form.php:52 tpls3/user-dashboard/edit-profile.php:16
|
1928 |
+
#: tpls3/wpdm-edit-user-profile.php:16
|
1929 |
+
msgid "DONE!"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: tpls/reset-password-form.php:52 tpls3/reset-password-form.php:52
|
1933 |
+
msgid "Password Updated"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: tpls/reset-password-form.php:52 tpls3/reset-password-form.php:52
|
1937 |
+
msgid "Go to your account dashboard"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: tpls/reset-password-form.php:54 tpls3/reset-password-form.php:54
|
1941 |
+
#, fuzzy
|
1942 |
+
#| msgid "Update Date"
|
1943 |
+
msgid "Password Update Failed"
|
1944 |
+
msgstr "Data aggiornamento"
|
1945 |
+
|
1946 |
+
#: tpls/search-result.php:3 tpls/simple-search-form.php:5
|
1947 |
+
#: tpls3/simple-search-form.php:5
|
1948 |
msgid "Search Package"
|
1949 |
msgstr "Nome del Pacchetto Campione"
|
1950 |
|
1951 |
+
#: tpls/search-result.php:16 tpls/simple-search-form.php:18
|
1952 |
+
#: tpls3/simple-search-form.php:18
|
1953 |
msgid "Search Result For"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: tpls/search-result.php:17 tpls/search-result.php:21
|
1957 |
#: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
|
1958 |
+
#: tpls3/simple-search-form.php:19 tpls3/simple-search-form.php:23
|
1959 |
msgid "Loading"
|
1960 |
msgstr "Carico"
|
1961 |
|
1962 |
+
#: tpls/shortcodes/toolbar.php:35 tpls/shortcodes/toolbar.php:69
|
1963 |
+
#: tpls3/shortcodes/toolbar.php:35 tpls3/shortcodes/toolbar.php:69
|
1964 |
+
msgid "Search Keyword..."
|
1965 |
+
msgstr ""
|
1966 |
|
1967 |
+
#: tpls/shortcodes/toolbar.php:39 tpls/shortcodes/toolbar.php:73
|
1968 |
+
#: tpls3/shortcodes/toolbar.php:39 tpls3/shortcodes/toolbar.php:73
|
1969 |
+
#, fuzzy
|
1970 |
+
#| msgid "Order By"
|
1971 |
+
msgid "Order By:"
|
1972 |
+
msgstr "Ordina per"
|
1973 |
+
|
1974 |
+
#: tpls/shortcodes/toolbar.php:44 tpls/shortcodes/toolbar.php:78
|
1975 |
+
#: tpls3/shortcodes/toolbar.php:44 tpls3/shortcodes/toolbar.php:78
|
1976 |
+
#, fuzzy
|
1977 |
+
#| msgid "Total Views"
|
1978 |
+
msgid "Views"
|
1979 |
+
msgstr "Viste Totali"
|
1980 |
+
|
1981 |
+
#: tpls/shortcodes/toolbar.php:49 tpls/shortcodes/toolbar.php:83
|
1982 |
+
#: tpls3/shortcodes/toolbar.php:49 tpls3/shortcodes/toolbar.php:83
|
1983 |
+
#, fuzzy
|
1984 |
+
#| msgid "Order"
|
1985 |
+
msgid "Order:"
|
1986 |
+
msgstr "Ordine"
|
1987 |
+
|
1988 |
+
#: tpls/shortcodes/toolbar.php:50 tpls/shortcodes/toolbar.php:84
|
1989 |
+
#: tpls3/shortcodes/toolbar.php:50 tpls3/shortcodes/toolbar.php:84
|
1990 |
+
msgid "Descending"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: tpls/shortcodes/toolbar.php:51 tpls/shortcodes/toolbar.php:85
|
1994 |
+
#: tpls3/shortcodes/toolbar.php:51 tpls3/shortcodes/toolbar.php:85
|
1995 |
+
msgid "Ascending"
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
+
#: tpls/shortcodes/toolbar.php:55 tpls/shortcodes/toolbar.php:89
|
1999 |
+
#: tpls3/shortcodes/toolbar.php:55 tpls3/shortcodes/toolbar.php:89
|
2000 |
+
#, fuzzy
|
2001 |
+
#| msgid "All Files"
|
2002 |
+
msgid "Apply Filter"
|
2003 |
+
msgstr "Tutti i file"
|
2004 |
+
|
2005 |
+
#: tpls/user-dashboard/edit-profile.php:13
|
2006 |
+
#: tpls3/user-dashboard/edit-profile.php:13 tpls3/wpdm-edit-user-profile.php:13
|
2007 |
+
msgid "SAVE FAILED!"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: tpls/user-dashboard/edit-profile.php:24
|
2011 |
+
#: tpls3/user-dashboard/edit-profile.php:24 tpls3/wpdm-edit-user-profile.php:24
|
2012 |
msgid "Basic Profile"
|
2013 |
msgstr "Profilo di Base"
|
2014 |
|
2015 |
+
#: tpls/user-dashboard/edit-profile.php:27
|
2016 |
+
#: tpls3/user-dashboard/edit-profile.php:27 tpls3/wpdm-edit-user-profile.php:27
|
2017 |
msgid "Display name:"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: tpls/user-dashboard/edit-profile.php:28
|
2021 |
+
#: tpls3/user-dashboard/edit-profile.php:28 tpls3/wpdm-edit-user-profile.php:28
|
2022 |
msgid "PayPal Email:"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: tpls/user-dashboard/edit-profile.php:30
|
2026 |
+
#: tpls3/user-dashboard/edit-profile.php:30 tpls3/wpdm-edit-user-profile.php:30
|
2027 |
msgid "Username:"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: tpls/user-dashboard/edit-profile.php:31
|
2031 |
+
#: tpls3/user-dashboard/edit-profile.php:31 tpls3/wpdm-edit-user-profile.php:31
|
2032 |
msgid "Email:"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: tpls/user-dashboard/edit-profile.php:33
|
2036 |
+
#: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
|
2037 |
msgid "New Password:"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: tpls/user-dashboard/edit-profile.php:33
|
2041 |
+
msgid "Use nothing if you don't want to change old password"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: tpls/user-dashboard/edit-profile.php:34
|
2045 |
+
#: tpls3/user-dashboard/edit-profile.php:34 tpls3/wpdm-edit-user-profile.php:34
|
2046 |
msgid "Re-type New Password:"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: tpls/user-dashboard/profile.php:22 tpls3/user-dashboard/profile.php:7
|
|
|
|
|
|
|
|
|
2050 |
msgid "User Level"
|
2051 |
msgstr "Livello Utente"
|
2052 |
|
2053 |
+
#: tpls/user-dashboard/profile.php:34 tpls3/user-dashboard/profile.php:19
|
2054 |
+
#: widgets/class.PackageInfo.php:20
|
2055 |
+
msgid "Total Downloads"
|
2056 |
+
msgstr "Downloads Totali"
|
2057 |
+
|
2058 |
+
#: tpls/user-dashboard/profile.php:42 tpls3/user-dashboard/profile.php:27
|
2059 |
msgid "Today's Download"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: tpls/user-dashboard/profile.php:53 tpls3/user-dashboard/profile.php:35
|
2063 |
msgid "Recommended Downloads"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: tpls/user-dashboard/profile.php:110
|
2067 |
+
msgid "My Favourites"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: tpls/user-dashboard/profile.php:116
|
2071 |
+
msgid "Remove"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: tpls/user-dashboard/profile.php:141 tpls3/user-dashboard/profile.php:77
|
2075 |
msgid "Last 5 Downloads"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: tpls/wpdm-all-downloads.php:38 tpls3/wpdm-all-downloads.php:112
|
2079 |
msgid "Display _MENU_ downloads per page"
|
2080 |
msgstr "Mostra _MENU_ per pagina"
|
2081 |
|
2082 |
+
#: tpls/wpdm-all-downloads.php:39 tpls3/wpdm-all-downloads.php:113
|
2083 |
msgid "Nothing _START_ to - sorry"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: tpls/wpdm-all-downloads.php:40 tpls3/wpdm-all-downloads.php:114
|
2087 |
msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: tpls/wpdm-all-downloads.php:41 tpls3/wpdm-all-downloads.php:115
|
2091 |
msgid "No downloads available"
|
2092 |
msgstr "Non ci sono download disponibili"
|
2093 |
|
2094 |
+
#: tpls/wpdm-all-downloads.php:42 tpls3/wpdm-all-downloads.php:116
|
2095 |
msgid "(filtered from _MAX_ total downloads)"
|
2096 |
msgstr "(filtrato da _MAX_ voci totali)"
|
2097 |
|
2098 |
+
#: tpls/wpdm-all-downloads.php:43 tpls3/wpdm-all-downloads.php:117
|
2099 |
msgid "No data available in table"
|
2100 |
msgstr "Nessun dato presente nella tabella"
|
2101 |
|
2102 |
+
#: tpls/wpdm-all-downloads.php:46 tpls3/wpdm-all-downloads.php:120
|
2103 |
msgid "Loading..."
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: tpls/wpdm-all-downloads.php:48 tpls3/wpdm-all-downloads.php:122
|
2107 |
msgid "Search:"
|
2108 |
msgstr "Ricerca:"
|
2109 |
|
2110 |
+
#: tpls/wpdm-all-downloads.php:50 tpls3/wpdm-all-downloads.php:124
|
2111 |
msgid "First"
|
2112 |
msgstr "Primo"
|
2113 |
|
2114 |
+
#: tpls/wpdm-all-downloads.php:51 tpls3/wpdm-all-downloads.php:125
|
2115 |
msgid "Last"
|
2116 |
msgstr "Ultimo"
|
2117 |
|
2118 |
+
#: tpls/wpdm-all-downloads.php:56 tpls3/wpdm-all-downloads.php:130
|
2119 |
msgid "activate to sort column ascending"
|
2120 |
msgstr "attiva per ordinare la colonna in ordine crescente"
|
2121 |
|
2122 |
+
#: tpls/wpdm-all-downloads.php:57 tpls3/wpdm-all-downloads.php:131
|
2123 |
msgid "activate to sort column descending"
|
2124 |
msgstr "attiva per ordinare la colonna in ordine decrescente"
|
2125 |
|
2126 |
+
#: tpls/wpdm-all-downloads.php:61 tpls3/wpdm-all-downloads.php:135
|
2127 |
msgid "All"
|
2128 |
msgstr "Tutti"
|
2129 |
|
2130 |
+
#: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2131 |
msgid "downloads"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
|
2135 |
msgid "download"
|
2136 |
msgstr "download"
|
2137 |
|
2138 |
+
#: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
|
2139 |
msgid "views"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
|
2143 |
msgid "view"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: tpls/wpdm-all-downloads.php:377 tpls3/wpdm-all-downloads.php:312
|
2147 |
msgid "No Packages Found"
|
2148 |
msgstr "Pacchetti non trovati"
|
2149 |
|
2150 |
+
#: tpls/wpdm-asset.php:23 tpls3/wpdm-asset.php:23
|
2151 |
msgid "Login to Download"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: tpls/wpdm-edit-user-profile.php:9
|
2155 |
+
#, fuzzy
|
2156 |
+
#| msgid "View File"
|
2157 |
+
msgid "View Profile"
|
2158 |
+
msgstr "Vedi File"
|
2159 |
+
|
2160 |
+
#: tpls/wpdm-edit-user-profile.php:10
|
2161 |
+
#, fuzzy
|
2162 |
+
#| msgid "Basic Profile"
|
2163 |
+
msgid "Public Profile Info"
|
2164 |
+
msgstr "Profilo di Base"
|
2165 |
+
|
2166 |
+
#: tpls/wpdm-edit-user-profile.php:19
|
2167 |
+
msgid "Short Intro"
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: tpls/wpdm-edit-user-profile.php:32
|
2171 |
+
msgid "Banner URL"
|
2172 |
+
msgstr ""
|
2173 |
+
|
2174 |
+
#: tpls/wpdm-edit-user-profile.php:41
|
2175 |
+
msgid "Profile Header Text Color"
|
2176 |
+
msgstr ""
|
2177 |
+
|
2178 |
+
#: tpls/wpdm-edit-user-profile.php:55
|
2179 |
+
#, fuzzy
|
2180 |
+
#| msgid "Save Settings"
|
2181 |
+
msgid "Payment Settings"
|
2182 |
+
msgstr "Salva le impostazioni"
|
2183 |
+
|
2184 |
+
#: tpls/wpdm-edit-user-profile.php:58
|
2185 |
+
msgid "PayPal Email"
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: tpls/wpdm-generate-password.php:30 tpls3/wpdm-generate-password.php:17
|
2189 |
msgid "Select Options"
|
2190 |
msgstr "Opzioni di scelta"
|
2191 |
|
2192 |
+
#: tpls/wpdm-generate-password.php:34 tpls3/wpdm-generate-password.php:19
|
2193 |
msgid "Number of passwords:"
|
2194 |
msgstr "Numero di passwords:"
|
2195 |
|
2196 |
+
#: tpls/wpdm-generate-password.php:37 tpls3/wpdm-generate-password.php:23
|
2197 |
msgid "Number of chars for each password:"
|
2198 |
msgstr "Numero di caratteri di ogni password:"
|
2199 |
|
2200 |
+
#: tpls/wpdm-generate-password.php:42
|
2201 |
+
#, fuzzy
|
2202 |
+
#| msgid "Valid chars:"
|
2203 |
+
msgid "Valid Chars:"
|
2204 |
msgstr "Caratteri validi:"
|
2205 |
|
2206 |
+
#: tpls/wpdm-generate-password.php:43
|
2207 |
+
msgid "Small Letters"
|
2208 |
+
msgstr ""
|
2209 |
|
2210 |
+
#: tpls/wpdm-generate-password.php:44
|
2211 |
+
msgid "Capital Letters"
|
2212 |
+
msgstr ""
|
2213 |
|
2214 |
+
#: tpls/wpdm-generate-password.php:45
|
2215 |
+
msgid "Numbers"
|
2216 |
+
msgstr ""
|
2217 |
|
2218 |
+
#: tpls/wpdm-generate-password.php:46
|
2219 |
+
msgid "Special Chars"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: tpls/wpdm-generate-password.php:55 tpls3/wpdm-generate-password.php:36
|
2223 |
+
msgid "Generated Passwords"
|
2224 |
+
msgstr "Password Create"
|
2225 |
+
|
2226 |
+
#: tpls/wpdm-generate-password.php:60
|
2227 |
+
#, fuzzy
|
2228 |
+
#| msgid "Generated Passwords"
|
2229 |
+
msgid "Insert Password(s)"
|
2230 |
+
msgstr "Password Create"
|
2231 |
+
|
2232 |
+
#: tpls/wpdm-login-form.php:58 tpls/wpdm-login-modal-form.php:65
|
2233 |
+
#: tpls3/wpdm-login-form.php:97 tpls3/wpdm-login-modal-form.php:77
|
2234 |
msgid "Remember Me"
|
2235 |
msgstr "Ricordami"
|
2236 |
|
2237 |
+
#: tpls/wpdm-login-form.php:59 tpls/wpdm-login-modal-form.php:66
|
2238 |
+
#: tpls3/wpdm-login-form.php:98 tpls3/wpdm-login-modal-form.php:78
|
2239 |
msgid "Forgot Password?"
|
2240 |
msgstr "Password dimenticata?"
|
2241 |
|
2242 |
+
#: tpls/wpdm-login-form.php:70 tpls/wpdm-login-modal-form.php:92
|
2243 |
+
#: tpls/wpdm-reg-form.php:59 tpls3/wpdm-login-form.php:105
|
2244 |
+
#: tpls3/wpdm-login-modal-form.php:105 tpls3/wpdm-reg-form.php:62
|
2245 |
+
msgid "Or connect using your social account"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
|
2249 |
+
#: tpls3/wpdm-login-form.php:116 tpls3/wpdm-login-modal-form.php:116
|
2250 |
msgid "Don't have an account yet?"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
|
2254 |
+
#: tpls/wpdm-reg-form.php:50 tpls3/wpdm-login-form.php:116
|
2255 |
+
#: tpls3/wpdm-login-modal-form.php:116 tpls3/wpdm-reg-form.php:53
|
2256 |
msgid "Register Now"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: tpls/wpdm-login-form.php:107 tpls/wpdm-login-modal-form.php:116
|
2260 |
+
#: tpls3/wpdm-login-form.php:136 tpls3/wpdm-login-modal-form.php:128
|
2261 |
msgid "Logging In..."
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: tpls/wpdm-login-form.php:113 tpls/wpdm-login-form.php:130
|
2265 |
+
#: tpls/wpdm-login-modal-form.php:121 tpls3/wpdm-login-form.php:141
|
2266 |
+
#: tpls3/wpdm-login-modal-form.php:133
|
2267 |
msgid "LOGIN FAILED!"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: tpls/wpdm-login-modal-form.php:42 tpls3/wpdm-login-form.php:41
|
2271 |
+
#: tpls3/wpdm-login-modal-form.php:42
|
2272 |
+
msgid "Login Failed!"
|
2273 |
+
msgstr "Autenticazione fallita!"
|
2274 |
+
|
2275 |
+
#: tpls/wpdm-reg-form.php:61 tpls3/wpdm-reg-form.php:64
|
2276 |
+
msgid "Connect using your social account"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: tpls/wpdm-reg-form.php:79 tpls3/wpdm-reg-form.php:82
|
2280 |
+
msgid "Already have an account?"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: tpls/wpdm-reg-form.php:97 tpls3/wpdm-reg-form.php:100
|
2284 |
+
msgid "Password did not match with the confirm password"
|
|
|
|
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: tpls/wpdm-reg-form.php:125 tpls3/wpdm-reg-form.php:127
|
2288 |
+
msgid "Signup Error:"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: tpls/wpdm-reg-form.php:148 tpls3/wpdm-reg-form.php:145
|
2292 |
+
msgid "Registration is disabled!"
|
2293 |
+
msgstr "La registrazione degli utenti è disabilitata!"
|
2294 |
|
2295 |
+
#: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
|
2296 |
+
msgid "Use nothing if you don\\'t want to change old password"
|
|
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: tpls3/user-dashboard/edit-profile.php:40 tpls3/wpdm-edit-user-profile.php:40
|
2300 |
+
msgid "Description:"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: tpls3/wpdm-generate-password.php:27
|
2304 |
+
msgid "Valid chars:"
|
2305 |
+
msgstr "Caratteri validi:"
|
2306 |
|
2307 |
+
#: tpls3/wpdm-generate-password.php:40
|
2308 |
+
msgid "Generate"
|
2309 |
+
msgstr "Crea"
|
2310 |
|
2311 |
+
#: widgets/class.Affiliate.php:35
|
2312 |
+
msgid "WPDM Affiliate ID:"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: widgets/class.CatPackages.php:76 widgets/class.Categories.php:127
|
2316 |
+
#: widgets/class.ListPackages.php:89 widgets/class.NewDownloads.php:51
|
2317 |
+
#: widgets/class.PackageInfo.php:110 widgets/class.Search.php:40
|
2318 |
+
#: widgets/class.Tags.php:72 widgets/class.TopDownloads.php:51
|
2319 |
+
msgid "Title:"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: widgets/class.CatPackages.php:80 widgets/class.ListPackages.php:93
|
2323 |
+
msgid "Select Category:"
|
2324 |
+
msgstr "Seleziona una categoria:"
|
2325 |
|
2326 |
+
#: widgets/class.CatPackages.php:86 widgets/class.ListPackages.php:121
|
2327 |
+
#: widgets/class.NewDownloads.php:55 widgets/class.TopDownloads.php:55
|
2328 |
+
msgid "Number of packages to show:"
|
2329 |
+
msgstr "Numero di pacchetti da visualizzare:"
|
2330 |
|
2331 |
+
#: widgets/class.Categories.php:131
|
2332 |
+
#, fuzzy
|
2333 |
+
#| msgid "Parent Category:"
|
2334 |
+
msgid "Parent:"
|
2335 |
+
msgstr "Categoria genitore:"
|
2336 |
|
2337 |
+
#: widgets/class.Categories.php:135
|
2338 |
+
#, fuzzy
|
2339 |
+
#| msgid "Parent Category:"
|
2340 |
+
msgid "On Category Page:"
|
2341 |
+
msgstr "Categoria genitore:"
|
2342 |
|
2343 |
+
#: widgets/class.Categories.php:137
|
2344 |
+
msgid "Show all"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: widgets/class.Categories.php:138
|
2348 |
+
#, fuzzy
|
2349 |
+
#| msgid "Sub-Categories"
|
2350 |
+
msgid "Show subcategories only"
|
2351 |
+
msgstr "Sotto-Categorie"
|
2352 |
+
|
2353 |
+
#: widgets/class.Categories.php:142
|
2354 |
+
#, fuzzy
|
2355 |
+
#| msgid "Style"
|
2356 |
+
msgid "Style:"
|
2357 |
+
msgstr "Stile"
|
2358 |
+
|
2359 |
+
#: widgets/class.Categories.php:149
|
2360 |
+
msgid "Top Level Only"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: widgets/class.Categories.php:152
|
2364 |
+
msgid "Hide widget when no category"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: widgets/class.ListPackages.php:100
|
2368 |
+
#, fuzzy
|
2369 |
+
#| msgid "File Download"
|
2370 |
+
msgid "On Single Download Page"
|
2371 |
+
msgstr "Scarica File"
|
2372 |
+
|
2373 |
+
#: widgets/class.ListPackages.php:101
|
2374 |
+
msgid "Show packages from current package category"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: widgets/class.PackageInfo.php:21
|
2378 |
+
msgid "Total Views"
|
2379 |
+
msgstr "Viste Totali"
|
2380 |
|
2381 |
+
#: widgets/class.PackageInfo.php:24
|
2382 |
+
msgid "Size"
|
2383 |
+
msgstr "Dimensione"
|
2384 |
+
|
2385 |
+
#: widgets/class.PackageInfo.php:114
|
2386 |
+
msgid "Fields to Show:"
|
2387 |
+
msgstr "Campi da Mostrare:"
|
2388 |
+
|
2389 |
+
#: widgets/class.PackageInfo.php:118
|
2390 |
+
msgid "View Count"
|
2391 |
+
msgstr "Conteggio Viste"
|
2392 |
+
|
2393 |
+
#: widgets/class.PackageInfo.php:122
|
2394 |
+
#, fuzzy
|
2395 |
+
#| msgid "Package Name"
|
2396 |
+
msgid "Package Size"
|
2397 |
+
msgstr "Nome Pacchetto"
|
2398 |
+
|
2399 |
+
#: widgets/class.PackageInfo.php:123
|
2400 |
+
msgid "Download Link"
|
2401 |
+
msgstr "Link per il Download"
|
2402 |
+
|
2403 |
+
#: widgets/class.PackageInfo.php:124
|
2404 |
+
#, fuzzy
|
2405 |
+
#| msgid "Download Link"
|
2406 |
+
msgid "Embed Download Options"
|
2407 |
+
msgstr "Link per il Download"
|
2408 |
+
|
2409 |
+
#: widgets/class.PackageInfo.php:125
|
2410 |
+
msgid "Style"
|
2411 |
+
msgstr "Stile"
|
2412 |
|
2413 |
+
#: widgets/class.PackageInfo.php:125
|
2414 |
+
msgid "Tabular View"
|
2415 |
+
msgstr "Vista Tabulare"
|
2416 |
+
|
2417 |
+
#: widgets/class.PackageInfo.php:126
|
2418 |
+
msgid "Show QR Code"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: widgets/class.Search.php:20
|
2422 |
+
#, fuzzy
|
2423 |
+
#| msgid "Search"
|
2424 |
+
msgid "Search..."
|
2425 |
+
msgstr "Ricerca"
|
2426 |
|
2427 |
+
#: widgets/class.Search.php:24
|
2428 |
+
msgid ""
|
2429 |
+
"Search result page was configured properly. Please create a page with "
|
2430 |
+
"shortcode [wpdm_search_result] and select thee page from widget settings"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: widgets/class.Search.php:44
|
2434 |
+
#, fuzzy
|
2435 |
+
#| msgid "Search Package"
|
2436 |
+
msgid "Search Result Page"
|
2437 |
+
msgstr "Nome del Pacchetto Campione"
|
2438 |
+
|
2439 |
+
#: widgets/class.Search.php:47
|
2440 |
+
msgid ""
|
2441 |
+
"Note: Create a page with short-code <code>[wpdm_search_result]</code> and "
|
2442 |
+
"select that page as search redult page"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: widgets/class.Tags.php:76
|
2446 |
+
#, fuzzy
|
2447 |
+
#| msgid "Title"
|
2448 |
+
msgid "Sub Title:"
|
2449 |
+
msgstr "Titolo"
|
2450 |
+
|
2451 |
+
#: widgets/class.Tags.php:80
|
2452 |
+
#, fuzzy
|
2453 |
+
#| msgid "Number of packages to show:"
|
2454 |
+
msgid "Number of tags to show:"
|
2455 |
+
msgstr "Numero di pacchetti da visualizzare:"
|
2456 |
|
2457 |
+
#: wpdm-core.php:110
|
2458 |
msgid "Select category"
|
2459 |
msgstr "Scegli una categoria"
|
2460 |
|
2461 |
+
#: wpdm-core.php:194
|
|
|
|
|
|
|
|
|
2462 |
#, fuzzy
|
2463 |
#| msgid "Update Date"
|
2464 |
msgid ": Update Available"
|
2465 |
msgstr "Data aggiornamento"
|
2466 |
|
2467 |
+
#: wpdm-functions.php:136
|
2468 |
msgid "Permission Denied"
|
2469 |
msgstr "Autorizzazione negata"
|
2470 |
|
2471 |
+
#: wpdm-functions.php:272
|
2472 |
msgid "Captcha Verification Failed!"
|
2473 |
msgstr "Verifica Captcha fallita!"
|
2474 |
|
2475 |
+
#: wpdm-functions.php:311 wpdm-functions.php:315
|
2476 |
msgid "Wrong Password! Try Again."
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: wpdm-functions.php:328
|
2480 |
msgid "Password usages limit exceeded"
|
2481 |
msgstr "Limite di scaricamento superato"
|
2482 |
|
2483 |
+
#: wpdm-functions.php:1425
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2484 |
msgid "Select Image"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: wpdm-functions.php:1456 wpdm-functions.php:1560
|
2488 |
msgid "SELECT IMAGE"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: wpdm-functions.php:1541
|
2492 |
msgid "Uploading"
|
2493 |
msgstr ""
|
2494 |
|
2496 |
msgid "Your IP address is blocked!"
|
2497 |
msgstr "L'indirizzo IP è bloccato!"
|
2498 |
|
2499 |
+
#: wpdm-start-download.php:22
|
2500 |
msgid "Package is not available!"
|
2501 |
msgstr "Pacchetto non disponibile!"
|
2502 |
|
2512 |
msgid "No file found!"
|
2513 |
msgstr "Nessun file trovato!"
|
2514 |
|
2515 |
+
#~ msgid "Operation Failed!"
|
2516 |
+
#~ msgstr "Operazione fallita!"
|
2517 |
+
|
2518 |
+
#~ msgid "Warning!"
|
2519 |
+
#~ msgstr "Allarme!"
|
2520 |
+
|
2521 |
+
#~ msgid "Attention!"
|
2522 |
+
#~ msgstr "Attenzione!"
|
2523 |
+
|
2524 |
+
#~ msgid "Awesome!"
|
2525 |
+
#~ msgstr "Terribile!"
|
2526 |
+
|
2527 |
+
#~ msgid "Join Now!"
|
2528 |
+
#~ msgstr "Unisciti Adesso!"
|
2529 |
+
|
2530 |
#~ msgid "https://www.wpdownloadmanager.com/"
|
2531 |
#~ msgstr "https://www.wpdownloadmanager.com/"
|
2532 |
|
2533 |
#~ msgid "https://www.wpdownloadmanager.com/purchases/"
|
2534 |
#~ msgstr "https://www.wpdownloadmanager.com/purchases/"
|
|
|
|
|
|
languages/download-manager.mo
CHANGED
Binary file
|
languages/download-manager.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Download Manager Pro v2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Shaon <proshaon@yahoo.com>\n"
|
9 |
"Language: en_BD\n"
|
@@ -13,15 +13,15 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 2.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: admin/class.WordPressDownloadManagerAdmin.php:
|
20 |
#: admin/tpls/metaboxes/package-settings.php:6
|
21 |
msgid "Package Settings"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin/class.WordPressDownloadManagerAdmin.php:
|
25 |
msgid "Attach File"
|
26 |
msgstr ""
|
27 |
|
@@ -33,37 +33,85 @@ msgstr ""
|
|
33 |
msgid "Add-Ons"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: admin/menus/class.Categories.php:
|
37 |
msgid "Category Image:"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/menus/class.Categories.php:
|
41 |
msgid "Image URL"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: admin/menus/class.Categories.php:
|
45 |
msgid "Select Category Image"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: admin/menus/class.Categories.php:
|
49 |
-
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: admin/menus/class.Categories.php:
|
53 |
msgid "Access:"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: admin/menus/class.Categories.php:
|
57 |
msgid ""
|
58 |
"Select the roles who should have access to the packages under this category"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: admin/menus/class.Categories.php:
|
62 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
63 |
msgid "All Visitors"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: admin/menus/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "Direct Download"
|
68 |
msgstr ""
|
69 |
|
@@ -75,13 +123,13 @@ msgstr ""
|
|
75 |
msgid "Settings"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin/menus/class.Settings.php:
|
79 |
-
#: admin/menus/class.Settings.php:
|
80 |
-
#: admin/menus/class.Settings.php:
|
81 |
msgid "Security token is expired! Refresh the page and try again."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: admin/menus/class.Settings.php:
|
85 |
msgid "Privacy Settings Saved Successfully"
|
86 |
msgstr ""
|
87 |
|
@@ -115,6 +163,27 @@ msgstr ""
|
|
115 |
msgid "Failed to connect with server!"
|
116 |
msgstr ""
|
117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
#: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
|
119 |
msgid "Link Templates"
|
120 |
msgstr ""
|
@@ -166,12 +235,6 @@ msgstr ""
|
|
166 |
msgid "From Email"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:185
|
170 |
-
#: admin/tpls/templates.php:343 tpls/asset-manager-ui.php:550
|
171 |
-
#: tpls/user-dashboard/edit-profile.php:51 tpls/wpdm-edit-user-profile.php:51
|
172 |
-
msgid "Save Changes"
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
#: admin/tpls/email-template-editor.php:119
|
176 |
msgid "Template Variables"
|
177 |
msgstr ""
|
@@ -196,62 +259,59 @@ msgstr ""
|
|
196 |
msgid "Emails"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: admin/tpls/emails-template.php:23 admin/tpls/templates.php:
|
200 |
msgid "Email Template"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
204 |
msgid "attached file is missing/deleted"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
208 |
msgid "No file uploaded yet!"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
212 |
-
msgid "Upload"
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: admin/tpls/metaboxes/attach-file.php:43 libs/class.FileList.php:305
|
216 |
-
msgid "Browse"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: admin/tpls/metaboxes/attach-file.php:45
|
220 |
-
msgid "URL"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: admin/tpls/metaboxes/attach-file.php:52
|
224 |
msgid "Drop file here"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
228 |
-
#: wpdm-functions.php:
|
229 |
msgid "Allowed Files"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
233 |
msgid "Invalid File Type!"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
237 |
msgid "Unauthorized Access!"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
|
|
241 |
msgid "Delete Current File"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
245 |
msgid "Are you sure?"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin/tpls/metaboxes/attach-file.php:
|
249 |
msgid ""
|
250 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
251 |
"circle\"></i> Removed!</div></div>"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: admin/tpls/metaboxes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
msgid "Icon URL"
|
256 |
msgstr ""
|
257 |
|
@@ -265,40 +325,48 @@ msgid "Must Agree with Terms"
|
|
265 |
msgstr ""
|
266 |
|
267 |
#: admin/tpls/metaboxes/lock-options.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Terms Title:"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
272 |
msgid "Terms and Conditions:"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
276 |
msgid "Terms Checkbox Label:"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
280 |
msgid "Enable Password Lock"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
284 |
msgid "Password:"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
288 |
msgid ""
|
289 |
"If you want to use multiple passwords, keep each one inside [], like [123]"
|
290 |
"[456][789]"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
294 |
msgid "Enable Captcha Lock"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
298 |
msgid "Please configure reCAPTCHA"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/tpls/metaboxes/lock-options.php:
|
302 |
msgid "Users will be asked for reCAPTCHA verification before download."
|
303 |
msgstr ""
|
304 |
|
@@ -314,47 +382,74 @@ msgstr ""
|
|
314 |
msgid "Version:"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
318 |
msgid "Link Label:"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
msgid "File Size:"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
326 |
msgid "Stock Limit:"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
|
|
|
|
|
|
|
|
330 |
msgid "View Count:"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
334 |
msgid "Download Count:"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
338 |
msgid "Allow Access:"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
342 |
msgid "Who should be able to download?"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
346 |
msgid "Page Template:"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
350 |
msgid "Master Key"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
354 |
msgid "Regenerate Master Key for Download"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin/tpls/metaboxes/package-settings.php:
|
358 |
msgid "This key can be used for direct download"
|
359 |
msgstr ""
|
360 |
|
@@ -370,8 +465,9 @@ msgstr ""
|
|
370 |
msgid "Check For Updates"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:
|
374 |
-
#: tpls/wpdm-dashboard.php:
|
|
|
375 |
msgid "Logout"
|
376 |
msgstr ""
|
377 |
|
@@ -397,63 +493,47 @@ msgid "Free Add-ons"
|
|
397 |
msgstr ""
|
398 |
|
399 |
#: admin/tpls/settings/addon-update.php:58
|
400 |
-
#: admin/tpls/settings/addon-update.php:
|
401 |
msgid "Product Name"
|
402 |
msgstr ""
|
403 |
|
404 |
#: admin/tpls/settings/addon-update.php:59
|
405 |
-
#: admin/tpls/settings/addon-update.php:
|
406 |
msgid "Active(v)"
|
407 |
msgstr ""
|
408 |
|
409 |
#: admin/tpls/settings/addon-update.php:60
|
410 |
-
#: admin/tpls/settings/addon-update.php:105
|
411 |
-
msgid "Latest(v)"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: admin/tpls/settings/addon-update.php:61
|
415 |
#: admin/tpls/settings/addon-update.php:106
|
416 |
-
|
417 |
-
#: admin/tpls/settings/user-interface.php:139 libs/class.FileList.php:96
|
418 |
-
#: libs/class.FileList.php:98 libs/class.FileList.php:134
|
419 |
-
#: libs/class.FileList.php:136 libs/class.FileList.php:201
|
420 |
-
#: libs/class.FileList.php:248 libs/class.FileList.php:303
|
421 |
-
#: libs/class.Package.php:74 libs/class.Package.php:152
|
422 |
-
#: libs/class.Package.php:646 libs/class.Package.php:671
|
423 |
-
#: libs/class.Package.php:738 libs/class.Package.php:821
|
424 |
-
#: libs/class.Package.php:847 libs/class.Package.php:874
|
425 |
-
#: libs/class.Package.php:1246 libs/class.PackageLocks.php:59
|
426 |
-
#: libs/class.PackageLocks.php:96 tpls/lock-options-iframe.php:243
|
427 |
-
#: tpls/wpdm-all-downloads.php:160 tpls/wpdm-asset.php:21
|
428 |
-
#: wpdm-functions.php:103 wpdm-functions.php:128 wpdm-functions.php:194
|
429 |
-
msgid "Download"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/tpls/settings/addon-update.php:
|
433 |
-
#: admin/tpls/settings/addon-update.php:
|
434 |
msgid "Install"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin/tpls/settings/addon-update.php:
|
438 |
-
#: admin/tpls/settings/addon-update.php:
|
439 |
msgid "Update"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin/tpls/settings/addon-update.php:
|
443 |
-
#: admin/tpls/settings/addon-update.php:
|
444 |
msgid "Updated"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin/tpls/settings/addon-update.php:
|
448 |
msgid "Expired"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin/tpls/settings/addon-update.php:
|
452 |
-
#: tpls/
|
|
|
|
|
453 |
msgid "Please Wait..."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin/tpls/settings/addon-update.php:
|
457 |
msgid "Success!"
|
458 |
msgstr ""
|
459 |
|
@@ -485,151 +565,193 @@ msgstr ""
|
|
485 |
msgid "File Browser Access:"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/tpls/settings/basic.php:
|
489 |
msgid "Who will have access to server file browser"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/tpls/settings/basic.php:
|
493 |
msgid "Upload Settings"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: admin/tpls/settings/basic.php:
|
497 |
msgid "Sanitize Filename"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/tpls/settings/basic.php:
|
501 |
msgid ""
|
502 |
"Check the option if you want to sanitize uploaded file names to remove "
|
503 |
"illegal chars"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/tpls/settings/basic.php:
|
507 |
msgid "Chunk Upload"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: admin/tpls/settings/basic.php:
|
511 |
msgid ""
|
512 |
"Check the option if you want to enable chunk upload to override http upload "
|
513 |
"limits"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: admin/tpls/settings/basic.php:
|
517 |
msgid "Chunk Size"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: admin/tpls/settings/basic.php:
|
521 |
msgid "File Download"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/tpls/settings/basic.php:
|
525 |
msgid "Download Speed:"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin/tpls/settings/basic.php:
|
529 |
msgid "Blocked IPs"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/tpls/settings/basic.php:
|
533 |
msgid "One IP per line"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/tpls/settings/basic.php:
|
537 |
msgid ""
|
538 |
"List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 "
|
539 |
"or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
|
540 |
"2620:112:3000::/44 )"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/tpls/settings/basic.php:
|
544 |
msgid "Write a Message for Blocked IPs"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/tpls/settings/basic.php:
|
548 |
msgid "Message for Blocked IPs"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/tpls/settings/basic.php:
|
552 |
msgid ""
|
553 |
"If you get broken download, then try enabling/disabling following options, "
|
554 |
"as sometimes server may not support output buffering or partial downloads"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/tpls/settings/basic.php:
|
558 |
msgid "Resumable Downloads"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: admin/tpls/settings/basic.php:
|
562 |
msgid "Enabled"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: admin/tpls/settings/basic.php:
|
566 |
msgid "Disabled"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: admin/tpls/settings/basic.php:
|
570 |
msgid "Output Buffering"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: admin/tpls/settings/basic.php:
|
574 |
msgid "Open in Browser"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: admin/tpls/settings/basic.php:
|
578 |
msgid ""
|
579 |
"Try to Open in Browser instead of download when someone clicks on download "
|
580 |
"link"
|
581 |
msgstr ""
|
582 |
|
583 |
#: admin/tpls/settings/basic.php:178
|
584 |
-
msgid "
|
|
|
|
|
|
|
|
|
585 |
msgstr ""
|
586 |
|
587 |
#: admin/tpls/settings/basic.php:180
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
588 |
msgid "reCAPTCHA Site Key"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: admin/tpls/settings/basic.php:
|
592 |
msgid ""
|
593 |
"Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
|
594 |
"www.google.com/recaptcha/admin#list\">here</a>"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: admin/tpls/settings/basic.php:
|
598 |
msgid "reCAPTCHA Secret Key"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
602 |
msgid "Misc Settings"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: admin/tpls/settings/basic.php:
|
606 |
msgid "Login Page"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/tpls/settings/basic.php:
|
610 |
-
#: admin/tpls/settings/basic.php:
|
611 |
msgid "None Selected"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: admin/tpls/settings/basic.php:
|
615 |
-
#: admin/tpls/settings/basic.php:
|
616 |
#, php-format
|
617 |
msgid "The page where you used short-code %s"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
621 |
msgid "Register Page"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/tpls/settings/basic.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
msgid "Dashboard Page"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: admin/tpls/settings/basic.php:
|
629 |
msgid "Include Packages in Main RSS Feed"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/tpls/settings/basic.php:
|
633 |
#, php-format
|
634 |
msgid ""
|
635 |
"Check this option if you want to show wpdm packages in your main <a target="
|
@@ -671,76 +793,88 @@ msgid "Delete All Stats Data"
|
|
671 |
msgstr ""
|
672 |
|
673 |
#: admin/tpls/settings/user-interface.php:14
|
674 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
msgstr ""
|
676 |
|
677 |
#: admin/tpls/settings/user-interface.php:20
|
|
|
|
|
|
|
|
|
678 |
msgid "Bootstrap JS"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: admin/tpls/settings/user-interface.php:
|
682 |
msgid "Bootstrap CSS"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: admin/tpls/settings/user-interface.php:
|
686 |
msgid "Font Awesome"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: admin/tpls/settings/user-interface.php:
|
690 |
msgid "Front CSS"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: admin/tpls/settings/user-interface.php:
|
694 |
msgid "Google Font"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: admin/tpls/settings/user-interface.php:
|
698 |
msgid ""
|
699 |
"Because, sometimes your theme may have those scripts/styles enqueued already"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: admin/tpls/settings/user-interface.php:
|
703 |
msgid "Colors"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: admin/tpls/settings/user-interface.php:
|
707 |
msgid "Primary:"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: admin/tpls/settings/user-interface.php:
|
711 |
msgid "Secondary:"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: admin/tpls/settings/user-interface.php:
|
715 |
msgid "Info:"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: admin/tpls/settings/user-interface.php:
|
719 |
msgid "Success:"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: admin/tpls/settings/user-interface.php:
|
723 |
msgid "Warning:"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: admin/tpls/settings/user-interface.php:
|
727 |
msgid "Danger:"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: admin/tpls/settings/user-interface.php:
|
731 |
msgid "Download Button"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: admin/tpls/settings/user-interface.php:
|
735 |
msgid "Details Page"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: admin/tpls/settings/user-interface.php:
|
739 |
-
#: admin/tpls/settings/user-interface.php:
|
740 |
msgid "Border Radius"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: admin/tpls/settings/user-interface.php:
|
744 |
msgid "Shortcode Page"
|
745 |
msgstr ""
|
746 |
|
@@ -753,7 +887,7 @@ msgid "Export History"
|
|
753 |
msgstr ""
|
754 |
|
755 |
#: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
|
756 |
-
#: tpls/already-logged-in.php:
|
757 |
msgid "Download History"
|
758 |
msgstr ""
|
759 |
|
@@ -769,18 +903,66 @@ msgstr ""
|
|
769 |
msgid "Download History is Empty"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: admin/tpls/stats/history.php:
|
773 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgid "Package Name"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: admin/tpls/stats/history.php:
|
778 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
779 |
msgid "Download Time"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: admin/tpls/stats/history.php:
|
783 |
-
msgid "User
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: admin/tpls/templates.php:19
|
@@ -790,460 +972,615 @@ msgid ""
|
|
790 |
"href='%s'>WordPress Download Manager Pro</a>"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: admin/tpls/templates.php:
|
794 |
-
|
|
|
|
|
|
|
795 |
msgstr ""
|
796 |
|
797 |
#: admin/tpls/templates.php:28
|
|
|
|
|
|
|
|
|
798 |
msgid "Template ID"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: admin/tpls/templates.php:
|
802 |
msgid "Actions"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: admin/tpls/templates.php:
|
806 |
msgid "To:"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: admin/tpls/templates.php:
|
810 |
msgid "Edit"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: admin/tpls/templates.php:
|
|
|
814 |
msgid "Logo URL"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: admin/tpls/templates.php:
|
818 |
msgid "Banner/Background Image URL"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: admin/tpls/templates.php:
|
822 |
msgid "Footer Text"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: admin/tpls/templates.php:
|
826 |
msgid "Facebook Page URL"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: admin/tpls/templates.php:
|
830 |
msgid "Twitter Profile URL"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: admin/tpls/templates.php:
|
834 |
msgid "Youtube Profile URL"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: admin/tpls/templates.php:
|
838 |
msgid "Template Preview"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: admin/tpls/templates.php:
|
842 |
msgid ""
|
843 |
"This is a preview, original template color scheme may look little different, "
|
844 |
"but structure will be same"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: admin/tpls/templates.php:
|
848 |
msgid "Saving..."
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: download-manager.php:
|
852 |
-
#:
|
|
|
|
|
|
|
|
|
853 |
msgid "Downloads"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: download-manager.php:
|
857 |
msgid "File"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: download-manager.php:
|
861 |
msgid "Add New"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: download-manager.php:
|
865 |
msgid "Add New File"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: download-manager.php:
|
869 |
msgid "Edit File"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: download-manager.php:
|
873 |
msgid "New File"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: download-manager.php:
|
877 |
msgid "All Files"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: download-manager.php:
|
881 |
msgid "View File"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: download-manager.php:
|
885 |
msgid "Search Files"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: download-manager.php:
|
889 |
msgid "No File Found"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: download-manager.php:
|
893 |
msgid "No Files found in Trash"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: download-manager.php:
|
897 |
-
#: tpls/wpdm-all-downloads.php:158
|
898 |
msgid "Categories"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: download-manager.php:
|
902 |
msgid "Category"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: download-manager.php:
|
906 |
msgid "Search Categories"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: download-manager.php:
|
910 |
msgid "All Categories"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: download-manager.php:
|
914 |
msgid "Parent Category"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: download-manager.php:
|
918 |
msgid "Parent Category:"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: download-manager.php:
|
922 |
msgid "Edit Category"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: download-manager.php:
|
926 |
msgid "Update Category"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: download-manager.php:
|
930 |
msgid "Add New Category"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: download-manager.php:
|
934 |
msgid "New Category Name"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: libs/class.Apply.php:
|
938 |
-
msgid "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: libs/class.Apply.php:
|
942 |
-
|
|
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: libs/class.Apply.php:
|
946 |
-
msgid "
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: libs/class.Apply.php:
|
950 |
-
msgid "
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: libs/class.Apply.php:
|
954 |
-
msgid "
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: libs/class.Apply.php:
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: libs/class.Apply.php:
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: libs/class.Apply.php:
|
966 |
-
|
967 |
-
msgid "[%s] New User Registration"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: libs/class.Apply.php:
|
971 |
msgid ""
|
972 |
"Your account has been created successfully and login info sent to your mail "
|
973 |
"address."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: libs/class.Apply.php:
|
977 |
-
msgid "Your account has been created successfully"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: libs/class.Apply.php:
|
981 |
-
msgid "Email already
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: libs/class.Apply.php:
|
985 |
msgid "Username already exists."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: libs/class.Apply.php:
|
989 |
msgid "Session Expired! Please try again."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: libs/class.Apply.php:
|
993 |
msgid "You don't have permission to download this file"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: libs/class.Apply.php:
|
997 |
msgid "Download link is expired. Please get new download link."
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: libs/class.Apply.php:
|
1001 |
msgid "Download link is expired or not valid. Please get new download link."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: libs/class.Apply.php:
|
1005 |
msgid "Stock Limit Reached"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: libs/class.Apply.php:
|
1009 |
msgid "Invalid download link."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: libs/class.
|
1013 |
-
msgid "Price"
|
1014 |
-
msgstr ""
|
1015 |
-
|
1016 |
-
#: libs/class.AssetManager.php:114
|
1017 |
msgid ""
|
1018 |
"Download link is expired! Go back and Refresh the page to regenerate "
|
1019 |
"download link"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: libs/class.AssetManager.php:
|
1023 |
msgid "Asset Manager"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: libs/class.AssetManager.php:
|
1027 |
-
#: libs/class.AssetManager.php:
|
1028 |
-
#: libs/class.AssetManager.php:
|
1029 |
-
#: libs/class.AssetManager.php:
|
1030 |
-
#: libs/class.AssetManager.php:
|
1031 |
-
#: libs/class.AssetManager.php:
|
1032 |
-
#: libs/class.AssetManager.php:
|
1033 |
-
#: libs/class.AssetManager.php:
|
1034 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1035 |
msgid "Error! Session Expired. Try refreshing page."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: libs/class.AssetManager.php:
|
1039 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1040 |
msgid "Error! Unauthorized Access."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: libs/class.AssetManager.php:
|
1044 |
-
#: libs/class.AssetManager.php:
|
1045 |
-
#: libs/class.AssetManager.php:
|
1046 |
-
|
1047 |
-
#: libs/class.AssetManager.php:468
|
1048 |
-
msgid "Error! Unauthorized Path."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: libs/class.AssetManager.php:
|
|
|
1052 |
msgid "Home"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
1056 |
msgid "Invalid source path"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: libs/class.AssetManager.php:
|
1060 |
msgid "Invalid destination path"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: libs/class.AssetManager.php:
|
1064 |
msgid "File moved successfully"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: libs/class.AssetManager.php:
|
1068 |
msgid "File copied successfully"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: libs/class.AssetManager.php:
|
1072 |
msgid "Asset not found!"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: libs/class.AssetManager.php:
|
|
|
|
|
|
|
|
|
1076 |
msgid "Error! Invalid Destination Path."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: libs/class.AssetManager.php:
|
1080 |
msgid "Please activate \"zlib\" in your server to perform zip operations"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: libs/class.AssetManager.php:
|
1084 |
msgid "Unzipped successfully."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: libs/class.AssetManager.php:
|
1088 |
msgid "Error! Couldn't open the zip file."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: libs/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1092 |
msgid "General Email Template"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: libs/class.Email.php:
|
1096 |
msgid "User Signup Notification"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: libs/class.Email.php:
|
1100 |
#, php-format
|
1101 |
msgid "Welcome to %s"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: libs/class.Email.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1105 |
msgid "Password Reset Notification"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: libs/class.Email.php:
|
1109 |
#, php-format
|
1110 |
msgid "Request to reset your %s password"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: libs/class.Email.php:
|
1114 |
msgid "Email Lock Notification"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: libs/class.Email.php:
|
1118 |
msgid "Download [#package_name#]"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: libs/class.Email.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1122 |
msgid "Sample Package Name"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: libs/class.FileList.php:
|
1126 |
-
#: libs/class.FileList.php:
|
1127 |
-
#:
|
|
|
1128 |
msgid "Password"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: libs/class.FileList.php:
|
1132 |
msgid "Action"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: libs/class.
|
1136 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: libs/class.Messages.php:
|
1140 |
-
msgid "
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: libs/class.Messages.php:
|
1144 |
-
|
|
|
|
|
|
|
|
|
|
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: libs/class.Messages.php:
|
1148 |
-
msgid "
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: libs/class.Package.php:
|
1152 |
msgid "ID missing!"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: libs/class.Package.php:
|
1156 |
-
#: libs/class.Package.php:
|
1157 |
msgid "Icon"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: libs/class.Package.php:
|
1161 |
msgid "Thumbnail"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: libs/class.Package.php:
|
1165 |
-
#:
|
1166 |
msgid "Download Limit Exceeded"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: libs/class.Package.php:
|
1170 |
-
#: libs/class.Package.php:
|
1171 |
msgid "DOWNLOAD ERROR"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: libs/class.Package.php:
|
1175 |
-
#: libs/class.Package.php:
|
1176 |
msgid "Download was expired on"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: libs/class.Package.php:
|
1180 |
-
#: libs/class.Package.php:
|
1181 |
msgid "Download will be available from "
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: libs/class.Package.php:
|
1185 |
msgid "Terms and Conditions"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: libs/class.Package.php:
|
1189 |
-
msgid "I Agree"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: libs/class.Package.php:
|
1193 |
msgid "No File Attached!"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: libs/class.Package.php:
|
1197 |
-
#: libs/class.Package.php:
|
1198 |
-
#: wpdm-functions.php:
|
1199 |
msgid "Download:"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: libs/class.Package.php:
|
1203 |
msgid "Download limit exceeded!"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: libs/class.Package.php:
|
1207 |
msgid "Verify CAPTCHA to Download"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: libs/class.Package.php:
|
1211 |
-
#: libs/class.Package.php:
|
1212 |
msgid "DOWNLOAD ERROR:"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: libs/class.Package.php:
|
1216 |
msgid "Limit Over!"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: libs/class.PackageLocks.php:
|
|
|
1220 |
msgid "Enter Correct Password to Download"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: libs/class.PackageLocks.php:
|
1224 |
-
#: tpls/
|
|
|
|
|
|
|
1225 |
msgid "Processing..."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: libs/class.PackageLocks.php:
|
|
|
|
|
1229 |
msgid "Enter Password"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: libs/class.PackageLocks.php:
|
|
|
1233 |
msgid "Submit"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: libs/class.Pagination.php:50 tpls/wpdm-all-downloads.php:
|
1237 |
-
#: tpls/wpdm-all-downloads.php:
|
|
|
1238 |
msgid "Previous"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:
|
1242 |
-
#: tpls/wpdm-all-downloads.php:
|
|
|
1243 |
msgid "Next"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: libs/class.ShortCodes.php:
|
1247 |
msgid "User registration is disabled"
|
1248 |
msgstr ""
|
1249 |
|
@@ -1251,6 +1588,61 @@ msgstr ""
|
|
1251 |
msgid "Failed To Open File!"
|
1252 |
msgstr ""
|
1253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1254 |
#: libs/class.UserDashboard.php:17
|
1255 |
msgid "Profile"
|
1256 |
msgstr ""
|
@@ -1263,27 +1655,27 @@ msgstr ""
|
|
1263 |
msgid "Account"
|
1264 |
msgstr ""
|
1265 |
|
|
|
|
|
|
|
|
|
1266 |
#: modules/server-file-browser.php:8
|
1267 |
msgid "Not Allowed!"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: modules/server-file-browser.php:
|
1271 |
msgid "Add file(s) from server"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: modules/strings.php:10
|
1275 |
msgid "Download Count"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: modules/strings.php:
|
1279 |
-
msgid "Version"
|
1280 |
-
msgstr ""
|
1281 |
-
|
1282 |
-
#: modules/strings.php:12 modules/strings.php:22
|
1283 |
msgid "Stock"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: modules/strings.php:13
|
1287 |
msgid "File Size"
|
1288 |
msgstr ""
|
1289 |
|
@@ -1295,526 +1687,677 @@ msgstr ""
|
|
1295 |
msgid "File Count"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: modules/strings.php:16 tpls/wpdm-all-downloads.php:
|
|
|
1299 |
msgid "Create Date"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: modules/strings.php:17
|
1303 |
msgid "Last Updated"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: modules/strings.php:
|
|
|
1307 |
msgid "Description"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: modules/strings.php:
|
1311 |
msgid "Package Info"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: modules/strings.php:
|
1315 |
msgid "Attached Files"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: modules/strings.php:
|
1319 |
msgid "Total Files"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: modules/
|
1323 |
-
|
|
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: modules/
|
1327 |
-
|
1328 |
-
msgid "Title:"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: modules/
|
1332 |
-
msgid "
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#:
|
1336 |
-
msgid "
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#:
|
1340 |
-
msgid "
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#:
|
1344 |
-
msgid "
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#:
|
1348 |
-
msgid "
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#:
|
1352 |
-
|
|
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#:
|
1356 |
-
msgid "
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#:
|
1360 |
-
msgid "
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#:
|
1364 |
-
msgid "
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#:
|
1368 |
-
msgid "
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#:
|
1372 |
-
msgid "
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#:
|
1376 |
-
msgid "
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#:
|
1380 |
-
msgid "
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: tpls/
|
1384 |
-
msgid "
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: tpls/
|
1388 |
-
msgid "
|
|
|
|
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: tpls/
|
1392 |
-
msgid "
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: tpls/
|
1396 |
-
msgid "
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: tpls/
|
1400 |
-
msgid "
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: tpls/
|
1404 |
-
msgid "
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: tpls/
|
1408 |
-
|
|
|
|
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: tpls/
|
1412 |
-
msgid "
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: tpls/
|
1416 |
-
msgid "
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: tpls/
|
1420 |
-
msgid "
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: tpls/
|
1424 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: tpls/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1428 |
msgid "Search Package"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: tpls/simple-search-form.php:18
|
|
|
1432 |
msgid "Search Result For"
|
1433 |
msgstr ""
|
1434 |
|
|
|
1435 |
#: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
|
|
|
1436 |
msgid "Loading"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: tpls/
|
1440 |
-
#:
|
1441 |
-
msgid "
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: tpls/
|
1445 |
-
|
|
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: tpls/
|
1449 |
-
#:
|
1450 |
-
msgid "
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: tpls/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1454 |
msgid "Basic Profile"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: tpls/user-dashboard/edit-profile.php:27
|
|
|
1458 |
msgid "Display name:"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: tpls/user-dashboard/edit-profile.php:28
|
|
|
1462 |
msgid "PayPal Email:"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: tpls/user-dashboard/edit-profile.php:30
|
|
|
1466 |
msgid "Username:"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: tpls/user-dashboard/edit-profile.php:31
|
|
|
1470 |
msgid "Email:"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: tpls/user-dashboard/edit-profile.php:33
|
|
|
1474 |
msgid "New Password:"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: tpls/user-dashboard/edit-profile.php:33
|
1478 |
-
msgid "Use nothing if you don
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: tpls/user-dashboard/edit-profile.php:34
|
|
|
1482 |
msgid "Re-type New Password:"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: tpls/user-dashboard/
|
1486 |
-
msgid "
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: tpls/user-dashboard/profile.php:
|
1490 |
-
|
|
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: tpls/user-dashboard/profile.php:27
|
1494 |
msgid "Today's Download"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: tpls/user-dashboard/profile.php:35
|
1498 |
msgid "Recommended Downloads"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: tpls/user-dashboard/profile.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1502 |
msgid "Last 5 Downloads"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: tpls/wpdm-all-downloads.php:112
|
1506 |
msgid "Display _MENU_ downloads per page"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: tpls/wpdm-all-downloads.php:113
|
1510 |
msgid "Nothing _START_ to - sorry"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: tpls/wpdm-all-downloads.php:114
|
1514 |
msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: tpls/wpdm-all-downloads.php:115
|
1518 |
msgid "No downloads available"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: tpls/wpdm-all-downloads.php:116
|
1522 |
msgid "(filtered from _MAX_ total downloads)"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: tpls/wpdm-all-downloads.php:117
|
1526 |
msgid "No data available in table"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: tpls/wpdm-all-downloads.php:120
|
1530 |
msgid "Loading..."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: tpls/wpdm-all-downloads.php:122
|
1534 |
msgid "Search:"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: tpls/wpdm-all-downloads.php:124
|
1538 |
msgid "First"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: tpls/wpdm-all-downloads.php:125
|
1542 |
msgid "Last"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: tpls/wpdm-all-downloads.php:130
|
1546 |
msgid "activate to sort column ascending"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: tpls/wpdm-all-downloads.php:131
|
1550 |
msgid "activate to sort column descending"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: tpls/wpdm-all-downloads.php:135
|
1554 |
msgid "All"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: tpls/wpdm-all-downloads.php:
|
1558 |
-
msgid "file(s)"
|
1559 |
-
msgstr ""
|
1560 |
-
|
1561 |
-
#: tpls/wpdm-all-downloads.php:266
|
1562 |
msgid "downloads"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: tpls/wpdm-all-downloads.php:266
|
1566 |
msgid "download"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: tpls/wpdm-all-downloads.php:272
|
1570 |
msgid "views"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: tpls/wpdm-all-downloads.php:272
|
1574 |
msgid "view"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: tpls/wpdm-all-downloads.php:312
|
1578 |
msgid "No Packages Found"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: tpls/wpdm-asset.php:23
|
1582 |
msgid "Login to Download"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: tpls/wpdm-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1586 |
msgid "Select Options"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: tpls/wpdm-generate-password.php:19
|
1590 |
msgid "Number of passwords:"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: tpls/wpdm-generate-password.php:23
|
1594 |
msgid "Number of chars for each password:"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: tpls/wpdm-generate-password.php:
|
1598 |
-
msgid "Valid
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: tpls/wpdm-generate-password.php:
|
1602 |
-
msgid "
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: tpls/wpdm-generate-password.php:
|
1606 |
-
msgid "
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: tpls/wpdm-
|
1610 |
-
msgid "
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: tpls/wpdm-
|
1614 |
-
msgid "
|
|
|
|
|
|
|
|
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: tpls/wpdm-
|
|
|
|
|
|
|
|
|
|
|
1618 |
msgid "Remember Me"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1622 |
msgid "Forgot Password?"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: tpls/wpdm-login-form.php:
|
1626 |
-
#: tpls/wpdm-reg-form.php:
|
1627 |
-
|
|
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1631 |
msgid "Don't have an account yet?"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: tpls/wpdm-login-form.php:
|
|
|
|
|
1635 |
msgid "Register Now"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: tpls/wpdm-login-form.php:
|
|
|
1639 |
msgid "Logging In..."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: tpls/wpdm-login-form.php:
|
|
|
|
|
1643 |
msgid "LOGIN FAILED!"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: tpls/wpdm-login-form.php:
|
1647 |
-
|
|
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: tpls/wpdm-
|
1651 |
-
msgid "
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: tpls/wpdm-
|
1655 |
-
msgid ""
|
1656 |
-
"Please enter your username or email address. You will receive a link to "
|
1657 |
-
"create a new password via email."
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: tpls/wpdm-
|
1661 |
-
msgid "
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: tpls/wpdm-
|
1665 |
-
msgid "
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: tpls/wpdm-
|
1669 |
-
|
1670 |
-
msgid "ERROR!"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#:
|
1674 |
-
msgid "
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#:
|
1678 |
-
msgid "
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#:
|
1682 |
-
msgid "
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#:
|
1686 |
-
msgid "
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#:
|
1690 |
-
msgid "
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#:
|
1694 |
-
|
|
|
|
|
|
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#:
|
1698 |
-
msgid "
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#:
|
1702 |
-
|
|
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#:
|
1706 |
-
msgid "
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#:
|
1710 |
-
msgid "
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#:
|
1714 |
-
msgid "
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#:
|
1718 |
-
msgid "
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#:
|
1722 |
-
msgid "
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#:
|
1726 |
-
msgid "
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#:
|
1730 |
-
msgid "
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#:
|
1734 |
-
msgid "
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#:
|
1738 |
-
msgid "
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#:
|
1742 |
-
msgid "
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#:
|
1746 |
-
msgid "
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#:
|
1750 |
-
msgid "
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#:
|
1754 |
-
msgid "
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#:
|
1758 |
-
msgid "
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#:
|
1762 |
-
msgid "
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#:
|
1766 |
-
msgid "
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#:
|
1770 |
-
msgid "
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#:
|
1774 |
-
msgid "
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#:
|
1778 |
-
msgid "
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#:
|
1782 |
-
msgid "
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#:
|
1786 |
-
msgid "
|
|
|
|
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#:
|
1790 |
-
msgid "
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#:
|
1794 |
-
msgid "
|
|
|
|
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#:
|
1798 |
-
msgid "
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#:
|
1802 |
-
msgid "
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: wpdm-
|
1806 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: wpdm-functions.php:
|
1810 |
msgid "Select Image"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: wpdm-functions.php:
|
1814 |
msgid "SELECT IMAGE"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: wpdm-functions.php:
|
1818 |
msgid "Uploading"
|
1819 |
msgstr ""
|
1820 |
|
@@ -1826,14 +2369,14 @@ msgstr ""
|
|
1826 |
msgid "Package is not available!"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: wpdm-start-download.php:
|
1830 |
msgid "Sorry! Download is not available yet."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: wpdm-start-download.php:
|
1834 |
msgid "Please activate \"zlib\" in your server"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: wpdm-start-download.php:
|
1838 |
msgid "No file found!"
|
1839 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Download Manager Pro v2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-12-13 13:57+0600\n"
|
6 |
+
"PO-Revision-Date: 2020-12-13 13:57+0600\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Shaon <proshaon@yahoo.com>\n"
|
9 |
"Language: en_BD\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.4.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: admin/class.WordPressDownloadManagerAdmin.php:171
|
20 |
#: admin/tpls/metaboxes/package-settings.php:6
|
21 |
msgid "Package Settings"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: admin/class.WordPressDownloadManagerAdmin.php:172
|
25 |
msgid "Attach File"
|
26 |
msgstr ""
|
27 |
|
33 |
msgid "Add-Ons"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: admin/menus/class.Categories.php:49 admin/menus/class.Categories.php:253
|
37 |
msgid "Category Image:"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: admin/menus/class.Categories.php:52 admin/menus/class.Categories.php:258
|
41 |
msgid "Image URL"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
|
45 |
msgid "Select Category Image"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
|
49 |
+
#: libs/class.FileList.php:307
|
50 |
+
msgid "Browse"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: admin/menus/class.Categories.php:117 admin/menus/class.Categories.php:323
|
54 |
msgid "Access:"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: admin/menus/class.Categories.php:119 admin/menus/class.Categories.php:326
|
58 |
msgid ""
|
59 |
"Select the roles who should have access to the packages under this category"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin/menus/class.Categories.php:122 admin/menus/class.Categories.php:339
|
63 |
+
#: admin/tpls/metaboxes/package-settings.php:68 tpls/asset-manager-ui.php:832
|
64 |
+
#: tpls3/asset-manager-ui.php:825
|
65 |
msgid "All Visitors"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin/menus/class.Categories.php:138 admin/menus/class.Categories.php:368
|
69 |
+
msgid "Category Page Template"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: admin/menus/class.Categories.php:141 admin/menus/class.Categories.php:371
|
73 |
+
msgid "Use Global"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: admin/menus/class.Categories.php:142 admin/menus/class.Categories.php:372
|
77 |
+
msgid "Do Not Apply"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: admin/menus/class.Categories.php:144 admin/menus/class.Categories.php:374
|
81 |
+
msgid "Keep current template as it is provided with the active theme"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: admin/menus/class.Categories.php:146 admin/menus/class.Categories.php:376
|
85 |
+
msgid "Use Link Template"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: admin/menus/class.Categories.php:159 admin/menus/class.Categories.php:389
|
89 |
+
#: widgets/class.CatPackages.php:91 widgets/class.ListPackages.php:126
|
90 |
+
#: widgets/class.NewDownloads.php:60 widgets/class.TopDownloads.php:59
|
91 |
+
msgid "Link Template:"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: admin/menus/class.Categories.php:165 admin/menus/class.Categories.php:395
|
95 |
+
msgid "Items Per Page:"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: admin/menus/class.Categories.php:169 admin/menus/class.Categories.php:399
|
99 |
+
msgid "Toolbar:"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: admin/menus/class.Categories.php:171 admin/menus/class.Categories.php:401
|
103 |
+
msgid "Show"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: admin/menus/class.Categories.php:172 admin/menus/class.Categories.php:402
|
107 |
+
msgid "Hide"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: admin/menus/class.Categories.php:178 admin/menus/class.Categories.php:408
|
111 |
+
msgid "Number of Columns"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: admin/menus/class.Packages.php:203
|
115 |
msgid "Direct Download"
|
116 |
msgstr ""
|
117 |
|
123 |
msgid "Settings"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: admin/menus/class.Settings.php:138 admin/menus/class.Settings.php:169
|
127 |
+
#: admin/menus/class.Settings.php:188 admin/menus/class.Settings.php:244
|
128 |
+
#: admin/menus/class.Settings.php:260
|
129 |
msgid "Security token is expired! Refresh the page and try again."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin/menus/class.Settings.php:331
|
133 |
msgid "Privacy Settings Saved Successfully"
|
134 |
msgstr ""
|
135 |
|
163 |
msgid "Failed to connect with server!"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin/tpls/asset-manager-picker.php:9
|
167 |
+
msgid "Asset Manager Picker"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: admin/tpls/asset-manager-picker.php:693
|
171 |
+
msgid "Server File Picker"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: admin/tpls/asset-manager-picker.php:727
|
175 |
+
#: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:186
|
176 |
+
#: admin/tpls/templates.php:347 tpls/asset-manager-ui.php:555
|
177 |
+
#: tpls/user-dashboard/edit-profile.php:48 tpls/wpdm-edit-user-profile.php:64
|
178 |
+
#: tpls3/asset-manager-ui.php:550 tpls3/user-dashboard/edit-profile.php:51
|
179 |
+
#: tpls3/wpdm-edit-user-profile.php:51
|
180 |
+
msgid "Save Changes"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: admin/tpls/asset-manager-picker.php:753
|
184 |
+
msgid "Attach selected file"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
#: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
|
188 |
msgid "Link Templates"
|
189 |
msgstr ""
|
235 |
msgid "From Email"
|
236 |
msgstr ""
|
237 |
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
#: admin/tpls/email-template-editor.php:119
|
239 |
msgid "Template Variables"
|
240 |
msgstr ""
|
259 |
msgid "Emails"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: admin/tpls/emails-template.php:23 admin/tpls/templates.php:106
|
263 |
msgid "Email Template"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin/tpls/metaboxes/attach-file.php:7
|
267 |
msgid "attached file is missing/deleted"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin/tpls/metaboxes/attach-file.php:37
|
271 |
msgid "No file uploaded yet!"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: admin/tpls/metaboxes/attach-file.php:46
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
msgid "Drop file here"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin/tpls/metaboxes/attach-file.php:68 tpls/asset-manager-ui.php:745
|
279 |
+
#: tpls3/asset-manager-ui.php:738 wpdm-functions.php:1480
|
280 |
msgid "Allowed Files"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: admin/tpls/metaboxes/attach-file.php:147
|
284 |
msgid "Invalid File Type!"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: admin/tpls/metaboxes/attach-file.php:149
|
288 |
msgid "Unauthorized Access!"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: admin/tpls/metaboxes/attach-file.php:153
|
292 |
+
#: admin/tpls/metaboxes/attach-file.php:252
|
293 |
msgid "Delete Current File"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin/tpls/metaboxes/attach-file.php:186 admin/tpls/templates.php:369
|
297 |
msgid "Are you sure?"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin/tpls/metaboxes/attach-file.php:188
|
301 |
msgid ""
|
302 |
"<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
|
303 |
"circle\"></i> Removed!</div></div>"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: admin/tpls/metaboxes/attach-file.php:200
|
307 |
+
msgid "Select from media library"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: admin/tpls/metaboxes/attach-file.php:232
|
311 |
+
msgid "Select from server"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: admin/tpls/metaboxes/icons.php:5
|
315 |
msgid "Icon URL"
|
316 |
msgstr ""
|
317 |
|
325 |
msgstr ""
|
326 |
|
327 |
#: admin/tpls/metaboxes/lock-options.php:11
|
328 |
+
msgid "Terms Page:"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: admin/tpls/metaboxes/lock-options.php:12
|
332 |
+
msgid "Use custom content below"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: admin/tpls/metaboxes/lock-options.php:15
|
336 |
msgid "Terms Title:"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin/tpls/metaboxes/lock-options.php:19
|
340 |
msgid "Terms and Conditions:"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin/tpls/metaboxes/lock-options.php:24
|
344 |
msgid "Terms Checkbox Label:"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin/tpls/metaboxes/lock-options.php:33
|
348 |
msgid "Enable Password Lock"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin/tpls/metaboxes/lock-options.php:36
|
352 |
msgid "Password:"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: admin/tpls/metaboxes/lock-options.php:39
|
356 |
msgid ""
|
357 |
"If you want to use multiple passwords, keep each one inside [], like [123]"
|
358 |
"[456][789]"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin/tpls/metaboxes/lock-options.php:48
|
362 |
msgid "Enable Captcha Lock"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: admin/tpls/metaboxes/lock-options.php:51
|
366 |
msgid "Please configure reCAPTCHA"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: admin/tpls/metaboxes/lock-options.php:52
|
370 |
msgid "Users will be asked for reCAPTCHA verification before download."
|
371 |
msgstr ""
|
372 |
|
382 |
msgid "Version:"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: admin/tpls/metaboxes/package-settings.php:28
|
386 |
msgid "Link Label:"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: admin/tpls/metaboxes/package-settings.php:29
|
390 |
+
#: admin/tpls/settings/addon-update.php:61
|
391 |
+
#: admin/tpls/settings/addon-update.php:107
|
392 |
+
#: admin/tpls/settings/user-interface.php:115
|
393 |
+
#: admin/tpls/settings/user-interface.php:145 libs/class.FileList.php:98
|
394 |
+
#: libs/class.FileList.php:100 libs/class.FileList.php:136
|
395 |
+
#: libs/class.FileList.php:138 libs/class.FileList.php:203
|
396 |
+
#: libs/class.FileList.php:250 libs/class.FileList.php:305
|
397 |
+
#: libs/class.Package.php:77 libs/class.Package.php:155
|
398 |
+
#: libs/class.Package.php:634 libs/class.Package.php:659
|
399 |
+
#: libs/class.Package.php:726 libs/class.Package.php:819
|
400 |
+
#: libs/class.Package.php:851 libs/class.Package.php:1295
|
401 |
+
#: libs/class.PackageLocks.php:74 libs/class.PackageLocks.php:111
|
402 |
+
#: tpls/lock-options-iframe.php:289 tpls/lock-options/password-lock.php:41
|
403 |
+
#: tpls/lock-options/recaptcha-lock.php:24 tpls/wpdm-all-downloads.php:191
|
404 |
+
#: tpls/wpdm-all-downloads.php:347 tpls/wpdm-asset.php:21
|
405 |
+
#: tpls3/lock-options-iframe.php:243 tpls3/lock-options/password-lock.php:41
|
406 |
+
#: tpls3/lock-options/recaptcha-lock.php:24 tpls3/wpdm-all-downloads.php:160
|
407 |
+
#: tpls3/wpdm-asset.php:21 wpdm-functions.php:94 wpdm-functions.php:119
|
408 |
+
#: wpdm-functions.php:187
|
409 |
+
msgid "Download"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: admin/tpls/metaboxes/package-settings.php:33
|
413 |
msgid "File Size:"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin/tpls/metaboxes/package-settings.php:39
|
417 |
msgid "Stock Limit:"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: admin/tpls/metaboxes/package-settings.php:40
|
421 |
+
msgid "Unlimited"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: admin/tpls/metaboxes/package-settings.php:46
|
425 |
msgid "View Count:"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin/tpls/metaboxes/package-settings.php:51
|
429 |
msgid "Download Count:"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/tpls/metaboxes/package-settings.php:57
|
433 |
msgid "Allow Access:"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin/tpls/metaboxes/package-settings.php:59
|
437 |
msgid "Who should be able to download?"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin/tpls/metaboxes/package-settings.php:88
|
441 |
msgid "Page Template:"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/tpls/metaboxes/package-settings.php:99
|
445 |
msgid "Master Key"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin/tpls/metaboxes/package-settings.php:100
|
449 |
msgid "Regenerate Master Key for Download"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/tpls/metaboxes/package-settings.php:100
|
453 |
msgid "This key can be used for direct download"
|
454 |
msgstr ""
|
455 |
|
465 |
msgid "Check For Updates"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:23
|
469 |
+
#: tpls/wpdm-dashboard.php:30 tpls3/already-logged-in.php:23
|
470 |
+
#: tpls3/wpdm-dashboard.php:28
|
471 |
msgid "Logout"
|
472 |
msgstr ""
|
473 |
|
493 |
msgstr ""
|
494 |
|
495 |
#: admin/tpls/settings/addon-update.php:58
|
496 |
+
#: admin/tpls/settings/addon-update.php:104
|
497 |
msgid "Product Name"
|
498 |
msgstr ""
|
499 |
|
500 |
#: admin/tpls/settings/addon-update.php:59
|
501 |
+
#: admin/tpls/settings/addon-update.php:105
|
502 |
msgid "Active(v)"
|
503 |
msgstr ""
|
504 |
|
505 |
#: admin/tpls/settings/addon-update.php:60
|
|
|
|
|
|
|
|
|
|
|
506 |
#: admin/tpls/settings/addon-update.php:106
|
507 |
+
msgid "Latest(v)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: admin/tpls/settings/addon-update.php:86
|
511 |
+
#: admin/tpls/settings/addon-update.php:127
|
512 |
msgid "Install"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: admin/tpls/settings/addon-update.php:88
|
516 |
+
#: admin/tpls/settings/addon-update.php:129
|
517 |
msgid "Update"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: admin/tpls/settings/addon-update.php:89
|
521 |
+
#: admin/tpls/settings/addon-update.php:130
|
522 |
msgid "Updated"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/tpls/settings/addon-update.php:91
|
526 |
msgid "Expired"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/tpls/settings/addon-update.php:145 tpls/lost-password-form.php:59
|
530 |
+
#: tpls/reset-password-form.php:48 tpls/wpdm-reg-form.php:103
|
531 |
+
#: tpls3/lost-password-form.php:41 tpls3/reset-password-form.php:48
|
532 |
+
#: tpls3/wpdm-reg-form.php:106
|
533 |
msgid "Please Wait..."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/tpls/settings/addon-update.php:147
|
537 |
msgid "Success!"
|
538 |
msgstr ""
|
539 |
|
565 |
msgid "File Browser Access:"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin/tpls/settings/basic.php:67
|
569 |
msgid "Who will have access to server file browser"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: admin/tpls/settings/basic.php:99
|
573 |
msgid "Upload Settings"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin/tpls/settings/basic.php:103
|
577 |
msgid "Sanitize Filename"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/tpls/settings/basic.php:104
|
581 |
msgid ""
|
582 |
"Check the option if you want to sanitize uploaded file names to remove "
|
583 |
"illegal chars"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: admin/tpls/settings/basic.php:111
|
587 |
msgid "Chunk Upload"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: admin/tpls/settings/basic.php:112
|
591 |
msgid ""
|
592 |
"Check the option if you want to enable chunk upload to override http upload "
|
593 |
"limits"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/tpls/settings/basic.php:117
|
597 |
msgid "Chunk Size"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/tpls/settings/basic.php:130
|
601 |
msgid "File Download"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: admin/tpls/settings/basic.php:134
|
605 |
msgid "Download Speed:"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/tpls/settings/basic.php:142
|
609 |
msgid "Blocked IPs"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/tpls/settings/basic.php:144
|
613 |
msgid "One IP per line"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/tpls/settings/basic.php:145
|
617 |
msgid ""
|
618 |
"List IP Addresses to blacklist. One IP per line ( Ex: IPv4 - 192.168.23.12 "
|
619 |
"or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
|
620 |
"2620:112:3000::/44 )"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/tpls/settings/basic.php:148
|
624 |
msgid "Write a Message for Blocked IPs"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: admin/tpls/settings/basic.php:149
|
628 |
msgid "Message for Blocked IPs"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: admin/tpls/settings/basic.php:153
|
632 |
msgid ""
|
633 |
"If you get broken download, then try enabling/disabling following options, "
|
634 |
"as sometimes server may not support output buffering or partial downloads"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: admin/tpls/settings/basic.php:156
|
638 |
msgid "Resumable Downloads"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/tpls/settings/basic.php:158 admin/tpls/settings/basic.php:165
|
642 |
msgid "Enabled"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/tpls/settings/basic.php:159 admin/tpls/settings/basic.php:166
|
646 |
msgid "Disabled"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: admin/tpls/settings/basic.php:163
|
650 |
msgid "Output Buffering"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: admin/tpls/settings/basic.php:172
|
654 |
msgid "Open in Browser"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: admin/tpls/settings/basic.php:173
|
658 |
msgid ""
|
659 |
"Try to Open in Browser instead of download when someone clicks on download "
|
660 |
"link"
|
661 |
msgstr ""
|
662 |
|
663 |
#: admin/tpls/settings/basic.php:178
|
664 |
+
msgid "Mask Download Link"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: admin/tpls/settings/basic.php:179
|
668 |
+
msgid "Unmask Download Link"
|
669 |
msgstr ""
|
670 |
|
671 |
#: admin/tpls/settings/basic.php:180
|
672 |
+
msgid ""
|
673 |
+
"Check this option if you want to mask/unmask file download link. If you "
|
674 |
+
"unmask download link, bots will be able the find any public download link "
|
675 |
+
"easily."
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: admin/tpls/settings/basic.php:184
|
679 |
+
msgid "reCAPTCHA Lock Settings"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: admin/tpls/settings/basic.php:186
|
683 |
msgid "reCAPTCHA Site Key"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: admin/tpls/settings/basic.php:188
|
687 |
msgid ""
|
688 |
"Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
|
689 |
"www.google.com/recaptcha/admin#list\">here</a>"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: admin/tpls/settings/basic.php:191
|
693 |
msgid "reCAPTCHA Secret Key"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: admin/tpls/settings/basic.php:196
|
697 |
+
msgid "Enable sign up form CAPTCHA validation"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: admin/tpls/settings/basic.php:200
|
701 |
+
msgid "Enable sign in form CAPTCHA validation"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: admin/tpls/settings/basic.php:212
|
705 |
msgid "Misc Settings"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: admin/tpls/settings/basic.php:217
|
709 |
msgid "Login Page"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: admin/tpls/settings/basic.php:218 admin/tpls/settings/basic.php:227
|
713 |
+
#: admin/tpls/settings/basic.php:235
|
714 |
msgid "None Selected"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: admin/tpls/settings/basic.php:219 admin/tpls/settings/basic.php:228
|
718 |
+
#: admin/tpls/settings/basic.php:236
|
719 |
#, php-format
|
720 |
msgid "The page where you used short-code %s"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: admin/tpls/settings/basic.php:220
|
724 |
+
msgid "Enable modal login form"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: admin/tpls/settings/basic.php:221
|
728 |
+
#, php-format
|
729 |
+
msgid ""
|
730 |
+
"%s will show the modal login form, <a target=\"_blank\" href=\"%s\">follow "
|
731 |
+
"the docs</a> for moore details"
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: admin/tpls/settings/basic.php:226
|
735 |
msgid "Register Page"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: admin/tpls/settings/basic.php:229
|
739 |
+
msgid "Enable email verification on signup"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: admin/tpls/settings/basic.php:230
|
743 |
+
msgid "Login automatically after signup is completed"
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: admin/tpls/settings/basic.php:234
|
747 |
msgid "Dashboard Page"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: admin/tpls/settings/basic.php:241
|
751 |
msgid "Include Packages in Main RSS Feed"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: admin/tpls/settings/basic.php:242
|
755 |
#, php-format
|
756 |
msgid ""
|
757 |
"Check this option if you want to show wpdm packages in your main <a target="
|
793 |
msgstr ""
|
794 |
|
795 |
#: admin/tpls/settings/user-interface.php:14
|
796 |
+
msgid "Active Bootstrap Version"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: admin/tpls/settings/user-interface.php:16
|
800 |
+
msgid "Bootstrap 4"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: admin/tpls/settings/user-interface.php:16
|
804 |
+
msgid "Bootstrap 3"
|
805 |
msgstr ""
|
806 |
|
807 |
#: admin/tpls/settings/user-interface.php:20
|
808 |
+
msgid "Disable Style & Script"
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: admin/tpls/settings/user-interface.php:26
|
812 |
msgid "Bootstrap JS"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: admin/tpls/settings/user-interface.php:27
|
816 |
msgid "Bootstrap CSS"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: admin/tpls/settings/user-interface.php:28
|
820 |
msgid "Font Awesome"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: admin/tpls/settings/user-interface.php:29
|
824 |
msgid "Front CSS"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: admin/tpls/settings/user-interface.php:30
|
828 |
msgid "Google Font"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: admin/tpls/settings/user-interface.php:32
|
832 |
msgid ""
|
833 |
"Because, sometimes your theme may have those scripts/styles enqueued already"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: admin/tpls/settings/user-interface.php:38
|
837 |
msgid "Colors"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: admin/tpls/settings/user-interface.php:54
|
841 |
msgid "Primary:"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: admin/tpls/settings/user-interface.php:60
|
845 |
msgid "Secondary:"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: admin/tpls/settings/user-interface.php:66
|
849 |
msgid "Info:"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: admin/tpls/settings/user-interface.php:72
|
853 |
msgid "Success:"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: admin/tpls/settings/user-interface.php:78
|
857 |
msgid "Warning:"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: admin/tpls/settings/user-interface.php:84
|
861 |
msgid "Danger:"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: admin/tpls/settings/user-interface.php:96
|
865 |
msgid "Download Button"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: admin/tpls/settings/user-interface.php:100
|
869 |
msgid "Details Page"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: admin/tpls/settings/user-interface.php:125
|
873 |
+
#: admin/tpls/settings/user-interface.php:155
|
874 |
msgid "Border Radius"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: admin/tpls/settings/user-interface.php:130
|
878 |
msgid "Shortcode Page"
|
879 |
msgstr ""
|
880 |
|
887 |
msgstr ""
|
888 |
|
889 |
#: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
|
890 |
+
#: tpls/already-logged-in.php:22 tpls3/already-logged-in.php:22
|
891 |
msgid "Download History"
|
892 |
msgstr ""
|
893 |
|
903 |
msgid "Download History is Empty"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: admin/tpls/stats/history.php:123
|
907 |
+
msgid "From Date"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: admin/tpls/stats/history.php:133
|
911 |
+
msgid "To Date"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: admin/tpls/stats/history.php:143
|
915 |
+
msgid "Users"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: admin/tpls/stats/history.php:172
|
919 |
+
msgid "Packages"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: admin/tpls/stats/history.php:198
|
923 |
+
msgid "Filter"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: admin/tpls/stats/history.php:199
|
927 |
+
msgid "Reset"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: admin/tpls/stats/history.php:221 tpls/user-dashboard/download-history.php:7
|
931 |
+
#: tpls/user-dashboard/profile.php:115 tpls/user-dashboard/profile.php:145
|
932 |
+
#: tpls3/user-dashboard/download-history.php:9
|
933 |
+
#: tpls3/user-dashboard/profile.php:81
|
934 |
msgid "Package Name"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: admin/tpls/stats/history.php:222 modules/strings.php:11
|
938 |
+
#: widgets/class.PackageInfo.php:25 widgets/class.PackageInfo.php:121
|
939 |
+
msgid "Version"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: admin/tpls/stats/history.php:223 tpls/user-dashboard/download-history.php:8
|
943 |
+
#: tpls/user-dashboard/profile.php:146
|
944 |
+
#: tpls3/user-dashboard/download-history.php:10
|
945 |
+
#: tpls3/user-dashboard/profile.php:82
|
946 |
msgid "Download Time"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: admin/tpls/stats/history.php:224
|
950 |
+
msgid "User"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: admin/tpls/stats/history.php:225 tpls/user-dashboard/download-history.php:9
|
954 |
+
#: tpls/user-dashboard/profile.php:147
|
955 |
+
#: tpls3/user-dashboard/download-history.php:11
|
956 |
+
#: tpls3/user-dashboard/profile.php:83
|
957 |
+
msgid "IP"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: admin/tpls/stats/history.php:226
|
961 |
+
msgid "Browser"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: admin/tpls/stats/history.php:227
|
965 |
+
msgid "OS"
|
966 |
msgstr ""
|
967 |
|
968 |
#: admin/tpls/templates.php:19
|
972 |
"href='%s'>WordPress Download Manager Pro</a>"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: admin/tpls/templates.php:20
|
976 |
+
#, php-format
|
977 |
+
msgid ""
|
978 |
+
"Please follow the <a target='_blank' href='%s'>documentation</a> to edit "
|
979 |
+
"exiting template files"
|
980 |
msgstr ""
|
981 |
|
982 |
#: admin/tpls/templates.php:28
|
983 |
+
msgid "Template Name"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: admin/tpls/templates.php:29
|
987 |
msgid "Template ID"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: admin/tpls/templates.php:31
|
991 |
msgid "Actions"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: admin/tpls/templates.php:74
|
995 |
msgid "To:"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: admin/tpls/templates.php:82
|
999 |
msgid "Edit"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: admin/tpls/templates.php:123 admin/tpls/templates.php:124
|
1003 |
+
#: tpls/wpdm-edit-user-profile.php:23
|
1004 |
msgid "Logo URL"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: admin/tpls/templates.php:127 admin/tpls/templates.php:128
|
1008 |
msgid "Banner/Background Image URL"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: admin/tpls/templates.php:139
|
1012 |
msgid "Footer Text"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: admin/tpls/templates.php:143
|
1016 |
msgid "Facebook Page URL"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: admin/tpls/templates.php:147
|
1020 |
msgid "Twitter Profile URL"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: admin/tpls/templates.php:151
|
1024 |
msgid "Youtube Profile URL"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: admin/tpls/templates.php:201
|
1028 |
msgid "Template Preview"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: admin/tpls/templates.php:207
|
1032 |
msgid ""
|
1033 |
"This is a preview, original template color scheme may look little different, "
|
1034 |
"but structure will be same"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: admin/tpls/templates.php:343
|
1038 |
msgid "Saving..."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: download-manager.php:202 download-manager.php:214
|
1042 |
+
#: libs/class.CategoryHandler.php:336 libs/class.CategoryHandler.php:356
|
1043 |
+
#: libs/class.ShortCodes.php:423 libs/class.UserProfile.php:20
|
1044 |
+
#: tpls/shortcodes/toolbar.php:43 tpls/shortcodes/toolbar.php:77
|
1045 |
+
#: tpls3/shortcodes/toolbar.php:43 tpls3/shortcodes/toolbar.php:77
|
1046 |
+
#: wpdm-functions.php:823 wpdm-functions.php:842
|
1047 |
msgid "Downloads"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: download-manager.php:203 libs/class.FileList.php:69
|
1051 |
msgid "File"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: download-manager.php:204
|
1055 |
msgid "Add New"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: download-manager.php:205
|
1059 |
msgid "Add New File"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: download-manager.php:206
|
1063 |
msgid "Edit File"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: download-manager.php:207
|
1067 |
msgid "New File"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: download-manager.php:208
|
1071 |
msgid "All Files"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: download-manager.php:209
|
1075 |
msgid "View File"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: download-manager.php:210
|
1079 |
msgid "Search Files"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: download-manager.php:211
|
1083 |
msgid "No File Found"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: download-manager.php:212
|
1087 |
msgid "No Files found in Trash"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: download-manager.php:243 download-manager.php:253
|
1091 |
+
#: tpls/wpdm-all-downloads.php:189 tpls3/wpdm-all-downloads.php:158
|
1092 |
msgid "Categories"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: download-manager.php:244
|
1096 |
msgid "Category"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: download-manager.php:245
|
1100 |
msgid "Search Categories"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: download-manager.php:246
|
1104 |
msgid "All Categories"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: download-manager.php:247
|
1108 |
msgid "Parent Category"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: download-manager.php:248
|
1112 |
msgid "Parent Category:"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: download-manager.php:249
|
1116 |
msgid "Edit Category"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: download-manager.php:250
|
1120 |
msgid "Update Category"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: download-manager.php:251
|
1124 |
msgid "Add New Category"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: download-manager.php:252
|
1128 |
msgid "New Category Name"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: libs/class.Apply.php:162 libs/class.Apply.php:249
|
1132 |
+
msgid "Invalid CAPTCHA!"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: libs/class.Apply.php:195 tpls/wpdm-reg-form.php:112
|
1136 |
+
#: tpls3/wpdm-reg-form.php:115
|
1137 |
+
msgid "Success! Redirecting..."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: libs/class.Apply.php:232
|
1141 |
+
msgid "Something is Wrong! Please refresh the page and try again"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: libs/class.Apply.php:262
|
1145 |
+
msgid "Error: User registration is disabled!"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: libs/class.Apply.php:287
|
1149 |
+
msgid "Username is Empty!"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: libs/class.Apply.php:302
|
1153 |
+
msgid "Invalid email address!"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: libs/class.Apply.php:326
|
1157 |
+
msgid "Passwords not matched!"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: libs/class.Apply.php:403
|
1161 |
+
msgid "Edit User"
|
|
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: libs/class.Apply.php:422
|
1165 |
msgid ""
|
1166 |
"Your account has been created successfully and login info sent to your mail "
|
1167 |
"address."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: libs/class.Apply.php:424 libs/class.Apply.php:430
|
1171 |
+
msgid "Your account has been created successfully."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: libs/class.Apply.php:448
|
1175 |
+
msgid "Email already exist!"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: libs/class.Apply.php:461
|
1179 |
msgid "Username already exists."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: libs/class.Apply.php:526 libs/class.Apply.php:529
|
1183 |
msgid "Session Expired! Please try again."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: libs/class.Apply.php:676
|
1187 |
msgid "You don't have permission to download this file"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: libs/class.Apply.php:683
|
1191 |
msgid "Download link is expired. Please get new download link."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: libs/class.Apply.php:685
|
1195 |
msgid "Download link is expired or not valid. Please get new download link."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: libs/class.Apply.php:692
|
1199 |
msgid "Stock Limit Reached"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: libs/class.Apply.php:698
|
1203 |
msgid "Invalid download link."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: libs/class.AssetManager.php:156
|
|
|
|
|
|
|
|
|
1207 |
msgid ""
|
1208 |
"Download link is expired! Go back and Refresh the page to regenerate "
|
1209 |
"download link"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: libs/class.AssetManager.php:180
|
1213 |
msgid "Asset Manager"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: libs/class.AssetManager.php:197 libs/class.AssetManager.php:212
|
1217 |
+
#: libs/class.AssetManager.php:234 libs/class.AssetManager.php:236
|
1218 |
+
#: libs/class.AssetManager.php:292 libs/class.AssetManager.php:294
|
1219 |
+
#: libs/class.AssetManager.php:308 libs/class.AssetManager.php:310
|
1220 |
+
#: libs/class.AssetManager.php:325 libs/class.AssetManager.php:327
|
1221 |
+
#: libs/class.AssetManager.php:344 libs/class.AssetManager.php:346
|
1222 |
+
#: libs/class.AssetManager.php:390 libs/class.AssetManager.php:409
|
1223 |
+
#: libs/class.AssetManager.php:411 libs/class.AssetManager.php:421
|
1224 |
+
#: libs/class.AssetManager.php:423 libs/class.AssetManager.php:433
|
1225 |
+
#: libs/class.AssetManager.php:435 libs/class.AssetManager.php:444
|
1226 |
+
#: libs/class.AssetManager.php:446 libs/class.AssetManager.php:458
|
1227 |
+
#: libs/class.AssetManager.php:460 libs/class.AssetManager.php:470
|
1228 |
+
#: libs/class.AssetManager.php:472 libs/class.AssetManager.php:493
|
1229 |
+
#: libs/class.AssetManager.php:495 libs/class.AssetManager.php:513
|
1230 |
+
#: libs/class.AssetManager.php:515 libs/class.AssetManager.php:541
|
1231 |
+
#: libs/class.AssetManager.php:543
|
1232 |
msgid "Error! Session Expired. Try refreshing page."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: libs/class.AssetManager.php:203 libs/class.AssetManager.php:218
|
1236 |
+
#: libs/class.AssetManager.php:241 libs/class.AssetManager.php:300
|
1237 |
+
#: libs/class.AssetManager.php:316 libs/class.AssetManager.php:331
|
1238 |
+
#: libs/class.AssetManager.php:349 libs/class.AssetManager.php:395
|
1239 |
+
#: libs/class.AssetManager.php:400 libs/class.AssetManager.php:477
|
1240 |
+
#: libs/class.AssetManager.php:639
|
1241 |
+
msgid "Error! Unauthorized Path."
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: libs/class.AssetManager.php:214 libs/class.AssetManager.php:392
|
1245 |
msgid "Error! Unauthorized Access."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: libs/class.AssetManager.php:222 libs/class.AssetManager.php:479
|
1249 |
+
#: libs/class.AssetManager.php:503 libs/class.AssetManager.php:522
|
1250 |
+
#: libs/class.AssetManager.php:555
|
1251 |
+
msgid "Error! FileType is not allowed."
|
|
|
|
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: libs/class.AssetManager.php:275 tpls/lost-password-form.php:33
|
1255 |
+
#: tpls3/lost-password-form.php:28
|
1256 |
msgid "Home"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: libs/class.AssetManager.php:295 libs/class.AssetManager.php:311
|
1260 |
+
msgid "<b>Unauthorized Action!</b><br/>Execution is cancelled by the system."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: libs/class.AssetManager.php:527 libs/class.AssetManager.php:551
|
1264 |
msgid "Invalid source path"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: libs/class.AssetManager.php:528 libs/class.AssetManager.php:552
|
1268 |
msgid "Invalid destination path"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: libs/class.AssetManager.php:536
|
1272 |
msgid "File moved successfully"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: libs/class.AssetManager.php:559
|
1276 |
msgid "File copied successfully"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: libs/class.AssetManager.php:606
|
1280 |
msgid "Asset not found!"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: libs/class.AssetManager.php:638
|
1284 |
+
msgid "Error! Only Administrator can execute this operation."
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: libs/class.AssetManager.php:640
|
1288 |
msgid "Error! Invalid Destination Path."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: libs/class.AssetManager.php:641
|
1292 |
msgid "Please activate \"zlib\" in your server to perform zip operations"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: libs/class.AssetManager.php:646
|
1296 |
msgid "Unzipped successfully."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: libs/class.AssetManager.php:648
|
1300 |
msgid "Error! Couldn't open the zip file."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: libs/class.CategoryHandler.php:336 wpdm-functions.php:823
|
1304 |
+
msgid "Sub-Categories"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: libs/class.CategoryHandler.php:355 libs/class.ShortCodes.php:422
|
1308 |
+
#: modules/strings.php:18 tpls/shortcodes/toolbar.php:41
|
1309 |
+
#: tpls/shortcodes/toolbar.php:75 tpls/wpdm-edit-user-profile.php:15
|
1310 |
+
#: tpls3/shortcodes/toolbar.php:41 tpls3/shortcodes/toolbar.php:75
|
1311 |
+
#: wpdm-functions.php:841
|
1312 |
+
msgid "Title"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: libs/class.CategoryHandler.php:357 libs/class.ShortCodes.php:424
|
1316 |
+
#: tpls/shortcodes/toolbar.php:40 tpls/shortcodes/toolbar.php:74
|
1317 |
+
#: tpls3/shortcodes/toolbar.php:40 tpls3/shortcodes/toolbar.php:74
|
1318 |
+
#: widgets/class.PackageInfo.php:22 widgets/class.PackageInfo.php:119
|
1319 |
+
#: wpdm-functions.php:843
|
1320 |
+
msgid "Publish Date"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: libs/class.CategoryHandler.php:358 libs/class.ShortCodes.php:425
|
1324 |
+
#: tpls/shortcodes/toolbar.php:42 tpls/shortcodes/toolbar.php:76
|
1325 |
+
#: tpls3/shortcodes/toolbar.php:42 tpls3/shortcodes/toolbar.php:76
|
1326 |
+
#: widgets/class.PackageInfo.php:120 wpdm-functions.php:844
|
1327 |
+
msgid "Update Date"
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: libs/class.CategoryHandler.php:359 libs/class.ShortCodes.php:426
|
1331 |
+
#: wpdm-functions.php:845
|
1332 |
+
msgid "Asc"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: libs/class.CategoryHandler.php:360 libs/class.ShortCodes.php:427
|
1336 |
+
#: wpdm-functions.php:846
|
1337 |
+
msgid "Desc"
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: libs/class.CategoryHandler.php:361 libs/class.ShortCodes.php:428
|
1341 |
+
#: wpdm-functions.php:847
|
1342 |
+
msgid "Search"
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: libs/class.CategoryHandler.php:362 libs/class.ShortCodes.php:429
|
1346 |
+
#: wpdm-functions.php:848
|
1347 |
+
msgid "Order"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: libs/class.CategoryHandler.php:363 libs/class.ShortCodes.php:430
|
1351 |
+
#: wpdm-functions.php:849
|
1352 |
+
msgid "Order By"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: libs/class.Email.php:43
|
1356 |
msgid "General Email Template"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: libs/class.Email.php:52 libs/class.Email.php:62
|
1360 |
msgid "User Signup Notification"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: libs/class.Email.php:55
|
1364 |
#, php-format
|
1365 |
msgid "Welcome to %s"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: libs/class.Email.php:65
|
1369 |
+
#, php-format
|
1370 |
+
msgid "[ %s ] New User Registration"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: libs/class.Email.php:69
|
1374 |
+
msgid "New user registration on your site WordPress Download Manager:"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: libs/class.Email.php:73
|
1378 |
msgid "Password Reset Notification"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: libs/class.Email.php:76
|
1382 |
#, php-format
|
1383 |
msgid "Request to reset your %s password"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: libs/class.Email.php:83
|
1387 |
msgid "Email Lock Notification"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: libs/class.Email.php:86
|
1391 |
msgid "Download [#package_name#]"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: libs/class.Email.php:93 wpdm-core.php:192
|
1395 |
+
msgid "New Package Notification"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: libs/class.Email.php:96
|
1399 |
+
msgid "New Package is Added By [#name#]"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: libs/class.Email.php:260
|
1403 |
msgid "Sample Package Name"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: libs/class.FileList.php:64 libs/class.FileList.php:96
|
1407 |
+
#: libs/class.FileList.php:134 libs/class.FileList.php:202
|
1408 |
+
#: libs/class.User.php:62 libs/class.User.php:91 tpls3/wpdm-login-form.php:61
|
1409 |
+
#: tpls3/wpdm-login-modal-form.php:61
|
1410 |
msgid "Password"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: libs/class.FileList.php:65
|
1414 |
msgid "Action"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: libs/class.MediaAccessControl.php:60
|
1418 |
+
msgid "<b>Error:</b> Wrong Password! Try Again."
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: libs/class.MediaAccessControl.php:84
|
1422 |
+
msgid "Protected Media File"
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: libs/class.MediaAccessControl.php:84
|
1426 |
+
msgid "You are not allowed to access the media file"
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: libs/class.MediaAccessControl.php:160
|
1430 |
+
msgid "This file is not protected."
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#: libs/class.MediaAccessControl.php:163
|
1434 |
+
msgid "Protect this file"
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: libs/class.MediaAccessControl.php:168
|
1438 |
+
msgid "This file is protected"
|
1439 |
+
msgstr ""
|
1440 |
+
|
1441 |
+
#: libs/class.MediaAccessControl.php:170
|
1442 |
+
msgid "Block Direct Access"
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: libs/class.MediaAccessControl.php:173
|
1446 |
+
msgid "Remove Protection"
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: libs/class.MediaAccessControl.php:207 libs/class.MediaAccessControl.php:222
|
1450 |
+
msgid "This file is not protected yet!"
|
1451 |
+
msgstr ""
|
1452 |
+
|
1453 |
+
#: libs/class.MediaAccessControl.php:209 libs/class.MediaAccessControl.php:224
|
1454 |
+
#: libs/class.MediaAccessControl.php:267
|
1455 |
+
msgid "Checking status..."
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: libs/class.MediaHandler.php:17
|
1459 |
+
msgid "Download Manager"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: libs/class.Messages.php:103
|
1463 |
+
msgid "Download Limit Exceeded!"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: libs/class.Messages.php:111 libs/class.Package.php:921
|
1467 |
+
#: libs/class.ShortCodes.php:142 tpls/lost-password-form.php:34
|
1468 |
+
#: tpls/wpdm-login-form.php:63 tpls/wpdm-login-modal-form.php:75
|
1469 |
+
#: tpls/wpdm-reg-form.php:79 tpls3/lost-password-form.php:29
|
1470 |
+
#: tpls3/wpdm-login-form.php:101 tpls3/wpdm-login-modal-form.php:88
|
1471 |
+
#: tpls3/wpdm-reg-form.php:82
|
1472 |
+
msgid "Login"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: libs/class.Messages.php:119
|
1476 |
+
msgid "Access Denied"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: libs/class.Package.php:28
|
1480 |
msgid "ID missing!"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: libs/class.Package.php:130 libs/class.Package.php:133
|
1484 |
+
#: libs/class.Package.php:135
|
1485 |
msgid "Icon"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: libs/class.Package.php:138 libs/class.Package.php:145
|
1489 |
msgid "Thumbnail"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: libs/class.Package.php:169 libs/class.Package.php:643 wpdm-functions.php:103
|
1493 |
+
#: wpdm-start-download.php:24
|
1494 |
msgid "Download Limit Exceeded"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: libs/class.Package.php:172 libs/class.Package.php:180
|
1498 |
+
#: libs/class.Package.php:188 libs/class.Package.php:196
|
1499 |
msgid "DOWNLOAD ERROR"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: libs/class.Package.php:177 libs/class.Package.php:647
|
1503 |
+
#: libs/class.Package.php:875 wpdm-functions.php:107
|
1504 |
msgid "Download was expired on"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: libs/class.Package.php:185 libs/class.Package.php:654
|
1508 |
+
#: libs/class.Package.php:881 wpdm-functions.php:114
|
1509 |
msgid "Download will be available from "
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: libs/class.Package.php:219
|
1513 |
msgid "Terms and Conditions"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: libs/class.Package.php:220
|
1517 |
+
msgid "I Agree With Terms and Conditions"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: libs/class.Package.php:451
|
1521 |
msgid "No File Attached!"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: libs/class.Package.php:649 libs/class.Package.php:656
|
1525 |
+
#: libs/class.Package.php:666 wpdm-functions.php:109 wpdm-functions.php:116
|
1526 |
+
#: wpdm-functions.php:126
|
1527 |
msgid "Download:"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: libs/class.Package.php:748 wpdm-functions.php:208
|
1531 |
msgid "Download limit exceeded!"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: libs/class.Package.php:810
|
1535 |
msgid "Verify CAPTCHA to Download"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: libs/class.Package.php:876 libs/class.Package.php:882
|
1539 |
+
#: libs/class.Package.php:894
|
1540 |
msgid "DOWNLOAD ERROR:"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: libs/class.Package.php:970
|
1544 |
msgid "Limit Over!"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: libs/class.PackageLocks.php:44 tpls/lock-options/password-lock.php:11
|
1548 |
+
#: tpls3/lock-options/password-lock.php:11
|
1549 |
msgid "Enter Correct Password to Download"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: libs/class.PackageLocks.php:47 libs/class.PackageLocks.php:63
|
1553 |
+
#: tpls/lock-options/password-lock.php:14
|
1554 |
+
#: tpls/lock-options/password-lock.php:30 tpls/wpdm-all-downloads.php:47
|
1555 |
+
#: tpls3/lock-options/password-lock.php:14
|
1556 |
+
#: tpls3/lock-options/password-lock.php:30 tpls3/wpdm-all-downloads.php:121
|
1557 |
msgid "Processing..."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: libs/class.PackageLocks.php:54 libs/class.User.php:93
|
1561 |
+
#: tpls/lock-options/password-lock.php:21
|
1562 |
+
#: tpls3/lock-options/password-lock.php:21
|
1563 |
msgid "Enter Password"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: libs/class.PackageLocks.php:55 tpls/lock-options/password-lock.php:22
|
1567 |
+
#: tpls3/lock-options/password-lock.php:22
|
1568 |
msgid "Submit"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: libs/class.Pagination.php:50 tpls/wpdm-all-downloads.php:53
|
1572 |
+
#: tpls/wpdm-all-downloads.php:398 tpls3/wpdm-all-downloads.php:127
|
1573 |
+
#: tpls3/wpdm-all-downloads.php:333 wpdm-functions.php:1887
|
1574 |
msgid "Previous"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:52
|
1578 |
+
#: tpls/wpdm-all-downloads.php:399 tpls3/wpdm-all-downloads.php:126
|
1579 |
+
#: tpls3/wpdm-all-downloads.php:334 wpdm-functions.php:1888
|
1580 |
msgid "Next"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: libs/class.ShortCodes.php:189
|
1584 |
msgid "User registration is disabled"
|
1585 |
msgstr ""
|
1586 |
|
1588 |
msgid "Failed To Open File!"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: libs/class.User.php:41
|
1592 |
+
msgid "First name"
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: libs/class.User.php:41
|
1596 |
+
msgid "Your First Name"
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: libs/class.User.php:42
|
1600 |
+
msgid "Last name"
|
1601 |
+
msgstr ""
|
1602 |
+
|
1603 |
+
#: libs/class.User.php:42
|
1604 |
+
msgid "Your Last Name"
|
1605 |
+
msgstr ""
|
1606 |
+
|
1607 |
+
#: libs/class.User.php:47
|
1608 |
+
msgid "Username"
|
1609 |
+
msgstr ""
|
1610 |
+
|
1611 |
+
#: libs/class.User.php:49
|
1612 |
+
msgid "User Login ID"
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: libs/class.User.php:53
|
1616 |
+
msgid "Email"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: libs/class.User.php:55
|
1620 |
+
msgid "Your Email Address"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: libs/class.User.php:62
|
1624 |
+
msgid "Be Secure"
|
1625 |
+
msgstr ""
|
1626 |
+
|
1627 |
+
#: libs/class.User.php:63 tpls/reset-password-form.php:30
|
1628 |
+
#: tpls3/reset-password-form.php:30
|
1629 |
+
msgid "Confirm Password"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: libs/class.User.php:63
|
1633 |
+
msgid "Do Not Forget"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: libs/class.User.php:86
|
1637 |
+
msgid "Login ID"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: libs/class.User.php:88 tpls/lost-password-form.php:23
|
1641 |
+
#: tpls/lost-password-form.php:24 tpls3/lost-password-form.php:20
|
1642 |
+
#: tpls3/wpdm-login-form.php:55 tpls3/wpdm-login-modal-form.php:55
|
1643 |
+
msgid "Username or Email"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
#: libs/class.UserDashboard.php:17
|
1647 |
msgid "Profile"
|
1648 |
msgstr ""
|
1655 |
msgid "Account"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: libs/class.UserProfile.php:21
|
1659 |
+
msgid "Favourites"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
#: modules/server-file-browser.php:8
|
1663 |
msgid "Not Allowed!"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: modules/server-file-browser.php:84
|
1667 |
msgid "Add file(s) from server"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: modules/strings.php:10 widgets/class.PackageInfo.php:117
|
1671 |
msgid "Download Count"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: modules/strings.php:12
|
|
|
|
|
|
|
|
|
1675 |
msgid "Stock"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: modules/strings.php:13
|
1679 |
msgid "File Size"
|
1680 |
msgstr ""
|
1681 |
|
1687 |
msgid "File Count"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: modules/strings.php:16 tpls/wpdm-all-downloads.php:190
|
1691 |
+
#: tpls3/wpdm-all-downloads.php:159
|
1692 |
msgid "Create Date"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: modules/strings.php:17 widgets/class.PackageInfo.php:23
|
1696 |
msgid "Last Updated"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: modules/strings.php:19 tpls/wpdm-edit-user-profile.php:47
|
1700 |
+
#: tpls/wpdm-edit-user-profile.php:48
|
1701 |
msgid "Description"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: modules/strings.php:20
|
1705 |
msgid "Package Info"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: modules/strings.php:21
|
1709 |
msgid "Attached Files"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: modules/strings.php:22
|
1713 |
msgid "Total Files"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: modules/strings.php:23 tpls/wpdm-all-downloads.php:318
|
1717 |
+
#: tpls3/wpdm-all-downloads.php:260
|
1718 |
+
msgid "file(s)"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: modules/strings.php:24
|
1722 |
+
msgid "Buy Now"
|
|
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: modules/strings.php:25
|
1726 |
+
msgid "Price"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: tpls/already-logged-in.php:15 tpls3/already-logged-in.php:15
|
1730 |
+
msgid "Welcome"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: tpls/already-logged-in.php:17 tpls3/already-logged-in.php:17
|
1734 |
+
msgid "You are already logged in."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: tpls/already-logged-in.php:21 tpls3/already-logged-in.php:21
|
1738 |
+
msgid "Dashboard"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: tpls/asset-manager-ui.php:505 tpls3/asset-manager-ui.php:500
|
1742 |
+
msgid "New Folder"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: tpls/asset-manager-ui.php:507 tpls/asset-manager-ui.php:713
|
1746 |
+
#: tpls3/asset-manager-ui.php:502 tpls3/asset-manager-ui.php:706
|
1747 |
+
msgid "Upload File"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: tpls/asset-manager-ui.php:513 tpls3/asset-manager-ui.php:508
|
1751 |
+
msgid "Digital Asset Manager"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: tpls/asset-manager-ui.php:616 tpls3/asset-manager-ui.php:611
|
1755 |
+
msgid "Copy Shortcode"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: tpls/asset-manager-ui.php:720 tpls3/asset-manager-ui.php:713
|
1759 |
+
msgid "Drop files here"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: tpls/asset-manager-ui.php:827 tpls3/asset-manager-ui.php:820
|
1763 |
+
msgid "Authorized User Groups:"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: tpls/asset-manager-ui.php:849 tpls3/asset-manager-ui.php:842
|
1767 |
+
msgid "Authorized Users:"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: tpls/asset-viewer.php:6
|
1771 |
+
msgid "You do not have access to this asset"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: tpls/lock-options-iframe.php:289 tpls3/lock-options-iframe.php:243
|
1775 |
+
msgid "Buy"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: tpls/lost-password-form.php:17 tpls3/lost-password-form.php:15
|
1779 |
+
msgid "Lost Password?"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: tpls/lost-password-form.php:19 tpls3/lost-password-form.php:17
|
1783 |
+
msgid ""
|
1784 |
+
"Please enter your username or email address. You will receive a link to "
|
1785 |
+
"create a new password via email."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: tpls/lost-password-form.php:29 tpls3/lost-password-form.php:24
|
1789 |
+
msgid "Reset Password"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: tpls/lost-password-form.php:35 tpls3/lost-password-form.php:30
|
1793 |
+
msgid "Register"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: tpls/lost-password-form.php:53
|
1797 |
+
msgid "MAO: SENT!"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: tpls/lost-password-form.php:53
|
1801 |
+
msgid "Password reset link sent to your email."
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: tpls/lost-password-form.php:65 tpls/reset-password-form.php:54
|
1805 |
+
#: tpls/reset-password-form.php:73 tpls3/lost-password-form.php:47
|
1806 |
+
#: tpls3/reset-password-form.php:54 tpls3/reset-password-form.php:73
|
1807 |
+
msgid "ERROR!"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: tpls/lost-password-form.php:65 tpls3/lost-password-form.php:47
|
1811 |
+
msgid "Account not found."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
|
1815 |
+
msgid "MAIL SENT!"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
|
1819 |
+
msgid "Please check your inbox."
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: tpls/reset-password-form.php:21 tpls/reset-password-form.php:26
|
1823 |
+
#: tpls3/reset-password-form.php:21 tpls3/reset-password-form.php:26
|
1824 |
+
msgid "New Password"
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: tpls/reset-password-form.php:23 tpls3/reset-password-form.php:23
|
1828 |
+
msgid "Please enter a new password"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: tpls/reset-password-form.php:34 tpls3/reset-password-form.php:34
|
1832 |
+
msgid "Update Password"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: tpls/reset-password-form.php:45 tpls3/reset-password-form.php:45
|
1836 |
+
msgid "Confirm password value must be same as the new password"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: tpls/reset-password-form.php:52 tpls/user-dashboard/edit-profile.php:16
|
1840 |
+
#: tpls3/reset-password-form.php:52 tpls3/user-dashboard/edit-profile.php:16
|
1841 |
+
#: tpls3/wpdm-edit-user-profile.php:16
|
1842 |
+
msgid "DONE!"
|
1843 |
+
msgstr ""
|
1844 |
+
|
1845 |
+
#: tpls/reset-password-form.php:52 tpls3/reset-password-form.php:52
|
1846 |
+
msgid "Password Updated"
|
1847 |
+
msgstr ""
|
1848 |
+
|
1849 |
+
#: tpls/reset-password-form.php:52 tpls3/reset-password-form.php:52
|
1850 |
+
msgid "Go to your account dashboard"
|
1851 |
+
msgstr ""
|
1852 |
+
|
1853 |
+
#: tpls/reset-password-form.php:54 tpls3/reset-password-form.php:54
|
1854 |
+
msgid "Password Update Failed"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
+
#: tpls/search-result.php:3 tpls/simple-search-form.php:5
|
1858 |
+
#: tpls3/simple-search-form.php:5
|
1859 |
msgid "Search Package"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: tpls/search-result.php:16 tpls/simple-search-form.php:18
|
1863 |
+
#: tpls3/simple-search-form.php:18
|
1864 |
msgid "Search Result For"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: tpls/search-result.php:17 tpls/search-result.php:21
|
1868 |
#: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
|
1869 |
+
#: tpls3/simple-search-form.php:19 tpls3/simple-search-form.php:23
|
1870 |
msgid "Loading"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: tpls/shortcodes/toolbar.php:35 tpls/shortcodes/toolbar.php:69
|
1874 |
+
#: tpls3/shortcodes/toolbar.php:35 tpls3/shortcodes/toolbar.php:69
|
1875 |
+
msgid "Search Keyword..."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: tpls/shortcodes/toolbar.php:39 tpls/shortcodes/toolbar.php:73
|
1879 |
+
#: tpls3/shortcodes/toolbar.php:39 tpls3/shortcodes/toolbar.php:73
|
1880 |
+
msgid "Order By:"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: tpls/shortcodes/toolbar.php:44 tpls/shortcodes/toolbar.php:78
|
1884 |
+
#: tpls3/shortcodes/toolbar.php:44 tpls3/shortcodes/toolbar.php:78
|
1885 |
+
msgid "Views"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: tpls/shortcodes/toolbar.php:49 tpls/shortcodes/toolbar.php:83
|
1889 |
+
#: tpls3/shortcodes/toolbar.php:49 tpls3/shortcodes/toolbar.php:83
|
1890 |
+
msgid "Order:"
|
1891 |
+
msgstr ""
|
1892 |
+
|
1893 |
+
#: tpls/shortcodes/toolbar.php:50 tpls/shortcodes/toolbar.php:84
|
1894 |
+
#: tpls3/shortcodes/toolbar.php:50 tpls3/shortcodes/toolbar.php:84
|
1895 |
+
msgid "Descending"
|
1896 |
+
msgstr ""
|
1897 |
+
|
1898 |
+
#: tpls/shortcodes/toolbar.php:51 tpls/shortcodes/toolbar.php:85
|
1899 |
+
#: tpls3/shortcodes/toolbar.php:51 tpls3/shortcodes/toolbar.php:85
|
1900 |
+
msgid "Ascending"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: tpls/shortcodes/toolbar.php:55 tpls/shortcodes/toolbar.php:89
|
1904 |
+
#: tpls3/shortcodes/toolbar.php:55 tpls3/shortcodes/toolbar.php:89
|
1905 |
+
msgid "Apply Filter"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: tpls/user-dashboard/edit-profile.php:13
|
1909 |
+
#: tpls3/user-dashboard/edit-profile.php:13 tpls3/wpdm-edit-user-profile.php:13
|
1910 |
+
msgid "SAVE FAILED!"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: tpls/user-dashboard/edit-profile.php:24
|
1914 |
+
#: tpls3/user-dashboard/edit-profile.php:24 tpls3/wpdm-edit-user-profile.php:24
|
1915 |
msgid "Basic Profile"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: tpls/user-dashboard/edit-profile.php:27
|
1919 |
+
#: tpls3/user-dashboard/edit-profile.php:27 tpls3/wpdm-edit-user-profile.php:27
|
1920 |
msgid "Display name:"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: tpls/user-dashboard/edit-profile.php:28
|
1924 |
+
#: tpls3/user-dashboard/edit-profile.php:28 tpls3/wpdm-edit-user-profile.php:28
|
1925 |
msgid "PayPal Email:"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: tpls/user-dashboard/edit-profile.php:30
|
1929 |
+
#: tpls3/user-dashboard/edit-profile.php:30 tpls3/wpdm-edit-user-profile.php:30
|
1930 |
msgid "Username:"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: tpls/user-dashboard/edit-profile.php:31
|
1934 |
+
#: tpls3/user-dashboard/edit-profile.php:31 tpls3/wpdm-edit-user-profile.php:31
|
1935 |
msgid "Email:"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: tpls/user-dashboard/edit-profile.php:33
|
1939 |
+
#: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
|
1940 |
msgid "New Password:"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: tpls/user-dashboard/edit-profile.php:33
|
1944 |
+
msgid "Use nothing if you don't want to change old password"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: tpls/user-dashboard/edit-profile.php:34
|
1948 |
+
#: tpls3/user-dashboard/edit-profile.php:34 tpls3/wpdm-edit-user-profile.php:34
|
1949 |
msgid "Re-type New Password:"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: tpls/user-dashboard/profile.php:22 tpls3/user-dashboard/profile.php:7
|
1953 |
+
msgid "User Level"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: tpls/user-dashboard/profile.php:34 tpls3/user-dashboard/profile.php:19
|
1957 |
+
#: widgets/class.PackageInfo.php:20
|
1958 |
+
msgid "Total Downloads"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: tpls/user-dashboard/profile.php:42 tpls3/user-dashboard/profile.php:27
|
1962 |
msgid "Today's Download"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: tpls/user-dashboard/profile.php:53 tpls3/user-dashboard/profile.php:35
|
1966 |
msgid "Recommended Downloads"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: tpls/user-dashboard/profile.php:110
|
1970 |
+
msgid "My Favourites"
|
1971 |
+
msgstr ""
|
1972 |
+
|
1973 |
+
#: tpls/user-dashboard/profile.php:116
|
1974 |
+
msgid "Remove"
|
1975 |
+
msgstr ""
|
1976 |
+
|
1977 |
+
#: tpls/user-dashboard/profile.php:141 tpls3/user-dashboard/profile.php:77
|
1978 |
msgid "Last 5 Downloads"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: tpls/wpdm-all-downloads.php:38 tpls3/wpdm-all-downloads.php:112
|
1982 |
msgid "Display _MENU_ downloads per page"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: tpls/wpdm-all-downloads.php:39 tpls3/wpdm-all-downloads.php:113
|
1986 |
msgid "Nothing _START_ to - sorry"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: tpls/wpdm-all-downloads.php:40 tpls3/wpdm-all-downloads.php:114
|
1990 |
msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: tpls/wpdm-all-downloads.php:41 tpls3/wpdm-all-downloads.php:115
|
1994 |
msgid "No downloads available"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: tpls/wpdm-all-downloads.php:42 tpls3/wpdm-all-downloads.php:116
|
1998 |
msgid "(filtered from _MAX_ total downloads)"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: tpls/wpdm-all-downloads.php:43 tpls3/wpdm-all-downloads.php:117
|
2002 |
msgid "No data available in table"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: tpls/wpdm-all-downloads.php:46 tpls3/wpdm-all-downloads.php:120
|
2006 |
msgid "Loading..."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: tpls/wpdm-all-downloads.php:48 tpls3/wpdm-all-downloads.php:122
|
2010 |
msgid "Search:"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: tpls/wpdm-all-downloads.php:50 tpls3/wpdm-all-downloads.php:124
|
2014 |
msgid "First"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: tpls/wpdm-all-downloads.php:51 tpls3/wpdm-all-downloads.php:125
|
2018 |
msgid "Last"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: tpls/wpdm-all-downloads.php:56 tpls3/wpdm-all-downloads.php:130
|
2022 |
msgid "activate to sort column ascending"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: tpls/wpdm-all-downloads.php:57 tpls3/wpdm-all-downloads.php:131
|
2026 |
msgid "activate to sort column descending"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: tpls/wpdm-all-downloads.php:61 tpls3/wpdm-all-downloads.php:135
|
2030 |
msgid "All"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
|
|
|
|
|
|
|
|
|
2034 |
msgid "downloads"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
|
2038 |
msgid "download"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
|
2042 |
msgid "views"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
|
2046 |
msgid "view"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: tpls/wpdm-all-downloads.php:377 tpls3/wpdm-all-downloads.php:312
|
2050 |
msgid "No Packages Found"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
+
#: tpls/wpdm-asset.php:23 tpls3/wpdm-asset.php:23
|
2054 |
msgid "Login to Download"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: tpls/wpdm-edit-user-profile.php:9
|
2058 |
+
msgid "View Profile"
|
2059 |
+
msgstr ""
|
2060 |
+
|
2061 |
+
#: tpls/wpdm-edit-user-profile.php:10
|
2062 |
+
msgid "Public Profile Info"
|
2063 |
+
msgstr ""
|
2064 |
+
|
2065 |
+
#: tpls/wpdm-edit-user-profile.php:19
|
2066 |
+
msgid "Short Intro"
|
2067 |
+
msgstr ""
|
2068 |
+
|
2069 |
+
#: tpls/wpdm-edit-user-profile.php:32
|
2070 |
+
msgid "Banner URL"
|
2071 |
+
msgstr ""
|
2072 |
+
|
2073 |
+
#: tpls/wpdm-edit-user-profile.php:41
|
2074 |
+
msgid "Profile Header Text Color"
|
2075 |
+
msgstr ""
|
2076 |
+
|
2077 |
+
#: tpls/wpdm-edit-user-profile.php:55
|
2078 |
+
msgid "Payment Settings"
|
2079 |
+
msgstr ""
|
2080 |
+
|
2081 |
+
#: tpls/wpdm-edit-user-profile.php:58
|
2082 |
+
msgid "PayPal Email"
|
2083 |
+
msgstr ""
|
2084 |
+
|
2085 |
+
#: tpls/wpdm-generate-password.php:30 tpls3/wpdm-generate-password.php:17
|
2086 |
msgid "Select Options"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: tpls/wpdm-generate-password.php:34 tpls3/wpdm-generate-password.php:19
|
2090 |
msgid "Number of passwords:"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: tpls/wpdm-generate-password.php:37 tpls3/wpdm-generate-password.php:23
|
2094 |
msgid "Number of chars for each password:"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: tpls/wpdm-generate-password.php:42
|
2098 |
+
msgid "Valid Chars:"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: tpls/wpdm-generate-password.php:43
|
2102 |
+
msgid "Small Letters"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: tpls/wpdm-generate-password.php:44
|
2106 |
+
msgid "Capital Letters"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: tpls/wpdm-generate-password.php:45
|
2110 |
+
msgid "Numbers"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: tpls/wpdm-generate-password.php:46
|
2114 |
+
msgid "Special Chars"
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: tpls/wpdm-generate-password.php:55 tpls3/wpdm-generate-password.php:36
|
2118 |
+
msgid "Generated Passwords"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: tpls/wpdm-generate-password.php:60
|
2122 |
+
msgid "Insert Password(s)"
|
2123 |
+
msgstr ""
|
2124 |
+
|
2125 |
+
#: tpls/wpdm-login-form.php:58 tpls/wpdm-login-modal-form.php:65
|
2126 |
+
#: tpls3/wpdm-login-form.php:97 tpls3/wpdm-login-modal-form.php:77
|
2127 |
msgid "Remember Me"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: tpls/wpdm-login-form.php:59 tpls/wpdm-login-modal-form.php:66
|
2131 |
+
#: tpls3/wpdm-login-form.php:98 tpls3/wpdm-login-modal-form.php:78
|
2132 |
msgid "Forgot Password?"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: tpls/wpdm-login-form.php:70 tpls/wpdm-login-modal-form.php:92
|
2136 |
+
#: tpls/wpdm-reg-form.php:59 tpls3/wpdm-login-form.php:105
|
2137 |
+
#: tpls3/wpdm-login-modal-form.php:105 tpls3/wpdm-reg-form.php:62
|
2138 |
+
msgid "Or connect using your social account"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
|
2142 |
+
#: tpls3/wpdm-login-form.php:116 tpls3/wpdm-login-modal-form.php:116
|
2143 |
msgid "Don't have an account yet?"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
|
2147 |
+
#: tpls/wpdm-reg-form.php:50 tpls3/wpdm-login-form.php:116
|
2148 |
+
#: tpls3/wpdm-login-modal-form.php:116 tpls3/wpdm-reg-form.php:53
|
2149 |
msgid "Register Now"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: tpls/wpdm-login-form.php:107 tpls/wpdm-login-modal-form.php:116
|
2153 |
+
#: tpls3/wpdm-login-form.php:136 tpls3/wpdm-login-modal-form.php:128
|
2154 |
msgid "Logging In..."
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: tpls/wpdm-login-form.php:113 tpls/wpdm-login-form.php:130
|
2158 |
+
#: tpls/wpdm-login-modal-form.php:121 tpls3/wpdm-login-form.php:141
|
2159 |
+
#: tpls3/wpdm-login-modal-form.php:133
|
2160 |
msgid "LOGIN FAILED!"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: tpls/wpdm-login-modal-form.php:42 tpls3/wpdm-login-form.php:41
|
2164 |
+
#: tpls3/wpdm-login-modal-form.php:42
|
2165 |
+
msgid "Login Failed!"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: tpls/wpdm-reg-form.php:61 tpls3/wpdm-reg-form.php:64
|
2169 |
+
msgid "Connect using your social account"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: tpls/wpdm-reg-form.php:79 tpls3/wpdm-reg-form.php:82
|
2173 |
+
msgid "Already have an account?"
|
|
|
|
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: tpls/wpdm-reg-form.php:97 tpls3/wpdm-reg-form.php:100
|
2177 |
+
msgid "Password did not match with the confirm password"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: tpls/wpdm-reg-form.php:125 tpls3/wpdm-reg-form.php:127
|
2181 |
+
msgid "Signup Error:"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: tpls/wpdm-reg-form.php:148 tpls3/wpdm-reg-form.php:145
|
2185 |
+
msgid "Registration is disabled!"
|
|
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
|
2189 |
+
msgid "Use nothing if you don\\'t want to change old password"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: tpls3/user-dashboard/edit-profile.php:40 tpls3/wpdm-edit-user-profile.php:40
|
2193 |
+
msgid "Description:"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: tpls3/wpdm-generate-password.php:27
|
2197 |
+
msgid "Valid chars:"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: tpls3/wpdm-generate-password.php:40
|
2201 |
+
msgid "Generate"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: widgets/class.Affiliate.php:35
|
2205 |
+
msgid "WPDM Affiliate ID:"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: widgets/class.CatPackages.php:76 widgets/class.Categories.php:127
|
2209 |
+
#: widgets/class.ListPackages.php:89 widgets/class.NewDownloads.php:51
|
2210 |
+
#: widgets/class.PackageInfo.php:110 widgets/class.Search.php:40
|
2211 |
+
#: widgets/class.Tags.php:72 widgets/class.TopDownloads.php:51
|
2212 |
+
msgid "Title:"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: widgets/class.CatPackages.php:80 widgets/class.ListPackages.php:93
|
2216 |
+
msgid "Select Category:"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: widgets/class.CatPackages.php:86 widgets/class.ListPackages.php:121
|
2220 |
+
#: widgets/class.NewDownloads.php:55 widgets/class.TopDownloads.php:55
|
2221 |
+
msgid "Number of packages to show:"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: widgets/class.Categories.php:131
|
2225 |
+
msgid "Parent:"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: widgets/class.Categories.php:135
|
2229 |
+
msgid "On Category Page:"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: widgets/class.Categories.php:137
|
2233 |
+
msgid "Show all"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: widgets/class.Categories.php:138
|
2237 |
+
msgid "Show subcategories only"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: widgets/class.Categories.php:142
|
2241 |
+
msgid "Style:"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: widgets/class.Categories.php:149
|
2245 |
+
msgid "Top Level Only"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: widgets/class.Categories.php:152
|
2249 |
+
msgid "Hide widget when no category"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: widgets/class.ListPackages.php:100
|
2253 |
+
msgid "On Single Download Page"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: widgets/class.ListPackages.php:101
|
2257 |
+
msgid "Show packages from current package category"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: widgets/class.PackageInfo.php:21
|
2261 |
+
msgid "Total Views"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: widgets/class.PackageInfo.php:24
|
2265 |
+
msgid "Size"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: widgets/class.PackageInfo.php:114
|
2269 |
+
msgid "Fields to Show:"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: widgets/class.PackageInfo.php:118
|
2273 |
+
msgid "View Count"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: widgets/class.PackageInfo.php:122
|
2277 |
+
msgid "Package Size"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: widgets/class.PackageInfo.php:123
|
2281 |
+
msgid "Download Link"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: widgets/class.PackageInfo.php:124
|
2285 |
+
msgid "Embed Download Options"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: widgets/class.PackageInfo.php:125
|
2289 |
+
msgid "Style"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: widgets/class.PackageInfo.php:125
|
2293 |
+
msgid "Tabular View"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: widgets/class.PackageInfo.php:126
|
2297 |
+
msgid "Show QR Code"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: widgets/class.Search.php:20
|
2301 |
+
msgid "Search..."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: widgets/class.Search.php:24
|
2305 |
+
msgid ""
|
2306 |
+
"Search result page was configured properly. Please create a page with "
|
2307 |
+
"shortcode [wpdm_search_result] and select thee page from widget settings"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: widgets/class.Search.php:44
|
2311 |
+
msgid "Search Result Page"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: widgets/class.Search.php:47
|
2315 |
+
msgid ""
|
2316 |
+
"Note: Create a page with short-code <code>[wpdm_search_result]</code> and "
|
2317 |
+
"select that page as search redult page"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: widgets/class.Tags.php:76
|
2321 |
+
msgid "Sub Title:"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: widgets/class.Tags.php:80
|
2325 |
+
msgid "Number of tags to show:"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: wpdm-core.php:110
|
2329 |
+
msgid "Select category"
|
2330 |
+
msgstr ""
|
2331 |
+
|
2332 |
+
#: wpdm-core.php:194
|
2333 |
+
msgid ": Update Available"
|
2334 |
+
msgstr ""
|
2335 |
+
|
2336 |
+
#: wpdm-functions.php:136
|
2337 |
+
msgid "Permission Denied"
|
2338 |
+
msgstr ""
|
2339 |
+
|
2340 |
+
#: wpdm-functions.php:272
|
2341 |
+
msgid "Captcha Verification Failed!"
|
2342 |
+
msgstr ""
|
2343 |
+
|
2344 |
+
#: wpdm-functions.php:311 wpdm-functions.php:315
|
2345 |
+
msgid "Wrong Password! Try Again."
|
2346 |
+
msgstr ""
|
2347 |
+
|
2348 |
+
#: wpdm-functions.php:328
|
2349 |
+
msgid "Password usages limit exceeded"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: wpdm-functions.php:1425
|
2353 |
msgid "Select Image"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: wpdm-functions.php:1456 wpdm-functions.php:1560
|
2357 |
msgid "SELECT IMAGE"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: wpdm-functions.php:1541
|
2361 |
msgid "Uploading"
|
2362 |
msgstr ""
|
2363 |
|
2369 |
msgid "Package is not available!"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: wpdm-start-download.php:49
|
2373 |
msgid "Sorry! Download is not available yet."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: wpdm-start-download.php:66
|
2377 |
msgid "Please activate \"zlib\" in your server"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: wpdm-start-download.php:102
|
2381 |
msgid "No file found!"
|
2382 |
msgstr ""
|
libs/class.AssetManager.php
CHANGED
@@ -2,518 +2,657 @@
|
|
2 |
/*
|
3 |
Asset Manager for WordPress Download Manager
|
4 |
Author: Shahjada
|
5 |
-
Version: 1.
|
6 |
*/
|
7 |
|
8 |
namespace WPDM;
|
9 |
|
10 |
use WPDM\libs\Crypt;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
if(!class_exists('AssetManager')):
|
13 |
-
class AssetManager{
|
14 |
-
private static $instance;
|
15 |
-
private $dir,$url, $root;
|
16 |
-
private $mime_type;
|
17 |
-
|
18 |
-
public static function getInstance(){
|
19 |
-
if(self::$instance === null){
|
20 |
-
self::$instance = new self;
|
21 |
-
self::$instance->dir = dirname(__FILE__);
|
22 |
-
self::$instance->url = WP_PLUGIN_URL . '/' . basename(self::$instance->dir);
|
23 |
-
self::$instance->actions();
|
24 |
-
//print_r($_SESSION);
|
25 |
-
}
|
26 |
-
return self::$instance;
|
27 |
}
|
|
|
|
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
44 |
|
45 |
-
|
46 |
|
47 |
-
add_action('init',array($this,'download'),1);
|
48 |
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
62 |
|
63 |
-
|
|
|
|
|
64 |
|
65 |
-
|
66 |
-
add_action('admin_enqueue_scripts', array($this,'adminScripts'), 999);
|
67 |
|
68 |
-
|
69 |
-
|
70 |
|
71 |
-
|
|
|
72 |
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
|
77 |
-
}
|
78 |
|
79 |
-
|
80 |
-
|
|
|
|
|
|
|
|
|
81 |
|
82 |
-
|
|
|
83 |
|
84 |
-
|
85 |
-
|
86 |
|
87 |
-
|
88 |
-
wp_enqueue_style('wp-codemirror');
|
89 |
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
|
|
|
|
|
|
|
|
94 |
|
95 |
-
|
96 |
-
|
|
|
|
|
97 |
|
98 |
-
|
99 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
-
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
-
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
}
|
|
|
116 |
}
|
117 |
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
global $current_user;
|
130 |
-
$file = AssetManager::root(Crypt::decrypt(wpdm_query_var('wpdmfmdl')));
|
131 |
-
if(!$file) \WPDM_Messages::error("File Not Found!", 1);
|
132 |
-
\WPDM\libs\FileSystem::downloadFile($file, wp_basename($file));
|
133 |
-
die();
|
134 |
-
}
|
135 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
|
138 |
-
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
-
|
143 |
-
|
144 |
-
}
|
145 |
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
$
|
157 |
-
$path = AssetManager::root($relpath);
|
158 |
-
if(!$path) wp_send_json(array('success' => false, 'message' => __( "Error! Unauthorized Path.", "download-manager" )));
|
159 |
-
$name = wpdm_query_var('name', 'filename');
|
160 |
-
mkdir($path.$name);
|
161 |
-
wp_send_json(array('success' => true, 'path' => $path.$name));
|
162 |
-
}
|
163 |
|
164 |
-
|
165 |
-
global $current_user;
|
166 |
-
if(isset($_REQUEST['__wpdm_newfile']) && !wp_verify_nonce($_REQUEST['__wpdm_newfile'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
167 |
-
check_ajax_referer(NONCE_KEY, '__wpdm_newfile');
|
168 |
-
if(!current_user_can(WPDM_ADMIN_CAP)) wp_send_json(array('success' => false, 'message' => __( "Error! Unauthorized Access.", "download-manager" )));
|
169 |
-
$relpath = Crypt::decrypt(wpdm_query_var('path'));
|
170 |
-
$path = AssetManager::root($relpath);
|
171 |
-
if(!$path) wp_send_json(array('success' => false, 'message' => __( "Error! Unauthorized Path.", "download-manager" )));
|
172 |
-
|
173 |
-
$name = wpdm_query_var('name');
|
174 |
-
//Check file is in allowed types
|
175 |
-
if(WPDM()->fileSystem->isBlocked($name)) wp_send_json(array('success' => false, 'message' => __( "Error! FileType is not allowed.", "download-manager" )));
|
176 |
-
|
177 |
-
$ret = file_put_contents($path.$name, '');
|
178 |
-
if($ret !== false)
|
179 |
-
wp_send_json(array('success' => true, 'filepath' => $path.$name));
|
180 |
-
else
|
181 |
-
wp_send_json(array('success' => false, 'filepath' => $path.$name));
|
182 |
|
183 |
-
|
|
|
184 |
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
$
|
195 |
-
|
196 |
-
$
|
197 |
-
$
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
$
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
$
|
206 |
-
$
|
207 |
-
$
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
$_rpath = Crypt::encrypt($rpath);
|
212 |
-
if($type === 'dir') {
|
213 |
-
$_dirs[] = array('item_label' => $item_label, 'item' => $item, 'icon' => $icon, 'type' => $type, 'note' => $note, 'path' => $_rpath, 'id' => md5($rpath));
|
214 |
}
|
215 |
-
|
216 |
-
$
|
217 |
-
|
|
|
|
|
|
|
|
|
218 |
}
|
219 |
-
|
220 |
}
|
221 |
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
}
|
226 |
-
$parts = explode("/", $relpath);
|
227 |
-
$breadcrumb[] = "<a href='#' class='media-folder' data-path=''>".__( "Home", "download-manager" )."</a>";
|
228 |
-
$topath = array();
|
229 |
-
foreach ($parts as $part){
|
230 |
-
$topath[] = $part;
|
231 |
-
$rpath = Crypt::encrypt(implode("/", $topath));
|
232 |
-
$breadcrumb[] = "<a href='#' class='media-folder' data-path='{$rpath}'>".esc_attr($part)."</a>";
|
233 |
-
}
|
234 |
-
$breadcrumb = implode("<i class='fa fa-folder-open'></i>", $breadcrumb);
|
235 |
-
if((int)wpdm_query_var('dirs') === 1)
|
236 |
-
wp_send_json($_dirs);
|
237 |
-
else
|
238 |
-
wp_send_json(array('success' => true, 'items' => $allitems, 'breadcrumb' => $breadcrumb));
|
239 |
die();
|
240 |
}
|
241 |
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
}
|
251 |
|
252 |
-
|
253 |
|
254 |
-
if(isset($_REQUEST['__wpdm_unlink']) && !wp_verify_nonce($_REQUEST['__wpdm_unlink'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
255 |
-
check_ajax_referer(NONCE_KEY, '__wpdm_unlink');
|
256 |
-
if(!current_user_can(WPDM_ADMIN_CAP)) wp_send_json(array('success' => false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
257 |
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
else
|
264 |
-
unlink($path);
|
265 |
|
266 |
-
|
|
|
|
|
|
|
|
|
267 |
|
268 |
-
|
269 |
-
|
|
|
|
|
|
|
270 |
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
$path = AssetManager::root($relpath);
|
277 |
-
if(!$path) wp_send_json(array('success' => false, 'message' => __( "Error! Unauthorized Path.", "download-manager" )));
|
278 |
-
if(file_exists($path) && is_file($path)){
|
279 |
-
$cid = uniqid();
|
280 |
-
\WPDM\Session::set($cid, $path);
|
281 |
-
$type = mime_content_type($path);
|
282 |
-
if(strstr("__{$type}", "text/"))
|
283 |
-
wp_send_json(array('content' => file_get_contents($path), 'id' => $cid));
|
284 |
-
else if(strstr("__{$type}", "svg"))
|
285 |
-
wp_send_json(array('content' => '', 'embed' => file_get_contents($path), 'id' => $cid));
|
286 |
-
else {
|
287 |
-
$fetchurl = home_url("/?wpdmfmdl=".wpdm_query_var('file'));
|
288 |
-
if (strstr("__{$type}", "image/")) {
|
289 |
-
$embed_code = "<img src='$fetchurl' />";
|
290 |
-
wp_send_json(array('content' => '', 'embed' => $embed_code, 'id' => $cid));
|
291 |
-
}
|
292 |
-
if (strstr("__{$type}", "audio/")) {
|
293 |
-
$embed_code = do_shortcode("[audio src='$fetchurl']");
|
294 |
-
wp_send_json(array('content' => '', 'embed' => $embed_code, 'id' => $cid));
|
295 |
-
}
|
296 |
-
if (strstr("__{$type}", "video/")) {
|
297 |
-
$embed_code = do_shortcode("[video src='$fetchurl']");
|
298 |
-
wp_send_json(array('content' => '', 'embed' => $embed_code, 'id' => $cid));
|
299 |
-
}
|
300 |
-
}
|
301 |
|
|
|
|
|
|
|
|
|
|
|
302 |
|
|
|
|
|
|
|
|
|
303 |
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
|
309 |
-
|
|
|
|
|
|
|
|
|
310 |
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
$relpath = Crypt::decrypt(wpdm_query_var('file'));
|
317 |
-
$path = AssetManager::root($relpath);
|
318 |
-
if(!$path) wp_send_json(array('success' => false, 'message' => __( "Error! Unauthorized Path.", "download-manager" )));
|
319 |
-
if(file_exists($path)){
|
320 |
-
$asset = new \WPDM\Asset($path);
|
321 |
-
wp_send_json($asset);
|
322 |
-
} else {
|
323 |
-
wp_send_json(array('success' => false, 'message' => __( "Error! Unauthorized Path.", "download-manager" )));
|
324 |
-
die();
|
325 |
-
}
|
326 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
}
|
328 |
|
329 |
-
|
330 |
-
if(isset($_REQUEST['__wpdm_savefile']) && !wp_verify_nonce($_REQUEST['__wpdm_savefile'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
331 |
-
check_ajax_referer(NONCE_KEY, '__wpdm_savefile');
|
332 |
-
if(!current_user_can(WPDM_ADMIN_CAP)) wp_send_json(array('success' => false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
333 |
|
334 |
-
|
335 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
|
|
|
|
|
|
|
|
|
|
|
337 |
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
if(!$path) wp_send_json(array('success' => false, 'message' => __( "Error! Unauthorized Path.", "download-manager" )));
|
342 |
-
if(file_exists($path) && is_file($path)){
|
343 |
-
$content = stripslashes_deep($_POST['content']);
|
344 |
-
file_put_contents($path, $content);
|
345 |
-
wp_send_json(array('success' => true, 'message' => 'Saved Successfully.', 'type' => 'success'));
|
346 |
-
} else {
|
347 |
-
wp_send_json(array('success' => false, 'message' => __( "Error! Couldn't open file ( $path ).", "download-manager" )));
|
348 |
-
}
|
349 |
|
350 |
-
|
|
|
351 |
|
352 |
-
function renameItem(){
|
353 |
-
if(isset($_REQUEST['__wpdm_rename']) && !wp_verify_nonce($_REQUEST['__wpdm_rename'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
354 |
-
check_ajax_referer(NONCE_KEY, '__wpdm_rename');
|
355 |
-
if(!current_user_can(WPDM_ADMIN_CAP)) wp_send_json(array('success' => false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
356 |
-
global $current_user;
|
357 |
-
$asset = new Asset();
|
358 |
-
$asset->get(wpdm_query_var('assetid', 'int'));
|
359 |
-
$root = AssetManager::root();
|
360 |
-
$oldpath = $asset->path;
|
361 |
-
$newpath = dirname($asset->path) . '/' . str_replace(array("/","\\", "\"", "'"), "_", wpdm_query_var('newname'));
|
362 |
|
363 |
-
|
364 |
-
|
|
|
|
|
|
|
365 |
|
366 |
-
|
367 |
-
|
|
|
368 |
$asset->updatePath($newpath);
|
369 |
-
wp_send_json($asset);
|
370 |
-
}
|
371 |
-
|
372 |
-
function moveItem(){
|
373 |
-
if(isset($_REQUEST['__wpdm_cutpaste']) && !wp_verify_nonce($_REQUEST['__wpdm_cutpaste'], NONCE_KEY)) wp_send_json(array('success'=> false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
374 |
-
check_ajax_referer(NONCE_KEY, '__wpdm_cutpaste');
|
375 |
-
if(!current_user_can(WPDM_ADMIN_CAP)) wp_send_json(array('success' => false, 'message' => __( "Error! Session Expired. Try refreshing page.", "download-manager" )));
|
376 |
|
377 |
-
|
378 |
-
|
379 |
-
$file = end($opath);
|
380 |
-
|
381 |
-
//Check file is in allowed types
|
382 |
-
if(WPDM()->fileSystem->isBlocked($file)) wp_send_json(array('success' => false, 'message' => __( "Error! FileType is not allowed.", "download-manager" )));
|
383 |
-
|
384 |
-
|
385 |
-
$oldpath = AssetManager::root($olddir . '/' .$file );
|
386 |
-
$newpath = AssetManager::root(Crypt::decrypt(wpdm_query_var('dest'))) . $file;
|
387 |
-
if(!$oldpath) wp_send_json(array('success'=> false, 'message' => __( "Invalid source path", "download-manager" )));
|
388 |
-
if(!$newpath) wp_send_json(array('success'=> false, 'message' => __( "Invalid destination path", "download-manager" )));
|
389 |
-
rename($oldpath, $newpath);
|
390 |
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
|
396 |
-
|
|
|
|
|
|
|
|
|
397 |
}
|
|
|
|
|
398 |
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
global $current_user;
|
404 |
-
$root = AssetManager::root();
|
405 |
-
$opath = explode("|||", wpdm_query_var('source'));
|
406 |
-
$olddir = Crypt::decrypt($opath[0]);
|
407 |
-
$file = end($opath);
|
408 |
-
$oldpath = AssetManager::root($olddir . '/' .$file );
|
409 |
-
$newpath = AssetManager::root(Crypt::decrypt(wpdm_query_var('dest'))) . $file;
|
410 |
-
if(!strstr($oldpath, $root)) wp_send_json(array('success'=> false, 'message' => __( "Invalid source path", "download-manager" )));
|
411 |
-
if(!strstr($newpath, $root)) wp_send_json(array('success'=> false, 'message' => __( "Invalid destination path", "download-manager" )));
|
412 |
-
//Check file is in allowed types
|
413 |
-
if(WPDM()->fileSystem->isBlocked($file)) wp_send_json(array('success' => false, 'message' => __( "Error! FileType is not allowed.", "download-manager" )));
|
414 |
-
|
415 |
-
copy($oldpath, $newpath);
|
416 |
-
|
417 |
-
wp_send_json(array('success'=> true, 'message' => __( "File copied successfully", "download-manager" )));
|
418 |
-
}
|
419 |
|
420 |
-
|
421 |
-
|
422 |
-
foreach ($files as $file) {
|
423 |
-
(is_dir("$dir/$file")) ? $this->rmDir("$dir/$file") : unlink("$dir/$file");
|
424 |
-
}
|
425 |
-
return rmdir($dir);
|
426 |
-
}
|
427 |
|
428 |
-
|
429 |
-
$
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
while(false !== ( $file = readdir($dir)) ) {
|
436 |
-
if (( $file != '.' ) && ( $file != '..' )) {
|
437 |
-
if ( is_dir($src . '/' . $file) ) {
|
438 |
-
$this->copyDir($src . '/' . $file,$dst . '/' . $file);
|
439 |
-
}
|
440 |
-
else {
|
441 |
-
copy($src . '/' . $file,$dst . '/' . $file);
|
442 |
-
}
|
443 |
}
|
444 |
}
|
445 |
-
closedir($dir);
|
446 |
}
|
|
|
|
|
447 |
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
function _assetManager(){
|
454 |
-
|
455 |
-
include wpdm_tpl_path("asset-manager-ui.php");
|
456 |
-
|
457 |
-
}
|
458 |
-
|
459 |
-
function wpdmAsset($params){
|
460 |
-
if(!isset($params['id'])) return \WPDM_Messages::Error(array('title' => 'Error 404', 'message' => __( "Asset not found!", "download-manager" )), -1);
|
461 |
-
|
462 |
-
$path_or_id = (int)$params['id'];
|
463 |
-
$asset = new Asset();
|
464 |
-
$asset->get($path_or_id);
|
465 |
|
466 |
-
|
467 |
-
|
468 |
|
469 |
-
|
470 |
-
$asset->name = $params['title'];
|
471 |
|
472 |
-
|
473 |
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
}
|
493 |
}
|
|
|
494 |
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
}
|
514 |
}
|
|
|
515 |
|
516 |
-
|
517 |
-
|
|
|
518 |
}
|
519 |
-
|
|
2 |
/*
|
3 |
Asset Manager for WordPress Download Manager
|
4 |
Author: Shahjada
|
5 |
+
Version: 1.0.0
|
6 |
*/
|
7 |
|
8 |
namespace WPDM;
|
9 |
|
10 |
use WPDM\libs\Crypt;
|
11 |
+
use WPDM\libs\FileSystem;
|
12 |
+
|
13 |
+
|
14 |
+
class AssetManager
|
15 |
+
{
|
16 |
+
private static $instance;
|
17 |
+
private $dir, $url, $root;
|
18 |
+
private $mime_type;
|
19 |
+
|
20 |
+
public static function getInstance()
|
21 |
+
{
|
22 |
+
if (self::$instance === null) {
|
23 |
+
self::$instance = new self;
|
24 |
+
self::$instance->dir = dirname(__FILE__);
|
25 |
+
self::$instance->url = WP_PLUGIN_URL . '/' . basename(self::$instance->dir);
|
26 |
+
self::$instance->actions();
|
27 |
+
//print_r($_SESSION);
|
28 |
+
}
|
29 |
+
return self::$instance;
|
30 |
+
}
|
31 |
+
|
32 |
+
public static function root($path = '')
|
33 |
+
{
|
34 |
+
global $current_user;
|
35 |
+
$root = current_user_can(WPDM_ADMIN_CAP) ? rtrim(get_option('_wpdm_file_browser_root'), '/') . '/' : UPLOAD_DIR . $current_user->user_login . '/';
|
36 |
+
$_root = str_replace("\\", "/", $root);
|
37 |
+
if ($path !== '') $root .= $path;
|
38 |
+
$root = str_replace(array("./", "../"), "", $root);
|
39 |
+
$root = str_replace("\\", "/", $root);
|
40 |
+
if ($path !== '' && !strstr($root, $_root)) return "[INVALID_PATH]";
|
41 |
+
if (is_dir($root)) $root = rtrim($root, "/") . "/";
|
42 |
+
if ($path === '' && !file_exists($root)) {
|
43 |
+
@mkdir($root, 0775, true);
|
44 |
+
\WPDM\libs\FileSystem::blockHTTPAccess($root);
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
}
|
47 |
+
return $root;
|
48 |
+
}
|
49 |
|
50 |
+
private function actions()
|
51 |
+
{
|
52 |
+
|
53 |
+
add_action('wp', array($this, 'assetPage'), 1);
|
54 |
+
add_action('init', array($this, 'assetPicker'), 1);
|
55 |
+
add_action('init', array($this, 'download'), 1);
|
56 |
+
|
57 |
+
//add_action('wp_ajax_wpdm_fm_file_upload', array($this,'uploadFile'));
|
58 |
+
add_action('wp_ajax_wpdm_mkdir', array($this, 'mkDir'));
|
59 |
+
add_action('wp_ajax_wpdm_newfile', array($this, 'newFile'));
|
60 |
+
add_action('wp_ajax_wpdm_scandir', array($this, 'scanDir'));
|
61 |
+
add_action('wp_ajax_wpdm_createzip', array($this, 'createZip'));
|
62 |
+
add_action('wp_ajax_wpdm_unzipit', array($this, 'unZip'));
|
63 |
+
add_action('wp_ajax_wpdm_openfile', array($this, 'openFile'));
|
64 |
+
add_action('wp_ajax_wpdm_filesettings', array($this, 'fileSettings'));
|
65 |
+
add_action('wp_ajax_wpdm_unlink', array($this, 'deleteItem'));
|
66 |
+
add_action('wp_ajax_wpdm_rename', array($this, 'renameItem'));
|
67 |
+
add_action('wp_ajax_wpdm_savefile', array($this, 'saveFile'));
|
68 |
+
add_action('wp_ajax_wpdm_copypaste', array($this, 'copyItem'));
|
69 |
+
add_action('wp_ajax_wpdm_cutpaste', array($this, 'moveItem'));
|
70 |
+
add_action('wp_ajax_wpdm_addcomment', array($this, 'addComment'));
|
71 |
+
add_action('wp_ajax_wpdm_newsharelink', array($this, 'addShareLink'));
|
72 |
+
add_action('wp_ajax_wpdm_getlinkdet', array($this, 'getLinkDet'));
|
73 |
+
add_action('wp_ajax_wpdm_updatelink', array($this, 'updateLink'));
|
74 |
+
add_action('wp_ajax_wpdm_deletelink', array($this, 'deleteLink'));
|
75 |
+
|
76 |
+
add_action('wpdm_after_upload_file', array($this, 'upload'));
|
77 |
+
|
78 |
+
//add_action('wp_enqueue_scripts', array($this,'siteScripts'));
|
79 |
+
add_action('admin_enqueue_scripts', array($this, 'adminScripts'));
|
80 |
+
|
81 |
+
//add_shortcode('wpdm_asset_manager', array($this,'_assetManager'));
|
82 |
+
add_shortcode('wpdm_asset', array($this, 'wpdmAsset'));
|
83 |
+
|
84 |
+
//add_filter('wpdm_frontend', array($this,'frontendFileManagerTab'));
|
85 |
+
|
86 |
+
if (is_admin()) {
|
87 |
+
add_action('admin_menu', array($this, 'adminMenu'), 10);
|
88 |
}
|
89 |
|
90 |
+
}
|
91 |
|
|
|
92 |
|
93 |
+
function assetPicker()
|
94 |
+
{
|
95 |
+
global $wp_query;
|
96 |
+
if (wpdm_query_var('assetpicker', 'int') === 1) {
|
97 |
+
http_response_code(200);
|
98 |
+
include WPDM_BASE_DIR . 'admin/tpls/asset-manager-picker.php';;
|
99 |
+
die();
|
100 |
+
}
|
101 |
+
}
|
102 |
|
103 |
+
function assetPage()
|
104 |
+
{
|
105 |
+
global $wp_query;
|
106 |
+
$url = parse_url($_SERVER['REQUEST_URI']);
|
107 |
+
if (preg_match('/wpdm\-asset\/([^\/]+)/', $url['path'], $matches)) {
|
108 |
+
$asset = new \WPDM\Asset();
|
109 |
+
$asset->resolveKey($matches[1]);
|
110 |
+
http_response_code(200);
|
111 |
+
include wpdm_tpl_path("asset-viewer.php");
|
112 |
+
die();
|
113 |
+
}
|
114 |
+
}
|
115 |
|
116 |
+
function siteScripts()
|
117 |
+
{
|
118 |
+
global $post;
|
119 |
|
120 |
+
if (is_single() && !has_shortcode($post->post_content, '[wpdm_asset_manager]')) return;
|
|
|
121 |
|
122 |
+
$cm_settings['codeEditor'] = wp_enqueue_code_editor(array('type' => 'text/plain'));
|
123 |
+
wp_localize_script('jquery', 'wpdmcm_settings', $cm_settings);
|
124 |
|
125 |
+
wp_enqueue_script('wp-theme-plugin-editor');
|
126 |
+
wp_enqueue_style('wp-codemirror');
|
127 |
|
128 |
+
wp_enqueue_script('jquery-ui-core');
|
129 |
+
wp_enqueue_script('jquery-ui-autocomplete');
|
130 |
+
}
|
131 |
|
|
|
132 |
|
133 |
+
function adminScripts($hook)
|
134 |
+
{
|
135 |
+
if ($hook !== 'wpdmpro_page_wpdm-asset-manager') return;
|
136 |
+
|
137 |
+
$cm_settings['codeEditor'] = wp_enqueue_code_editor(array('type' => 'text/plain'));
|
138 |
+
wp_localize_script('jquery', 'wpdmcm_settings', $cm_settings);
|
139 |
|
140 |
+
wp_enqueue_script('wp-theme-plugin-editor');
|
141 |
+
wp_enqueue_style('wp-codemirror');
|
142 |
|
143 |
+
wp_enqueue_script('jquery-ui-core');
|
144 |
+
wp_enqueue_script('jquery-ui-autocomplete');
|
145 |
|
146 |
+
}
|
|
|
147 |
|
148 |
+
public function download()
|
149 |
+
{
|
150 |
+
if (isset($_REQUEST['asset']) && isset($_REQUEST['key'])) {
|
151 |
+
$asset = new Asset();
|
152 |
+
$asset->get(wpdm_query_var('asset', 'int'));
|
153 |
+
if (wp_verify_nonce($_REQUEST['key'], $asset->path))
|
154 |
+
$asset->download();
|
155 |
+
else
|
156 |
+
\WPDM_Messages::error(apply_filters('wpdm_asset_download_link_expired_message', __("Download link is expired! Go back and Refresh the page to regenerate download link", "download-manager")), 1);
|
157 |
+
die();
|
158 |
+
}
|
159 |
+
if (isset($_REQUEST['wpdmfmdl']) && is_user_logged_in()) {
|
160 |
+
global $current_user;
|
161 |
+
$file = AssetManager::root(Crypt::decrypt(wpdm_query_var('wpdmfmdl')));
|
162 |
+
if (!$file) \WPDM_Messages::error("File Not Found!", 1);
|
163 |
+
\WPDM\libs\FileSystem::downloadFile($file, wp_basename($file));
|
164 |
+
die();
|
165 |
}
|
166 |
+
}
|
167 |
+
|
168 |
+
public static function getDir()
|
169 |
+
{
|
170 |
+
return self::$instance->dir;
|
171 |
+
}
|
172 |
|
173 |
+
public static function getUrl()
|
174 |
+
{
|
175 |
+
return self::$instance->url;
|
176 |
+
}
|
177 |
|
178 |
+
public function adminMenu()
|
179 |
+
{
|
180 |
+
add_submenu_page('edit.php?post_type=wpdmpro', __("Asset Manager", 'download-manager'), __('Asset Manager', 'download-manager'), 'access_server_browser', 'wpdm-asset-manager', array($this, '_assetManager'));
|
181 |
+
}
|
182 |
|
183 |
+
static function mimeType($file)
|
184 |
+
{
|
185 |
+
$contenttype = wp_check_filetype($file);
|
186 |
+
$contenttype = $contenttype['type'];
|
187 |
+
if (!$contenttype) {
|
188 |
+
$file = explode(".", $file);
|
189 |
+
$contenttype = "unknown/" . end($file);
|
190 |
+
}
|
191 |
+
return $contenttype;
|
192 |
+
}
|
193 |
|
194 |
+
function mkDir()
|
195 |
+
{
|
196 |
+
global $current_user;
|
197 |
+
if (isset($_REQUEST['__wpdm_mkdir']) && !wp_verify_nonce($_REQUEST['__wpdm_mkdir'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
198 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_mkdir');
|
199 |
+
if (!is_user_logged_in()) die('Error! Unauthorized Access.');
|
200 |
+
$root = AssetManager::root();
|
201 |
+
$relpath = Crypt::decrypt(wpdm_query_var('path'));
|
202 |
+
$path = AssetManager::root($relpath);
|
203 |
+
if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
204 |
+
$name = wpdm_query_var('name', 'filename');
|
205 |
+
mkdir($path . $name);
|
206 |
+
wp_send_json(array('success' => true, 'path' => $path . $name));
|
207 |
+
}
|
208 |
|
209 |
+
function newFile()
|
210 |
+
{
|
211 |
+
global $current_user;
|
212 |
+
if (isset($_REQUEST['__wpdm_newfile']) && !wp_verify_nonce($_REQUEST['__wpdm_newfile'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
213 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_newfile');
|
214 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Access.", "download-manager")));
|
215 |
+
$root = AssetManager::root();
|
216 |
+
$relpath = Crypt::decrypt(wpdm_query_var('path'));
|
217 |
+
$path = AssetManager::root($relpath);
|
218 |
+
if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
219 |
+
|
220 |
+
$name = wpdm_query_var('name');
|
221 |
+
//Check file is in allowed types
|
222 |
+
if (WPDM()->fileSystem->isBlocked($name)) wp_send_json(array('success' => false, 'message' => __("Error! FileType is not allowed.", "download-manager")));
|
223 |
+
|
224 |
+
$ret = file_put_contents($path . $name, '');
|
225 |
+
if ($ret !== false)
|
226 |
+
wp_send_json(array('success' => true, 'filepath' => $path . $name));
|
227 |
+
else
|
228 |
+
wp_send_json(array('success' => false, 'filepath' => $path . $name));
|
229 |
|
230 |
+
}
|
231 |
|
232 |
+
function scanDir()
|
233 |
+
{
|
234 |
+
if (isset($_REQUEST['__wpdm_scandir']) && !wp_verify_nonce($_REQUEST['__wpdm_scandir'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
235 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_scandir');
|
236 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
237 |
+
global $current_user;
|
238 |
+
$root = AssetManager::root();
|
239 |
+
$relpath = Crypt::decrypt(wpdm_query_var('path'));
|
240 |
+
$path = AssetManager::root($relpath);
|
241 |
+
if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
242 |
+
$items = scandir($path, SCANDIR_SORT_ASCENDING);
|
243 |
+
$items = array_diff($items, array('.', '..'));
|
244 |
+
$_items = array();
|
245 |
+
$_dirs = array();
|
246 |
+
Session::set('working_dir', $path);
|
247 |
+
foreach ($items as $item) {
|
248 |
+
|
249 |
+
$item_label = $item;
|
250 |
+
$item_label = esc_attr($item_label);
|
251 |
+
//$item_label = strlen($item_label) > 30 ? substr($item_label, 0, 15) . "..." . substr($item_label, strlen($item_label) - 15) : $item_label;
|
252 |
+
$ext = explode('.', $item);
|
253 |
+
$ext = end($ext);
|
254 |
+
$icon = \WPDM\libs\FileSystem::fileTypeIcon($ext);
|
255 |
+
$type = is_dir($path . $item) ? 'dir' : 'file';
|
256 |
+
$note = is_dir($path . $item) ? (count(scandir($path . $item)) - 2) . ' items' : number_format((filesize($path . $item) / 1024), 2) . ' KB';
|
257 |
+
$rpath = str_replace($root, "", $path . $item);
|
258 |
+
$wp_rel_path = str_replace(UPLOAD_DIR, '', $path . $item);
|
259 |
+
$wp_rel_path = str_replace(ABSPATH, '', $wp_rel_path);
|
260 |
+
$_rpath = Crypt::encrypt($rpath);
|
261 |
+
if ($type === 'dir') {
|
262 |
+
$_dirs[] = array('item_label' => $item_label, 'item' => $item, 'icon' => $icon, 'type' => $type, 'note' => $note, 'path' => $_rpath, 'id' => md5($rpath));
|
263 |
+
} else {
|
264 |
+
$contenttype = function_exists('mime_content_type') ? mime_content_type($path . $item) : self::mimeType($item);
|
265 |
+
$_items[] = array('item_label' => $item_label, 'item' => $item, 'icon' => $icon, 'type' => $type, 'contenttype' => $contenttype, 'note' => $note, 'path_on' => $path . $item, 'wp_rel_path' => $wp_rel_path, 'path' => $_rpath, 'id' => md5($rpath));
|
266 |
}
|
267 |
+
|
268 |
}
|
269 |
|
270 |
+
$allitems = $_dirs;
|
271 |
+
foreach ($_items as $_item) {
|
272 |
+
$allitems[] = $_item;
|
273 |
+
}
|
274 |
+
$parts = explode("/", $relpath);
|
275 |
+
$breadcrumb[] = "<i class='fa fa-hdd color-purple'></i><a href='#' class='media-folder' data-path=''>" . __("Home", "download-manager") . "</a>";
|
276 |
+
$topath = array();
|
277 |
+
foreach ($parts as $part) {
|
278 |
+
$topath[] = $part;
|
279 |
+
$rpath = Crypt::encrypt(implode("/", $topath));
|
280 |
+
$breadcrumb[] = "<a href='#' class='media-folder' data-path='{$rpath}'>" . esc_attr($part) . "</a>";
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
}
|
282 |
+
$breadcrumb = implode("<i class='fa fa-folder-open'></i>", $breadcrumb);
|
283 |
+
if ((int)wpdm_query_var('dirs') === 1)
|
284 |
+
wp_send_json($_dirs);
|
285 |
+
else
|
286 |
+
wp_send_json(array('success' => true, 'items' => $allitems, 'breadcrumb' => $breadcrumb, 'root' => $root, WPDM_ADMIN_CAP => current_user_can(WPDM_ADMIN_CAP), 'roles' => $current_user->roles));
|
287 |
+
die();
|
288 |
+
}
|
289 |
|
290 |
+
function createZip()
|
291 |
+
{
|
292 |
+
if (isset($_REQUEST['__wpdm_createzip']) && !wp_verify_nonce($_REQUEST['__wpdm_createzip'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
293 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_createzip');
|
294 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
295 |
+
if (!current_user_can(WPDM_ADMIN_CAP)) wp_send_json(array('success' => false, 'message' => __("<b>Unauthorized Action!</b><br/>Execution is cancelled by the system.", "download-manager")));
|
296 |
+
global $current_user;
|
297 |
+
$root = AssetManager::root();
|
298 |
+
$relpath = Crypt::decrypt(wpdm_query_var('dir_path'));
|
299 |
+
$path = AssetManager::root($relpath);
|
300 |
+
if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
301 |
+
$zipped = FileSystem::zipDir($path);
|
302 |
+
rename($zipped, untrailingslashit($path) . ".zip");
|
303 |
+
wp_send_json(array('success' => true, 'zipped' => untrailingslashit($path) . ".zip", 'refresh' => true));
|
304 |
+
die();
|
305 |
+
}
|
306 |
|
307 |
+
function unZip(){
|
308 |
+
if (isset($_REQUEST['__wpdm_unzipit']) && !wp_verify_nonce($_REQUEST['__wpdm_unzipit'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
309 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_unzipit');
|
310 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
311 |
+
if (!current_user_can(WPDM_ADMIN_CAP)) wp_send_json(array('success' => false, 'message' => __("<b>Unauthorized Action!</b><br/>Execution is cancelled by the system.", "download-manager")));
|
312 |
+
global $current_user;
|
313 |
+
$root = AssetManager::root();
|
314 |
+
$relpath = Crypt::decrypt(wpdm_query_var('dir_path'));
|
315 |
+
$path = AssetManager::root($relpath);
|
316 |
+
if (!$path || FileSystem::mime_type($path) !== 'application/zip') wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
317 |
+
FileSystem::unZip($path);
|
318 |
+
wp_send_json(array('success' => true, 'refresh' => true));
|
319 |
+
die();
|
320 |
+
}
|
321 |
|
322 |
+
function deleteItem()
|
323 |
+
{
|
|
|
324 |
|
325 |
+
if (isset($_REQUEST['__wpdm_unlink']) && !wp_verify_nonce($_REQUEST['__wpdm_unlink'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
326 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_unlink');
|
327 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
328 |
|
329 |
+
$relpath = Crypt::decrypt(wpdm_query_var('delete'));
|
330 |
+
$path = AssetManager::root($relpath);
|
331 |
+
if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
332 |
+
if (is_dir($path))
|
333 |
+
$this->rmDir($path);
|
334 |
+
else
|
335 |
+
unlink($path);
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
|
337 |
+
Asset::delete($path);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
|
339 |
+
die($path);
|
340 |
+
}
|
341 |
|
342 |
+
function openFile()
|
343 |
+
{
|
344 |
+
if (isset($_REQUEST['__wpdm_openfile']) && !wp_verify_nonce($_REQUEST['__wpdm_openfile'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
345 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_openfile');
|
346 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
347 |
+
$relpath = Crypt::decrypt(wpdm_query_var('file'));
|
348 |
+
$path = AssetManager::root($relpath);
|
349 |
+
if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
350 |
+
if (file_exists($path) && is_file($path)) {
|
351 |
+
$cid = uniqid();
|
352 |
+
\WPDM\Session::set($cid, $path);
|
353 |
+
$type = function_exists('mime_content_type') ? mime_content_type($path) : self::mimeType($path);
|
354 |
+
$ext = explode(".", $path);
|
355 |
+
$ext = end($ext);
|
356 |
+
$ext = strtolower($ext);
|
357 |
+
if (strstr("__{$type}", "text/") || in_array($ext, array('txt', 'csv', 'css', 'html', 'log')))
|
358 |
+
wp_send_json(array('content' => file_get_contents($path), 'id' => $cid));
|
359 |
+
else if (strstr("__{$type}", "svg"))
|
360 |
+
wp_send_json(array('content' => '', 'embed' => file_get_contents($path), 'id' => $cid));
|
361 |
+
else {
|
362 |
+
$file = Crypt::decrypt(wpdm_query_var('file'));
|
363 |
+
$file = basename($file);
|
364 |
+
$fetchurl = home_url("/?wpdmfmdl=" . wpdm_query_var('file'));
|
365 |
+
if (strstr("__{$type}", "image/")) {
|
366 |
+
$embed_code = "<img src='$fetchurl' />";
|
367 |
+
wp_send_json(array('content' => '', 'embed' => $embed_code, 'id' => $cid));
|
|
|
|
|
|
|
368 |
}
|
369 |
+
if (strstr("__{$type}", "audio/")) {
|
370 |
+
$embed_code = do_shortcode("[audio src='{$fetchurl}&file={$file}']");
|
371 |
+
wp_send_json(array('content' => '', 'embed' => $embed_code, 'id' => $cid));
|
372 |
+
}
|
373 |
+
if (strstr("__{$type}", "video/")) {
|
374 |
+
$embed_code = do_shortcode("[video src='{$fetchurl}&file={$file}']");
|
375 |
+
wp_send_json(array('content' => '', 'embed' => $embed_code, 'id' => $cid));
|
376 |
}
|
|
|
377 |
}
|
378 |
|
379 |
+
|
380 |
+
} else {
|
381 |
+
wp_send_json(array('content' => 'Failed to open file!', 'id' => uniqid()));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
die();
|
383 |
}
|
384 |
|
385 |
+
}
|
386 |
+
|
387 |
+
function fileSettings()
|
388 |
+
{
|
389 |
+
|
390 |
+
if (isset($_REQUEST['__wpdm_filesettings']) && !wp_verify_nonce($_REQUEST['__wpdm_filesettings'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
391 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_filesettings');
|
392 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Access.", "download-manager")));
|
393 |
+
$relpath = Crypt::decrypt(wpdm_query_var('file'));
|
394 |
+
$path = AssetManager::root($relpath);
|
395 |
+
if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
396 |
+
if (file_exists($path)) {
|
397 |
+
$asset = new \WPDM\Asset($path);
|
398 |
+
wp_send_json($asset);
|
399 |
+
} else {
|
400 |
+
wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
401 |
+
die();
|
402 |
}
|
403 |
|
404 |
+
}
|
405 |
|
|
|
|
|
|
|
406 |
|
407 |
+
function addComment()
|
408 |
+
{
|
409 |
+
if (isset($_REQUEST['__wpdm_addcomment']) && !wp_verify_nonce($_REQUEST['__wpdm_addcomment'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
410 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_addcomment');
|
411 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
|
|
|
|
412 |
|
413 |
+
$asset_id = wpdm_query_var('assetid', 'int');
|
414 |
+
$asset = new \WPDM\Asset();
|
415 |
+
$asset->get($asset_id)->newComment(wpdm_query_var('comment', 'txts'), get_current_user_id())->save();
|
416 |
+
wp_send_json($asset->comments);
|
417 |
+
}
|
418 |
|
419 |
+
function addShareLink()
|
420 |
+
{
|
421 |
+
if (isset($_REQUEST['__wpdm_newsharelink']) && !wp_verify_nonce($_REQUEST['__wpdm_newsharelink'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
422 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_newsharelink');
|
423 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
424 |
|
425 |
+
$asset_ID = wpdm_query_var('asset', 'int');
|
426 |
+
$asset = new \WPDM\Asset();
|
427 |
+
$asset->get($asset_ID)->newLink(wpdm_query_var('access'))->save();
|
428 |
+
wp_send_json($asset->links);
|
429 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
|
431 |
+
function getLinkDet()
|
432 |
+
{
|
433 |
+
if (isset($_REQUEST['__wpdm_getlinkdet']) && !wp_verify_nonce($_REQUEST['__wpdm_getlinkdet'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
434 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_getlinkdet');
|
435 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
436 |
|
437 |
+
$link_ID = wpdm_query_var('linkid', 'int');
|
438 |
+
$link = \WPDM\Asset::getLink($link_ID);
|
439 |
+
wp_send_json($link);
|
440 |
+
}
|
441 |
|
442 |
+
function updateLink()
|
443 |
+
{
|
444 |
+
if (isset($_REQUEST['__wpdm_updatelink']) && !wp_verify_nonce($_REQUEST['__wpdm_updatelink'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
445 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_updatelink');
|
446 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
447 |
+
|
448 |
+
$link_ID = wpdm_query_var('ID', 'int');
|
449 |
+
$access = wpdm_query_var('access');
|
450 |
+
if (!isset($access['roles'])) $access['roles'] = array();
|
451 |
+
if (!isset($access['users'])) $access['users'] = array();
|
452 |
+
$link = \WPDM\Asset::updateLink(array('access' => json_encode($access)), $link_ID);
|
453 |
+
wp_send_json(array('success' => $link));
|
454 |
+
}
|
455 |
|
456 |
+
function deleteLink()
|
457 |
+
{
|
458 |
+
if (isset($_REQUEST['__wpdm_deletelink']) && !wp_verify_nonce($_REQUEST['__wpdm_deletelink'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
459 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_deletelink');
|
460 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
461 |
|
462 |
+
$link_ID = wpdm_query_var('linkid', 'int');
|
463 |
+
$link = \WPDM\Asset::deleteLink($link_ID);
|
464 |
+
wp_send_json(array('success' => $link));
|
465 |
+
|
466 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
|
468 |
+
function saveFile()
|
469 |
+
{
|
470 |
+
if (isset($_REQUEST['__wpdm_savefile']) && !wp_verify_nonce($_REQUEST['__wpdm_savefile'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
471 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_savefile');
|
472 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
473 |
+
|
474 |
+
$ofilepath = \WPDM\Session::get(wpdm_query_var('opened'));
|
475 |
+
$relpath = Crypt::decrypt(wpdm_query_var('file'));
|
476 |
+
$path = AssetManager::root($relpath);
|
477 |
+
if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
478 |
+
|
479 |
+
if (WPDM()->fileSystem->isBlocked($path)) wp_send_json(array('success' => false, 'message' => __("Error! FileType is not allowed.", "download-manager")));
|
480 |
+
|
481 |
+
if (file_exists($path) && is_file($path)) {
|
482 |
+
$content = stripslashes_deep($_POST['content']);
|
483 |
+
file_put_contents($path, $content);
|
484 |
+
wp_send_json(array('success' => true, 'message' => 'Saved Successfully.', 'type' => 'success'));
|
485 |
+
} else {
|
486 |
+
wp_send_json(array('success' => false, 'message' => __("Error! Couldn't open file ( $path ).", "download-manager")));
|
487 |
}
|
488 |
|
489 |
+
}
|
|
|
|
|
|
|
490 |
|
491 |
+
function renameItem()
|
492 |
+
{
|
493 |
+
if (isset($_REQUEST['__wpdm_rename']) && !wp_verify_nonce($_REQUEST['__wpdm_rename'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
494 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_rename');
|
495 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
496 |
+
global $current_user;
|
497 |
+
$asset = new Asset();
|
498 |
+
$asset->get(wpdm_query_var('assetid', 'int'));
|
499 |
+
$root = AssetManager::root();
|
500 |
+
$oldpath = $asset->path;
|
501 |
+
$newpath = dirname($asset->path) . '/' . str_replace(array("/", "\\", "\"", "'"), "_", wpdm_query_var('newname'));
|
502 |
+
|
503 |
+
if (WPDM()->fileSystem->isBlocked(wpdm_query_var('newname'))) wp_send_json(array('success' => false, 'message' => __("Error! FileType is not allowed.", "download-manager")));
|
504 |
+
|
505 |
+
if (!strstr($newpath, $root)) die('Error!' . $newpath . " -- " . $root);
|
506 |
+
rename($oldpath, $newpath);
|
507 |
+
$asset->updatePath($newpath);
|
508 |
+
wp_send_json($asset);
|
509 |
+
}
|
510 |
|
511 |
+
function moveItem()
|
512 |
+
{
|
513 |
+
if (isset($_REQUEST['__wpdm_cutpaste']) && !wp_verify_nonce($_REQUEST['__wpdm_cutpaste'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
514 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_cutpaste');
|
515 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
516 |
|
517 |
+
$opath = explode("|||", wpdm_query_var('source'));
|
518 |
+
$olddir = Crypt::decrypt($opath[0]);
|
519 |
+
$file = end($opath);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
520 |
|
521 |
+
//Check file is in allowed types
|
522 |
+
if (WPDM()->fileSystem->isBlocked($file)) wp_send_json(array('success' => false, 'message' => __("Error! FileType is not allowed.", "download-manager")));
|
523 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
524 |
|
525 |
+
$oldpath = AssetManager::root($olddir . '/' . $file);
|
526 |
+
$newpath = AssetManager::root(Crypt::decrypt(wpdm_query_var('dest'))) . $file;
|
527 |
+
if (!$oldpath) wp_send_json(array('success' => false, 'message' => __("Invalid source path", "download-manager")));
|
528 |
+
if (!$newpath) wp_send_json(array('success' => false, 'message' => __("Invalid destination path", "download-manager")));
|
529 |
+
rename($oldpath, $newpath);
|
530 |
|
531 |
+
$asset = new Asset();
|
532 |
+
$asset = $asset->get($oldpath);
|
533 |
+
if ($asset)
|
534 |
$asset->updatePath($newpath);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
535 |
|
536 |
+
wp_send_json(array('success' => true, 'message' => __("File moved successfully", "download-manager")));
|
537 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
|
539 |
+
function copyItem()
|
540 |
+
{
|
541 |
+
if (isset($_REQUEST['__wpdm_copypaste']) && !wp_verify_nonce($_REQUEST['__wpdm_copypaste'], NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
542 |
+
check_ajax_referer(NONCE_KEY, '__wpdm_copypaste');
|
543 |
+
if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
|
544 |
+
global $current_user;
|
545 |
+
$root = AssetManager::root();
|
546 |
+
$opath = explode("|||", wpdm_query_var('source'));
|
547 |
+
$olddir = Crypt::decrypt($opath[0]);
|
548 |
+
$file = end($opath);
|
549 |
+
$oldpath = AssetManager::root($olddir . '/' . $file);
|
550 |
+
$newpath = AssetManager::root(Crypt::decrypt(wpdm_query_var('dest'))) . $file;
|
551 |
+
if (!strstr($oldpath, $root)) wp_send_json(array('success' => false, 'message' => __("Invalid source path", "download-manager")));
|
552 |
+
if (!strstr($newpath, $root)) wp_send_json(array('success' => false, 'message' => __("Invalid destination path", "download-manager")));
|
553 |
+
|
554 |
+
//Check file is in allowed types
|
555 |
+
if (WPDM()->fileSystem->isBlocked($newpath)) wp_send_json(array('success' => false, 'message' => __("Error! FileType is not allowed.", "download-manager")));
|
556 |
+
|
557 |
+
copy($oldpath, $newpath);
|
558 |
+
|
559 |
+
wp_send_json(array('success' => true, 'message' => __("File copied successfully", "download-manager")));
|
560 |
+
}
|
561 |
|
562 |
+
function rmDir($dir)
|
563 |
+
{
|
564 |
+
$files = array_diff(scandir($dir), array('.', '..'));
|
565 |
+
foreach ($files as $file) {
|
566 |
+
(is_dir("$dir/$file")) ? $this->rmDir("$dir/$file") : unlink("$dir/$file");
|
567 |
}
|
568 |
+
return rmdir($dir);
|
569 |
+
}
|
570 |
|
571 |
+
function copyDir($src, $dst)
|
572 |
+
{
|
573 |
+
$src = realpath($src);
|
574 |
+
$dir = opendir($src);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
|
576 |
+
$dst = realpath($dst) . '/' . basename($src);
|
577 |
+
@mkdir($dst);
|
|
|
|
|
|
|
|
|
|
|
578 |
|
579 |
+
while (false !== ($file = readdir($dir))) {
|
580 |
+
if (($file != '.') && ($file != '..')) {
|
581 |
+
if (is_dir($src . '/' . $file)) {
|
582 |
+
$this->copyDir($src . '/' . $file, $dst . '/' . $file);
|
583 |
+
} else {
|
584 |
+
copy($src . '/' . $file, $dst . '/' . $file);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
}
|
586 |
}
|
|
|
587 |
}
|
588 |
+
closedir($dir);
|
589 |
+
}
|
590 |
|
591 |
+
function frontendFileManagerTab($tabs)
|
592 |
+
{
|
593 |
+
$tabs['asset-manager'] = array('label' => 'Asset Manager', 'callback' => array($this, '_assetManager'), 'icon' => 'fa fa-copy');
|
594 |
+
return $tabs;
|
595 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
596 |
|
597 |
+
function _assetManager()
|
598 |
+
{
|
599 |
|
600 |
+
include wpdm_tpl_path("asset-manager-ui.php");
|
|
|
601 |
|
602 |
+
}
|
603 |
|
604 |
+
function wpdmAsset($params)
|
605 |
+
{
|
606 |
+
if (!isset($params['id'])) return \WPDM_Messages::error(__("Asset not found!", "download-manager"), -1);
|
607 |
+
$path_or_id = (int)$params['id'];
|
608 |
+
$asset = new Asset();
|
609 |
+
$asset->get($path_or_id);
|
610 |
+
ob_start();
|
611 |
+
include wpdm_tpl_path("wpdm-asset.php");
|
612 |
+
$content = ob_get_clean();
|
613 |
+
return $content;
|
614 |
+
}
|
615 |
|
616 |
+
function upload($file)
|
617 |
+
{
|
618 |
+
if (isset($_REQUEST['__wpdmfm_upload']) && wp_verify_nonce($_REQUEST['__wpdmfm_upload'], NONCE_KEY)) {
|
619 |
+
$working_dir = Session::get('working_dir');
|
620 |
+
$root = AssetManager::root();
|
621 |
+
if (!strstr($working_dir, $root)) wp_send_json(array('success' => false));
|
622 |
+
if ($working_dir != '') {
|
623 |
+
$dest = $working_dir . basename($file);
|
624 |
+
rename($file, $dest);
|
625 |
+
wp_send_json(array('success' => true, 'src' => $file, 'file' => $dest));
|
626 |
+
} else
|
627 |
+
wp_send_json(array('success' => false));
|
|
|
628 |
}
|
629 |
+
}
|
630 |
|
631 |
+
function extract()
|
632 |
+
{
|
633 |
+
$relpath = Crypt::decrypt(wpdm_query_var('zipfile'));
|
634 |
+
$zipfile = AssetManager::root($relpath);
|
635 |
+
$reldest = Crypt::decrypt(wpdm_query_var('zipdest'));
|
636 |
+
if ($reldest == '') $reldest = dirname($zipfile);
|
637 |
+
$zipdest = AssetManager::root($reldest);
|
638 |
+
if (!current_user_can(WPDM_ADMIN_CAP)) wp_send_json(array('success' => false, 'message' => __("Error! Only Administrator can execute this operation.", "download-manager")));
|
639 |
+
if (!$zipfile || !stristr($zipfile, '.zip')) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
|
640 |
+
if (!$zipdest) wp_send_json(array('success' => false, 'message' => __("Error! Invalid Destination Path.", "download-manager")));
|
641 |
+
if (!class_exists('\ZipArchive')) wp_send_json(array('success' => false, 'message' => __('Please activate "zlib" in your server to perform zip operations', 'download-manager')));
|
642 |
+
$zip = new \ZipArchive();
|
643 |
+
if ($zip->open($zipfile) === TRUE) {
|
644 |
+
$zip->extractTo($zipdest);
|
645 |
+
$zip->close();
|
646 |
+
wp_send_json(array('success' => true, 'message' => __("Unzipped successfully.", "download-manager")));
|
647 |
+
} else {
|
648 |
+
wp_send_json(array('success' => false, 'message' => __("Error! Couldn't open the zip file.", "download-manager")));
|
649 |
}
|
650 |
}
|
651 |
+
}
|
652 |
|
653 |
+
|
654 |
+
if (!defined('WPDM_ASSET_MANAGER') || WPDM_ASSET_MANAGER === true) {
|
655 |
+
AssetManager::getInstance();
|
656 |
}
|
657 |
+
|
658 |
+
|
libs/class.DownloadStats.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Class
|
4 |
*/
|
5 |
|
6 |
namespace WPDM\libs;
|
@@ -15,32 +15,59 @@ class DownloadStats
|
|
15 |
|
16 |
}
|
17 |
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
20 |
global $wpdb, $current_user;
|
21 |
-
|
22 |
-
//
|
23 |
-
if
|
24 |
-
|
25 |
-
|
26 |
-
update_post_meta($pid, '__wpdm_download_count', intval(get_post_meta($pid, '__wpdm_download_count', true)) + 1);
|
27 |
-
if ($oid != '' && class_exists('\WPDMPP\Libs\Order')) {
|
28 |
-
$order = new \WPDMPP\Libs\Order();
|
29 |
-
$order->Update(array('download' => 1), $oid);
|
30 |
}
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
$udl = maybe_unserialize(get_post_meta($pid, "__wpdmx_user_download_count", true));
|
33 |
if (is_user_logged_in()) {
|
34 |
$index = $current_user->ID;
|
35 |
} else {
|
36 |
-
$index = str_replace(".", "_", $
|
|
|
37 |
}
|
38 |
-
|
|
|
39 |
update_post_meta($pid, '__wpdmx_user_download_count', $udl);
|
40 |
-
|
41 |
-
if ($ip == '') $ip =
|
42 |
Session::set('downloaded_' . $pid, $ip);
|
43 |
}
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Class DownloadStats
|
4 |
*/
|
5 |
|
6 |
namespace WPDM\libs;
|
15 |
|
16 |
}
|
17 |
|
18 |
+
/**
|
19 |
+
* @param $pid
|
20 |
+
* @param $filename
|
21 |
+
* @param $oid
|
22 |
+
*/
|
23 |
+
function add($pid, $filename, $oid = null){
|
24 |
global $wpdb, $current_user;
|
25 |
+
|
26 |
+
//Handle downloads from email lock
|
27 |
+
if(wpdm_query_var('subscriber' )){
|
28 |
+
$subscriber = Crypt::decrypt(wpdm_query_var('subscriber' ));
|
29 |
+
$wpdb->update("{$wpdb->prefix}ahm_emails", ['request_status' => 1], ['id' => $subscriber]);
|
|
|
|
|
|
|
|
|
30 |
}
|
31 |
|
32 |
+
$uid = get_current_user_id();
|
33 |
+
$ip = (get_option('__wpdm_noip') == 0) ? wpdm_get_client_ip() : "";
|
34 |
+
$agent = $_SERVER['HTTP_USER_AGENT'];
|
35 |
+
$hash = "uniq_".md5($pid.$uid.date("Y-m-d-h-i").wpdm_get_client_ip());
|
36 |
+
if((int)Session::get($hash) === 1 || wpdm_query_var('nostat', ['validate' => 'int']) === 1) return;
|
37 |
+
Session::set($hash, 1);
|
38 |
+
$version = get_post_meta($pid, '__wpdm_version', true);
|
39 |
+
$wpdb->insert("{$wpdb->prefix}ahm_download_stats", array('pid' => (int)$pid, 'uid' => (int)$uid, 'oid' => $oid, 'year' => date("Y"), 'month' => date("m"), 'day' => date("d"), 'timestamp' => time(), 'ip' => "$ip", 'filename' => $filename, 'agent' => $agent, 'version' => $version));
|
40 |
+
update_post_meta($pid, '__wpdm_download_count', (int)get_post_meta($pid, '__wpdm_download_count', true) + 1);
|
41 |
+
|
42 |
$udl = maybe_unserialize(get_post_meta($pid, "__wpdmx_user_download_count", true));
|
43 |
if (is_user_logged_in()) {
|
44 |
$index = $current_user->ID;
|
45 |
} else {
|
46 |
+
$index = str_replace(".", "_", $ip);
|
47 |
+
if ($index == '') $index = uniqid();
|
48 |
}
|
49 |
+
|
50 |
+
$udl["{$index}"] = isset($udl["{$index}"]) && intval($udl["{$index}"]) > 0 ? (int)$udl["{$index}"] + 1 : 1;
|
51 |
update_post_meta($pid, '__wpdmx_user_download_count', $udl);
|
52 |
+
|
53 |
+
if ($ip == '') $ip = $index;
|
54 |
Session::set('downloaded_' . $pid, $ip);
|
55 |
}
|
56 |
|
57 |
+
/**
|
58 |
+
* @deprecated User <b>add</b> method
|
59 |
+
* @param $pid
|
60 |
+
* @param $uid
|
61 |
+
* @param $oid
|
62 |
+
* @param string $filename
|
63 |
+
*/
|
64 |
+
function newStat($pid, $uid, $oid, $filename = "")
|
65 |
+
{
|
66 |
+
global $wpdb, $current_user;
|
67 |
+
return true;
|
68 |
+
|
69 |
+
//Deprecated
|
70 |
+
}
|
71 |
+
|
72 |
|
73 |
}
|
libs/class.FileSystem.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Manages file operations
|
4 |
-
* ***
|
5 |
*/
|
6 |
namespace WPDM\libs;
|
7 |
|
@@ -98,7 +98,7 @@ class FileSystem
|
|
98 |
else
|
99 |
$fsize = 0;
|
100 |
$org_size = $fsize;
|
101 |
-
|
102 |
nocache_headers();
|
103 |
header("X-Robots-Tag: noindex, nofollow", true);
|
104 |
header("Robots: none");
|
@@ -118,7 +118,6 @@ class FileSystem
|
|
118 |
header("Content-Transfer-Encoding: binary");
|
119 |
}
|
120 |
|
121 |
-
|
122 |
if ((isset($extras['play']) && strpos($_SERVER['HTTP_USER_AGENT'], "Safari")) || get_option('__wpdm_download_resume', 1) == 2) {
|
123 |
header("Content-Length: " . $fsize);
|
124 |
header("Content-disposition: attachment;filename=\"{$filename}\"");
|
@@ -247,7 +246,7 @@ class FileSystem
|
|
247 |
|
248 |
$zipped = (basename($zipname) === $zipname) ? WPDM_CACHE_DIR . sanitize_file_name($zipname) : $zipname;
|
249 |
|
250 |
-
if (substr_count($zipname, '.zip')
|
251 |
|
252 |
if (file_exists($zipped))
|
253 |
unlink($zipped);
|
@@ -288,6 +287,8 @@ class FileSystem
|
|
288 |
|
289 |
$zipped = WPDM_CACHE_DIR . sanitize_file_name($zipname) . '.zip';
|
290 |
|
|
|
|
|
291 |
$rootPath = realpath($dir);
|
292 |
|
293 |
$zip = new \ZipArchive();
|
@@ -295,15 +296,14 @@ class FileSystem
|
|
295 |
|
296 |
|
297 |
$files = new \RecursiveIteratorIterator(
|
298 |
-
new \RecursiveDirectoryIterator($rootPath),
|
299 |
\RecursiveIteratorIterator::LEAVES_ONLY
|
300 |
);
|
301 |
-
|
302 |
foreach ($files as $name => $file) {
|
303 |
-
if (!$file->isDir()) {
|
304 |
$filePath = $file->getRealPath();
|
305 |
$relativePath = substr($filePath, strlen($rootPath) + 1);
|
306 |
-
$zip->addFile($filePath, $relativePath);
|
307 |
}
|
308 |
}
|
309 |
|
@@ -312,6 +312,28 @@ class FileSystem
|
|
312 |
return $zipped;
|
313 |
}
|
314 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
/**
|
316 |
* @param $dir
|
317 |
* @param bool|true $recur
|
@@ -387,15 +409,15 @@ class FileSystem
|
|
387 |
if (is_dir($dir . $file) && $recur == true) $files = array_merge($files, self::scanDir($dir . $file, true));
|
388 |
else {
|
389 |
if(is_array($filter)){
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
} else {
|
400 |
if ($filter === '*' || substr_count($file, $filter) > 0)
|
401 |
@unlink($dir . $file);
|
@@ -429,7 +451,15 @@ class FileSystem
|
|
429 |
closedir($dir);
|
430 |
}
|
431 |
|
432 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
public static function imageThumbnail($path, $width, $height, $crop = WPDM_USE_GLOBAL, $usecache = true)
|
434 |
{
|
435 |
$opath = $path;
|
@@ -583,51 +613,76 @@ class FileSystem
|
|
583 |
return $fullpath;
|
584 |
}
|
585 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
586 |
public static function mediaURL($pid, $fileID, $fileName = '')
|
587 |
{
|
588 |
if ($fileName == '') {
|
589 |
$files = \WPDM\Package::getFiles($pid);
|
590 |
$fileName = wpdm_basename($files[$fileID]);
|
591 |
}
|
592 |
-
//$key = uniqid();
|
593 |
-
//$exp = array('use' => 1, 'expire' => time()+600);
|
594 |
-
//TempStorage::set("__wpdmkey_{$key}", $exp);
|
595 |
-
//return home_url("/wpdm-media/{$pid}/{$fileID}/{$fileName}?_wpdmkey={$key}");
|
596 |
return Package::expirableDownloadLink($pid, 5, 1800) . "&ind={$fileID}&file={$fileName}";
|
597 |
}
|
598 |
|
599 |
-
|
600 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
601 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
602 |
ob_start();
|
|
|
603 |
$ext = strtoupper($ext);
|
604 |
$color_rgba = wpdm_hex2rgb($color);
|
|
|
605 |
?>
|
606 |
-
<svg id="
|
607 |
xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style
|
608 |
type="text/css">
|
609 |
-
.
|
610 |
fill: rgba(<?php echo $color_rgba; ?>, 0.3);
|
611 |
}
|
612 |
|
613 |
-
.
|
614 |
fill: rgba(<?php echo $color_rgba; ?>, 0.9);
|
615 |
}
|
616 |
|
617 |
-
.
|
618 |
fill: <?php echo $color; ?>;
|
619 |
}
|
620 |
|
621 |
-
.
|
622 |
fill: #FFFFFF;
|
623 |
}
|
624 |
</style>
|
625 |
<g id="XMLID_168_">
|
626 |
<g id="XMLID_83_">
|
627 |
-
<polygon class="
|
628 |
-
<polygon class="
|
629 |
-
<rect class="
|
630 |
-
<polygon class="
|
631 |
</g>
|
632 |
<g xmlns="http://www.w3.org/2000/svg" id="XMLID_3113_">
|
633 |
<text x="20%" fill="white" style="font-family: sans-serif;font-size: 725%;font-weight: bold;"
|
@@ -637,7 +692,10 @@ class FileSystem
|
|
637 |
</svg>
|
638 |
<?php
|
639 |
$svg = ob_get_clean();
|
640 |
-
|
|
|
|
|
|
|
641 |
}
|
642 |
|
643 |
public static function instantDownloadURL($file, $expire = 3600)
|
@@ -704,15 +762,17 @@ class FileSystem
|
|
704 |
if(is_object($package)){
|
705 |
$author = get_user_by('id', $package->post_author);
|
706 |
if($author)
|
707 |
-
|
708 |
}
|
709 |
if($user_upload_dir && file_exists($user_upload_dir.$rel_path))
|
710 |
$abs_path = $user_upload_dir.$rel_path;
|
711 |
}
|
712 |
|
713 |
$abs_path = str_replace('\\','/', $abs_path );
|
714 |
-
|
715 |
-
|
|
|
716 |
}
|
717 |
|
718 |
}
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Manages file operations
|
4 |
+
* *** DO NOT CHANGE ***
|
5 |
*/
|
6 |
namespace WPDM\libs;
|
7 |
|
98 |
else
|
99 |
$fsize = 0;
|
100 |
$org_size = $fsize;
|
101 |
+
|
102 |
nocache_headers();
|
103 |
header("X-Robots-Tag: noindex, nofollow", true);
|
104 |
header("Robots: none");
|
118 |
header("Content-Transfer-Encoding: binary");
|
119 |
}
|
120 |
|
|
|
121 |
if ((isset($extras['play']) && strpos($_SERVER['HTTP_USER_AGENT'], "Safari")) || get_option('__wpdm_download_resume', 1) == 2) {
|
122 |
header("Content-Length: " . $fsize);
|
123 |
header("Content-disposition: attachment;filename=\"{$filename}\"");
|
246 |
|
247 |
$zipped = (basename($zipname) === $zipname) ? WPDM_CACHE_DIR . sanitize_file_name($zipname) : $zipname;
|
248 |
|
249 |
+
if (substr_count($zipname, '.zip') <= 0) $zipped .= '.zip';
|
250 |
|
251 |
if (file_exists($zipped))
|
252 |
unlink($zipped);
|
287 |
|
288 |
$zipped = WPDM_CACHE_DIR . sanitize_file_name($zipname) . '.zip';
|
289 |
|
290 |
+
$base_folder = sanitize_file_name($zipname);
|
291 |
+
|
292 |
$rootPath = realpath($dir);
|
293 |
|
294 |
$zip = new \ZipArchive();
|
296 |
|
297 |
|
298 |
$files = new \RecursiveIteratorIterator(
|
299 |
+
new \RecursiveDirectoryIterator($rootPath, \RecursiveDirectoryIterator::SKIP_DOTS),
|
300 |
\RecursiveIteratorIterator::LEAVES_ONLY
|
301 |
);
|
|
|
302 |
foreach ($files as $name => $file) {
|
303 |
+
if (!$file->isDir() && !strstr($file->getRealPath(), ".git") && !strstr($file->getRealPath(), ".DS")) {
|
304 |
$filePath = $file->getRealPath();
|
305 |
$relativePath = substr($filePath, strlen($rootPath) + 1);
|
306 |
+
$zip->addFile($filePath, $base_folder."/".$relativePath);
|
307 |
}
|
308 |
}
|
309 |
|
312 |
return $zipped;
|
313 |
}
|
314 |
|
315 |
+
/**
|
316 |
+
* UnZip a zip file
|
317 |
+
* @param $zip_file
|
318 |
+
* @param string $dir
|
319 |
+
* @return bool
|
320 |
+
*/
|
321 |
+
public static function unZip($zip_file, $dir = ''){
|
322 |
+
$zip = new \ZipArchive();
|
323 |
+
$res = $zip->open($zip_file);
|
324 |
+
if($dir === '')
|
325 |
+
$dir = str_replace(".zip", "", $zip_file);
|
326 |
+
if(!file_exists($dir))
|
327 |
+
mkdir($dir, 0755, true);
|
328 |
+
if ($res === TRUE) {
|
329 |
+
$zip->extractTo($dir);
|
330 |
+
$zip->close();
|
331 |
+
return true;
|
332 |
+
} else {
|
333 |
+
return false;
|
334 |
+
}
|
335 |
+
}
|
336 |
+
|
337 |
/**
|
338 |
* @param $dir
|
339 |
* @param bool|true $recur
|
409 |
if (is_dir($dir . $file) && $recur == true) $files = array_merge($files, self::scanDir($dir . $file, true));
|
410 |
else {
|
411 |
if(is_array($filter)){
|
412 |
+
$ext = isset($filter['ext']) ? $filter['ext'] : '*';
|
413 |
+
$expiretime = isset($filter['filetime']) ? $filter['filetime'] : null;
|
414 |
+
$delete = true;
|
415 |
+
$filetime = filectime($dir.$file);
|
416 |
+
if(!$filetime || !$expiretime || $filetime < $expiretime) {
|
417 |
+
if ($ext === '*' || substr_count($file, $ext) > 0) {
|
418 |
+
@unlink($dir . $file);
|
419 |
+
}
|
420 |
+
}
|
421 |
} else {
|
422 |
if ($filter === '*' || substr_count($file, $filter) > 0)
|
423 |
@unlink($dir . $file);
|
451 |
closedir($dir);
|
452 |
}
|
453 |
|
454 |
+
/**
|
455 |
+
* Generates image thumbnail
|
456 |
+
* @param $path
|
457 |
+
* @param $width
|
458 |
+
* @param $height
|
459 |
+
* @param |null $crop
|
460 |
+
* @param bool $usecache
|
461 |
+
* @return string|string[]
|
462 |
+
*/
|
463 |
public static function imageThumbnail($path, $width, $height, $crop = WPDM_USE_GLOBAL, $usecache = true)
|
464 |
{
|
465 |
$opath = $path;
|
613 |
return $fullpath;
|
614 |
}
|
615 |
|
616 |
+
public static function fileExt($file)
|
617 |
+
{
|
618 |
+
$ext = pathinfo($file, PATHINFO_EXTENSION);
|
619 |
+
$ext = strtolower($ext);
|
620 |
+
if($ext === '') $ext = "|=|";
|
621 |
+
return $ext;
|
622 |
+
}
|
623 |
+
|
624 |
public static function mediaURL($pid, $fileID, $fileName = '')
|
625 |
{
|
626 |
if ($fileName == '') {
|
627 |
$files = \WPDM\Package::getFiles($pid);
|
628 |
$fileName = wpdm_basename($files[$fileID]);
|
629 |
}
|
|
|
|
|
|
|
|
|
630 |
return Package::expirableDownloadLink($pid, 5, 1800) . "&ind={$fileID}&file={$fileName}";
|
631 |
}
|
632 |
|
633 |
+
/**
|
634 |
+
* Find or generate file type icon and returns the url
|
635 |
+
* @param $filename_or_ext
|
636 |
+
* @param string $color
|
637 |
+
* @param bool $return
|
638 |
+
* @return string File Type Icon URL
|
639 |
+
*/
|
640 |
+
static function fileTypeIcon($filename_or_ext, $color = '#269def', $return = true)
|
641 |
{
|
642 |
+
$ext = $filename_or_ext;
|
643 |
+
if(substr_count($ext, '.')) {
|
644 |
+
$ext = self::fileExt($ext);
|
645 |
+
}
|
646 |
+
$upload_dir = wp_upload_dir();
|
647 |
+
$_upload_dir = $upload_dir['basedir'];
|
648 |
+
$_upload_url = $upload_dir['baseurl'];
|
649 |
+
$svg = '';
|
650 |
+
if(file_exists($_upload_dir."/wpdm-file-type-icons/".$ext.".svg"))
|
651 |
+
$svg = $_upload_url."/wpdm-file-type-icons/".$ext.".svg";
|
652 |
+
else if(file_exists(WPDM_BASE_DIR."assets/file-type-icons/".$ext.".svg"))
|
653 |
+
$svg = WPDM_BASE_URL."assets/file-type-icons/".$ext.".svg";
|
654 |
+
if($svg === '') {
|
655 |
ob_start();
|
656 |
+
$id = uniqid();
|
657 |
$ext = strtoupper($ext);
|
658 |
$color_rgba = wpdm_hex2rgb($color);
|
659 |
+
$ext = substr($ext, 0, 3);
|
660 |
?>
|
661 |
+
<svg id="Layer_<?= $id ?>" style="enable-background:new 0 0 512 512;" version="1.1" viewBox="0 0 512 512"
|
662 |
xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style
|
663 |
type="text/css">
|
664 |
+
.st_<?= $id ?>_0 {
|
665 |
fill: rgba(<?php echo $color_rgba; ?>, 0.3);
|
666 |
}
|
667 |
|
668 |
+
.st_<?= $id ?>_1 {
|
669 |
fill: rgba(<?php echo $color_rgba; ?>, 0.9);
|
670 |
}
|
671 |
|
672 |
+
.st_<?= $id ?>_2 {
|
673 |
fill: <?php echo $color; ?>;
|
674 |
}
|
675 |
|
676 |
+
.st_<?= $id ?>_3 {
|
677 |
fill: #FFFFFF;
|
678 |
}
|
679 |
</style>
|
680 |
<g id="XMLID_168_">
|
681 |
<g id="XMLID_83_">
|
682 |
+
<polygon class="st_<?= $id ?>_0" id="XMLID_87_" points="330.7,6 87.9,6 87.9,506 449.2,506 449.2,122.8 "/>
|
683 |
+
<polygon class="st_<?= $id ?>_1" id="XMLID_86_" points="330.7,6 449.2,122.8 330.7,122.8 "/>
|
684 |
+
<rect class="st_<?= $id ?>_1" height="156.1" id="XMLID_85_" width="329" x="62.8" y="298.8"/>
|
685 |
+
<polygon class="st_<?= $id ?>_2" id="XMLID_84_" points="62.8,454.9 87.9,476.1 87.9,454.9 "/>
|
686 |
</g>
|
687 |
<g xmlns="http://www.w3.org/2000/svg" id="XMLID_3113_">
|
688 |
<text x="20%" fill="white" style="font-family: sans-serif;font-size: 725%;font-weight: bold;"
|
692 |
</svg>
|
693 |
<?php
|
694 |
$svg = ob_get_clean();
|
695 |
+
$svg = "data:image/svg+xml;base64," . base64_encode($svg);
|
696 |
+
}
|
697 |
+
if($return) return $svg;
|
698 |
+
echo $svg;
|
699 |
}
|
700 |
|
701 |
public static function instantDownloadURL($file, $expire = 3600)
|
762 |
if(is_object($package)){
|
763 |
$author = get_user_by('id', $package->post_author);
|
764 |
if($author)
|
765 |
+
$user_upload_dir = UPLOAD_DIR . $author->user_login . '/';
|
766 |
}
|
767 |
if($user_upload_dir && file_exists($user_upload_dir.$rel_path))
|
768 |
$abs_path = $user_upload_dir.$rel_path;
|
769 |
}
|
770 |
|
771 |
$abs_path = str_replace('\\','/', $abs_path );
|
772 |
+
if(!$abs_path) return null;
|
773 |
+
$real_path = realpath($abs_path);
|
774 |
+
return $real_path;
|
775 |
}
|
776 |
|
777 |
}
|
778 |
+
|
libs/class.Installer.php
CHANGED
@@ -12,7 +12,7 @@ if (!class_exists('\WPDM\Installer')):
|
|
12 |
class Installer
|
13 |
{
|
14 |
|
15 |
-
private $dbVersion =
|
16 |
|
17 |
function __construct()
|
18 |
{
|
@@ -117,6 +117,7 @@ if (!class_exists('\WPDM\Installer')):
|
|
117 |
|
118 |
$installer = new \WPDM\Installer();
|
119 |
|
|
|
120 |
$installer->addColumn('ahm_download_stats', 'agent', 'TEXT');
|
121 |
$installer->addColumn('ahm_download_stats', 'filename', 'TEXT');
|
122 |
$installer->addColumn('ahm_emails', 'request_status', "INT(1) NOT NULL");
|
12 |
class Installer
|
13 |
{
|
14 |
|
15 |
+
private $dbVersion = 311.1;
|
16 |
|
17 |
function __construct()
|
18 |
{
|
117 |
|
118 |
$installer = new \WPDM\Installer();
|
119 |
|
120 |
+
$installer->addColumn('ahm_download_stats', 'version', 'varchar(255) NOT NULL');
|
121 |
$installer->addColumn('ahm_download_stats', 'agent', 'TEXT');
|
122 |
$installer->addColumn('ahm_download_stats', 'filename', 'TEXT');
|
123 |
$installer->addColumn('ahm_emails', 'request_status', "INT(1) NOT NULL");
|
libs/class.Query.php
ADDED
@@ -0,0 +1,313 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
namespace WPDM;
|
5 |
+
|
6 |
+
|
7 |
+
class Query
|
8 |
+
{
|
9 |
+
private $post_type = "wpdmpro";
|
10 |
+
public $params = [];
|
11 |
+
public $result;
|
12 |
+
public $packages = [];
|
13 |
+
public $count = 0;
|
14 |
+
|
15 |
+
function __construct()
|
16 |
+
{
|
17 |
+
|
18 |
+
}
|
19 |
+
|
20 |
+
/**
|
21 |
+
* @param int $items_per_page
|
22 |
+
*/
|
23 |
+
function items_per_page($items_per_page = 10)
|
24 |
+
{
|
25 |
+
$this->params['posts_per_page'] = $items_per_page;
|
26 |
+
return $this;
|
27 |
+
}
|
28 |
+
|
29 |
+
/**
|
30 |
+
* @param string $order_field
|
31 |
+
* @param string $order
|
32 |
+
*/
|
33 |
+
function sort($order_field = 'date', $order = 'DESC')
|
34 |
+
{
|
35 |
+
|
36 |
+
$order_fields = ['__wpdm_download_count', '__wpdm_view_count', '__wpdm_package_size_b'];
|
37 |
+
if (!in_array("__wpdm_" . $order_field, $order_fields)) {
|
38 |
+
$this->params['orderby'] = $order_field;
|
39 |
+
$this->params['order'] = $order;
|
40 |
+
} else {
|
41 |
+
$this->params['orderby'] = 'meta_value_num';
|
42 |
+
$this->params['meta_key'] = "__wpdm_" . $order_field;
|
43 |
+
$this->params['order'] = $order;
|
44 |
+
}
|
45 |
+
return $this;
|
46 |
+
|
47 |
+
}
|
48 |
+
|
49 |
+
/**
|
50 |
+
* @param $taxonomy
|
51 |
+
* @param $terms
|
52 |
+
* @param string $field
|
53 |
+
* @param string $operator
|
54 |
+
* @param false $include_children
|
55 |
+
*/
|
56 |
+
function taxonomy($taxonomy, $terms, $field = 'slug', $operator = 'IN', $include_children = false)
|
57 |
+
{
|
58 |
+
if(!isset($this->params['tax_query']) || !is_array($this->params['tax_query'])) $this->params['tax_query'] = [];
|
59 |
+
if(!is_array($terms)) $terms = explode(",", $terms);
|
60 |
+
$this->params['tax_query'][] = [
|
61 |
+
'taxonomy' => $taxonomy,
|
62 |
+
'field' => $field,
|
63 |
+
'terms' => $terms,
|
64 |
+
'include_children' => $include_children,
|
65 |
+
'operator' => $operator
|
66 |
+
];
|
67 |
+
return $this;
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* @param string $relation
|
72 |
+
*/
|
73 |
+
function taxonomy_relation($relation = 'OR') {
|
74 |
+
$this->params['tax_query']['relation'] = $relation;
|
75 |
+
return $this;
|
76 |
+
}
|
77 |
+
|
78 |
+
/**
|
79 |
+
* @param null $categories
|
80 |
+
* @param string $field
|
81 |
+
* @param string $operator
|
82 |
+
* @param false $include_children
|
83 |
+
*/
|
84 |
+
function categories($categories = null, $field = 'slug', $operator = 'IN', $include_children = false)
|
85 |
+
{
|
86 |
+
if($categories)
|
87 |
+
{
|
88 |
+
$this->taxonomy('wpdmcategory', $categories, $field, $operator, (int)$include_children);
|
89 |
+
}
|
90 |
+
return $this;
|
91 |
+
}
|
92 |
+
|
93 |
+
/**
|
94 |
+
* Exclude categories
|
95 |
+
* @param null $categories
|
96 |
+
* @param string $field
|
97 |
+
*/
|
98 |
+
function xcats($categories = null, $field = 'slug')
|
99 |
+
{
|
100 |
+
if($categories)
|
101 |
+
{
|
102 |
+
$this->taxonomy('wpdmcategory', $categories, $field, 'NOT IN');
|
103 |
+
}
|
104 |
+
return $this;
|
105 |
+
}
|
106 |
+
|
107 |
+
/**
|
108 |
+
* @param null $tags
|
109 |
+
* @param string $field
|
110 |
+
* @param string $operator
|
111 |
+
*/
|
112 |
+
function tags($tags = null, $field = 'slug', $operator = 'IN')
|
113 |
+
{
|
114 |
+
if($tags)
|
115 |
+
{
|
116 |
+
$this->taxonomy('wpdmtag', $tags, $field, $operator);
|
117 |
+
}
|
118 |
+
return $this;
|
119 |
+
}
|
120 |
+
|
121 |
+
/**
|
122 |
+
* @param null $tags
|
123 |
+
* @param string $field
|
124 |
+
*/
|
125 |
+
function tag__and($tags = null, $field = 'slug')
|
126 |
+
{
|
127 |
+
if($tags)
|
128 |
+
{
|
129 |
+
$this->taxonomy('wpdmtag', $tags, $field, 'AND');
|
130 |
+
}
|
131 |
+
return $this;
|
132 |
+
}
|
133 |
+
|
134 |
+
/**
|
135 |
+
* @param null $tags
|
136 |
+
*/
|
137 |
+
function tag_slug__and($tags = null)
|
138 |
+
{
|
139 |
+
if($tags)
|
140 |
+
{
|
141 |
+
$this->taxonomy('wpdmtag', $tags, 'slug', 'AND');
|
142 |
+
}
|
143 |
+
return $this;
|
144 |
+
}
|
145 |
+
|
146 |
+
/**
|
147 |
+
* @param null $tags
|
148 |
+
* @param string $field
|
149 |
+
*/
|
150 |
+
function tag__in($tags = null, $field = 'slug')
|
151 |
+
{
|
152 |
+
if($tags)
|
153 |
+
{
|
154 |
+
$this->taxonomy('wpdmtag', $tags, $field, 'IN');
|
155 |
+
}
|
156 |
+
return $this;
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* @param null $tags
|
161 |
+
*/
|
162 |
+
function tag_slug__in($tags = null)
|
163 |
+
{
|
164 |
+
if($tags)
|
165 |
+
{
|
166 |
+
$this->taxonomy('wpdmtag', $tags, 'slug', 'IN');
|
167 |
+
}
|
168 |
+
return $this;
|
169 |
+
}
|
170 |
+
|
171 |
+
/**
|
172 |
+
* @param null $tags
|
173 |
+
* @param string $field
|
174 |
+
*/
|
175 |
+
function tag__not_in($tags = null, $field = 'slug')
|
176 |
+
{
|
177 |
+
if($tags)
|
178 |
+
{
|
179 |
+
$this->taxonomy('wpdmtag', $tags, $field, 'NOT IN');
|
180 |
+
}
|
181 |
+
return $this;
|
182 |
+
}
|
183 |
+
|
184 |
+
/**
|
185 |
+
* @param $key
|
186 |
+
* @param $value
|
187 |
+
* @param string $compare
|
188 |
+
*/
|
189 |
+
function meta($key, $value, $compare = 'LIKE')
|
190 |
+
{
|
191 |
+
if(!isset($this->params['meta_query']) || !is_array($this->params['meta_query'])) $this->params['meta_query'] = [];
|
192 |
+
$this->params['meta_query'][] = [
|
193 |
+
'key' => $key,
|
194 |
+
'value' => $value,
|
195 |
+
'compare' => $compare
|
196 |
+
];
|
197 |
+
return $this;
|
198 |
+
}
|
199 |
+
|
200 |
+
/**
|
201 |
+
* @param string $relation
|
202 |
+
*/
|
203 |
+
function meta_relation($relation = 'OR') {
|
204 |
+
$this->params['meta_query']['relation'] = $relation;
|
205 |
+
return $this;
|
206 |
+
}
|
207 |
+
|
208 |
+
/**
|
209 |
+
* @param $field
|
210 |
+
* @param $value
|
211 |
+
*/
|
212 |
+
function filter($field, $value)
|
213 |
+
{
|
214 |
+
$this->params[$field] = $value;
|
215 |
+
return $this;
|
216 |
+
}
|
217 |
+
|
218 |
+
/**
|
219 |
+
* @param $keyword
|
220 |
+
* @return $this
|
221 |
+
*/
|
222 |
+
function s($keyword)
|
223 |
+
{
|
224 |
+
$this->params['s'] = $keyword;
|
225 |
+
return $this;
|
226 |
+
}
|
227 |
+
|
228 |
+
/**
|
229 |
+
* @param $keyword
|
230 |
+
* @return $this
|
231 |
+
*/
|
232 |
+
function search($keyword)
|
233 |
+
{
|
234 |
+
$this->params['s'] = $keyword;
|
235 |
+
return $this;
|
236 |
+
}
|
237 |
+
|
238 |
+
/**
|
239 |
+
* @param $paged
|
240 |
+
* @return $this
|
241 |
+
*/
|
242 |
+
function paged($paged)
|
243 |
+
{
|
244 |
+
$this->params['paged'] = $paged;
|
245 |
+
return $this;
|
246 |
+
}
|
247 |
+
|
248 |
+
/**
|
249 |
+
* @param $author_id
|
250 |
+
* @return $this
|
251 |
+
*/
|
252 |
+
function author($author_id)
|
253 |
+
{
|
254 |
+
$this->params['author'] = $author_id;
|
255 |
+
return $this;
|
256 |
+
}
|
257 |
+
|
258 |
+
/**
|
259 |
+
* @param $author_id
|
260 |
+
* @return $this
|
261 |
+
*/
|
262 |
+
function post_status($status)
|
263 |
+
{
|
264 |
+
$this->params['post_status'] = $status;
|
265 |
+
return $this;
|
266 |
+
}
|
267 |
+
|
268 |
+
/**
|
269 |
+
* @param $author_name
|
270 |
+
* @return $this
|
271 |
+
*/
|
272 |
+
function author_name($author_name)
|
273 |
+
{
|
274 |
+
$this->params['author_name'] = $author_name;
|
275 |
+
return $this;
|
276 |
+
}
|
277 |
+
|
278 |
+
/**
|
279 |
+
* @param $author__not_in
|
280 |
+
* @return $this
|
281 |
+
*/
|
282 |
+
function author__not_in($author__not_in)
|
283 |
+
{
|
284 |
+
$this->params['author__not_in'] = $author__not_in;
|
285 |
+
return $this;
|
286 |
+
}
|
287 |
+
|
288 |
+
/**
|
289 |
+
* @return $this
|
290 |
+
*/
|
291 |
+
function process()
|
292 |
+
{
|
293 |
+
if(count($this->params['tax_query']) <= 1 && isset($this->params['tax_query']['relation'])) unset($this->params['tax_query']['relation']);
|
294 |
+
$this->params = apply_filters('wpdm_packages_query_params', $this->params);
|
295 |
+
$this->params['post_type'] = $this->post_type;
|
296 |
+
//wpdmdd($this->params);
|
297 |
+
$this->result = new \WP_Query($this->params);
|
298 |
+
$this->packages = $this->result->get_posts();
|
299 |
+
$this->count = $this->result->found_posts;
|
300 |
+
wp_reset_postdata();
|
301 |
+
return $this;
|
302 |
+
}
|
303 |
+
|
304 |
+
/**
|
305 |
+
* @return array
|
306 |
+
*/
|
307 |
+
function packages()
|
308 |
+
{
|
309 |
+
return $this->packages;
|
310 |
+
}
|
311 |
+
|
312 |
+
|
313 |
+
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: w3eden, codename065, shahriar0822, shimo16ab, shafayat-alam
|
|
3 |
Donate link:
|
4 |
Tags: download manager, document management, file manager, digital store, ecommerce, document management plugin, download monitor, download counter, password protection, download protection
|
5 |
Requires at least: 3.4
|
6 |
-
Tested up to: 5.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
|
@@ -182,6 +182,11 @@ Check download stats and get a push notification when someone downloads, install
|
|
182 |
|
183 |
== Changelog ==
|
184 |
|
|
|
|
|
|
|
|
|
|
|
185 |
= 3.1.11 =
|
186 |
* Improved asset manager
|
187 |
* Fixed the issue with displaying download count
|
3 |
Donate link:
|
4 |
Tags: download manager, document management, file manager, digital store, ecommerce, document management plugin, download monitor, download counter, password protection, download protection
|
5 |
Requires at least: 3.4
|
6 |
+
Tested up to: 5.6
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
|
182 |
|
183 |
== Changelog ==
|
184 |
|
185 |
+
= 3.1.12 =
|
186 |
+
* Improved terms lock option
|
187 |
+
* Added zip and unzip option with the asset manager
|
188 |
+
* Extended download history feature
|
189 |
+
|
190 |
= 3.1.11 =
|
191 |
* Improved asset manager
|
192 |
* Fixed the issue with displaying download count
|
tpls/asset-manager-ui.php
CHANGED
@@ -485,7 +485,12 @@ if(is_admin()){
|
|
485 |
|
486 |
}
|
487 |
|
488 |
-
|
|
|
|
|
|
|
|
|
|
|
489 |
</style>
|
490 |
|
491 |
<div class="w3eden" id="mainfmarea">
|
@@ -652,6 +657,7 @@ if(is_admin()){
|
|
652 |
<div class="col-md-4 text-right">
|
653 |
<div class="action-btns" id="action-btns-{{id}}">
|
654 |
<button class="btn btn-xs btn-simple btn-primary btn-settings" type="button" title="Settings" data-oldname="{{item}}" data-path="{{path}}"><i class="far fa-sun"></i></button>
|
|
|
655 |
<button class="btn btn-xs btn-info btn-simple" data-item="{{item}}" title="Cut" type="button"><i class="fa fa-cut"></i></button>
|
656 |
<button class="btn btn-xs btn-primary btn-simple btn-copy" data-item="{{item}}" title="Copy" type="button"><i class="fa fa-copy"></i></button>
|
657 |
<button class="btn btn-xs btn-danger btn-simple btn-delete" type="button" title="Delete" data-path="{{path}}"><i class="fas fa-trash"></i></button>
|
@@ -677,6 +683,7 @@ if(is_admin()){
|
|
677 |
<div class="col-md-4 text-right">
|
678 |
<div class="action-btns" id="action-btns-{{id}}">
|
679 |
<button class="btn btn-xs btn-simple btn-primary btn-settings" type="button" title="Settings" data-oldname="{{item}}" data-path="{{path}}"><i class="far fa-sun"></i></button>
|
|
|
680 |
<button class="btn btn-xs btn-simple btn-cut" data-item="{{item}}" title="Cut" type="button"><i class="fa fa-cut"></i></button>
|
681 |
<button class="btn btn-xs btn-simple btn-copy" data-item="{{item}}" title="Copy" type="button"><i class="fa fa-copy"></i></button>
|
682 |
<a class="btn btn-xs btn-simple btn-download" type="button" title="Download" href="<?php echo home_url('/?wpdmfmdl={{path}}') ?>"><i class="fas fa-arrow-down"></i></a>
|
@@ -940,8 +947,10 @@ if(is_admin()){
|
|
940 |
var items = data.items;
|
941 |
$.each(items, function (index, entry) {
|
942 |
if(entry.type == 'file') {
|
|
|
943 |
var tpl = $('#fileTPL').html();
|
944 |
tpl = tpl.replace("{{icon}}", entry.icon);
|
|
|
945 |
tpl = tpl.replace("{{contenttype}}", entry.contenttype);
|
946 |
tpl = tpl.replace("{{item_label}}", entry.item_label);
|
947 |
tpl = tpl.replace("{{note}}", entry.note);
|
@@ -1107,6 +1116,34 @@ if(is_admin()){
|
|
1107 |
}
|
1108 |
});
|
1109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1110 |
/* Delete */
|
1111 |
$('body').on('click', '.btn-delete', function (e) {
|
1112 |
e.preventDefault();
|
485 |
|
486 |
}
|
487 |
|
488 |
+
button.btn-unzip{
|
489 |
+
display: none !important;
|
490 |
+
}
|
491 |
+
button.btn-unzip.application_zip{
|
492 |
+
display: inline-block !important;
|
493 |
+
}
|
494 |
</style>
|
495 |
|
496 |
<div class="w3eden" id="mainfmarea">
|
657 |
<div class="col-md-4 text-right">
|
658 |
<div class="action-btns" id="action-btns-{{id}}">
|
659 |
<button class="btn btn-xs btn-simple btn-primary btn-settings" type="button" title="Settings" data-oldname="{{item}}" data-path="{{path}}"><i class="far fa-sun"></i></button>
|
660 |
+
<button class="btn btn-xs btn-simple btn-success btn-zip" type="button" title="Zip" data-dirname="{{item}}" data-dirpath="{{path}}"><i class="fa fa-archive"></i></button>
|
661 |
<button class="btn btn-xs btn-info btn-simple" data-item="{{item}}" title="Cut" type="button"><i class="fa fa-cut"></i></button>
|
662 |
<button class="btn btn-xs btn-primary btn-simple btn-copy" data-item="{{item}}" title="Copy" type="button"><i class="fa fa-copy"></i></button>
|
663 |
<button class="btn btn-xs btn-danger btn-simple btn-delete" type="button" title="Delete" data-path="{{path}}"><i class="fas fa-trash"></i></button>
|
683 |
<div class="col-md-4 text-right">
|
684 |
<div class="action-btns" id="action-btns-{{id}}">
|
685 |
<button class="btn btn-xs btn-simple btn-primary btn-settings" type="button" title="Settings" data-oldname="{{item}}" data-path="{{path}}"><i class="far fa-sun"></i></button>
|
686 |
+
<button class="btn btn-xs btn-simple btn-warning btn-unzip {{ext}}" type="button" title="UnZip" data-dirname="{{item}}" data-dirpath="{{path}}"><i class="fas fa-box-open"></i></button>
|
687 |
<button class="btn btn-xs btn-simple btn-cut" data-item="{{item}}" title="Cut" type="button"><i class="fa fa-cut"></i></button>
|
688 |
<button class="btn btn-xs btn-simple btn-copy" data-item="{{item}}" title="Copy" type="button"><i class="fa fa-copy"></i></button>
|
689 |
<a class="btn btn-xs btn-simple btn-download" type="button" title="Download" href="<?php echo home_url('/?wpdmfmdl={{path}}') ?>"><i class="fas fa-arrow-down"></i></a>
|
947 |
var items = data.items;
|
948 |
$.each(items, function (index, entry) {
|
949 |
if(entry.type == 'file') {
|
950 |
+
ext = entry.contenttype.replace("/", "_");
|
951 |
var tpl = $('#fileTPL').html();
|
952 |
tpl = tpl.replace("{{icon}}", entry.icon);
|
953 |
+
tpl = tpl.replace("{{ext}}", ext);
|
954 |
tpl = tpl.replace("{{contenttype}}", entry.contenttype);
|
955 |
tpl = tpl.replace("{{item_label}}", entry.item_label);
|
956 |
tpl = tpl.replace("{{note}}", entry.note);
|
1116 |
}
|
1117 |
});
|
1118 |
|
1119 |
+
$('body').on('click', '.btn-zip', function (e) {
|
1120 |
+
e.preventDefault();
|
1121 |
+
var zip_dir_path = $(this).data('dirpath');
|
1122 |
+
//WPDM.blockUI("#wpdmfm_explorer");
|
1123 |
+
$(this).html('<i class="fa fa-spinner fa-spin"></i>');
|
1124 |
+
$.get(ajaxurl, {__wpdm_createzip:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_createzip', dir_path: zip_dir_path }, function (response) {
|
1125 |
+
if(!response.success){
|
1126 |
+
WPDM.notify(response.message, 'error');
|
1127 |
+
} else {
|
1128 |
+
refresh_scandir(current_path);
|
1129 |
+
}
|
1130 |
+
});
|
1131 |
+
});
|
1132 |
+
|
1133 |
+
$('body').on('click', '.btn-unzip.application_zip', function (e) {
|
1134 |
+
e.preventDefault();
|
1135 |
+
var zip_dir_path = $(this).data('dirpath');
|
1136 |
+
//WPDM.blockUI("#wpdmfm_explorer");
|
1137 |
+
$(this).html('<i class="fa fa-spinner fa-spin"></i>');
|
1138 |
+
$.get(ajaxurl, {__wpdm_unzipit:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_unzipit', dir_path: zip_dir_path }, function (response) {
|
1139 |
+
if(!response.success){
|
1140 |
+
WPDM.notify(response.message, 'error');
|
1141 |
+
} else {
|
1142 |
+
refresh_scandir(current_path);
|
1143 |
+
}
|
1144 |
+
});
|
1145 |
+
});
|
1146 |
+
|
1147 |
/* Delete */
|
1148 |
$('body').on('click', '.btn-delete', function (e) {
|
1149 |
e.preventDefault();
|
tpls/page-templates/page-template-default.php
CHANGED
@@ -1,10 +1,8 @@
|
|
1 |
<!-- WPDM Template: Default Template -->
|
2 |
<div class="row">
|
3 |
<div class="col-md-12">
|
4 |
-
<div class="card mb-3 p-3">
|
5 |
-
|
6 |
-
[audio_player]
|
7 |
-
</div>
|
8 |
</div>
|
9 |
<div class="col-md-5">
|
10 |
<div class="wpdm-button-area mb-3 p-3 card">
|
1 |
<!-- WPDM Template: Default Template -->
|
2 |
<div class="row">
|
3 |
<div class="col-md-12">
|
4 |
+
<div class="card mb-3 p-3 hide_empty [hide_empty:featured_image]">[featured_image]</div>
|
5 |
+
<div class="card mb-3 p-3 hide_empty [hide_empty:audio_player]">[audio_player]</div>
|
|
|
|
|
6 |
</div>
|
7 |
<div class="col-md-5">
|
8 |
<div class="wpdm-button-area mb-3 p-3 card">
|
tpls/wpdm-all-downloads.php
CHANGED
@@ -251,6 +251,16 @@ if(isset($params['jstable']) && $params['jstable']==1):
|
|
251 |
}
|
252 |
$cats = @implode(", ", $fcats);
|
253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
if($ext=='') $ext = 'unknown.svg';
|
255 |
if($ext==basename($ext) && file_exists(WPDM_BASE_DIR."assets/file-type-icons/".$ext))
|
256 |
$ext = plugins_url("download-manager/assets/file-type-icons/".$ext);
|
@@ -324,6 +334,9 @@ if(isset($params['jstable']) && $params['jstable']==1):
|
|
324 |
case 'categories':
|
325 |
echo "<span class='__dt_categories {$cxc}'>".$cats."</span>";
|
326 |
break;
|
|
|
|
|
|
|
327 |
case 'update_date':
|
328 |
echo "<span class='__dt_update_date {$cxc}'>".get_the_modified_date('', get_the_ID())."</span>";
|
329 |
break;
|
251 |
}
|
252 |
$cats = @implode(", ", $fcats);
|
253 |
|
254 |
+
$tags = wp_get_post_tags(get_the_ID(), 'post_tag');
|
255 |
+
$ftags = array();
|
256 |
+
foreach($tags as $tag){
|
257 |
+
$lurl = add_query_arg(['wpdmt' => $tag->slug], $cfurl);
|
258 |
+
$ftags[] = "<a class='sbyc' href='{$lurl}'>{$tag->name}</a>";
|
259 |
+
}
|
260 |
+
$tags = @implode(", ", $ftags);
|
261 |
+
|
262 |
+
if($ext=='') $ext = 'unknown';
|
263 |
+
|
264 |
if($ext=='') $ext = 'unknown.svg';
|
265 |
if($ext==basename($ext) && file_exists(WPDM_BASE_DIR."assets/file-type-icons/".$ext))
|
266 |
$ext = plugins_url("download-manager/assets/file-type-icons/".$ext);
|
334 |
case 'categories':
|
335 |
echo "<span class='__dt_categories {$cxc}'>".$cats."</span>";
|
336 |
break;
|
337 |
+
case 'tags':
|
338 |
+
echo "<span class='__dt_categories {$cxc}'>".$tags."</span>";
|
339 |
+
break;
|
340 |
case 'update_date':
|
341 |
echo "<span class='__dt_update_date {$cxc}'>".get_the_modified_date('', get_the_ID())."</span>";
|
342 |
break;
|
tpls/wpdm-login-form.php
CHANGED
@@ -35,7 +35,8 @@ if(!defined('ABSPATH')) die();
|
|
35 |
?></div>
|
36 |
|
37 |
|
38 |
-
<?php
|
|
|
39 |
<div class="alert alert-info alert-note-before mb-3" >
|
40 |
<?php echo $params['note_before']; ?>
|
41 |
</div>
|
@@ -44,7 +45,7 @@ if(!defined('ABSPATH')) die();
|
|
44 |
<?php echo \WPDM\libs\User::signinForm($params); ?>
|
45 |
|
46 |
|
47 |
-
<?php if(isset($params['note_after']) && $params['
|
48 |
<div class="alert alert-info alter-note-after mb-3" >
|
49 |
<?php echo $params['note_after']; ?>
|
50 |
</div>
|
@@ -54,8 +55,8 @@ if(!defined('ABSPATH')) die();
|
|
54 |
<?php do_action("login_form"); ?>
|
55 |
|
56 |
<div class="row login-form-meta-text text-muted mb-3" style="font-size: 10px">
|
57 |
-
<div class="col-5"><label><input class="wpdm-checkbox" name="rememberme" type="checkbox" id="rememberme" value="forever" /><?php _e( "Remember Me" , "download-manager" ); ?></label></div>
|
58 |
-
<div class="col-7 text-right"><a class="color-blue" href="<?php echo wpdm_lostpassword_url(); ?>"><?php _e( "Forgot Password?" , "download-manager" ); ?></a></div>
|
59 |
</div>
|
60 |
|
61 |
<div class="row">
|
@@ -68,12 +69,12 @@ if(!defined('ABSPATH')) die();
|
|
68 |
<div class="text-center card card-default" style="margin: 20px 0 0 0">
|
69 |
<div class="card-header" data-toggle="collapse" href="#socialllogin" role="button" aria-expanded="false" aria-controls="socialllogin"><?php _e("Or connect using your social account", "download-manager") ?></div>
|
70 |
<div class="collapse" id="socialllogin">
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
</div>
|
78 |
</div>
|
79 |
<?php } ?>
|
@@ -98,14 +99,30 @@ if(!defined('ABSPATH')) die();
|
|
98 |
|
99 |
|
100 |
</div>
|
101 |
-
|
102 |
<script>
|
103 |
jQuery(function ($) {
|
|
|
104 |
var llbl = $('#loginform-submit').html();
|
105 |
$('#loginform').submit(function () {
|
106 |
$('#loginform-submit').html("<i class='fa fa-spin fa-sync'></i> <?php _e( "Logging In..." , "download-manager" ); ?>").attr('disabled', 'disabled');
|
107 |
WPDM.blockUI('#loginform');
|
108 |
$(this).ajaxSubmit({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
success: function (res) {
|
110 |
WPDM.unblockUI('#loginform');
|
111 |
if (!res.success) {
|
@@ -127,7 +144,7 @@ if(!defined('ABSPATH')) die();
|
|
127 |
});
|
128 |
return false;
|
129 |
});
|
130 |
-
|
131 |
$('body').on('click', 'form .alert-danger', function(){
|
132 |
$(this).slideUp();
|
133 |
});
|
35 |
?></div>
|
36 |
|
37 |
|
38 |
+
<?php
|
39 |
+
if(isset($params['note_before']) && $params['note_before'] !== '') { ?>
|
40 |
<div class="alert alert-info alert-note-before mb-3" >
|
41 |
<?php echo $params['note_before']; ?>
|
42 |
</div>
|
45 |
<?php echo \WPDM\libs\User::signinForm($params); ?>
|
46 |
|
47 |
|
48 |
+
<?php if(isset($params['note_after']) && $params['note_before'] !== '') { ?>
|
49 |
<div class="alert alert-info alter-note-after mb-3" >
|
50 |
<?php echo $params['note_after']; ?>
|
51 |
</div>
|
55 |
<?php do_action("login_form"); ?>
|
56 |
|
57 |
<div class="row login-form-meta-text text-muted mb-3" style="font-size: 10px">
|
58 |
+
<div class="col-md-5"><label><input class="wpdm-checkbox" name="rememberme" type="checkbox" id="rememberme" value="forever" /><?php _e( "Remember Me" , "download-manager" ); ?></label></div>
|
59 |
+
<div class="col-md-7 text-right"><a class="color-blue" href="<?php echo wpdm_lostpassword_url(); ?>"><?php _e( "Forgot Password?" , "download-manager" ); ?></a></div>
|
60 |
</div>
|
61 |
|
62 |
<div class="row">
|
69 |
<div class="text-center card card-default" style="margin: 20px 0 0 0">
|
70 |
<div class="card-header" data-toggle="collapse" href="#socialllogin" role="button" aria-expanded="false" aria-controls="socialllogin"><?php _e("Or connect using your social account", "download-manager") ?></div>
|
71 |
<div class="collapse" id="socialllogin">
|
72 |
+
<div class="card-body">
|
73 |
+
<?php if(isset($__wpdm_social_login['facebook'])){ ?><button type="button" onclick="return _PopupCenter('<?php echo home_url('/?sociallogin=facebook'); ?>', 'Facebook', 400,400);" class="btn btn-social wpdm-facebook wpdm-facebook-connect"><i class="fab fa-facebook-f"></i></button><?php } ?>
|
74 |
+
<?php if(isset($__wpdm_social_login['twitter'])){ ?><button type="button" onclick="return _PopupCenter('<?php echo home_url('/?sociallogin=twitter'); ?>', 'Twitter', 400,400);" class="btn btn-social wpdm-twitter wpdm-linkedin-connect"><i class="fab fa-twitter"></i></button><?php } ?>
|
75 |
+
<?php if(isset($__wpdm_social_login['linkedin'])){ ?><button type="button" onclick="return _PopupCenter('<?php echo home_url('/?sociallogin=linkedin'); ?>', 'LinkedIn', 400,400);" class="btn btn-social wpdm-linkedin wpdm-twitter-connect"><i class="fab fa-linkedin-in"></i></button><?php } ?>
|
76 |
+
<?php if(isset($__wpdm_social_login['google'])){ ?><button type="button" onclick="return _PopupCenter('<?php echo home_url('/?sociallogin=google'); ?>', 'Google', 400,400);" class="btn btn-social wpdm-google-plus wpdm-google-connect"><i class="fab fa-google"></i></button><?php } ?>
|
77 |
+
</div>
|
78 |
</div>
|
79 |
</div>
|
80 |
<?php } ?>
|
99 |
|
100 |
|
101 |
</div>
|
|
|
102 |
<script>
|
103 |
jQuery(function ($) {
|
104 |
+
<?php if(!isset($params['form_submit_handler']) || $params['form_submit_handler'] !== false){ ?>
|
105 |
var llbl = $('#loginform-submit').html();
|
106 |
$('#loginform').submit(function () {
|
107 |
$('#loginform-submit').html("<i class='fa fa-spin fa-sync'></i> <?php _e( "Logging In..." , "download-manager" ); ?>").attr('disabled', 'disabled');
|
108 |
WPDM.blockUI('#loginform');
|
109 |
$(this).ajaxSubmit({
|
110 |
+
error: function(error) {
|
111 |
+
WPDM.unblockUI('#loginform');
|
112 |
+
var message = typeof error.responseJSON === 'undefined' ? error.responseText : error.responseJSON.message;
|
113 |
+
$('#loginform').prepend("<div class='alert alert-danger' data-title='<?php _e( "LOGIN FAILED!" , "download-manager" ); ?>'>"+message+"</div>");
|
114 |
+
$('#loginform-submit').html(llbl).removeAttr('disabled');
|
115 |
+
<?php if((int)get_option('__wpdm_recaptcha_loginform', 0) === 1 && get_option('_wpdm_recaptcha_site_key') != ''){ ?>
|
116 |
+
try {
|
117 |
+
grecaptcha.reset();
|
118 |
+
} catch (e) {
|
119 |
+
|
120 |
+
}
|
121 |
+
<?php } ?>
|
122 |
+
if(message.indexOf('"success":true,') > 0) {
|
123 |
+
location.href = "<?php echo $log_redirect; ?>";
|
124 |
+
}
|
125 |
+
},
|
126 |
success: function (res) {
|
127 |
WPDM.unblockUI('#loginform');
|
128 |
if (!res.success) {
|
144 |
});
|
145 |
return false;
|
146 |
});
|
147 |
+
<?php } ?>
|
148 |
$('body').on('click', 'form .alert-danger', function(){
|
149 |
$(this).slideUp();
|
150 |
});
|
wpdm-functions.php
CHANGED
@@ -456,6 +456,8 @@ function wpdm_file_size($file)
|
|
456 |
$_size = filesize($file);
|
457 |
else if (file_exists(UPLOAD_DIR . $file))
|
458 |
$_size = filesize(UPLOAD_DIR . $file);
|
|
|
|
|
459 |
else $_size = 0;
|
460 |
$size = $_size / 1024;
|
461 |
if ($size > 1024) $size = number_format($size / 1024, 2) . ' MB';
|
@@ -1761,23 +1763,26 @@ function wpdm_ip_blocked($ip = null)
|
|
1761 |
/**
|
1762 |
* @return string or bool
|
1763 |
*/
|
1764 |
-
function wpdm_get_client_ip()
|
1765 |
-
{
|
1766 |
$ipaddress = '';
|
1767 |
if (isset($_SERVER['HTTP_CLIENT_IP']))
|
1768 |
$ipaddress = $_SERVER['HTTP_CLIENT_IP'];
|
1769 |
-
else if
|
1770 |
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1771 |
-
else if
|
1772 |
$ipaddress = $_SERVER['HTTP_X_FORWARDED'];
|
1773 |
-
else if
|
1774 |
$ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
|
1775 |
-
else if
|
1776 |
$ipaddress = $_SERVER['HTTP_FORWARDED'];
|
1777 |
-
else if
|
1778 |
$ipaddress = $_SERVER['REMOTE_ADDR'];
|
1779 |
else
|
1780 |
$ipaddress = false;
|
|
|
|
|
|
|
|
|
1781 |
return $ipaddress;
|
1782 |
}
|
1783 |
|
456 |
$_size = filesize($file);
|
457 |
else if (file_exists(UPLOAD_DIR . $file))
|
458 |
$_size = filesize(UPLOAD_DIR . $file);
|
459 |
+
else if (file_exists(ABSPATH . $file))
|
460 |
+
$_size = filesize(UPLOAD_DIR . $file);
|
461 |
else $_size = 0;
|
462 |
$size = $_size / 1024;
|
463 |
if ($size > 1024) $size = number_format($size / 1024, 2) . ' MB';
|
1763 |
/**
|
1764 |
* @return string or bool
|
1765 |
*/
|
1766 |
+
function wpdm_get_client_ip() {
|
|
|
1767 |
$ipaddress = '';
|
1768 |
if (isset($_SERVER['HTTP_CLIENT_IP']))
|
1769 |
$ipaddress = $_SERVER['HTTP_CLIENT_IP'];
|
1770 |
+
else if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
|
1771 |
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
1772 |
+
else if(isset($_SERVER['HTTP_X_FORWARDED']))
|
1773 |
$ipaddress = $_SERVER['HTTP_X_FORWARDED'];
|
1774 |
+
else if(isset($_SERVER['HTTP_FORWARDED_FOR']))
|
1775 |
$ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
|
1776 |
+
else if(isset($_SERVER['HTTP_FORWARDED']))
|
1777 |
$ipaddress = $_SERVER['HTTP_FORWARDED'];
|
1778 |
+
else if(isset($_SERVER['REMOTE_ADDR']))
|
1779 |
$ipaddress = $_SERVER['REMOTE_ADDR'];
|
1780 |
else
|
1781 |
$ipaddress = false;
|
1782 |
+
if($ipaddress) {
|
1783 |
+
$ipaddress = explode(",", $ipaddress);
|
1784 |
+
$ipaddress = $ipaddress[0];
|
1785 |
+
}
|
1786 |
return $ipaddress;
|
1787 |
}
|
1788 |
|
wpdm-start-download.php
CHANGED
@@ -25,16 +25,15 @@ if (wpdm_is_download_limit_exceed($package['ID'])) wp_die(__('Download Limit Exc
|
|
25 |
$files = \WPDM\Package::getFiles($package['ID']);
|
26 |
$fileCount = count($files);
|
27 |
|
28 |
-
$log = new \WPDM\libs\DownloadStats();
|
29 |
$oid = isset($_GET['oid']) ? esc_attr($_GET['oid']) : '';
|
30 |
$indsc = 1;
|
31 |
$indsc = isset($_GET['ind']) && get_option('__wpdm_ind_stats') == 0 ? 0 : 1;
|
32 |
-
if ($indsc && !isset($_GET['nostat']))
|
33 |
-
$log->newStat($package['ID'], $current_user->ID, $oid);
|
34 |
|
35 |
if ($fileCount == 0 || trim($files[0]) == '') {
|
36 |
if (isset($package['sourceurl']) && $package['sourceurl'] != '') {
|
37 |
|
|
|
|
|
38 |
if (!isset($package['url_protect']) || $package['url_protect'] == 0 && strpos($package['sourceurl'], '://')) {
|
39 |
header('location: ' . $package['sourceurl']);
|
40 |
die();
|
@@ -91,7 +90,7 @@ if ($fileCount > 1 && !$idvdl) {
|
|
91 |
$zip->close();
|
92 |
update_post_meta($package['ID'], "__wpdm_zipped_file", $zipped);
|
93 |
}
|
94 |
-
|
95 |
wpdm_download_file($zipped, sanitize_file_name($package['post_title']) . '.zip', $speed, 1, $package);
|
96 |
//@unlink($zipped);
|
97 |
} else {
|
@@ -106,28 +105,18 @@ if ($fileCount > 1 && !$idvdl) {
|
|
106 |
//URL Download
|
107 |
if ($indfile != '' && strpos($indfile, '://')) {
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
} else {
|
114 |
-
$indfile = trim($indfile);
|
115 |
-
$r_filename = wpdm_basename($indfile);
|
116 |
-
$r_filename = explode("?", $r_filename);
|
117 |
-
$r_filename = $r_filename[0];
|
118 |
-
wpdm_download_file($indfile, $r_filename, $speed, 1, $package);
|
119 |
-
|
120 |
-
}
|
121 |
-
|
122 |
die();
|
123 |
}
|
124 |
-
|
125 |
if (file_exists(UPLOAD_DIR . $indfile))
|
126 |
$filepath = UPLOAD_DIR . $indfile;
|
127 |
else if (file_exists($indfile))
|
128 |
$filepath = $indfile;
|
129 |
-
else if (file_exists(WP_CONTENT_DIR . end($tmp
|
130 |
-
$filepath = WP_CONTENT_DIR . end($tmp
|
131 |
else {
|
132 |
do_action("wpdm_file_not_found", $package);
|
133 |
wpdm_download_data('file-not-found.txt', 'File not found or deleted from server');
|
@@ -139,7 +128,7 @@ if ($fileCount > 1 && !$idvdl) {
|
|
139 |
|
140 |
$filename = wpdm_basename($filepath);
|
141 |
$filename = preg_replace("/([0-9]+)[wpdm]+_/", "", $filename);
|
142 |
-
|
143 |
wpdm_download_file($filepath, $filename, $speed, 1, $package);
|
144 |
//@unlink($filepath);
|
145 |
|
25 |
$files = \WPDM\Package::getFiles($package['ID']);
|
26 |
$fileCount = count($files);
|
27 |
|
|
|
28 |
$oid = isset($_GET['oid']) ? esc_attr($_GET['oid']) : '';
|
29 |
$indsc = 1;
|
30 |
$indsc = isset($_GET['ind']) && get_option('__wpdm_ind_stats') == 0 ? 0 : 1;
|
|
|
|
|
31 |
|
32 |
if ($fileCount == 0 || trim($files[0]) == '') {
|
33 |
if (isset($package['sourceurl']) && $package['sourceurl'] != '') {
|
34 |
|
35 |
+
WPDM()->downloadHistory->add($package['ID'], '', wpdm_query_var('oid'));
|
36 |
+
|
37 |
if (!isset($package['url_protect']) || $package['url_protect'] == 0 && strpos($package['sourceurl'], '://')) {
|
38 |
header('location: ' . $package['sourceurl']);
|
39 |
die();
|
90 |
$zip->close();
|
91 |
update_post_meta($package['ID'], "__wpdm_zipped_file", $zipped);
|
92 |
}
|
93 |
+
WPDM()->downloadHistory->add($package['ID'], '', wpdm_query_var('oid'));
|
94 |
wpdm_download_file($zipped, sanitize_file_name($package['post_title']) . '.zip', $speed, 1, $package);
|
95 |
//@unlink($zipped);
|
96 |
} else {
|
105 |
//URL Download
|
106 |
if ($indfile != '' && strpos($indfile, '://')) {
|
107 |
|
108 |
+
$indfile = wpdm_escs(htmlspecialchars_decode($indfile));
|
109 |
+
WPDM()->downloadHistory->add($package['ID'], $indfile, wpdm_query_var('oid'));
|
110 |
+
header('location: ' . $indfile);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
die();
|
112 |
}
|
113 |
+
$tmp = explode("wp-content", $indfile);
|
114 |
if (file_exists(UPLOAD_DIR . $indfile))
|
115 |
$filepath = UPLOAD_DIR . $indfile;
|
116 |
else if (file_exists($indfile))
|
117 |
$filepath = $indfile;
|
118 |
+
else if (file_exists(WP_CONTENT_DIR . end($tmp))) //path fix on site move
|
119 |
+
$filepath = WP_CONTENT_DIR . end($tmp);
|
120 |
else {
|
121 |
do_action("wpdm_file_not_found", $package);
|
122 |
wpdm_download_data('file-not-found.txt', 'File not found or deleted from server');
|
128 |
|
129 |
$filename = wpdm_basename($filepath);
|
130 |
$filename = preg_replace("/([0-9]+)[wpdm]+_/", "", $filename);
|
131 |
+
WPDM()->downloadHistory->add($package['ID'], $filepath, wpdm_query_var('oid'));
|
132 |
wpdm_download_file($filepath, $filename, $speed, 1, $package);
|
133 |
//@unlink($filepath);
|
134 |
|