WordPress Download Manager - Version 3.1.22

Version Description

  • 2021.04.22 =
  • Fixed settings save issue with plugin update settings
Download this release

Release Info

Developer codename065
Plugin Icon 128x128 WordPress Download Manager
Version 3.1.22
Comparing to
See all releases

Code changes from version 3.1.18 to 3.1.22

admin/menus/class.Packages.php CHANGED
@@ -86,7 +86,7 @@ class Packages
86
  $ext = explode('.', $name);
87
  $ext = end($ext);
88
  $ext = strtolower($ext);
89
- if(in_array($ext, array('php', 'js', 'html', 'py', 'pl', 'htaccess', 'svg', 'shtml', 'html5'))) die('-3');
90
 
91
  if(file_exists(UPLOAD_DIR.$name) && get_option('__wpdm_overwrrite_file',0) == 1){
92
  @unlink(UPLOAD_DIR.$name);
@@ -100,6 +100,9 @@ class Packages
100
 
101
  if(get_option('__wpdm_sanitize_filename', 0) == 1)
102
  $filename = sanitize_file_name($filename);
 
 
 
103
 
104
  if(isset($_REQUEST["chunks"])) $this->chunkUploadFile(UPLOAD_DIR.$filename);
105
  else {
86
  $ext = explode('.', $name);
87
  $ext = end($ext);
88
  $ext = strtolower($ext);
89
+ if(!in_array($ext, wpdm_get_allowed_file_types())) die('-3');
90
 
91
  if(file_exists(UPLOAD_DIR.$name) && get_option('__wpdm_overwrrite_file',0) == 1){
92
  @unlink(UPLOAD_DIR.$name);
100
 
101
  if(get_option('__wpdm_sanitize_filename', 0) == 1)
102
  $filename = sanitize_file_name($filename);
103
+ else {
104
+ $filename = str_replace(["/", "\\"], "_", $filename);
105
+ }
106
 
107
  if(isset($_REQUEST["chunks"])) $this->chunkUploadFile(UPLOAD_DIR.$filename);
108
  else {
admin/menus/class.Settings.php CHANGED
@@ -20,11 +20,19 @@ class Settings
20
 
21
  }
22
 
 
 
 
 
 
 
 
 
23
 
24
  function loadSettingsPage()
25
  {
26
  global $stabs;
27
- //$stabs['plugin-update']['callback'] = array($this, 'pluginUpdate');
28
  if (current_user_can(WPDM_MENU_ACCESS_CAP)) {
29
  $section = sanitize_text_field($_POST['section']);
30
  call_user_func($stabs[$section]['callback']);
@@ -270,7 +278,7 @@ class Settings
270
  }
271
 
272
  function pluginUpdate(){
273
- if(isset($_REQUEST['logout']) && $_REQUEST['logout'] == 1){
274
  delete_option('__wpdm_suname');
275
  delete_option('__wpdm_supass');
276
  delete_option('__wpdm_purchased_items');
@@ -280,25 +288,28 @@ class Settings
280
  Session::clear('__wpdm_download_url');
281
  die('<script>location.href="edit.php?post_type=wpdmpro&page=settings&tab=plugin-update";</script>Refreshing...');
282
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
 
284
- if(isset($_POST['__wpdm_suname']) && $_POST['__wpdm_suname'] != ''){
285
- update_option('__wpdm_suname',$_POST['__wpdm_suname']);
286
- update_option('__wpdm_supass',$_POST['__wpdm_supass']);
287
- delete_option('__wpdm_purchased_items');
288
- delete_option('__wpdm_freeaddons');
289
- delete_option('__wpdm_core_update_check');
290
- delete_option('__wpdm_access_token');
291
- Session::clear('__wpdm_download_url');
292
- $access_token = wpdm_access_token();
293
- if($access_token != '') {
294
- $purchased_items = wpdm_remote_get('https://www.wpdownloadmanager.com/?wpdmppaction=getpurchaseditems&wpdm_access_token=' . $access_token);
295
- $ret = json_decode($purchased_items);
296
- update_option('__wpdm_purchased_items', $purchased_items);
297
- die('<script>location.href=location.href;</script>Login successful. Refreshing...');
298
- } else{
299
- die('Error: Invalid Login!');
300
  }
301
-
302
  }
303
 
304
  if(get_option('__wpdm_suname') != '') {
@@ -322,12 +333,10 @@ class Settings
322
 
323
  function Privacy(){
324
  if (wpdm_query_var('task') == 'wdm_save_settings' && wpdm_query_var('section') == 'privacy') {
325
- foreach ($_POST as $key => $value){
326
- if(strstr($key, '_wpdm_')){
327
- $value = wpdm_sanitize_array($value);
328
- update_option($key, $value);
329
- }
330
- }
331
  _e("Privacy Settings Saved Successfully", "download-manager");
332
  die();
333
  }
20
 
21
  }
22
 
23
+ function checkSaveSettingsAuth(){
24
+ if(wpdm_query_var('task') === 'wdm_save_settings') {
25
+ check_ajax_referer(NONCE_KEY, '__wpdms_nonce');
26
+ if(!wp_verify_nonce($_POST['__wpdms_nonce'], NONCE_KEY)) die(__('Security token is expired! Refresh the page and try again.', 'download-manager'));
27
+ if(!current_user_can('manage_options')) die(__( "You are not allowed to change settings!", "download-manager" ));
28
+ }
29
+ }
30
+
31
 
32
  function loadSettingsPage()
33
  {
34
  global $stabs;
35
+ $this->checkSaveSettingsAuth();
36
  if (current_user_can(WPDM_MENU_ACCESS_CAP)) {
37
  $section = sanitize_text_field($_POST['section']);
38
  call_user_func($stabs[$section]['callback']);
278
  }
279
 
280
  function pluginUpdate(){
281
+ if(isset($_REQUEST['__lononce']) && wp_verify_nonce($_REQUEST['__lononce'], NONCE_KEY)){
282
  delete_option('__wpdm_suname');
283
  delete_option('__wpdm_supass');
284
  delete_option('__wpdm_purchased_items');
288
  Session::clear('__wpdm_download_url');
289
  die('<script>location.href="edit.php?post_type=wpdmpro&page=settings&tab=plugin-update";</script>Refreshing...');
290
  }
291
+ if (wpdm_query_var('task') == 'wdm_save_settings' && wpdm_query_var('section') == 'plugin-update') {
292
+ if (isset($_POST['__wpdm_suname']) && $_POST['__wpdm_suname'] != '') {
293
+ update_option('__wpdm_suname', $_POST['__wpdm_suname']);
294
+ update_option('__wpdm_supass', $_POST['__wpdm_supass']);
295
+ delete_option('__wpdm_purchased_items');
296
+ delete_option('__wpdm_freeaddons');
297
+ delete_option('__wpdm_core_update_check');
298
+ delete_option('__wpdm_access_token');
299
+ Session::clear('__wpdm_download_url');
300
+ $access_token = wpdm_access_token();
301
+ if ($access_token != '') {
302
+ $purchased_items = wpdm_remote_get('https://www.wpdownloadmanager.com/?wpdmppaction=getpurchaseditems&wpdm_access_token=' . $access_token);
303
+ $ret = json_decode($purchased_items);
304
+ update_option('__wpdm_purchased_items', $purchased_items);
305
+ die('<script>location.href=location.href;</script>Login successful. Refreshing...');
306
+ } else {
307
+ die('Error: Invalid Login!');
308
+ }
309
 
310
+ } else {
311
+ die("Nothing to save!");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
  }
 
313
  }
314
 
315
  if(get_option('__wpdm_suname') != '') {
333
 
334
  function Privacy(){
335
  if (wpdm_query_var('task') == 'wdm_save_settings' && wpdm_query_var('section') == 'privacy') {
336
+ update_option('__wpdm_noip', wpdm_query_var('__wpdm_noip', 'int', 0));
337
+ update_option('__wpdm_delstats_on_udel', wpdm_query_var('__wpdm_delstats_on_udel', 'int', 0));
338
+ update_option('__wpdm_checkout_privacy', wpdm_query_var('__wpdm_checkout_privacy', 'int', 0));
339
+ update_option('__wpdm_checkout_privacy_label', wpdm_query_var('__wpdm_checkout_privacy_label', 'txt'));
 
 
340
  _e("Privacy Settings Saved Successfully", "download-manager");
341
  die();
342
  }
admin/tpls/metaboxes/attach-file.php CHANGED
@@ -65,7 +65,7 @@
65
  'url' => admin_url('admin-ajax.php'),
66
  'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
67
  'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
68
- 'filters' => array(array('title' => __('Allowed Files'), 'extensions' => '*')),
69
  'multipart' => true,
70
  'urlstream_upload' => true,
71
  // additional post data to send to our ajax hook
@@ -235,7 +235,7 @@ jQuery(function($){
235
  $('body').on('click', '#attachsf', function (e) {
236
  e.preventDefault();
237
  hide_asset_picker_frame();
238
- $(window.parent.document.body).append("<iframe id='wpdm-asset-picker' style='left:0;top:0;width: 100%;height: 100%;z-index: 999999999;position: fixed;background: rgba(255,255,255,0.4) url('<?php echo home_url('/wp-content/plugins/download-manager/assets/images/loader.svg') ?>') center center no-repeat;background-size: 100px 100px;border: 0;' src='<?php echo admin_url('/?assetpicker=1'); ?>'></iframe>");
239
 
240
  });
241
  });
65
  'url' => admin_url('admin-ajax.php'),
66
  'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
67
  'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
68
+ 'filters' => array(array('title' => __('Allowed Files'), 'extensions' => implode(",", wpdm_get_allowed_file_types()) )),
69
  'multipart' => true,
70
  'urlstream_upload' => true,
71
  // additional post data to send to our ajax hook
235
  $('body').on('click', '#attachsf', function (e) {
236
  e.preventDefault();
237
  hide_asset_picker_frame();
238
+ $(window.parent.document.body).append("<iframe id='wpdm-asset-picker' style='left:0;top:0;width: 100%;height: 100%;z-index: 999999999;position: fixed;background: rgba(255,255,255,0.4) url('<?php echo home_url('/wp-content/plugins/download-manager/assets/images/loader.svg') ?>') center center no-repeat;background-size: 100px 100px;border: 0;' src='<?php echo admin_url('/index.php?assetpicker=1'); ?>'></iframe>");
239
 
240
  });
241
  });
admin/tpls/settings/addon-update.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="panel panel-default">
2
  <div class="panel-heading">
3
- <div class="pull-right" style="margin-top: -1px"><a class="btn btn-xs btn-primary" href="edit.php?post_type=wpdmpro&page=settings&tab=plugin-update&newpurchase=1"><i class="fa fa-sync"></i> <?php _e( "Check For Updates" , "download-manager" ); ?></a> <a class="btn btn-warning btn-xs" href="edit.php?post_type=wpdmpro&page=settings&tab=plugin-update&logout=1"><?php _e( "Logout" , "download-manager" ); ?></a></div>
4
  <i class="fa fa-sync"></i> &nbsp; <?php _e( "Add-on Update" , "download-manager" ) ?></div>
5
  <div class="panel-body-x">
6
 
1
  <div class="panel panel-default">
2
  <div class="panel-heading">
3
+ <div class="pull-right" style="margin-top: -1px"><a class="btn btn-xs btn-primary" href="edit.php?post_type=wpdmpro&page=settings&tab=plugin-update&newpurchase=1"><i class="fa fa-sync"></i> <?php _e( "Check For Updates" , "download-manager" ); ?></a> <a class="btn btn-warning btn-xs" href="edit.php?post_type=wpdmpro&page=settings&tab=plugin-update&__lononce=<?=wp_create_nonce(NONCE_KEY); ?>"><?php _e( "Logout" , "download-manager" ); ?></a></div>
4
  <i class="fa fa-sync"></i> &nbsp; <?php _e( "Add-on Update" , "download-manager" ) ?></div>
5
  <div class="panel-body-x">
6
 
admin/tpls/settings/basic.php CHANGED
@@ -98,6 +98,17 @@
98
  <div class="panel panel-default">
99
  <div class="panel-heading"><?php echo __('Upload Settings','download-manager'); ?></div>
100
  <div class="panel-body">
 
 
 
 
 
 
 
 
 
 
 
101
  <div class="form-group">
102
  <input type="hidden" value="0" name="__wpdm_sanitize_filename" />
103
  <label><input style="margin: 0 10px 0 0" <?php checked(1, get_option('__wpdm_sanitize_filename',0)); ?> type="checkbox" value="1" name="__wpdm_sanitize_filename"><?php _e('Sanitize Filename','download-manager'); ?></label><br/>
98
  <div class="panel panel-default">
99
  <div class="panel-heading"><?php echo __('Upload Settings','download-manager'); ?></div>
100
  <div class="panel-body">
101
+ <div class="form-group">
102
+ <label><?php _e('Allowed file types to upload','download-manager'); ?></label><br/>
103
+ <?php
104
+ $allowed_file_types = get_option("__wpdm_allowed_file_types", '');
105
+ ?>
106
+ <input type="text" class="form-control" value="<?=$allowed_file_types; ?>" placeholder="<?=esc_attr__( 'Keep empty to use wordpress defaults', 'download-manager' ); ?>" name="__wpdm_allowed_file_types" />
107
+ <em><?php _e('Enter the file extensions you want to allow to upload through WPDM ( ex: png,jpg,pdf )','download-manager'); ?></em>
108
+ <br/>
109
+
110
+ </div>
111
+ <hr/>
112
  <div class="form-group">
113
  <input type="hidden" value="0" name="__wpdm_sanitize_filename" />
114
  <label><input style="margin: 0 10px 0 0" <?php checked(1, get_option('__wpdm_sanitize_filename',0)); ?> type="checkbox" value="1" name="__wpdm_sanitize_filename"><?php _e('Sanitize Filename','download-manager'); ?></label><br/>
assets/js/front.js CHANGED
@@ -386,7 +386,10 @@ jQuery(function ($) {
386
 
387
  $body.on('click', '.wpdm-download-link.download-on-click', function (e) {
388
  e.preventDefault();
389
- window.location.href = $(this).data('downloadurl');
 
 
 
390
  });
391
 
392
  $body.on('click', '.__wpdm_playvideo', function (e) {
386
 
387
  $body.on('click', '.wpdm-download-link.download-on-click', function (e) {
388
  e.preventDefault();
389
+ if(this.target === '_blank')
390
+ window.open($(this).data('downloadurl'));
391
+ else
392
+ window.location.href = $(this).data('downloadurl');
393
  });
394
 
395
  $body.on('click', '.__wpdm_playvideo', function (e) {
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.18
8
  Author URI: https://www.wpdownloadmanager.com/
9
  Text Domain: download-manager
10
  Domain Path: /languages
@@ -108,7 +108,7 @@ class WordPressDownloadManager{
108
 
109
  function __construct(){
110
 
111
- define('WPDM_Version','3.1.18');
112
 
113
  register_activation_hook(__FILE__, array($this, 'Install'));
114
 
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.22
8
  Author URI: https://www.wpdownloadmanager.com/
9
  Text Domain: download-manager
10
  Domain Path: /languages
108
 
109
  function __construct(){
110
 
111
+ define('WPDM_Version','3.1.22');
112
 
113
  register_activation_hook(__FILE__, array($this, 'Install'));
114
 
languages/download-manager-es_ES.mo CHANGED
Binary file
languages/download-manager-es_ES.po CHANGED
@@ -1,56 +1,56 @@
 
 
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"
8
  "Language: es\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
 
26
  #: admin/menus/class.Addons.php:23
27
  msgid "Add-Ons &lsaquo; Download Manager"
28
- msgstr "Complementos &lsaquo; Gestor de descargas"
29
 
30
  #: admin/menus/class.Addons.php:23
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:"
@@ -60,76 +60,80 @@ msgstr "Acceso:"
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
 
 
 
 
 
 
 
 
 
130
  #: admin/menus/class.Settings.php:19
131
  msgid "Settings &lsaquo; Download Manager"
132
- msgstr "Configuraciones &lsaquo; Gestor de descargas"
133
 
134
  #: admin/menus/class.Settings.php:19
135
  msgid "Settings"
@@ -140,199 +144,164 @@ msgstr "Ajustes"
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
 
150
  #: admin/menus/class.Stats.php:25
151
  msgid "History &lsaquo; Download Manager"
152
- msgstr "Historial &lsaquo; Gestor de descargas"
153
 
154
  #: admin/menus/class.Stats.php:25
155
  msgid "History"
156
  msgstr "Historial"
157
 
158
  #: admin/menus/class.Templates.php:21
159
- #, fuzzy
160
- #| msgid "Settings &lsaquo; Download Manager"
161
  msgid "Templates &lsaquo; Download Manager"
162
- msgstr "Configuraciones &lsaquo; Gestor de descargas"
163
 
164
  #: admin/menus/class.Templates.php:21 admin/tpls/email-template-editor.php:9
165
  #: admin/tpls/templates.php:7
166
- #, fuzzy
167
- #| msgid "Page Template:"
168
  msgid "Templates"
169
- msgstr "Plantilla de página:"
170
 
171
  #: admin/menus/class.Templates.php:142
172
  msgid ""
173
  "No package found! Please create at least 1 package to see template preview"
174
  msgstr ""
 
 
175
 
176
  #: admin/tpls/addons-list.php:226
177
  msgid "WPDM Add-Ons"
178
- msgstr "Complementos WPDM"
179
 
180
  #: admin/tpls/addons-list.php:307
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:"
214
  msgid "Link Templates"
215
- msgstr "Plantilla de enlace:"
216
 
217
  #: admin/tpls/email-template-editor.php:15 admin/tpls/templates.php:13
218
- #, fuzzy
219
- #| msgid "Page Template:"
220
  msgid "Page Templates"
221
- msgstr "Plantilla de página:"
222
 
223
  #: admin/tpls/email-template-editor.php:16 admin/tpls/templates.php:14
224
- #, fuzzy
225
- #| msgid "General Email Template"
226
  msgid "Email Templates"
227
- msgstr "Plantilla general de correo electrónico"
228
 
229
  #: admin/tpls/email-template-editor.php:17
230
- #, fuzzy
231
- #| msgid "General Email Template"
232
  msgid "Email Template Editor"
233
- msgstr "Plantilla general de correo electrónico"
234
 
235
  #: admin/tpls/email-template-editor.php:29
236
  #, php-format
237
  msgid "To: %s"
238
- msgstr ""
239
 
240
  #: admin/tpls/email-template-editor.php:31
241
  #, php-format
242
  msgid "Editing: %s"
243
- msgstr ""
244
 
245
  #: admin/tpls/email-template-editor.php:42
246
  msgid "Email Subject"
247
- msgstr ""
248
 
249
  #: admin/tpls/email-template-editor.php:44
250
- #, fuzzy
251
- #| msgid "Messages"
252
  msgid "Message"
253
- msgstr "Mensajes"
254
 
255
  #: admin/tpls/email-template-editor.php:45
256
- #, fuzzy
257
- #| msgid "view"
258
  msgid "Preview"
259
- msgstr "ver"
260
 
261
  #: admin/tpls/email-template-editor.php:63
262
  #: admin/tpls/email-template-editor.php:64
263
  msgid "Recipient's Email"
264
- msgstr ""
265
 
266
  #: admin/tpls/email-template-editor.php:75
267
- #, fuzzy
268
- #| msgid "Product Name"
269
  msgid "From Name"
270
- msgstr "nombre del producto"
271
 
272
  #: admin/tpls/email-template-editor.php:82
273
- #, fuzzy
274
- #| msgid "E-mail"
275
  msgid "From Email"
276
- msgstr "Email"
277
 
278
  #: admin/tpls/email-template-editor.php:119
279
- #, fuzzy
280
- #| msgid ": Update Available"
281
  msgid "Template Variables"
282
- msgstr ": Actualización disponible"
283
 
284
  #: admin/tpls/email-template-editor.php:203
285
- #, fuzzy
286
- #| msgid "Page Template:"
287
  msgid "Invalid template ID!"
288
- msgstr "Plantilla de página:"
289
 
290
  #: admin/tpls/emails-template.php:15
291
  msgid "Subscribers"
292
- msgstr ""
293
 
294
  #: admin/tpls/emails-template.php:16
295
  msgid "Export All"
296
- msgstr ""
297
 
298
  #: admin/tpls/emails-template.php:17
299
  msgid "Export Unique Emails"
300
- msgstr ""
301
 
302
  #: admin/tpls/emails-template.php:22
303
- #, fuzzy
304
- #| msgid "E-mail"
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!"
@@ -341,7 +310,7 @@ msgstr "¡Acceso no autorizado!"
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?"
@@ -352,20 +321,16 @@ msgid ""
352
  "<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
353
  "circle\"></i> Removed!</div></div>"
354
  msgstr ""
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"
@@ -375,22 +340,20 @@ msgstr "URL del icono"
375
  msgid ""
376
  "You can use one or more of following methods to lock your package download:"
377
  msgstr ""
378
- "Puede usar uno o más de los siguientes métodos para bloquear la descarga de "
379
- "su paquete:"
380
 
381
  #: admin/tpls/metaboxes/lock-options.php:8
382
  msgid "Must Agree with Terms"
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:"
@@ -398,15 +361,15 @@ 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:"
@@ -417,21 +380,21 @@ msgid ""
417
  "If you want to use multiple passwords, keep each one inside [], like [123]"
418
  "[456][789]"
419
  msgstr ""
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."
435
 
436
  #: admin/tpls/metaboxes/package-settings.php:7
437
  msgid "Lock Options"
@@ -447,7 +410,7 @@ 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
@@ -458,9 +421,9 @@ msgstr "Etiqueta de enlace:"
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
@@ -474,23 +437,23 @@ msgstr "Descargar"
474
 
475
  #: admin/tpls/metaboxes/package-settings.php:33
476
  msgid "File&nbsp;Size:"
477
- msgstr "Tamaño&nbsp;Archivo:"
478
 
479
  #: admin/tpls/metaboxes/package-settings.php:39
480
  msgid "Stock&nbsp;Limit:"
481
- msgstr "Limite&nbsp;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&nbsp;Count:"
489
- msgstr "Contador&nbsp;Visualizaciones:"
490
 
491
  #: admin/tpls/metaboxes/package-settings.php:51
492
  msgid "Download&nbsp;Count:"
493
- msgstr "Contador&nbsp;Descargas:"
494
 
495
  #: admin/tpls/metaboxes/package-settings.php:57
496
  msgid "Allow Access:"
@@ -498,7 +461,7 @@ 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:"
@@ -506,69 +469,69 @@ 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
 
519
  #: admin/tpls/settings.php:10 admin/tpls/settings.php:37
520
  msgid "Save Settings"
521
- msgstr "Guardar ajustes"
522
 
523
  #: admin/tpls/settings.php:10
524
  msgid "Download Manager Settings"
525
- msgstr "Descargar la configuración del administrador"
526
 
527
  #: admin/tpls/settings/addon-update.php:3
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
 
537
  #: admin/tpls/settings/addon-update.php:4
538
  msgid "Add-on Update"
539
- msgstr "Actualización del complemento"
540
 
541
  #: admin/tpls/settings/addon-update.php:14
542
  #, php-format
543
  msgid "Enter your %s login info"
544
- msgstr "Ingrese su información de inicio de sesión de% s"
545
 
546
  #: admin/tpls/settings/addon-update.php:33
547
  msgid "Click Save Settings Button To Login"
548
- msgstr ""
549
 
550
  #: admin/tpls/settings/addon-update.php:50
551
  msgid "Purchased Add-ons"
552
- msgstr "Complementos comprados"
553
 
554
  #: admin/tpls/settings/addon-update.php:51
555
  msgid "Free Add-ons"
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
@@ -587,18 +550,18 @@ 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
 
603
  #: admin/tpls/settings/basic.php:29
604
  msgid "Messages"
@@ -606,11 +569,11 @@ msgstr "Mensajes"
606
 
607
  #: admin/tpls/settings/basic.php:34
608
  msgid "Permission Denied Message for Packages:"
609
- msgstr "Mensaje de permiso denegado para paquetes:"
610
 
611
  #: admin/tpls/settings/basic.php:43
612
  msgid "Login Required Message:"
613
- msgstr "Mensaje requerido para ingresar"
614
 
615
  #: admin/tpls/settings/basic.php:51
616
  msgid "Server File Browser"
@@ -618,63 +581,63 @@ msgstr "Explorador de archivos del servidor"
618
 
619
  #: admin/tpls/settings/basic.php:55
620
  msgid "Server File Browser Base Dir:"
621
- msgstr "Base del navegador de archivos del servidor Dir:"
622
 
623
  #: admin/tpls/settings/basic.php:59
624
  msgid "Reset Base Dir"
625
- msgstr "Restablecer Base Dir"
626
 
627
  #: admin/tpls/settings/basic.php:65
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"
647
  msgstr ""
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"
659
  msgstr ""
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"
@@ -686,26 +649,26 @@ msgid ""
686
  "or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
687
  "2620:112:3000::/44 )"
688
  msgstr ""
689
- "Enumere las direcciones IP a la lista negra. Una IP por línea (Ej .: IPv4 - "
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"
705
  msgstr ""
706
- "Si obtiene una descarga interrumpida, intente habilitar / deshabilitar las "
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"
@@ -713,11 +676,11 @@ 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"
@@ -732,20 +695,16 @@ msgid ""
732
  "Try to Open in Browser instead of download when someone clicks on download "
733
  "link"
734
  msgstr ""
735
- "Intente abrir en el navegador en lugar de descargarlo cuando alguien haga "
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 ""
@@ -753,57 +712,60 @@ msgid ""
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>"
769
  msgstr ""
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
@@ -811,6 +773,8 @@ 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"
@@ -818,19 +782,19 @@ 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
@@ -838,70 +802,61 @@ msgid ""
838
  "Check this option if you want to show wpdm packages in your main <a target="
839
  "\"_blank\" href=\"%s\">RSS Feed</a>"
840
  msgstr ""
841
- "Marque esta opción si desea mostrar los paquetes wpdm en su <a target="
842
- "\"_blank\" href=\"%s\"> fuente RSS </a> principal"
843
 
844
  #: admin/tpls/settings/privacy.php:9
845
- #, fuzzy
846
- #| msgid "Misc Settings"
847
  msgid "Privacy Settings"
848
- msgstr "Configuraciones Misc"
849
 
850
  #: admin/tpls/settings/privacy.php:13
851
  msgid "Do not store visitor's IP"
852
- msgstr ""
853
 
854
  #: admin/tpls/settings/privacy.php:14
855
- #, fuzzy
856
- #| msgid ""
857
- #| "Check the option if you want to sanitize uploaded file names to remove "
858
- #| "illegal chars"
859
  msgid "Check this option if you do not want to store visitors IPs"
860
- msgstr ""
861
- "Marque la opción si desea limpiar los nombres de los archivos cargados para "
862
- "eliminar caracteres ilegales"
863
 
864
  #: admin/tpls/settings/privacy.php:19
865
  msgid "Delete download history when users close accounts"
866
  msgstr ""
 
867
 
868
  #: admin/tpls/settings/privacy.php:20
869
  msgid ""
870
  "If any user is deleted or close his/her own account, delete their download "
871
  "history too"
872
  msgstr ""
 
 
873
 
874
  #: admin/tpls/settings/privacy.php:35
875
  msgid "Cache & Stats"
876
- msgstr ""
877
 
878
  #: admin/tpls/settings/privacy.php:40
879
  msgid "Empty Cache Dir"
880
- msgstr ""
881
 
882
  #: admin/tpls/settings/privacy.php:41
883
  msgid "Delete All Stats Data"
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"
@@ -909,92 +864,83 @@ 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"
984
- msgstr "Página del tablero"
985
 
986
  #: admin/tpls/stats.php:6
987
  msgid "Clear History"
988
- msgstr "Borrar historia"
989
 
990
  #: admin/tpls/stats.php:7
991
  msgid "Export History"
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
 
999
  #: admin/tpls/stats.php:31
1000
  msgid "Are you sure? There is no going back!"
@@ -1002,41 +948,35 @@ msgstr "¿Estás seguro? ¡No hay vuelta atrás!"
1002
 
1003
  #: admin/tpls/stats.php:35
1004
  msgid "Clearing..."
1005
- msgstr "Limpiando..."
1006
 
1007
  #: admin/tpls/stats.php:38
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
@@ -1047,10 +987,8 @@ 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
@@ -1060,10 +998,8 @@ 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
@@ -1073,14 +1009,12 @@ 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
@@ -1088,6 +1022,8 @@ msgid ""
1088
  "Custom Template editor is available with <a target='_blank' "
1089
  "href='%s'>WordPress Download Manager Pro</a>"
1090
  msgstr ""
 
 
1091
 
1092
  #: admin/tpls/templates.php:20
1093
  #, php-format
@@ -1095,82 +1031,72 @@ 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
@@ -1180,7 +1106,7 @@ 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"
@@ -1188,15 +1114,15 @@ 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"
@@ -1204,7 +1130,7 @@ 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"
@@ -1212,11 +1138,11 @@ 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
@@ -1229,144 +1155,133 @@ 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."
1329
- msgstr ""
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 ""
1361
  "Download link is expired! Go back and Refresh the page to regenerate "
1362
  "download link"
1363
  msgstr ""
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
@@ -1385,7 +1300,7 @@ msgstr ""
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
@@ -1394,80 +1309,77 @@ msgstr ""
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
@@ -1475,7 +1387,7 @@ msgstr "Subcategorias"
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
@@ -1483,34 +1395,34 @@ msgstr "Título"
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"
@@ -1521,48 +1433,48 @@ 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
 
@@ -1578,78 +1490,70 @@ 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
@@ -1660,67 +1564,69 @@ msgstr "Icono"
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
@@ -1755,35 +1661,27 @@ msgstr "Siguiente"
1755
 
1756
  #: libs/class.ShortCodes.php:189
1757
  msgid "User registration is disabled"
1758
- msgstr "El registro de usuario está deshabilitado"
1759
 
1760
  #: libs/class.StreamMedia.php:34
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"
@@ -1791,46 +1689,38 @@ 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"
@@ -1838,15 +1728,15 @@ msgstr "Perfil"
1838
 
1839
  #: libs/class.UserDashboard.php:19
1840
  msgid "Edit Profile"
1841
- msgstr "Editar perfil"
1842
 
1843
  #: libs/class.UserDashboard.php:27
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!"
@@ -1854,36 +1744,32 @@ 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
 
1871
  #: modules/strings.php:14
1872
- #, fuzzy
1873
- #| msgid "Invalid File Type!"
1874
  msgid "File Type"
1875
- msgstr "¡Tipo de archivo invalido!"
1876
 
1877
  #: modules/strings.php:15
1878
- #, fuzzy
1879
- #| msgid "View Count"
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"
@@ -1891,213 +1777,177 @@ 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
@@ -2108,97 +1958,81 @@ msgstr "Cargando"
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"
@@ -2211,19 +2045,19 @@ 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"
@@ -2235,7 +2069,7 @@ 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"
@@ -2263,7 +2097,7 @@ 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"
@@ -2271,11 +2105,11 @@ 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"
@@ -2287,65 +2121,55 @@ 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:"
@@ -2356,36 +2180,32 @@ 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
@@ -2395,72 +2215,68 @@ msgstr "Recuérdame"
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:"
@@ -2483,7 +2299,7 @@ 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
@@ -2491,54 +2307,44 @@ 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"
@@ -2546,27 +2352,23 @@ 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"
@@ -2574,55 +2376,54 @@ 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"
@@ -2630,35 +2431,31 @@ 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"
2657
- msgstr "Subir"
2658
 
2659
  #: wpdm-start-download.php:6
2660
  msgid "Your IP address is blocked!"
2661
- msgstr "Su dirección IP está bloqueada!"
2662
 
2663
  #: wpdm-start-download.php:22
2664
  msgid "Package is not available!"
@@ -2666,70 +2463,82 @@ 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"
2724
- #~ msgstr "Restablecer solicitud"
2725
 
2726
- #~ msgid "Sign Up"
2727
- #~ msgstr "Regístrate"
 
 
 
 
 
2728
 
2729
- #~ msgid "Full Name"
2730
- #~ msgstr "Nombre completo"
2731
 
2732
- #, fuzzy
2733
- #~| msgid "Logging In..."
2734
- #~ msgid "Log In"
2735
- #~ msgstr "Iniciar sesión..."
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - WordPress Download Manager - Development (trunk) in Spanish (Spain)
2
+ # This file is distributed under the same license as the Plugins - WordPress Download Manager - Development (trunk) package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Plugins - WordPress Download Manager - Development "
6
+ "(trunk)\n"
7
+ "POT-Creation-Date: 2021-04-18 01:25+0600\n"
8
+ "PO-Revision-Date: 2021-04-18 01:25+0600\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
12
  "MIME-Version: 1.0\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-Basepath: ..\n"
18
+ "X-Poedit-KeywordsList: __;_e\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 "Ajustes de los paquetes"
25
 
26
  #: admin/class.WordPressDownloadManagerAdmin.php:172
27
  msgid "Attach File"
28
+ msgstr "Adjuntar un archivo"
29
 
30
  #: admin/menus/class.Addons.php:23
31
  msgid "Add-Ons &lsaquo; Download Manager"
32
+ msgstr "Extensiones &lsaquo; Download Manager"
33
 
34
  #: admin/menus/class.Addons.php:23
35
  msgid "Add-Ons"
36
+ msgstr "Extensiones"
37
 
38
  #: admin/menus/class.Categories.php:49 admin/menus/class.Categories.php:253
 
 
39
  msgid "Category Image:"
40
+ msgstr "Imagen de la categoría:"
41
 
42
  #: admin/menus/class.Categories.php:52 admin/menus/class.Categories.php:258
43
  msgid "Image URL"
44
  msgstr "URL de la imagen"
45
 
46
  #: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
 
 
47
  msgid "Select Category Image"
48
+ msgstr "Selecciona la imagen de la 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 "Explorar"
54
 
55
  #: admin/menus/class.Categories.php:117 admin/menus/class.Categories.php:323
56
  msgid "Access:"
60
  msgid ""
61
  "Select the roles who should have access to the packages under this category"
62
  msgstr ""
63
+ "Selecciona los perfiles que pueden tener acceso a los paquetes de 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:840
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
  msgid "Category Page Template"
74
+ msgstr "Plantilla de la página de categorías"
75
 
76
  #: admin/menus/class.Categories.php:141 admin/menus/class.Categories.php:371
77
  msgid "Use Global"
78
+ msgstr "Usar global"
79
 
80
  #: admin/menus/class.Categories.php:142 admin/menus/class.Categories.php:372
81
  msgid "Do Not Apply"
82
+ msgstr "No aplicar"
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 "Mantener la plantilla actual tal como la proporciona el tema activo"
87
 
88
  #: admin/menus/class.Categories.php:146 admin/menus/class.Categories.php:376
 
 
89
  msgid "Use Link Template"
90
+ msgstr "Usar plantilla del enlace"
91
 
92
  #: admin/menus/class.Categories.php:159 admin/menus/class.Categories.php:389
93
  #: widgets/class.CatPackages.php:91 widgets/class.ListPackages.php:126
94
  #: widgets/class.NewDownloads.php:60 widgets/class.TopDownloads.php:59
95
  msgid "Link Template:"
96
+ msgstr "Plantilla de enlaces:"
97
 
98
  #: admin/menus/class.Categories.php:165 admin/menus/class.Categories.php:395
 
 
99
  msgid "Items Per Page:"
100
+ msgstr "Elementos por página:"
101
 
102
  #: admin/menus/class.Categories.php:169 admin/menus/class.Categories.php:399
103
  msgid "Toolbar:"
104
+ msgstr "Barra de herramientas:"
105
 
106
  #: admin/menus/class.Categories.php:171 admin/menus/class.Categories.php:401
107
  msgid "Show"
108
+ msgstr "Mostrar"
109
 
110
  #: admin/menus/class.Categories.php:172 admin/menus/class.Categories.php:402
111
  msgid "Hide"
112
+ msgstr "Ocultar"
113
 
114
  #: admin/menus/class.Categories.php:178 admin/menus/class.Categories.php:408
 
 
115
  msgid "Number of Columns"
116
+ msgstr "Número de columnas"
117
+
118
+ #: admin/menus/class.Packages.php:208
119
+ msgid "Duplicate"
120
+ msgstr "Duplicar"
121
 
122
+ #: admin/menus/class.Packages.php:209
123
  msgid "Direct Download"
124
  msgstr "Descarga directa"
125
 
126
+ #: admin/menus/class.Packages.php:230
127
+ msgid "Embed Package"
128
+ msgstr "Paquete incrustado"
129
+
130
+ #: admin/menus/class.Packages.php:276
131
+ msgid "Close"
132
+ msgstr "Cerrar"
133
+
134
  #: admin/menus/class.Settings.php:19
135
  msgid "Settings &lsaquo; Download Manager"
136
+ msgstr "Ajustes &lsaquo; Download Manager"
137
 
138
  #: admin/menus/class.Settings.php:19
139
  msgid "Settings"
144
  #: admin/menus/class.Settings.php:260
145
  msgid "Security token is expired! Refresh the page and try again."
146
  msgstr ""
147
+ "¡El token de seguridad ha caducado! Recarga la página e inténtalo de nuevo."
 
148
 
149
  #: admin/menus/class.Settings.php:331
150
  msgid "Privacy Settings Saved Successfully"
151
+ msgstr "Ajustes de privacidad guardados correctamente"
152
 
153
  #: admin/menus/class.Stats.php:25
154
  msgid "History &lsaquo; Download Manager"
155
+ msgstr "Historial &lsaquo; Download Manager"
156
 
157
  #: admin/menus/class.Stats.php:25
158
  msgid "History"
159
  msgstr "Historial"
160
 
161
  #: admin/menus/class.Templates.php:21
 
 
162
  msgid "Templates &lsaquo; Download Manager"
163
+ msgstr "Plantillas &lsaquo; Gestor de descargas"
164
 
165
  #: admin/menus/class.Templates.php:21 admin/tpls/email-template-editor.php:9
166
  #: admin/tpls/templates.php:7
 
 
167
  msgid "Templates"
168
+ msgstr "Plantillas"
169
 
170
  #: admin/menus/class.Templates.php:142
171
  msgid ""
172
  "No package found! Please create at least 1 package to see template preview"
173
  msgstr ""
174
+ "¡No se ha encontrado ningún paquete! Por favor, crea al menos 1 paquete para "
175
+ "ver la vista previa de la plantilla"
176
 
177
  #: admin/tpls/addons-list.php:226
178
  msgid "WPDM Add-Ons"
179
+ msgstr "Extensiones de WPDM"
180
 
181
  #: admin/tpls/addons-list.php:307
182
  msgid "Failed to connect with server!"
183
+ msgstr "¡Ha fallado la conexión con el servidor!"
184
 
185
  #: admin/tpls/asset-manager-picker.php:9
186
  msgid "Asset Manager Picker"
187
+ msgstr "Selector del gestor de recursos"
188
 
189
  #: admin/tpls/asset-manager-picker.php:693
 
 
190
  msgid "Server File Picker"
191
+ msgstr "Selector del servidor de archivos"
192
 
193
  #: admin/tpls/asset-manager-picker.php:727
194
  #: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:186
195
+ #: admin/tpls/templates.php:347 tpls/asset-manager-ui.php:563
196
  #: tpls/user-dashboard/edit-profile.php:48 tpls/wpdm-edit-user-profile.php:64
197
  #: tpls3/asset-manager-ui.php:550 tpls3/user-dashboard/edit-profile.php:51
198
  #: tpls3/wpdm-edit-user-profile.php:51
 
 
199
  msgid "Save Changes"
200
+ msgstr "Guardar los cambios"
201
 
202
  #: admin/tpls/asset-manager-picker.php:753
 
 
203
  msgid "Attach selected file"
204
+ msgstr "Adjuntar el archivo seleccionado"
205
 
206
  #: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
 
 
207
  msgid "Link Templates"
208
+ msgstr "Plantilla de enlaces"
209
 
210
  #: admin/tpls/email-template-editor.php:15 admin/tpls/templates.php:13
 
 
211
  msgid "Page Templates"
212
+ msgstr "Plantillas de páginas"
213
 
214
  #: admin/tpls/email-template-editor.php:16 admin/tpls/templates.php:14
 
 
215
  msgid "Email Templates"
216
+ msgstr "Plantillas de correo electrónico"
217
 
218
  #: admin/tpls/email-template-editor.php:17
 
 
219
  msgid "Email Template Editor"
220
+ msgstr "Editor de plantillas de correo electrónico"
221
 
222
  #: admin/tpls/email-template-editor.php:29
223
  #, php-format
224
  msgid "To: %s"
225
+ msgstr "Para: %s"
226
 
227
  #: admin/tpls/email-template-editor.php:31
228
  #, php-format
229
  msgid "Editing: %s"
230
+ msgstr "Editando: %s"
231
 
232
  #: admin/tpls/email-template-editor.php:42
233
  msgid "Email Subject"
234
+ msgstr "Asunto del correo electrónico"
235
 
236
  #: admin/tpls/email-template-editor.php:44
 
 
237
  msgid "Message"
238
+ msgstr "Mensaje"
239
 
240
  #: admin/tpls/email-template-editor.php:45
 
 
241
  msgid "Preview"
242
+ msgstr "Vista previa"
243
 
244
  #: admin/tpls/email-template-editor.php:63
245
  #: admin/tpls/email-template-editor.php:64
246
  msgid "Recipient's Email"
247
+ msgstr "Correo electrónico del destinatario"
248
 
249
  #: admin/tpls/email-template-editor.php:75
 
 
250
  msgid "From Name"
251
+ msgstr "Nombre del remitente"
252
 
253
  #: admin/tpls/email-template-editor.php:82
 
 
254
  msgid "From Email"
255
+ msgstr "Correo electrónico del remitente"
256
 
257
  #: admin/tpls/email-template-editor.php:119
 
 
258
  msgid "Template Variables"
259
+ msgstr "Variables de plantilla"
260
 
261
  #: admin/tpls/email-template-editor.php:203
 
 
262
  msgid "Invalid template ID!"
263
+ msgstr "¡ID de plantilla no válido!"
264
 
265
  #: admin/tpls/emails-template.php:15
266
  msgid "Subscribers"
267
+ msgstr "Suscriptores"
268
 
269
  #: admin/tpls/emails-template.php:16
270
  msgid "Export All"
271
+ msgstr "Exportar todo"
272
 
273
  #: admin/tpls/emails-template.php:17
274
  msgid "Export Unique Emails"
275
+ msgstr "Exportar los correos electrónicos únicos"
276
 
277
  #: admin/tpls/emails-template.php:22
 
 
278
  msgid "Emails"
279
+ msgstr "Correos electrónicos"
280
 
281
  #: admin/tpls/emails-template.php:23 admin/tpls/templates.php:106
 
 
282
  msgid "Email Template"
283
+ msgstr "Plantilla de correo electrónico"
284
 
285
  #: admin/tpls/metaboxes/attach-file.php:7
286
  msgid "attached file is missing/deleted"
287
+ msgstr "archivo adjunto faltante/borrado"
288
 
289
  #: admin/tpls/metaboxes/attach-file.php:37
290
  msgid "No file uploaded yet!"
291
+ msgstr "¡No hay archivos subidos todavía!"
292
 
293
  #: admin/tpls/metaboxes/attach-file.php:46
 
 
294
  msgid "Drop file here"
295
+ msgstr "Suelta el archivo aquí"
296
 
297
+ #: admin/tpls/metaboxes/attach-file.php:68 tpls/asset-manager-ui.php:753
298
  #: tpls3/asset-manager-ui.php:738 wpdm-functions.php:1480
299
  msgid "Allowed Files"
300
  msgstr "Archivos permitidos"
301
 
302
  #: admin/tpls/metaboxes/attach-file.php:147
303
  msgid "Invalid File Type!"
304
+ msgstr "¡Tipo de archivo no válido!"
305
 
306
  #: admin/tpls/metaboxes/attach-file.php:149
307
  msgid "Unauthorized Access!"
310
  #: admin/tpls/metaboxes/attach-file.php:153
311
  #: admin/tpls/metaboxes/attach-file.php:252
312
  msgid "Delete Current File"
313
+ msgstr "Borrar el archivo actual"
314
 
315
  #: admin/tpls/metaboxes/attach-file.php:186 admin/tpls/templates.php:369
316
  msgid "Are you sure?"
321
  "<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
322
  "circle\"></i> Removed!</div></div>"
323
  msgstr ""
324
+ "<div class=\"w3eden\"><div class=\"text-danger\"><i class=\"fa fa-check-"
325
+ "circle\"></i> ¡Eliminado!</div></div>"
326
 
327
  #: admin/tpls/metaboxes/attach-file.php:200
 
 
328
  msgid "Select from media library"
329
+ msgstr "Seleccionar desde la biblioteca de medios"
330
 
331
  #: admin/tpls/metaboxes/attach-file.php:232
 
 
332
  msgid "Select from server"
333
+ msgstr "Seleccionar desde el servidor"
334
 
335
  #: admin/tpls/metaboxes/icons.php:5
336
  msgid "Icon URL"
340
  msgid ""
341
  "You can use one or more of following methods to lock your package download:"
342
  msgstr ""
343
+ "Puedes utilizar uno o más de los siguientes métodos para bloquear la "
344
+ "descarga de tu paquete:"
345
 
346
  #: admin/tpls/metaboxes/lock-options.php:8
347
  msgid "Must Agree with Terms"
348
+ msgstr "Debes aceptar los términos"
349
 
350
  #: admin/tpls/metaboxes/lock-options.php:11
 
 
351
  msgid "Terms Page:"
352
+ msgstr "Página de los términos:"
353
 
354
  #: admin/tpls/metaboxes/lock-options.php:12
355
  msgid "Use custom content below"
356
+ msgstr "A continuación usa contenido personalizado"
357
 
358
  #: admin/tpls/metaboxes/lock-options.php:15
359
  msgid "Terms Title:"
361
 
362
  #: admin/tpls/metaboxes/lock-options.php:19
363
  msgid "Terms and Conditions:"
364
+ msgstr "Términos y condiciones"
365
 
366
  #: admin/tpls/metaboxes/lock-options.php:24
367
  msgid "Terms Checkbox Label:"
368
+ msgstr "Etiqueta de la casilla de verificación de los términos:"
369
 
370
  #: admin/tpls/metaboxes/lock-options.php:33
371
  msgid "Enable Password Lock"
372
+ msgstr "Activar el bloqueo de contraseña"
373
 
374
  #: admin/tpls/metaboxes/lock-options.php:36
375
  msgid "Password:"
380
  "If you want to use multiple passwords, keep each one inside [], like [123]"
381
  "[456][789]"
382
  msgstr ""
383
+ "Si quieres usar varias contraseñas, mantén cada una dentro de «[ ]», como "
384
+ "[123][456][789]"
385
 
386
  #: admin/tpls/metaboxes/lock-options.php:48
387
  msgid "Enable Captcha Lock"
388
+ msgstr "Activar el bloqueo de captcha"
389
 
390
  #: admin/tpls/metaboxes/lock-options.php:51
391
  msgid "Please configure reCAPTCHA"
392
+ msgstr "Por favor, configura reCAPTCHA"
393
 
394
  #: admin/tpls/metaboxes/lock-options.php:52
395
  msgid "Users will be asked for reCAPTCHA verification before download."
396
  msgstr ""
397
+ "Se pedirá a los usuarios la verificación de reCAPTCHA antes de la descarga."
398
 
399
  #: admin/tpls/metaboxes/package-settings.php:7
400
  msgid "Lock Options"
410
 
411
  #: admin/tpls/metaboxes/package-settings.php:28
412
  msgid "Link Label:"
413
+ msgstr "Etiqueta del enlace:"
414
 
415
  #: admin/tpls/metaboxes/package-settings.php:29
416
  #: admin/tpls/settings/addon-update.php:61
421
  #: libs/class.FileList.php:138 libs/class.FileList.php:203
422
  #: libs/class.FileList.php:250 libs/class.FileList.php:305
423
  #: libs/class.Package.php:77 libs/class.Package.php:155
424
+ #: libs/class.Package.php:647 libs/class.Package.php:672
425
+ #: libs/class.Package.php:739 libs/class.Package.php:832
426
+ #: libs/class.Package.php:864 libs/class.Package.php:1309
427
  #: libs/class.PackageLocks.php:74 libs/class.PackageLocks.php:111
428
  #: tpls/lock-options-iframe.php:289 tpls/lock-options/password-lock.php:41
429
  #: tpls/lock-options/recaptcha-lock.php:24 tpls/wpdm-all-downloads.php:191
437
 
438
  #: admin/tpls/metaboxes/package-settings.php:33
439
  msgid "File&nbsp;Size:"
440
+ msgstr "Tamaño de archivo:"
441
 
442
  #: admin/tpls/metaboxes/package-settings.php:39
443
  msgid "Stock&nbsp;Limit:"
444
+ msgstr "Límite de inventario:"
445
 
446
  #: admin/tpls/metaboxes/package-settings.php:40
447
  msgid "Unlimited"
448
+ msgstr "Ilimitadas"
449
 
450
  #: admin/tpls/metaboxes/package-settings.php:46
451
  msgid "View&nbsp;Count:"
452
+ msgstr "Contador de visitas:"
453
 
454
  #: admin/tpls/metaboxes/package-settings.php:51
455
  msgid "Download&nbsp;Count:"
456
+ msgstr "Contador de descargas:"
457
 
458
  #: admin/tpls/metaboxes/package-settings.php:57
459
  msgid "Allow Access:"
461
 
462
  #: admin/tpls/metaboxes/package-settings.php:59
463
  msgid "Who should be able to download?"
464
+ msgstr "¿Quién puede descargar?"
465
 
466
  #: admin/tpls/metaboxes/package-settings.php:88
467
  msgid "Page Template:"
469
 
470
  #: admin/tpls/metaboxes/package-settings.php:99
471
  msgid "Master Key"
472
+ msgstr "Clave maestra"
473
 
474
  #: admin/tpls/metaboxes/package-settings.php:100
475
+ msgid "Regenerate Master Key"
476
+ msgstr "Regenerar la clave maestra"
477
 
478
  #: admin/tpls/metaboxes/package-settings.php:100
479
  msgid "This key can be used for direct download"
480
+ msgstr "Esta clave puede ser usada para descarga directa"
481
 
482
  #: admin/tpls/settings.php:10 admin/tpls/settings.php:37
483
  msgid "Save Settings"
484
+ msgstr "Guardar los ajustes"
485
 
486
  #: admin/tpls/settings.php:10
487
  msgid "Download Manager Settings"
488
+ msgstr "Ajustes de Download Manager"
489
 
490
  #: admin/tpls/settings/addon-update.php:3
491
  msgid "Check For Updates"
492
+ msgstr "Comprobar si hay actualizaciones"
493
 
494
  #: admin/tpls/settings/addon-update.php:3 tpls/already-logged-in.php:23
495
  #: tpls/wpdm-dashboard.php:30 tpls3/already-logged-in.php:23
496
  #: tpls3/wpdm-dashboard.php:28
497
  msgid "Logout"
498
+ msgstr "Salir"
499
 
500
  #: admin/tpls/settings/addon-update.php:4
501
  msgid "Add-on Update"
502
+ msgstr "Actualización de la extensión"
503
 
504
  #: admin/tpls/settings/addon-update.php:14
505
  #, php-format
506
  msgid "Enter your %s login info"
507
+ msgstr "Introduce tu información de acceso a %s"
508
 
509
  #: admin/tpls/settings/addon-update.php:33
510
  msgid "Click Save Settings Button To Login"
511
+ msgstr "Haz clic en el botón de guardar ajustes para acceder"
512
 
513
  #: admin/tpls/settings/addon-update.php:50
514
  msgid "Purchased Add-ons"
515
+ msgstr "Extensiones compradas"
516
 
517
  #: admin/tpls/settings/addon-update.php:51
518
  msgid "Free Add-ons"
519
+ msgstr "Extensiones gratuitas"
520
 
521
  #: admin/tpls/settings/addon-update.php:58
522
  #: admin/tpls/settings/addon-update.php:104
523
  msgid "Product Name"
524
+ msgstr "Nombre del producto"
525
 
526
  #: admin/tpls/settings/addon-update.php:59
527
  #: admin/tpls/settings/addon-update.php:105
528
  msgid "Active(v)"
529
+ msgstr "Activo(v)"
530
 
531
  #: admin/tpls/settings/addon-update.php:60
532
  #: admin/tpls/settings/addon-update.php:106
533
  msgid "Latest(v)"
534
+ msgstr "Último(v)"
535
 
536
  #: admin/tpls/settings/addon-update.php:86
537
  #: admin/tpls/settings/addon-update.php:127
550
 
551
  #: admin/tpls/settings/addon-update.php:91
552
  msgid "Expired"
553
+ msgstr "Caducado"
554
 
555
  #: admin/tpls/settings/addon-update.php:145 tpls/lost-password-form.php:59
556
+ #: tpls/reset-password-form.php:49 tpls/wpdm-reg-form.php:103
557
+ #: tpls3/lost-password-form.php:41 tpls3/reset-password-form.php:49
558
  #: tpls3/wpdm-reg-form.php:106
559
  msgid "Please Wait..."
560
+ msgstr "Por favor, espera..."
561
 
562
  #: admin/tpls/settings/addon-update.php:147
563
  msgid "Success!"
564
+ msgstr "¡Correcto!"
565
 
566
  #: admin/tpls/settings/basic.php:29
567
  msgid "Messages"
569
 
570
  #: admin/tpls/settings/basic.php:34
571
  msgid "Permission Denied Message for Packages:"
572
+ msgstr "Mensaje de permiso denegado para los paquetes:"
573
 
574
  #: admin/tpls/settings/basic.php:43
575
  msgid "Login Required Message:"
576
+ msgstr "Mensaje de acceso obligatorio:"
577
 
578
  #: admin/tpls/settings/basic.php:51
579
  msgid "Server File Browser"
581
 
582
  #: admin/tpls/settings/basic.php:55
583
  msgid "Server File Browser Base Dir:"
584
+ msgstr "Directorio base del explorador de archivos del servidor:"
585
 
586
  #: admin/tpls/settings/basic.php:59
587
  msgid "Reset Base Dir"
588
+ msgstr "Restablecer el directorio base"
589
 
590
  #: admin/tpls/settings/basic.php:65
591
  msgid "File Browser Access:"
592
+ msgstr "Acceso al explorador de archivos:"
593
 
594
  #: admin/tpls/settings/basic.php:67
595
  msgid "Who will have access to server file browser"
596
+ msgstr "¿Quién tendrá acceso al explorador de archivos del servidor?"
597
 
598
  #: admin/tpls/settings/basic.php:99
599
  msgid "Upload Settings"
600
+ msgstr "Ajustes de subidas"
601
 
602
  #: admin/tpls/settings/basic.php:103
603
  msgid "Sanitize Filename"
604
+ msgstr "Sanear el nombre de archivo"
605
 
606
  #: admin/tpls/settings/basic.php:104
607
  msgid ""
608
  "Check the option if you want to sanitize uploaded file names to remove "
609
  "illegal chars"
610
  msgstr ""
611
+ "Marca la opción si quieres sanear los nombres de archivo subidos para "
612
  "eliminar caracteres ilegales"
613
 
614
  #: admin/tpls/settings/basic.php:111
615
  msgid "Chunk Upload"
616
+ msgstr "Subir fragmentos"
617
 
618
  #: admin/tpls/settings/basic.php:112
619
  msgid ""
620
  "Check the option if you want to enable chunk upload to override http upload "
621
  "limits"
622
  msgstr ""
623
+ "Marca la opción si quieres activar la subida en fragmentos para anular los "
624
+ "límites de subida HTTP"
625
 
626
  #: admin/tpls/settings/basic.php:117
627
  msgid "Chunk Size"
628
+ msgstr "Tamaño del fragmento"
629
 
630
  #: admin/tpls/settings/basic.php:130
631
  msgid "File Download"
632
+ msgstr "Descarga de archivo"
633
 
634
  #: admin/tpls/settings/basic.php:134
635
  msgid "Download Speed:"
636
+ msgstr "Velocidad de descarga:"
637
 
638
  #: admin/tpls/settings/basic.php:142
639
  msgid "Blocked IPs"
640
+ msgstr "IP bloqueadas"
641
 
642
  #: admin/tpls/settings/basic.php:144
643
  msgid "One IP per line"
649
  "or 192.168.23.1/24 or 192.168.23.* , IPv6 - 2a01:8760:2:3001::1 or "
650
  "2620:112:3000::/44 )"
651
  msgstr ""
652
+ "Lista de direcciones IP no permitidas. Una IP por línea (Ejemplo: IPv4 - "
653
+ "192.168.23.12 o 192.168.23.1/24 o 192.168.23.*; IPv6 - 2a01:8760:2:3001::1 o "
654
+ "2620:112:3000::/44)"
655
 
656
  #: admin/tpls/settings/basic.php:148
657
  msgid "Write a Message for Blocked IPs"
658
+ msgstr "Escribe un mensaje para las IP bloqueadas"
659
 
660
  #: admin/tpls/settings/basic.php:149
661
  msgid "Message for Blocked IPs"
662
+ msgstr "Mensaje para IP bloqueadas"
663
 
664
  #: admin/tpls/settings/basic.php:153
665
  msgid ""
666
  "If you get broken download, then try enabling/disabling following options, "
667
  "as sometimes server may not support output buffering or partial downloads"
668
  msgstr ""
669
+ "Si obtienes una descarga rota, intenta activar/desactivar las siguientes "
670
+ "opciones, ya que el servidor, algunas veces, puede no admitir el buffer de "
671
+ "salida o las descargas parciales"
672
 
673
  #: admin/tpls/settings/basic.php:156
674
  msgid "Resumable Downloads"
676
 
677
  #: admin/tpls/settings/basic.php:158 admin/tpls/settings/basic.php:165
678
  msgid "Enabled"
679
+ msgstr "Activado"
680
 
681
  #: admin/tpls/settings/basic.php:159 admin/tpls/settings/basic.php:166
682
  msgid "Disabled"
683
+ msgstr "Desactivado"
684
 
685
  #: admin/tpls/settings/basic.php:163
686
  msgid "Output Buffering"
695
  "Try to Open in Browser instead of download when someone clicks on download "
696
  "link"
697
  msgstr ""
698
+ "Intentar abrir en el navegador en lugar de descargar cuando alguien hace "
699
  "clic en el enlace de descarga"
700
 
701
  #: admin/tpls/settings/basic.php:178
 
 
702
  msgid "Mask Download Link"
703
+ msgstr "Enmascarar el enlace de descarga"
704
 
705
  #: admin/tpls/settings/basic.php:179
 
 
706
  msgid "Unmask Download Link"
707
+ msgstr "Desenmascarar el enlace de descarga"
708
 
709
  #: admin/tpls/settings/basic.php:180
710
  msgid ""
712
  "unmask download link, bots will be able the find any public download link "
713
  "easily."
714
  msgstr ""
715
+ "Marca esta opción si quieres enmascarar/desenmascarar el enlace de descarga "
716
+ "del archivo. Si desenmascaras el enlace de descarga, los robots podrán "
717
+ "encontrar fácilmente cualquier enlace público de descarga."
718
 
719
  #: admin/tpls/settings/basic.php:184
720
  msgid "reCAPTCHA Lock Settings"
721
+ msgstr "Ajustes de bloqueo de reCAPTCHA"
722
 
723
  #: admin/tpls/settings/basic.php:186
724
  msgid "reCAPTCHA Site Key"
725
+ msgstr "Clave del sitio de reCAPTCHA"
726
 
727
  #: admin/tpls/settings/basic.php:188
728
  msgid ""
729
  "Register a new site for reCAPTCHA from <a target=\"_blank\" href=\"https://"
730
  "www.google.com/recaptcha/admin#list\">here</a>"
731
  msgstr ""
732
+ "Registra un nuevo sitio para reCAPTCHA <a target=\"_blank\" href=\"https://"
733
+ "www.google.com/recaptcha/admin#list\">aquí</a>"
734
 
735
  #: admin/tpls/settings/basic.php:191
736
  msgid "reCAPTCHA Secret Key"
737
+ msgstr "Clave secreta de reCAPTCHA"
738
 
739
  #: admin/tpls/settings/basic.php:196
740
  msgid "Enable sign up form CAPTCHA validation"
741
+ msgstr "Activar la validación CAPTCHA en el formulario de registro"
742
 
743
  #: admin/tpls/settings/basic.php:200
744
  msgid "Enable sign in form CAPTCHA validation"
745
+ msgstr "Activar la validación CAPTCHA en el formulario de acceso"
746
 
747
  #: admin/tpls/settings/basic.php:212
748
  msgid "Misc Settings"
749
+ msgstr "Otros ajustes"
750
 
751
  #: admin/tpls/settings/basic.php:217
752
  msgid "Login Page"
753
+ msgstr "Página de acceso"
754
 
755
  #: admin/tpls/settings/basic.php:218 admin/tpls/settings/basic.php:227
756
  #: admin/tpls/settings/basic.php:235
757
  msgid "None Selected"
758
+ msgstr "Nada seleccionado"
759
 
760
  #: admin/tpls/settings/basic.php:219 admin/tpls/settings/basic.php:228
761
  #: admin/tpls/settings/basic.php:236
762
  #, php-format
763
  msgid "The page where you used short-code %s"
764
+ msgstr "La página donde has usado el shortcode %s"
765
 
766
  #: admin/tpls/settings/basic.php:220
767
  msgid "Enable modal login form"
768
+ msgstr "Activar el formulario de acceso emergente"
769
 
770
  #: admin/tpls/settings/basic.php:221
771
  #, php-format
773
  "%s will show the modal login form, <a target=\"_blank\" href=\"%s\">follow "
774
  "the docs</a> for moore details"
775
  msgstr ""
776
+ "%s mostrará el formulario de acceso emergente, <a target=\"_blank\" href=\"%s"
777
+ "\">mira la documentación</a> para más detalles"
778
 
779
  #: admin/tpls/settings/basic.php:226
780
  msgid "Register Page"
782
 
783
  #: admin/tpls/settings/basic.php:229
784
  msgid "Enable email verification on signup"
785
+ msgstr "Activar la verificación por correo electrónico en el registro"
786
 
787
  #: admin/tpls/settings/basic.php:230
788
  msgid "Login automatically after signup is completed"
789
+ msgstr "Acceder automáticamente cuando se haya completado el registro"
790
 
791
  #: admin/tpls/settings/basic.php:234
792
  msgid "Dashboard Page"
793
+ msgstr "Página del escritorio"
794
 
795
  #: admin/tpls/settings/basic.php:241
796
  msgid "Include Packages in Main RSS Feed"
797
+ msgstr "Incluir los paquetes en el feed RSS principal"
798
 
799
  #: admin/tpls/settings/basic.php:242
800
  #, php-format
802
  "Check this option if you want to show wpdm packages in your main <a target="
803
  "\"_blank\" href=\"%s\">RSS Feed</a>"
804
  msgstr ""
805
+ "Marca esta opción si quieres mostrar los paquetes de WPDM en tu <a target="
806
+ "\"_blank\" href=\"%s\">feed RSS</a> principal"
807
 
808
  #: admin/tpls/settings/privacy.php:9
 
 
809
  msgid "Privacy Settings"
810
+ msgstr "Ajustes de privacidad"
811
 
812
  #: admin/tpls/settings/privacy.php:13
813
  msgid "Do not store visitor's IP"
814
+ msgstr "No almacenar la IP de los visitantes"
815
 
816
  #: admin/tpls/settings/privacy.php:14
 
 
 
 
817
  msgid "Check this option if you do not want to store visitors IPs"
818
+ msgstr "Marca esta opción si no quieres almacenar las IP de los visitantes"
 
 
819
 
820
  #: admin/tpls/settings/privacy.php:19
821
  msgid "Delete download history when users close accounts"
822
  msgstr ""
823
+ "Borrar el historial de descargas cuando los usuarios cierren las cuentas"
824
 
825
  #: admin/tpls/settings/privacy.php:20
826
  msgid ""
827
  "If any user is deleted or close his/her own account, delete their download "
828
  "history too"
829
  msgstr ""
830
+ "Si algún usuario es borrado o cierra su propia cuenta, borrar también su "
831
+ "historial de descargas"
832
 
833
  #: admin/tpls/settings/privacy.php:35
834
  msgid "Cache & Stats"
835
+ msgstr "Caché y estadísticas"
836
 
837
  #: admin/tpls/settings/privacy.php:40
838
  msgid "Empty Cache Dir"
839
+ msgstr "Vaciar el directorio de la caché"
840
 
841
  #: admin/tpls/settings/privacy.php:41
842
  msgid "Delete All Stats Data"
843
+ msgstr "Borrar todos los datos de las estadísticas"
844
 
845
  #: admin/tpls/settings/user-interface.php:14
846
  msgid "Active Bootstrap Version"
847
+ msgstr "Activar la versión de Bootstrap"
848
 
849
  #: admin/tpls/settings/user-interface.php:16
 
 
850
  msgid "Bootstrap 4"
851
+ msgstr "Bootstrap 4"
852
 
853
  #: admin/tpls/settings/user-interface.php:16
 
 
854
  msgid "Bootstrap 3"
855
+ msgstr "Bootstrap 3"
856
 
857
  #: admin/tpls/settings/user-interface.php:20
858
  msgid "Disable Style & Script"
859
+ msgstr "Desactivar estilos y scripts"
860
 
861
  #: admin/tpls/settings/user-interface.php:26
862
  msgid "Bootstrap JS"
864
 
865
  #: admin/tpls/settings/user-interface.php:27
866
  msgid "Bootstrap CSS"
867
+ msgstr "Bootstrap CSS"
868
 
869
  #: admin/tpls/settings/user-interface.php:28
870
  msgid "Font Awesome"
871
+ msgstr "Font Awesome"
872
 
873
  #: admin/tpls/settings/user-interface.php:29
874
  msgid "Front CSS"
875
+ msgstr "CSS Frontal"
876
 
877
  #: admin/tpls/settings/user-interface.php:30
878
  msgid "Google Font"
879
+ msgstr "Fuente de Google"
880
 
881
  #: admin/tpls/settings/user-interface.php:32
882
  msgid ""
883
  "Because, sometimes your theme may have those scripts/styles enqueued already"
884
+ msgstr ""
885
+ "Porque, a veces, tu tema puede que ya tenga en cola esos scripts/estilos"
886
 
887
  #: admin/tpls/settings/user-interface.php:38
888
  msgid "Colors"
889
+ msgstr "Colores"
890
 
891
  #: admin/tpls/settings/user-interface.php:54
892
  msgid "Primary:"
893
+ msgstr "Principal:"
894
 
895
  #: admin/tpls/settings/user-interface.php:60
896
  msgid "Secondary:"
897
+ msgstr "Secundario:"
898
 
899
  #: admin/tpls/settings/user-interface.php:66
900
  msgid "Info:"
901
+ msgstr "Información:"
902
 
903
  #: admin/tpls/settings/user-interface.php:72
 
 
904
  msgid "Success:"
905
+ msgstr "Correcto:"
906
 
907
  #: admin/tpls/settings/user-interface.php:78
 
 
908
  msgid "Warning:"
909
+ msgstr "Advertencia:"
910
 
911
  #: admin/tpls/settings/user-interface.php:84
912
  msgid "Danger:"
913
+ msgstr "Peligro:"
914
 
915
  #: admin/tpls/settings/user-interface.php:96
 
 
916
  msgid "Download Button"
917
+ msgstr "Botón de descarga"
918
 
919
  #: admin/tpls/settings/user-interface.php:100
 
 
920
  msgid "Details Page"
921
+ msgstr "Página de detalles"
922
 
923
  #: admin/tpls/settings/user-interface.php:125
924
  #: admin/tpls/settings/user-interface.php:155
925
  msgid "Border Radius"
926
+ msgstr "Radio del borde"
927
 
928
  #: admin/tpls/settings/user-interface.php:130
 
 
929
  msgid "Shortcode Page"
930
+ msgstr "Página de shortcodes"
931
 
932
  #: admin/tpls/stats.php:6
933
  msgid "Clear History"
934
+ msgstr "Vaciar el historial"
935
 
936
  #: admin/tpls/stats.php:7
937
  msgid "Export History"
938
+ msgstr "Exportar el historial"
939
 
940
  #: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
941
  #: tpls/already-logged-in.php:22 tpls3/already-logged-in.php:22
942
  msgid "Download History"
943
+ msgstr "Historial de descarga"
944
 
945
  #: admin/tpls/stats.php:31
946
  msgid "Are you sure? There is no going back!"
948
 
949
  #: admin/tpls/stats.php:35
950
  msgid "Clearing..."
951
+ msgstr "Vaciando..."
952
 
953
  #: admin/tpls/stats.php:38
954
  msgid "Download History is Empty"
955
+ msgstr "El historial de descargas está vacío"
956
 
957
  #: admin/tpls/stats/history.php:123
 
 
958
  msgid "From Date"
959
+ msgstr "Fecha de inicio"
960
 
961
  #: admin/tpls/stats/history.php:133
962
  msgid "To Date"
963
+ msgstr "Fecha de finalización"
964
 
965
  #: admin/tpls/stats/history.php:143
 
 
966
  msgid "Users"
967
+ msgstr "Usuarios"
968
 
969
  #: admin/tpls/stats/history.php:172
 
 
970
  msgid "Packages"
971
+ msgstr "Paquetes"
972
 
973
  #: admin/tpls/stats/history.php:198
974
  msgid "Filter"
975
+ msgstr "Filtrar"
976
 
977
  #: admin/tpls/stats/history.php:199
978
  msgid "Reset"
979
+ msgstr "Restablecer"
980
 
981
  #: admin/tpls/stats/history.php:221 tpls/user-dashboard/download-history.php:7
982
  #: tpls/user-dashboard/profile.php:115 tpls/user-dashboard/profile.php:145
987
 
988
  #: admin/tpls/stats/history.php:222 modules/strings.php:11
989
  #: widgets/class.PackageInfo.php:25 widgets/class.PackageInfo.php:121
 
 
990
  msgid "Version"
991
+ msgstr "Versión"
992
 
993
  #: admin/tpls/stats/history.php:223 tpls/user-dashboard/download-history.php:8
994
  #: tpls/user-dashboard/profile.php:146
998
  msgstr "Tiempo de descarga"
999
 
1000
  #: admin/tpls/stats/history.php:224
 
 
1001
  msgid "User"
1002
+ msgstr "Usuario"
1003
 
1004
  #: admin/tpls/stats/history.php:225 tpls/user-dashboard/download-history.php:9
1005
  #: tpls/user-dashboard/profile.php:147
1009
  msgstr "IP"
1010
 
1011
  #: admin/tpls/stats/history.php:226
 
 
1012
  msgid "Browser"
1013
+ msgstr "Navegador"
1014
 
1015
  #: admin/tpls/stats/history.php:227
1016
  msgid "OS"
1017
+ msgstr "S.O."
1018
 
1019
  #: admin/tpls/templates.php:19
1020
  #, php-format
1022
  "Custom Template editor is available with <a target='_blank' "
1023
  "href='%s'>WordPress Download Manager Pro</a>"
1024
  msgstr ""
1025
+ "El editor de plantillas personalizadas está disponible con <a "
1026
+ "target='_blank' href='%s'>WordPress Download Manager Pro</a>"
1027
 
1028
  #: admin/tpls/templates.php:20
1029
  #, php-format
1031
  "Please follow the <a target='_blank' href='%s'>documentation</a> to edit "
1032
  "exiting template files"
1033
  msgstr ""
1034
+ "Por favor, sigue la <a target='_blank' href='%s'>documentación</a> para "
1035
+ "editar los archivos de plantillas existentes"
1036
 
1037
  #: admin/tpls/templates.php:28
 
 
1038
  msgid "Template Name"
1039
+ msgstr "Nombre de la plantilla"
1040
 
1041
  #: admin/tpls/templates.php:29
 
 
1042
  msgid "Template ID"
1043
+ msgstr "ID de plantilla"
1044
 
1045
  #: admin/tpls/templates.php:31
 
 
1046
  msgid "Actions"
1047
+ msgstr "Acciones"
1048
 
1049
  #: admin/tpls/templates.php:74
1050
  msgid "To:"
1051
+ msgstr "Para:"
1052
 
1053
  #: admin/tpls/templates.php:82
 
 
1054
  msgid "Edit"
1055
+ msgstr "Editar"
1056
 
1057
  #: admin/tpls/templates.php:123 admin/tpls/templates.php:124
1058
  #: tpls/wpdm-edit-user-profile.php:23
 
 
1059
  msgid "Logo URL"
1060
+ msgstr "URL del logotipo"
1061
 
1062
  #: admin/tpls/templates.php:127 admin/tpls/templates.php:128
1063
  msgid "Banner/Background Image URL"
1064
+ msgstr "URL de la imagen del banner/fondo"
1065
 
1066
  #: admin/tpls/templates.php:139
1067
  msgid "Footer Text"
1068
+ msgstr "Texto del pie de página"
1069
 
1070
  #: admin/tpls/templates.php:143
1071
  msgid "Facebook Page URL"
1072
+ msgstr "URL de la página de Facebook"
1073
 
1074
  #: admin/tpls/templates.php:147
 
 
1075
  msgid "Twitter Profile URL"
1076
+ msgstr "URL del perfil de Twitter"
1077
 
1078
  #: admin/tpls/templates.php:151
1079
  msgid "Youtube Profile URL"
1080
+ msgstr "URL del perfil de YouTube"
1081
 
1082
  #: admin/tpls/templates.php:201
1083
  msgid "Template Preview"
1084
+ msgstr "Vista previa de la plantilla"
1085
 
1086
  #: admin/tpls/templates.php:207
1087
  msgid ""
1088
  "This is a preview, original template color scheme may look little different, "
1089
  "but structure will be same"
1090
  msgstr ""
1091
+ "Esta es una vista previa, el esquema de color de la plantilla original puede "
1092
+ "parecer un poco diferente, pero la estructura será la misma"
1093
 
1094
  #: admin/tpls/templates.php:343
 
 
1095
  msgid "Saving..."
1096
+ msgstr "Guardando..."
1097
 
1098
  #: download-manager.php:202 download-manager.php:214
1099
+ #: libs/class.CategoryHandler.php:327 libs/class.CategoryHandler.php:347
1100
  #: libs/class.ShortCodes.php:423 libs/class.UserProfile.php:20
1101
  #: tpls/shortcodes/toolbar.php:43 tpls/shortcodes/toolbar.php:77
1102
  #: tpls3/shortcodes/toolbar.php:43 tpls3/shortcodes/toolbar.php:77
1106
 
1107
  #: download-manager.php:203 libs/class.FileList.php:69
1108
  msgid "File"
1109
+ msgstr "Archivo"
1110
 
1111
  #: download-manager.php:204
1112
  msgid "Add New"
1114
 
1115
  #: download-manager.php:205
1116
  msgid "Add New File"
1117
+ msgstr "Añadir un nuevo archivo"
1118
 
1119
  #: download-manager.php:206
1120
  msgid "Edit File"
1121
+ msgstr "Editar el archivo"
1122
 
1123
  #: download-manager.php:207
1124
  msgid "New File"
1125
+ msgstr "Nuevo archivo"
1126
 
1127
  #: download-manager.php:208
1128
  msgid "All Files"
1130
 
1131
  #: download-manager.php:209
1132
  msgid "View File"
1133
+ msgstr "Ver el archivo"
1134
 
1135
  #: download-manager.php:210
1136
  msgid "Search Files"
1138
 
1139
  #: download-manager.php:211
1140
  msgid "No File Found"
1141
+ msgstr "No se han encontrado archivos"
1142
 
1143
  #: download-manager.php:212
1144
  msgid "No Files found in Trash"
1145
+ msgstr "No se ha encontrado archivos en la papelera"
1146
 
1147
  #: download-manager.php:243 download-manager.php:253
1148
  #: tpls/wpdm-all-downloads.php:189 tpls3/wpdm-all-downloads.php:158
1155
 
1156
  #: download-manager.php:245
1157
  msgid "Search Categories"
1158
+ msgstr "Buscar categorías"
1159
 
1160
  #: download-manager.php:246
1161
  msgid "All Categories"
1162
+ msgstr "Todas las categorías"
1163
 
1164
  #: download-manager.php:247
1165
  msgid "Parent Category"
1166
+ msgstr "Categoría principal"
1167
 
1168
  #: download-manager.php:248
1169
  msgid "Parent Category:"
1170
+ msgstr "Categoría principal:"
1171
 
1172
  #: download-manager.php:249
1173
  msgid "Edit Category"
1174
+ msgstr "Editar la categoría"
1175
 
1176
  #: download-manager.php:250
1177
  msgid "Update Category"
1178
+ msgstr "Actualizar la categoría"
1179
 
1180
  #: download-manager.php:251
1181
  msgid "Add New Category"
1182
+ msgstr "Añadir una nueva categoría"
1183
 
1184
  #: download-manager.php:252
1185
  msgid "New Category Name"
1186
  msgstr "Nombre de la nueva categoría"
1187
 
1188
+ #: libs/class.Apply.php:162 libs/class.Apply.php:250
 
 
1189
  msgid "Invalid CAPTCHA!"
1190
+ msgstr "¡CAPTCHA no válido!"
1191
 
1192
+ #: libs/class.Apply.php:196 tpls/wpdm-reg-form.php:112
1193
  #: tpls3/wpdm-reg-form.php:115
1194
  msgid "Success! Redirecting..."
1195
+ msgstr "¡Correcto! Redireccionando..."
1196
 
1197
+ #: libs/class.Apply.php:233
1198
  msgid "Something is Wrong! Please refresh the page and try again"
1199
  msgstr ""
1200
+ "Algo ha salido mal. Por favor, actualiza la página e inténtalo de nuevo."
1201
 
1202
+ #: libs/class.Apply.php:263
1203
  msgid "Error: User registration is disabled!"
1204
+ msgstr "Error: ¡El registro de usuarios está desactivado!"
1205
 
1206
+ #: libs/class.Apply.php:288
1207
  msgid "Username is Empty!"
1208
+ msgstr "¡El nombre de usuario está vacío!"
1209
 
1210
+ #: libs/class.Apply.php:303
 
 
1211
  msgid "Invalid email address!"
1212
+ msgstr "¡Dirección de correo electrónico no válida!"
1213
 
1214
+ #: libs/class.Apply.php:327
 
 
1215
  msgid "Passwords not matched!"
1216
+ msgstr "¡Las contraseñas no coinciden!"
1217
 
1218
+ #: libs/class.Apply.php:404
 
 
1219
  msgid "Edit User"
1220
+ msgstr "Editar el usuario"
1221
 
1222
+ #: libs/class.Apply.php:423
1223
  msgid ""
1224
  "Your account has been created successfully and login info sent to your mail "
1225
  "address."
1226
  msgstr ""
1227
+ "Tu cuenta ha sido creada correctamente y la información de acceso ha sido "
1228
+ "enviada a tu dirección de correo electrónico."
1229
 
1230
+ #: libs/class.Apply.php:425 libs/class.Apply.php:431
1231
  msgid "Your account has been created successfully."
1232
+ msgstr "Tu cuenta ha sido creada correctamente."
1233
 
1234
+ #: libs/class.Apply.php:449
 
 
1235
  msgid "Email already exist!"
1236
+ msgstr "¡El correo electrónico ya existe!"
1237
 
1238
+ #: libs/class.Apply.php:462
 
 
1239
  msgid "Username already exists."
1240
+ msgstr "Este nombre de usuario ya existe."
1241
 
1242
+ #: libs/class.Apply.php:524
1243
+ msgid "Password update is disabled for this user!"
1244
+ msgstr "¡El restablecimiento de contraseña está desactivado para este usuario!"
1245
+
1246
+ #: libs/class.Apply.php:532 libs/class.Apply.php:534
1247
  msgid "Session Expired! Please try again."
1248
+ msgstr "¡Sesión caducada! Por favor, inténtalo de nuevo."
 
 
1249
 
1250
+ #: libs/class.Apply.php:681
1251
  msgid "You don't have permission to download this file"
1252
+ msgstr "No tienes permisos para descargar este archivo"
1253
 
1254
+ #: libs/class.Apply.php:688
1255
  msgid "Download link is expired. Please get new download link."
1256
  msgstr ""
1257
+ "El enlace de descarga ha caducado. Por favor, consigue un nuevo enlace de "
1258
  "descarga."
1259
 
1260
+ #: libs/class.Apply.php:690
1261
  msgid "Download link is expired or not valid. Please get new download link."
1262
  msgstr ""
1263
+ "El enlace de descarga ha caducado o no es válido. Por favor, consigue un "
1264
  "nuevo enlace de descarga."
1265
 
1266
+ #: libs/class.Apply.php:697
1267
  msgid "Stock Limit Reached"
1268
+ msgstr "Límite de inventario alcanzado"
1269
 
1270
+ #: libs/class.Apply.php:703
1271
  msgid "Invalid download link."
1272
  msgstr "Enlace de descarga no válido."
1273
 
1274
  #: libs/class.AssetManager.php:156
 
 
1275
  msgid ""
1276
  "Download link is expired! Go back and Refresh the page to regenerate "
1277
  "download link"
1278
  msgstr ""
1279
+ "¡El enlace de descarga ha caducado! Vuelve atrás y refresca la página para "
1280
+ "generar de nuevo el enlace de descarga"
1281
 
1282
  #: libs/class.AssetManager.php:180
1283
  msgid "Asset Manager"
1284
+ msgstr "Gestor de recursos"
1285
 
1286
  #: libs/class.AssetManager.php:197 libs/class.AssetManager.php:212
1287
  #: libs/class.AssetManager.php:234 libs/class.AssetManager.php:236
1300
  #: libs/class.AssetManager.php:515 libs/class.AssetManager.php:541
1301
  #: libs/class.AssetManager.php:543
1302
  msgid "Error! Session Expired. Try refreshing page."
1303
+ msgstr "¡Error! Sesión caducada. Intenta refrescar la página."
1304
 
1305
  #: libs/class.AssetManager.php:203 libs/class.AssetManager.php:218
1306
  #: libs/class.AssetManager.php:241 libs/class.AssetManager.php:300
1309
  #: libs/class.AssetManager.php:400 libs/class.AssetManager.php:477
1310
  #: libs/class.AssetManager.php:639
1311
  msgid "Error! Unauthorized Path."
1312
+ msgstr "¡Error! Ruta no autorizada."
1313
 
1314
  #: libs/class.AssetManager.php:214 libs/class.AssetManager.php:392
 
 
1315
  msgid "Error! Unauthorized Access."
1316
+ msgstr "¡Error! Acceso no autorizado."
1317
 
1318
  #: libs/class.AssetManager.php:222 libs/class.AssetManager.php:479
1319
  #: libs/class.AssetManager.php:503 libs/class.AssetManager.php:522
1320
  #: libs/class.AssetManager.php:555
1321
  msgid "Error! FileType is not allowed."
1322
+ msgstr "¡Error! Tipo de archivo no permitido."
1323
 
1324
  #: libs/class.AssetManager.php:275 tpls/lost-password-form.php:33
1325
  #: tpls3/lost-password-form.php:28
1326
  msgid "Home"
1327
+ msgstr "Inicio"
1328
 
1329
  #: libs/class.AssetManager.php:295 libs/class.AssetManager.php:311
1330
  msgid "<b>Unauthorized Action!</b><br/>Execution is cancelled by the system."
1331
  msgstr ""
1332
+ "<b>¡Acción no autorizada!</b><br/>La ejecución es cancelada por el sistema."
1333
 
1334
  #: libs/class.AssetManager.php:527 libs/class.AssetManager.php:551
 
 
1335
  msgid "Invalid source path"
1336
+ msgstr "Ruta de origen no válida"
1337
 
1338
  #: libs/class.AssetManager.php:528 libs/class.AssetManager.php:552
1339
  msgid "Invalid destination path"
1340
+ msgstr "Ruta de destino no válida"
1341
 
1342
  #: libs/class.AssetManager.php:536
 
 
1343
  msgid "File moved successfully"
1344
+ msgstr "Archivo movido correctamente"
1345
 
1346
  #: libs/class.AssetManager.php:559
1347
  msgid "File copied successfully"
1348
+ msgstr "Archivo copiado correctamente"
1349
 
1350
  #: libs/class.AssetManager.php:606
1351
  msgid "Asset not found!"
1352
+ msgstr "¡Recurso no encontrado!"
1353
 
1354
  #: libs/class.AssetManager.php:638
1355
  msgid "Error! Only Administrator can execute this operation."
1356
+ msgstr "¡Error! Esta operación solo la puede ejecutar un administrador."
1357
 
1358
  #: libs/class.AssetManager.php:640
1359
  msgid "Error! Invalid Destination Path."
1360
+ msgstr "¡Error! Ruta de destino no válida."
1361
 
1362
  #: libs/class.AssetManager.php:641
 
 
1363
  msgid "Please activate \"zlib\" in your server to perform zip operations"
1364
+ msgstr "Por favor, activa «zlib» en tu servidor para realizar operaciones zip"
1365
 
1366
  #: libs/class.AssetManager.php:646
1367
  msgid "Unzipped successfully."
1368
+ msgstr "Descomprimido correctamente."
1369
 
1370
  #: libs/class.AssetManager.php:648
1371
  msgid "Error! Couldn't open the zip file."
1372
+ msgstr "¡Error! No se ha podido abrir el archivo ZIP."
1373
 
1374
+ #: libs/class.CategoryHandler.php:251
1375
+ msgid "Category doesn't exist"
1376
+ msgstr "No existe la categoría"
1377
+
1378
+ #: libs/class.CategoryHandler.php:327 wpdm-functions.php:823
1379
  msgid "Sub-Categories"
1380
+ msgstr "Subcategorías"
1381
 
1382
+ #: libs/class.CategoryHandler.php:346 libs/class.ShortCodes.php:422
1383
  #: modules/strings.php:18 tpls/shortcodes/toolbar.php:41
1384
  #: tpls/shortcodes/toolbar.php:75 tpls/wpdm-edit-user-profile.php:15
1385
  #: tpls3/shortcodes/toolbar.php:41 tpls3/shortcodes/toolbar.php:75
1387
  msgid "Title"
1388
  msgstr "Título"
1389
 
1390
+ #: libs/class.CategoryHandler.php:348 libs/class.ShortCodes.php:424
1391
  #: tpls/shortcodes/toolbar.php:40 tpls/shortcodes/toolbar.php:74
1392
  #: tpls3/shortcodes/toolbar.php:40 tpls3/shortcodes/toolbar.php:74
1393
  #: widgets/class.PackageInfo.php:22 widgets/class.PackageInfo.php:119
1395
  msgid "Publish Date"
1396
  msgstr "Fecha de publicación"
1397
 
1398
+ #: libs/class.CategoryHandler.php:349 libs/class.ShortCodes.php:425
1399
  #: tpls/shortcodes/toolbar.php:42 tpls/shortcodes/toolbar.php:76
1400
  #: tpls3/shortcodes/toolbar.php:42 tpls3/shortcodes/toolbar.php:76
1401
  #: widgets/class.PackageInfo.php:120 wpdm-functions.php:844
1402
  msgid "Update Date"
1403
  msgstr "Fecha de actualización"
1404
 
1405
+ #: libs/class.CategoryHandler.php:350 libs/class.ShortCodes.php:426
1406
  #: wpdm-functions.php:845
1407
  msgid "Asc"
1408
+ msgstr "Ascendente"
1409
 
1410
+ #: libs/class.CategoryHandler.php:351 libs/class.ShortCodes.php:427
1411
  #: wpdm-functions.php:846
1412
  msgid "Desc"
1413
+ msgstr "Descendente"
1414
 
1415
+ #: libs/class.CategoryHandler.php:352 libs/class.ShortCodes.php:428
1416
  #: wpdm-functions.php:847
1417
  msgid "Search"
1418
  msgstr "Buscar"
1419
 
1420
+ #: libs/class.CategoryHandler.php:353 libs/class.ShortCodes.php:429
1421
  #: wpdm-functions.php:848
1422
  msgid "Order"
1423
  msgstr "Orden"
1424
 
1425
+ #: libs/class.CategoryHandler.php:354 libs/class.ShortCodes.php:430
1426
  #: wpdm-functions.php:849
1427
  msgid "Order By"
1428
  msgstr "Ordenar por"
1433
 
1434
  #: libs/class.Email.php:52 libs/class.Email.php:62
1435
  msgid "User Signup Notification"
1436
+ msgstr "Aviso de registro de usuario"
1437
 
1438
  #: libs/class.Email.php:55
1439
  #, php-format
1440
  msgid "Welcome to %s"
1441
+ msgstr "Bienvenido a %s"
1442
 
1443
  #: libs/class.Email.php:65
1444
  #, php-format
1445
  msgid "[ %s ] New User Registration"
1446
+ msgstr "[ %s ] Registro de un nuevo usuario"
1447
 
1448
  #: libs/class.Email.php:69
1449
  msgid "New user registration on your site WordPress Download Manager:"
1450
+ msgstr "Nuevo registro de usuario en tu sitio - WordPress Download Manager:"
1451
 
1452
  #: libs/class.Email.php:73
1453
  msgid "Password Reset Notification"
1454
+ msgstr "Aviso de restablecimiento de contraseña"
1455
 
1456
  #: libs/class.Email.php:76
1457
  #, php-format
1458
  msgid "Request to reset your %s password"
1459
+ msgstr "Solicitud para restablecer tu contraseña en %s"
1460
 
1461
  #: libs/class.Email.php:83
1462
  msgid "Email Lock Notification"
1463
+ msgstr "Correo electrónico de aviso de bloqueo"
1464
 
1465
  #: libs/class.Email.php:86
1466
  msgid "Download [#package_name#]"
1467
+ msgstr "Descargar [#package_name#]"
1468
 
1469
  #: libs/class.Email.php:93 wpdm-core.php:192
1470
  msgid "New Package Notification"
1471
+ msgstr "Aviso de nuevo paquete"
1472
 
1473
  #: libs/class.Email.php:96
1474
  msgid "New Package is Added By [#name#]"
1475
+ msgstr "Nuevo paquete añadido por [#name#]"
1476
 
1477
+ #: libs/class.Email.php:261
1478
  msgid "Sample Package Name"
1479
  msgstr "Nombre del paquete de muestra"
1480
 
1490
  msgstr "Acción"
1491
 
1492
  #: libs/class.MediaAccessControl.php:60
 
 
1493
  msgid "<b>Error:</b> Wrong Password! Try Again."
1494
+ msgstr "<b>Error:</b> ¡Contraseña incorrecta! Inténtalo de nuevo."
1495
 
1496
  #: libs/class.MediaAccessControl.php:84
1497
  msgid "Protected Media File"
1498
+ msgstr "Archivo de medios protegido"
1499
 
1500
  #: libs/class.MediaAccessControl.php:84
1501
  msgid "You are not allowed to access the media file"
1502
+ msgstr "No tienes permisos para acceder al archivo de medios"
1503
 
1504
  #: libs/class.MediaAccessControl.php:160
1505
  msgid "This file is not protected."
1506
+ msgstr "Este archivo no está protegido."
1507
 
1508
  #: libs/class.MediaAccessControl.php:163
1509
  msgid "Protect this file"
1510
+ msgstr "Proteger este archivo"
1511
 
1512
  #: libs/class.MediaAccessControl.php:168
1513
  msgid "This file is protected"
1514
+ msgstr "Este archivo está protegido"
1515
 
1516
  #: libs/class.MediaAccessControl.php:170
1517
  msgid "Block Direct Access"
1518
+ msgstr "Bloquear el acceso directo"
1519
 
1520
  #: libs/class.MediaAccessControl.php:173
1521
  msgid "Remove Protection"
1522
+ msgstr "Eliminar la protección"
1523
 
1524
  #: libs/class.MediaAccessControl.php:207 libs/class.MediaAccessControl.php:222
1525
  msgid "This file is not protected yet!"
1526
+ msgstr "¡Este archivo aún no está protegido!"
1527
 
1528
  #: libs/class.MediaAccessControl.php:209 libs/class.MediaAccessControl.php:224
1529
  #: libs/class.MediaAccessControl.php:267
1530
  msgid "Checking status..."
1531
+ msgstr "Revisando el estado..."
1532
 
1533
  #: libs/class.MediaHandler.php:17
 
 
1534
  msgid "Download Manager"
1535
+ msgstr "Download Manager"
1536
 
1537
  #: libs/class.Messages.php:103
 
 
1538
  msgid "Download Limit Exceeded!"
1539
+ msgstr "¡Límite de descarga superado!"
1540
 
1541
+ #: libs/class.Messages.php:111 libs/class.Package.php:934
1542
  #: libs/class.ShortCodes.php:142 tpls/lost-password-form.php:34
1543
  #: tpls/wpdm-login-form.php:63 tpls/wpdm-login-modal-form.php:75
1544
  #: tpls/wpdm-reg-form.php:79 tpls3/lost-password-form.php:29
1545
  #: tpls3/wpdm-login-form.php:101 tpls3/wpdm-login-modal-form.php:88
1546
  #: tpls3/wpdm-reg-form.php:82
1547
  msgid "Login"
1548
+ msgstr "Acceder"
1549
 
1550
  #: libs/class.Messages.php:119
 
 
1551
  msgid "Access Denied"
1552
+ msgstr "Acceso denegado"
1553
 
1554
  #: libs/class.Package.php:28
1555
  msgid "ID missing!"
1556
+ msgstr "¡Falta el ID!"
1557
 
1558
  #: libs/class.Package.php:130 libs/class.Package.php:133
1559
  #: libs/class.Package.php:135
1564
  msgid "Thumbnail"
1565
  msgstr "Miniatura"
1566
 
1567
+ #: libs/class.Package.php:169 libs/class.Package.php:656 wpdm-functions.php:103
1568
  #: wpdm-start-download.php:24
1569
  msgid "Download Limit Exceeded"
1570
+ msgstr "Límite de descargas superado"
1571
 
1572
  #: libs/class.Package.php:172 libs/class.Package.php:180
1573
  #: libs/class.Package.php:188 libs/class.Package.php:196
1574
  msgid "DOWNLOAD ERROR"
1575
  msgstr "ERROR DE DESCARGA"
1576
 
1577
+ #: libs/class.Package.php:177 libs/class.Package.php:660
1578
+ #: libs/class.Package.php:888 wpdm-functions.php:107
1579
  msgid "Download was expired on"
1580
  msgstr "La descarga ha caducado el"
1581
 
1582
+ #: libs/class.Package.php:185 libs/class.Package.php:667
1583
+ #: libs/class.Package.php:894 wpdm-functions.php:114
1584
  msgid "Download will be available from "
1585
  msgstr "La descarga estará disponible desde"
1586
 
1587
+ #: libs/class.Package.php:225
1588
  msgid "Terms and Conditions"
1589
+ msgstr "Términos y condiciones"
1590
 
1591
+ #: libs/class.Package.php:227
 
 
1592
  msgid "I Agree With Terms and Conditions"
1593
+ msgstr "Estoy de acuerdo con los términos y condiciones"
1594
 
1595
+ #: libs/class.Package.php:464
1596
  msgid "No File Attached!"
1597
+ msgstr "¡No hay archivos adjuntos!"
1598
 
1599
+ #: libs/class.Package.php:662 libs/class.Package.php:669
1600
+ #: libs/class.Package.php:679 wpdm-functions.php:109 wpdm-functions.php:116
1601
  #: wpdm-functions.php:126
1602
  msgid "Download:"
1603
  msgstr "Descargar:"
1604
 
1605
+ #: libs/class.Package.php:761 wpdm-functions.php:208
1606
  msgid "Download limit exceeded!"
1607
+ msgstr "¡Límite de descarga superado!"
1608
 
1609
+ #: libs/class.Package.php:823
1610
  msgid "Verify CAPTCHA to Download"
1611
+ msgstr "Verificar el CAPTCHA para descargar"
1612
 
1613
+ #: libs/class.Package.php:889 libs/class.Package.php:895
1614
+ #: libs/class.Package.php:907
1615
  msgid "DOWNLOAD ERROR:"
1616
  msgstr "ERROR DE DESCARGA:"
1617
 
1618
+ #: libs/class.Package.php:983
1619
  msgid "Limit Over!"
1620
+ msgstr "¡Se ha superado el límite!"
1621
+
1622
+ #: libs/class.Package.php:1392
1623
+ msgid "Sample Package"
1624
+ msgstr "Paquete de muestra"
1625
 
1626
  #: libs/class.PackageLocks.php:44 tpls/lock-options/password-lock.php:11
1627
  #: tpls3/lock-options/password-lock.php:11
1628
  msgid "Enter Correct Password to Download"
1629
+ msgstr "Introduce la contraseña correcta para descargar"
1630
 
1631
  #: libs/class.PackageLocks.php:47 libs/class.PackageLocks.php:63
1632
  #: tpls/lock-options/password-lock.php:14
1661
 
1662
  #: libs/class.ShortCodes.php:189
1663
  msgid "User registration is disabled"
1664
+ msgstr "El registro de usuarios está desactivado"
1665
 
1666
  #: libs/class.StreamMedia.php:34
1667
  msgid "Failed To Open File!"
1668
+ msgstr "¡No se ha podido abrir el archivo!"
1669
 
1670
  #: libs/class.User.php:41
 
 
1671
  msgid "First name"
1672
+ msgstr "Nombre"
1673
 
1674
  #: libs/class.User.php:41
 
 
1675
  msgid "Your First Name"
1676
+ msgstr "Tu nombre"
1677
 
1678
  #: libs/class.User.php:42
 
 
1679
  msgid "Last name"
1680
+ msgstr "Apellidos"
1681
 
1682
  #: libs/class.User.php:42
 
 
1683
  msgid "Your Last Name"
1684
+ msgstr "Tus apellidos"
1685
 
1686
  #: libs/class.User.php:47
1687
  msgid "Username"
1689
 
1690
  #: libs/class.User.php:49
1691
  msgid "User Login ID"
1692
+ msgstr "ID de acceso de usuario"
1693
 
1694
  #: libs/class.User.php:53
 
 
1695
  msgid "Email"
1696
+ msgstr "Correo electrónico"
1697
 
1698
  #: libs/class.User.php:55
 
 
1699
  msgid "Your Email Address"
1700
+ msgstr "Tu dirección de correo electrónico"
1701
 
1702
  #: libs/class.User.php:62
1703
  msgid "Be Secure"
1704
+ msgstr "Asegúrate"
1705
 
1706
+ #: libs/class.User.php:63 tpls/reset-password-form.php:31
1707
+ #: tpls3/reset-password-form.php:31
1708
  msgid "Confirm Password"
1709
+ msgstr "Confirmar la contraseña"
1710
 
1711
  #: libs/class.User.php:63
1712
  msgid "Do Not Forget"
1713
+ msgstr "No olvidar"
1714
 
1715
  #: libs/class.User.php:86
 
 
1716
  msgid "Login ID"
1717
+ msgstr "ID de acceso"
1718
 
1719
  #: libs/class.User.php:88 tpls/lost-password-form.php:23
1720
  #: tpls/lost-password-form.php:24 tpls3/lost-password-form.php:20
1721
  #: tpls3/wpdm-login-form.php:55 tpls3/wpdm-login-modal-form.php:55
 
 
1722
  msgid "Username or Email"
1723
+ msgstr "Nombre de usuario o correo electrónico"
1724
 
1725
  #: libs/class.UserDashboard.php:17
1726
  msgid "Profile"
1728
 
1729
  #: libs/class.UserDashboard.php:19
1730
  msgid "Edit Profile"
1731
+ msgstr "Editar el perfil"
1732
 
1733
  #: libs/class.UserDashboard.php:27
1734
  msgid "Account"
1735
+ msgstr "Cuenta"
1736
 
1737
  #: libs/class.UserProfile.php:21
1738
  msgid "Favourites"
1739
+ msgstr "Favoritos"
1740
 
1741
  #: modules/server-file-browser.php:8
1742
  msgid "Not Allowed!"
1744
 
1745
  #: modules/server-file-browser.php:84
1746
  msgid "Add file(s) from server"
1747
+ msgstr "Añadir archivo(s) desde el servidor"
1748
 
1749
  #: modules/strings.php:10 widgets/class.PackageInfo.php:117
1750
  msgid "Download Count"
1751
+ msgstr "Contador de descargas"
1752
 
1753
  #: modules/strings.php:12
1754
  msgid "Stock"
1755
+ msgstr "Inventario"
1756
 
1757
  #: modules/strings.php:13
1758
  msgid "File Size"
1759
  msgstr "Tamaño del archivo"
1760
 
1761
  #: modules/strings.php:14
 
 
1762
  msgid "File Type"
1763
+ msgstr "Tipo de archivo"
1764
 
1765
  #: modules/strings.php:15
 
 
1766
  msgid "File Count"
1767
+ msgstr "Recuento de archivos"
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 "Fecha de creación"
1773
 
1774
  #: modules/strings.php:17 widgets/class.PackageInfo.php:23
1775
  msgid "Last Updated"
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 "Descripción"
1782
 
1783
  #: modules/strings.php:20
 
 
1784
  msgid "Package Info"
1785
+ msgstr "Información del paquete"
1786
 
1787
  #: modules/strings.php:21
 
 
1788
  msgid "Attached Files"
1789
+ msgstr "Archivos adjuntos"
1790
 
1791
  #: modules/strings.php:22
 
 
1792
  msgid "Total Files"
1793
+ msgstr "Archivos totales"
1794
 
1795
  #: modules/strings.php:23 tpls/wpdm-all-downloads.php:318
1796
  #: tpls3/wpdm-all-downloads.php:260
1797
  msgid "file(s)"
1798
+ msgstr "archivo(s)"
1799
 
1800
  #: modules/strings.php:24
1801
  msgid "Buy Now"
1802
+ msgstr "Comprar ahora"
1803
 
1804
  #: modules/strings.php:25
1805
  msgid "Price"
1806
  msgstr "Precio"
1807
 
1808
  #: tpls/already-logged-in.php:15 tpls3/already-logged-in.php:15
 
 
1809
  msgid "Welcome"
1810
+ msgstr "Bienvenido"
1811
 
1812
  #: tpls/already-logged-in.php:17 tpls3/already-logged-in.php:17
1813
  msgid "You are already logged in."
1814
+ msgstr "Ya estás conectado."
1815
 
1816
  #: tpls/already-logged-in.php:21 tpls3/already-logged-in.php:21
 
 
1817
  msgid "Dashboard"
1818
+ msgstr "Escritorio"
1819
 
1820
+ #: tpls/asset-manager-ui.php:513 tpls3/asset-manager-ui.php:500
 
 
1821
  msgid "New Folder"
1822
+ msgstr "Nueva carpeta"
1823
 
1824
+ #: tpls/asset-manager-ui.php:515 tpls/asset-manager-ui.php:721
1825
  #: tpls3/asset-manager-ui.php:502 tpls3/asset-manager-ui.php:706
 
 
1826
  msgid "Upload File"
1827
+ msgstr "Subir un archivo"
1828
 
1829
+ #: tpls/asset-manager-ui.php:521 tpls3/asset-manager-ui.php:508
1830
  msgid "Digital Asset Manager"
1831
+ msgstr "Gestor de recursos digitales"
1832
 
1833
+ #: tpls/asset-manager-ui.php:624 tpls3/asset-manager-ui.php:611
 
 
1834
  msgid "Copy Shortcode"
1835
+ msgstr "Copiar el shortcode"
1836
 
1837
+ #: tpls/asset-manager-ui.php:728 tpls3/asset-manager-ui.php:713
 
 
1838
  msgid "Drop files here"
1839
+ msgstr "Suelta los archivos aquí"
1840
 
1841
+ #: tpls/asset-manager-ui.php:835 tpls3/asset-manager-ui.php:820
1842
  msgid "Authorized User Groups:"
1843
+ msgstr "Grupos de usuarios autorizados:"
1844
 
1845
+ #: tpls/asset-manager-ui.php:857 tpls3/asset-manager-ui.php:842
 
 
1846
  msgid "Authorized Users:"
1847
+ msgstr "Usuarios autorizados:"
1848
 
1849
  #: tpls/asset-viewer.php:6
 
 
1850
  msgid "You do not have access to this asset"
1851
+ msgstr "No tienes acceso a este recurso"
1852
 
1853
  #: tpls/lock-options-iframe.php:289 tpls3/lock-options-iframe.php:243
1854
  msgid "Buy"
1855
  msgstr "Comprar"
1856
 
1857
  #: tpls/lost-password-form.php:17 tpls3/lost-password-form.php:15
 
 
1858
  msgid "Lost Password?"
1859
+ msgstr "¿Contraseña perdida?"
1860
 
1861
  #: tpls/lost-password-form.php:19 tpls3/lost-password-form.php:17
1862
  msgid ""
1863
  "Please enter your username or email address. You will receive a link to "
1864
  "create a new password via email."
1865
  msgstr ""
1866
+ "Por favor, introduce tu nombre de usuario o tu dirección de correo "
1867
+ "electrónico. Recibirás un enlace por correo electrónico para crear una nueva "
1868
+ "contraseña."
1869
 
1870
  #: tpls/lost-password-form.php:29 tpls3/lost-password-form.php:24
 
 
1871
  msgid "Reset Password"
1872
+ msgstr "Restablecer la contraseña"
1873
 
1874
  #: tpls/lost-password-form.php:35 tpls3/lost-password-form.php:30
 
 
1875
  msgid "Register"
1876
+ msgstr "Registro"
1877
 
1878
  #: tpls/lost-password-form.php:53
1879
  msgid "MAO: SENT!"
1880
+ msgstr "MAO: ¡ENVIADO!"
1881
 
1882
  #: tpls/lost-password-form.php:53
1883
  msgid "Password reset link sent to your email."
1884
  msgstr ""
1885
+ "Enlace de restablecimiento de contraseña enviado a tu correo electrónico."
1886
 
1887
+ #: tpls/lost-password-form.php:65 tpls/reset-password-form.php:55
1888
+ #: tpls/reset-password-form.php:74 tpls3/lost-password-form.php:47
1889
+ #: tpls3/reset-password-form.php:55 tpls3/reset-password-form.php:74
1890
  msgid "ERROR!"
1891
  msgstr "¡ERROR!"
1892
 
1893
  #: tpls/lost-password-form.php:65 tpls3/lost-password-form.php:47
1894
  msgid "Account not found."
1895
+ msgstr "Cuenta no encontrada."
1896
 
1897
  #: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
1898
  msgid "MAIL SENT!"
1899
+ msgstr "¡CORREO ENVIADO!"
1900
 
1901
  #: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
1902
  msgid "Please check your inbox."
1903
+ msgstr "Por favor, revisa tu bandeja de entrada."
1904
 
1905
+ #: tpls/reset-password-form.php:22 tpls/reset-password-form.php:27
1906
+ #: tpls3/reset-password-form.php:22 tpls3/reset-password-form.php:27
 
 
1907
  msgid "New Password"
1908
+ msgstr "Nueva contraseña"
1909
 
1910
+ #: tpls/reset-password-form.php:24 tpls3/reset-password-form.php:24
 
 
1911
  msgid "Please enter a new password"
1912
+ msgstr "Por favor, introduce una nueva contraseña"
1913
 
1914
+ #: tpls/reset-password-form.php:35 tpls3/reset-password-form.php:35
 
 
1915
  msgid "Update Password"
1916
+ msgstr "Actualizar la contraseña"
1917
 
1918
+ #: tpls/reset-password-form.php:46 tpls3/reset-password-form.php:46
1919
  msgid "Confirm password value must be same as the new password"
1920
  msgstr ""
1921
+ "El valor de la confirmación de la nueva contraseña y la nueva contraseña "
1922
+ "deben ser iguales"
1923
 
1924
+ #: tpls/reset-password-form.php:53 tpls/user-dashboard/edit-profile.php:16
1925
+ #: tpls3/reset-password-form.php:53 tpls3/user-dashboard/edit-profile.php:16
1926
  #: tpls3/wpdm-edit-user-profile.php:16
1927
  msgid "DONE!"
1928
+ msgstr "¡HECHO!"
1929
 
1930
+ #: tpls/reset-password-form.php:53 tpls3/reset-password-form.php:53
 
 
1931
  msgid "Password Updated"
1932
+ msgstr "Contraseña actualizada"
1933
 
1934
+ #: tpls/reset-password-form.php:53 tpls3/reset-password-form.php:53
 
 
1935
  msgid "Go to your account dashboard"
1936
+ msgstr "Ir al escritorio de tu cuenta"
1937
 
1938
+ #: tpls/reset-password-form.php:55 tpls3/reset-password-form.php:55
 
 
1939
  msgid "Password Update Failed"
1940
+ msgstr "Ha fallado la actualización de la contraseña"
1941
 
1942
  #: tpls/search-result.php:3 tpls/simple-search-form.php:5
1943
  #: tpls3/simple-search-form.php:5
1944
  msgid "Search Package"
1945
+ msgstr "Buscar paquetes"
1946
 
1947
  #: tpls/search-result.php:16 tpls/simple-search-form.php:18
1948
  #: tpls3/simple-search-form.php:18
1949
  msgid "Search Result For"
1950
+ msgstr "Resultados de la búsqueda de"
1951
 
1952
  #: tpls/search-result.php:17 tpls/search-result.php:21
1953
  #: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
1958
  #: tpls/shortcodes/toolbar.php:35 tpls/shortcodes/toolbar.php:69
1959
  #: tpls3/shortcodes/toolbar.php:35 tpls3/shortcodes/toolbar.php:69
1960
  msgid "Search Keyword..."
1961
+ msgstr "Buscar palabra clave…"
1962
 
1963
  #: tpls/shortcodes/toolbar.php:39 tpls/shortcodes/toolbar.php:73
1964
  #: tpls3/shortcodes/toolbar.php:39 tpls3/shortcodes/toolbar.php:73
 
 
1965
  msgid "Order By:"
1966
+ msgstr "Ordenar por:"
1967
 
1968
  #: tpls/shortcodes/toolbar.php:44 tpls/shortcodes/toolbar.php:78
1969
  #: tpls3/shortcodes/toolbar.php:44 tpls3/shortcodes/toolbar.php:78
 
 
1970
  msgid "Views"
1971
+ msgstr "Visitas"
1972
 
1973
  #: tpls/shortcodes/toolbar.php:49 tpls/shortcodes/toolbar.php:83
1974
  #: tpls3/shortcodes/toolbar.php:49 tpls3/shortcodes/toolbar.php:83
 
 
1975
  msgid "Order:"
1976
+ msgstr "Orden:"
1977
 
1978
  #: tpls/shortcodes/toolbar.php:50 tpls/shortcodes/toolbar.php:84
1979
  #: tpls3/shortcodes/toolbar.php:50 tpls3/shortcodes/toolbar.php:84
1980
  msgid "Descending"
1981
+ msgstr "Descendente"
1982
 
1983
  #: tpls/shortcodes/toolbar.php:51 tpls/shortcodes/toolbar.php:85
1984
  #: tpls3/shortcodes/toolbar.php:51 tpls3/shortcodes/toolbar.php:85
1985
  msgid "Ascending"
1986
+ msgstr "Ascendente"
1987
 
1988
  #: tpls/shortcodes/toolbar.php:55 tpls/shortcodes/toolbar.php:89
1989
  #: tpls3/shortcodes/toolbar.php:55 tpls3/shortcodes/toolbar.php:89
 
 
1990
  msgid "Apply Filter"
1991
+ msgstr "Aplicar el filtro"
1992
 
1993
  #: tpls/user-dashboard/edit-profile.php:13
1994
  #: tpls3/user-dashboard/edit-profile.php:13 tpls3/wpdm-edit-user-profile.php:13
1995
  msgid "SAVE FAILED!"
1996
+ msgstr "¡GUARDADO FALLIDO!"
1997
 
1998
  #: tpls/user-dashboard/edit-profile.php:24
1999
  #: tpls3/user-dashboard/edit-profile.php:24 tpls3/wpdm-edit-user-profile.php:24
2000
  msgid "Basic Profile"
2001
+ msgstr "Perfil básico"
2002
 
2003
  #: tpls/user-dashboard/edit-profile.php:27
2004
  #: tpls3/user-dashboard/edit-profile.php:27 tpls3/wpdm-edit-user-profile.php:27
2005
  msgid "Display name:"
2006
+ msgstr "Nombre para mostrar:"
2007
 
2008
  #: tpls/user-dashboard/edit-profile.php:28
2009
  #: tpls3/user-dashboard/edit-profile.php:28 tpls3/wpdm-edit-user-profile.php:28
2010
  msgid "PayPal Email:"
2011
+ msgstr "Correo electrónico de PayPal"
2012
 
2013
  #: tpls/user-dashboard/edit-profile.php:30
2014
  #: tpls3/user-dashboard/edit-profile.php:30 tpls3/wpdm-edit-user-profile.php:30
 
 
2015
  msgid "Username:"
2016
+ msgstr "Nombre de usuario:"
2017
 
2018
  #: tpls/user-dashboard/edit-profile.php:31
2019
  #: tpls3/user-dashboard/edit-profile.php:31 tpls3/wpdm-edit-user-profile.php:31
 
 
2020
  msgid "Email:"
2021
+ msgstr "Correo electrónico:"
2022
 
2023
  #: tpls/user-dashboard/edit-profile.php:33
2024
  #: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
 
 
2025
  msgid "New Password:"
2026
+ msgstr "Nueva contraseña:"
2027
 
2028
  #: tpls/user-dashboard/edit-profile.php:33
2029
  msgid "Use nothing if you don't want to change old password"
2030
+ msgstr "No usar nada si no quieres cambiar tu contraseña antigua"
2031
 
2032
  #: tpls/user-dashboard/edit-profile.php:34
2033
  #: tpls3/user-dashboard/edit-profile.php:34 tpls3/wpdm-edit-user-profile.php:34
 
 
2034
  msgid "Re-type New Password:"
2035
+ msgstr "Vuelve a escribir la nueva contraseña: "
2036
 
2037
  #: tpls/user-dashboard/profile.php:22 tpls3/user-dashboard/profile.php:7
2038
  msgid "User Level"
2045
 
2046
  #: tpls/user-dashboard/profile.php:42 tpls3/user-dashboard/profile.php:27
2047
  msgid "Today's Download"
2048
+ msgstr "Descargas de hoy"
2049
 
2050
  #: tpls/user-dashboard/profile.php:53 tpls3/user-dashboard/profile.php:35
2051
  msgid "Recommended Downloads"
2052
+ msgstr "Descargas recomendadas"
2053
 
2054
  #: tpls/user-dashboard/profile.php:110
2055
  msgid "My Favourites"
2056
+ msgstr "Mis favoritos"
2057
 
2058
  #: tpls/user-dashboard/profile.php:116
2059
  msgid "Remove"
2060
+ msgstr "Eliminar"
2061
 
2062
  #: tpls/user-dashboard/profile.php:141 tpls3/user-dashboard/profile.php:77
2063
  msgid "Last 5 Downloads"
2069
 
2070
  #: tpls/wpdm-all-downloads.php:39 tpls3/wpdm-all-downloads.php:113
2071
  msgid "Nothing _START_ to - sorry"
2072
+ msgstr "Nada _START_ a - Lo siento"
2073
 
2074
  #: tpls/wpdm-all-downloads.php:40 tpls3/wpdm-all-downloads.php:114
2075
  msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
2097
 
2098
  #: tpls/wpdm-all-downloads.php:50 tpls3/wpdm-all-downloads.php:124
2099
  msgid "First"
2100
+ msgstr "Primero"
2101
 
2102
  #: tpls/wpdm-all-downloads.php:51 tpls3/wpdm-all-downloads.php:125
2103
  msgid "Last"
2105
 
2106
  #: tpls/wpdm-all-downloads.php:56 tpls3/wpdm-all-downloads.php:130
2107
  msgid "activate to sort column ascending"
2108
+ msgstr "activar para ordenar columna de forma ascendente"
2109
 
2110
  #: tpls/wpdm-all-downloads.php:57 tpls3/wpdm-all-downloads.php:131
2111
  msgid "activate to sort column descending"
2112
+ msgstr "activar para ordenar columna de forma descendente"
2113
 
2114
  #: tpls/wpdm-all-downloads.php:61 tpls3/wpdm-all-downloads.php:135
2115
  msgid "All"
2121
 
2122
  #: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
2123
  msgid "download"
2124
+ msgstr "descarga"
2125
 
2126
  #: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
2127
  msgid "views"
2128
+ msgstr "vistas"
2129
 
2130
  #: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
2131
  msgid "view"
2132
+ msgstr "vista"
2133
 
2134
  #: tpls/wpdm-all-downloads.php:377 tpls3/wpdm-all-downloads.php:312
2135
  msgid "No Packages Found"
2136
+ msgstr "No se han encontrado paquetes"
2137
 
2138
  #: tpls/wpdm-asset.php:23 tpls3/wpdm-asset.php:23
 
 
2139
  msgid "Login to Download"
2140
+ msgstr "Accede para descargar"
2141
 
2142
  #: tpls/wpdm-edit-user-profile.php:9
 
 
2143
  msgid "View Profile"
2144
+ msgstr "Ver el perfil"
2145
 
2146
  #: tpls/wpdm-edit-user-profile.php:10
 
 
2147
  msgid "Public Profile Info"
2148
+ msgstr "Información pública del perfil"
2149
 
2150
  #: tpls/wpdm-edit-user-profile.php:19
2151
  msgid "Short Intro"
2152
+ msgstr "Introducción corta"
2153
 
2154
  #: tpls/wpdm-edit-user-profile.php:32
 
 
2155
  msgid "Banner URL"
2156
+ msgstr "URL del banner"
2157
 
2158
  #: tpls/wpdm-edit-user-profile.php:41
2159
  msgid "Profile Header Text Color"
2160
+ msgstr "Color del texto de la cabecera del perfil"
2161
 
2162
  #: tpls/wpdm-edit-user-profile.php:55
 
 
2163
  msgid "Payment Settings"
2164
+ msgstr "Ajustes del pago"
2165
 
2166
  #: tpls/wpdm-edit-user-profile.php:58
2167
  msgid "PayPal Email"
2168
+ msgstr "Correo electrónico de PayPal"
2169
 
2170
  #: tpls/wpdm-generate-password.php:30 tpls3/wpdm-generate-password.php:17
2171
  msgid "Select Options"
2172
+ msgstr "Seleccionar las opciones"
2173
 
2174
  #: tpls/wpdm-generate-password.php:34 tpls3/wpdm-generate-password.php:19
2175
  msgid "Number of passwords:"
2180
  msgstr "Número de caracteres para cada contraseña:"
2181
 
2182
  #: tpls/wpdm-generate-password.php:42
 
 
2183
  msgid "Valid Chars:"
2184
  msgstr "Caracteres válidos:"
2185
 
2186
  #: tpls/wpdm-generate-password.php:43
2187
  msgid "Small Letters"
2188
+ msgstr "Letras minúsculas"
2189
 
2190
  #: tpls/wpdm-generate-password.php:44
2191
  msgid "Capital Letters"
2192
+ msgstr "Letras mayúsculas"
2193
 
2194
  #: tpls/wpdm-generate-password.php:45
2195
  msgid "Numbers"
2196
+ msgstr "Números"
2197
 
2198
  #: tpls/wpdm-generate-password.php:46
2199
  msgid "Special Chars"
2200
+ msgstr "Caracteres especiales"
2201
 
2202
  #: tpls/wpdm-generate-password.php:55 tpls3/wpdm-generate-password.php:36
2203
  msgid "Generated Passwords"
2204
  msgstr "Contraseñas generadas"
2205
 
2206
  #: tpls/wpdm-generate-password.php:60
 
 
2207
  msgid "Insert Password(s)"
2208
+ msgstr "Insertar la(s) contraseña(s)"
2209
 
2210
  #: tpls/wpdm-login-form.php:58 tpls/wpdm-login-modal-form.php:65
2211
  #: tpls3/wpdm-login-form.php:97 tpls3/wpdm-login-modal-form.php:77
2215
  #: tpls/wpdm-login-form.php:59 tpls/wpdm-login-modal-form.php:66
2216
  #: tpls3/wpdm-login-form.php:98 tpls3/wpdm-login-modal-form.php:78
2217
  msgid "Forgot Password?"
2218
+ msgstr "¿Has olvidado la contraseña?"
2219
 
2220
  #: tpls/wpdm-login-form.php:70 tpls/wpdm-login-modal-form.php:92
2221
  #: tpls/wpdm-reg-form.php:59 tpls3/wpdm-login-form.php:105
2222
  #: tpls3/wpdm-login-modal-form.php:105 tpls3/wpdm-reg-form.php:62
2223
  msgid "Or connect using your social account"
2224
+ msgstr "O conecta usando tu cuenta social"
2225
 
2226
  #: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
2227
  #: tpls3/wpdm-login-form.php:116 tpls3/wpdm-login-modal-form.php:116
2228
  msgid "Don't have an account yet?"
2229
+ msgstr "¿Aún no tienes una cuenta?"
2230
 
2231
  #: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
2232
  #: tpls/wpdm-reg-form.php:50 tpls3/wpdm-login-form.php:116
2233
  #: tpls3/wpdm-login-modal-form.php:116 tpls3/wpdm-reg-form.php:53
 
 
2234
  msgid "Register Now"
2235
+ msgstr "Regístrate ahora"
2236
 
2237
  #: tpls/wpdm-login-form.php:107 tpls/wpdm-login-modal-form.php:116
2238
  #: tpls3/wpdm-login-form.php:136 tpls3/wpdm-login-modal-form.php:128
2239
  msgid "Logging In..."
2240
+ msgstr "Accediendo..."
2241
 
2242
  #: tpls/wpdm-login-form.php:113 tpls/wpdm-login-form.php:130
2243
  #: tpls/wpdm-login-modal-form.php:121 tpls3/wpdm-login-form.php:141
2244
  #: tpls3/wpdm-login-modal-form.php:133
2245
  msgid "LOGIN FAILED!"
2246
+ msgstr "¡ACCESO FALLIDO!"
2247
 
2248
  #: tpls/wpdm-login-modal-form.php:42 tpls3/wpdm-login-form.php:41
2249
  #: tpls3/wpdm-login-modal-form.php:42
2250
  msgid "Login Failed!"
2251
+ msgstr "¡Acceso fallido!"
2252
 
2253
  #: tpls/wpdm-reg-form.php:61 tpls3/wpdm-reg-form.php:64
2254
  msgid "Connect using your social account"
2255
+ msgstr "Conecta usando tu cuenta social"
2256
 
2257
  #: tpls/wpdm-reg-form.php:79 tpls3/wpdm-reg-form.php:82
2258
  msgid "Already have an account?"
2259
+ msgstr "¿Ya tienes una cuenta?"
2260
 
2261
  #: tpls/wpdm-reg-form.php:97 tpls3/wpdm-reg-form.php:100
2262
  msgid "Password did not match with the confirm password"
2263
+ msgstr "La contraseña no coincide con la contraseña de confirmación"
2264
 
2265
  #: tpls/wpdm-reg-form.php:125 tpls3/wpdm-reg-form.php:127
2266
  msgid "Signup Error:"
2267
+ msgstr "Error en el registro:"
2268
 
2269
  #: tpls/wpdm-reg-form.php:148 tpls3/wpdm-reg-form.php:145
2270
  msgid "Registration is disabled!"
2271
+ msgstr "¡El registro está desactivado!"
2272
 
2273
  #: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
2274
  msgid "Use nothing if you don\\'t want to change old password"
2275
+ msgstr "No introduzcas nada si no quieres cambiar la contraseña anterior"
2276
 
2277
  #: tpls3/user-dashboard/edit-profile.php:40 tpls3/wpdm-edit-user-profile.php:40
 
 
2278
  msgid "Description:"
2279
+ msgstr "Descripción:"
2280
 
2281
  #: tpls3/wpdm-generate-password.php:27
2282
  msgid "Valid chars:"
2299
 
2300
  #: widgets/class.CatPackages.php:80 widgets/class.ListPackages.php:93
2301
  msgid "Select Category:"
2302
+ msgstr "Seleccionar la categoría:"
2303
 
2304
  #: widgets/class.CatPackages.php:86 widgets/class.ListPackages.php:121
2305
  #: widgets/class.NewDownloads.php:55 widgets/class.TopDownloads.php:55
2307
  msgstr "Número de paquetes a mostrar:"
2308
 
2309
  #: widgets/class.Categories.php:131
 
 
2310
  msgid "Parent:"
2311
+ msgstr "Principal:"
2312
 
2313
  #: widgets/class.Categories.php:135
 
 
2314
  msgid "On Category Page:"
2315
+ msgstr "En la página de categorías:"
2316
 
2317
  #: widgets/class.Categories.php:137
2318
  msgid "Show all"
2319
+ msgstr "Mostrar todo"
2320
 
2321
  #: widgets/class.Categories.php:138
 
 
2322
  msgid "Show subcategories only"
2323
+ msgstr "Mostrar solo subcategorías"
2324
 
2325
  #: widgets/class.Categories.php:142
 
 
2326
  msgid "Style:"
2327
+ msgstr "Estilo:"
2328
 
2329
  #: widgets/class.Categories.php:149
2330
  msgid "Top Level Only"
2331
+ msgstr "Solo las de nivel superior"
2332
 
2333
  #: widgets/class.Categories.php:152
2334
  msgid "Hide widget when no category"
2335
+ msgstr "Ocultar el widget cuando no haya ninguna categoría"
2336
 
2337
  #: widgets/class.ListPackages.php:100
 
 
2338
  msgid "On Single Download Page"
2339
+ msgstr "En la página descarga individual"
2340
 
2341
  #: widgets/class.ListPackages.php:101
2342
  msgid "Show packages from current package category"
2343
+ msgstr "Mostrar los paquetes de la categoría de paquetes actual"
2344
 
2345
  #: widgets/class.PackageInfo.php:21
2346
  msgid "Total Views"
2347
+ msgstr "Visualizaciones totales"
2348
 
2349
  #: widgets/class.PackageInfo.php:24
2350
  msgid "Size"
2352
 
2353
  #: widgets/class.PackageInfo.php:114
2354
  msgid "Fields to Show:"
2355
+ msgstr "Campos a mostrar:"
2356
 
2357
  #: widgets/class.PackageInfo.php:118
2358
  msgid "View Count"
2359
+ msgstr "Recuento de visualizaciones"
2360
 
2361
  #: widgets/class.PackageInfo.php:122
 
 
2362
  msgid "Package Size"
2363
+ msgstr "Tamaño del paquete"
2364
 
2365
  #: widgets/class.PackageInfo.php:123
2366
  msgid "Download Link"
2367
  msgstr "Enlace de descarga"
2368
 
2369
  #: widgets/class.PackageInfo.php:124
 
 
2370
  msgid "Embed Download Options"
2371
+ msgstr "Opciones de incrustar descargas"
2372
 
2373
  #: widgets/class.PackageInfo.php:125
2374
  msgid "Style"
2376
 
2377
  #: widgets/class.PackageInfo.php:125
2378
  msgid "Tabular View"
2379
+ msgstr "Vista tabulada"
2380
 
2381
  #: widgets/class.PackageInfo.php:126
2382
  msgid "Show QR Code"
2383
+ msgstr "Mostrar el código QR"
2384
 
2385
  #: widgets/class.Search.php:20
 
 
2386
  msgid "Search..."
2387
+ msgstr "Buscar"
2388
 
2389
  #: widgets/class.Search.php:24
2390
  msgid ""
2391
  "Search result page was configured properly. Please create a page with "
2392
  "shortcode [wpdm_search_result] and select thee page from widget settings"
2393
  msgstr ""
2394
+ "La página de resultados de búsqueda se ha configurado correctamente. Por "
2395
+ "favor, crea una página con el shortcode [wpdm_search_result] y selecciona "
2396
+ "esa página desde los ajustes del widget"
2397
 
2398
  #: widgets/class.Search.php:44
 
 
2399
  msgid "Search Result Page"
2400
+ msgstr "Página de resultados de la búsqueda"
2401
 
2402
  #: widgets/class.Search.php:47
2403
  msgid ""
2404
  "Note: Create a page with short-code <code>[wpdm_search_result]</code> and "
2405
  "select that page as search redult page"
2406
  msgstr ""
2407
+ "Nota: Crea una página con el shortcode <code>[wpdm_search_result]</code> y "
2408
+ "selecciona esa página como página de resultados de busqueda."
2409
 
2410
  #: widgets/class.Tags.php:76
 
 
2411
  msgid "Sub Title:"
2412
+ msgstr "Subtítulo:"
2413
 
2414
  #: widgets/class.Tags.php:80
 
 
2415
  msgid "Number of tags to show:"
2416
+ msgstr "Número de etiquetas para mostrar:"
2417
 
2418
  #: wpdm-core.php:110
2419
  msgid "Select category"
2420
+ msgstr "Seleccionar la categoría"
2421
 
2422
  #: wpdm-core.php:194
2423
+ #, fuzzy
2424
+ #| msgid "Update Date"
2425
  msgid ": Update Available"
2426
+ msgstr "Fecha de actualización"
2427
 
2428
  #: wpdm-functions.php:136
2429
  msgid "Permission Denied"
2431
 
2432
  #: wpdm-functions.php:272
2433
  msgid "Captcha Verification Failed!"
2434
+ msgstr "¡La verificación CAPTCHA ha fallado!"
2435
 
2436
  #: wpdm-functions.php:311 wpdm-functions.php:315
2437
  msgid "Wrong Password! Try Again."
2438
+ msgstr "¡Contraseña errónea! Inténtalo de nuevo."
2439
 
2440
  #: wpdm-functions.php:328
2441
  msgid "Password usages limit exceeded"
2442
+ msgstr "Límite de usos de contraseña superado"
2443
 
2444
  #: wpdm-functions.php:1425
 
 
2445
  msgid "Select Image"
2446
+ msgstr "Seleccionar una imagen"
2447
 
2448
  #: wpdm-functions.php:1456 wpdm-functions.php:1560
2449
  msgid "SELECT IMAGE"
2450
+ msgstr "SELECCIONAR LA IMAGEN"
2451
 
2452
  #: wpdm-functions.php:1541
 
 
2453
  msgid "Uploading"
2454
+ msgstr "Subiendo"
2455
 
2456
  #: wpdm-start-download.php:6
2457
  msgid "Your IP address is blocked!"
2458
+ msgstr "¡Tu dirección IP está bloqueda!"
2459
 
2460
  #: wpdm-start-download.php:22
2461
  msgid "Package is not available!"
2463
 
2464
  #: wpdm-start-download.php:49
2465
  msgid "Sorry! Download is not available yet."
2466
+ msgstr "¡Lo siento! La descarga aún no está disponible."
2467
 
2468
  #: wpdm-start-download.php:66
2469
  msgid "Please activate \"zlib\" in your server"
2470
+ msgstr "Por favor, activa «zlib» en tu servidor"
2471
 
2472
  #: wpdm-start-download.php:102
2473
  msgid "No file found!"
2474
+ msgstr "¡No se han encontrado archivos!"
2475
 
2476
+ #~ msgid "You are not authorized!"
2477
+ #~ msgstr "¡No estás autorizado!"
2478
 
2479
+ #~ msgid "Shortcode"
2480
+ #~ msgstr "Shortcode"
2481
 
2482
+ #~ msgid "Install The Best WordPress Contact Form Builder"
2483
+ #~ msgstr "Instalar The Best WordPress Contact Form Builder"
 
 
2484
 
2485
+ #~ msgid "Install Download Manager Addons for Elementor"
2486
+ #~ msgstr "Instalar Download Manager Addons for Elementor"
2487
 
2488
+ #~ msgid "Install Gutenberg Blocks by WordPress Download Manager"
2489
+ #~ msgstr "Instalar Gutenberg Blocks by WordPress Download Manager"
2490
 
2491
+ #~ msgid "Create new page"
2492
+ #~ msgstr "Crear una nueva página"
2493
 
2494
+ #~ msgid "Go"
2495
+ #~ msgstr "Ir"
2496
 
2497
+ #~ msgid "Go To Page"
2498
+ #~ msgstr "Ir a la página"
2499
 
2500
+ #~ msgid ""
2501
+ #~ "If you are on Gutenberg Editor or elementor, you may use gutenberg block "
2502
+ #~ "or elementor add-on for wpdm to embed wpdm packages and categories or "
2503
+ #~ "generate another available layouts"
2504
  #~ msgstr ""
2505
+ #~ "Si estás en el editor Gutenberg o en Elementor, puedes usar el bloque de "
2506
+ #~ "Gutenberg o la extensión de Elementor para WPDM para incrustar paquetes y "
2507
+ #~ "categorías de WPDM o generar otros diseños disponibles"
2508
 
2509
+ #~ msgid "Copy"
2510
+ #~ msgstr "Copiar"
2511
 
2512
+ #~ msgid "Every 6 hours"
2513
+ #~ msgstr "Cada 6 horas"
2514
 
2515
+ #~ msgid "Select Files"
2516
+ #~ msgstr "Seleccionar los archivos"
2517
 
2518
+ #~ msgctxt "Uploader: Drop files here - or - Select Files"
2519
+ #~ msgid "or"
2520
+ #~ msgstr "o"
 
2521
 
2522
+ #~ msgid ""
2523
+ #~ "Manage, Protect and Track file downloads, and sell digital products from "
2524
+ #~ "your WordPress site. A complete digital asset management solution."
2525
+ #~ msgstr ""
2526
+ #~ "Gestiona, protege y rastrea las descargas de los archivos y vende "
2527
+ #~ "productos digitales desde tu sitio WordPress. Una completa solución de "
2528
+ #~ "gestión de recursos digitales."
2529
 
2530
+ #~ msgid "W3 Eden"
2531
+ #~ msgstr "W3 Eden"
2532
 
2533
+ #~ msgid "https://www.wpdownloadmanager.com/"
2534
+ #~ msgstr "https://www.wpdownloadmanager.com/"
2535
+
2536
+ #~ msgid "https://www.wpdownloadmanager.com/pricing/"
2537
+ #~ msgstr "https://www.wpdownloadmanager.com/pricing/"
2538
+
2539
+ #~ msgid "Select File"
2540
+ #~ msgstr "Seleccionar un archivo"
2541
+
2542
+ #~ msgctxt "Uploader: Drop file here - or - Select File"
2543
+ #~ msgid "or"
2544
+ #~ msgstr "o"
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: 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"
@@ -15,7 +15,7 @@ msgstr ""
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
@@ -64,34 +64,30 @@ msgstr ""
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
@@ -100,33 +96,41 @@ 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
 
 
 
 
 
 
 
 
 
130
  #: admin/menus/class.Settings.php:19
131
  msgid "Settings &lsaquo; Download Manager"
132
  msgstr "Réglages &lsaquo; Download Manager"
@@ -179,17 +183,15 @@ 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
@@ -197,10 +199,8 @@ 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"
@@ -258,10 +258,8 @@ msgid "Template Variables"
258
  msgstr "Variables de modèle"
259
 
260
  #: admin/tpls/email-template-editor.php:203
261
- #, fuzzy
262
- #| msgid "Template ID"
263
  msgid "Invalid template ID!"
264
- msgstr "ID du modèle"
265
 
266
  #: admin/tpls/emails-template.php:15
267
  msgid "Subscribers"
@@ -295,7 +293,7 @@ msgstr "Aucun fichier mis en ligne pour le moment !"
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"
@@ -326,16 +324,12 @@ msgstr ""
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"
@@ -353,14 +347,12 @@ msgid "Must Agree with Terms"
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:"
@@ -427,9 +419,9 @@ msgstr "Libellé du lien :"
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
@@ -451,7 +443,7 @@ 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&nbsp;Count:"
@@ -478,8 +470,8 @@ 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"
@@ -559,8 +551,8 @@ 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…"
@@ -705,16 +697,12 @@ msgstr ""
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 ""
@@ -722,6 +710,9 @@ msgid ""
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"
@@ -745,11 +736,11 @@ 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"
@@ -772,7 +763,7 @@ 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
@@ -780,6 +771,8 @@ 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"
@@ -787,11 +780,11 @@ 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"
@@ -852,19 +845,15 @@ 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"
@@ -934,7 +923,7 @@ msgstr "Page des détails"
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"
@@ -966,34 +955,28 @@ 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
@@ -1004,10 +987,8 @@ 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
@@ -1017,10 +998,8 @@ 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
@@ -1030,14 +1009,12 @@ 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
@@ -1054,6 +1031,8 @@ 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"
@@ -1117,7 +1096,7 @@ 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
@@ -1206,44 +1185,40 @@ msgstr "Ajouter une nouvelle catégorie"
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,65 +1226,61 @@ msgstr ""
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
@@ -1328,7 +1299,7 @@ msgstr ""
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
@@ -1337,80 +1308,79 @@ msgstr ""
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
@@ -1418,7 +1388,7 @@ msgstr "Sous-catégories"
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
@@ -1426,34 +1396,34 @@ msgstr "Titre"
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"
@@ -1472,8 +1442,7 @@ 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
 
@@ -1493,16 +1462,12 @@ 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"
@@ -1510,9 +1475,9 @@ 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
 
@@ -1528,61 +1493,55 @@ 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
@@ -1592,10 +1551,8 @@ 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!"
@@ -1610,7 +1567,7 @@ msgstr "Icône"
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"
@@ -1620,53 +1577,55 @@ msgstr "Limite de téléchargement dépassée"
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"
@@ -1712,28 +1671,20 @@ 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"
@@ -1741,46 +1692,38 @@ 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"
@@ -1792,11 +1735,11 @@ msgstr "Modifier votre profil."
1792
 
1793
  #: libs/class.UserDashboard.php:27
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!"
@@ -1812,23 +1755,19 @@ 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
@@ -1841,28 +1780,20 @@ 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
@@ -1871,173 +1802,143 @@ 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 navez 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 dinscription"
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
@@ -2058,52 +1959,42 @@ msgstr "Chargement"
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
@@ -2113,44 +2004,36 @@ msgstr "Profil de base"
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"
@@ -2171,11 +2054,11 @@ 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"
@@ -2255,46 +2138,36 @@ 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"
@@ -2309,36 +2182,32 @@ 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
@@ -2354,7 +2223,7 @@ msgstr "Mot de passe oublié ?"
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
@@ -2364,10 +2233,8 @@ msgstr "Vous n’avez pas encore de compte ?"
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
@@ -2377,10 +2244,8 @@ msgstr "Connexion en cours…"
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
@@ -2389,7 +2254,7 @@ 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?"
@@ -2397,11 +2262,11 @@ 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!"
@@ -2410,12 +2275,11 @@ msgstr "Les inscriptions sont désactivées !"
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:"
@@ -2446,50 +2310,40 @@ 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"
@@ -2508,20 +2362,16 @@ 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"
@@ -2533,43 +2383,40 @@ 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"
@@ -2629,61 +2476,64 @@ msgstr "Veuillez activer « zlib » sur votre serveur"
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
 
2674
- #~ msgid "Sign Up"
2675
- #~ msgstr "S’inscrire"
2676
 
2677
  #~ msgid "https://www.wpdownloadmanager.com/"
2678
  #~ msgstr "https://www.wpdownloadmanager.com/"
2679
 
2680
- #~ msgid "Manage, Protect and Track File Downloads from your WordPress site"
2681
- #~ msgstr ""
2682
- #~ "Gère, protège et surveille les téléchargements de fichiers réalisés à "
2683
- #~ "partir de votre site WordPress"
2684
-
2685
- #~ msgid "https://www.wpdownloadmanager.com/purchases/"
2686
- #~ msgstr "https://www.wpdownloadmanager.com/purchases/"
2687
 
2688
  #~ msgid "Select File"
2689
  #~ msgstr "Sélectionner le fichier"
4
  msgstr ""
5
  "Project-Id-Version: Plugins - WordPress Download Manager - Development "
6
  "(trunk)\n"
7
+ "POT-Creation-Date: 2021-04-18 01:35+0600\n"
8
+ "PO-Revision-Date: 2021-04-18 01:35+0600\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: fr\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
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:840
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
  msgid "Category Page Template"
74
+ msgstr "Modèle de page de catégorie"
75
 
76
  #: admin/menus/class.Categories.php:141 admin/menus/class.Categories.php:371
77
  msgid "Use Global"
78
+ msgstr "Utiliser partout"
79
 
80
  #: admin/menus/class.Categories.php:142 admin/menus/class.Categories.php:372
81
  msgid "Do Not Apply"
82
+ msgstr "Ne pas appliquer"
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 "Conserver le modèle actuel car il est fourni avec le thème actif"
87
 
88
  #: admin/menus/class.Categories.php:146 admin/menus/class.Categories.php:376
 
 
89
  msgid "Use Link Template"
90
+ msgstr "Utiliser le modèle de lien"
91
 
92
  #: admin/menus/class.Categories.php:159 admin/menus/class.Categories.php:389
93
  #: widgets/class.CatPackages.php:91 widgets/class.ListPackages.php:126
96
  msgstr "Modèle de lien :"
97
 
98
  #: admin/menus/class.Categories.php:165 admin/menus/class.Categories.php:395
 
 
99
  msgid "Items Per Page:"
100
+ msgstr "Éléments par page :"
101
 
102
  #: admin/menus/class.Categories.php:169 admin/menus/class.Categories.php:399
103
  msgid "Toolbar:"
104
+ msgstr "Barre d’outils :"
105
 
106
  #: admin/menus/class.Categories.php:171 admin/menus/class.Categories.php:401
107
  msgid "Show"
108
+ msgstr "Afficher"
109
 
110
  #: admin/menus/class.Categories.php:172 admin/menus/class.Categories.php:402
111
  msgid "Hide"
112
+ msgstr "Masquer"
113
 
114
  #: admin/menus/class.Categories.php:178 admin/menus/class.Categories.php:408
 
 
115
  msgid "Number of Columns"
116
+ msgstr "Nombre de colonnes"
117
 
118
+ #: admin/menus/class.Packages.php:208
119
+ msgid "Duplicate"
120
+ msgstr "Dupliquer"
121
+
122
+ #: admin/menus/class.Packages.php:209
123
  msgid "Direct Download"
124
  msgstr "Télécharger"
125
 
126
+ #: admin/menus/class.Packages.php:230
127
+ msgid "Embed Package"
128
+ msgstr "Paquet embarqué"
129
+
130
+ #: admin/menus/class.Packages.php:276
131
+ msgid "Close"
132
+ msgstr "Fermer"
133
+
134
  #: admin/menus/class.Settings.php:19
135
  msgid "Settings &lsaquo; Download Manager"
136
  msgstr "Réglages &lsaquo; Download Manager"
183
 
184
  #: admin/tpls/asset-manager-picker.php:9
185
  msgid "Asset Manager Picker"
186
+ msgstr "Sélecteur de ressources"
187
 
188
  #: admin/tpls/asset-manager-picker.php:693
 
 
189
  msgid "Server File Picker"
190
+ msgstr "Sélecteur de fichiers serveur"
191
 
192
  #: admin/tpls/asset-manager-picker.php:727
193
  #: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:186
194
+ #: admin/tpls/templates.php:347 tpls/asset-manager-ui.php:563
195
  #: tpls/user-dashboard/edit-profile.php:48 tpls/wpdm-edit-user-profile.php:64
196
  #: tpls3/asset-manager-ui.php:550 tpls3/user-dashboard/edit-profile.php:51
197
  #: tpls3/wpdm-edit-user-profile.php:51
199
  msgstr "Enregistrer les modifications"
200
 
201
  #: admin/tpls/asset-manager-picker.php:753
 
 
202
  msgid "Attach selected file"
203
+ msgstr "Joindre le fichier sélectionné"
204
 
205
  #: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
206
  msgid "Link Templates"
258
  msgstr "Variables de modèle"
259
 
260
  #: admin/tpls/email-template-editor.php:203
 
 
261
  msgid "Invalid template ID!"
262
+ msgstr "ID de modèle non valide !"
263
 
264
  #: admin/tpls/emails-template.php:15
265
  msgid "Subscribers"
293
  msgid "Drop file here"
294
  msgstr "Déposez le fichier ici"
295
 
296
+ #: admin/tpls/metaboxes/attach-file.php:68 tpls/asset-manager-ui.php:753
297
  #: tpls3/asset-manager-ui.php:738 wpdm-functions.php:1480
298
  msgid "Allowed Files"
299
  msgstr "Fichiers autorisés"
324
  "circle\"></i> Retiré !</div></div>"
325
 
326
  #: admin/tpls/metaboxes/attach-file.php:200
 
 
327
  msgid "Select from media library"
328
+ msgstr "Sélectionner depuis la bibliothèque de médias"
329
 
330
  #: admin/tpls/metaboxes/attach-file.php:232
 
 
331
  msgid "Select from server"
332
+ msgstr "Sélectionner à partir du serveur"
333
 
334
  #: admin/tpls/metaboxes/icons.php:5
335
  msgid "Icon URL"
347
  msgstr "Doit accepter les conditions d’utilisation"
348
 
349
  #: admin/tpls/metaboxes/lock-options.php:11
 
 
350
  msgid "Terms Page:"
351
+ msgstr "Page des termes :"
352
 
353
  #: admin/tpls/metaboxes/lock-options.php:12
354
  msgid "Use custom content below"
355
+ msgstr "Utiliser le contenu personnalisé ci-dessous"
356
 
357
  #: admin/tpls/metaboxes/lock-options.php:15
358
  msgid "Terms Title:"
419
  #: libs/class.FileList.php:138 libs/class.FileList.php:203
420
  #: libs/class.FileList.php:250 libs/class.FileList.php:305
421
  #: libs/class.Package.php:77 libs/class.Package.php:155
422
+ #: libs/class.Package.php:647 libs/class.Package.php:672
423
+ #: libs/class.Package.php:739 libs/class.Package.php:832
424
+ #: libs/class.Package.php:864 libs/class.Package.php:1309
425
  #: libs/class.PackageLocks.php:74 libs/class.PackageLocks.php:111
426
  #: tpls/lock-options-iframe.php:289 tpls/lock-options/password-lock.php:41
427
  #: tpls/lock-options/recaptcha-lock.php:24 tpls/wpdm-all-downloads.php:191
443
 
444
  #: admin/tpls/metaboxes/package-settings.php:40
445
  msgid "Unlimited"
446
+ msgstr "Illimité"
447
 
448
  #: admin/tpls/metaboxes/package-settings.php:46
449
  msgid "View&nbsp;Count:"
470
  msgstr "Clé passe-partout"
471
 
472
  #: admin/tpls/metaboxes/package-settings.php:100
473
+ msgid "Regenerate Master Key"
474
+ msgstr "Régénérer la clé maître"
475
 
476
  #: admin/tpls/metaboxes/package-settings.php:100
477
  msgid "This key can be used for direct download"
551
  msgstr "Expiré"
552
 
553
  #: admin/tpls/settings/addon-update.php:145 tpls/lost-password-form.php:59
554
+ #: tpls/reset-password-form.php:49 tpls/wpdm-reg-form.php:103
555
+ #: tpls3/lost-password-form.php:41 tpls3/reset-password-form.php:49
556
  #: tpls3/wpdm-reg-form.php:106
557
  msgid "Please Wait..."
558
  msgstr "Veuillez patienter…"
697
  "visiteur clique sur le lien de téléchargement"
698
 
699
  #: admin/tpls/settings/basic.php:178
 
 
700
  msgid "Mask Download Link"
701
+ msgstr "Masquer le lien de téléchargement"
702
 
703
  #: admin/tpls/settings/basic.php:179
 
 
704
  msgid "Unmask Download Link"
705
+ msgstr "Dé-masquer le lien de téléchargement"
706
 
707
  #: admin/tpls/settings/basic.php:180
708
  msgid ""
710
  "unmask download link, bots will be able the find any public download link "
711
  "easily."
712
  msgstr ""
713
+ "Choisissez cette option si vous souhaitez masquer/dé-masquer le lien de "
714
+ "téléchargement du fichier. Si vous dé-masquez le lien de téléchargement, les "
715
+ "robots seront en mesure de facilement trouver chaque lien de téléchargement."
716
 
717
  #: admin/tpls/settings/basic.php:184
718
  msgid "reCAPTCHA Lock Settings"
736
 
737
  #: admin/tpls/settings/basic.php:196
738
  msgid "Enable sign up form CAPTCHA validation"
739
+ msgstr "Activer la validation CAPTCHA dans le formulaire d’inscription"
740
 
741
  #: admin/tpls/settings/basic.php:200
742
  msgid "Enable sign in form CAPTCHA validation"
743
+ msgstr "Activer la validation CAPTCHA dans le formulaire de connexion"
744
 
745
  #: admin/tpls/settings/basic.php:212
746
  msgid "Misc Settings"
763
 
764
  #: admin/tpls/settings/basic.php:220
765
  msgid "Enable modal login form"
766
+ msgstr "Activer le formulaire de connexion dans une modale"
767
 
768
  #: admin/tpls/settings/basic.php:221
769
  #, php-format
771
  "%s will show the modal login form, <a target=\"_blank\" href=\"%s\">follow "
772
  "the docs</a> for moore details"
773
  msgstr ""
774
+ "%s affichera la fenêtre modale du formulaire de connexion, <a target=\"_blank"
775
+ "\" href=\"%s\">voir la documentation</a> pour plus de détails"
776
 
777
  #: admin/tpls/settings/basic.php:226
778
  msgid "Register Page"
780
 
781
  #: admin/tpls/settings/basic.php:229
782
  msgid "Enable email verification on signup"
783
+ msgstr "Activer la vérification d’e-mail à l’inscription"
784
 
785
  #: admin/tpls/settings/basic.php:230
786
  msgid "Login automatically after signup is completed"
787
+ msgstr "Connexion automatique une fois l’inscription terminée"
788
 
789
  #: admin/tpls/settings/basic.php:234
790
  msgid "Dashboard Page"
845
 
846
  #: admin/tpls/settings/user-interface.php:14
847
  msgid "Active Bootstrap Version"
848
+ msgstr "Version de Bootstrap active"
849
 
850
  #: admin/tpls/settings/user-interface.php:16
 
 
851
  msgid "Bootstrap 4"
852
+ msgstr "Bootstrap 4"
853
 
854
  #: admin/tpls/settings/user-interface.php:16
 
 
855
  msgid "Bootstrap 3"
856
+ msgstr "Bootstrap 3"
857
 
858
  #: admin/tpls/settings/user-interface.php:20
859
  msgid "Disable Style & Script"
923
  #: admin/tpls/settings/user-interface.php:125
924
  #: admin/tpls/settings/user-interface.php:155
925
  msgid "Border Radius"
926
+ msgstr "Rayon de bordure"
927
 
928
  #: admin/tpls/settings/user-interface.php:130
929
  msgid "Shortcode Page"
955
  msgstr "L’historique de téléchargement est vide."
956
 
957
  #: admin/tpls/stats/history.php:123
 
 
958
  msgid "From Date"
959
+ msgstr "Date de Début"
960
 
961
  #: admin/tpls/stats/history.php:133
962
  msgid "To Date"
963
+ msgstr "Date de Fin"
964
 
965
  #: admin/tpls/stats/history.php:143
 
 
966
  msgid "Users"
967
+ msgstr "Utilisateur·rice·s"
968
 
969
  #: admin/tpls/stats/history.php:172
 
 
970
  msgid "Packages"
971
+ msgstr "Paquets"
972
 
973
  #: admin/tpls/stats/history.php:198
974
  msgid "Filter"
975
+ msgstr "Filtrer"
976
 
977
  #: admin/tpls/stats/history.php:199
978
  msgid "Reset"
979
+ msgstr "Réinitialiser "
980
 
981
  #: admin/tpls/stats/history.php:221 tpls/user-dashboard/download-history.php:7
982
  #: tpls/user-dashboard/profile.php:115 tpls/user-dashboard/profile.php:145
987
 
988
  #: admin/tpls/stats/history.php:222 modules/strings.php:11
989
  #: widgets/class.PackageInfo.php:25 widgets/class.PackageInfo.php:121
 
 
990
  msgid "Version"
991
+ msgstr "Version"
992
 
993
  #: admin/tpls/stats/history.php:223 tpls/user-dashboard/download-history.php:8
994
  #: tpls/user-dashboard/profile.php:146
998
  msgstr "Heure de téléchargement"
999
 
1000
  #: admin/tpls/stats/history.php:224
 
 
1001
  msgid "User"
1002
+ msgstr "Utilisateur·rice"
1003
 
1004
  #: admin/tpls/stats/history.php:225 tpls/user-dashboard/download-history.php:9
1005
  #: tpls/user-dashboard/profile.php:147
1009
  msgstr "IP"
1010
 
1011
  #: admin/tpls/stats/history.php:226
 
 
1012
  msgid "Browser"
1013
+ msgstr "Navigateur"
1014
 
1015
  #: admin/tpls/stats/history.php:227
1016
  msgid "OS"
1017
+ msgstr "OS"
1018
 
1019
  #: admin/tpls/templates.php:19
1020
  #, php-format
1031
  "Please follow the <a target='_blank' href='%s'>documentation</a> to edit "
1032
  "exiting template files"
1033
  msgstr ""
1034
+ "Veuillez suivre <a target='_blank' href='%s'>la documentation</a> pour "
1035
+ "modifier les fichiers modèles existants."
1036
 
1037
  #: admin/tpls/templates.php:28
1038
  msgid "Template Name"
1096
  msgstr "Enregistrement…"
1097
 
1098
  #: download-manager.php:202 download-manager.php:214
1099
+ #: libs/class.CategoryHandler.php:327 libs/class.CategoryHandler.php:347
1100
  #: libs/class.ShortCodes.php:423 libs/class.UserProfile.php:20
1101
  #: tpls/shortcodes/toolbar.php:43 tpls/shortcodes/toolbar.php:77
1102
  #: tpls3/shortcodes/toolbar.php:43 tpls3/shortcodes/toolbar.php:77
1185
  msgid "New Category Name"
1186
  msgstr "Nom de la nouvelle catégorie"
1187
 
1188
+ #: libs/class.Apply.php:162 libs/class.Apply.php:250
1189
  msgid "Invalid CAPTCHA!"
1190
+ msgstr "CAPTCHA non valide !"
1191
 
1192
+ #: libs/class.Apply.php:196 tpls/wpdm-reg-form.php:112
1193
  #: tpls3/wpdm-reg-form.php:115
1194
  msgid "Success! Redirecting..."
1195
  msgstr "Réussi ! Redirection…"
1196
 
1197
+ #: libs/class.Apply.php:233
1198
  msgid "Something is Wrong! Please refresh the page and try again"
1199
  msgstr "Quelque chose ne va pas ! Veuillez rafraîchir la page et réessayer."
1200
 
1201
+ #: libs/class.Apply.php:263
1202
  msgid "Error: User registration is disabled!"
1203
  msgstr "Erreur : l’inscription d’utilisateurs est désactivée !"
1204
 
1205
+ #: libs/class.Apply.php:288
1206
  msgid "Username is Empty!"
1207
  msgstr "L’identifiant est vide !"
1208
 
1209
+ #: libs/class.Apply.php:303
 
 
1210
  msgid "Invalid email address!"
1211
+ msgstr "Adresse de messagerie non valide !"
1212
 
1213
+ #: libs/class.Apply.php:327
 
 
1214
  msgid "Passwords not matched!"
1215
+ msgstr "Les mots de passe ne correspondent pas !"
1216
 
1217
+ #: libs/class.Apply.php:404
1218
  msgid "Edit User"
1219
  msgstr "Modifier l’utilisateur·rice"
1220
 
1221
+ #: libs/class.Apply.php:423
1222
  msgid ""
1223
  "Your account has been created successfully and login info sent to your mail "
1224
  "address."
1226
  "Votre compte a bien été crée et les informations de connexion ont été "
1227
  "envoyées à votre adresse e-mail."
1228
 
1229
+ #: libs/class.Apply.php:425 libs/class.Apply.php:431
 
 
1230
  msgid "Your account has been created successfully."
1231
+ msgstr "Votre compte a bien été crée."
1232
 
1233
+ #: libs/class.Apply.php:449
 
 
1234
  msgid "Email already exist!"
1235
+ msgstr "L’e-mail existe déjà !"
1236
 
1237
+ #: libs/class.Apply.php:462
1238
  msgid "Username already exists."
1239
  msgstr "Cet identifiant existe déjà."
1240
 
1241
+ #: libs/class.Apply.php:524
1242
+ msgid "Password update is disabled for this user!"
1243
+ msgstr "La mise à jour du mot de passe est désactivée pour cet utilisateur !"
1244
+
1245
+ #: libs/class.Apply.php:532 libs/class.Apply.php:534
1246
  msgid "Session Expired! Please try again."
1247
+ msgstr "La session a expirée ! Veuillez réessayer."
1248
 
1249
+ #: libs/class.Apply.php:681
1250
  msgid "You don't have permission to download this file"
1251
  msgstr "Vous n‘avez pas le droit de télécharger ce fichier."
1252
 
1253
+ #: libs/class.Apply.php:688
1254
  msgid "Download link is expired. Please get new download link."
1255
  msgstr ""
1256
  "Le lien de téléchargement a expiré. Veuillez récupérer un nouveau lien de "
1257
  "téléchargement."
1258
 
1259
+ #: libs/class.Apply.php:690
1260
  msgid "Download link is expired or not valid. Please get new download link."
1261
  msgstr ""
1262
  "Le lien de téléchargement a expiré ou n’est pas valide. Veuillez récupérer "
1263
  "un nouveau lien de téléchargement."
1264
 
1265
+ #: libs/class.Apply.php:697
1266
  msgid "Stock Limit Reached"
1267
  msgstr "Nombre limite de téléchargement atteint"
1268
 
1269
+ #: libs/class.Apply.php:703
1270
  msgid "Invalid download link."
1271
  msgstr "Lien de téléchargement invalide."
1272
 
1273
  #: libs/class.AssetManager.php:156
 
 
1274
  msgid ""
1275
  "Download link is expired! Go back and Refresh the page to regenerate "
1276
  "download link"
1277
  msgstr ""
1278
+ "Le lien de téléchargement a expiré ! Revenez en arrière et actualisez la "
1279
+ "page pour régénérer le lien de téléchargement"
1280
 
1281
  #: libs/class.AssetManager.php:180
1282
  msgid "Asset Manager"
1283
+ msgstr "Gestionnaire de ressources"
1284
 
1285
  #: libs/class.AssetManager.php:197 libs/class.AssetManager.php:212
1286
  #: libs/class.AssetManager.php:234 libs/class.AssetManager.php:236
1299
  #: libs/class.AssetManager.php:515 libs/class.AssetManager.php:541
1300
  #: libs/class.AssetManager.php:543
1301
  msgid "Error! Session Expired. Try refreshing page."
1302
+ msgstr "Erreur ! La session a expirée. Essayez de rafraichir la page."
1303
 
1304
  #: libs/class.AssetManager.php:203 libs/class.AssetManager.php:218
1305
  #: libs/class.AssetManager.php:241 libs/class.AssetManager.php:300
1308
  #: libs/class.AssetManager.php:400 libs/class.AssetManager.php:477
1309
  #: libs/class.AssetManager.php:639
1310
  msgid "Error! Unauthorized Path."
1311
+ msgstr "Erreur ! Chemin non autorisé."
1312
 
1313
  #: libs/class.AssetManager.php:214 libs/class.AssetManager.php:392
 
 
1314
  msgid "Error! Unauthorized Access."
1315
+ msgstr "Erreur ! Accès non autorisé."
1316
 
1317
  #: libs/class.AssetManager.php:222 libs/class.AssetManager.php:479
1318
  #: libs/class.AssetManager.php:503 libs/class.AssetManager.php:522
1319
  #: libs/class.AssetManager.php:555
1320
  msgid "Error! FileType is not allowed."
1321
+ msgstr "Erreur ! Ce type de fichier n’est pas autorisé."
1322
 
1323
  #: libs/class.AssetManager.php:275 tpls/lost-password-form.php:33
1324
  #: tpls3/lost-password-form.php:28
1325
  msgid "Home"
1326
+ msgstr "Accueil"
1327
 
1328
  #: libs/class.AssetManager.php:295 libs/class.AssetManager.php:311
1329
  msgid "<b>Unauthorized Action!</b><br/>Execution is cancelled by the system."
1330
  msgstr ""
1331
+ "<b>Action non autorisée !</b><br/>L’exécution est annulée par le système."
1332
 
1333
  #: libs/class.AssetManager.php:527 libs/class.AssetManager.php:551
 
 
1334
  msgid "Invalid source path"
1335
+ msgstr "Chemin source non valide"
1336
 
1337
  #: libs/class.AssetManager.php:528 libs/class.AssetManager.php:552
1338
  msgid "Invalid destination path"
1339
+ msgstr "Chemin de destination non valide"
1340
 
1341
  #: libs/class.AssetManager.php:536
 
 
1342
  msgid "File moved successfully"
1343
+ msgstr "Le fichier a bien été modifié"
1344
 
1345
  #: libs/class.AssetManager.php:559
1346
  msgid "File copied successfully"
1347
+ msgstr "Le fichier a bien été copié"
1348
 
1349
  #: libs/class.AssetManager.php:606
1350
  msgid "Asset not found!"
1351
+ msgstr "Ressource non trouvée !"
1352
 
1353
  #: libs/class.AssetManager.php:638
1354
  msgid "Error! Only Administrator can execute this operation."
1355
+ msgstr "Erreur ! Seul l’administrateur peut exécuter cette opération."
1356
 
1357
  #: libs/class.AssetManager.php:640
1358
  msgid "Error! Invalid Destination Path."
1359
+ msgstr "Erreur ! Chemin de destination non valide."
1360
 
1361
  #: libs/class.AssetManager.php:641
 
 
1362
  msgid "Please activate \"zlib\" in your server to perform zip operations"
1363
+ msgstr ""
1364
+ "Veuillez activer « zlib » sur votre serveur pour effectuer les opérations de "
1365
+ "compression"
1366
 
1367
  #: libs/class.AssetManager.php:646
1368
  msgid "Unzipped successfully."
1369
+ msgstr "Décompressé avec succès."
1370
 
1371
  #: libs/class.AssetManager.php:648
1372
  msgid "Error! Couldn't open the zip file."
1373
+ msgstr "Erreur ! Impossible d’ouvrir le fichier zip."
1374
+
1375
+ #: libs/class.CategoryHandler.php:251
1376
+ msgid "Category doesn't exist"
1377
+ msgstr "La catégorie n’existe pas"
1378
 
1379
+ #: libs/class.CategoryHandler.php:327 wpdm-functions.php:823
1380
  msgid "Sub-Categories"
1381
  msgstr "Sous-catégories"
1382
 
1383
+ #: libs/class.CategoryHandler.php:346 libs/class.ShortCodes.php:422
1384
  #: modules/strings.php:18 tpls/shortcodes/toolbar.php:41
1385
  #: tpls/shortcodes/toolbar.php:75 tpls/wpdm-edit-user-profile.php:15
1386
  #: tpls3/shortcodes/toolbar.php:41 tpls3/shortcodes/toolbar.php:75
1388
  msgid "Title"
1389
  msgstr "Titre"
1390
 
1391
+ #: libs/class.CategoryHandler.php:348 libs/class.ShortCodes.php:424
1392
  #: tpls/shortcodes/toolbar.php:40 tpls/shortcodes/toolbar.php:74
1393
  #: tpls3/shortcodes/toolbar.php:40 tpls3/shortcodes/toolbar.php:74
1394
  #: widgets/class.PackageInfo.php:22 widgets/class.PackageInfo.php:119
1396
  msgid "Publish Date"
1397
  msgstr "Date de publication"
1398
 
1399
+ #: libs/class.CategoryHandler.php:349 libs/class.ShortCodes.php:425
1400
  #: tpls/shortcodes/toolbar.php:42 tpls/shortcodes/toolbar.php:76
1401
  #: tpls3/shortcodes/toolbar.php:42 tpls3/shortcodes/toolbar.php:76
1402
  #: widgets/class.PackageInfo.php:120 wpdm-functions.php:844
1403
  msgid "Update Date"
1404
  msgstr "Date de mise à jour"
1405
 
1406
+ #: libs/class.CategoryHandler.php:350 libs/class.ShortCodes.php:426
1407
  #: wpdm-functions.php:845
1408
  msgid "Asc"
1409
  msgstr "Asc."
1410
 
1411
+ #: libs/class.CategoryHandler.php:351 libs/class.ShortCodes.php:427
1412
  #: wpdm-functions.php:846
1413
  msgid "Desc"
1414
  msgstr "Desc."
1415
 
1416
+ #: libs/class.CategoryHandler.php:352 libs/class.ShortCodes.php:428
1417
  #: wpdm-functions.php:847
1418
  msgid "Search"
1419
  msgstr "Rechercher"
1420
 
1421
+ #: libs/class.CategoryHandler.php:353 libs/class.ShortCodes.php:429
1422
  #: wpdm-functions.php:848
1423
  msgid "Order"
1424
  msgstr "Tri"
1425
 
1426
+ #: libs/class.CategoryHandler.php:354 libs/class.ShortCodes.php:430
1427
  #: wpdm-functions.php:849
1428
  msgid "Order By"
1429
  msgstr "Trier par"
1442
  msgstr "Bienvenue sur %s"
1443
 
1444
  #: libs/class.Email.php:65
1445
+ #, php-format
 
1446
  msgid "[ %s ] New User Registration"
1447
  msgstr "[%s] Inscription d’un·e nouvel·le utilisateur·rice"
1448
 
1462
  msgstr "Demande de réinitialisation de votre mot de passe pour le site %s"
1463
 
1464
  #: libs/class.Email.php:83
 
 
1465
  msgid "Email Lock Notification"
1466
+ msgstr "Notification pour un verrouillage par e-mail"
1467
 
1468
  #: libs/class.Email.php:86
 
 
1469
  msgid "Download [#package_name#]"
1470
+ msgstr "Téléchargement de [#package_name#]"
1471
 
1472
  #: libs/class.Email.php:93 wpdm-core.php:192
1473
  msgid "New Package Notification"
1475
 
1476
  #: libs/class.Email.php:96
1477
  msgid "New Package is Added By [#name#]"
1478
+ msgstr "Un nouveau paquet a été ajouté par [#name#]"
1479
 
1480
+ #: libs/class.Email.php:261
1481
  msgid "Sample Package Name"
1482
  msgstr "Exemple de nom de paquet"
1483
 
1493
  msgstr "Action"
1494
 
1495
  #: libs/class.MediaAccessControl.php:60
 
 
1496
  msgid "<b>Error:</b> Wrong Password! Try Again."
1497
+ msgstr "<b>Erreur :</b> Mot de passe incorrect ! Veuillez réessayer."
1498
 
1499
  #: libs/class.MediaAccessControl.php:84
1500
  msgid "Protected Media File"
1501
+ msgstr "Fichier média protégé"
1502
 
1503
  #: libs/class.MediaAccessControl.php:84
1504
  msgid "You are not allowed to access the media file"
1505
+ msgstr "Vous n’êtes pas autorisé·e à accéder au fichier média"
1506
 
1507
  #: libs/class.MediaAccessControl.php:160
1508
  msgid "This file is not protected."
1509
+ msgstr "Ce fichier n’est pas protégé."
1510
 
1511
  #: libs/class.MediaAccessControl.php:163
1512
  msgid "Protect this file"
1513
+ msgstr "Protéger ce fichier"
1514
 
1515
  #: libs/class.MediaAccessControl.php:168
1516
  msgid "This file is protected"
1517
+ msgstr "Ce fichier est protégé"
1518
 
1519
  #: libs/class.MediaAccessControl.php:170
1520
  msgid "Block Direct Access"
1521
+ msgstr "Bloquer l’accès direct"
1522
 
1523
  #: libs/class.MediaAccessControl.php:173
1524
  msgid "Remove Protection"
1525
+ msgstr "Retirer la protection"
1526
 
1527
  #: libs/class.MediaAccessControl.php:207 libs/class.MediaAccessControl.php:222
1528
  msgid "This file is not protected yet!"
1529
+ msgstr "Ce fichier n’est pas encore protégé !"
1530
 
1531
  #: libs/class.MediaAccessControl.php:209 libs/class.MediaAccessControl.php:224
1532
  #: libs/class.MediaAccessControl.php:267
1533
  msgid "Checking status..."
1534
+ msgstr "Vérification de l’état…"
1535
 
1536
  #: libs/class.MediaHandler.php:17
 
 
1537
  msgid "Download Manager"
1538
+ msgstr "Download Manager"
1539
 
1540
  #: libs/class.Messages.php:103
 
 
1541
  msgid "Download Limit Exceeded!"
1542
+ msgstr "Limite de téléchargement dépassée !"
1543
 
1544
+ #: libs/class.Messages.php:111 libs/class.Package.php:934
1545
  #: libs/class.ShortCodes.php:142 tpls/lost-password-form.php:34
1546
  #: tpls/wpdm-login-form.php:63 tpls/wpdm-login-modal-form.php:75
1547
  #: tpls/wpdm-reg-form.php:79 tpls3/lost-password-form.php:29
1551
  msgstr "Se connecter"
1552
 
1553
  #: libs/class.Messages.php:119
 
 
1554
  msgid "Access Denied"
1555
+ msgstr "Accès refusé"
1556
 
1557
  #: libs/class.Package.php:28
1558
  msgid "ID missing!"
1567
  msgid "Thumbnail"
1568
  msgstr "Miniature"
1569
 
1570
+ #: libs/class.Package.php:169 libs/class.Package.php:656 wpdm-functions.php:103
1571
  #: wpdm-start-download.php:24
1572
  msgid "Download Limit Exceeded"
1573
  msgstr "Limite de téléchargement dépassée"
1577
  msgid "DOWNLOAD ERROR"
1578
  msgstr "ERREUR DE TÉLÉCHARGEMENT"
1579
 
1580
+ #: libs/class.Package.php:177 libs/class.Package.php:660
1581
+ #: libs/class.Package.php:888 wpdm-functions.php:107
1582
  msgid "Download was expired on"
1583
  msgstr "Le téléchargement a expiré le"
1584
 
1585
+ #: libs/class.Package.php:185 libs/class.Package.php:667
1586
+ #: libs/class.Package.php:894 wpdm-functions.php:114
1587
  msgid "Download will be available from "
1588
  msgstr "Ce téléchargement sera disponible à partir du "
1589
 
1590
+ #: libs/class.Package.php:225
1591
  msgid "Terms and Conditions"
1592
  msgstr "Conditions générales d’utilisation"
1593
 
1594
+ #: libs/class.Package.php:227
 
 
1595
  msgid "I Agree With Terms and Conditions"
1596
+ msgstr "J’accepte les conditions générales"
1597
 
1598
+ #: libs/class.Package.php:464
1599
  msgid "No File Attached!"
1600
  msgstr "Aucun fichier joint !"
1601
 
1602
+ #: libs/class.Package.php:662 libs/class.Package.php:669
1603
+ #: libs/class.Package.php:679 wpdm-functions.php:109 wpdm-functions.php:116
1604
  #: wpdm-functions.php:126
1605
  msgid "Download:"
1606
  msgstr "Téléchargement :"
1607
 
1608
+ #: libs/class.Package.php:761 wpdm-functions.php:208
1609
  msgid "Download limit exceeded!"
1610
  msgstr "Limite de téléchargement dépassée !"
1611
 
1612
+ #: libs/class.Package.php:823
1613
  msgid "Verify CAPTCHA to Download"
1614
  msgstr "Validez le CAPTCHA pour télécharger"
1615
 
1616
+ #: libs/class.Package.php:889 libs/class.Package.php:895
1617
+ #: libs/class.Package.php:907
1618
  msgid "DOWNLOAD ERROR:"
1619
  msgstr "ERREUR DE TÉLÉCHARGEMENT :"
1620
 
1621
+ #: libs/class.Package.php:983
1622
  msgid "Limit Over!"
1623
  msgstr "Limite atteinte !"
1624
 
1625
+ #: libs/class.Package.php:1392
1626
+ msgid "Sample Package"
1627
+ msgstr "Paquet d’exemple"
1628
+
1629
  #: libs/class.PackageLocks.php:44 tpls/lock-options/password-lock.php:11
1630
  #: tpls3/lock-options/password-lock.php:11
1631
  msgid "Enter Correct Password to Download"
1671
  msgstr "L’ouverture du fichier a échouée !"
1672
 
1673
  #: libs/class.User.php:41
 
 
1674
  msgid "First name"
1675
  msgstr "Prénom"
1676
 
1677
  #: libs/class.User.php:41
 
 
1678
  msgid "Your First Name"
1679
+ msgstr "Votre prénom"
1680
 
1681
  #: libs/class.User.php:42
 
 
1682
  msgid "Last name"
1683
+ msgstr "Nom de famille"
1684
 
1685
  #: libs/class.User.php:42
 
 
1686
  msgid "Your Last Name"
1687
+ msgstr "Votre nom"
1688
 
1689
  #: libs/class.User.php:47
1690
  msgid "Username"
1692
 
1693
  #: libs/class.User.php:49
1694
  msgid "User Login ID"
1695
+ msgstr "Votre identifiant de connexion utilisateur"
1696
 
1697
  #: libs/class.User.php:53
 
 
1698
  msgid "Email"
1699
+ msgstr "E-mail"
1700
 
1701
  #: libs/class.User.php:55
 
 
1702
  msgid "Your Email Address"
1703
+ msgstr "Votre adresse e-mail"
1704
 
1705
  #: libs/class.User.php:62
1706
  msgid "Be Secure"
1707
+ msgstr "Être sécurisé"
1708
 
1709
+ #: libs/class.User.php:63 tpls/reset-password-form.php:31
1710
+ #: tpls3/reset-password-form.php:31
1711
  msgid "Confirm Password"
1712
  msgstr "Confirmation du mot de passe"
1713
 
1714
  #: libs/class.User.php:63
1715
  msgid "Do Not Forget"
1716
+ msgstr "Ne pas oublier"
1717
 
1718
  #: libs/class.User.php:86
 
 
1719
  msgid "Login ID"
1720
+ msgstr "ID de connexion"
1721
 
1722
  #: libs/class.User.php:88 tpls/lost-password-form.php:23
1723
  #: tpls/lost-password-form.php:24 tpls3/lost-password-form.php:20
1724
  #: tpls3/wpdm-login-form.php:55 tpls3/wpdm-login-modal-form.php:55
 
 
1725
  msgid "Username or Email"
1726
+ msgstr "Identifiant ou e-mail"
1727
 
1728
  #: libs/class.UserDashboard.php:17
1729
  msgid "Profile"
1735
 
1736
  #: libs/class.UserDashboard.php:27
1737
  msgid "Account"
1738
+ msgstr "Compte"
1739
 
1740
  #: libs/class.UserProfile.php:21
1741
  msgid "Favourites"
1742
+ msgstr "Mes favoris"
1743
 
1744
  #: modules/server-file-browser.php:8
1745
  msgid "Not Allowed!"
1755
 
1756
  #: modules/strings.php:12
1757
  msgid "Stock"
1758
+ msgstr "Stock"
1759
 
1760
  #: modules/strings.php:13
1761
  msgid "File Size"
1762
  msgstr "Taille du fichier"
1763
 
1764
  #: modules/strings.php:14
 
 
1765
  msgid "File Type"
1766
+ msgstr "Type de fichier"
1767
 
1768
  #: modules/strings.php:15
 
 
1769
  msgid "File Count"
1770
+ msgstr "Nombre de fichiers"
1771
 
1772
  #: modules/strings.php:16 tpls/wpdm-all-downloads.php:190
1773
  #: tpls3/wpdm-all-downloads.php:159
1780
 
1781
  #: modules/strings.php:19 tpls/wpdm-edit-user-profile.php:47
1782
  #: tpls/wpdm-edit-user-profile.php:48
 
 
1783
  msgid "Description"
1784
+ msgstr "Description"
1785
 
1786
  #: modules/strings.php:20
 
 
1787
  msgid "Package Info"
1788
+ msgstr "Informations sur le paquet"
1789
 
1790
  #: modules/strings.php:21
 
 
1791
  msgid "Attached Files"
1792
+ msgstr "Fichiers joints"
1793
 
1794
  #: modules/strings.php:22
 
 
1795
  msgid "Total Files"
1796
+ msgstr "Nombre total de fichiers"
1797
 
1798
  #: modules/strings.php:23 tpls/wpdm-all-downloads.php:318
1799
  #: tpls3/wpdm-all-downloads.php:260
1802
 
1803
  #: modules/strings.php:24
1804
  msgid "Buy Now"
1805
+ msgstr "Acheter maintenant"
1806
 
1807
  #: modules/strings.php:25
1808
  msgid "Price"
1809
  msgstr "Prix"
1810
 
1811
  #: tpls/already-logged-in.php:15 tpls3/already-logged-in.php:15
 
 
1812
  msgid "Welcome"
1813
+ msgstr "Bienvenue"
1814
 
1815
  #: tpls/already-logged-in.php:17 tpls3/already-logged-in.php:17
1816
  msgid "You are already logged in."
1817
  msgstr "Vous êtes déjà connecté."
1818
 
1819
  #: tpls/already-logged-in.php:21 tpls3/already-logged-in.php:21
 
 
1820
  msgid "Dashboard"
1821
+ msgstr "Tableau de bord"
1822
 
1823
+ #: tpls/asset-manager-ui.php:513 tpls3/asset-manager-ui.php:500
 
 
1824
  msgid "New Folder"
1825
+ msgstr "Nouveau dossier"
1826
 
1827
+ #: tpls/asset-manager-ui.php:515 tpls/asset-manager-ui.php:721
1828
  #: tpls3/asset-manager-ui.php:502 tpls3/asset-manager-ui.php:706
 
 
1829
  msgid "Upload File"
1830
+ msgstr "Téléverser un fichier"
1831
 
1832
+ #: tpls/asset-manager-ui.php:521 tpls3/asset-manager-ui.php:508
1833
  msgid "Digital Asset Manager"
1834
+ msgstr "Gestionnaire de ressources numériques"
1835
 
1836
+ #: tpls/asset-manager-ui.php:624 tpls3/asset-manager-ui.php:611
 
 
1837
  msgid "Copy Shortcode"
1838
+ msgstr "Copier le code court"
1839
 
1840
+ #: tpls/asset-manager-ui.php:728 tpls3/asset-manager-ui.php:713
 
 
1841
  msgid "Drop files here"
1842
+ msgstr "Déposez vos fichiers ici"
1843
 
1844
+ #: tpls/asset-manager-ui.php:835 tpls3/asset-manager-ui.php:820
1845
  msgid "Authorized User Groups:"
1846
+ msgstr "Groupes utilisateur autorisés :"
1847
 
1848
+ #: tpls/asset-manager-ui.php:857 tpls3/asset-manager-ui.php:842
 
 
1849
  msgid "Authorized Users:"
1850
+ msgstr "Utilisateurs et utilisatrices autorisé·e·s :"
1851
 
1852
  #: tpls/asset-viewer.php:6
 
 
1853
  msgid "You do not have access to this asset"
1854
+ msgstr "Vous navez pas accès à cette ressource"
1855
 
1856
  #: tpls/lock-options-iframe.php:289 tpls3/lock-options-iframe.php:243
1857
  msgid "Buy"
1858
  msgstr "Acheter"
1859
 
1860
  #: tpls/lost-password-form.php:17 tpls3/lost-password-form.php:15
 
 
1861
  msgid "Lost Password?"
1862
+ msgstr "Mot de passe perdu ?"
1863
 
1864
  #: tpls/lost-password-form.php:19 tpls3/lost-password-form.php:17
1865
  msgid ""
1866
  "Please enter your username or email address. You will receive a link to "
1867
  "create a new password via email."
1868
  msgstr ""
1869
+ "Veuillez saisir votre identifiant ou votre adresse de messagerie. Vous "
1870
+ "recevrez un lien pour créer un nouveau mot de passe par e-mail."
1871
 
1872
  #: tpls/lost-password-form.php:29 tpls3/lost-password-form.php:24
 
 
1873
  msgid "Reset Password"
1874
+ msgstr "Réinitialiser le mot de passe"
1875
 
1876
  #: tpls/lost-password-form.php:35 tpls3/lost-password-form.php:30
 
 
1877
  msgid "Register"
1878
+ msgstr "Sinscrire"
1879
 
1880
  #: tpls/lost-password-form.php:53
1881
  msgid "MAO: SENT!"
1882
+ msgstr "MAO : envoyé !"
1883
 
1884
  #: tpls/lost-password-form.php:53
1885
  msgid "Password reset link sent to your email."
1886
+ msgstr "Lien de réinitialisation du mot de passe envoyé à votre e-mail."
1887
 
1888
+ #: tpls/lost-password-form.php:65 tpls/reset-password-form.php:55
1889
+ #: tpls/reset-password-form.php:74 tpls3/lost-password-form.php:47
1890
+ #: tpls3/reset-password-form.php:55 tpls3/reset-password-form.php:74
1891
  msgid "ERROR!"
1892
  msgstr "ERREUR !"
1893
 
1894
  #: tpls/lost-password-form.php:65 tpls3/lost-password-form.php:47
1895
  msgid "Account not found."
1896
+ msgstr "Compte non trouvé."
1897
 
1898
  #: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
1899
  msgid "MAIL SENT!"
1900
+ msgstr "E-MAIL ENVOYÉ !"
1901
 
1902
  #: tpls/lost-password-form.php:70 tpls3/lost-password-form.php:51
1903
  msgid "Please check your inbox."
1904
+ msgstr "Veuillez vérifier votre boîte de réception."
1905
 
1906
+ #: tpls/reset-password-form.php:22 tpls/reset-password-form.php:27
1907
+ #: tpls3/reset-password-form.php:22 tpls3/reset-password-form.php:27
 
 
1908
  msgid "New Password"
1909
+ msgstr "Nouveau mot de passe"
1910
 
1911
+ #: tpls/reset-password-form.php:24 tpls3/reset-password-form.php:24
 
 
1912
  msgid "Please enter a new password"
1913
+ msgstr "Veuillez saisir un nouveau mot de passe"
1914
 
1915
+ #: tpls/reset-password-form.php:35 tpls3/reset-password-form.php:35
 
 
1916
  msgid "Update Password"
1917
+ msgstr "Mettre à jour le mot de passe"
1918
 
1919
+ #: tpls/reset-password-form.php:46 tpls3/reset-password-form.php:46
1920
  msgid "Confirm password value must be same as the new password"
1921
  msgstr ""
1922
+ "La valeur de confirmation du mot passe doit être la même que celle du "
1923
+ "nouveau mot de passe"
1924
 
1925
+ #: tpls/reset-password-form.php:53 tpls/user-dashboard/edit-profile.php:16
1926
+ #: tpls3/reset-password-form.php:53 tpls3/user-dashboard/edit-profile.php:16
1927
  #: tpls3/wpdm-edit-user-profile.php:16
1928
  msgid "DONE!"
1929
+ msgstr "TERMINÉ !"
1930
 
1931
+ #: tpls/reset-password-form.php:53 tpls3/reset-password-form.php:53
 
 
1932
  msgid "Password Updated"
1933
+ msgstr "Mot de passe mis à jour"
1934
 
1935
+ #: tpls/reset-password-form.php:53 tpls3/reset-password-form.php:53
 
 
1936
  msgid "Go to your account dashboard"
1937
+ msgstr "Aller vers le tableau de bord de votre compte"
1938
 
1939
+ #: tpls/reset-password-form.php:55 tpls3/reset-password-form.php:55
 
 
1940
  msgid "Password Update Failed"
1941
+ msgstr "La mise à jour du mot de passe a échouée"
1942
 
1943
  #: tpls/search-result.php:3 tpls/simple-search-form.php:5
1944
  #: tpls3/simple-search-form.php:5
1959
  #: tpls/shortcodes/toolbar.php:35 tpls/shortcodes/toolbar.php:69
1960
  #: tpls3/shortcodes/toolbar.php:35 tpls3/shortcodes/toolbar.php:69
1961
  msgid "Search Keyword..."
1962
+ msgstr "Rechercher mot-clé…"
1963
 
1964
  #: tpls/shortcodes/toolbar.php:39 tpls/shortcodes/toolbar.php:73
1965
  #: tpls3/shortcodes/toolbar.php:39 tpls3/shortcodes/toolbar.php:73
 
 
1966
  msgid "Order By:"
1967
+ msgstr "Trier par :"
1968
 
1969
  #: tpls/shortcodes/toolbar.php:44 tpls/shortcodes/toolbar.php:78
1970
  #: tpls3/shortcodes/toolbar.php:44 tpls3/shortcodes/toolbar.php:78
 
 
1971
  msgid "Views"
1972
+ msgstr "Vues"
1973
 
1974
  #: tpls/shortcodes/toolbar.php:49 tpls/shortcodes/toolbar.php:83
1975
  #: tpls3/shortcodes/toolbar.php:49 tpls3/shortcodes/toolbar.php:83
 
 
1976
  msgid "Order:"
1977
+ msgstr "Ordre :"
1978
 
1979
  #: tpls/shortcodes/toolbar.php:50 tpls/shortcodes/toolbar.php:84
1980
  #: tpls3/shortcodes/toolbar.php:50 tpls3/shortcodes/toolbar.php:84
1981
  msgid "Descending"
1982
+ msgstr "Décroissant"
1983
 
1984
  #: tpls/shortcodes/toolbar.php:51 tpls/shortcodes/toolbar.php:85
1985
  #: tpls3/shortcodes/toolbar.php:51 tpls3/shortcodes/toolbar.php:85
1986
  msgid "Ascending"
1987
+ msgstr "Croissant"
1988
 
1989
  #: tpls/shortcodes/toolbar.php:55 tpls/shortcodes/toolbar.php:89
1990
  #: tpls3/shortcodes/toolbar.php:55 tpls3/shortcodes/toolbar.php:89
 
 
1991
  msgid "Apply Filter"
1992
+ msgstr "Appliquer le filtre"
1993
 
1994
  #: tpls/user-dashboard/edit-profile.php:13
1995
  #: tpls3/user-dashboard/edit-profile.php:13 tpls3/wpdm-edit-user-profile.php:13
 
 
1996
  msgid "SAVE FAILED!"
1997
+ msgstr "L’ENREGISTREMENT A ÉCHOUÉ !"
1998
 
1999
  #: tpls/user-dashboard/edit-profile.php:24
2000
  #: tpls3/user-dashboard/edit-profile.php:24 tpls3/wpdm-edit-user-profile.php:24
2004
  #: tpls/user-dashboard/edit-profile.php:27
2005
  #: tpls3/user-dashboard/edit-profile.php:27 tpls3/wpdm-edit-user-profile.php:27
2006
  msgid "Display name:"
2007
+ msgstr "Nom affiché :"
2008
 
2009
  #: tpls/user-dashboard/edit-profile.php:28
2010
  #: tpls3/user-dashboard/edit-profile.php:28 tpls3/wpdm-edit-user-profile.php:28
2011
  msgid "PayPal Email:"
2012
+ msgstr "E-mail PayPal :"
2013
 
2014
  #: tpls/user-dashboard/edit-profile.php:30
2015
  #: tpls3/user-dashboard/edit-profile.php:30 tpls3/wpdm-edit-user-profile.php:30
 
 
2016
  msgid "Username:"
2017
+ msgstr "Identifiant :"
2018
 
2019
  #: tpls/user-dashboard/edit-profile.php:31
2020
  #: tpls3/user-dashboard/edit-profile.php:31 tpls3/wpdm-edit-user-profile.php:31
 
 
2021
  msgid "Email:"
2022
+ msgstr "E-mail :"
2023
 
2024
  #: tpls/user-dashboard/edit-profile.php:33
2025
  #: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
 
 
2026
  msgid "New Password:"
2027
+ msgstr "Nouveau mot de passe :"
2028
 
2029
  #: tpls/user-dashboard/edit-profile.php:33
2030
  msgid "Use nothing if you don't want to change old password"
2031
+ msgstr "Ne rien saisir si vous ne voulez pas modifier votre mot de passe"
2032
 
2033
  #: tpls/user-dashboard/edit-profile.php:34
2034
  #: tpls3/user-dashboard/edit-profile.php:34 tpls3/wpdm-edit-user-profile.php:34
 
 
2035
  msgid "Re-type New Password:"
2036
+ msgstr "Saisissez une nouvelle fois votre nouveau mot de passe :"
2037
 
2038
  #: tpls/user-dashboard/profile.php:22 tpls3/user-dashboard/profile.php:7
2039
  msgid "User Level"
2054
 
2055
  #: tpls/user-dashboard/profile.php:110
2056
  msgid "My Favourites"
2057
+ msgstr "Mes favoris"
2058
 
2059
  #: tpls/user-dashboard/profile.php:116
2060
  msgid "Remove"
2061
+ msgstr "Retirer"
2062
 
2063
  #: tpls/user-dashboard/profile.php:141 tpls3/user-dashboard/profile.php:77
2064
  msgid "Last 5 Downloads"
2138
  msgstr "Aucun paquet trouvé"
2139
 
2140
  #: tpls/wpdm-asset.php:23 tpls3/wpdm-asset.php:23
 
 
2141
  msgid "Login to Download"
2142
+ msgstr "Connectez-vous pour pouvoir télécharger"
2143
 
2144
  #: tpls/wpdm-edit-user-profile.php:9
 
 
2145
  msgid "View Profile"
2146
+ msgstr "Voir le profil"
2147
 
2148
  #: tpls/wpdm-edit-user-profile.php:10
 
 
2149
  msgid "Public Profile Info"
2150
+ msgstr "Informations de profil publiques"
2151
 
2152
  #: tpls/wpdm-edit-user-profile.php:19
2153
  msgid "Short Intro"
2154
+ msgstr "Courte introduction"
2155
 
2156
  #: tpls/wpdm-edit-user-profile.php:32
 
 
2157
  msgid "Banner URL"
2158
+ msgstr "URL de la bannière"
2159
 
2160
  #: tpls/wpdm-edit-user-profile.php:41
2161
  msgid "Profile Header Text Color"
2162
+ msgstr "Couleur du texte de l’en-tête du profil"
2163
 
2164
  #: tpls/wpdm-edit-user-profile.php:55
 
 
2165
  msgid "Payment Settings"
2166
+ msgstr "Réglages de paiement"
2167
 
2168
  #: tpls/wpdm-edit-user-profile.php:58
2169
  msgid "PayPal Email"
2170
+ msgstr "E-mail PayPal"
2171
 
2172
  #: tpls/wpdm-generate-password.php:30 tpls3/wpdm-generate-password.php:17
2173
  msgid "Select Options"
2182
  msgstr "Nombre de caractères pour chaque mot de passe :"
2183
 
2184
  #: tpls/wpdm-generate-password.php:42
 
 
2185
  msgid "Valid Chars:"
2186
  msgstr "Caractères valides :"
2187
 
2188
  #: tpls/wpdm-generate-password.php:43
2189
  msgid "Small Letters"
2190
+ msgstr "Lettres minuscules"
2191
 
2192
  #: tpls/wpdm-generate-password.php:44
2193
  msgid "Capital Letters"
2194
+ msgstr "Lettres capitales"
2195
 
2196
  #: tpls/wpdm-generate-password.php:45
2197
  msgid "Numbers"
2198
+ msgstr "Nombres"
2199
 
2200
  #: tpls/wpdm-generate-password.php:46
2201
  msgid "Special Chars"
2202
+ msgstr "Caractères spéciaux"
2203
 
2204
  #: tpls/wpdm-generate-password.php:55 tpls3/wpdm-generate-password.php:36
2205
  msgid "Generated Passwords"
2206
  msgstr "Mots de passe générés"
2207
 
2208
  #: tpls/wpdm-generate-password.php:60
 
 
2209
  msgid "Insert Password(s)"
2210
+ msgstr "Insérer le·s mot·s de passe"
2211
 
2212
  #: tpls/wpdm-login-form.php:58 tpls/wpdm-login-modal-form.php:65
2213
  #: tpls3/wpdm-login-form.php:97 tpls3/wpdm-login-modal-form.php:77
2223
  #: tpls/wpdm-reg-form.php:59 tpls3/wpdm-login-form.php:105
2224
  #: tpls3/wpdm-login-modal-form.php:105 tpls3/wpdm-reg-form.php:62
2225
  msgid "Or connect using your social account"
2226
+ msgstr "Ou connectez-vous en utilisant votre compte social"
2227
 
2228
  #: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
2229
  #: tpls3/wpdm-login-form.php:116 tpls3/wpdm-login-modal-form.php:116
2233
  #: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
2234
  #: tpls/wpdm-reg-form.php:50 tpls3/wpdm-login-form.php:116
2235
  #: tpls3/wpdm-login-modal-form.php:116 tpls3/wpdm-reg-form.php:53
 
 
2236
  msgid "Register Now"
2237
+ msgstr "S’inscrire maintenant"
2238
 
2239
  #: tpls/wpdm-login-form.php:107 tpls/wpdm-login-modal-form.php:116
2240
  #: tpls3/wpdm-login-form.php:136 tpls3/wpdm-login-modal-form.php:128
2244
  #: tpls/wpdm-login-form.php:113 tpls/wpdm-login-form.php:130
2245
  #: tpls/wpdm-login-modal-form.php:121 tpls3/wpdm-login-form.php:141
2246
  #: tpls3/wpdm-login-modal-form.php:133
 
 
2247
  msgid "LOGIN FAILED!"
2248
+ msgstr "LA CONNEXION A ÉCHOUÉE !"
2249
 
2250
  #: tpls/wpdm-login-modal-form.php:42 tpls3/wpdm-login-form.php:41
2251
  #: tpls3/wpdm-login-modal-form.php:42
2254
 
2255
  #: tpls/wpdm-reg-form.php:61 tpls3/wpdm-reg-form.php:64
2256
  msgid "Connect using your social account"
2257
+ msgstr "Connectez-vous avec votre compte social"
2258
 
2259
  #: tpls/wpdm-reg-form.php:79 tpls3/wpdm-reg-form.php:82
2260
  msgid "Already have an account?"
2262
 
2263
  #: tpls/wpdm-reg-form.php:97 tpls3/wpdm-reg-form.php:100
2264
  msgid "Password did not match with the confirm password"
2265
+ msgstr "Le mot de passe ne correspond pas au mot de passe de confirmation"
2266
 
2267
  #: tpls/wpdm-reg-form.php:125 tpls3/wpdm-reg-form.php:127
2268
  msgid "Signup Error:"
2269
+ msgstr "Erreur d’inscription :"
2270
 
2271
  #: tpls/wpdm-reg-form.php:148 tpls3/wpdm-reg-form.php:145
2272
  msgid "Registration is disabled!"
2275
  #: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
2276
  msgid "Use nothing if you don\\'t want to change old password"
2277
  msgstr ""
2278
+ "Ne saisissez rien si vous ne voulez pas modifier votre ancien mot de passe"
2279
 
2280
  #: tpls3/user-dashboard/edit-profile.php:40 tpls3/wpdm-edit-user-profile.php:40
 
 
2281
  msgid "Description:"
2282
+ msgstr "Description :"
2283
 
2284
  #: tpls3/wpdm-generate-password.php:27
2285
  msgid "Valid chars:"
2310
  msgstr "Nombre de paquets à afficher :"
2311
 
2312
  #: widgets/class.Categories.php:131
 
 
2313
  msgid "Parent:"
2314
+ msgstr "Parent :"
2315
 
2316
  #: widgets/class.Categories.php:135
 
 
2317
  msgid "On Category Page:"
2318
+ msgstr "Sur la page de catégorie :"
2319
 
2320
  #: widgets/class.Categories.php:137
2321
  msgid "Show all"
2322
+ msgstr "Tout afficher"
2323
 
2324
  #: widgets/class.Categories.php:138
 
 
2325
  msgid "Show subcategories only"
2326
+ msgstr "Afficher uniquement les sous-catégories"
2327
 
2328
  #: widgets/class.Categories.php:142
 
 
2329
  msgid "Style:"
2330
+ msgstr "Style :"
2331
 
2332
  #: widgets/class.Categories.php:149
2333
  msgid "Top Level Only"
2334
+ msgstr "Uniquement de niveau supérieur"
2335
 
2336
  #: widgets/class.Categories.php:152
2337
  msgid "Hide widget when no category"
2338
+ msgstr "Masquer le widget quand aucune catégorie"
2339
 
2340
  #: widgets/class.ListPackages.php:100
 
 
2341
  msgid "On Single Download Page"
2342
+ msgstr "Sur la page de téléchargement unique"
2343
 
2344
  #: widgets/class.ListPackages.php:101
2345
  msgid "Show packages from current package category"
2346
+ msgstr "Afficher les paquets de la catégorie de paquet actuelle"
2347
 
2348
  #: widgets/class.PackageInfo.php:21
2349
  msgid "Total Views"
2362
  msgstr "Nombre de vues"
2363
 
2364
  #: widgets/class.PackageInfo.php:122
 
 
2365
  msgid "Package Size"
2366
+ msgstr "Taille du paquet"
2367
 
2368
  #: widgets/class.PackageInfo.php:123
2369
  msgid "Download Link"
2370
  msgstr "Lien de téléchargement"
2371
 
2372
  #: widgets/class.PackageInfo.php:124
 
 
2373
  msgid "Embed Download Options"
2374
+ msgstr "Options de téléchargement embarqué"
2375
 
2376
  #: widgets/class.PackageInfo.php:125
2377
  msgid "Style"
2383
 
2384
  #: widgets/class.PackageInfo.php:126
2385
  msgid "Show QR Code"
2386
+ msgstr "Afficher le QR Code"
2387
 
2388
  #: widgets/class.Search.php:20
 
 
2389
  msgid "Search..."
2390
+ msgstr "Rechercher&hellip;"
2391
 
2392
  #: widgets/class.Search.php:24
2393
  msgid ""
2394
  "Search result page was configured properly. Please create a page with "
2395
  "shortcode [wpdm_search_result] and select thee page from widget settings"
2396
  msgstr ""
2397
+ "La page de résultats de la recherche a été correctement configurée. Veuillez "
2398
+ "créer une page avec le code court [wpdm_search_result] et sélectionner la "
2399
+ "page dans les réglages du widget"
2400
 
2401
  #: widgets/class.Search.php:44
 
 
2402
  msgid "Search Result Page"
2403
+ msgstr "Page des résultats de recherche"
2404
 
2405
  #: widgets/class.Search.php:47
2406
  msgid ""
2407
  "Note: Create a page with short-code <code>[wpdm_search_result]</code> and "
2408
  "select that page as search redult page"
2409
  msgstr ""
2410
+ "Remarque : créez une page avec le code court <code>[wpdm_search_result]</"
2411
+ "code> et sélectionnez cette page comme page de recherche"
2412
 
2413
  #: widgets/class.Tags.php:76
 
 
2414
  msgid "Sub Title:"
2415
+ msgstr "Sous-titre :"
2416
 
2417
  #: widgets/class.Tags.php:80
 
 
2418
  msgid "Number of tags to show:"
2419
+ msgstr "Nombre d’étiquettes à afficher :"
2420
 
2421
  #: wpdm-core.php:110
2422
  msgid "Select category"
2476
  msgid "No file found!"
2477
  msgstr "Aucun fichier trouvé !"
2478
 
2479
+ #~ msgid "Install The Best WordPress Contact Form Builder"
2480
+ #~ msgstr ""
2481
+ #~ "Installer le meilleur constructeur de formulaire de mot de passe de "
2482
+ #~ "WordPress"
 
2483
 
2484
+ #~ msgid "Install Download Manager Addons for Elementor"
2485
+ #~ msgstr "Installer le module Download Manager pour Elementor"
2486
 
2487
+ #~ msgid "Install Gutenberg Blocks by WordPress Download Manager"
2488
+ #~ msgstr "Installer Gutenberg Blocks par WordPress Download Manager"
2489
 
2490
+ #~ msgid "Create new page"
2491
+ #~ msgstr "Créer une nouvelle page"
2492
 
2493
+ #~ msgid "Go"
2494
+ #~ msgstr "Aller"
2495
 
2496
+ #~ msgid "Go To Page"
2497
+ #~ msgstr "Aller à la page"
2498
 
2499
+ #~ msgid ""
2500
+ #~ "If you are on Gutenberg Editor or elementor, you may use gutenberg block "
2501
+ #~ "or elementor add-on for wpdm to embed wpdm packages and categories or "
2502
+ #~ "generate another available layouts"
2503
  #~ msgstr ""
2504
+ #~ "Si vous utilisez l’Éditeur Gutenberg ou Elementor, vous pouvez utiliser "
2505
+ #~ "le module Gutenberg Blocks ou Elementor pour wpdm afin d’intégrer les "
2506
+ #~ "paquets et catégories wpdm ou générer d’autres mises en page disponibles."
2507
 
2508
+ #~ msgid "Copy"
2509
+ #~ msgstr "Copier"
2510
 
2511
+ #~ msgid "Every 6 hours"
2512
+ #~ msgstr "Toutes les 6 heures"
2513
 
2514
+ #~ msgid "Select Files"
2515
+ #~ msgstr "Sélectionner des fichiers"
2516
 
2517
+ #~ msgctxt "Uploader: Drop files here - or - Select Files"
2518
+ #~ msgid "or"
2519
+ #~ msgstr "ou"
2520
 
2521
+ #~ msgid ""
2522
+ #~ "Manage, Protect and Track file downloads, and sell digital products from "
2523
+ #~ "your WordPress site. A complete digital asset management solution."
2524
+ #~ msgstr ""
2525
+ #~ "Gérez, protégez et suivez les téléchargements de fichiers et vendez des "
2526
+ #~ "produits numériques à partir de votre site WordPress. Une solution "
2527
+ #~ "complète de gestion de ressources numériques."
2528
 
2529
+ #~ msgid "W3 Eden"
2530
+ #~ msgstr "W3 Eden"
2531
 
2532
  #~ msgid "https://www.wpdownloadmanager.com/"
2533
  #~ msgstr "https://www.wpdownloadmanager.com/"
2534
 
2535
+ #~ msgid "https://www.wpdownloadmanager.com/pricing/"
2536
+ #~ msgstr "https://www.wpdownloadmanager.com/pricing/"
 
 
 
 
 
2537
 
2538
  #~ msgid "Select File"
2539
  #~ msgstr "Sélectionner le fichier"
languages/download-manager-it_IT.mo CHANGED
Binary file
languages/download-manager-it_IT.po CHANGED
@@ -1,51 +1,55 @@
1
- # Translation of Plugins - WordPress Download Manager - Development (trunk) in Italian
2
- # This file is distributed under the same license as the Plugins - WordPress Download Manager - Development (trunk) package.
3
  msgid ""
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"
12
  "MIME-Version: 1.0\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
 
30
  #: admin/menus/class.Addons.php:23
 
 
31
  msgid "Add-Ons &lsaquo; Download Manager"
32
- msgstr ""
33
 
34
  #: admin/menus/class.Addons.php:23
 
 
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
@@ -53,8 +57,10 @@ 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 ""
@@ -64,18 +70,20 @@ msgstr ""
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"
@@ -121,8 +129,22 @@ msgstr ""
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
 
128
  #: admin/menus/class.Settings.php:19
@@ -137,11 +159,11 @@ msgstr "Impostazioni"
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
 
146
  #: admin/menus/class.Stats.php:25
147
  msgid "History &lsaquo; Download Manager"
@@ -153,17 +175,19 @@ msgstr "Cronologia"
153
 
154
  #: admin/menus/class.Templates.php:21
155
  msgid "Templates &lsaquo; Download Manager"
156
- msgstr ""
157
 
158
  #: admin/menus/class.Templates.php:21 admin/tpls/email-template-editor.php:9
159
  #: admin/tpls/templates.php:7
160
  msgid "Templates"
161
- msgstr ""
162
 
163
  #: admin/menus/class.Templates.php:142
164
  msgid ""
165
  "No package found! Please create at least 1 package to see template preview"
166
  msgstr ""
 
 
167
 
168
  #: admin/tpls/addons-list.php:226
169
  msgid "WPDM Add-Ons"
@@ -185,12 +209,12 @@ 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
@@ -200,19 +224,19 @@ msgstr "Allega file"
200
 
201
  #: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
202
  msgid "Link Templates"
203
- msgstr ""
204
 
205
  #: admin/tpls/email-template-editor.php:15 admin/tpls/templates.php:13
206
  msgid "Page Templates"
207
- msgstr ""
208
 
209
  #: admin/tpls/email-template-editor.php:16 admin/tpls/templates.php:14
210
  msgid "Email Templates"
211
- msgstr ""
212
 
213
  #: admin/tpls/email-template-editor.php:17
214
  msgid "Email Template Editor"
215
- msgstr ""
216
 
217
  #: admin/tpls/email-template-editor.php:29
218
  #, php-format
@@ -220,62 +244,63 @@ msgid "To: %s"
220
  msgstr ""
221
 
222
  #: admin/tpls/email-template-editor.php:31
223
- #, php-format
 
224
  msgid "Editing: %s"
225
- msgstr ""
226
 
227
  #: admin/tpls/email-template-editor.php:42
228
  msgid "Email Subject"
229
- msgstr ""
230
 
231
  #: admin/tpls/email-template-editor.php:44
232
  msgid "Message"
233
- msgstr ""
234
 
235
  #: admin/tpls/email-template-editor.php:45
236
  msgid "Preview"
237
- msgstr ""
238
 
239
  #: admin/tpls/email-template-editor.php:63
240
  #: admin/tpls/email-template-editor.php:64
241
  msgid "Recipient's Email"
242
- msgstr ""
243
 
244
  #: admin/tpls/email-template-editor.php:75
245
  msgid "From Name"
246
- msgstr ""
247
 
248
  #: admin/tpls/email-template-editor.php:82
249
  msgid "From Email"
250
- msgstr ""
251
 
252
  #: admin/tpls/email-template-editor.php:119
253
  msgid "Template Variables"
254
- msgstr ""
255
 
256
  #: admin/tpls/email-template-editor.php:203
257
  msgid "Invalid template ID!"
258
- msgstr ""
259
 
260
  #: admin/tpls/emails-template.php:15
261
  msgid "Subscribers"
262
- msgstr ""
263
 
264
  #: admin/tpls/emails-template.php:16
265
  msgid "Export All"
266
- msgstr ""
267
 
268
  #: admin/tpls/emails-template.php:17
269
  msgid "Export Unique Emails"
270
- msgstr ""
271
 
272
  #: admin/tpls/emails-template.php:22
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"
@@ -289,10 +314,12 @@ msgstr "Il file non è stato ancora inviato!"
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!"
@@ -320,8 +347,10 @@ msgstr ""
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
@@ -379,6 +408,8 @@ 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"
@@ -386,7 +417,7 @@ 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."
@@ -407,7 +438,7 @@ 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
@@ -418,9 +449,9 @@ msgstr ""
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
@@ -450,7 +481,7 @@ msgstr "Conteggio&nbsp;Visite:"
450
 
451
  #: admin/tpls/metaboxes/package-settings.php:51
452
  msgid "Download&nbsp;Count:"
453
- msgstr ""
454
 
455
  #: admin/tpls/metaboxes/package-settings.php:57
456
  msgid "Allow Access:"
@@ -458,19 +489,21 @@ 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"
@@ -478,7 +511,7 @@ msgstr "Questa Chiave potrebbe essere usata per il download diretto"
478
 
479
  #: admin/tpls/settings.php:10 admin/tpls/settings.php:37
480
  msgid "Save Settings"
481
- msgstr "Salva le impostazioni"
482
 
483
  #: admin/tpls/settings.php:10
484
  msgid "Download Manager Settings"
@@ -496,7 +529,7 @@ msgstr "Esci"
496
 
497
  #: admin/tpls/settings/addon-update.php:4
498
  msgid "Add-on Update"
499
- msgstr ""
500
 
501
  #: admin/tpls/settings/addon-update.php:14
502
  #, php-format
@@ -505,20 +538,20 @@ msgstr "Scrivi le tue %s credenziali"
505
 
506
  #: admin/tpls/settings/addon-update.php:33
507
  msgid "Click Save Settings Button To Login"
508
- msgstr ""
509
 
510
  #: admin/tpls/settings/addon-update.php:50
511
  msgid "Purchased Add-ons"
512
- msgstr ""
513
 
514
  #: admin/tpls/settings/addon-update.php:51
515
  msgid "Free Add-ons"
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
@@ -528,7 +561,7 @@ msgstr "Attivi(v)"
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
@@ -550,8 +583,8 @@ 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........"
@@ -566,7 +599,7 @@ msgstr "Messaggi"
566
 
567
  #: admin/tpls/settings/basic.php:34
568
  msgid "Permission Denied Message for Packages:"
569
- msgstr ""
570
 
571
  #: admin/tpls/settings/basic.php:43
572
  msgid "Login Required Message:"
@@ -578,7 +611,7 @@ msgstr "Esplora i File nel Server"
578
 
579
  #: admin/tpls/settings/basic.php:55
580
  msgid "Server File Browser Base Dir:"
581
- msgstr ""
582
 
583
  #: admin/tpls/settings/basic.php:59
584
  msgid "Reset Base Dir"
@@ -586,7 +619,7 @@ msgstr ""
586
 
587
  #: admin/tpls/settings/basic.php:65
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"
@@ -598,7 +631,7 @@ 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 ""
@@ -609,17 +642,19 @@ msgstr ""
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"
@@ -627,7 +662,7 @@ 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"
@@ -661,11 +696,11 @@ msgid ""
661
  "as sometimes server may not support output buffering or partial downloads"
662
  msgstr ""
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"
@@ -712,11 +747,11 @@ 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 ""
@@ -728,7 +763,7 @@ msgstr ""
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"
@@ -744,7 +779,7 @@ 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
@@ -782,11 +817,11 @@ 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
@@ -794,18 +829,25 @@ msgid ""
794
  "Check this option if you want to show wpdm packages in your main <a target="
795
  "\"_blank\" href=\"%s\">RSS Feed</a>"
796
  msgstr ""
 
 
797
 
798
  #: admin/tpls/settings/privacy.php:9
799
  msgid "Privacy Settings"
800
- msgstr ""
801
 
802
  #: admin/tpls/settings/privacy.php:13
803
  msgid "Do not store visitor's IP"
804
  msgstr ""
805
 
806
  #: admin/tpls/settings/privacy.php:14
 
 
 
 
807
  msgid "Check this option if you do not want to store visitors IPs"
808
  msgstr ""
 
809
 
810
  #: admin/tpls/settings/privacy.php:19
811
  msgid "Delete download history when users close accounts"
@@ -847,7 +889,7 @@ 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"
@@ -859,73 +901,73 @@ 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
 
922
  #: admin/tpls/stats.php:6
923
  msgid "Clear History"
924
- msgstr ""
925
 
926
  #: admin/tpls/stats.php:7
927
  msgid "Export History"
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
@@ -938,7 +980,7 @@ msgstr "Sei sicuro? Impossibile annullare!"
938
 
939
  #: admin/tpls/stats.php:35
940
  msgid "Clearing..."
941
- msgstr ""
942
 
943
  #: admin/tpls/stats.php:38
944
  msgid "Download History is Empty"
@@ -946,9 +988,9 @@ 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"
@@ -956,9 +998,9 @@ 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
@@ -997,9 +1039,9 @@ 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
@@ -1024,6 +1066,8 @@ msgid ""
1024
  "Custom Template editor is available with <a target='_blank' "
1025
  "href='%s'>WordPress Download Manager Pro</a>"
1026
  msgstr ""
 
 
1027
 
1028
  #: admin/tpls/templates.php:20
1029
  #, php-format
@@ -1034,71 +1078,73 @@ 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"
@@ -1179,94 +1225,110 @@ 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"
@@ -1301,8 +1363,10 @@ 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
@@ -1320,16 +1384,20 @@ 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"
@@ -1348,8 +1416,10 @@ 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."
@@ -1359,11 +1429,15 @@ msgstr ""
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
@@ -1371,7 +1445,7 @@ msgstr "Sotto-Categorie"
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
@@ -1379,45 +1453,45 @@ msgstr "Titolo"
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
@@ -1432,35 +1506,42 @@ msgstr ""
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
@@ -1474,8 +1555,10 @@ 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"
@@ -1524,14 +1607,14 @@ msgstr "Download Manager"
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
@@ -1552,7 +1635,7 @@ msgstr "Icona"
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"
@@ -1560,54 +1643,60 @@ msgstr "Limite di scaricamento superato"
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
@@ -1620,7 +1709,7 @@ msgstr "Scrivi la Password per scaricare gratuitamente"
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
@@ -1637,13 +1726,13 @@ msgstr "Invia"
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"
@@ -1655,25 +1744,27 @@ 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"
@@ -1685,9 +1776,9 @@ 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
@@ -1699,8 +1790,8 @@ msgstr "Indirizzo email non valido!"
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
 
@@ -1709,18 +1800,22 @@ 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 ""
1724
 
1725
  #: libs/class.UserDashboard.php:19
1726
  msgid "Edit Profile"
@@ -1801,7 +1896,7 @@ msgstr "Viste Totali"
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"
@@ -1812,45 +1907,57 @@ 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
@@ -1860,11 +1967,13 @@ 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 ""
@@ -1873,12 +1982,16 @@ msgid ""
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!"
@@ -1888,11 +2001,11 @@ msgstr ""
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."
@@ -1906,58 +2019,72 @@ msgstr ""
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
@@ -1974,9 +2101,9 @@ msgstr "Ordina per"
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
@@ -2004,8 +2131,10 @@ 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
@@ -2024,18 +2153,24 @@ 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"
@@ -2043,8 +2178,10 @@ 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"
@@ -2057,11 +2194,11 @@ 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"
@@ -2073,7 +2210,7 @@ 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"
@@ -2081,11 +2218,11 @@ 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"
@@ -2101,7 +2238,7 @@ 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:"
@@ -2129,7 +2266,7 @@ 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"
@@ -2137,19 +2274,21 @@ 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
@@ -2168,8 +2307,10 @@ 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"
@@ -2179,7 +2320,7 @@ msgstr ""
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"
@@ -2248,24 +2389,28 @@ msgstr ""
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
@@ -2278,7 +2423,7 @@ 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"
@@ -2297,8 +2442,10 @@ 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:"
@@ -2316,8 +2463,10 @@ msgstr ""
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:"
@@ -2336,9 +2485,9 @@ 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"
@@ -2402,9 +2551,9 @@ 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"
@@ -2432,9 +2581,9 @@ 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 ""
@@ -2469,12 +2618,14 @@ 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"
@@ -2482,15 +2633,15 @@ 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
 
2495
  #: wpdm-start-download.php:6
2496
  msgid "Your IP address is blocked!"
@@ -2498,7 +2649,7 @@ msgstr "L'indirizzo IP è bloccato!"
2498
 
2499
  #: wpdm-start-download.php:22
2500
  msgid "Package is not available!"
2501
- msgstr "Pacchetto non disponibile!"
2502
 
2503
  #: wpdm-start-download.php:49
2504
  msgid "Sorry! Download is not available yet."
@@ -2512,8 +2663,8 @@ msgstr "Attiva \"zlib\" nel tuo server"
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!"
@@ -2524,11 +2675,36 @@ msgstr "Nessun file trovato!"
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/"
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Download Manager Pro v4\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-17 23:29+0600\n"
6
+ "PO-Revision-Date: 2021-04-17 23:29+0600\n"
7
+ "Last-Translator: Daniele\n"
8
+ "Language-Team: Italiano\n"
9
+ "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\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
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "X-Loco-Version: 2.5.2; wp-5.7.1\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 "Pacchetto Impostazioni"
25
 
26
  #: admin/class.WordPressDownloadManagerAdmin.php:172
27
  msgid "Attach File"
28
  msgstr "Allega file"
29
 
30
  #: admin/menus/class.Addons.php:23
31
+ #, fuzzy
32
+ #| msgid "Settings &lsaquo; Download Manager"
33
  msgid "Add-Ons &lsaquo; Download Manager"
34
+ msgstr "Impostazioni Download Manager"
35
 
36
  #: admin/menus/class.Addons.php:23
37
+ #, fuzzy
38
+ #| msgid "WPDM Add-Ons"
39
  msgid "Add-Ons"
40
+ msgstr "WPDM Add-Ons"
41
 
42
  #: admin/menus/class.Categories.php:49 admin/menus/class.Categories.php:253
43
  msgid "Category Image:"
44
+ msgstr "Categoria Immagine:"
45
 
46
  #: admin/menus/class.Categories.php:52 admin/menus/class.Categories.php:258
47
  msgid "Image URL"
48
+ msgstr "Indirizzo Immagine"
49
 
50
  #: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
51
  msgid "Select Category Image"
52
+ msgstr "Scegli la Categoria dell'Immagine"
53
 
54
  #: admin/menus/class.Categories.php:54 admin/menus/class.Categories.php:260
55
  #: libs/class.FileList.php:307
57
  msgstr "Esplora"
58
 
59
  #: admin/menus/class.Categories.php:117 admin/menus/class.Categories.php:323
60
+ #, fuzzy
61
+ #| msgid "Success:"
62
  msgid "Access:"
63
+ msgstr "Successo:"
64
 
65
  #: admin/menus/class.Categories.php:119 admin/menus/class.Categories.php:326
66
  msgid ""
70
  "categoria"
71
 
72
  #: admin/menus/class.Categories.php:122 admin/menus/class.Categories.php:339
73
+ #: admin/tpls/metaboxes/package-settings.php:68 tpls/asset-manager-ui.php:840
74
  #: tpls3/asset-manager-ui.php:825
75
  msgid "All Visitors"
76
  msgstr "Tutti i Visitatori"
77
 
78
  #: admin/menus/class.Categories.php:138 admin/menus/class.Categories.php:368
79
+ #, fuzzy
80
+ #| msgid "Page Templates"
81
  msgid "Category Page Template"
82
+ msgstr "Modelli Pagina"
83
 
84
  #: admin/menus/class.Categories.php:141 admin/menus/class.Categories.php:371
85
  msgid "Use Global"
86
+ msgstr "Usa globale"
87
 
88
  #: admin/menus/class.Categories.php:142 admin/menus/class.Categories.php:372
89
  msgid "Do Not Apply"
129
  msgid "Number of Columns"
130
  msgstr "Numero di passwords:"
131
 
132
+ #: admin/menus/class.Packages.php:208
133
+ msgid "Duplicate"
134
+ msgstr ""
135
+
136
+ #: admin/menus/class.Packages.php:209
137
  msgid "Direct Download"
138
+ msgstr "Scaricamento Diretto"
139
+
140
+ #: admin/menus/class.Packages.php:230
141
+ #, fuzzy
142
+ #| msgid "Sample Package Name"
143
+ msgid "Embed Package"
144
+ msgstr "Nome Pacchetto Campione"
145
+
146
+ #: admin/menus/class.Packages.php:276
147
+ msgid "Close"
148
  msgstr ""
149
 
150
  #: admin/menus/class.Settings.php:19
159
  #: admin/menus/class.Settings.php:188 admin/menus/class.Settings.php:244
160
  #: admin/menus/class.Settings.php:260
161
  msgid "Security token is expired! Refresh the page and try again."
162
+ msgstr "Il gettone di sicurezza è scaduto! Aggiorna la pagina e riprova."
163
 
164
  #: admin/menus/class.Settings.php:331
165
  msgid "Privacy Settings Saved Successfully"
166
+ msgstr "Impostazioni Privacy Salvate Correttamente"
167
 
168
  #: admin/menus/class.Stats.php:25
169
  msgid "History &lsaquo; Download Manager"
175
 
176
  #: admin/menus/class.Templates.php:21
177
  msgid "Templates &lsaquo; Download Manager"
178
+ msgstr "Modelli &lsaquo; Download Manager"
179
 
180
  #: admin/menus/class.Templates.php:21 admin/tpls/email-template-editor.php:9
181
  #: admin/tpls/templates.php:7
182
  msgid "Templates"
183
+ msgstr "Modelli"
184
 
185
  #: admin/menus/class.Templates.php:142
186
  msgid ""
187
  "No package found! Please create at least 1 package to see template preview"
188
  msgstr ""
189
+ "Nessun pacchetto trovato! Si prega di creare almeno 1 pacchetto per vedere "
190
+ "l'anteprima del modello"
191
 
192
  #: admin/tpls/addons-list.php:226
193
  msgid "WPDM Add-Ons"
209
 
210
  #: admin/tpls/asset-manager-picker.php:727
211
  #: admin/tpls/email-template-editor.php:93 admin/tpls/templates.php:186
212
+ #: admin/tpls/templates.php:347 tpls/asset-manager-ui.php:563
213
  #: tpls/user-dashboard/edit-profile.php:48 tpls/wpdm-edit-user-profile.php:64
214
  #: tpls3/asset-manager-ui.php:550 tpls3/user-dashboard/edit-profile.php:51
215
  #: tpls3/wpdm-edit-user-profile.php:51
216
  msgid "Save Changes"
217
+ msgstr "Salva le modifiche"
218
 
219
  #: admin/tpls/asset-manager-picker.php:753
220
  #, fuzzy
224
 
225
  #: admin/tpls/email-template-editor.php:14 admin/tpls/templates.php:12
226
  msgid "Link Templates"
227
+ msgstr "Modelli Collegamenti"
228
 
229
  #: admin/tpls/email-template-editor.php:15 admin/tpls/templates.php:13
230
  msgid "Page Templates"
231
+ msgstr "Modelli Pagina"
232
 
233
  #: admin/tpls/email-template-editor.php:16 admin/tpls/templates.php:14
234
  msgid "Email Templates"
235
+ msgstr "Modelli Email"
236
 
237
  #: admin/tpls/email-template-editor.php:17
238
  msgid "Email Template Editor"
239
+ msgstr "Editore Modello Email"
240
 
241
  #: admin/tpls/email-template-editor.php:29
242
  #, php-format
244
  msgstr ""
245
 
246
  #: admin/tpls/email-template-editor.php:31
247
+ #, fuzzy, php-format
248
+ #| msgid "Edit User"
249
  msgid "Editing: %s"
250
+ msgstr "Modifica Utente"
251
 
252
  #: admin/tpls/email-template-editor.php:42
253
  msgid "Email Subject"
254
+ msgstr "Oggetto Email"
255
 
256
  #: admin/tpls/email-template-editor.php:44
257
  msgid "Message"
258
+ msgstr "Messaggio"
259
 
260
  #: admin/tpls/email-template-editor.php:45
261
  msgid "Preview"
262
+ msgstr "Anteprima"
263
 
264
  #: admin/tpls/email-template-editor.php:63
265
  #: admin/tpls/email-template-editor.php:64
266
  msgid "Recipient's Email"
267
+ msgstr "Email Destinatario"
268
 
269
  #: admin/tpls/email-template-editor.php:75
270
  msgid "From Name"
271
+ msgstr "Da Nome"
272
 
273
  #: admin/tpls/email-template-editor.php:82
274
  msgid "From Email"
275
+ msgstr "Da Email"
276
 
277
  #: admin/tpls/email-template-editor.php:119
278
  msgid "Template Variables"
279
+ msgstr "Variabili del Modello"
280
 
281
  #: admin/tpls/email-template-editor.php:203
282
  msgid "Invalid template ID!"
283
+ msgstr "ID Modello non valido!"
284
 
285
  #: admin/tpls/emails-template.php:15
286
  msgid "Subscribers"
287
+ msgstr "Iscritti"
288
 
289
  #: admin/tpls/emails-template.php:16
290
  msgid "Export All"
291
+ msgstr "Esporta Tutto"
292
 
293
  #: admin/tpls/emails-template.php:17
294
  msgid "Export Unique Emails"
295
+ msgstr "Esporta Emails Uniche"
296
 
297
  #: admin/tpls/emails-template.php:22
298
  msgid "Emails"
299
+ msgstr "Emails"
300
 
301
  #: admin/tpls/emails-template.php:23 admin/tpls/templates.php:106
302
  msgid "Email Template"
303
+ msgstr "Modello Email"
304
 
305
  #: admin/tpls/metaboxes/attach-file.php:7
306
  msgid "attached file is missing/deleted"
314
  msgid "Drop file here"
315
  msgstr ""
316
 
317
+ #: admin/tpls/metaboxes/attach-file.php:68 tpls/asset-manager-ui.php:753
318
  #: tpls3/asset-manager-ui.php:738 wpdm-functions.php:1480
319
+ #, fuzzy
320
+ #| msgid "All Files"
321
  msgid "Allowed Files"
322
+ msgstr "Tutti i file"
323
 
324
  #: admin/tpls/metaboxes/attach-file.php:147
325
  msgid "Invalid File Type!"
347
  "circle\"></i> Rimosso!</div></div>"
348
 
349
  #: admin/tpls/metaboxes/attach-file.php:200
350
+ #, fuzzy
351
+ #| msgid "Insert From Media Library"
352
  msgid "Select from media library"
353
+ msgstr "Inserisci dalla Libreria dei Media"
354
 
355
  #: admin/tpls/metaboxes/attach-file.php:232
356
  #, fuzzy
408
  "If you want to use multiple passwords, keep each one inside [], like [123]"
409
  "[456][789]"
410
  msgstr ""
411
+ "Se vuoi usare password multiple, mettine ognuna dentro le [], come [123][456]"
412
+ "[789]"
413
 
414
  #: admin/tpls/metaboxes/lock-options.php:48
415
  msgid "Enable Captcha Lock"
417
 
418
  #: admin/tpls/metaboxes/lock-options.php:51
419
  msgid "Please configure reCAPTCHA"
420
+ msgstr "Per favore configura il reCAPTCHA"
421
 
422
  #: admin/tpls/metaboxes/lock-options.php:52
423
  msgid "Users will be asked for reCAPTCHA verification before download."
438
 
439
  #: admin/tpls/metaboxes/package-settings.php:28
440
  msgid "Link Label:"
441
+ msgstr "Link Etichetta:"
442
 
443
  #: admin/tpls/metaboxes/package-settings.php:29
444
  #: admin/tpls/settings/addon-update.php:61
449
  #: libs/class.FileList.php:138 libs/class.FileList.php:203
450
  #: libs/class.FileList.php:250 libs/class.FileList.php:305
451
  #: libs/class.Package.php:77 libs/class.Package.php:155
452
+ #: libs/class.Package.php:647 libs/class.Package.php:672
453
+ #: libs/class.Package.php:739 libs/class.Package.php:832
454
+ #: libs/class.Package.php:864 libs/class.Package.php:1309
455
  #: libs/class.PackageLocks.php:74 libs/class.PackageLocks.php:111
456
  #: tpls/lock-options-iframe.php:289 tpls/lock-options/password-lock.php:41
457
  #: tpls/lock-options/recaptcha-lock.php:24 tpls/wpdm-all-downloads.php:191
481
 
482
  #: admin/tpls/metaboxes/package-settings.php:51
483
  msgid "Download&nbsp;Count:"
484
+ msgstr "Download Count:"
485
 
486
  #: admin/tpls/metaboxes/package-settings.php:57
487
  msgid "Allow Access:"
489
 
490
  #: admin/tpls/metaboxes/package-settings.php:59
491
  msgid "Who should be able to download?"
492
+ msgstr "Chi potrebbe scaricare?"
493
 
494
  #: admin/tpls/metaboxes/package-settings.php:88
495
  msgid "Page Template:"
496
+ msgstr "Modello di pagina:"
497
 
498
  #: admin/tpls/metaboxes/package-settings.php:99
499
  msgid "Master Key"
500
  msgstr "Chiave Maestra"
501
 
502
  #: admin/tpls/metaboxes/package-settings.php:100
503
+ #, fuzzy
504
+ #| msgid "Regenerate Master Key for Download"
505
+ msgid "Regenerate Master Key"
506
+ msgstr "Rigenera la Chiave Maestra per il Download"
507
 
508
  #: admin/tpls/metaboxes/package-settings.php:100
509
  msgid "This key can be used for direct download"
511
 
512
  #: admin/tpls/settings.php:10 admin/tpls/settings.php:37
513
  msgid "Save Settings"
514
+ msgstr "Salva le Impostazioni"
515
 
516
  #: admin/tpls/settings.php:10
517
  msgid "Download Manager Settings"
529
 
530
  #: admin/tpls/settings/addon-update.php:4
531
  msgid "Add-on Update"
532
+ msgstr "Aggiornamenti delle Aggiunte"
533
 
534
  #: admin/tpls/settings/addon-update.php:14
535
  #, php-format
538
 
539
  #: admin/tpls/settings/addon-update.php:33
540
  msgid "Click Save Settings Button To Login"
541
+ msgstr "Clicca sul Pulsante Salva Impostazioni per Accedere"
542
 
543
  #: admin/tpls/settings/addon-update.php:50
544
  msgid "Purchased Add-ons"
545
+ msgstr "Aggiunte Acquistate"
546
 
547
  #: admin/tpls/settings/addon-update.php:51
548
  msgid "Free Add-ons"
549
+ msgstr "Aggiunte Gratuite"
550
 
551
  #: admin/tpls/settings/addon-update.php:58
552
  #: admin/tpls/settings/addon-update.php:104
553
  msgid "Product Name"
554
+ msgstr "Nome del Prodotto"
555
 
556
  #: admin/tpls/settings/addon-update.php:59
557
  #: admin/tpls/settings/addon-update.php:105
561
  #: admin/tpls/settings/addon-update.php:60
562
  #: admin/tpls/settings/addon-update.php:106
563
  msgid "Latest(v)"
564
+ msgstr "Recenti(v)"
565
 
566
  #: admin/tpls/settings/addon-update.php:86
567
  #: admin/tpls/settings/addon-update.php:127
583
  msgstr "Scaduti"
584
 
585
  #: admin/tpls/settings/addon-update.php:145 tpls/lost-password-form.php:59
586
+ #: tpls/reset-password-form.php:49 tpls/wpdm-reg-form.php:103
587
+ #: tpls3/lost-password-form.php:41 tpls3/reset-password-form.php:49
588
  #: tpls3/wpdm-reg-form.php:106
589
  msgid "Please Wait..."
590
  msgstr "Attendere........"
599
 
600
  #: admin/tpls/settings/basic.php:34
601
  msgid "Permission Denied Message for Packages:"
602
+ msgstr "Messaggio Permesso Negato per i Pacchetti:"
603
 
604
  #: admin/tpls/settings/basic.php:43
605
  msgid "Login Required Message:"
611
 
612
  #: admin/tpls/settings/basic.php:55
613
  msgid "Server File Browser Base Dir:"
614
+ msgstr "Esplora le Directory nel Server:"
615
 
616
  #: admin/tpls/settings/basic.php:59
617
  msgid "Reset Base Dir"
619
 
620
  #: admin/tpls/settings/basic.php:65
621
  msgid "File Browser Access:"
622
+ msgstr "Accedi all'Esplorazione dei File:"
623
 
624
  #: admin/tpls/settings/basic.php:67
625
  msgid "Who will have access to server file browser"
631
 
632
  #: admin/tpls/settings/basic.php:103
633
  msgid "Sanitize Filename"
634
+ msgstr "Ripulisci i nomi dei File"
635
 
636
  #: admin/tpls/settings/basic.php:104
637
  msgid ""
642
 
643
  #: admin/tpls/settings/basic.php:111
644
  msgid "Chunk Upload"
645
+ msgstr "Caricamento del Pezzo"
646
 
647
  #: admin/tpls/settings/basic.php:112
648
  msgid ""
649
  "Check the option if you want to enable chunk upload to override http upload "
650
  "limits"
651
  msgstr ""
652
+ "Seleziona l'opzione se vuoi abilitare il Caricamento a Pezzi per superare i "
653
+ "limiti http"
654
 
655
  #: admin/tpls/settings/basic.php:117
656
  msgid "Chunk Size"
657
+ msgstr "Dimensione del Pezzo"
658
 
659
  #: admin/tpls/settings/basic.php:130
660
  msgid "File Download"
662
 
663
  #: admin/tpls/settings/basic.php:134
664
  msgid "Download Speed:"
665
+ msgstr "Velocità di Scarico:"
666
 
667
  #: admin/tpls/settings/basic.php:142
668
  msgid "Blocked IPs"
696
  "as sometimes server may not support output buffering or partial downloads"
697
  msgstr ""
698
  "Se ottieni un File corrotto, prova a disabilitare/abilitare le seguenti "
699
+ "opzioni, a volte il server non consente il buffering o gli scarichi parziali"
700
 
701
  #: admin/tpls/settings/basic.php:156
702
  msgid "Resumable Downloads"
703
+ msgstr "Scarichi recuperabili"
704
 
705
  #: admin/tpls/settings/basic.php:158 admin/tpls/settings/basic.php:165
706
  msgid "Enabled"
747
 
748
  #: admin/tpls/settings/basic.php:184
749
  msgid "reCAPTCHA Lock Settings"
750
+ msgstr "impostazioni di blocco del reCAPTCHA"
751
 
752
  #: admin/tpls/settings/basic.php:186
753
  msgid "reCAPTCHA Site Key"
754
+ msgstr "chiave reCAPTCHA per il Sito"
755
 
756
  #: admin/tpls/settings/basic.php:188
757
  msgid ""
763
 
764
  #: admin/tpls/settings/basic.php:191
765
  msgid "reCAPTCHA Secret Key"
766
+ msgstr "chiave segreta per il reCAPTCHA"
767
 
768
  #: admin/tpls/settings/basic.php:196
769
  msgid "Enable sign up form CAPTCHA validation"
779
 
780
  #: admin/tpls/settings/basic.php:217
781
  msgid "Login Page"
782
+ msgstr "Pagina di Login"
783
 
784
  #: admin/tpls/settings/basic.php:218 admin/tpls/settings/basic.php:227
785
  #: admin/tpls/settings/basic.php:235
817
 
818
  #: admin/tpls/settings/basic.php:234
819
  msgid "Dashboard Page"
820
+ msgstr "Pannello di Controllo"
821
 
822
  #: admin/tpls/settings/basic.php:241
823
  msgid "Include Packages in Main RSS Feed"
824
+ msgstr "Includi i Pacchetti nel Principale RSS Feed"
825
 
826
  #: admin/tpls/settings/basic.php:242
827
  #, php-format
829
  "Check this option if you want to show wpdm packages in your main <a target="
830
  "\"_blank\" href=\"%s\">RSS Feed</a>"
831
  msgstr ""
832
+ "Seleziona questa opzione se vuoi mostrare i pacchetti wpdm nel tuo "
833
+ "principale <a target=\"_blank\" href=\"%s\">RSS Feed</a>"
834
 
835
  #: admin/tpls/settings/privacy.php:9
836
  msgid "Privacy Settings"
837
+ msgstr "Impostazioni Privacy"
838
 
839
  #: admin/tpls/settings/privacy.php:13
840
  msgid "Do not store visitor's IP"
841
  msgstr ""
842
 
843
  #: admin/tpls/settings/privacy.php:14
844
+ #, fuzzy
845
+ #| msgid ""
846
+ #| "Check the option if you want to sanitize uploaded file names to remove "
847
+ #| "illegal chars"
848
  msgid "Check this option if you do not want to store visitors IPs"
849
  msgstr ""
850
+ "Scegli questa opzione se vuoi togliere i caratteri inutili dai nomi dei File"
851
 
852
  #: admin/tpls/settings/privacy.php:19
853
  msgid "Delete download history when users close accounts"
889
 
890
  #: admin/tpls/settings/user-interface.php:20
891
  msgid "Disable Style & Script"
892
+ msgstr "Disabilita Stile & Codici"
893
 
894
  #: admin/tpls/settings/user-interface.php:26
895
  msgid "Bootstrap JS"
901
 
902
  #: admin/tpls/settings/user-interface.php:28
903
  msgid "Font Awesome"
904
+ msgstr "Caratteri Speciali"
905
 
906
  #: admin/tpls/settings/user-interface.php:29
907
  msgid "Front CSS"
908
+ msgstr "Caratteri CSS"
909
 
910
  #: admin/tpls/settings/user-interface.php:30
911
  msgid "Google Font"
912
+ msgstr "Caratteri Google"
913
 
914
  #: admin/tpls/settings/user-interface.php:32
915
  msgid ""
916
  "Because, sometimes your theme may have those scripts/styles enqueued already"
917
+ msgstr "A volte il tuo tema ha già questi codici"
918
 
919
  #: admin/tpls/settings/user-interface.php:38
920
  msgid "Colors"
921
+ msgstr "Colori"
922
 
923
  #: admin/tpls/settings/user-interface.php:54
924
  msgid "Primary:"
925
+ msgstr "Primario:"
926
 
927
  #: admin/tpls/settings/user-interface.php:60
928
  msgid "Secondary:"
929
+ msgstr "Secondario:"
930
 
931
  #: admin/tpls/settings/user-interface.php:66
932
  msgid "Info:"
933
+ msgstr "Informazioni:"
934
 
935
  #: admin/tpls/settings/user-interface.php:72
936
  msgid "Success:"
937
+ msgstr "Successo:"
938
 
939
  #: admin/tpls/settings/user-interface.php:78
940
  msgid "Warning:"
941
+ msgstr "Attenzione:"
942
 
943
  #: admin/tpls/settings/user-interface.php:84
944
  msgid "Danger:"
945
+ msgstr "Pericolo:"
946
 
947
  #: admin/tpls/settings/user-interface.php:96
948
  msgid "Download Button"
949
+ msgstr "Pulsante Scarica"
950
 
951
  #: admin/tpls/settings/user-interface.php:100
952
  msgid "Details Page"
953
+ msgstr "Dettagli Pagina"
954
 
955
  #: admin/tpls/settings/user-interface.php:125
956
  #: admin/tpls/settings/user-interface.php:155
957
  msgid "Border Radius"
958
+ msgstr "Raggio del Bordo"
959
 
960
  #: admin/tpls/settings/user-interface.php:130
961
  msgid "Shortcode Page"
962
+ msgstr "Pagina Abbreviata"
963
 
964
  #: admin/tpls/stats.php:6
965
  msgid "Clear History"
966
+ msgstr "Cancella la Cronologia"
967
 
968
  #: admin/tpls/stats.php:7
969
  msgid "Export History"
970
+ msgstr "Cronologia delle Esportazioni"
971
 
972
  #: admin/tpls/stats.php:8 libs/class.UserDashboard.php:18
973
  #: tpls/already-logged-in.php:22 tpls3/already-logged-in.php:22
980
 
981
  #: admin/tpls/stats.php:35
982
  msgid "Clearing..."
983
+ msgstr "Pulendo..."
984
 
985
  #: admin/tpls/stats.php:38
986
  msgid "Download History is Empty"
988
 
989
  #: admin/tpls/stats/history.php:123
990
  #, fuzzy
991
+ #| msgid "From Name"
992
  msgid "From Date"
993
+ msgstr "Da Nome"
994
 
995
  #: admin/tpls/stats/history.php:133
996
  msgid "To Date"
998
 
999
  #: admin/tpls/stats/history.php:143
1000
  #, fuzzy
1001
+ #| msgid "User/IP"
1002
  msgid "Users"
1003
+ msgstr "Utente/IP"
1004
 
1005
  #: admin/tpls/stats/history.php:172
1006
  #, fuzzy
1039
 
1040
  #: admin/tpls/stats/history.php:224
1041
  #, fuzzy
1042
+ #| msgid "User/IP"
1043
  msgid "User"
1044
+ msgstr "Utente/IP"
1045
 
1046
  #: admin/tpls/stats/history.php:225 tpls/user-dashboard/download-history.php:9
1047
  #: tpls/user-dashboard/profile.php:147
1066
  "Custom Template editor is available with <a target='_blank' "
1067
  "href='%s'>WordPress Download Manager Pro</a>"
1068
  msgstr ""
1069
+ "Modello Personalizzato disponibile con <a target='_blank' "
1070
+ "href='%s'>WordPress Download Manager Pro</a"
1071
 
1072
  #: admin/tpls/templates.php:20
1073
  #, php-format
1078
 
1079
  #: admin/tpls/templates.php:28
1080
  msgid "Template Name"
1081
+ msgstr "Nome del Modello"
1082
 
1083
  #: admin/tpls/templates.php:29
1084
  msgid "Template ID"
1085
+ msgstr "ID del Modello"
1086
 
1087
  #: admin/tpls/templates.php:31
1088
  msgid "Actions"
1089
+ msgstr "Azioni"
1090
 
1091
  #: admin/tpls/templates.php:74
1092
  msgid "To:"
1093
+ msgstr "A:"
1094
 
1095
  #: admin/tpls/templates.php:82
1096
  msgid "Edit"
1097
+ msgstr "Modifica"
1098
 
1099
  #: admin/tpls/templates.php:123 admin/tpls/templates.php:124
1100
  #: tpls/wpdm-edit-user-profile.php:23
1101
  msgid "Logo URL"
1102
+ msgstr "Indirizzo del Logo"
1103
 
1104
  #: admin/tpls/templates.php:127 admin/tpls/templates.php:128
1105
  msgid "Banner/Background Image URL"
1106
+ msgstr "Indirizzo Immagine di Sfondo/Banner"
1107
 
1108
  #: admin/tpls/templates.php:139
1109
  msgid "Footer Text"
1110
+ msgstr "Piè di Pagina"
1111
 
1112
  #: admin/tpls/templates.php:143
1113
  msgid "Facebook Page URL"
1114
+ msgstr "Indirizzo Pagina Facebook"
1115
 
1116
  #: admin/tpls/templates.php:147
1117
  msgid "Twitter Profile URL"
1118
+ msgstr "Indirizzo Profilo Twitter"
1119
 
1120
  #: admin/tpls/templates.php:151
1121
  msgid "Youtube Profile URL"
1122
+ msgstr "Indirizzo Profilo Youtube"
1123
 
1124
  #: admin/tpls/templates.php:201
1125
  msgid "Template Preview"
1126
+ msgstr "Anteprima Modello"
1127
 
1128
  #: admin/tpls/templates.php:207
1129
  msgid ""
1130
  "This is a preview, original template color scheme may look little different, "
1131
  "but structure will be same"
1132
  msgstr ""
1133
+ "Questa è un'anteprima, la combinazione di colori del modello originale può "
1134
+ "apparire leggermente diversa, ma la struttura sarà la stessa"
1135
 
1136
  #: admin/tpls/templates.php:343
1137
  msgid "Saving..."
1138
+ msgstr "Salvo..."
1139
 
1140
  #: download-manager.php:202 download-manager.php:214
1141
+ #: libs/class.CategoryHandler.php:327 libs/class.CategoryHandler.php:347
1142
  #: libs/class.ShortCodes.php:423 libs/class.UserProfile.php:20
1143
  #: tpls/shortcodes/toolbar.php:43 tpls/shortcodes/toolbar.php:77
1144
  #: tpls3/shortcodes/toolbar.php:43 tpls3/shortcodes/toolbar.php:77
1145
  #: wpdm-functions.php:823 wpdm-functions.php:842
1146
  msgid "Downloads"
1147
+ msgstr "Downloads"
1148
 
1149
  #: download-manager.php:203 libs/class.FileList.php:69
1150
  msgid "File"
1225
 
1226
  #: download-manager.php:252
1227
  msgid "New Category Name"
1228
+ msgstr "Nuovo nome di categoria"
1229
 
1230
+ #: libs/class.Apply.php:162 libs/class.Apply.php:250
1231
  msgid "Invalid CAPTCHA!"
1232
  msgstr ""
1233
 
1234
+ #: libs/class.Apply.php:196 tpls/wpdm-reg-form.php:112
1235
  #: tpls3/wpdm-reg-form.php:115
1236
  msgid "Success! Redirecting..."
1237
+ msgstr "Successo! Reindirizzamento..."
1238
 
1239
+ #: libs/class.Apply.php:233
1240
  msgid "Something is Wrong! Please refresh the page and try again"
1241
+ msgstr "Qualcosa è sbagliato! per favore ricarica la pagina e riprova"
1242
 
1243
+ #: libs/class.Apply.php:263
1244
  msgid "Error: User registration is disabled!"
1245
  msgstr "Errore: la registrazione degli utenti è disabilitata!"
1246
 
1247
+ #: libs/class.Apply.php:288
1248
  msgid "Username is Empty!"
1249
  msgstr "Nome Utente vuoto!"
1250
 
1251
+ #: libs/class.Apply.php:303
1252
  #, fuzzy
1253
  #| msgid "Invalid Email Address!"
1254
  msgid "Invalid email address!"
1255
  msgstr "Indirizzo email non valido!"
1256
 
1257
+ #: libs/class.Apply.php:327
1258
  msgid "Passwords not matched!"
1259
  msgstr ""
1260
 
1261
+ #: libs/class.Apply.php:404
1262
  msgid "Edit User"
1263
+ msgstr "Modifica Utente"
1264
 
1265
+ #: libs/class.Apply.php:423
1266
  msgid ""
1267
  "Your account has been created successfully and login info sent to your mail "
1268
  "address."
1269
  msgstr ""
1270
+ "Il tuo account è stato creato con successo e le informazioni di accesso sono "
1271
+ "state inviate al tuo indirizzo e-mail."
1272
 
1273
+ #: libs/class.Apply.php:425 libs/class.Apply.php:431
1274
+ #, fuzzy
1275
+ #| msgid "Your account has been created successfully"
1276
  msgid "Your account has been created successfully."
1277
+ msgstr "Il tuo account è stato creato con successo"
1278
 
1279
+ #: libs/class.Apply.php:449
1280
+ #, fuzzy
1281
+ #| msgid "Email already exists."
1282
  msgid "Email already exist!"
1283
+ msgstr "Email già esistente."
1284
 
1285
+ #: libs/class.Apply.php:462
1286
  msgid "Username already exists."
1287
+ msgstr "Il nome utente esiste già."
1288
+
1289
+ #: libs/class.Apply.php:524
1290
+ msgid "Password update is disabled for this user!"
1291
  msgstr ""
1292
 
1293
+ #: libs/class.Apply.php:532 libs/class.Apply.php:534
1294
+ #, fuzzy
1295
+ #| msgid "Security token is expired! Refresh the page and try again."
1296
  msgid "Session Expired! Please try again."
1297
+ msgstr "Il gettone di sicurezza è scaduto! Aggiorna la pagina e riprova."
1298
 
1299
+ #: libs/class.Apply.php:681
1300
  msgid "You don't have permission to download this file"
1301
  msgstr "Non hai il permesso di scaricare questo file"
1302
 
1303
+ #: libs/class.Apply.php:688
1304
  msgid "Download link is expired. Please get new download link."
1305
  msgstr ""
1306
  "Link per il download scaduto. Si prega di ottenere nuovi link per il "
1307
  "download."
1308
 
1309
+ #: libs/class.Apply.php:690
1310
  msgid "Download link is expired or not valid. Please get new download link."
1311
  msgstr ""
1312
  "Link per il download scaduto o non valido. Si prega di ottenere nuovi link "
1313
  "per il download."
1314
 
1315
+ #: libs/class.Apply.php:697
1316
  msgid "Stock Limit Reached"
1317
  msgstr ""
1318
 
1319
+ #: libs/class.Apply.php:703
1320
  msgid "Invalid download link."
1321
  msgstr "Link non valido."
1322
 
1323
  #: libs/class.AssetManager.php:156
1324
+ #, fuzzy
1325
+ #| msgid "Download link is expired or not valid. Please get new download link."
1326
  msgid ""
1327
  "Download link is expired! Go back and Refresh the page to regenerate "
1328
  "download link"
1329
  msgstr ""
1330
+ "Link per il download scaduto o non valido. Si prega di ottenere nuovi link "
1331
+ "per il download."
1332
 
1333
  #: libs/class.AssetManager.php:180
1334
  msgid "Asset Manager"
1363
  msgstr ""
1364
 
1365
  #: libs/class.AssetManager.php:214 libs/class.AssetManager.php:392
1366
+ #, fuzzy
1367
+ #| msgid "Unauthorized Access!"
1368
  msgid "Error! Unauthorized Access."
1369
+ msgstr "Accesso non autorizzato!"
1370
 
1371
  #: libs/class.AssetManager.php:222 libs/class.AssetManager.php:479
1372
  #: libs/class.AssetManager.php:503 libs/class.AssetManager.php:522
1384
  msgstr ""
1385
 
1386
  #: libs/class.AssetManager.php:527 libs/class.AssetManager.php:551
1387
+ #, fuzzy
1388
+ #| msgid "Invalid template ID!"
1389
  msgid "Invalid source path"
1390
+ msgstr "ID Modello non valido!"
1391
 
1392
  #: libs/class.AssetManager.php:528 libs/class.AssetManager.php:552
1393
  msgid "Invalid destination path"
1394
  msgstr ""
1395
 
1396
  #: libs/class.AssetManager.php:536
1397
+ #, fuzzy
1398
+ #| msgid "Privacy Settings Saved Successfully"
1399
  msgid "File moved successfully"
1400
+ msgstr "Impostazioni Privacy Salvate Correttamente"
1401
 
1402
  #: libs/class.AssetManager.php:559
1403
  msgid "File copied successfully"
1416
  msgstr ""
1417
 
1418
  #: libs/class.AssetManager.php:641
1419
+ #, fuzzy
1420
+ #| msgid "Please activate \"zlib\" in your server"
1421
  msgid "Please activate \"zlib\" in your server to perform zip operations"
1422
+ msgstr "Attiva \"zlib\" nel tuo server"
1423
 
1424
  #: libs/class.AssetManager.php:646
1425
  msgid "Unzipped successfully."
1429
  msgid "Error! Couldn't open the zip file."
1430
  msgstr ""
1431
 
1432
+ #: libs/class.CategoryHandler.php:251
1433
+ msgid "Category doesn't exist"
1434
+ msgstr ""
1435
+
1436
+ #: libs/class.CategoryHandler.php:327 wpdm-functions.php:823
1437
  msgid "Sub-Categories"
1438
  msgstr "Sotto-Categorie"
1439
 
1440
+ #: libs/class.CategoryHandler.php:346 libs/class.ShortCodes.php:422
1441
  #: modules/strings.php:18 tpls/shortcodes/toolbar.php:41
1442
  #: tpls/shortcodes/toolbar.php:75 tpls/wpdm-edit-user-profile.php:15
1443
  #: tpls3/shortcodes/toolbar.php:41 tpls3/shortcodes/toolbar.php:75
1445
  msgid "Title"
1446
  msgstr "Titolo"
1447
 
1448
+ #: libs/class.CategoryHandler.php:348 libs/class.ShortCodes.php:424
1449
  #: tpls/shortcodes/toolbar.php:40 tpls/shortcodes/toolbar.php:74
1450
  #: tpls3/shortcodes/toolbar.php:40 tpls3/shortcodes/toolbar.php:74
1451
  #: widgets/class.PackageInfo.php:22 widgets/class.PackageInfo.php:119
1453
  msgid "Publish Date"
1454
  msgstr "Data di Pubblicazione"
1455
 
1456
+ #: libs/class.CategoryHandler.php:349 libs/class.ShortCodes.php:425
1457
  #: tpls/shortcodes/toolbar.php:42 tpls/shortcodes/toolbar.php:76
1458
  #: tpls3/shortcodes/toolbar.php:42 tpls3/shortcodes/toolbar.php:76
1459
  #: widgets/class.PackageInfo.php:120 wpdm-functions.php:844
1460
  msgid "Update Date"
1461
  msgstr "Data aggiornamento"
1462
 
1463
+ #: libs/class.CategoryHandler.php:350 libs/class.ShortCodes.php:426
1464
  #: wpdm-functions.php:845
1465
  msgid "Asc"
1466
  msgstr "Asc"
1467
 
1468
+ #: libs/class.CategoryHandler.php:351 libs/class.ShortCodes.php:427
1469
  #: wpdm-functions.php:846
1470
  msgid "Desc"
1471
  msgstr "Disc"
1472
 
1473
+ #: libs/class.CategoryHandler.php:352 libs/class.ShortCodes.php:428
1474
  #: wpdm-functions.php:847
1475
  msgid "Search"
1476
  msgstr "Ricerca"
1477
 
1478
+ #: libs/class.CategoryHandler.php:353 libs/class.ShortCodes.php:429
1479
  #: wpdm-functions.php:848
1480
  msgid "Order"
1481
  msgstr "Ordine"
1482
 
1483
+ #: libs/class.CategoryHandler.php:354 libs/class.ShortCodes.php:430
1484
  #: wpdm-functions.php:849
1485
  msgid "Order By"
1486
  msgstr "Ordina per"
1487
 
1488
  #: libs/class.Email.php:43
1489
  msgid "General Email Template"
1490
+ msgstr "Modello di email generale"
1491
 
1492
  #: libs/class.Email.php:52 libs/class.Email.php:62
1493
  msgid "User Signup Notification"
1494
+ msgstr "Notifica di registrazione utente"
1495
 
1496
  #: libs/class.Email.php:55
1497
  #, php-format
1506
  #: libs/class.Email.php:69
1507
  msgid "New user registration on your site WordPress Download Manager:"
1508
  msgstr ""
1509
+ "Nuova registrazione utente sul tuo sito Gestione download di WordPress:"
1510
 
1511
  #: libs/class.Email.php:73
1512
  msgid "Password Reset Notification"
1513
+ msgstr "Notifica di azzeramento password"
1514
 
1515
  #: libs/class.Email.php:76
1516
  #, php-format
1517
  msgid "Request to reset your %s password"
1518
+ msgstr "Richiesta di azzeramento della tua %s password"
1519
 
1520
  #: libs/class.Email.php:83
1521
+ #, fuzzy
1522
+ #| msgid "Password Reset Notification"
1523
  msgid "Email Lock Notification"
1524
+ msgstr "Notifica di azzeramento password"
1525
 
1526
  #: libs/class.Email.php:86
1527
+ #, fuzzy
1528
+ #| msgid "Download Manager"
1529
  msgid "Download [#package_name#]"
1530
+ msgstr "Download Manager"
1531
 
1532
  #: libs/class.Email.php:93 wpdm-core.php:192
1533
+ #, fuzzy
1534
+ #| msgid "User Signup Notification"
1535
  msgid "New Package Notification"
1536
+ msgstr "Notifica di registrazione utente"
1537
 
1538
  #: libs/class.Email.php:96
1539
  msgid "New Package is Added By [#name#]"
1540
  msgstr ""
1541
 
1542
+ #: libs/class.Email.php:261
1543
  msgid "Sample Package Name"
1544
+ msgstr "Nome Pacchetto Campione"
1545
 
1546
  #: libs/class.FileList.php:64 libs/class.FileList.php:96
1547
  #: libs/class.FileList.php:134 libs/class.FileList.php:202
1555
  msgstr "Azione"
1556
 
1557
  #: libs/class.MediaAccessControl.php:60
1558
+ #, fuzzy
1559
+ #| msgid "Wrong Password! Try Again."
1560
  msgid "<b>Error:</b> Wrong Password! Try Again."
1561
+ msgstr "Password Errata! Riprova."
1562
 
1563
  #: libs/class.MediaAccessControl.php:84
1564
  msgid "Protected Media File"
1607
  msgid "Download Limit Exceeded!"
1608
  msgstr "Limite di scaricamento superato"
1609
 
1610
+ #: libs/class.Messages.php:111 libs/class.Package.php:934
1611
  #: libs/class.ShortCodes.php:142 tpls/lost-password-form.php:34
1612
  #: tpls/wpdm-login-form.php:63 tpls/wpdm-login-modal-form.php:75
1613
  #: tpls/wpdm-reg-form.php:79 tpls3/lost-password-form.php:29
1614
  #: tpls3/wpdm-login-form.php:101 tpls3/wpdm-login-modal-form.php:88
1615
  #: tpls3/wpdm-reg-form.php:82
1616
  msgid "Login"
1617
+ msgstr "Login"
1618
 
1619
  #: libs/class.Messages.php:119
1620
  #, fuzzy
1635
  msgid "Thumbnail"
1636
  msgstr "Miniatura"
1637
 
1638
+ #: libs/class.Package.php:169 libs/class.Package.php:656 wpdm-functions.php:103
1639
  #: wpdm-start-download.php:24
1640
  msgid "Download Limit Exceeded"
1641
  msgstr "Limite di scaricamento superato"
1643
  #: libs/class.Package.php:172 libs/class.Package.php:180
1644
  #: libs/class.Package.php:188 libs/class.Package.php:196
1645
  msgid "DOWNLOAD ERROR"
1646
+ msgstr "ERRORE SCARICAMENTO"
1647
 
1648
+ #: libs/class.Package.php:177 libs/class.Package.php:660
1649
+ #: libs/class.Package.php:888 wpdm-functions.php:107
1650
  msgid "Download was expired on"
1651
  msgstr "Il Download è scaduto il"
1652
 
1653
+ #: libs/class.Package.php:185 libs/class.Package.php:667
1654
+ #: libs/class.Package.php:894 wpdm-functions.php:114
1655
  msgid "Download will be available from "
1656
  msgstr "Il download sarà disponibile da "
1657
 
1658
+ #: libs/class.Package.php:225
1659
  msgid "Terms and Conditions"
1660
  msgstr "Termini e Condizioni"
1661
 
1662
+ #: libs/class.Package.php:227
1663
  #, fuzzy
1664
  #| msgid "Terms and Conditions"
1665
  msgid "I Agree With Terms and Conditions"
1666
  msgstr "Termini e Condizioni"
1667
 
1668
+ #: libs/class.Package.php:464
1669
  msgid "No File Attached!"
1670
  msgstr "Nessun Allegato!"
1671
 
1672
+ #: libs/class.Package.php:662 libs/class.Package.php:669
1673
+ #: libs/class.Package.php:679 wpdm-functions.php:109 wpdm-functions.php:116
1674
  #: wpdm-functions.php:126
1675
  msgid "Download:"
1676
  msgstr "Download:"
1677
 
1678
+ #: libs/class.Package.php:761 wpdm-functions.php:208
1679
  msgid "Download limit exceeded!"
1680
  msgstr "Limite di scaricamento superato!"
1681
 
1682
+ #: libs/class.Package.php:823
1683
  msgid "Verify CAPTCHA to Download"
1684
  msgstr "Verifica il Captcha per scaricare"
1685
 
1686
+ #: libs/class.Package.php:889 libs/class.Package.php:895
1687
+ #: libs/class.Package.php:907
1688
  msgid "DOWNLOAD ERROR:"
1689
+ msgstr "ERRORE SCARICAMENTO:"
1690
 
1691
+ #: libs/class.Package.php:983
1692
  msgid "Limit Over!"
1693
+ msgstr "Limite Superato!"
1694
+
1695
+ #: libs/class.Package.php:1392
1696
+ #, fuzzy
1697
+ #| msgid "Sample Package Name"
1698
+ msgid "Sample Package"
1699
+ msgstr "Nome Pacchetto Campione"
1700
 
1701
  #: libs/class.PackageLocks.php:44 tpls/lock-options/password-lock.php:11
1702
  #: tpls3/lock-options/password-lock.php:11
1709
  #: tpls3/lock-options/password-lock.php:14
1710
  #: tpls3/lock-options/password-lock.php:30 tpls3/wpdm-all-downloads.php:121
1711
  msgid "Processing..."
1712
+ msgstr "Controllo..."
1713
 
1714
  #: libs/class.PackageLocks.php:54 libs/class.User.php:93
1715
  #: tpls/lock-options/password-lock.php:21
1726
  #: tpls/wpdm-all-downloads.php:398 tpls3/wpdm-all-downloads.php:127
1727
  #: tpls3/wpdm-all-downloads.php:333 wpdm-functions.php:1887
1728
  msgid "Previous"
1729
+ msgstr "Precedenti"
1730
 
1731
  #: libs/class.Pagination.php:51 tpls/wpdm-all-downloads.php:52
1732
  #: tpls/wpdm-all-downloads.php:399 tpls3/wpdm-all-downloads.php:126
1733
  #: tpls3/wpdm-all-downloads.php:334 wpdm-functions.php:1888
1734
  msgid "Next"
1735
+ msgstr "Successivi"
1736
 
1737
  #: libs/class.ShortCodes.php:189
1738
  msgid "User registration is disabled"
1744
 
1745
  #: libs/class.User.php:41
1746
  #, fuzzy
1747
+ #| msgid "First Name"
1748
  msgid "First name"
1749
+ msgstr "Nome"
1750
 
1751
  #: libs/class.User.php:41
1752
+ #, fuzzy
1753
+ #| msgid "First Name"
1754
  msgid "Your First Name"
1755
+ msgstr "Nome"
1756
 
1757
  #: libs/class.User.php:42
1758
  #, fuzzy
1759
+ #| msgid "Last Name"
1760
  msgid "Last name"
1761
+ msgstr "Cognome"
1762
 
1763
  #: libs/class.User.php:42
1764
  #, fuzzy
1765
+ #| msgid "Last Name"
1766
  msgid "Your Last Name"
1767
+ msgstr "Cognome"
1768
 
1769
  #: libs/class.User.php:47
1770
  msgid "Username"
1776
 
1777
  #: libs/class.User.php:53
1778
  #, fuzzy
1779
+ #| msgid "Emails"
1780
  msgid "Email"
1781
+ msgstr "Emails"
1782
 
1783
  #: libs/class.User.php:55
1784
  #, fuzzy
1790
  msgid "Be Secure"
1791
  msgstr ""
1792
 
1793
+ #: libs/class.User.php:63 tpls/reset-password-form.php:31
1794
+ #: tpls3/reset-password-form.php:31
1795
  msgid "Confirm Password"
1796
  msgstr "Conferma la Password"
1797
 
1800
  msgstr ""
1801
 
1802
  #: libs/class.User.php:86
1803
+ #, fuzzy
1804
+ #| msgid "Login"
1805
  msgid "Login ID"
1806
+ msgstr "Login"
1807
 
1808
  #: libs/class.User.php:88 tpls/lost-password-form.php:23
1809
  #: tpls/lost-password-form.php:24 tpls3/lost-password-form.php:20
1810
  #: tpls3/wpdm-login-form.php:55 tpls3/wpdm-login-modal-form.php:55
1811
+ #, fuzzy
1812
+ #| msgid "Username is Empty!"
1813
  msgid "Username or Email"
1814
+ msgstr "Nome Utente vuoto!"
1815
 
1816
  #: libs/class.UserDashboard.php:17
1817
  msgid "Profile"
1818
+ msgstr "Modifica il tuo profilo"
1819
 
1820
  #: libs/class.UserDashboard.php:19
1821
  msgid "Edit Profile"
1896
  #: modules/strings.php:23 tpls/wpdm-all-downloads.php:318
1897
  #: tpls3/wpdm-all-downloads.php:260
1898
  msgid "file(s)"
1899
+ msgstr "file(s)"
1900
 
1901
  #: modules/strings.php:24
1902
  msgid "Buy Now"
1907
  msgstr "Prezzo"
1908
 
1909
  #: tpls/already-logged-in.php:15 tpls3/already-logged-in.php:15
1910
+ #, fuzzy
1911
+ #| msgid "Welcome to %s"
1912
  msgid "Welcome"
1913
+ msgstr "Benvenuto a %s"
1914
 
1915
  #: tpls/already-logged-in.php:17 tpls3/already-logged-in.php:17
1916
  msgid "You are already logged in."
1917
  msgstr "Sei già autenticato."
1918
 
1919
  #: tpls/already-logged-in.php:21 tpls3/already-logged-in.php:21
1920
+ #, fuzzy
1921
+ #| msgid "Dashboard Page"
1922
  msgid "Dashboard"
1923
+ msgstr "Pannello di Controllo"
1924
 
1925
+ #: tpls/asset-manager-ui.php:513 tpls3/asset-manager-ui.php:500
1926
+ #, fuzzy
1927
+ #| msgid "New File"
1928
  msgid "New Folder"
1929
+ msgstr "Nuovo File"
1930
 
1931
+ #: tpls/asset-manager-ui.php:515 tpls/asset-manager-ui.php:721
1932
  #: tpls3/asset-manager-ui.php:502 tpls3/asset-manager-ui.php:706
1933
+ #, fuzzy
1934
+ #| msgid "Upload"
1935
  msgid "Upload File"
1936
+ msgstr "Upload"
1937
 
1938
+ #: tpls/asset-manager-ui.php:521 tpls3/asset-manager-ui.php:508
1939
  msgid "Digital Asset Manager"
1940
  msgstr ""
1941
 
1942
+ #: tpls/asset-manager-ui.php:624 tpls3/asset-manager-ui.php:611
1943
+ #, fuzzy
1944
+ #| msgid "Shortcode Page"
1945
  msgid "Copy Shortcode"
1946
+ msgstr "Pagina Abbreviata"
1947
 
1948
+ #: tpls/asset-manager-ui.php:728 tpls3/asset-manager-ui.php:713
1949
  msgid "Drop files here"
1950
  msgstr ""
1951
 
1952
+ #: tpls/asset-manager-ui.php:835 tpls3/asset-manager-ui.php:820
1953
  msgid "Authorized User Groups:"
1954
  msgstr ""
1955
 
1956
+ #: tpls/asset-manager-ui.php:857 tpls3/asset-manager-ui.php:842
1957
+ #, fuzzy
1958
+ #| msgid "Unauthorized Access!"
1959
  msgid "Authorized Users:"
1960
+ msgstr "Accesso non autorizzato!"
1961
 
1962
  #: tpls/asset-viewer.php:6
1963
  #, fuzzy
1967
 
1968
  #: tpls/lock-options-iframe.php:289 tpls3/lock-options-iframe.php:243
1969
  msgid "Buy"
1970
+ msgstr "Compra"
1971
 
1972
  #: tpls/lost-password-form.php:17 tpls3/lost-password-form.php:15
1973
+ #, fuzzy
1974
+ #| msgid "Forgot Password?"
1975
  msgid "Lost Password?"
1976
+ msgstr "Password dimenticata?"
1977
 
1978
  #: tpls/lost-password-form.php:19 tpls3/lost-password-form.php:17
1979
  msgid ""
1982
  msgstr ""
1983
 
1984
  #: tpls/lost-password-form.php:29 tpls3/lost-password-form.php:24
1985
+ #, fuzzy
1986
+ #| msgid "Generated Passwords"
1987
  msgid "Reset Password"
1988
+ msgstr "Password Create"
1989
 
1990
  #: tpls/lost-password-form.php:35 tpls3/lost-password-form.php:30
1991
+ #, fuzzy
1992
+ #| msgid "Register Page"
1993
  msgid "Register"
1994
+ msgstr "Pagina di Registrazione"
1995
 
1996
  #: tpls/lost-password-form.php:53
1997
  msgid "MAO: SENT!"
2001
  msgid "Password reset link sent to your email."
2002
  msgstr ""
2003
 
2004
+ #: tpls/lost-password-form.php:65 tpls/reset-password-form.php:55
2005
+ #: tpls/reset-password-form.php:74 tpls3/lost-password-form.php:47
2006
+ #: tpls3/reset-password-form.php:55 tpls3/reset-password-form.php:74
2007
  msgid "ERROR!"
2008
+ msgstr "ERRORE!"
2009
 
2010
  #: tpls/lost-password-form.php:65 tpls3/lost-password-form.php:47
2011
  msgid "Account not found."
2019
  msgid "Please check your inbox."
2020
  msgstr ""
2021
 
2022
+ #: tpls/reset-password-form.php:22 tpls/reset-password-form.php:27
2023
+ #: tpls3/reset-password-form.php:22 tpls3/reset-password-form.php:27
2024
+ #, fuzzy
2025
+ #| msgid "Password"
2026
  msgid "New Password"
2027
+ msgstr "Password"
2028
 
2029
+ #: tpls/reset-password-form.php:24 tpls3/reset-password-form.php:24
2030
+ #, fuzzy
2031
+ #| msgid "Generated Passwords"
2032
  msgid "Please enter a new password"
2033
+ msgstr "Password Create"
2034
 
2035
+ #: tpls/reset-password-form.php:35 tpls3/reset-password-form.php:35
2036
+ #, fuzzy
2037
+ #| msgid "Enter Password"
2038
  msgid "Update Password"
2039
+ msgstr "Scrivi la Password"
2040
 
2041
+ #: tpls/reset-password-form.php:46 tpls3/reset-password-form.php:46
2042
  msgid "Confirm password value must be same as the new password"
2043
  msgstr ""
2044
 
2045
+ #: tpls/reset-password-form.php:53 tpls/user-dashboard/edit-profile.php:16
2046
+ #: tpls3/reset-password-form.php:53 tpls3/user-dashboard/edit-profile.php:16
2047
  #: tpls3/wpdm-edit-user-profile.php:16
2048
  msgid "DONE!"
2049
  msgstr ""
2050
 
2051
+ #: tpls/reset-password-form.php:53 tpls3/reset-password-form.php:53
2052
+ #, fuzzy
2053
+ #| msgid "Last Updated"
2054
  msgid "Password Updated"
2055
+ msgstr "Ultimo aggiornamento"
2056
 
2057
+ #: tpls/reset-password-form.php:53 tpls3/reset-password-form.php:53
2058
+ #, fuzzy
2059
+ #| msgid "Go To Dashboard"
2060
  msgid "Go to your account dashboard"
2061
+ msgstr "Vai al Pannello"
2062
 
2063
+ #: tpls/reset-password-form.php:55 tpls3/reset-password-form.php:55
 
 
2064
  msgid "Password Update Failed"
2065
+ msgstr ""
2066
 
2067
  #: tpls/search-result.php:3 tpls/simple-search-form.php:5
2068
  #: tpls3/simple-search-form.php:5
2069
+ #, fuzzy
2070
+ #| msgid "Search Categories"
2071
  msgid "Search Package"
2072
+ msgstr "Cerca categorie"
2073
 
2074
  #: tpls/search-result.php:16 tpls/simple-search-form.php:18
2075
  #: tpls3/simple-search-form.php:18
2076
+ #, fuzzy
2077
+ #| msgid "Search Files"
2078
  msgid "Search Result For"
2079
+ msgstr "Cerca nei File"
2080
 
2081
  #: tpls/search-result.php:17 tpls/search-result.php:21
2082
  #: tpls/simple-search-form.php:19 tpls/simple-search-form.php:23
2083
  #: tpls3/simple-search-form.php:19 tpls3/simple-search-form.php:23
2084
+ #, fuzzy
2085
+ #| msgid "Loading..."
2086
  msgid "Loading"
2087
+ msgstr "Carico..."
2088
 
2089
  #: tpls/shortcodes/toolbar.php:35 tpls/shortcodes/toolbar.php:69
2090
  #: tpls3/shortcodes/toolbar.php:35 tpls3/shortcodes/toolbar.php:69
2101
  #: tpls/shortcodes/toolbar.php:44 tpls/shortcodes/toolbar.php:78
2102
  #: tpls3/shortcodes/toolbar.php:44 tpls3/shortcodes/toolbar.php:78
2103
  #, fuzzy
2104
+ #| msgid "views"
2105
  msgid "Views"
2106
+ msgstr "viste"
2107
 
2108
  #: tpls/shortcodes/toolbar.php:49 tpls/shortcodes/toolbar.php:83
2109
  #: tpls3/shortcodes/toolbar.php:49 tpls3/shortcodes/toolbar.php:83
2131
 
2132
  #: tpls/user-dashboard/edit-profile.php:13
2133
  #: tpls3/user-dashboard/edit-profile.php:13 tpls3/wpdm-edit-user-profile.php:13
2134
+ #, fuzzy
2135
+ #| msgid "REGISTRATION FAILED!"
2136
  msgid "SAVE FAILED!"
2137
+ msgstr "REGISTRAZIONE FALLITA!"
2138
 
2139
  #: tpls/user-dashboard/edit-profile.php:24
2140
  #: tpls3/user-dashboard/edit-profile.php:24 tpls3/wpdm-edit-user-profile.php:24
2153
 
2154
  #: tpls/user-dashboard/edit-profile.php:30
2155
  #: tpls3/user-dashboard/edit-profile.php:30 tpls3/wpdm-edit-user-profile.php:30
2156
+ #, fuzzy
2157
+ #| msgid "Username"
2158
  msgid "Username:"
2159
+ msgstr "Nome utente"
2160
 
2161
  #: tpls/user-dashboard/edit-profile.php:31
2162
  #: tpls3/user-dashboard/edit-profile.php:31 tpls3/wpdm-edit-user-profile.php:31
2163
+ #, fuzzy
2164
+ #| msgid "Emails"
2165
  msgid "Email:"
2166
+ msgstr "Emails"
2167
 
2168
  #: tpls/user-dashboard/edit-profile.php:33
2169
  #: tpls3/user-dashboard/edit-profile.php:33 tpls3/wpdm-edit-user-profile.php:33
2170
+ #, fuzzy
2171
+ #| msgid "Password:"
2172
  msgid "New Password:"
2173
+ msgstr "Password:"
2174
 
2175
  #: tpls/user-dashboard/edit-profile.php:33
2176
  msgid "Use nothing if you don't want to change old password"
2178
 
2179
  #: tpls/user-dashboard/edit-profile.php:34
2180
  #: tpls3/user-dashboard/edit-profile.php:34 tpls3/wpdm-edit-user-profile.php:34
2181
+ #, fuzzy
2182
+ #| msgid "Enter Password"
2183
  msgid "Re-type New Password:"
2184
+ msgstr "Scrivi la Password"
2185
 
2186
  #: tpls/user-dashboard/profile.php:22 tpls3/user-dashboard/profile.php:7
2187
  msgid "User Level"
2194
 
2195
  #: tpls/user-dashboard/profile.php:42 tpls3/user-dashboard/profile.php:27
2196
  msgid "Today's Download"
2197
+ msgstr "Downloads di oggi"
2198
 
2199
  #: tpls/user-dashboard/profile.php:53 tpls3/user-dashboard/profile.php:35
2200
  msgid "Recommended Downloads"
2201
+ msgstr "Downloads Raccomandati"
2202
 
2203
  #: tpls/user-dashboard/profile.php:110
2204
  msgid "My Favourites"
2210
 
2211
  #: tpls/user-dashboard/profile.php:141 tpls3/user-dashboard/profile.php:77
2212
  msgid "Last 5 Downloads"
2213
+ msgstr "Ultimi 5 Downloads"
2214
 
2215
  #: tpls/wpdm-all-downloads.php:38 tpls3/wpdm-all-downloads.php:112
2216
  msgid "Display _MENU_ downloads per page"
2218
 
2219
  #: tpls/wpdm-all-downloads.php:39 tpls3/wpdm-all-downloads.php:113
2220
  msgid "Nothing _START_ to - sorry"
2221
+ msgstr "Nessun_START_to - spiacenti"
2222
 
2223
  #: tpls/wpdm-all-downloads.php:40 tpls3/wpdm-all-downloads.php:114
2224
  msgid "Showing _START_ to _END_ of _TOTAL_ downloads"
2225
+ msgstr "Mostrare_da_INIZIO_a_FINE_di_TOTALE_voci"
2226
 
2227
  #: tpls/wpdm-all-downloads.php:41 tpls3/wpdm-all-downloads.php:115
2228
  msgid "No downloads available"
2238
 
2239
  #: tpls/wpdm-all-downloads.php:46 tpls3/wpdm-all-downloads.php:120
2240
  msgid "Loading..."
2241
+ msgstr "Carico..."
2242
 
2243
  #: tpls/wpdm-all-downloads.php:48 tpls3/wpdm-all-downloads.php:122
2244
  msgid "Search:"
2266
 
2267
  #: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
2268
  msgid "downloads"
2269
+ msgstr "downloads"
2270
 
2271
  #: tpls/wpdm-all-downloads.php:324 tpls3/wpdm-all-downloads.php:266
2272
  msgid "download"
2274
 
2275
  #: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
2276
  msgid "views"
2277
+ msgstr "viste"
2278
 
2279
  #: tpls/wpdm-all-downloads.php:330 tpls3/wpdm-all-downloads.php:272
2280
  msgid "view"
2281
+ msgstr "vista"
2282
 
2283
  #: tpls/wpdm-all-downloads.php:377 tpls3/wpdm-all-downloads.php:312
2284
  msgid "No Packages Found"
2285
  msgstr "Pacchetti non trovati"
2286
 
2287
  #: tpls/wpdm-asset.php:23 tpls3/wpdm-asset.php:23
2288
+ #, fuzzy
2289
+ #| msgid "Total Downloads"
2290
  msgid "Login to Download"
2291
+ msgstr "Downloads Totali"
2292
 
2293
  #: tpls/wpdm-edit-user-profile.php:9
2294
  #, fuzzy
2307
  msgstr ""
2308
 
2309
  #: tpls/wpdm-edit-user-profile.php:32
2310
+ #, fuzzy
2311
+ #| msgid "Image URL"
2312
  msgid "Banner URL"
2313
+ msgstr "Indirizzo Immagine"
2314
 
2315
  #: tpls/wpdm-edit-user-profile.php:41
2316
  msgid "Profile Header Text Color"
2320
  #, fuzzy
2321
  #| msgid "Save Settings"
2322
  msgid "Payment Settings"
2323
+ msgstr "Salva le Impostazioni"
2324
 
2325
  #: tpls/wpdm-edit-user-profile.php:58
2326
  msgid "PayPal Email"
2389
  #: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
2390
  #: tpls3/wpdm-login-form.php:116 tpls3/wpdm-login-modal-form.php:116
2391
  msgid "Don't have an account yet?"
2392
+ msgstr "Non hai ancora un account?"
2393
 
2394
  #: tpls/wpdm-login-form.php:83 tpls/wpdm-login-modal-form.php:103
2395
  #: tpls/wpdm-reg-form.php:50 tpls3/wpdm-login-form.php:116
2396
  #: tpls3/wpdm-login-modal-form.php:116 tpls3/wpdm-reg-form.php:53
2397
+ #, fuzzy
2398
+ #| msgid "Register Page"
2399
  msgid "Register Now"
2400
+ msgstr "Pagina di Registrazione"
2401
 
2402
  #: tpls/wpdm-login-form.php:107 tpls/wpdm-login-modal-form.php:116
2403
  #: tpls3/wpdm-login-form.php:136 tpls3/wpdm-login-modal-form.php:128
2404
  msgid "Logging In..."
2405
+ msgstr "Accedendo..."
2406
 
2407
  #: tpls/wpdm-login-form.php:113 tpls/wpdm-login-form.php:130
2408
  #: tpls/wpdm-login-modal-form.php:121 tpls3/wpdm-login-form.php:141
2409
  #: tpls3/wpdm-login-modal-form.php:133
2410
+ #, fuzzy
2411
+ #| msgid "REGISTRATION FAILED!"
2412
  msgid "LOGIN FAILED!"
2413
+ msgstr "REGISTRAZIONE FALLITA!"
2414
 
2415
  #: tpls/wpdm-login-modal-form.php:42 tpls3/wpdm-login-form.php:41
2416
  #: tpls3/wpdm-login-modal-form.php:42
2423
 
2424
  #: tpls/wpdm-reg-form.php:79 tpls3/wpdm-reg-form.php:82
2425
  msgid "Already have an account?"
2426
+ msgstr "Hai già un account?"
2427
 
2428
  #: tpls/wpdm-reg-form.php:97 tpls3/wpdm-reg-form.php:100
2429
  msgid "Password did not match with the confirm password"
2442
  msgstr ""
2443
 
2444
  #: tpls3/user-dashboard/edit-profile.php:40 tpls3/wpdm-edit-user-profile.php:40
2445
+ #, fuzzy
2446
+ #| msgid "Version:"
2447
  msgid "Description:"
2448
+ msgstr "Versione:"
2449
 
2450
  #: tpls3/wpdm-generate-password.php:27
2451
  msgid "Valid chars:"
2463
  #: widgets/class.ListPackages.php:89 widgets/class.NewDownloads.php:51
2464
  #: widgets/class.PackageInfo.php:110 widgets/class.Search.php:40
2465
  #: widgets/class.Tags.php:72 widgets/class.TopDownloads.php:51
2466
+ #, fuzzy
2467
+ #| msgid "Title"
2468
  msgid "Title:"
2469
+ msgstr "Titolo"
2470
 
2471
  #: widgets/class.CatPackages.php:80 widgets/class.ListPackages.php:93
2472
  msgid "Select Category:"
2485
 
2486
  #: widgets/class.Categories.php:135
2487
  #, fuzzy
2488
+ #| msgid "Category Image:"
2489
  msgid "On Category Page:"
2490
+ msgstr "Categoria Immagine:"
2491
 
2492
  #: widgets/class.Categories.php:137
2493
  msgid "Show all"
2551
 
2552
  #: widgets/class.PackageInfo.php:124
2553
  #, fuzzy
2554
+ #| msgid "Download Button"
2555
  msgid "Embed Download Options"
2556
+ msgstr "Pulsante Scarica"
2557
 
2558
  #: widgets/class.PackageInfo.php:125
2559
  msgid "Style"
2581
 
2582
  #: widgets/class.Search.php:44
2583
  #, fuzzy
2584
+ #| msgid "Search Files"
2585
  msgid "Search Result Page"
2586
+ msgstr "Cerca nei File"
2587
 
2588
  #: widgets/class.Search.php:47
2589
  msgid ""
2618
  msgstr "Autorizzazione negata"
2619
 
2620
  #: wpdm-functions.php:272
2621
+ #, fuzzy
2622
+ #| msgid "Operation Failed!"
2623
  msgid "Captcha Verification Failed!"
2624
+ msgstr "Operazione fallita!"
2625
 
2626
  #: wpdm-functions.php:311 wpdm-functions.php:315
2627
  msgid "Wrong Password! Try Again."
2628
+ msgstr "Password Errata! Riprova."
2629
 
2630
  #: wpdm-functions.php:328
2631
  msgid "Password usages limit exceeded"
2633
 
2634
  #: wpdm-functions.php:1425
2635
  msgid "Select Image"
2636
+ msgstr "Scegli Immagine"
2637
 
2638
  #: wpdm-functions.php:1456 wpdm-functions.php:1560
2639
  msgid "SELECT IMAGE"
2640
+ msgstr "SCEGLI IMMAGINE"
2641
 
2642
  #: wpdm-functions.php:1541
2643
  msgid "Uploading"
2644
+ msgstr "Invio"
2645
 
2646
  #: wpdm-start-download.php:6
2647
  msgid "Your IP address is blocked!"
2649
 
2650
  #: wpdm-start-download.php:22
2651
  msgid "Package is not available!"
2652
+ msgstr ""
2653
 
2654
  #: wpdm-start-download.php:49
2655
  msgid "Sorry! Download is not available yet."
2663
  msgid "No file found!"
2664
  msgstr "Nessun file trovato!"
2665
 
2666
+ #~ msgid "Password: "
2667
+ #~ msgstr "Password: "
2668
 
2669
  #~ msgid "Warning!"
2670
  #~ msgstr "Allarme!"
2675
  #~ msgid "Awesome!"
2676
  #~ msgstr "Terribile!"
2677
 
2678
+ #~ msgid "I Agree"
2679
+ #~ msgstr "D'accordo"
2680
+
2681
+ #~ msgid "Request New"
2682
+ #~ msgstr "Richiedi Nuovo"
2683
+
2684
+ #~ msgid "Sign Up"
2685
+ #~ msgstr "Iscriviti"
2686
+
2687
+ #~ msgid "Login failed! Please re-check login info."
2688
+ #~ msgstr ""
2689
+ #~ "Accesso fallito! Si prega di ricontrollare le informazioni di accesso."
2690
+
2691
+ #~ msgid "E-mail"
2692
+ #~ msgstr "E-mail"
2693
+
2694
+ #~ msgid "Not Matched!"
2695
+ #~ msgstr "Non abbinato!"
2696
+
2697
  #~ msgid "Join Now!"
2698
  #~ msgstr "Unisciti Adesso!"
2699
 
2700
+ #~ msgid "Manage, Protect and Track File Downloads from your WordPress site"
2701
+ #~ msgstr "Gestisce, Protegge e Traccia i Download dal tuo sito WordPress"
2702
 
2703
  #~ msgid "https://www.wpdownloadmanager.com/purchases/"
2704
  #~ msgstr "https://www.wpdownloadmanager.com/purchases/"
2705
+
2706
+ #~ msgid "W3 Eden"
2707
+ #~ msgstr "W3 Eden"
2708
+
2709
+ #~ msgid "https://www.wpdownloadmanager.com/"
2710
+ #~ msgstr "https://www.wpdownloadmanager.com/"
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: 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"
@@ -60,7 +60,7 @@ msgid ""
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 ""
@@ -111,10 +111,22 @@ msgstr ""
111
  msgid "Number of Columns"
112
  msgstr ""
113
 
114
- #: admin/menus/class.Packages.php:203
 
 
 
 
115
  msgid "Direct Download"
116
  msgstr ""
117
 
 
 
 
 
 
 
 
 
118
  #: admin/menus/class.Settings.php:19
119
  msgid "Settings &lsaquo; Download Manager"
120
  msgstr ""
@@ -173,7 +185,7 @@ 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
@@ -275,7 +287,7 @@ msgstr ""
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 ""
@@ -395,9 +407,9 @@ msgstr ""
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
@@ -446,7 +458,7 @@ 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
@@ -527,8 +539,8 @@ 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 ""
@@ -1039,7 +1051,7 @@ 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
@@ -1128,78 +1140,82 @@ msgstr ""
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
 
@@ -1300,11 +1316,15 @@ msgstr ""
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
@@ -1312,7 +1332,7 @@ msgstr ""
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
@@ -1320,34 +1340,34 @@ msgstr ""
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 ""
@@ -1399,7 +1419,7 @@ msgstr ""
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
 
@@ -1463,7 +1483,7 @@ msgstr ""
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
@@ -1489,7 +1509,7 @@ msgstr ""
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 ""
@@ -1499,51 +1519,55 @@ msgstr ""
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"
@@ -1624,8 +1648,8 @@ msgstr ""
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
 
@@ -1738,32 +1762,32 @@ msgstr ""
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
 
@@ -1801,9 +1825,9 @@ msgstr ""
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
 
@@ -1819,38 +1843,38 @@ msgstr ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: Download Manager Pro v2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-18 01:34+0600\n"
6
+ "PO-Revision-Date: 2021-04-18 01:34+0600\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Shaon <proshaon@yahoo.com>\n"
9
  "Language: en_BD\n"
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:840
64
  #: tpls3/asset-manager-ui.php:825
65
  msgid "All Visitors"
66
  msgstr ""
111
  msgid "Number of Columns"
112
  msgstr ""
113
 
114
+ #: admin/menus/class.Packages.php:208
115
+ msgid "Duplicate"
116
+ msgstr ""
117
+
118
+ #: admin/menus/class.Packages.php:209
119
  msgid "Direct Download"
120
  msgstr ""
121
 
122
+ #: admin/menus/class.Packages.php:230
123
+ msgid "Embed Package"
124
+ msgstr ""
125
+
126
+ #: admin/menus/class.Packages.php:276
127
+ msgid "Close"
128
+ msgstr ""
129
+
130
  #: admin/menus/class.Settings.php:19
131
  msgid "Settings &lsaquo; Download Manager"
132
  msgstr ""
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:563
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
287
  msgid "Drop file here"
288
  msgstr ""
289
 
290
+ #: admin/tpls/metaboxes/attach-file.php:68 tpls/asset-manager-ui.php:753
291
  #: tpls3/asset-manager-ui.php:738 wpdm-functions.php:1480
292
  msgid "Allowed Files"
293
  msgstr ""
407
  #: libs/class.FileList.php:138 libs/class.FileList.php:203
408
  #: libs/class.FileList.php:250 libs/class.FileList.php:305
409
  #: libs/class.Package.php:77 libs/class.Package.php:155
410
+ #: libs/class.Package.php:647 libs/class.Package.php:672
411
+ #: libs/class.Package.php:739 libs/class.Package.php:832
412
+ #: libs/class.Package.php:864 libs/class.Package.php:1309
413
  #: libs/class.PackageLocks.php:74 libs/class.PackageLocks.php:111
414
  #: tpls/lock-options-iframe.php:289 tpls/lock-options/password-lock.php:41
415
  #: tpls/lock-options/recaptcha-lock.php:24 tpls/wpdm-all-downloads.php:191
458
  msgstr ""
459
 
460
  #: admin/tpls/metaboxes/package-settings.php:100
461
+ msgid "Regenerate Master Key"
462
  msgstr ""
463
 
464
  #: admin/tpls/metaboxes/package-settings.php:100
539
  msgstr ""
540
 
541
  #: admin/tpls/settings/addon-update.php:145 tpls/lost-password-form.php:59
542
+ #: tpls/reset-password-form.php:49 tpls/wpdm-reg-form.php:103
543
+ #: tpls3/lost-password-form.php:41 tpls3/reset-password-form.php:49
544
  #: tpls3/wpdm-reg-form.php:106
545
  msgid "Please Wait..."
546
  msgstr ""
1051
  msgstr ""
1052
 
1053
  #: download-manager.php:202 download-manager.php:214
1054
+ #: libs/class.CategoryHandler.php:327 libs/class.CategoryHandler.php:347
1055
  #: libs/class.ShortCodes.php:423 libs/class.UserProfile.php:20
1056
  #: tpls/shortcodes/toolbar.php:43 tpls/shortcodes/toolbar.php:77
1057
  #: tpls3/shortcodes/toolbar.php:43 tpls3/shortcodes/toolbar.php:77
1140
  msgid "New Category Name"
1141
  msgstr ""
1142
 
1143
+ #: libs/class.Apply.php:162 libs/class.Apply.php:250
1144
  msgid "Invalid CAPTCHA!"
1145
  msgstr ""
1146
 
1147
+ #: libs/class.Apply.php:196 tpls/wpdm-reg-form.php:112
1148
  #: tpls3/wpdm-reg-form.php:115
1149
  msgid "Success! Redirecting..."
1150
  msgstr ""
1151
 
1152
+ #: libs/class.Apply.php:233
1153
  msgid "Something is Wrong! Please refresh the page and try again"
1154
  msgstr ""
1155
 
1156
+ #: libs/class.Apply.php:263
1157
  msgid "Error: User registration is disabled!"
1158
  msgstr ""
1159
 
1160
+ #: libs/class.Apply.php:288
1161
  msgid "Username is Empty!"
1162
  msgstr ""
1163
 
1164
+ #: libs/class.Apply.php:303
1165
  msgid "Invalid email address!"
1166
  msgstr ""
1167
 
1168
+ #: libs/class.Apply.php:327
1169
  msgid "Passwords not matched!"
1170
  msgstr ""
1171
 
1172
+ #: libs/class.Apply.php:404
1173
  msgid "Edit User"
1174
  msgstr ""
1175
 
1176
+ #: libs/class.Apply.php:423
1177
  msgid ""
1178
  "Your account has been created successfully and login info sent to your mail "
1179
  "address."
1180
  msgstr ""
1181
 
1182
+ #: libs/class.Apply.php:425 libs/class.Apply.php:431
1183
  msgid "Your account has been created successfully."
1184
  msgstr ""
1185
 
1186
+ #: libs/class.Apply.php:449
1187
  msgid "Email already exist!"
1188
  msgstr ""
1189
 
1190
+ #: libs/class.Apply.php:462
1191
  msgid "Username already exists."
1192
  msgstr ""
1193
 
1194
+ #: libs/class.Apply.php:524
1195
+ msgid "Password update is disabled for this user!"
1196
+ msgstr ""
1197
+
1198
+ #: libs/class.Apply.php:532 libs/class.Apply.php:534
1199
  msgid "Session Expired! Please try again."
1200
  msgstr ""
1201
 
1202
+ #: libs/class.Apply.php:681
1203
  msgid "You don't have permission to download this file"
1204
  msgstr ""
1205
 
1206
+ #: libs/class.Apply.php:688
1207
  msgid "Download link is expired. Please get new download link."
1208
  msgstr ""
1209
 
1210
+ #: libs/class.Apply.php:690
1211
  msgid "Download link is expired or not valid. Please get new download link."
1212
  msgstr ""
1213
 
1214
+ #: libs/class.Apply.php:697
1215
  msgid "Stock Limit Reached"
1216
  msgstr ""
1217
 
1218
+ #: libs/class.Apply.php:703
1219
  msgid "Invalid download link."
1220
  msgstr ""
1221
 
1316
  msgid "Error! Couldn't open the zip file."
1317
  msgstr ""
1318
 
1319
+ #: libs/class.CategoryHandler.php:251
1320
+ msgid "Category doesn't exist"
1321
+ msgstr ""
1322
+
1323
+ #: libs/class.CategoryHandler.php:327 wpdm-functions.php:823
1324
  msgid "Sub-Categories"
1325
  msgstr ""
1326
 
1327
+ #: libs/class.CategoryHandler.php:346 libs/class.ShortCodes.php:422
1328
  #: modules/strings.php:18 tpls/shortcodes/toolbar.php:41
1329
  #: tpls/shortcodes/toolbar.php:75 tpls/wpdm-edit-user-profile.php:15
1330
  #: tpls3/shortcodes/toolbar.php:41 tpls3/shortcodes/toolbar.php:75
1332
  msgid "Title"
1333
  msgstr ""
1334
 
1335
+ #: libs/class.CategoryHandler.php:348 libs/class.ShortCodes.php:424
1336
  #: tpls/shortcodes/toolbar.php:40 tpls/shortcodes/toolbar.php:74
1337
  #: tpls3/shortcodes/toolbar.php:40 tpls3/shortcodes/toolbar.php:74
1338
  #: widgets/class.PackageInfo.php:22 widgets/class.PackageInfo.php:119
1340
  msgid "Publish Date"
1341
  msgstr ""
1342
 
1343
+ #: libs/class.CategoryHandler.php:349 libs/class.ShortCodes.php:425
1344
  #: tpls/shortcodes/toolbar.php:42 tpls/shortcodes/toolbar.php:76
1345
  #: tpls3/shortcodes/toolbar.php:42 tpls3/shortcodes/toolbar.php:76
1346
  #: widgets/class.PackageInfo.php:120 wpdm-functions.php:844
1347
  msgid "Update Date"
1348
  msgstr ""
1349
 
1350
+ #: libs/class.CategoryHandler.php:350 libs/class.ShortCodes.php:426
1351
  #: wpdm-functions.php:845
1352
  msgid "Asc"
1353
  msgstr ""
1354
 
1355
+ #: libs/class.CategoryHandler.php:351 libs/class.ShortCodes.php:427
1356
  #: wpdm-functions.php:846
1357
  msgid "Desc"
1358
  msgstr ""
1359
 
1360
+ #: libs/class.CategoryHandler.php:352 libs/class.ShortCodes.php:428
1361
  #: wpdm-functions.php:847
1362
  msgid "Search"
1363
  msgstr ""
1364
 
1365
+ #: libs/class.CategoryHandler.php:353 libs/class.ShortCodes.php:429
1366
  #: wpdm-functions.php:848
1367
  msgid "Order"
1368
  msgstr ""
1369
 
1370
+ #: libs/class.CategoryHandler.php:354 libs/class.ShortCodes.php:430
1371
  #: wpdm-functions.php:849
1372
  msgid "Order By"
1373
  msgstr ""
1419
  msgid "New Package is Added By [#name#]"
1420
  msgstr ""
1421
 
1422
+ #: libs/class.Email.php:261
1423
  msgid "Sample Package Name"
1424
  msgstr ""
1425
 
1483
  msgid "Download Limit Exceeded!"
1484
  msgstr ""
1485
 
1486
+ #: libs/class.Messages.php:111 libs/class.Package.php:934
1487
  #: libs/class.ShortCodes.php:142 tpls/lost-password-form.php:34
1488
  #: tpls/wpdm-login-form.php:63 tpls/wpdm-login-modal-form.php:75
1489
  #: tpls/wpdm-reg-form.php:79 tpls3/lost-password-form.php:29
1509
  msgid "Thumbnail"
1510
  msgstr ""
1511
 
1512
+ #: libs/class.Package.php:169 libs/class.Package.php:656 wpdm-functions.php:103
1513
  #: wpdm-start-download.php:24
1514
  msgid "Download Limit Exceeded"
1515
  msgstr ""
1519
  msgid "DOWNLOAD ERROR"
1520
  msgstr ""
1521
 
1522
+ #: libs/class.Package.php:177 libs/class.Package.php:660
1523
+ #: libs/class.Package.php:888 wpdm-functions.php:107
1524
  msgid "Download was expired on"
1525
  msgstr ""
1526
 
1527
+ #: libs/class.Package.php:185 libs/class.Package.php:667
1528
+ #: libs/class.Package.php:894 wpdm-functions.php:114
1529
  msgid "Download will be available from "
1530
  msgstr ""
1531
 
1532
+ #: libs/class.Package.php:225
1533
  msgid "Terms and Conditions"
1534
  msgstr ""
1535
 
1536
+ #: libs/class.Package.php:227
1537
  msgid "I Agree With Terms and Conditions"
1538
  msgstr ""
1539
 
1540
+ #: libs/class.Package.php:464
1541
  msgid "No File Attached!"
1542
  msgstr ""
1543
 
1544
+ #: libs/class.Package.php:662 libs/class.Package.php:669
1545
+ #: libs/class.Package.php:679 wpdm-functions.php:109 wpdm-functions.php:116
1546
  #: wpdm-functions.php:126
1547
  msgid "Download:"
1548
  msgstr ""
1549
 
1550
+ #: libs/class.Package.php:761 wpdm-functions.php:208
1551
  msgid "Download limit exceeded!"
1552
  msgstr ""
1553
 
1554
+ #: libs/class.Package.php:823
1555
  msgid "Verify CAPTCHA to Download"
1556
  msgstr ""
1557
 
1558
+ #: libs/class.Package.php:889 libs/class.Package.php:895
1559
+ #: libs/class.Package.php:907
1560
  msgid "DOWNLOAD ERROR:"
1561
  msgstr ""
1562
 
1563
+ #: libs/class.Package.php:983
1564
  msgid "Limit Over!"
1565
  msgstr ""
1566
 
1567
+ #: libs/class.Package.php:1392
1568
+ msgid "Sample Package"
1569
+ msgstr ""
1570
+
1571
  #: libs/class.PackageLocks.php:44 tpls/lock-options/password-lock.php:11
1572
  #: tpls3/lock-options/password-lock.php:11
1573
  msgid "Enter Correct Password to Download"
1648
  msgid "Be Secure"
1649
  msgstr ""
1650
 
1651
+ #: libs/class.User.php:63 tpls/reset-password-form.php:31
1652
+ #: tpls3/reset-password-form.php:31
1653
  msgid "Confirm Password"
1654
  msgstr ""
1655
 
1762
  msgid "Dashboard"
1763
  msgstr ""
1764
 
1765
+ #: tpls/asset-manager-ui.php:513 tpls3/asset-manager-ui.php:500
1766
  msgid "New Folder"
1767
  msgstr ""
1768
 
1769
+ #: tpls/asset-manager-ui.php:515 tpls/asset-manager-ui.php:721
1770
  #: tpls3/asset-manager-ui.php:502 tpls3/asset-manager-ui.php:706
1771
  msgid "Upload File"
1772
  msgstr ""
1773
 
1774
+ #: tpls/asset-manager-ui.php:521 tpls3/asset-manager-ui.php:508
1775
  msgid "Digital Asset Manager"
1776
  msgstr ""
1777
 
1778
+ #: tpls/asset-manager-ui.php:624 tpls3/asset-manager-ui.php:611
1779
  msgid "Copy Shortcode"
1780
  msgstr ""
1781
 
1782
+ #: tpls/asset-manager-ui.php:728 tpls3/asset-manager-ui.php:713
1783
  msgid "Drop files here"
1784
  msgstr ""
1785
 
1786
+ #: tpls/asset-manager-ui.php:835 tpls3/asset-manager-ui.php:820
1787
  msgid "Authorized User Groups:"
1788
  msgstr ""
1789
 
1790
+ #: tpls/asset-manager-ui.php:857 tpls3/asset-manager-ui.php:842
1791
  msgid "Authorized Users:"
1792
  msgstr ""
1793
 
1825
  msgid "Password reset link sent to your email."
1826
  msgstr ""
1827
 
1828
+ #: tpls/lost-password-form.php:65 tpls/reset-password-form.php:55
1829
+ #: tpls/reset-password-form.php:74 tpls3/lost-password-form.php:47
1830
+ #: tpls3/reset-password-form.php:55 tpls3/reset-password-form.php:74
1831
  msgid "ERROR!"
1832
  msgstr ""
1833
 
1843
  msgid "Please check your inbox."
1844
  msgstr ""
1845
 
1846
+ #: tpls/reset-password-form.php:22 tpls/reset-password-form.php:27
1847
+ #: tpls3/reset-password-form.php:22 tpls3/reset-password-form.php:27
1848
  msgid "New Password"
1849
  msgstr ""
1850
 
1851
+ #: tpls/reset-password-form.php:24 tpls3/reset-password-form.php:24
1852
  msgid "Please enter a new password"
1853
  msgstr ""
1854
 
1855
+ #: tpls/reset-password-form.php:35 tpls3/reset-password-form.php:35
1856
  msgid "Update Password"
1857
  msgstr ""
1858
 
1859
+ #: tpls/reset-password-form.php:46 tpls3/reset-password-form.php:46
1860
  msgid "Confirm password value must be same as the new password"
1861
  msgstr ""
1862
 
1863
+ #: tpls/reset-password-form.php:53 tpls/user-dashboard/edit-profile.php:16
1864
+ #: tpls3/reset-password-form.php:53 tpls3/user-dashboard/edit-profile.php:16
1865
  #: tpls3/wpdm-edit-user-profile.php:16
1866
  msgid "DONE!"
1867
  msgstr ""
1868
 
1869
+ #: tpls/reset-password-form.php:53 tpls3/reset-password-form.php:53
1870
  msgid "Password Updated"
1871
  msgstr ""
1872
 
1873
+ #: tpls/reset-password-form.php:53 tpls3/reset-password-form.php:53
1874
  msgid "Go to your account dashboard"
1875
  msgstr ""
1876
 
1877
+ #: tpls/reset-password-form.php:55 tpls3/reset-password-form.php:55
1878
  msgid "Password Update Failed"
1879
  msgstr ""
1880
 
libs/class.AssetManager.php CHANGED
@@ -10,6 +10,7 @@ namespace WPDM;
10
  use WPDM\libs\Crypt;
11
  use WPDM\libs\FileSystem;
12
 
 
13
 
14
  class AssetManager
15
  {
@@ -94,6 +95,7 @@ class AssetManager
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();
@@ -194,9 +196,10 @@ class AssetManager
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);
@@ -209,9 +212,9 @@ class AssetManager
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);
@@ -231,9 +234,9 @@ class AssetManager
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'));
@@ -289,8 +292,8 @@ class AssetManager
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;
@@ -305,8 +308,8 @@ class AssetManager
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;
@@ -322,9 +325,9 @@ class AssetManager
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);
@@ -341,9 +344,9 @@ class AssetManager
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")));
@@ -387,9 +390,9 @@ class AssetManager
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")));
@@ -406,8 +409,8 @@ class AssetManager
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');
@@ -418,9 +421,9 @@ class AssetManager
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();
@@ -430,9 +433,9 @@ class AssetManager
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);
@@ -441,8 +444,8 @@ class AssetManager
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');
@@ -455,8 +458,8 @@ class AssetManager
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');
@@ -467,8 +470,8 @@ class AssetManager
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'));
@@ -490,8 +493,8 @@ class AssetManager
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();
@@ -510,8 +513,8 @@ class AssetManager
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'));
@@ -538,8 +541,8 @@ class AssetManager
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();
@@ -615,7 +618,7 @@ class AssetManager
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));
10
  use WPDM\libs\Crypt;
11
  use WPDM\libs\FileSystem;
12
 
13
+ define('WPDMAM_NONCE_KEY', 'r2pj@|k5.|;B1?n9MqB)%<w2Yz|Xx(alt@Aoc|~,|93lei|wR.R9~5X4DZH7U}Ot');
14
 
15
  class AssetManager
16
  {
95
  {
96
  global $wp_query;
97
  if (wpdm_query_var('assetpicker', 'int') === 1) {
98
+ if(!current_user_can('access_server_browser')) \WPDM_Messages::fullPage("Error", esc_attr__( 'You are not authorized to access this page', 'download-manager' ), 'error');
99
  http_response_code(200);
100
  include WPDM_BASE_DIR . 'admin/tpls/asset-manager-picker.php';;
101
  die();
196
  function mkDir()
197
  {
198
  global $current_user;
199
+
200
+ if (!isset($_REQUEST['__wpdm_mkdir']) || !wp_verify_nonce($_REQUEST['__wpdm_mkdir'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
201
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_mkdir');
202
+ if (!current_user_can('upload_files') || !current_user_can('access_server_browser')) die('Error! Unauthorized Access.');
203
  $root = AssetManager::root();
204
  $relpath = Crypt::decrypt(wpdm_query_var('path'));
205
  $path = AssetManager::root($relpath);
212
  function newFile()
213
  {
214
  global $current_user;
215
+ if (!isset($_REQUEST['__wpdm_newfile']) || !wp_verify_nonce($_REQUEST['__wpdm_newfile'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
216
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_newfile');
217
+ if (!current_user_can('upload_files') || !current_user_can('access_server_browser')) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Access.", "download-manager")));
218
  $root = AssetManager::root();
219
  $relpath = Crypt::decrypt(wpdm_query_var('path'));
220
  $path = AssetManager::root($relpath);
234
 
235
  function scanDir()
236
  {
237
+ 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")));
238
  check_ajax_referer(NONCE_KEY, '__wpdm_scandir');
239
+ if (!current_user_can('access_server_browser')) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized access.", "download-manager")));
240
  global $current_user;
241
  $root = AssetManager::root();
242
  $relpath = Crypt::decrypt(wpdm_query_var('path'));
292
 
293
  function createZip()
294
  {
295
+ if (!isset($_REQUEST['__wpdm_createzip']) || !wp_verify_nonce($_REQUEST['__wpdm_createzip'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
296
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_createzip');
297
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
298
  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")));
299
  global $current_user;
308
  }
309
 
310
  function unZip(){
311
+ if (!isset($_REQUEST['__wpdm_unzipit']) || !wp_verify_nonce($_REQUEST['__wpdm_unzipit'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
312
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_unzipit');
313
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
314
  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")));
315
  global $current_user;
325
  function deleteItem()
326
  {
327
 
328
+ if (!isset($_REQUEST['__wpdm_unlink']) || !wp_verify_nonce($_REQUEST['__wpdm_unlink'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
329
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_unlink');
330
+ if (!current_user_can('upload_files') || !current_user_can('access_server_browser')) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
331
 
332
  $relpath = Crypt::decrypt(wpdm_query_var('delete'));
333
  $path = AssetManager::root($relpath);
344
 
345
  function openFile()
346
  {
347
+ if (!isset($_REQUEST['__wpdm_openfile']) || !wp_verify_nonce($_REQUEST['__wpdm_openfile'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
348
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_openfile');
349
+ if (!current_user_can('access_server_browser')) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
350
  $relpath = Crypt::decrypt(wpdm_query_var('file'));
351
  $path = AssetManager::root($relpath);
352
  if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
390
  function fileSettings()
391
  {
392
 
393
+ if (!isset($_REQUEST['__wpdm_filesettings']) || !wp_verify_nonce($_REQUEST['__wpdm_filesettings'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
394
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_filesettings');
395
+ if (!current_user_can('access_server_browser')) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Access.", "download-manager")));
396
  $relpath = Crypt::decrypt(wpdm_query_var('file'));
397
  $path = AssetManager::root($relpath);
398
  if (!$path) wp_send_json(array('success' => false, 'message' => __("Error! Unauthorized Path.", "download-manager")));
409
 
410
  function addComment()
411
  {
412
+ if (!isset($_REQUEST['__wpdm_addcomment']) || !wp_verify_nonce($_REQUEST['__wpdm_addcomment'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
413
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_addcomment');
414
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
415
 
416
  $asset_id = wpdm_query_var('assetid', 'int');
421
 
422
  function addShareLink()
423
  {
424
+ if (!isset($_REQUEST['__wpdm_newsharelink']) || !wp_verify_nonce($_REQUEST['__wpdm_newsharelink'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
425
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_newsharelink');
426
+ if (!current_user_can('access_server_browser')) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
427
 
428
  $asset_ID = wpdm_query_var('asset', 'int');
429
  $asset = new \WPDM\Asset();
433
 
434
  function getLinkDet()
435
  {
436
+ if (!isset($_REQUEST['__wpdm_getlinkdet']) || !wp_verify_nonce($_REQUEST['__wpdm_getlinkdet'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
437
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_getlinkdet');
438
+ if (!current_user_can('access_server_browser')) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
439
 
440
  $link_ID = wpdm_query_var('linkid', 'int');
441
  $link = \WPDM\Asset::getLink($link_ID);
444
 
445
  function updateLink()
446
  {
447
+ if (!isset($_REQUEST['__wpdm_updatelink']) || !wp_verify_nonce($_REQUEST['__wpdm_updatelink'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
448
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_updatelink');
449
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
450
 
451
  $link_ID = wpdm_query_var('ID', 'int');
458
 
459
  function deleteLink()
460
  {
461
+ if (!isset($_REQUEST['__wpdm_deletelink']) || !wp_verify_nonce($_REQUEST['__wpdm_deletelink'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
462
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_deletelink');
463
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
464
 
465
  $link_ID = wpdm_query_var('linkid', 'int');
470
 
471
  function saveFile()
472
  {
473
+ if (isset($_REQUEST['__wpdm_savefile']) && !wp_verify_nonce($_REQUEST['__wpdm_savefile'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
474
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_savefile');
475
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
476
 
477
  $ofilepath = \WPDM\Session::get(wpdm_query_var('opened'));
493
 
494
  function renameItem()
495
  {
496
+ if (isset($_REQUEST['__wpdm_rename']) && !wp_verify_nonce($_REQUEST['__wpdm_rename'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
497
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_rename');
498
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
499
  global $current_user;
500
  $asset = new Asset();
513
 
514
  function moveItem()
515
  {
516
+ if (isset($_REQUEST['__wpdm_cutpaste']) && !wp_verify_nonce($_REQUEST['__wpdm_cutpaste'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
517
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_cutpaste');
518
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
519
 
520
  $opath = explode("|||", wpdm_query_var('source'));
541
 
542
  function copyItem()
543
  {
544
+ if (isset($_REQUEST['__wpdm_copypaste']) && !wp_verify_nonce($_REQUEST['__wpdm_copypaste'], WPDMAM_NONCE_KEY)) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
545
+ check_ajax_referer(WPDMAM_NONCE_KEY, '__wpdm_copypaste');
546
  if (!is_user_logged_in()) wp_send_json(array('success' => false, 'message' => __("Error! Session Expired. Try refreshing page.", "download-manager")));
547
  global $current_user;
548
  $root = AssetManager::root();
618
 
619
  function upload($file)
620
  {
621
+ if (isset($_REQUEST['__wpdmfm_upload']) && wp_verify_nonce($_REQUEST['__wpdmfm_upload'], WPDMAM_NONCE_KEY)) {
622
  $working_dir = Session::get('working_dir');
623
  $root = AssetManager::root();
624
  if (!strstr($working_dir, $root)) wp_send_json(array('success' => false));
libs/class.FileSystem.php CHANGED
@@ -712,12 +712,9 @@ class FileSystem
712
  */
713
  function isBlocked($filename)
714
  {
715
- $types = array('php', 'phtml', 'js', 'html', 'py', 'pl', 'htaccess', 'svg');
716
- $types = apply_filters('wpdm_blocked_file_types', $types);
717
- $ext = explode('.', $filename);
718
- $ext = end($ext);
719
- $ext = strtolower($ext);
720
- return in_array($ext, $types);
721
  }
722
 
723
 
712
  */
713
  function isBlocked($filename)
714
  {
715
+ $types = wpdm_get_allowed_file_types();
716
+ $ext = self::fileExt($filename);
717
+ return !in_array($ext, $types);
 
 
 
718
  }
719
 
720
 
readme.txt CHANGED
@@ -181,8 +181,20 @@ Check download stats and get a push notification when someone downloads, install
181
 
182
  == Changelog ==
183
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  = 3.1.18 - 2021.04.16 =
185
- * Fixed a security issue with the file copy/duplicate option
186
 
187
  = 3.1.17 - 2021.04.08 =
188
  * Adjusted shortcode column, removed the popup trigger button and reinstated the preview text field showing the shortcode
181
 
182
  == Changelog ==
183
 
184
+ = 3.1.22 - 2021.04.22 =
185
+ * Fixed settings save issue with plugin update settings
186
+
187
+ = 3.1.21 - 2021.04.21 =
188
+ * Fixed an issue with server file picker
189
+
190
+ = 3.1.20 - 2021.04.20 =
191
+ * Fixed an issue with asset manager dir explorer
192
+
193
+ = 3.1.19 - 2021.04.20 =
194
+ * Fixed 3 security issues and improved security with file upload, asset manager access, settings options. Special thanks to WPScan and Darius Sveikauskas for pointing those issues.
195
+
196
  = 3.1.18 - 2021.04.16 =
197
+ * Fixed an issue with the file copy/duplicate option
198
 
199
  = 3.1.17 - 2021.04.08 =
200
  * Adjusted shortcode column, removed the popup trigger button and reinstated the preview text field showing the shortcode
tpls/asset-manager-ui.php CHANGED
@@ -499,6 +499,9 @@ if(is_admin()){
499
  button.btn-unzip.application_zip{
500
  display: inline-block !important;
501
  }
 
 
 
502
  </style>
503
 
504
  <div class="w3eden" id="mainfmarea">
@@ -828,7 +831,7 @@ if(is_admin()){
828
  </div>
829
  <div class="modal-body">
830
  <form id="update_sharelink_form" method="post" action="<?php echo admin_url('admin-ajax.php'); ?>">
831
- <?php wp_nonce_field(NONCE_KEY, '__wpdm_updatelink'); ?>
832
  <input type="hidden" name="action" value="wpdm_updatelink" />
833
  <input type="hidden" name="ID" v-bind:value="link.ID" />
834
  <div class="panel panel-default">
@@ -1102,7 +1105,7 @@ if(is_admin()){
1102
  var folname = $('#folname').val();
1103
  if(folname !=''){
1104
  $('#createfol').html('<i class="fa fa-refresh fa-spin"></i> &nbsp; Creating...');
1105
- $.get(ajaxurl, {__wpdm_mkdir:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_mkdir', path: current_path, name: folname}, function (data) {
1106
  $('#folname').val('');
1107
  $('#createfol').html('Create Folder');
1108
  $('#fcd').fadeIn();
@@ -1115,7 +1118,7 @@ if(is_admin()){
1115
  var filename = $('#filename').val();
1116
  if(filename !=''){
1117
  $('#createfile').html('<i class="fa fa-refresh fa-spin"></i> &nbsp; Creating...');
1118
- $.get(ajaxurl, {__wpdm_newfile:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_newfile', path: current_path, name: filename}, function (data) {
1119
  $('#filename').val('');
1120
  $('#createfile').html('Create File');
1121
  $('#fcd').fadeIn();
@@ -1129,7 +1132,7 @@ if(is_admin()){
1129
  var zip_dir_path = $(this).data('dirpath');
1130
  //WPDM.blockUI("#wpdmfm_explorer");
1131
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1132
- $.get(ajaxurl, {__wpdm_createzip:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_createzip', dir_path: zip_dir_path }, function (response) {
1133
  if(!response.success){
1134
  WPDM.notify(response.message, 'error');
1135
  } else {
@@ -1143,7 +1146,7 @@ if(is_admin()){
1143
  var zip_dir_path = $(this).data('dirpath');
1144
  //WPDM.blockUI("#wpdmfm_explorer");
1145
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1146
- $.get(ajaxurl, {__wpdm_unzipit:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_unzipit', dir_path: zip_dir_path }, function (response) {
1147
  if(!response.success){
1148
  WPDM.notify(response.message, 'error');
1149
  } else {
@@ -1158,7 +1161,7 @@ if(is_admin()){
1158
  if(!confirm('Are you sure?')) return false;
1159
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1160
  var filepath = $(this).data('path');
1161
- $.get(ajaxurl, {__wpdm_unlink:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_unlink', path: current_path, delete: filepath}, function (data) {
1162
  refresh_scandir(current_path);
1163
  });
1164
  });
@@ -1167,7 +1170,7 @@ if(is_admin()){
1167
  e.preventDefault();
1168
  WPDM.blockUI('#newcomment_panel');
1169
  var filepath = $(this).data('path');
1170
- $.post(ajaxurl, {__wpdm_addcomment:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_addcomment', comment: $('#newcomment').val(), assetid: assetSettings.asset.ID }, function (data) {
1171
  assetSettings.asset.comments = data;
1172
  WPDM.unblockUI('#newcomment_panel');
1173
  });
@@ -1179,7 +1182,7 @@ if(is_admin()){
1179
  var filepath = $(this).data('path');
1180
  var filename = $(this).find('.item_label').attr('title');
1181
  $('#wpdmefn').text(filename);
1182
- $.get(ajaxurl, {__wpdm_openfile:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_openfile', path: current_path, file: filepath}, function (data) {
1183
  if(data.content != '') {
1184
  $('#filecontent').show();
1185
  $('#filecontent_alt').hide();
@@ -1217,7 +1220,7 @@ if(is_admin()){
1217
  $('#wpdmeditor').addClass('blockui');
1218
  var filepath = $(this).data('path');
1219
  var content = editor.codemirror.getValue();
1220
- $.post(ajaxurl, {__wpdm_savefile:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_savefile', content: content, file: filepath, opened: opened }, function (data) {
1221
  WPDM.pushNotify("Save File", data.message);
1222
  $('#wpdmeditor').removeClass('blockui');
1223
  });
@@ -1227,7 +1230,7 @@ if(is_admin()){
1227
  $('body').on('click', '.btn-edit-link', function () {
1228
  $('#update_sharelink_form').addClass('blockui');
1229
  var linkid = $(this).data('linkid');
1230
- $.post(ajaxurl, {__wpdm_getlinkdet:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_getlinkdet', linkid: linkid }, function (data) {
1231
  linkSettings.link = data;
1232
  $('#update_sharelink_form').removeClass('blockui');
1233
  });
@@ -1251,7 +1254,7 @@ if(is_admin()){
1251
  'callback': function () {
1252
  $(this).find('.modal-body').html('<i class="fa fa-sun fa-spin"></i> Deleting...');
1253
  var confirm = $(this);
1254
- $.post(ajaxurl, {__wpdm_deletelink:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_deletelink', linkid: linkid }, function (data) {
1255
  confirm.modal('hide');
1256
  $('#asset-link-'+linkid).slideUp();
1257
  });
@@ -1319,7 +1322,7 @@ if(is_admin()){
1319
  e.preventDefault();
1320
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1321
  var filepath = $(this).data('path');
1322
- $.post(ajaxurl, {__wpdm_rename:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_rename', path: current_path, newname: $('#newname').val(), assetid: assetSettings.asset.ID}, function (data) {
1323
  refresh_scandir(current_path);
1324
  $(this).data('oldname', $('#newname').val());
1325
  $('#renamenow').html('Rename');
@@ -1338,7 +1341,7 @@ if(is_admin()){
1338
  $('#filewin').removeClass('col-md-9').addClass('col-md-6');
1339
  $('#cogwin').fadeIn();
1340
  $('#cogwin > .panel').addClass('blockui');
1341
- $.get(ajaxurl, {__wpdm_filesettings:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_filesettings', file: file_path }, function (data) {
1342
  data.sharecode = "[wpdm_asset id='"+data.ID+"']";
1343
  assetSettings.asset = data;
1344
  $('#cogwin > .panel').removeClass('blockui');
@@ -1353,9 +1356,9 @@ if(is_admin()){
1353
  $('body').on('click', '#btn-paste', function (e) {
1354
  e.preventDefault();
1355
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1356
- var params = {__wpdm_copypaste:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_copypaste', source: localStorage.getItem("__wpdm_fm_copy"), dest: current_path};
1357
  if(localStorage.getItem("__wpdm_fm_move") == 1)
1358
- params = {__wpdm_cutpaste:'<?php echo wp_create_nonce(NONCE_KEY); ?>', action: 'wpdm_cutpaste', source: localStorage.getItem("__wpdm_fm_copy"), dest: current_path};
1359
  $.get(ajaxurl, params, function (data) {
1360
  if(!data.success){
1361
  WPDM.notify(data.message, 'error');
@@ -1503,4 +1506,4 @@ if(is_admin()){
1503
  });
1504
  </script>
1505
  </div>
1506
- <?php }
499
  button.btn-unzip.application_zip{
500
  display: inline-block !important;
501
  }
502
+ .notice.notice-warning{
503
+ display: none;
504
+ }
505
  </style>
506
 
507
  <div class="w3eden" id="mainfmarea">
831
  </div>
832
  <div class="modal-body">
833
  <form id="update_sharelink_form" method="post" action="<?php echo admin_url('admin-ajax.php'); ?>">
834
+ <?php wp_nonce_field(WPDMAM_NONCE_KEY, '__wpdm_updatelink'); ?>
835
  <input type="hidden" name="action" value="wpdm_updatelink" />
836
  <input type="hidden" name="ID" v-bind:value="link.ID" />
837
  <div class="panel panel-default">
1105
  var folname = $('#folname').val();
1106
  if(folname !=''){
1107
  $('#createfol').html('<i class="fa fa-refresh fa-spin"></i> &nbsp; Creating...');
1108
+ $.get(ajaxurl, {__wpdm_mkdir:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_mkdir', path: current_path, name: folname}, function (data) {
1109
  $('#folname').val('');
1110
  $('#createfol').html('Create Folder');
1111
  $('#fcd').fadeIn();
1118
  var filename = $('#filename').val();
1119
  if(filename !=''){
1120
  $('#createfile').html('<i class="fa fa-refresh fa-spin"></i> &nbsp; Creating...');
1121
+ $.get(ajaxurl, {__wpdm_newfile:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_newfile', path: current_path, name: filename}, function (data) {
1122
  $('#filename').val('');
1123
  $('#createfile').html('Create File');
1124
  $('#fcd').fadeIn();
1132
  var zip_dir_path = $(this).data('dirpath');
1133
  //WPDM.blockUI("#wpdmfm_explorer");
1134
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1135
+ $.get(ajaxurl, {__wpdm_createzip:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_createzip', dir_path: zip_dir_path }, function (response) {
1136
  if(!response.success){
1137
  WPDM.notify(response.message, 'error');
1138
  } else {
1146
  var zip_dir_path = $(this).data('dirpath');
1147
  //WPDM.blockUI("#wpdmfm_explorer");
1148
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1149
+ $.get(ajaxurl, {__wpdm_unzipit:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_unzipit', dir_path: zip_dir_path }, function (response) {
1150
  if(!response.success){
1151
  WPDM.notify(response.message, 'error');
1152
  } else {
1161
  if(!confirm('Are you sure?')) return false;
1162
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1163
  var filepath = $(this).data('path');
1164
+ $.get(ajaxurl, {__wpdm_unlink:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_unlink', path: current_path, delete: filepath}, function (data) {
1165
  refresh_scandir(current_path);
1166
  });
1167
  });
1170
  e.preventDefault();
1171
  WPDM.blockUI('#newcomment_panel');
1172
  var filepath = $(this).data('path');
1173
+ $.post(ajaxurl, {__wpdm_addcomment:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_addcomment', comment: $('#newcomment').val(), assetid: assetSettings.asset.ID }, function (data) {
1174
  assetSettings.asset.comments = data;
1175
  WPDM.unblockUI('#newcomment_panel');
1176
  });
1182
  var filepath = $(this).data('path');
1183
  var filename = $(this).find('.item_label').attr('title');
1184
  $('#wpdmefn').text(filename);
1185
+ $.get(ajaxurl, {__wpdm_openfile:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_openfile', path: current_path, file: filepath}, function (data) {
1186
  if(data.content != '') {
1187
  $('#filecontent').show();
1188
  $('#filecontent_alt').hide();
1220
  $('#wpdmeditor').addClass('blockui');
1221
  var filepath = $(this).data('path');
1222
  var content = editor.codemirror.getValue();
1223
+ $.post(ajaxurl, {__wpdm_savefile:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_savefile', content: content, file: filepath, opened: opened }, function (data) {
1224
  WPDM.pushNotify("Save File", data.message);
1225
  $('#wpdmeditor').removeClass('blockui');
1226
  });
1230
  $('body').on('click', '.btn-edit-link', function () {
1231
  $('#update_sharelink_form').addClass('blockui');
1232
  var linkid = $(this).data('linkid');
1233
+ $.post(ajaxurl, {__wpdm_getlinkdet:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_getlinkdet', linkid: linkid }, function (data) {
1234
  linkSettings.link = data;
1235
  $('#update_sharelink_form').removeClass('blockui');
1236
  });
1254
  'callback': function () {
1255
  $(this).find('.modal-body').html('<i class="fa fa-sun fa-spin"></i> Deleting...');
1256
  var confirm = $(this);
1257
+ $.post(ajaxurl, {__wpdm_deletelink:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_deletelink', linkid: linkid }, function (data) {
1258
  confirm.modal('hide');
1259
  $('#asset-link-'+linkid).slideUp();
1260
  });
1322
  e.preventDefault();
1323
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1324
  var filepath = $(this).data('path');
1325
+ $.post(ajaxurl, {__wpdm_rename:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_rename', path: current_path, newname: $('#newname').val(), assetid: assetSettings.asset.ID}, function (data) {
1326
  refresh_scandir(current_path);
1327
  $(this).data('oldname', $('#newname').val());
1328
  $('#renamenow').html('Rename');
1341
  $('#filewin').removeClass('col-md-9').addClass('col-md-6');
1342
  $('#cogwin').fadeIn();
1343
  $('#cogwin > .panel').addClass('blockui');
1344
+ $.get(ajaxurl, {__wpdm_filesettings:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_filesettings', file: file_path }, function (data) {
1345
  data.sharecode = "[wpdm_asset id='"+data.ID+"']";
1346
  assetSettings.asset = data;
1347
  $('#cogwin > .panel').removeClass('blockui');
1356
  $('body').on('click', '#btn-paste', function (e) {
1357
  e.preventDefault();
1358
  $(this).html('<i class="fa fa-spinner fa-spin"></i>');
1359
+ var params = {__wpdm_copypaste:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_copypaste', source: localStorage.getItem("__wpdm_fm_copy"), dest: current_path};
1360
  if(localStorage.getItem("__wpdm_fm_move") == 1)
1361
+ params = {__wpdm_cutpaste:'<?php echo wp_create_nonce(WPDMAM_NONCE_KEY); ?>', action: 'wpdm_cutpaste', source: localStorage.getItem("__wpdm_fm_copy"), dest: current_path};
1362
  $.get(ajaxurl, params, function (data) {
1363
  if(!data.success){
1364
  WPDM.notify(data.message, 'error');
1506
  });
1507
  </script>
1508
  </div>
1509
+ <?php }
wpdm-core.php CHANGED
@@ -319,6 +319,19 @@ function wpdm_access_token(){
319
  return '';
320
  }
321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
 
323
 
324
  /**
319
  return '';
320
  }
321
 
322
+ function wpdm_get_allowed_file_types()
323
+ {
324
+ $allowed_file_types = get_option("__wpdm_allowed_file_types", '');
325
+ if($allowed_file_types === '') {
326
+ $wp_allowed_file_types = get_allowed_mime_types();
327
+ $wp_allowed_file_exts = array_keys($wp_allowed_file_types);
328
+ $wp_allowed_file_exts = implode(",", $wp_allowed_file_exts);
329
+ $wp_allowed_file_exts = str_replace("|", ",", $wp_allowed_file_exts);
330
+ $allowed_file_types = $wp_allowed_file_exts;
331
+ }
332
+ return explode(",", $allowed_file_types);
333
+ }
334
+
335
 
336
 
337
  /**
wpdm-functions.php CHANGED
@@ -551,28 +551,30 @@ function wpdm_valueof($var, $index, $params = [])
551
 
552
 
553
  /**
554
- * @usage Validate and sanitize input data
555
  * @param $var
556
- * @param array $params
557
- * @return int|null|string
 
558
  */
559
- function wpdm_query_var($var, $params = array())
560
  {
561
  $_var = explode("/", $var);
 
562
  if (count($_var) > 1) {
563
  $val = $_REQUEST;
564
  foreach ($_var as $key) {
565
  $val = is_array($val) && isset($val[$key]) ? $val[$key] : false;
566
  }
567
  } else
568
- $val = isset($_REQUEST[$var]) ? $_REQUEST[$var] : null;
569
- $validate = is_string($params) ? $params : '';
570
- $validate = is_array($params) && isset($params['validate']) ? $params['validate'] : $validate;
571
 
572
  if (!is_array($val))
573
- $val = wpdm_sanitize_var($val, $validate);
574
  else
575
- $val = wpdm_sanitize_array($val, $validate);
576
 
577
  return $val;
578
  }
@@ -1939,4 +1941,4 @@ function wpdmdd($data)
1939
  {
1940
  wpdmecho($data);
1941
  die();
1942
- }
551
 
552
 
553
  /**
554
+ * Validate and sanitize input data
555
  * @param $var
556
+ * @param array $validate
557
+ * @param null $default
558
+ * @return array|float|int|mixed|string|string[]|null
559
  */
560
+ function wpdm_query_var($var, $validate = array(), $default = null)
561
  {
562
  $_var = explode("/", $var);
563
+
564
  if (count($_var) > 1) {
565
  $val = $_REQUEST;
566
  foreach ($_var as $key) {
567
  $val = is_array($val) && isset($val[$key]) ? $val[$key] : false;
568
  }
569
  } else
570
+ $val = isset($_REQUEST[$var]) ? $_REQUEST[$var] : (isset($validate['default']) ? $validate['default'] : $default);
571
+ $_validate = is_string($validate) ? $validate : '';
572
+ $_validate = is_array($validate) && isset($validate['validate']) ? $validate['validate'] : $_validate;
573
 
574
  if (!is_array($val))
575
+ $val = wpdm_sanitize_var($val, $_validate);
576
  else
577
+ $val = wpdm_sanitize_array($val, $_validate);
578
 
579
  return $val;
580
  }
1941
  {
1942
  wpdmecho($data);
1943
  die();
1944
+ }