Version Description
- JSON_UNESCAPED_UNICODE for files to fix unicode chars when json encoded. Fix needs PHP 5.4+ to work, but won't break lower versions.
- Style filetype-docx
- Update get_version_id to work with non-numeric versions.
- Fix shortcode arg booleans.
- Add transient cache for get_file_version_ids.
- Moved all translations to Transifex - https://www.transifex.com/projects/p/download-monitor/
- Changed text domain from download_monitor to download-monitor.
- Added Grunt.
- Added options to generate file hashes DISABLED BY DEFAULT as they can cause performance issues with large files.
Download this release
Release Info
Developer | mikejolley |
Plugin | Download Monitor |
Version | 1.5.0 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.5.0
- Gruntfile.js +129 -0
- assets/css/admin.css +1 -1
- assets/css/dashboard.css +1 -49
- assets/css/frontend.css +1 -1
- assets/css/frontend.less +1 -1
- assets/js/blockui.min.js +2 -1
- download-monitor.php +72 -63
- includes/admin/class-dlm-addons.php +1 -1
- includes/admin/class-dlm-admin-cpt.php +28 -28
- includes/admin/class-dlm-admin-dashboard.php +2 -2
- includes/admin/class-dlm-admin-insert.php +30 -26
- includes/admin/class-dlm-admin-media-browser.php +2 -2
- includes/admin/class-dlm-admin-writepanels.php +22 -15
- includes/admin/class-dlm-admin.php +76 -52
- includes/admin/class-dlm-category-walker.php +1 -1
- includes/admin/class-dlm-logging-list-table.php +21 -21
- includes/admin/html-downloadable-file-version.php +14 -14
- includes/class-dlm-ajax-handler.php +11 -7
- includes/class-dlm-download-handler.php +37 -23
- includes/class-dlm-download-version.php +3 -1
- includes/class-dlm-download.php +15 -5
- includes/class-dlm-shortcodes.php +3 -3
- includes/widgets/class-dlm-widget-downloads.php +20 -20
- languages/download-monitor-de_DE.mo +0 -0
- languages/{download_monitor-de_DE.po → download-monitor-de_DE.po} +380 -396
- languages/download-monitor-es_ES.mo +0 -0
- languages/download-monitor-es_ES.po +961 -0
- languages/download-monitor-fa_IR.mo +0 -0
- languages/{download_monitor-fa_IR.po → download-monitor-fa_IR.po} +366 -412
- languages/download-monitor-fr_FR.mo +0 -0
- languages/{download_monitor-fr_FR.po → download-monitor-fr_FR.po} +350 -492
- languages/download-monitor-hu_HU.mo +0 -0
- languages/{download_monitor-hu_HU.po → download-monitor-hu_HU.po} +350 -475
- languages/download-monitor-it_IT.mo +0 -0
- languages/{download_monitor-it_IT.po → download-monitor-it_IT.po} +369 -224
- languages/download-monitor-ja.mo +0 -0
- languages/{download_monitor-ja.po → download-monitor-ja.po} +374 -247
- languages/download-monitor-pl_PL.mo +0 -0
- languages/download-monitor-pl_PL.po +963 -0
- languages/download-monitor-pt_BR.mo +0 -0
- languages/{download_monitor-pt_BR.po → download-monitor-pt_BR.po} +226 -371
- languages/download-monitor-sr_RS.mo +0 -0
- languages/{download_monitor-sr_RS.po → download-monitor-sr_RS.po} +357 -493
- languages/download-monitor-sv_SE.mo +0 -0
- languages/{download_monitor-sv_SE.po → download-monitor-sv_SE.po} +367 -413
- languages/download-monitor-tr_TR.mo +0 -0
- languages/download-monitor-tr_TR.po +958 -0
- languages/{download_monitor-zh_CN.mo → download-monitor-zh_CN.mo} +0 -0
- languages/{download_monitor-zh_CN.po → download-monitor-zh_CN.po} +212 -361
- languages/download-monitor.pot +987 -0
- languages/download_monitor-de_DE.mo +0 -0
- languages/download_monitor-es_ES.mo +0 -0
- languages/download_monitor-es_ES.po +0 -1001
- languages/download_monitor-fa_IR.mo +0 -0
- languages/download_monitor-fr_FR.mo +0 -0
- languages/download_monitor-hu_HU.mo +0 -0
- languages/download_monitor-it_IT.mo +0 -0
- languages/download_monitor-ja.mo +0 -0
- languages/download_monitor-pl_PL.mo +0 -0
- languages/download_monitor-pl_PL.po +0 -983
- languages/download_monitor-sr_RS.mo +0 -0
- languages/download_monitor-sv_SE.mo +0 -0
- languages/download_monitor-tr_TR.mo +0 -0
- languages/download_monitor-tr_TR.po +0 -350
- package.json +19 -0
- readme.txt +21 -3
- templates/content-download-box.php +3 -3
- templates/content-download-button.php +2 -2
- templates/content-download-filename.php +2 -2
- templates/content-download-title.php +1 -1
- templates/content-download-version-list.php +1 -1
- templates/content-download.php +2 -2
Gruntfile.js
ADDED
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* jshint node:true */
|
2 |
+
module.exports = function( grunt ){
|
3 |
+
'use strict';
|
4 |
+
|
5 |
+
grunt.initConfig({
|
6 |
+
// setting folder templates
|
7 |
+
dirs: {
|
8 |
+
css: 'assets/css',
|
9 |
+
images: 'assets/images',
|
10 |
+
js: 'assets/js'
|
11 |
+
},
|
12 |
+
|
13 |
+
// Compile all .less files.
|
14 |
+
less: {
|
15 |
+
compile: {
|
16 |
+
options: {
|
17 |
+
// These paths are searched for @imports
|
18 |
+
paths: ['<%= dirs.css %>/']
|
19 |
+
},
|
20 |
+
files: [{
|
21 |
+
expand: true,
|
22 |
+
cwd: '<%= dirs.css %>/',
|
23 |
+
src: [
|
24 |
+
'*.less',
|
25 |
+
'!icons.less',
|
26 |
+
'!mixins.less'
|
27 |
+
],
|
28 |
+
dest: '<%= dirs.css %>/',
|
29 |
+
ext: '.css'
|
30 |
+
}]
|
31 |
+
}
|
32 |
+
},
|
33 |
+
|
34 |
+
// Minify all .css files.
|
35 |
+
cssmin: {
|
36 |
+
minify: {
|
37 |
+
expand: true,
|
38 |
+
cwd: '<%= dirs.css %>/',
|
39 |
+
src: ['*.css'],
|
40 |
+
dest: '<%= dirs.css %>/',
|
41 |
+
ext: '.css'
|
42 |
+
}
|
43 |
+
},
|
44 |
+
|
45 |
+
// Minify .js files.
|
46 |
+
uglify: {
|
47 |
+
options: {
|
48 |
+
preserveComments: 'some'
|
49 |
+
},
|
50 |
+
frontend: {
|
51 |
+
files: [{
|
52 |
+
expand: true,
|
53 |
+
cwd: '<%= dirs.js %>',
|
54 |
+
src: [
|
55 |
+
'*.js',
|
56 |
+
'!*.min.js'
|
57 |
+
],
|
58 |
+
dest: '<%= dirs.js %>',
|
59 |
+
ext: '.min.js'
|
60 |
+
}]
|
61 |
+
},
|
62 |
+
},
|
63 |
+
|
64 |
+
// Watch changes for assets
|
65 |
+
watch: {
|
66 |
+
less: {
|
67 |
+
files: ['<%= dirs.css %>/*.less'],
|
68 |
+
tasks: ['less', 'cssmin'],
|
69 |
+
},
|
70 |
+
js: {
|
71 |
+
files: [
|
72 |
+
'<%= dirs.js %>/*js',
|
73 |
+
'!<%= dirs.js %>/*.min.js',
|
74 |
+
],
|
75 |
+
tasks: ['uglify']
|
76 |
+
}
|
77 |
+
},
|
78 |
+
|
79 |
+
shell: {
|
80 |
+
options: {
|
81 |
+
stdout: true,
|
82 |
+
stderr: true
|
83 |
+
},
|
84 |
+
txpull: {
|
85 |
+
command: [
|
86 |
+
'tx pull -a -f',
|
87 |
+
].join( '&&' )
|
88 |
+
},
|
89 |
+
generatemos: {
|
90 |
+
command: [
|
91 |
+
'cd languages',
|
92 |
+
'for i in *.po; do msgfmt $i -o ${i%%.*}.mo; done'
|
93 |
+
].join( '&&' )
|
94 |
+
},
|
95 |
+
generatepot: {
|
96 |
+
command: [
|
97 |
+
'makepot'
|
98 |
+
].join( '&&' )
|
99 |
+
}
|
100 |
+
},
|
101 |
+
|
102 |
+
});
|
103 |
+
|
104 |
+
// Load NPM tasks to be used here
|
105 |
+
grunt.loadNpmTasks( 'grunt-shell' );
|
106 |
+
grunt.loadNpmTasks( 'grunt-contrib-less' );
|
107 |
+
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
|
108 |
+
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
|
109 |
+
grunt.loadNpmTasks( 'grunt-contrib-watch' );
|
110 |
+
|
111 |
+
// Register tasks
|
112 |
+
grunt.registerTask( 'default', [
|
113 |
+
'less',
|
114 |
+
'cssmin',
|
115 |
+
'uglify'
|
116 |
+
]);
|
117 |
+
|
118 |
+
// Just an alias for pot file generation
|
119 |
+
grunt.registerTask( 'pot', [
|
120 |
+
'shell:generatepot'
|
121 |
+
]);
|
122 |
+
|
123 |
+
grunt.registerTask( 'dev', [
|
124 |
+
'default',
|
125 |
+
'shell:txpull',
|
126 |
+
'shell:generatemos'
|
127 |
+
]);
|
128 |
+
|
129 |
+
};
|
assets/css/admin.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#dlm_logs td{padding:7px;vertical-align:middle}#dlm_logs .column-status{width:4em}#dlm_logs td.column-status{font-size:10px;vertical-align:middle;text-align:center}#dlm_logs td.column-status span{color:#fff;font-weight:400;-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;height:16px;line-height:16px;width:16px;display:inline-block}#dlm_logs td.column-status .failed{background-color:#df9d1d}#dlm_logs td.column-status .redirected{background-color:#74a721}#dlm_logs td.column-status .completed{background-color:#1c769b}#dlm_logs td.column-user_ip,#dlm_logs td.column-user_agent{font-family:monospace;font-weight:400}#dlm_logs span.description{font-weight:400}#dlm_logs .column-download,#dlm_logs .column-file,#dlm_logs .column-user,#dlm_logs .column-user_ua{width:16%!important}#dlm_logs .column-user_ip,#dlm_logs .column-date{width:6%!important}ul.download_monitor_file_browser{list-style:none outside;margin:0;border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background:#f9f9f9;padding:5px;-moz-box-shadow:inset 0 0 0 1px #fff;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}ul.download_monitor_file_browser li{padding:0;margin:0}ul.download_monitor_file_browser li a{color:#21759B;display:block;padding:4px 0 4px 4px;text-decoration:none}ul.download_monitor_file_browser li a:hover{background-color:#eaf2fa}ul.download_monitor_file_browser li a:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f123";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.folder:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f318";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-mov:before,ul.download_monitor_file_browser li a.filetype-avi:before,ul.download_monitor_file_browser li a.filetype-3g2:before,ul.download_monitor_file_browser li a.filetype-3gp:before,ul.download_monitor_file_browser li a.filetype-asf:before,ul.download_monitor_file_browser li a.filetype-asx:before,ul.download_monitor_file_browser li a.filetype-mp4:before,ul.download_monitor_file_browser li a.filetype-mpg:before,ul.download_monitor_file_browser li a.filetype-rm:before,ul.download_monitor_file_browser li a.filetype-srt:before,ul.download_monitor_file_browser li a.filetype-vob:before,ul.download_monitor_file_browser li a.filetype-wmv:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f126";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-mp3:before,ul.download_monitor_file_browser li a.filetype-aif:before,ul.download_monitor_file_browser li a.filetype-iff:before,ul.download_monitor_file_browser li a.filetype-m3u:before,ul.download_monitor_file_browser li a.filetype-m4a:before,ul.download_monitor_file_browser li a.filetype-mid:before,ul.download_monitor_file_browser li a.filetype-midi:before,ul.download_monitor_file_browser li a.filetype-mpa:before,ul.download_monitor_file_browser li a.filetype-ra:before,ul.download_monitor_file_browser li a.filetype-wav:before,ul.download_monitor_file_browser li a.filetype-wma:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f127";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-psd:before,ul.download_monitor_file_browser li a.filetype-ai:before,ul.download_monitor_file_browser li a.filetype-eps:before,ul.download_monitor_file_browser li a.filetype-ps:before,ul.download_monitor_file_browser li a.filetype-svg:before,ul.download_monitor_file_browser li a.filetype-bmp:before,ul.download_monitor_file_browser li a.filetype-dds:before,ul.download_monitor_file_browser li a.filetype-gif:before,ul.download_monitor_file_browser li a.filetype-jpg:before,ul.download_monitor_file_browser li a.filetype-jpeg:before,ul.download_monitor_file_browser li a.filetype-png:before,ul.download_monitor_file_browser li a.filetype-pspimage:before,ul.download_monitor_file_browser li a.filetype-tga:before,ul.download_monitor_file_browser li a.filetype-thm:before,ul.download_monitor_file_browser li a.filetype-tif:before,ul.download_monitor_file_browser li a.filetype-yuv:before,ul.download_monitor_file_browser li a.filetype-ico:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f128";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li.nofiles{color:#999;font-style:italic;padding:4px 0}ul.download_monitor_file_browser li ul{list-style:none outside;margin:0;padding:0 0 0 28px}ul.download_monitor_file_browser li ul.loading{background:url(../images/ajax-loader.gif) no-repeat 24px 0;height:32px}table.wp-list-table .column-thumb{width:44px;text-align:center;white-space:nowrap}table.wp-list-table .column-dlm_download_cat,table.wp-list-table .column-dlm_download_tag,table.wp-list-table .column-file{width:11%!important}table.wp-list-table .column-title,table.wp-list-table .column-file{width:17%!important}table.wp-list-table .column-download_id,table.wp-list-table .column-version{width:5em}table.wp-list-table th.column-thumb span:first-child,table.wp-list-table th.column-download_count span:first-child,table.wp-list-table th.column-members_only span:first-child,table.wp-list-table th.column-redirect_only span:first-child,table.wp-list-table th.column-featured span:first-child{float:none;display:inline-block;width:1em;height:1em;line-height:1em;padding:2px 0 0;overflow:hidden}table.wp-list-table th.column-thumb .sorting-indicator,table.wp-list-table th.column-download_count .sorting-indicator,table.wp-list-table th.column-members_only .sorting-indicator,table.wp-list-table th.column-redirect_only .sorting-indicator,table.wp-list-table th.column-featured .sorting-indicator{float:right}table.wp-list-table th.column-thumb{width:52px;text-align:center}table.wp-list-table th.column-thumb span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f128";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-download_count{width:5em}table.wp-list-table th.column-download_count span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f346";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-members_only{width:3.5em}table.wp-list-table th.column-members_only span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f338";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-redirect_only{width:3.5em}table.wp-list-table th.column-redirect_only span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f103";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-featured{width:3.5em}table.wp-list-table th.column-featured span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f155";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table td.column-download_count,table.wp-list-table td.column-members_only,table.wp-list-table td.column-redirect_only,table.wp-list-table td.column-featured{text-align:left;padding-left:11px}table.wp-list-table td.column-download_count span.na,table.wp-list-table td.column-members_only span.na,table.wp-list-table td.column-redirect_only span.na,table.wp-list-table td.column-featured span.na{color:#999;width:1em;height:1em;line-height:1em;display:inline-block;overflow:hidden;vertical-align:middle}table.wp-list-table td.column-download_count span.na:before,table.wp-list-table td.column-members_only span.na:before,table.wp-list-table td.column-redirect_only span.na:before,table.wp-list-table td.column-featured span.na:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table td.column-download_count span.yes,table.wp-list-table td.column-members_only span.yes,table.wp-list-table td.column-redirect_only span.yes,table.wp-list-table td.column-featured span.yes{width:1em;height:1em;line-height:1em;display:inline-block;overflow:hidden;vertical-align:middle}table.wp-list-table td.column-download_count span.yes:before,table.wp-list-table td.column-members_only span.yes:before,table.wp-list-table td.column-redirect_only span.yes:before,table.wp-list-table td.column-featured span.yes:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f147";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table .column-thumb img{padding:2px;margin:0;border:1px solid #dfdfdf;vertical-align:middle;width:32px;height:32px}#download-monitor-file .inside{padding:0;margin:0}#download-monitor-file .dlm-metaboxes-wrapper .expand_all,#download-monitor-file .dlm-metaboxes-wrapper .close_all{float:right;margin-left:1em;line-height:22px;text-decoration:none}#download-monitor-file .dlm-metaboxes-wrapper .expand_all:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f168";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .close_all:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper p.toolbar{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#download-monitor-file .dlm-metaboxes-wrapper p.toolbar a.button{float:left;margin:0}#download-monitor-file .dlm-metaboxes-wrapper select.attribute_taxonomy,#download-monitor-file .dlm-metaboxes-wrapper button.add_attribute,#download-monitor-file .dlm-metaboxes-wrapper button.add_variable_attribute,#download-monitor-file .dlm-metaboxes-wrapper .fr{float:right;margin:0 0 0 6px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metaboxes{padding:0 12px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox-sortable-placeholder{border-color:#bbb;background-color:#f5f5f5;margin:9px 0;border-width:1px;border-style:dashed}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox{background:#ececec;border:1px solid #ececec;margin:9px 0!important}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3{margin:0!important;padding:6px!important;font-size:1em!important;overflow:hidden;zoom:1;cursor:move}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 button{float:right}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 strong{font-weight:400;line-height:24px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 select{font-family:sans-serif}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 .handlediv{background-position:6px 5px!important;display:none;height:24px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:hover h3 .handlediv{display:block}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table{width:100%;position:relative;background:#fff;padding:3px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td{text-align:left;padding:6px;vertical-align:top;border:0;line-height:26px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td label{text-align:left;display:block;line-height:21px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input{float:left;min-width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td textarea{width:100%;margin:0;display:block;font-size:14px;padding:4px;color:#555}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td textarea{height:7.5em}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td select{width:100%}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.short{width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.checkbox{width:auto;min-width:inherit;vertical-align:middle;display:inline;float:none}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.date-picker-field{width:50%;min-width:inherit;float:none;display:inline}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.minute,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.hour{width:2em;min-width:inherit;float:none;display:inline}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td.attribute_name{width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .plus,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .minus{margin-top:6px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .fl{float:left}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .fr{float:right}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:first-child{}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:first-child h3{background:#EAF2FA;background-image:linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-o-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-moz-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-webkit-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-ms-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#dae6f2),color-stop(1,#eaf2fa));border-color:#d3deea;color:#21759B}#download-monitor-file .dlm-metaboxes-wrapper .plus:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f132";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .minus:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .dlm_upload_file:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f317";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .dlm_browse_for_file:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f322";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-options .inside{padding:0;margin:0}#download-monitor-options .form-field-checkbox label{display:inline;padding:0 0 4px}#download-monitor-options .form-field-checkbox input{display:inline-block;width:auto;vertical-align:middle}#download-monitor-options .form-field-checkbox .description{padding:4px 0 0;display:block}#download-monitor-options .access_permissions{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#download-monitor-options .access_permissions h4{margin-bottom:.5em;margin:0 0 .5em}#download-monitor-options .access_permissions ul{background:#fff;border:1px solid #dfdfdf;height:110px;overflow:auto;padding:.5em .9em;margin:0}#download-monitor-options p{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#insert-download{padding:20px}#insert-download .updated,#insert-download .error{margin-left:0;margin-right:0}#insert-download h2{margin-top:0}#insert-download label{margin:0 0 .25em;display:block;font-size:1.1em}#insert-download span.description{display:block}#insert-download input.input{margin:0 0 .25em;display:block;width:100%;font-size:1.1em}#insert-download .add_link{float:right}#insert-download ul.page-numbers{overflow:hidden;zoom:1;margin:0 auto;padding:0;text-align:center}#insert-download ul.page-numbers li{display:inline-block;margin:0;list-style:none outside;line-height:1em}#insert-download ul.page-numbers li a,#insert-download ul.page-numbers li span{text-decoration:none;border:1px solid #ddd;-webkit-border-radius:4px;border-radius:4px;padding:8px;display:block}#insert-download ul.page-numbers li span{border-color:#eee}#insert-download legend{font-weight:700;display:block;margin:0 0 1em}#insert-download fieldset label{display:block;margin:0 0 .5em}.dlm_addons_wrap .items{overflow:hidden}.dlm_addons_wrap .items li{display:inline-block;margin:0 10px 10px 0!important;padding:0;vertical-align:top;width:250px;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1);overflow:hidden;position:relative}.dlm_addons_wrap .items li a{color:inherit;text-decoration:none}.dlm_addons_wrap .items li img{max-width:100%;height:auto;display:block;margin:0;background:#fff}.dlm_addons_wrap .items li h2{margin:0!important;padding:10px 20px!important;line-height:1;background:rgba(255,255,255,.8);color:#000;position:absolute;max-width:280px;top:20px;left:0;font-size:18px;text-shadow:none}.dlm_addons_wrap .items li .third_party{display:none}.dlm_addons_wrap .items li p{padding:20px!important;margin:0!important;border-top:1px solid #f1f1f1}.dlm_addons_wrap .items li .cost{display:none}
|
1 |
+
#dlm_logs td{padding:7px;vertical-align:middle}#dlm_logs .column-status{width:4em}#dlm_logs td.column-status{font-size:10px;vertical-align:middle;text-align:center}#dlm_logs td.column-status span{color:#fff;font-weight:400;-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;height:16px;line-height:16px;width:16px;display:inline-block}#dlm_logs td.column-status .failed{background-color:#df9d1d}#dlm_logs td.column-status .redirected{background-color:#74a721}#dlm_logs td.column-status .completed{background-color:#1c769b}#dlm_logs td.column-user_agent,#dlm_logs td.column-user_ip{font-family:monospace;font-weight:400}#dlm_logs span.description{font-weight:400}#dlm_logs .column-download,#dlm_logs .column-file,#dlm_logs .column-user,#dlm_logs .column-user_ua{width:16%!important}#dlm_logs .column-date,#dlm_logs .column-user_ip{width:6%!important}ul.download_monitor_file_browser{list-style:none outside;margin:0;border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background:#f9f9f9;padding:5px;-moz-box-shadow:inset 0 0 0 1px #fff;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}ul.download_monitor_file_browser li{padding:0;margin:0}ul.download_monitor_file_browser li a{color:#21759B;display:block;padding:4px 0 4px 4px;text-decoration:none}ul.download_monitor_file_browser li a:hover{background-color:#eaf2fa}ul.download_monitor_file_browser li a:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f123";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.folder:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f318";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-3g2:before,ul.download_monitor_file_browser li a.filetype-3gp:before,ul.download_monitor_file_browser li a.filetype-asf:before,ul.download_monitor_file_browser li a.filetype-asx:before,ul.download_monitor_file_browser li a.filetype-avi:before,ul.download_monitor_file_browser li a.filetype-mov:before,ul.download_monitor_file_browser li a.filetype-mp4:before,ul.download_monitor_file_browser li a.filetype-mpg:before,ul.download_monitor_file_browser li a.filetype-rm:before,ul.download_monitor_file_browser li a.filetype-srt:before,ul.download_monitor_file_browser li a.filetype-vob:before,ul.download_monitor_file_browser li a.filetype-wmv:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f126";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-aif:before,ul.download_monitor_file_browser li a.filetype-iff:before,ul.download_monitor_file_browser li a.filetype-m3u:before,ul.download_monitor_file_browser li a.filetype-m4a:before,ul.download_monitor_file_browser li a.filetype-mid:before,ul.download_monitor_file_browser li a.filetype-midi:before,ul.download_monitor_file_browser li a.filetype-mp3:before,ul.download_monitor_file_browser li a.filetype-mpa:before,ul.download_monitor_file_browser li a.filetype-ra:before,ul.download_monitor_file_browser li a.filetype-wav:before,ul.download_monitor_file_browser li a.filetype-wma:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f127";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li a.filetype-ai:before,ul.download_monitor_file_browser li a.filetype-bmp:before,ul.download_monitor_file_browser li a.filetype-dds:before,ul.download_monitor_file_browser li a.filetype-eps:before,ul.download_monitor_file_browser li a.filetype-gif:before,ul.download_monitor_file_browser li a.filetype-ico:before,ul.download_monitor_file_browser li a.filetype-jpeg:before,ul.download_monitor_file_browser li a.filetype-jpg:before,ul.download_monitor_file_browser li a.filetype-png:before,ul.download_monitor_file_browser li a.filetype-ps:before,ul.download_monitor_file_browser li a.filetype-psd:before,ul.download_monitor_file_browser li a.filetype-pspimage:before,ul.download_monitor_file_browser li a.filetype-svg:before,ul.download_monitor_file_browser li a.filetype-tga:before,ul.download_monitor_file_browser li a.filetype-thm:before,ul.download_monitor_file_browser li a.filetype-tif:before,ul.download_monitor_file_browser li a.filetype-yuv:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f128";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}ul.download_monitor_file_browser li.nofiles{color:#999;font-style:italic;padding:4px 0}ul.download_monitor_file_browser li ul{list-style:none outside;margin:0;padding:0 0 0 28px}ul.download_monitor_file_browser li ul.loading{background:url(../images/ajax-loader.gif) no-repeat 24px 0;height:32px}table.wp-list-table .column-thumb{width:44px;text-align:center;white-space:nowrap}table.wp-list-table .column-dlm_download_cat,table.wp-list-table .column-dlm_download_tag,table.wp-list-table .column-file{width:11%!important}table.wp-list-table .column-file,table.wp-list-table .column-title{width:17%!important}table.wp-list-table .column-download_id,table.wp-list-table .column-version{width:5em}table.wp-list-table th.column-download_count span:first-child,table.wp-list-table th.column-featured span:first-child,table.wp-list-table th.column-members_only span:first-child,table.wp-list-table th.column-redirect_only span:first-child,table.wp-list-table th.column-thumb span:first-child{float:none;display:inline-block;width:1em;height:1em;line-height:1em;padding:2px 0 0;overflow:hidden}table.wp-list-table th.column-download_count .sorting-indicator,table.wp-list-table th.column-featured .sorting-indicator,table.wp-list-table th.column-members_only .sorting-indicator,table.wp-list-table th.column-redirect_only .sorting-indicator,table.wp-list-table th.column-thumb .sorting-indicator{float:right}table.wp-list-table th.column-thumb{width:52px;text-align:center}table.wp-list-table th.column-thumb span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f128";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-download_count{width:5em}table.wp-list-table th.column-download_count span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f346";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-members_only{width:3.5em}table.wp-list-table th.column-members_only span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f338";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-redirect_only{width:3.5em}table.wp-list-table th.column-redirect_only span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f103";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table th.column-featured{width:3.5em}table.wp-list-table th.column-featured span:first-child:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f155";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table td.column-download_count,table.wp-list-table td.column-featured,table.wp-list-table td.column-members_only,table.wp-list-table td.column-redirect_only{text-align:left;padding-left:11px}table.wp-list-table td.column-download_count span.na,table.wp-list-table td.column-featured span.na,table.wp-list-table td.column-members_only span.na,table.wp-list-table td.column-redirect_only span.na{color:#999;width:1em;height:1em;line-height:1em;display:inline-block;overflow:hidden;vertical-align:middle}table.wp-list-table td.column-download_count span.na:before,table.wp-list-table td.column-featured span.na:before,table.wp-list-table td.column-members_only span.na:before,table.wp-list-table td.column-redirect_only span.na:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table td.column-download_count span.yes,table.wp-list-table td.column-featured span.yes,table.wp-list-table td.column-members_only span.yes,table.wp-list-table td.column-redirect_only span.yes{width:1em;height:1em;line-height:1em;display:inline-block;overflow:hidden;vertical-align:middle}table.wp-list-table td.column-download_count span.yes:before,table.wp-list-table td.column-featured span.yes:before,table.wp-list-table td.column-members_only span.yes:before,table.wp-list-table td.column-redirect_only span.yes:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f147";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}table.wp-list-table .column-thumb img{padding:2px;margin:0;border:1px solid #dfdfdf;vertical-align:middle;width:32px;height:32px}#download-monitor-file .inside{padding:0;margin:0}#download-monitor-file .dlm-metaboxes-wrapper .close_all,#download-monitor-file .dlm-metaboxes-wrapper .expand_all{float:right;margin-left:1em;line-height:22px;text-decoration:none}#download-monitor-file .dlm-metaboxes-wrapper .expand_all:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f168";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .close_all:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper p.toolbar{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#download-monitor-file .dlm-metaboxes-wrapper p.toolbar a.button{float:left;margin:0}#download-monitor-file .dlm-metaboxes-wrapper .fr,#download-monitor-file .dlm-metaboxes-wrapper button.add_attribute,#download-monitor-file .dlm-metaboxes-wrapper button.add_variable_attribute,#download-monitor-file .dlm-metaboxes-wrapper select.attribute_taxonomy{float:right;margin:0 0 0 6px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metaboxes{padding:0 12px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox-sortable-placeholder{border-color:#bbb;background-color:#f5f5f5;margin:9px 0;border-width:1px;border-style:dashed}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox{background:#ececec;border:1px solid #ececec;margin:9px 0!important}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3{margin:0!important;padding:6px!important;font-size:1em!important;overflow:hidden;zoom:1;cursor:move}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 button{float:right}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 strong{font-weight:400;line-height:24px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 select{font-family:sans-serif}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox h3 .handlediv{background-position:6px 5px!important;display:none;height:24px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:hover h3 .handlediv{display:block}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table{width:100%;position:relative;background:#fff;padding:3px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td{text-align:left;padding:6px;vertical-align:top;border:0;line-height:26px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td label{text-align:left;display:block;line-height:21px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input{float:left;min-width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td textarea{width:100%;margin:0;display:block;font-size:14px;padding:4px;color:#555}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td textarea{height:7.5em}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td select{width:100%}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.short{width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.checkbox{width:auto;min-width:inherit;vertical-align:middle;display:inline;float:none}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.date-picker-field{width:50%;min-width:inherit;float:none;display:inline}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.hour,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td input.minute{width:2em;min-width:inherit;float:none;display:inline}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table td.attribute_name{width:200px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .minus,#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .plus{margin-top:6px}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .fl{float:left}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox table .fr{float:right}#download-monitor-file .dlm-metaboxes-wrapper .dlm-metabox:first-child h3{background:#EAF2FA;background-image:linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-o-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-moz-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-webkit-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-ms-linear-gradient(bottom,#dae6f2 0,#eaf2fa 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#dae6f2),color-stop(1,#eaf2fa));border-color:#d3deea;color:#21759B}#download-monitor-file .dlm-metaboxes-wrapper .plus:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f132";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .minus:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f460";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .dlm_upload_file:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f317";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-file .dlm-metaboxes-wrapper .dlm_browse_for_file:before{font-family:dashicons!important;speak:none;font-weight:400;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0 4px 0 0;content:"\f322";top:1px;left:-1px;font-size:1em;line-height:inherit;position:relative;vertical-align:top}#download-monitor-options .inside{padding:0;margin:0}#download-monitor-options .form-field-checkbox label{display:inline;padding:0 0 4px}#download-monitor-options .form-field-checkbox input{display:inline-block;width:auto;vertical-align:middle}#download-monitor-options .form-field-checkbox .description{padding:4px 0 0;display:block}#download-monitor-options .access_permissions{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#download-monitor-options .access_permissions h4{margin:0 0 .5em}#download-monitor-options .access_permissions ul{background:#fff;border:1px solid #dfdfdf;height:110px;overflow:auto;padding:.5em .9em;margin:0}#download-monitor-options p{margin:0!important;border-top:1px solid #fff;border-bottom:1px solid #DFDFDF;padding:7px 12px!important;overflow:hidden;zoom:1}#insert-download{padding:20px}#insert-download .error,#insert-download .updated{margin-left:0;margin-right:0}#insert-download h2{margin-top:0}#insert-download label{margin:0 0 .25em;display:block;font-size:1.1em}#insert-download span.description{display:block}#insert-download input.input{margin:0 0 .25em;display:block;width:100%;font-size:1.1em}#insert-download .add_link{float:right}#insert-download ul.page-numbers{overflow:hidden;zoom:1;margin:0 auto;padding:0;text-align:center}#insert-download ul.page-numbers li{display:inline-block;margin:0;list-style:none outside;line-height:1em}#insert-download ul.page-numbers li a,#insert-download ul.page-numbers li span{text-decoration:none;border:1px solid #ddd;-webkit-border-radius:4px;border-radius:4px;padding:8px;display:block}#insert-download ul.page-numbers li span{border-color:#eee}#insert-download legend{font-weight:700;display:block;margin:0 0 1em}#insert-download fieldset label{display:block;margin:0 0 .5em}.dlm_addons_wrap .items{overflow:hidden}.dlm_addons_wrap .items li{display:inline-block;margin:0 10px 10px 0!important;padding:0;vertical-align:top;width:250px;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(0,0,0,.1);overflow:hidden;position:relative}.dlm_addons_wrap .items li a{color:inherit;text-decoration:none}.dlm_addons_wrap .items li img{max-width:100%;height:auto;display:block;margin:0;background:#fff}.dlm_addons_wrap .items li h2{margin:0!important;padding:10px 20px!important;line-height:1;background:rgba(255,255,255,.8);color:#000;position:absolute;max-width:280px;top:20px;left:0;font-size:18px;text-shadow:none}.dlm_addons_wrap .items li .third_party{display:none}.dlm_addons_wrap .items li p{padding:20px!important;margin:0!important;border-top:1px solid #f1f1f1}.dlm_addons_wrap .items li .cost{display:none}
|
assets/css/dashboard.css
CHANGED
@@ -1,49 +1 @@
|
|
1 |
-
|
2 |
-
table.download_chart {
|
3 |
-
width: 100%;
|
4 |
-
}
|
5 |
-
table.download_chart thead {
|
6 |
-
display: none;
|
7 |
-
}
|
8 |
-
table.download_chart td,
|
9 |
-
table.download_chart th {
|
10 |
-
padding: 5px;
|
11 |
-
vertical-align: middle;
|
12 |
-
line-height: 1.5em;
|
13 |
-
}
|
14 |
-
table.download_chart th {
|
15 |
-
text-align: left;
|
16 |
-
font-weight: normal;
|
17 |
-
padding-left: 0;
|
18 |
-
}
|
19 |
-
table.download_chart td:last-child {
|
20 |
-
padding-right: 0;
|
21 |
-
}
|
22 |
-
table.download_chart tr:first-child td,
|
23 |
-
table.download_chart tr:first-child th {
|
24 |
-
padding-top: 0;
|
25 |
-
}
|
26 |
-
table.download_chart tr:last-child td,
|
27 |
-
table.download_chart tr:last-child th {
|
28 |
-
border-bottom: 0;
|
29 |
-
padding-bottom: 0;
|
30 |
-
}
|
31 |
-
table.download_chart span.bar {
|
32 |
-
padding: 0 0 0 1px;
|
33 |
-
height: 1.5em;
|
34 |
-
float: left;
|
35 |
-
margin-right: 5px;
|
36 |
-
-moz-box-sizing: border-box;
|
37 |
-
-webkit-box-sizing: border-box;
|
38 |
-
box-sizing: border-box;
|
39 |
-
-moz-border-radius: 2px;
|
40 |
-
-webkit-border-radius: 2px;
|
41 |
-
border-radius: 2px;
|
42 |
-
bprder: 1px solid ##6e6e6e;
|
43 |
-
background: #6e6e6e;
|
44 |
-
background-image: -webkit-gradient(linear, left bottom, left top, from(#747474), to(#6e6e6e));
|
45 |
-
background-image: -webkit-linear-gradient(bottom, #747474, #6e6e6e);
|
46 |
-
background-image: -moz-linear-gradient(bottom, #747474, #6e6e6e);
|
47 |
-
background-image: -o-linear-gradient(bottom, #747474, #6e6e6e);
|
48 |
-
background-image: linear-gradient(to top, #747474, #6e6e6e);
|
49 |
-
}
|
1 |
+
table.download_chart{width:100%}table.download_chart thead{display:none}table.download_chart td,table.download_chart th{padding:5px;vertical-align:middle;line-height:1.5em}table.download_chart th{text-align:left;font-weight:400;padding-left:0}table.download_chart td:last-child{padding-right:0}table.download_chart tr:first-child td,table.download_chart tr:first-child th{padding-top:0}table.download_chart tr:last-child td,table.download_chart tr:last-child th{border-bottom:0;padding-bottom:0}table.download_chart span.bar{padding:0 0 0 1px;height:1.5em;float:left;margin-right:5px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;bprder:1px solid ##6e6e6e;background:#6e6e6e;background-image:-webkit-gradient(linear,left bottom,left top,from(#747474),to(#6e6e6e));background-image:-webkit-linear-gradient(bottom,#747474,#6e6e6e);background-image:-moz-linear-gradient(bottom,#747474,#6e6e6e);background-image:-o-linear-gradient(bottom,#747474,#6e6e6e);background-image:linear-gradient(to top,#747474,#6e6e6e)}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/frontend.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.download-box{width:250px;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-align:center;position:relative;margin:1em auto;box-shadow:0 2px 4px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.4)}.download-box img.wp-post-image{margin:0;padding:0;display:block;width:100%;-moz-border-radius:0;-webkit-border-radius:0;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-radius:0;border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:inset 0 1px 0 rgba(255,255,255,.4)}.download-box .download-box-content{padding:0 1em 1em}.download-box .download-count{-moz-border-radius:1em;-webkit-border-radius:1em;border-radius:1em;color:#777;text-shadow:0 1px 0 rgba(255,255,255,.5);background:#ddd;box-shadow:0 2px 4px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.4);position:absolute;top:0;right:0;padding:.5em;height:1em;width:auto;min-width:1em;font-size:1em;text-align:center;vertical-align:middle;line-height:1em;border:1px solid #bbb;margin:-.5em -.5em 0 0}.download-button{text-align:center;text-decoration:none;padding:.75em 1em;color:#fff;display:block;font-size:1.2em;line-height:1.5em;background-color:#09c;background-image:-webkit-linear-gradient(#009fd4,#09c,#0086b2);background-image:-moz-linear-gradient(#009fd4,#09c,#0086b2);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:0 -1px 0 rgba(0,0,0,.5);box-shadow:0 2px 4px rgba(0,0,0,.3),inset 0 1px 0 rgba(255,255,255,.4);border:1px solid #0086b2;cursor:pointer}.download-button:hover{color:#fff;background-color:#09c;background-image:-webkit-linear-gradient(#09c,#0086b2);background-image:-moz-linear-gradient(#09c,#0086b2)}.download-button small{font-size:.8em;opacity:.8;display:block}.filetype-icon{padding-left:19px;background-repeat:no-repeat;background-position:left;background-image:url(../images/filetypes/document.png)}.filetype-pdf{background-image:url(../images/filetypes/document-pdf.png)}.filetype-
|
1 |
+
.download-box{width:250px;border:1px solid #ccc;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-align:center;position:relative;margin:1em auto;box-shadow:0 2px 4px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.4)}.download-box img.wp-post-image{margin:0;padding:0;display:block;width:100%;-moz-border-radius:0;-webkit-border-radius:0;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-radius:0;border-top-left-radius:3px;border-top-right-radius:3px;box-shadow:inset 0 1px 0 rgba(255,255,255,.4)}.download-box .download-box-content{padding:0 1em 1em}.download-box .download-count{-moz-border-radius:1em;-webkit-border-radius:1em;border-radius:1em;color:#777;text-shadow:0 1px 0 rgba(255,255,255,.5);background:#ddd;box-shadow:0 2px 4px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.4);position:absolute;top:0;right:0;padding:.5em;height:1em;width:auto;min-width:1em;font-size:1em;text-align:center;vertical-align:middle;line-height:1em;border:1px solid #bbb;margin:-.5em -.5em 0 0}.download-button{text-align:center;text-decoration:none;padding:.75em 1em;color:#fff;display:block;font-size:1.2em;line-height:1.5em;background-color:#09c;background-image:-webkit-linear-gradient(#009fd4,#09c,#0086b2);background-image:-moz-linear-gradient(#009fd4,#09c,#0086b2);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:0 -1px 0 rgba(0,0,0,.5);box-shadow:0 2px 4px rgba(0,0,0,.3),inset 0 1px 0 rgba(255,255,255,.4);border:1px solid #0086b2;cursor:pointer}.download-button:hover{color:#fff;background-color:#09c;background-image:-webkit-linear-gradient(#09c,#0086b2);background-image:-moz-linear-gradient(#09c,#0086b2)}.download-button small{font-size:.8em;opacity:.8;display:block}.filetype-icon{padding-left:19px;background-repeat:no-repeat;background-position:left;background-image:url(../images/filetypes/document.png)}.filetype-pdf{background-image:url(../images/filetypes/document-pdf.png)}.filetype-aif,.filetype-aifc,.filetype-aiff,.filetype-au,.filetype-kar,.filetype-m3u,.filetype-m4r,.filetype-mid,.filetype-midi,.filetype-mp2,.filetype-mp3,.filetype-mpga,.filetype-ra,.filetype-ram,.filetype-rm,.filetype-rpm,.filetype-snd,.filetype-wav,.filetype-wave{background-image:url(../images/filetypes/document-music.png)}.filetype-avi,.filetype-divx,.filetype-mov,.filetype-movie,.filetype-mp4,.filetype-mpe,.filetype-mpeg,.filetype-mpg,.filetype-mxu,.filetype-qt{background-image:url(../images/filetypes/document-film.png)}.filetype-7z,.filetype-gz,.filetype-rar,.filetype-sit,.filetype-tar,.filetype-zip{background-image:url(../images/filetypes/document-zipper.png)}.filetype-csv,.filetype-tsv,.filetype-xls{background-image:url(../images/filetypes/document-excel.png)}.filetype-doc,.filetype-docx{background-image:url(../images/filetypes/document-word-text.png)}.filetype-ai{background-image:url(../images/filetypes/document-illustrator.png)}.filetype-swf{background-image:url(../images/filetypes/document-flash-movie.png)}.filetype-bmp,.filetype-djv,.filetype-eps,.filetype-gif,.filetype-ief,.filetype-jpe,.filetype-jpeg,.filetype-jpg,.filetype-pbm,.filetype-pgm,.filetype-png,.filetype-pnm,.filetype-ppm,.filetype-ps,.filetype-ras,.filetype-rgb,.filetype-tif,.filetype-tiff,.filetype-wbmp,.filetype-xbm,.filetype-xpm,.filetype-xwd{background-image:url(../images/filetypes/document-image.png)}.filetype-psd{background-image:url(../images/filetypes/document-photoshop.png)}.filetype-ppt{background-image:url(../images/filetypes/document-powerpoint.png)}.filetype-as,.filetype-css,.filetype-htaccess,.filetype-htm,.filetype-html,.filetype-js,.filetype-php,.filetype-sql,.filetype-xml,.filetype-xsl{background-image:url(../images/filetypes/document-code.png)}.filetype-rtf,.filetype-rtx{background-image:url(../images/filetypes/document-text-image.png)}.filetype-txt{background-image:url(../images/filetypes/document-text.png)}#content nav.download-monitor-pagination,nav.download-monitor-pagination{text-align:center}#content nav.download-monitor-pagination ul,nav.download-monitor-pagination ul{display:inline-block;white-space:nowrap;padding:0;clear:both;border:1px solid #eee;border-right:0;margin:1px}#content nav.download-monitor-pagination ul li,nav.download-monitor-pagination ul li{border-right:1px solid #eee;padding:0;margin:0;float:left;display:inline;overflow:hidden}#content nav.download-monitor-pagination ul li a,#content nav.download-monitor-pagination ul li span,nav.download-monitor-pagination ul li a,nav.download-monitor-pagination ul li span{margin:0;text-decoration:none;line-height:1em;font-size:1em;font-weight:400;padding:.5em;min-width:1em;display:block}#content nav.download-monitor-pagination ul li a:focus,#content nav.download-monitor-pagination ul li a:hover,#content nav.download-monitor-pagination ul li span.current,nav.download-monitor-pagination ul li a:focus,nav.download-monitor-pagination ul li a:hover,nav.download-monitor-pagination ul li span.current{background:#eee;color:#888}
|
assets/css/frontend.less
CHANGED
@@ -108,7 +108,7 @@
|
|
108 |
.filetype-xls, .filetype-tsv, .filetype-csv {
|
109 |
background-image: url(../images/filetypes/document-excel.png);
|
110 |
}
|
111 |
-
.filetype-doc {
|
112 |
background-image: url(../images/filetypes/document-word-text.png);
|
113 |
}
|
114 |
.filetype-ai {
|
108 |
.filetype-xls, .filetype-tsv, .filetype-csv {
|
109 |
background-image: url(../images/filetypes/document-excel.png);
|
110 |
}
|
111 |
+
.filetype-doc,.filetype-docx {
|
112 |
background-image: url(../images/filetypes/document-word-text.png);
|
113 |
}
|
114 |
.filetype-ai {
|
assets/js/blockui.min.js
CHANGED
@@ -10,4 +10,5 @@
|
|
10 |
* http://www.gnu.org/licenses/gpl.html
|
11 |
*
|
12 |
* Thanks to Amir-Hossein Sobhi for some excellent contributions!
|
13 |
-
*/
|
|
10 |
* http://www.gnu.org/licenses/gpl.html
|
11 |
*
|
12 |
* Thanks to Amir-Hossein Sobhi for some excellent contributions!
|
13 |
+
*/
|
14 |
+
!function(){"use strict";function a(a){function b(b,d){var f,p,q=b==window,r=d&&void 0!==d.message?d.message:void 0;if(d=a.extend({},a.blockUI.defaults,d||{}),!d.ignoreIfBlocked||!a(b).data("blockUI.isBlocked")){if(d.overlayCSS=a.extend({},a.blockUI.defaults.overlayCSS,d.overlayCSS||{}),f=a.extend({},a.blockUI.defaults.css,d.css||{}),d.onOverlayClick&&(d.overlayCSS.cursor="pointer"),p=a.extend({},a.blockUI.defaults.themedCSS,d.themedCSS||{}),r=void 0===r?d.message:r,q&&n&&c(window,{fadeOut:0}),r&&"string"!=typeof r&&(r.parentNode||r.jquery)){var s=r.jquery?r[0]:r,t={};a(b).data("blockUI.history",t),t.el=s,t.parent=s.parentNode,t.display=s.style.display,t.position=s.style.position,t.parent&&t.parent.removeChild(s)}a(b).data("blockUI.onUnblock",d.onUnblock);var u,v,w,x,y=d.baseZ;u=a(k||d.forceIframe?'<iframe class="blockUI" style="z-index:'+y++ +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+d.iframeSrc+'"></iframe>':'<div class="blockUI" style="display:none"></div>'),v=a(d.theme?'<div class="blockUI blockOverlay ui-widget-overlay" style="z-index:'+y++ +';display:none"></div>':'<div class="blockUI blockOverlay" style="z-index:'+y++ +';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>'),d.theme&&q?(x='<div class="blockUI '+d.blockMsgClass+' blockPage ui-dialog ui-widget ui-corner-all" style="z-index:'+(y+10)+';display:none;position:fixed">',d.title&&(x+='<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(d.title||" ")+"</div>"),x+='<div class="ui-widget-content ui-dialog-content"></div>',x+="</div>"):d.theme?(x='<div class="blockUI '+d.blockMsgClass+' blockElement ui-dialog ui-widget ui-corner-all" style="z-index:'+(y+10)+';display:none;position:absolute">',d.title&&(x+='<div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">'+(d.title||" ")+"</div>"),x+='<div class="ui-widget-content ui-dialog-content"></div>',x+="</div>"):x=q?'<div class="blockUI '+d.blockMsgClass+' blockPage" style="z-index:'+(y+10)+';display:none;position:fixed"></div>':'<div class="blockUI '+d.blockMsgClass+' blockElement" style="z-index:'+(y+10)+';display:none;position:absolute"></div>',w=a(x),r&&(d.theme?(w.css(p),w.addClass("ui-widget-content")):w.css(f)),d.theme||v.css(d.overlayCSS),v.css("position",q?"fixed":"absolute"),(k||d.forceIframe)&&u.css("opacity",0);var z=[u,v,w],A=a(q?"body":b);a.each(z,function(){this.appendTo(A)}),d.theme&&d.draggable&&a.fn.draggable&&w.draggable({handle:".ui-dialog-titlebar",cancel:"li"});var B=m&&(!a.support.boxModel||a("object,embed",q?null:b).length>0);if(l||B){if(q&&d.allowBodyStretch&&a.support.boxModel&&a("html,body").css("height","100%"),(l||!a.support.boxModel)&&!q)var C=i(b,"borderTopWidth"),D=i(b,"borderLeftWidth"),E=C?"(0 - "+C+")":0,F=D?"(0 - "+D+")":0;a.each(z,function(a,b){var c=b[0].style;if(c.position="absolute",2>a)q?c.setExpression("height","Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.support.boxModel?0:"+d.quirksmodeOffsetHack+') + "px"'):c.setExpression("height",'this.parentNode.offsetHeight + "px"'),q?c.setExpression("width",'jQuery.support.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"'):c.setExpression("width",'this.parentNode.offsetWidth + "px"'),F&&c.setExpression("left",F),E&&c.setExpression("top",E);else if(d.centerY)q&&c.setExpression("top",'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'),c.marginTop=0;else if(!d.centerY&&q){var e=d.css&&d.css.top?parseInt(d.css.top,10):0,f="((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "+e+') + "px"';c.setExpression("top",f)}})}if(r&&(d.theme?w.find(".ui-widget-content").append(r):w.append(r),(r.jquery||r.nodeType)&&a(r).show()),(k||d.forceIframe)&&d.showOverlay&&u.show(),d.fadeIn){var G=d.onBlock?d.onBlock:j,H=d.showOverlay&&!r?G:j,I=r?G:j;d.showOverlay&&v._fadeIn(d.fadeIn,H),r&&w._fadeIn(d.fadeIn,I)}else d.showOverlay&&v.show(),r&&w.show(),d.onBlock&&d.onBlock();if(e(1,b,d),q?(n=w[0],o=a(d.focusableElements,n),d.focusInput&&setTimeout(g,20)):h(w[0],d.centerX,d.centerY),d.timeout){var J=setTimeout(function(){q?a.unblockUI(d):a(b).unblock(d)},d.timeout);a(b).data("blockUI.timeout",J)}}}function c(b,c){var f,g=b==window,h=a(b),i=h.data("blockUI.history"),j=h.data("blockUI.timeout");j&&(clearTimeout(j),h.removeData("blockUI.timeout")),c=a.extend({},a.blockUI.defaults,c||{}),e(0,b,c),null===c.onUnblock&&(c.onUnblock=h.data("blockUI.onUnblock"),h.removeData("blockUI.onUnblock"));var k;k=g?a("body").children().filter(".blockUI").add("body > .blockUI"):h.find(">.blockUI"),c.cursorReset&&(k.length>1&&(k[1].style.cursor=c.cursorReset),k.length>2&&(k[2].style.cursor=c.cursorReset)),g&&(n=o=null),c.fadeOut?(f=k.length,k.fadeOut(c.fadeOut,function(){0===--f&&d(k,i,c,b)})):d(k,i,c,b)}function d(b,c,d,e){var f=a(e);b.each(function(){this.parentNode&&this.parentNode.removeChild(this)}),c&&c.el&&(c.el.style.display=c.display,c.el.style.position=c.position,c.parent&&c.parent.appendChild(c.el),f.removeData("blockUI.history")),f.data("blockUI.static")&&f.css("position","static"),"function"==typeof d.onUnblock&&d.onUnblock(e,d);var g=a(document.body),h=g.width(),i=g[0].style.width;g.width(h-1).width(h),g[0].style.width=i}function e(b,c,d){var e=c==window,g=a(c);if((b||(!e||n)&&(e||g.data("blockUI.isBlocked")))&&(g.data("blockUI.isBlocked",b),e&&d.bindEvents&&(!b||d.showOverlay))){var h="mousedown mouseup keydown keypress keyup touchstart touchend touchmove";b?a(document).bind(h,d,f):a(document).unbind(h,f)}}function f(b){if(b.keyCode&&9==b.keyCode&&n&&b.data.constrainTabKey){var c=o,d=!b.shiftKey&&b.target===c[c.length-1],e=b.shiftKey&&b.target===c[0];if(d||e)return setTimeout(function(){g(e)},10),!1}var f=b.data,h=a(b.target);return h.hasClass("blockOverlay")&&f.onOverlayClick&&f.onOverlayClick(),h.parents("div."+f.blockMsgClass).length>0?!0:0===h.parents().children().filter("div.blockUI").length}function g(a){if(o){var b=o[a===!0?o.length-1:0];b&&b.focus()}}function h(a,b,c){var d=a.parentNode,e=a.style,f=(d.offsetWidth-a.offsetWidth)/2-i(d,"borderLeftWidth"),g=(d.offsetHeight-a.offsetHeight)/2-i(d,"borderTopWidth");b&&(e.left=f>0?f+"px":"0"),c&&(e.top=g>0?g+"px":"0")}function i(b,c){return parseInt(a.css(b,c),10)||0}a.fn._fadeIn=a.fn.fadeIn;var j=a.noop||function(){},k=/MSIE/.test(navigator.userAgent),l=/MSIE 6.0/.test(navigator.userAgent)&&!/MSIE 8.0/.test(navigator.userAgent),m=(document.documentMode||0,a.isFunction(document.createElement("div").style.setExpression));a.blockUI=function(a){b(window,a)},a.unblockUI=function(a){c(window,a)},a.growlUI=function(b,c,d,e){var f=a('<div class="growlUI"></div>');b&&f.append("<h1>"+b+"</h1>"),c&&f.append("<h2>"+c+"</h2>"),void 0===d&&(d=3e3);var g=function(b){b=b||{},a.blockUI({message:f,fadeIn:"undefined"!=typeof b.fadeIn?b.fadeIn:700,fadeOut:"undefined"!=typeof b.fadeOut?b.fadeOut:1e3,timeout:"undefined"!=typeof b.timeout?b.timeout:d,centerY:!1,showOverlay:!1,onUnblock:e,css:a.blockUI.defaults.growlCSS})};g();f.css("opacity");f.mouseover(function(){g({fadeIn:0,timeout:3e4});var b=a(".blockMsg");b.stop(),b.fadeTo(300,1)}).mouseout(function(){a(".blockMsg").fadeOut(1e3)})},a.fn.block=function(c){if(this[0]===window)return a.blockUI(c),this;var d=a.extend({},a.blockUI.defaults,c||{});return this.each(function(){var b=a(this);d.ignoreIfBlocked&&b.data("blockUI.isBlocked")||b.unblock({fadeOut:0})}),this.each(function(){"static"==a.css(this,"position")&&(this.style.position="relative",a(this).data("blockUI.static",!0)),this.style.zoom=1,b(this,c)})},a.fn.unblock=function(b){return this[0]===window?(a.unblockUI(b),this):this.each(function(){c(this,b)})},a.blockUI.version=2.6,a.blockUI.defaults={message:"<h1>Please wait...</h1>",title:null,draggable:!0,theme:!1,css:{padding:0,margin:0,width:"30%",top:"40%",left:"35%",textAlign:"center",color:"#000",border:"3px solid #aaa",backgroundColor:"#fff",cursor:"wait"},themedCSS:{width:"30%",top:"40%",left:"35%"},overlayCSS:{backgroundColor:"#000",opacity:.6,cursor:"wait"},cursorReset:"default",growlCSS:{width:"350px",top:"10px",left:"",right:"10px",border:"none",padding:"5px",opacity:.6,cursor:"default",color:"#fff",backgroundColor:"#000","-webkit-border-radius":"10px","-moz-border-radius":"10px","border-radius":"10px"},iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank",forceIframe:!1,baseZ:1e3,centerX:!0,centerY:!0,allowBodyStretch:!0,bindEvents:!0,constrainTabKey:!0,fadeIn:200,fadeOut:400,timeout:0,showOverlay:!0,focusInput:!0,focusableElements:":input:enabled:visible",onBlock:null,onUnblock:null,onOverlayClick:null,quirksmodeOffsetHack:4,blockMsgClass:"blockMsg",ignoreIfBlocked:!1};var n=null,o=[]}"function"==typeof define&&define.amd&&define.amd.jQuery?define(["jquery"],a):a(jQuery)}();
|
download-monitor.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Plugin Name: Download Monitor
|
4 |
Plugin URI: http://mikejolley.com/projects/download-monitor/
|
5 |
Description: A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
|
6 |
-
Version: 1.
|
7 |
Author: Mike Jolley
|
8 |
Author URI: http://mikejolley.com
|
9 |
Requires at least: 3.8
|
10 |
-
Tested up to: 3.
|
11 |
|
12 |
-
Copyright: ©
|
13 |
License: GNU General Public License v3.0
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
*/
|
@@ -37,20 +37,23 @@ class WP_DLM {
|
|
37 |
global $wpdb;
|
38 |
|
39 |
// Define constants
|
40 |
-
define( 'DLM_VERSION', '1.
|
41 |
|
42 |
// Table for logs
|
43 |
$wpdb->download_log = $wpdb->prefix . 'download_log';
|
44 |
|
45 |
// Include required files
|
46 |
-
if ( is_admin() )
|
47 |
include_once( 'includes/admin/class-dlm-admin.php' );
|
|
|
48 |
|
49 |
-
if ( defined('DOING_AJAX') )
|
50 |
include_once( 'includes/class-dlm-ajax-handler.php' );
|
|
|
51 |
|
52 |
-
if ( get_option( 'dlm_enable_logging' ) == 1 )
|
53 |
include_once( 'includes/class-dlm-logging.php' );
|
|
|
54 |
|
55 |
include_once( 'includes/download-functions.php' );
|
56 |
include_once( 'includes/class-dlm-download.php' );
|
@@ -86,9 +89,9 @@ class WP_DLM {
|
|
86 |
*/
|
87 |
public function plugin_links( $links ) {
|
88 |
$plugin_links = array(
|
89 |
-
'<a href="' . admin_url( 'edit.php?post_type=dlm_download&page=download-monitor-settings' ) . '">' . __( 'Settings', '
|
90 |
-
'<a href="http://mikejolley.com/projects/download-monitor/add-ons/">' . __( 'Add-ons', '
|
91 |
-
'<a href="https://github.com/mikejolley/download-monitor/wiki">' . __( 'Docs', '
|
92 |
);
|
93 |
return array_merge( $plugin_links, $links );
|
94 |
}
|
@@ -110,8 +113,8 @@ class WP_DLM {
|
|
110 |
* @return void
|
111 |
*/
|
112 |
public function load_plugin_textdomain() {
|
113 |
-
load_textdomain( '
|
114 |
-
load_plugin_textdomain( '
|
115 |
}
|
116 |
|
117 |
/**
|
@@ -235,18 +238,18 @@ class WP_DLM {
|
|
235 |
apply_filters( 'dlm_download_category_args', array(
|
236 |
'hierarchical' => true,
|
237 |
'update_count_callback' => '_update_post_term_count',
|
238 |
-
'label' => __( 'Categories', '
|
239 |
'labels' => array(
|
240 |
-
'name' => __( 'Categories', '
|
241 |
-
'singular_name' => __( 'Download Category', '
|
242 |
-
'search_items' => __( 'Search Download Categories', '
|
243 |
-
'all_items' => __( 'All Download Categories', '
|
244 |
-
'parent_item' => __( 'Parent Download Category', '
|
245 |
-
'parent_item_colon' => __( 'Parent Download Category:', '
|
246 |
-
'edit_item' => __( 'Edit Download Category', '
|
247 |
-
'update_item' => __( 'Update Download Category', '
|
248 |
-
'add_new_item' => __( 'Add New Download Category', '
|
249 |
-
'new_item_name' => __( 'New Download Category Name', '
|
250 |
),
|
251 |
'show_ui' => true,
|
252 |
'query_var' => true,
|
@@ -265,18 +268,18 @@ class WP_DLM {
|
|
265 |
array( 'dlm_download' ),
|
266 |
apply_filters( 'dlm_download_tag_args', array(
|
267 |
'hierarchical' => false,
|
268 |
-
'label' => __( 'Tags', '
|
269 |
'labels' => array(
|
270 |
-
'name' => __( 'Tags', '
|
271 |
-
'singular_name' => __( 'Download Tag', '
|
272 |
-
'search_items' => __( 'Search Download Tags', '
|
273 |
-
'all_items' => __( 'All Download Tags', '
|
274 |
-
'parent_item' => __( 'Parent Download Tag', '
|
275 |
-
'parent_item_colon' => __( 'Parent Download Tag:', '
|
276 |
-
'edit_item' => __( 'Edit Download Tag', '
|
277 |
-
'update_item' => __( 'Update Download Tag', '
|
278 |
-
'add_new_item' => __( 'Add New Download Tag', '
|
279 |
-
'new_item_name' => __( 'New Download Tag Name', '
|
280 |
),
|
281 |
'show_ui' => true,
|
282 |
'query_var' => true,
|
@@ -297,22 +300,22 @@ class WP_DLM {
|
|
297 |
register_post_type( "dlm_download",
|
298 |
apply_filters( 'dlm_cpt_dlm_download_args', array(
|
299 |
'labels' => array(
|
300 |
-
'all_items' => __( 'All Downloads', '
|
301 |
-
'name' => __( 'Downloads', '
|
302 |
-
'singular_name' => __( 'Download', '
|
303 |
-
'add_new' => __( 'Add New', '
|
304 |
-
'add_new_item' => __( 'Add Download', '
|
305 |
-
'edit' => __( 'Edit', '
|
306 |
-
'edit_item' => __( 'Edit Download', '
|
307 |
-
'new_item' => __( 'New Download', '
|
308 |
-
'view' => __( 'View Download', '
|
309 |
-
'view_item' => __( 'View Download', '
|
310 |
-
'search_items' => __( 'Search Downloads', '
|
311 |
-
'not_found' => __( 'No Downloads found', '
|
312 |
-
'not_found_in_trash' => __( 'No Downloads found in trash', '
|
313 |
-
'parent' => __( 'Parent Download', '
|
314 |
),
|
315 |
-
'description' => __( 'This is where you can create and manage downloads for your site.', '
|
316 |
'public' => false,
|
317 |
'show_ui' => true,
|
318 |
'capability_type' => 'post',
|
@@ -538,16 +541,20 @@ class WP_DLM {
|
|
538 |
$remote_file = true;
|
539 |
$parsed_file_path = parse_url( $file_path );
|
540 |
|
|
|
|
|
|
|
|
|
541 |
if ( ( ! isset( $parsed_file_path['scheme'] ) || ! in_array( $parsed_file_path['scheme'], array( 'http', 'https', 'ftp' ) ) ) && isset( $parsed_file_path['path'] ) && file_exists( $parsed_file_path['path'] ) ) {
|
542 |
|
543 |
/** This is an absolute path */
|
544 |
$remote_file = false;
|
545 |
|
546 |
-
} elseif( strpos( $file_path,
|
547 |
|
548 |
/** This is a local file given by URL so we need to figure out the path */
|
549 |
$remote_file = false;
|
550 |
-
$file_path = str_replace(
|
551 |
$file_path = realpath( $file_path );
|
552 |
|
553 |
} elseif( is_multisite() && ( strpos( $file_path, network_site_url( '/', 'http' ) ) !== false || strpos( $file_path, network_site_url( '/', 'https' ) ) !== false ) ) {
|
@@ -558,8 +565,7 @@ class WP_DLM {
|
|
558 |
$file_path = str_replace( network_site_url( '/', 'https' ), ABSPATH, $file_path );
|
559 |
$file_path = str_replace( network_site_url( '/', 'http' ), ABSPATH, $file_path );
|
560 |
// Try to replace upload URL
|
561 |
-
$
|
562 |
-
$file_path = str_replace( $upload_dir['baseurl'], $upload_dir['basedir'], $file_path );
|
563 |
$file_path = realpath( $file_path );
|
564 |
|
565 |
} elseif( strpos( $file_path, site_url( '/', 'http' ) ) !== false || strpos( $file_path, site_url( '/', 'https' ) ) !== false ) {
|
@@ -616,21 +622,24 @@ class WP_DLM {
|
|
616 |
* @return array of sizes
|
617 |
*/
|
618 |
public function get_file_hashes( $file_path ) {
|
619 |
-
$md5
|
|
|
|
|
620 |
|
621 |
if ( $file_path ) {
|
622 |
list( $file_path, $remote_file ) = $this->parse_file_path( $file_path );
|
623 |
|
624 |
if ( ! empty( $file_path ) ) {
|
625 |
-
if ( $remote_file
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
|
|
634 |
}
|
635 |
}
|
636 |
}
|
3 |
Plugin Name: Download Monitor
|
4 |
Plugin URI: http://mikejolley.com/projects/download-monitor/
|
5 |
Description: A full solution for managing downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
|
6 |
+
Version: 1.5.0
|
7 |
Author: Mike Jolley
|
8 |
Author URI: http://mikejolley.com
|
9 |
Requires at least: 3.8
|
10 |
+
Tested up to: 3.9
|
11 |
|
12 |
+
Copyright: © 2014 Mike Jolley.
|
13 |
License: GNU General Public License v3.0
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
*/
|
37 |
global $wpdb;
|
38 |
|
39 |
// Define constants
|
40 |
+
define( 'DLM_VERSION', '1.5.0' );
|
41 |
|
42 |
// Table for logs
|
43 |
$wpdb->download_log = $wpdb->prefix . 'download_log';
|
44 |
|
45 |
// Include required files
|
46 |
+
if ( is_admin() ) {
|
47 |
include_once( 'includes/admin/class-dlm-admin.php' );
|
48 |
+
}
|
49 |
|
50 |
+
if ( defined('DOING_AJAX') ) {
|
51 |
include_once( 'includes/class-dlm-ajax-handler.php' );
|
52 |
+
}
|
53 |
|
54 |
+
if ( get_option( 'dlm_enable_logging' ) == 1 ) {
|
55 |
include_once( 'includes/class-dlm-logging.php' );
|
56 |
+
}
|
57 |
|
58 |
include_once( 'includes/download-functions.php' );
|
59 |
include_once( 'includes/class-dlm-download.php' );
|
89 |
*/
|
90 |
public function plugin_links( $links ) {
|
91 |
$plugin_links = array(
|
92 |
+
'<a href="' . admin_url( 'edit.php?post_type=dlm_download&page=download-monitor-settings' ) . '">' . __( 'Settings', 'download-monitor' ) . '</a>',
|
93 |
+
'<a href="http://mikejolley.com/projects/download-monitor/add-ons/">' . __( 'Add-ons', 'download-monitor' ) . '</a>',
|
94 |
+
'<a href="https://github.com/mikejolley/download-monitor/wiki">' . __( 'Docs', 'download-monitor' ) . '</a>',
|
95 |
);
|
96 |
return array_merge( $plugin_links, $links );
|
97 |
}
|
113 |
* @return void
|
114 |
*/
|
115 |
public function load_plugin_textdomain() {
|
116 |
+
load_textdomain( 'download-monitor', WP_LANG_DIR . '/download-monitor/download_monitor-' . get_locale() . '.mo' );
|
117 |
+
load_plugin_textdomain( 'download-monitor', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
|
118 |
}
|
119 |
|
120 |
/**
|
238 |
apply_filters( 'dlm_download_category_args', array(
|
239 |
'hierarchical' => true,
|
240 |
'update_count_callback' => '_update_post_term_count',
|
241 |
+
'label' => __( 'Categories', 'download-monitor'),
|
242 |
'labels' => array(
|
243 |
+
'name' => __( 'Categories', 'download-monitor'),
|
244 |
+
'singular_name' => __( 'Download Category', 'download-monitor'),
|
245 |
+
'search_items' => __( 'Search Download Categories', 'download-monitor'),
|
246 |
+
'all_items' => __( 'All Download Categories', 'download-monitor'),
|
247 |
+
'parent_item' => __( 'Parent Download Category', 'download-monitor'),
|
248 |
+
'parent_item_colon' => __( 'Parent Download Category:', 'download-monitor'),
|
249 |
+
'edit_item' => __( 'Edit Download Category', 'download-monitor'),
|
250 |
+
'update_item' => __( 'Update Download Category', 'download-monitor'),
|
251 |
+
'add_new_item' => __( 'Add New Download Category', 'download-monitor'),
|
252 |
+
'new_item_name' => __( 'New Download Category Name', 'download-monitor')
|
253 |
),
|
254 |
'show_ui' => true,
|
255 |
'query_var' => true,
|
268 |
array( 'dlm_download' ),
|
269 |
apply_filters( 'dlm_download_tag_args', array(
|
270 |
'hierarchical' => false,
|
271 |
+
'label' => __( 'Tags', 'download-monitor'),
|
272 |
'labels' => array(
|
273 |
+
'name' => __( 'Tags', 'download-monitor'),
|
274 |
+
'singular_name' => __( 'Download Tag', 'download-monitor'),
|
275 |
+
'search_items' => __( 'Search Download Tags', 'download-monitor'),
|
276 |
+
'all_items' => __( 'All Download Tags', 'download-monitor'),
|
277 |
+
'parent_item' => __( 'Parent Download Tag', 'download-monitor'),
|
278 |
+
'parent_item_colon' => __( 'Parent Download Tag:', 'download-monitor'),
|
279 |
+
'edit_item' => __( 'Edit Download Tag', 'download-monitor'),
|
280 |
+
'update_item' => __( 'Update Download Tag', 'download-monitor'),
|
281 |
+
'add_new_item' => __( 'Add New Download Tag', 'download-monitor'),
|
282 |
+
'new_item_name' => __( 'New Download Tag Name', 'download-monitor')
|
283 |
),
|
284 |
'show_ui' => true,
|
285 |
'query_var' => true,
|
300 |
register_post_type( "dlm_download",
|
301 |
apply_filters( 'dlm_cpt_dlm_download_args', array(
|
302 |
'labels' => array(
|
303 |
+
'all_items' => __( 'All Downloads', 'download-monitor' ),
|
304 |
+
'name' => __( 'Downloads', 'download-monitor' ),
|
305 |
+
'singular_name' => __( 'Download', 'download-monitor' ),
|
306 |
+
'add_new' => __( 'Add New', 'download-monitor' ),
|
307 |
+
'add_new_item' => __( 'Add Download', 'download-monitor' ),
|
308 |
+
'edit' => __( 'Edit', 'download-monitor' ),
|
309 |
+
'edit_item' => __( 'Edit Download', 'download-monitor' ),
|
310 |
+
'new_item' => __( 'New Download', 'download-monitor' ),
|
311 |
+
'view' => __( 'View Download', 'download-monitor' ),
|
312 |
+
'view_item' => __( 'View Download', 'download-monitor' ),
|
313 |
+
'search_items' => __( 'Search Downloads', 'download-monitor' ),
|
314 |
+
'not_found' => __( 'No Downloads found', 'download-monitor' ),
|
315 |
+
'not_found_in_trash' => __( 'No Downloads found in trash', 'download-monitor' ),
|
316 |
+
'parent' => __( 'Parent Download', 'download-monitor' )
|
317 |
),
|
318 |
+
'description' => __( 'This is where you can create and manage downloads for your site.', 'download-monitor' ),
|
319 |
'public' => false,
|
320 |
'show_ui' => true,
|
321 |
'capability_type' => 'post',
|
541 |
$remote_file = true;
|
542 |
$parsed_file_path = parse_url( $file_path );
|
543 |
|
544 |
+
$wp_uploads = wp_upload_dir();
|
545 |
+
$wp_uploads_dir = $wp_uploads['basedir'];
|
546 |
+
$wp_uploads_url = $wp_uploads['baseurl'];
|
547 |
+
|
548 |
if ( ( ! isset( $parsed_file_path['scheme'] ) || ! in_array( $parsed_file_path['scheme'], array( 'http', 'https', 'ftp' ) ) ) && isset( $parsed_file_path['path'] ) && file_exists( $parsed_file_path['path'] ) ) {
|
549 |
|
550 |
/** This is an absolute path */
|
551 |
$remote_file = false;
|
552 |
|
553 |
+
} elseif( strpos( $file_path, $wp_uploads_url ) !== false ) {
|
554 |
|
555 |
/** This is a local file given by URL so we need to figure out the path */
|
556 |
$remote_file = false;
|
557 |
+
$file_path = str_replace( $wp_uploads_url, $wp_uploads_dir, $file_path );
|
558 |
$file_path = realpath( $file_path );
|
559 |
|
560 |
} elseif( is_multisite() && ( strpos( $file_path, network_site_url( '/', 'http' ) ) !== false || strpos( $file_path, network_site_url( '/', 'https' ) ) !== false ) ) {
|
565 |
$file_path = str_replace( network_site_url( '/', 'https' ), ABSPATH, $file_path );
|
566 |
$file_path = str_replace( network_site_url( '/', 'http' ), ABSPATH, $file_path );
|
567 |
// Try to replace upload URL
|
568 |
+
$file_path = str_replace( $wp_uploads_url, $wp_uploads_dir, $file_path );
|
|
|
569 |
$file_path = realpath( $file_path );
|
570 |
|
571 |
} elseif( strpos( $file_path, site_url( '/', 'http' ) ) !== false || strpos( $file_path, site_url( '/', 'https' ) ) !== false ) {
|
622 |
* @return array of sizes
|
623 |
*/
|
624 |
public function get_file_hashes( $file_path ) {
|
625 |
+
$md5 = false;
|
626 |
+
$sha1 = false;
|
627 |
+
$crc32 = false;
|
628 |
|
629 |
if ( $file_path ) {
|
630 |
list( $file_path, $remote_file ) = $this->parse_file_path( $file_path );
|
631 |
|
632 |
if ( ! empty( $file_path ) ) {
|
633 |
+
if ( ! $remote_file || apply_filters( 'dlm_allow_remote_hash_file', false ) ) {
|
634 |
+
if ( get_option( 'dlm_generate_hash_md5' ) ) {
|
635 |
+
$md5 = hash_file( 'md5', $file_path );
|
636 |
+
}
|
637 |
+
if ( get_option( 'dlm_generate_hash_sha1' ) ) {
|
638 |
+
$sha1 = hash_file( 'sha1', $file_path );
|
639 |
+
}
|
640 |
+
if ( get_option( 'dlm_generate_hash_crc32b' ) ) {
|
641 |
+
$crc32 = hash_file( 'crc32b', $file_path );
|
642 |
+
}
|
643 |
}
|
644 |
}
|
645 |
}
|
includes/admin/class-dlm-addons.php
CHANGED
@@ -47,7 +47,7 @@ class DLM_Addons {
|
|
47 |
?>
|
48 |
<div class="wrap dlm_addons_wrap">
|
49 |
<div class="icon32 icon32-posts-dlm_download" id="icon-edit"><br /></div>
|
50 |
-
<h2><?php _e( 'Download Monitor Add-ons', '
|
51 |
<?php echo $addons; ?>
|
52 |
</div>
|
53 |
<?php
|
47 |
?>
|
48 |
<div class="wrap dlm_addons_wrap">
|
49 |
<div class="icon32 icon32-posts-dlm_download" id="icon-edit"><br /></div>
|
50 |
+
<h2><?php _e( 'Download Monitor Add-ons', 'download-monitor' ); ?></h2>
|
51 |
<?php echo $addons; ?>
|
52 |
</div>
|
53 |
<?php
|
includes/admin/class-dlm-admin-cpt.php
CHANGED
@@ -61,7 +61,7 @@ class DLM_Admin_CPT {
|
|
61 |
if (!$terms) return;
|
62 |
|
63 |
$output = "<select name='dlm_download_category' id='dropdown_dlm_download_category'>";
|
64 |
-
$output .= '<option value="" ' . selected( isset( $_GET['dlm_download_category'] ) ? $_GET['dlm_download_category'] : '', '', false ) . '>'.__( 'Select a category', '
|
65 |
$output .= $this->walk_category_dropdown_tree( $terms, 0, $r );
|
66 |
$output .="</select>";
|
67 |
|
@@ -121,7 +121,7 @@ class DLM_Admin_CPT {
|
|
121 |
*/
|
122 |
public function enter_title_here( $text, $post ) {
|
123 |
if ( $post->post_type == 'dlm_download' )
|
124 |
-
return __( 'Download title', '
|
125 |
return $text;
|
126 |
}
|
127 |
|
@@ -137,17 +137,17 @@ class DLM_Admin_CPT {
|
|
137 |
|
138 |
$messages['dlm_download'] = array(
|
139 |
0 => '', // Unused. Messages start at index 1.
|
140 |
-
1 => __('Download updated.', '
|
141 |
-
2 => __('Custom field updated.', '
|
142 |
-
3 => __('Custom field deleted.', '
|
143 |
-
4 => __('Download updated.', '
|
144 |
-
5 => isset($_GET['revision']) ? sprintf( __('Download restored to revision from %s', '
|
145 |
-
6 => __('Download published.', '
|
146 |
-
7 => __('Download saved.', '
|
147 |
-
8 => __('Download submitted.', '
|
148 |
-
9 => sprintf( __('Download scheduled for: <strong>%1$s</strong>.', '
|
149 |
-
date_i18n( __( 'M j, Y @ G:i', '
|
150 |
-
10 => __('Download draft updated.', '
|
151 |
);
|
152 |
|
153 |
return $messages;
|
@@ -164,18 +164,18 @@ class DLM_Admin_CPT {
|
|
164 |
$columns = array();
|
165 |
|
166 |
$columns["cb"] = "<input type=\"checkbox\" />";
|
167 |
-
$columns["thumb"] = '<span>' . __("Image", '
|
168 |
-
$columns["title"] = __("Title", '
|
169 |
-
$columns["download_id"] = __("ID", '
|
170 |
-
$columns["file"] = __("File", '
|
171 |
-
$columns["version"] = __("Version", '
|
172 |
-
$columns["download_cat"] = __("Categories", '
|
173 |
-
$columns["download_tag"] = __("Tags", '
|
174 |
-
$columns["download_count"] = __( "Download count", '
|
175 |
-
$columns["featured"] = __( "Featured", '
|
176 |
-
$columns["members_only"] = __( "Members only", '
|
177 |
-
$columns["redirect_only"] = __( "Redirect only", '
|
178 |
-
$columns["date"] = __("Date posted", '
|
179 |
|
180 |
return $columns;
|
181 |
}
|
@@ -209,7 +209,7 @@ class DLM_Admin_CPT {
|
|
209 |
case "featured" :
|
210 |
|
211 |
if ( $download->is_featured() )
|
212 |
-
echo '<span class="yes">' . __( 'Yes', '
|
213 |
else
|
214 |
echo '<span class="na">–</span>';
|
215 |
|
@@ -217,7 +217,7 @@ class DLM_Admin_CPT {
|
|
217 |
case "members_only" :
|
218 |
|
219 |
if ( $download->is_members_only() )
|
220 |
-
echo '<span class="yes">' . __( 'Yes', '
|
221 |
else
|
222 |
echo '<span class="na">–</span>';
|
223 |
|
@@ -225,7 +225,7 @@ class DLM_Admin_CPT {
|
|
225 |
case "redirect_only" :
|
226 |
|
227 |
if ( $download->redirect_only() )
|
228 |
-
echo '<span class="yes">' . __( 'Yes', '
|
229 |
else
|
230 |
echo '<span class="na">–</span>';
|
231 |
|
61 |
if (!$terms) return;
|
62 |
|
63 |
$output = "<select name='dlm_download_category' id='dropdown_dlm_download_category'>";
|
64 |
+
$output .= '<option value="" ' . selected( isset( $_GET['dlm_download_category'] ) ? $_GET['dlm_download_category'] : '', '', false ) . '>'.__( 'Select a category', 'download-monitor' ).'</option>';
|
65 |
$output .= $this->walk_category_dropdown_tree( $terms, 0, $r );
|
66 |
$output .="</select>";
|
67 |
|
121 |
*/
|
122 |
public function enter_title_here( $text, $post ) {
|
123 |
if ( $post->post_type == 'dlm_download' )
|
124 |
+
return __( 'Download title', 'download-monitor' );
|
125 |
return $text;
|
126 |
}
|
127 |
|
137 |
|
138 |
$messages['dlm_download'] = array(
|
139 |
0 => '', // Unused. Messages start at index 1.
|
140 |
+
1 => __('Download updated.', 'download-monitor'),
|
141 |
+
2 => __('Custom field updated.', 'download-monitor'),
|
142 |
+
3 => __('Custom field deleted.', 'download-monitor'),
|
143 |
+
4 => __('Download updated.', 'download-monitor'),
|
144 |
+
5 => isset($_GET['revision']) ? sprintf( __('Download restored to revision from %s', 'download-monitor'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
145 |
+
6 => __('Download published.', 'download-monitor'),
|
146 |
+
7 => __('Download saved.', 'download-monitor'),
|
147 |
+
8 => __('Download submitted.', 'download-monitor'),
|
148 |
+
9 => sprintf( __('Download scheduled for: <strong>%1$s</strong>.', 'download-monitor'),
|
149 |
+
date_i18n( __( 'M j, Y @ G:i', 'download-monitor' ), strtotime( $post->post_date ) ) ),
|
150 |
+
10 => __('Download draft updated.', 'download-monitor'),
|
151 |
);
|
152 |
|
153 |
return $messages;
|
164 |
$columns = array();
|
165 |
|
166 |
$columns["cb"] = "<input type=\"checkbox\" />";
|
167 |
+
$columns["thumb"] = '<span>' . __("Image", 'download-monitor') . '</span>';
|
168 |
+
$columns["title"] = __("Title", 'download-monitor');
|
169 |
+
$columns["download_id"] = __("ID", 'download-monitor');
|
170 |
+
$columns["file"] = __("File", 'download-monitor');
|
171 |
+
$columns["version"] = __("Version", 'download-monitor');
|
172 |
+
$columns["download_cat"] = __("Categories", 'download-monitor');
|
173 |
+
$columns["download_tag"] = __("Tags", 'download-monitor');
|
174 |
+
$columns["download_count"] = __( "Download count", 'download-monitor' );
|
175 |
+
$columns["featured"] = __( "Featured", 'download-monitor' );
|
176 |
+
$columns["members_only"] = __( "Members only", 'download-monitor' );
|
177 |
+
$columns["redirect_only"] = __( "Redirect only", 'download-monitor' );
|
178 |
+
$columns["date"] = __("Date posted", 'download-monitor');
|
179 |
|
180 |
return $columns;
|
181 |
}
|
209 |
case "featured" :
|
210 |
|
211 |
if ( $download->is_featured() )
|
212 |
+
echo '<span class="yes">' . __( 'Yes', 'download-monitor' ) . '</span>';
|
213 |
else
|
214 |
echo '<span class="na">–</span>';
|
215 |
|
217 |
case "members_only" :
|
218 |
|
219 |
if ( $download->is_members_only() )
|
220 |
+
echo '<span class="yes">' . __( 'Yes', 'download-monitor' ) . '</span>';
|
221 |
else
|
222 |
echo '<span class="na">–</span>';
|
223 |
|
225 |
case "redirect_only" :
|
226 |
|
227 |
if ( $download->redirect_only() )
|
228 |
+
echo '<span class="yes">' . __( 'Yes', 'download-monitor' ) . '</span>';
|
229 |
else
|
230 |
echo '<span class="na">–</span>';
|
231 |
|
includes/admin/class-dlm-admin-dashboard.php
CHANGED
@@ -18,7 +18,7 @@ class DLM_Admin_Dashboard {
|
|
18 |
if ( ! current_user_can( 'manage_downloads' ) )
|
19 |
return;
|
20 |
|
21 |
-
wp_add_dashboard_widget( 'dlm_popular_downloads', __( 'Popular Downloads', '
|
22 |
}
|
23 |
|
24 |
/**
|
@@ -50,7 +50,7 @@ class DLM_Admin_Dashboard {
|
|
50 |
$download_ids = get_posts( $args );
|
51 |
|
52 |
if ( empty( $download_ids ) ) {
|
53 |
-
echo '<p>' . __( 'There are no stats available yet!', '
|
54 |
return;
|
55 |
}
|
56 |
|
18 |
if ( ! current_user_can( 'manage_downloads' ) )
|
19 |
return;
|
20 |
|
21 |
+
wp_add_dashboard_widget( 'dlm_popular_downloads', __( 'Popular Downloads', 'download-monitor' ), array( $this, 'popular_downloads' ) );
|
22 |
}
|
23 |
|
24 |
/**
|
50 |
$download_ids = get_posts( $args );
|
51 |
|
52 |
if ( empty( $download_ids ) ) {
|
53 |
+
echo '<p>' . __( 'There are no stats available yet!', 'download-monitor' ) . '</p>';
|
54 |
return;
|
55 |
}
|
56 |
|
includes/admin/class-dlm-admin-insert.php
CHANGED
@@ -29,7 +29,7 @@ class DLM_Admin_Insert {
|
|
29 |
if ( $post->post_type == 'dlm_download' )
|
30 |
return;
|
31 |
|
32 |
-
echo '<a href="#" class="button insert-download add_download" data-editor="' . esc_attr( $editor_id ) . '" title="' . esc_attr__( 'Insert Download', '
|
33 |
|
34 |
ob_start();
|
35 |
?>
|
@@ -37,7 +37,7 @@ class DLM_Admin_Insert {
|
|
37 |
// Browse for file
|
38 |
jQuery('body').on('click', 'a.add_download', function(e){
|
39 |
|
40 |
-
tb_show('<?php esc_attr_e( 'Insert Download', '
|
41 |
|
42 |
return false;
|
43 |
});
|
@@ -65,7 +65,7 @@ class DLM_Admin_Insert {
|
|
65 |
wp_enqueue_style( 'colors' );
|
66 |
wp_enqueue_script( 'plupload-all' );
|
67 |
|
68 |
-
echo '<!DOCTYPE html><html lang="en"><head><title>' . __( 'Insert Download', '
|
69 |
|
70 |
do_action( 'admin_print_styles' );
|
71 |
do_action( 'admin_print_scripts' );
|
@@ -75,7 +75,7 @@ class DLM_Admin_Insert {
|
|
75 |
|
76 |
?>
|
77 |
<h2 class="nav-tab-wrapper">
|
78 |
-
<a href="#insert-shortcode" class="nav-tab nav-tab-active"><?php _e( 'Insert Shortcode', '
|
79 |
</h2>
|
80 |
<?php
|
81 |
|
@@ -119,22 +119,27 @@ class DLM_Admin_Insert {
|
|
119 |
$file_id = wp_insert_post( $file );
|
120 |
|
121 |
if ( ! $file_id )
|
122 |
-
throw new Exception( __( 'Error: File was not created.', '
|
123 |
|
124 |
// Meta
|
125 |
update_post_meta( $file_id, '_version', $version );
|
126 |
-
update_post_meta( $file_id, '_files', json_encode( array( $url ) ) );
|
127 |
update_post_meta( $file_id, '_filesize', $download_monitor->get_filesize( $url ) );
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
$hashes = $download_monitor->get_file_hashes( $url );
|
130 |
|
131 |
update_post_meta( $file_id, '_md5', $hashes['md5'] );
|
132 |
update_post_meta( $file_id, '_sha1', $hashes['sha1'] );
|
133 |
update_post_meta( $file_id, '_crc32', $hashes['crc32'] );
|
134 |
|
135 |
-
echo '<div class="updated"><p>' . __( 'Download successfully created.', '
|
136 |
|
137 |
-
} else throw new Exception( __( 'Error: Download was not created.', '
|
138 |
|
139 |
} catch ( Exception $e ) {
|
140 |
echo '<div class="error"><p>' . $e->getMessage() . "</p></div>";
|
@@ -153,7 +158,7 @@ class DLM_Admin_Insert {
|
|
153 |
<form id="insert-shortcode">
|
154 |
|
155 |
<fieldset>
|
156 |
-
<legend><?php _e( 'Choose a download', '
|
157 |
<?php
|
158 |
$limit = 10;
|
159 |
$page = isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1;
|
@@ -188,14 +193,14 @@ class DLM_Admin_Insert {
|
|
188 |
</fieldset>
|
189 |
|
190 |
<p>
|
191 |
-
<label for="template_name"><?php _e( 'Template', '
|
192 |
-
<input type="text" id="template_name" value="" class="input" placeholder="<?php _e( 'Template Name', '
|
193 |
<span class="description">
|
194 |
-
<?php _e( 'Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.', '
|
195 |
</span>
|
196 |
</p>
|
197 |
<p>
|
198 |
-
<input type="button" class="button insert_download button-primary button-large" value="<?php _e( 'Insert Shortcode', '
|
199 |
</p>
|
200 |
|
201 |
</form>
|
@@ -206,29 +211,28 @@ class DLM_Admin_Insert {
|
|
206 |
<div id="plupload-upload-ui" class="hide-if-no-js">
|
207 |
<div id="drag-drop-area" style="height:240px">
|
208 |
<div class="drag-drop-inside">
|
209 |
-
<p class="drag-drop-info"><?php _e( 'Drop file here', '
|
210 |
-
<p><?php
|
211 |
-
<p class="drag-drop-buttons"><input id="plupload-browse-button" type="button" value="<?php esc_attr_e( 'Select File', '
|
212 |
-
<p><?php _e( 'or', 'download_monitor' ); ?></p>
|
213 |
-
<p><a href="#" class="add_manually"><?php _e( 'Enter URL manually', 'download_monitor' ); ?></a></p>
|
214 |
</div>
|
215 |
</div>
|
|
|
216 |
</div>
|
217 |
<div id="quick-add-details" style="display:none">
|
218 |
<p>
|
219 |
-
<label for="download_url"><?php _e( 'Download URL', '
|
220 |
-
<input type="text" name="download_url" id="download_url" value="" class="download_url input" placeholder="<?php _e( 'Required URL', '
|
221 |
</p>
|
222 |
<p>
|
223 |
-
<label for="download_title"><?php _e( 'Download Title', '
|
224 |
-
<input type="text" name="download_title" id="download_title" value="" class="download_title input" placeholder="<?php _e( 'Required title', '
|
225 |
</p>
|
226 |
<p>
|
227 |
-
<label for="download_version"><?php _e( 'Version', '
|
228 |
-
<input type="text" name="download_version" id="download_version" value="" class="input" placeholder="<?php _e( 'Optional version number', '
|
229 |
</p>
|
230 |
<p>
|
231 |
-
<input type="submit" class="button button-primary button-large" value="<?php _e( 'Save Download', '
|
232 |
<?php wp_nonce_field( 'quick-add', 'quick-add-nonce' ) ?>
|
233 |
</p>
|
234 |
</div>
|
@@ -334,7 +338,7 @@ class DLM_Admin_Insert {
|
|
334 |
if ( max > hundredmb && file.size > hundredmb && up.runtime != 'html5' ) {
|
335 |
// file size error?
|
336 |
} else {
|
337 |
-
jQuery('.drag-drop-inside').html('<p><?php _e( 'Please wait...', '
|
338 |
}
|
339 |
});
|
340 |
|
29 |
if ( $post->post_type == 'dlm_download' )
|
30 |
return;
|
31 |
|
32 |
+
echo '<a href="#" class="button insert-download add_download" data-editor="' . esc_attr( $editor_id ) . '" title="' . esc_attr__( 'Insert Download', 'download-monitor' ) . '">' . __( 'Insert Download', 'download-monitor' ) . '</a>';
|
33 |
|
34 |
ob_start();
|
35 |
?>
|
37 |
// Browse for file
|
38 |
jQuery('body').on('click', 'a.add_download', function(e){
|
39 |
|
40 |
+
tb_show('<?php esc_attr_e( 'Insert Download', 'download-monitor' ); ?>', 'media-upload.php?post_id=<?php echo $post->ID; ?>&type=add_download&from=wpdlm01&TB_iframe=true&height=200');
|
41 |
|
42 |
return false;
|
43 |
});
|
65 |
wp_enqueue_style( 'colors' );
|
66 |
wp_enqueue_script( 'plupload-all' );
|
67 |
|
68 |
+
echo '<!DOCTYPE html><html lang="en"><head><title>' . __( 'Insert Download', 'download-monitor' ) . '</title><meta charset="utf-8" />';
|
69 |
|
70 |
do_action( 'admin_print_styles' );
|
71 |
do_action( 'admin_print_scripts' );
|
75 |
|
76 |
?>
|
77 |
<h2 class="nav-tab-wrapper">
|
78 |
+
<a href="#insert-shortcode" class="nav-tab nav-tab-active"><?php _e( 'Insert Shortcode', 'download-monitor' ); ?></a><a href="#quick-add" class="nav-tab"><?php _e( 'Quick-add download', 'download-monitor' ); ?></a>
|
79 |
</h2>
|
80 |
<?php
|
81 |
|
119 |
$file_id = wp_insert_post( $file );
|
120 |
|
121 |
if ( ! $file_id )
|
122 |
+
throw new Exception( __( 'Error: File was not created.', 'download-monitor' ) );
|
123 |
|
124 |
// Meta
|
125 |
update_post_meta( $file_id, '_version', $version );
|
|
|
126 |
update_post_meta( $file_id, '_filesize', $download_monitor->get_filesize( $url ) );
|
127 |
|
128 |
+
if ( version_compare( phpversion(), "5.4.0", ">=" ) ) {
|
129 |
+
update_post_meta( $file_id, '_files', json_encode( array( $url ), JSON_UNESCAPED_UNICODE ) );
|
130 |
+
} else {
|
131 |
+
update_post_meta( $file_id, '_files', json_encode( array( $url ) ) );
|
132 |
+
}
|
133 |
+
|
134 |
$hashes = $download_monitor->get_file_hashes( $url );
|
135 |
|
136 |
update_post_meta( $file_id, '_md5', $hashes['md5'] );
|
137 |
update_post_meta( $file_id, '_sha1', $hashes['sha1'] );
|
138 |
update_post_meta( $file_id, '_crc32', $hashes['crc32'] );
|
139 |
|
140 |
+
echo '<div class="updated"><p>' . __( 'Download successfully created.', 'download-monitor' ) . '</p></div>';
|
141 |
|
142 |
+
} else throw new Exception( __( 'Error: Download was not created.', 'download-monitor' ) );
|
143 |
|
144 |
} catch ( Exception $e ) {
|
145 |
echo '<div class="error"><p>' . $e->getMessage() . "</p></div>";
|
158 |
<form id="insert-shortcode">
|
159 |
|
160 |
<fieldset>
|
161 |
+
<legend><?php _e( 'Choose a download', 'download-monitor' ); ?>:</legend>
|
162 |
<?php
|
163 |
$limit = 10;
|
164 |
$page = isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1;
|
193 |
</fieldset>
|
194 |
|
195 |
<p>
|
196 |
+
<label for="template_name"><?php _e( 'Template', 'download-monitor' ); ?>:</label>
|
197 |
+
<input type="text" id="template_name" value="" class="input" placeholder="<?php _e( 'Template Name', 'download-monitor' ); ?>" />
|
198 |
<span class="description">
|
199 |
+
<?php _e( 'Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead.', 'download-monitor' ); ?>
|
200 |
</span>
|
201 |
</p>
|
202 |
<p>
|
203 |
+
<input type="button" class="button insert_download button-primary button-large" value="<?php _e( 'Insert Shortcode', 'download-monitor' ); ?>" />
|
204 |
</p>
|
205 |
|
206 |
</form>
|
211 |
<div id="plupload-upload-ui" class="hide-if-no-js">
|
212 |
<div id="drag-drop-area" style="height:240px">
|
213 |
<div class="drag-drop-inside">
|
214 |
+
<p class="drag-drop-info"><?php _e( 'Drop file here', 'download-monitor' ); ?></p>
|
215 |
+
<p><?php echo _x( 'or', 'Drop file here *or* select file', 'download-monitor' ); ?></p>
|
216 |
+
<p class="drag-drop-buttons"><input id="plupload-browse-button" type="button" value="<?php esc_attr_e( 'Select File', 'download-monitor' ); ?>" class="button" /></p>
|
|
|
|
|
217 |
</div>
|
218 |
</div>
|
219 |
+
<p><a href="#" class="add_manually"><?php _e( 'Enter URL manually', 'download-monitor' ); ?> →</a></p>
|
220 |
</div>
|
221 |
<div id="quick-add-details" style="display:none">
|
222 |
<p>
|
223 |
+
<label for="download_url"><?php _e( 'Download URL', 'download-monitor' ); ?>:</label>
|
224 |
+
<input type="text" name="download_url" id="download_url" value="" class="download_url input" placeholder="<?php _e( 'Required URL', 'download-monitor' ); ?>" />
|
225 |
</p>
|
226 |
<p>
|
227 |
+
<label for="download_title"><?php _e( 'Download Title', 'download-monitor' ); ?>:</label>
|
228 |
+
<input type="text" name="download_title" id="download_title" value="" class="download_title input" placeholder="<?php _e( 'Required title', 'download-monitor' ); ?>" />
|
229 |
</p>
|
230 |
<p>
|
231 |
+
<label for="download_version"><?php _e( 'Version', 'download-monitor' ); ?>:</label>
|
232 |
+
<input type="text" name="download_version" id="download_version" value="" class="input" placeholder="<?php _e( 'Optional version number', 'download-monitor' ); ?>" />
|
233 |
</p>
|
234 |
<p>
|
235 |
+
<input type="submit" class="button button-primary button-large" value="<?php _e( 'Save Download', 'download-monitor' ); ?>" />
|
236 |
<?php wp_nonce_field( 'quick-add', 'quick-add-nonce' ) ?>
|
237 |
</p>
|
238 |
</div>
|
338 |
if ( max > hundredmb && file.size > hundredmb && up.runtime != 'html5' ) {
|
339 |
// file size error?
|
340 |
} else {
|
341 |
+
jQuery('.drag-drop-inside').html('<p><?php _e( 'Please wait...', 'download-monitor' ); ?></p>');
|
342 |
}
|
343 |
});
|
344 |
|
includes/admin/class-dlm-admin-media-browser.php
CHANGED
@@ -28,7 +28,7 @@ class DLM_Admin_Media_Browser {
|
|
28 |
|
29 |
$files = $download_monitor->list_files( ABSPATH, 1 );
|
30 |
|
31 |
-
echo '<!DOCTYPE html><html lang="en"><head><title>' . __( 'Browse for a file', '
|
32 |
|
33 |
wp_enqueue_style( 'download_monitor_admin_css', $download_monitor->plugin_url() . '/assets/css/admin.css', array( 'dashicons' ) );
|
34 |
do_action( 'admin_print_styles' );
|
@@ -98,7 +98,7 @@ class DLM_Admin_Media_Browser {
|
|
98 |
if ( response ) {
|
99 |
$parent.find('.load_tree').html( response );
|
100 |
} else {
|
101 |
-
$parent.find('.load_tree').html( '<li class="nofiles"><?php _e('No files found', '
|
102 |
}
|
103 |
$parent.find('.load_tree').removeClass('load_tree loading');
|
104 |
|
28 |
|
29 |
$files = $download_monitor->list_files( ABSPATH, 1 );
|
30 |
|
31 |
+
echo '<!DOCTYPE html><html lang="en"><head><title>' . __( 'Browse for a file', 'download-monitor' ) . '</title>';
|
32 |
|
33 |
wp_enqueue_style( 'download_monitor_admin_css', $download_monitor->plugin_url() . '/assets/css/admin.css', array( 'dashicons' ) );
|
34 |
do_action( 'admin_print_styles' );
|
98 |
if ( response ) {
|
99 |
$parent.find('.load_tree').html( response );
|
100 |
} else {
|
101 |
+
$parent.find('.load_tree').html( '<li class="nofiles"><?php _e('No files found', 'download-monitor'); ?></li>' );
|
102 |
}
|
103 |
$parent.find('.load_tree').removeClass('load_tree loading');
|
104 |
|
includes/admin/class-dlm-admin-writepanels.php
CHANGED
@@ -26,13 +26,13 @@ class DLM_Admin_Writepanels {
|
|
26 |
* @return void
|
27 |
*/
|
28 |
public function add_meta_boxes() {
|
29 |
-
add_meta_box( 'download-monitor-options', __( 'Download Options', '
|
30 |
-
add_meta_box( 'download-monitor-file', __( 'Downloadable Files/Versions', '
|
31 |
|
32 |
// Excerpt
|
33 |
if ( function_exists('wp_editor') ) {
|
34 |
remove_meta_box( 'postexcerpt', 'dlm_download', 'normal' );
|
35 |
-
add_meta_box( 'postexcerpt', __('Short Description', '
|
36 |
}
|
37 |
}
|
38 |
|
@@ -54,20 +54,20 @@ class DLM_Admin_Writepanels {
|
|
54 |
|
55 |
echo '<p class="form-field form-field-checkbox">
|
56 |
<input type="checkbox" name="_featured" id="_featured" ' . checked( get_post_meta( $thepostid, '_featured', true ), 'yes', false ) . ' />
|
57 |
-
<label for="_featured">' . __( 'Featured download', '
|
58 |
-
<span class="description">' . __( 'Mark this download as featured. Used by shortcodes and widgets.', '
|
59 |
</p>';
|
60 |
|
61 |
echo '<p class="form-field form-field-checkbox">
|
62 |
<input type="checkbox" name="_members_only" id="_members_only" ' . checked( get_post_meta( $thepostid, '_members_only', true ), 'yes', false ) . ' />
|
63 |
-
<label for="_members_only">' . __( 'Members only', '
|
64 |
-
<span class="description">' . __( 'Only logged in users will be able to access the file via a download link if this is enabled.', '
|
65 |
</p>';
|
66 |
|
67 |
echo '<p class="form-field form-field-checkbox">
|
68 |
<input type="checkbox" name="_redirect_only" id="_redirect_only" ' . checked( get_post_meta( $thepostid, '_redirect_only', true ), 'yes', false ) . ' />
|
69 |
-
<label for="_redirect_only">' . __( 'Redirect to file', '
|
70 |
-
<span class="description">' . __( 'Don\'t force download. If the <code>dlm_upload</code> folder is protected you may need to move your file.', '
|
71 |
</p>';
|
72 |
|
73 |
do_action( 'dlm_options_end', $thepostid );
|
@@ -91,8 +91,8 @@ class DLM_Admin_Writepanels {
|
|
91 |
<?php do_action( 'dlm_download_monitor_files_writepanel_start' ); ?>
|
92 |
|
93 |
<p class="toolbar">
|
94 |
-
<a href="#" class="button plus add_file"><?php _e('Add file', '
|
95 |
-
<a href="#" class="close_all"><?php _e('Close all', '
|
96 |
</p>
|
97 |
|
98 |
<div class="dlm-metaboxes downloadable_files">
|
@@ -111,8 +111,10 @@ class DLM_Admin_Writepanels {
|
|
111 |
|
112 |
if ( is_string( $file_urls ) ) {
|
113 |
$file_urls = array_filter( (array) json_decode( $file_urls ) );
|
114 |
-
}
|
115 |
$file_urls = array_filter( $file_urls );
|
|
|
|
|
116 |
}
|
117 |
|
118 |
include( 'html-downloadable-file-version.php' );
|
@@ -223,7 +225,7 @@ class DLM_Admin_Writepanels {
|
|
223 |
// Remove a file
|
224 |
jQuery('.download_monitor_files').on('click', 'button.remove_file', function(e){
|
225 |
e.preventDefault();
|
226 |
-
var answer = confirm('<?php _e( 'Are you sure you want to delete this file?', '
|
227 |
if ( answer ) {
|
228 |
|
229 |
var el = jQuery(this).closest('.downloadable_file');
|
@@ -258,7 +260,7 @@ class DLM_Admin_Writepanels {
|
|
258 |
|
259 |
window.send_to_editor = window.send_to_browse_file_url;
|
260 |
|
261 |
-
tb_show('<?php esc_attr_e( 'Browse for a file', '
|
262 |
|
263 |
return false;
|
264 |
});
|
@@ -462,7 +464,12 @@ class DLM_Admin_Writepanels {
|
|
462 |
|
463 |
// Update post meta
|
464 |
update_post_meta( $file_id, '_version', $file_version );
|
465 |
-
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
$filesize = -1;
|
468 |
$main_file_path = current( $files );
|
26 |
* @return void
|
27 |
*/
|
28 |
public function add_meta_boxes() {
|
29 |
+
add_meta_box( 'download-monitor-options', __( 'Download Options', 'download-monitor' ), array( $this, 'download_options' ), 'dlm_download', 'side', 'high' );
|
30 |
+
add_meta_box( 'download-monitor-file', __( 'Downloadable Files/Versions', 'download-monitor' ), array( $this, 'download_files' ), 'dlm_download', 'normal', 'high' );
|
31 |
|
32 |
// Excerpt
|
33 |
if ( function_exists('wp_editor') ) {
|
34 |
remove_meta_box( 'postexcerpt', 'dlm_download', 'normal' );
|
35 |
+
add_meta_box( 'postexcerpt', __('Short Description', 'download-monitor'), array( $this, 'short_description' ), 'dlm_download', 'normal', 'high' );
|
36 |
}
|
37 |
}
|
38 |
|
54 |
|
55 |
echo '<p class="form-field form-field-checkbox">
|
56 |
<input type="checkbox" name="_featured" id="_featured" ' . checked( get_post_meta( $thepostid, '_featured', true ), 'yes', false ) . ' />
|
57 |
+
<label for="_featured">' . __( 'Featured download', 'download-monitor' ) . '</label>
|
58 |
+
<span class="description">' . __( 'Mark this download as featured. Used by shortcodes and widgets.', 'download-monitor' ) . '</span>
|
59 |
</p>';
|
60 |
|
61 |
echo '<p class="form-field form-field-checkbox">
|
62 |
<input type="checkbox" name="_members_only" id="_members_only" ' . checked( get_post_meta( $thepostid, '_members_only', true ), 'yes', false ) . ' />
|
63 |
+
<label for="_members_only">' . __( 'Members only', 'download-monitor' ) . '</label>
|
64 |
+
<span class="description">' . __( 'Only logged in users will be able to access the file via a download link if this is enabled.', 'download-monitor' ) . '</span>
|
65 |
</p>';
|
66 |
|
67 |
echo '<p class="form-field form-field-checkbox">
|
68 |
<input type="checkbox" name="_redirect_only" id="_redirect_only" ' . checked( get_post_meta( $thepostid, '_redirect_only', true ), 'yes', false ) . ' />
|
69 |
+
<label for="_redirect_only">' . __( 'Redirect to file', 'download-monitor' ) . '</label>
|
70 |
+
<span class="description">' . __( 'Don\'t force download. If the <code>dlm_upload</code> folder is protected you may need to move your file.', 'download-monitor' ) . '</span>
|
71 |
</p>';
|
72 |
|
73 |
do_action( 'dlm_options_end', $thepostid );
|
91 |
<?php do_action( 'dlm_download_monitor_files_writepanel_start' ); ?>
|
92 |
|
93 |
<p class="toolbar">
|
94 |
+
<a href="#" class="button plus add_file"><?php _e('Add file', 'download-monitor'); ?></a>
|
95 |
+
<a href="#" class="close_all"><?php _e('Close all', 'download-monitor'); ?></a><a href="#" class="expand_all"><?php _e('Expand all', 'download-monitor'); ?></a>
|
96 |
</p>
|
97 |
|
98 |
<div class="dlm-metaboxes downloadable_files">
|
111 |
|
112 |
if ( is_string( $file_urls ) ) {
|
113 |
$file_urls = array_filter( (array) json_decode( $file_urls ) );
|
114 |
+
} elseif ( is_array( $file_urls ) ) {
|
115 |
$file_urls = array_filter( $file_urls );
|
116 |
+
} else {
|
117 |
+
$file_urls = array();
|
118 |
}
|
119 |
|
120 |
include( 'html-downloadable-file-version.php' );
|
225 |
// Remove a file
|
226 |
jQuery('.download_monitor_files').on('click', 'button.remove_file', function(e){
|
227 |
e.preventDefault();
|
228 |
+
var answer = confirm('<?php _e( 'Are you sure you want to delete this file?', 'download-monitor' ); ?>');
|
229 |
if ( answer ) {
|
230 |
|
231 |
var el = jQuery(this).closest('.downloadable_file');
|
260 |
|
261 |
window.send_to_editor = window.send_to_browse_file_url;
|
262 |
|
263 |
+
tb_show('<?php esc_attr_e( 'Browse for a file', 'download-monitor' ); ?>', 'media-upload.php?post_id=<?php echo $post->ID; ?>&type=downloadable_file_browser&from=wpdlm01&TB_iframe=true');
|
264 |
|
265 |
return false;
|
266 |
});
|
464 |
|
465 |
// Update post meta
|
466 |
update_post_meta( $file_id, '_version', $file_version );
|
467 |
+
|
468 |
+
if ( version_compare( phpversion(), "5.4.0", ">=" ) ) {
|
469 |
+
update_post_meta( $file_id, '_files', json_encode( $files, JSON_UNESCAPED_UNICODE ) );
|
470 |
+
} else {
|
471 |
+
update_post_meta( $file_id, '_files', json_encode( $files ) );
|
472 |
+
}
|
473 |
|
474 |
$filesize = -1;
|
475 |
$main_file_path = current( $files );
|
includes/admin/class-dlm-admin.php
CHANGED
@@ -92,95 +92,119 @@ class DLM_Admin {
|
|
92 |
$this->settings = apply_filters( 'download_monitor_settings',
|
93 |
array(
|
94 |
'general' => array(
|
95 |
-
__( 'General', '
|
96 |
array(
|
97 |
array(
|
98 |
'name' => 'dlm_default_template',
|
99 |
'std' => '',
|
100 |
-
'label' => __( 'Default Template', '
|
101 |
-
'desc' => __( 'Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).', '
|
102 |
'type' => 'select',
|
103 |
'options' => array(
|
104 |
-
'' => __( 'Default - Title and count', '
|
105 |
-
'button' => __( 'Button - CSS styled button showing title and count', '
|
106 |
-
'box' => __( 'Box - Box showing thumbnail, title, count, filename and filesize.', '
|
107 |
-
'filename' => __( 'Filename - Filename and download count', '
|
108 |
-
'title' => __( 'Title - Shows download title only', '
|
109 |
-
'version-list' => __( 'Version list - Lists all download versions in an unordered list', '
|
110 |
-
'custom' => __( 'Custom template', '
|
111 |
)
|
112 |
),
|
113 |
array(
|
114 |
'name' => 'dlm_custom_template',
|
115 |
'std' => '',
|
116 |
-
'label' => __( 'Custom Template', '
|
117 |
-
'desc' => __( 'Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead. You can add custom templates inside your theme folder.', '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
),
|
119 |
),
|
120 |
),
|
121 |
'endpoints' => array(
|
122 |
-
__( 'Endpoint', '
|
123 |
array(
|
124 |
array(
|
125 |
'name' => 'dlm_download_endpoint',
|
126 |
'std' => 'download',
|
127 |
-
'placeholder' => __( 'download', '
|
128 |
-
'label' => __( 'Download Endpoint', '
|
129 |
-
'desc' => sprintf( __( 'Define what endpoint should be used for download links. By default this will be <code>%s</code>.', '
|
130 |
),
|
131 |
array(
|
132 |
'name' => 'dlm_download_endpoint_value',
|
133 |
'std' => 'ID',
|
134 |
-
'label' => __( 'Endpoint Value', '
|
135 |
-
'desc' => sprintf( __( 'Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>', '
|
136 |
'type' => 'select',
|
137 |
'options' => array(
|
138 |
-
'ID' => __( 'Download ID', '
|
139 |
-
'slug' => __( 'Download slug', '
|
140 |
)
|
141 |
),
|
142 |
array(
|
143 |
'name' => 'dlm_xsendfile_enabled',
|
144 |
'std' => '',
|
145 |
-
'label' => __( 'X-Accel-Redirect / X-Sendfile', '
|
146 |
-
'cb_label' => __( 'Enable', '
|
147 |
-
'desc' => __( 'If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).', '
|
148 |
'type' => 'checkbox'
|
149 |
),
|
150 |
array(
|
151 |
'name' => 'dlm_hotlink_protection_enabled',
|
152 |
'std' => '',
|
153 |
-
'label' => __( 'Prevent hotlinking', '
|
154 |
-
'cb_label' => __( 'Enable', '
|
155 |
-
'desc' => __( 'If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.', '
|
156 |
'type' => 'checkbox'
|
157 |
)
|
158 |
)
|
159 |
),
|
160 |
'logging' => array(
|
161 |
-
__( 'Logging', '
|
162 |
array(
|
163 |
array(
|
164 |
'name' => 'dlm_enable_logging',
|
165 |
-
'cb_label' => __( 'Enable', '
|
166 |
'std' => '1',
|
167 |
-
'label' => __( 'Download Log', '
|
168 |
-
'desc' => __( 'Log download attempts, IP addresses and more.', '
|
169 |
'type' => 'checkbox'
|
170 |
),
|
171 |
array(
|
172 |
'name' => 'dlm_ip_blacklist',
|
173 |
'std' => '192.168.0.*',
|
174 |
-
'label' => __( 'Blacklist IPs', '
|
175 |
-
'desc' => __( 'List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a wildcard.', '
|
176 |
'placeholder' => '',
|
177 |
'type' => 'textarea'
|
178 |
),
|
179 |
array(
|
180 |
'name' => 'dlm_user_agent_blacklist',
|
181 |
'std' => 'Googlebot',
|
182 |
-
'label' => __( 'Blacklist user agents', '
|
183 |
-
'desc' => __( 'List browser user agents to blacklist, 1 per line.', '
|
184 |
'placeholder' => '',
|
185 |
'type' => 'textarea'
|
186 |
),
|
@@ -203,7 +227,7 @@ class DLM_Admin {
|
|
203 |
foreach ( $section[1] as $option ) {
|
204 |
if ( isset( $option['std'] ) )
|
205 |
add_option( $option['name'], $option['std'] );
|
206 |
-
register_setting( '
|
207 |
}
|
208 |
}
|
209 |
}
|
@@ -252,12 +276,12 @@ class DLM_Admin {
|
|
252 |
*/
|
253 |
public function admin_menu() {
|
254 |
if ( get_option( 'dlm_enable_logging' ) == 1 )
|
255 |
-
add_submenu_page( 'edit.php?post_type=dlm_download', __( 'Logs', '
|
256 |
|
257 |
-
add_submenu_page( 'edit.php?post_type=dlm_download', __( 'Settings', '
|
258 |
|
259 |
if ( apply_filters( 'dlm_show_addons_page', true ) )
|
260 |
-
add_submenu_page( 'edit.php?post_type=dlm_download', __( 'Download Monitor Add-ons', '
|
261 |
}
|
262 |
|
263 |
/**
|
@@ -282,7 +306,7 @@ class DLM_Admin {
|
|
282 |
<div class="wrap">
|
283 |
<form method="post" action="options.php">
|
284 |
|
285 |
-
<?php settings_fields( '
|
286 |
<?php screen_icon(); ?>
|
287 |
|
288 |
<h2 class="nav-tab-wrapper">
|
@@ -296,7 +320,7 @@ class DLM_Admin {
|
|
296 |
<?php
|
297 |
if ( ! empty( $_GET['settings-updated'] ) ) {
|
298 |
flush_rewrite_rules();
|
299 |
-
echo '<div class="updated fade"><p>' . __( 'Settings successfully saved', '
|
300 |
}
|
301 |
|
302 |
foreach ( $this->settings as $key => $section ) {
|
@@ -363,7 +387,7 @@ class DLM_Admin {
|
|
363 |
}
|
364 |
?>
|
365 |
<p class="submit">
|
366 |
-
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', '
|
367 |
</p>
|
368 |
</form>
|
369 |
</div>
|
@@ -407,7 +431,7 @@ class DLM_Admin {
|
|
407 |
<div class="wrap">
|
408 |
<div id="icon-edit" class="icon32 icon32-posts-dlm_download"><br/></div>
|
409 |
|
410 |
-
<h2><?php _e( 'Download Logs', '
|
411 |
<form id="dlm_logs">
|
412 |
<?php $DLM_Logging_List_Table->display() ?>
|
413 |
</form>
|
@@ -457,16 +481,16 @@ class DLM_Admin {
|
|
457 |
|
458 |
$rows = array();
|
459 |
$row = array();
|
460 |
-
$row[] = __( 'Download ID', '
|
461 |
-
$row[] = __( 'Version ID', '
|
462 |
-
$row[] = __( 'Filename', '
|
463 |
-
$row[] = __( 'User ID', '
|
464 |
-
$row[] = __( 'User Login', '
|
465 |
-
$row[] = __( 'User Email', '
|
466 |
-
$row[] = __( 'User IP', '
|
467 |
-
$row[] = __( 'User Agent', '
|
468 |
-
$row[] = __( 'Date', '
|
469 |
-
$row[] = __( 'Status', '
|
470 |
$rows[] = '"' . implode( '","', $row ) . '"';
|
471 |
|
472 |
if ( ! empty( $items ) ) {
|
92 |
$this->settings = apply_filters( 'download_monitor_settings',
|
93 |
array(
|
94 |
'general' => array(
|
95 |
+
__( 'General', 'download-monitor' ),
|
96 |
array(
|
97 |
array(
|
98 |
'name' => 'dlm_default_template',
|
99 |
'std' => '',
|
100 |
+
'label' => __( 'Default Template', 'download-monitor' ),
|
101 |
+
'desc' => __( 'Choose which template is used for <code>[download]</code> shortcodes by default (this can be overridden by the <code>format</code> argument).', 'download-monitor' ),
|
102 |
'type' => 'select',
|
103 |
'options' => array(
|
104 |
+
'' => __( 'Default - Title and count', 'download-monitor' ),
|
105 |
+
'button' => __( 'Button - CSS styled button showing title and count', 'download-monitor' ),
|
106 |
+
'box' => __( 'Box - Box showing thumbnail, title, count, filename and filesize.', 'download-monitor' ),
|
107 |
+
'filename' => __( 'Filename - Filename and download count', 'download-monitor' ),
|
108 |
+
'title' => __( 'Title - Shows download title only', 'download-monitor' ),
|
109 |
+
'version-list' => __( 'Version list - Lists all download versions in an unordered list', 'download-monitor' ),
|
110 |
+
'custom' => __( 'Custom template', 'download-monitor' )
|
111 |
)
|
112 |
),
|
113 |
array(
|
114 |
'name' => 'dlm_custom_template',
|
115 |
'std' => '',
|
116 |
+
'label' => __( 'Custom Template', 'download-monitor' ),
|
117 |
+
'desc' => __( 'Leaving this blank will use the default <code>content-download.php</code> template file. If you enter, for example, <code>image</code>, the <code>content-download-image.php</code> template will be used instead. You can add custom templates inside your theme folder.', 'download-monitor' )
|
118 |
+
),
|
119 |
+
array(
|
120 |
+
'name' => 'dlm_generate_hash_md5',
|
121 |
+
'std' => '0',
|
122 |
+
'label' => __( 'MD5 hashes', 'download-monitor' ),
|
123 |
+
'cb_label' => __( 'Generate MD5 hash for uploaded files', 'download-monitor' ),
|
124 |
+
'desc' => '',
|
125 |
+
'type' => 'checkbox'
|
126 |
+
),
|
127 |
+
array(
|
128 |
+
'name' => 'dlm_generate_hash_sha1',
|
129 |
+
'std' => '0',
|
130 |
+
'label' => __( 'SHA1 hashes', 'download-monitor' ),
|
131 |
+
'cb_label' => __( 'Generate SHA1 hash for uploaded files', 'download-monitor' ),
|
132 |
+
'desc' => '',
|
133 |
+
'type' => 'checkbox'
|
134 |
+
),
|
135 |
+
array(
|
136 |
+
'name' => 'dlm_generate_hash_crc32b',
|
137 |
+
'std' => '0',
|
138 |
+
'label' => __( 'CRC32B hashes', 'download-monitor' ),
|
139 |
+
'cb_label' => __( 'Generate CRC32B hash for uploaded files', 'download-monitor' ),
|
140 |
+
'desc' => __( 'Hashes can optionally be output via shortcodes, but may cause performance issues with large files.', 'download-monitor' ),
|
141 |
+
'type' => 'checkbox'
|
142 |
),
|
143 |
),
|
144 |
),
|
145 |
'endpoints' => array(
|
146 |
+
__( 'Endpoint', 'download-monitor' ),
|
147 |
array(
|
148 |
array(
|
149 |
'name' => 'dlm_download_endpoint',
|
150 |
'std' => 'download',
|
151 |
+
'placeholder' => __( 'download', 'download-monitor' ),
|
152 |
+
'label' => __( 'Download Endpoint', 'download-monitor' ),
|
153 |
+
'desc' => sprintf( __( 'Define what endpoint should be used for download links. By default this will be <code>%s</code>.', 'download-monitor' ), home_url( '/download/' ) )
|
154 |
),
|
155 |
array(
|
156 |
'name' => 'dlm_download_endpoint_value',
|
157 |
'std' => 'ID',
|
158 |
+
'label' => __( 'Endpoint Value', 'download-monitor' ),
|
159 |
+
'desc' => sprintf( __( 'Define what unique value should be used on the end of your endpoint to identify the downloadable file. e.g. ID would give a link like <code>%s</code>', 'download-monitor' ), home_url( '/download/10/' ) ),
|
160 |
'type' => 'select',
|
161 |
'options' => array(
|
162 |
+
'ID' => __( 'Download ID', 'download-monitor' ),
|
163 |
+
'slug' => __( 'Download slug', 'download-monitor' )
|
164 |
)
|
165 |
),
|
166 |
array(
|
167 |
'name' => 'dlm_xsendfile_enabled',
|
168 |
'std' => '',
|
169 |
+
'label' => __( 'X-Accel-Redirect / X-Sendfile', 'download-monitor' ),
|
170 |
+
'cb_label' => __( 'Enable', 'download-monitor' ),
|
171 |
+
'desc' => __( 'If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>).', 'download-monitor' ),
|
172 |
'type' => 'checkbox'
|
173 |
),
|
174 |
array(
|
175 |
'name' => 'dlm_hotlink_protection_enabled',
|
176 |
'std' => '',
|
177 |
+
'label' => __( 'Prevent hotlinking', 'download-monitor' ),
|
178 |
+
'cb_label' => __( 'Enable', 'download-monitor' ),
|
179 |
+
'desc' => __( 'If enabled, the download handler will check the PHP referer to see if it originated from your site and if not, redirect them to the homepage.', 'download-monitor' ),
|
180 |
'type' => 'checkbox'
|
181 |
)
|
182 |
)
|
183 |
),
|
184 |
'logging' => array(
|
185 |
+
__( 'Logging', 'download-monitor' ),
|
186 |
array(
|
187 |
array(
|
188 |
'name' => 'dlm_enable_logging',
|
189 |
+
'cb_label' => __( 'Enable', 'download-monitor' ),
|
190 |
'std' => '1',
|
191 |
+
'label' => __( 'Download Log', 'download-monitor' ),
|
192 |
+
'desc' => __( 'Log download attempts, IP addresses and more.', 'download-monitor' ),
|
193 |
'type' => 'checkbox'
|
194 |
),
|
195 |
array(
|
196 |
'name' => 'dlm_ip_blacklist',
|
197 |
'std' => '192.168.0.*',
|
198 |
+
'label' => __( 'Blacklist IPs', 'download-monitor' ),
|
199 |
+
'desc' => __( 'List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a wildcard.', 'download-monitor' ),
|
200 |
'placeholder' => '',
|
201 |
'type' => 'textarea'
|
202 |
),
|
203 |
array(
|
204 |
'name' => 'dlm_user_agent_blacklist',
|
205 |
'std' => 'Googlebot',
|
206 |
+
'label' => __( 'Blacklist user agents', 'download-monitor' ),
|
207 |
+
'desc' => __( 'List browser user agents to blacklist, 1 per line.', 'download-monitor' ),
|
208 |
'placeholder' => '',
|
209 |
'type' => 'textarea'
|
210 |
),
|
227 |
foreach ( $section[1] as $option ) {
|
228 |
if ( isset( $option['std'] ) )
|
229 |
add_option( $option['name'], $option['std'] );
|
230 |
+
register_setting( 'download-monitor', $option['name'] );
|
231 |
}
|
232 |
}
|
233 |
}
|
276 |
*/
|
277 |
public function admin_menu() {
|
278 |
if ( get_option( 'dlm_enable_logging' ) == 1 )
|
279 |
+
add_submenu_page( 'edit.php?post_type=dlm_download', __( 'Logs', 'download-monitor' ), __( 'Logs', 'download-monitor' ), 'manage_options', 'download-monitor-logs', array( $this, 'log_viewer' ) );
|
280 |
|
281 |
+
add_submenu_page( 'edit.php?post_type=dlm_download', __( 'Settings', 'download-monitor' ), __( 'Settings', 'download-monitor' ), 'manage_options', 'download-monitor-settings', array( $this, 'settings_page' ) );
|
282 |
|
283 |
if ( apply_filters( 'dlm_show_addons_page', true ) )
|
284 |
+
add_submenu_page( 'edit.php?post_type=dlm_download', __( 'Download Monitor Add-ons', 'download-monitor' ), __( 'Add-ons', 'download-monitor' ) , 'manage_options', 'dlm-addons', array( $this, 'addons_page' ) );
|
285 |
}
|
286 |
|
287 |
/**
|
306 |
<div class="wrap">
|
307 |
<form method="post" action="options.php">
|
308 |
|
309 |
+
<?php settings_fields( 'download-monitor' ); ?>
|
310 |
<?php screen_icon(); ?>
|
311 |
|
312 |
<h2 class="nav-tab-wrapper">
|
320 |
<?php
|
321 |
if ( ! empty( $_GET['settings-updated'] ) ) {
|
322 |
flush_rewrite_rules();
|
323 |
+
echo '<div class="updated fade"><p>' . __( 'Settings successfully saved', 'download-monitor' ) . '</p></div>';
|
324 |
}
|
325 |
|
326 |
foreach ( $this->settings as $key => $section ) {
|
387 |
}
|
388 |
?>
|
389 |
<p class="submit">
|
390 |
+
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'download-monitor' ); ?>" />
|
391 |
</p>
|
392 |
</form>
|
393 |
</div>
|
431 |
<div class="wrap">
|
432 |
<div id="icon-edit" class="icon32 icon32-posts-dlm_download"><br/></div>
|
433 |
|
434 |
+
<h2><?php _e( 'Download Logs', 'download-monitor' ); ?> <a href="<?php echo add_query_arg( 'dlm_download_logs', 'true' ); ?>" class="add-new-h2"><?php _e( 'Export CSV', 'download-monitor' ); ?></a> <a href="<?php echo wp_nonce_url( add_query_arg( 'dlm_delete_logs', 'true' ), 'delete_logs' ); ?>" class="add-new-h2"><?php _e( 'Delete Logs', 'download-monitor' ); ?></a></h2><br/>
|
435 |
<form id="dlm_logs">
|
436 |
<?php $DLM_Logging_List_Table->display() ?>
|
437 |
</form>
|
481 |
|
482 |
$rows = array();
|
483 |
$row = array();
|
484 |
+
$row[] = __( 'Download ID', 'download-monitor' );
|
485 |
+
$row[] = __( 'Version ID', 'download-monitor' );
|
486 |
+
$row[] = __( 'Filename', 'download-monitor' );
|
487 |
+
$row[] = __( 'User ID', 'download-monitor' );
|
488 |
+
$row[] = __( 'User Login', 'download-monitor' );
|
489 |
+
$row[] = __( 'User Email', 'download-monitor' );
|
490 |
+
$row[] = __( 'User IP', 'download-monitor' );
|
491 |
+
$row[] = __( 'User Agent', 'download-monitor' );
|
492 |
+
$row[] = __( 'Date', 'download-monitor' );
|
493 |
+
$row[] = __( 'Status', 'download-monitor' );
|
494 |
$rows[] = '"' . implode( '","', $row ) . '"';
|
495 |
|
496 |
if ( ! empty( $items ) ) {
|
includes/admin/class-dlm-category-walker.php
CHANGED
@@ -38,7 +38,7 @@ class DLM_Category_Walker extends Walker {
|
|
38 |
|
39 |
$output .= '>';
|
40 |
|
41 |
-
$output .= $pad . __( $cat_name, '
|
42 |
|
43 |
if ( ! empty( $args['show_count'] ) )
|
44 |
$output .= ' (' . $object->count . ')';
|
38 |
|
39 |
$output .= '>';
|
40 |
|
41 |
+
$output .= $pad . __( $cat_name, 'download-monitor' );
|
42 |
|
43 |
if ( ! empty( $args['show_count'] ) )
|
44 |
$output .= ' (' . $object->count . ')';
|
includes/admin/class-dlm-logging-list-table.php
CHANGED
@@ -47,21 +47,21 @@ class DLM_Logging_List_Table extends WP_List_Table {
|
|
47 |
$download_status = '<span class="redirected" title="' . esc_attr( $log->download_status_message ) . '">➜</span>';
|
48 |
break;
|
49 |
default :
|
50 |
-
$download_status = '<span class="completed" title="' . __( 'Download Complete', '
|
51 |
break;
|
52 |
}
|
53 |
|
54 |
return $download_status;
|
55 |
break;
|
56 |
case 'date' :
|
57 |
-
return '<time title="' . date_i18n( get_option( 'date_format' ) . ' @ ' . get_option( 'time_format' ), strtotime( $log->download_date ) ) . '"">' . sprintf( __( '%s ago', '
|
58 |
break;
|
59 |
case 'download' :
|
60 |
$download = new DLM_Download( $log->download_id );
|
61 |
$download->set_version( $log->version_id );
|
62 |
|
63 |
if ( ! $download->exists() ) {
|
64 |
-
$download_string = sprintf( __( 'Download #%d (no longer exists)', '
|
65 |
} else {
|
66 |
$download_string = '<a href="' . admin_url( 'post.php?post=' . $download->id . '&action=edit' ) . '">';
|
67 |
$download_string .= '#' . $download->id . ' – ' . $download->get_the_title();
|
@@ -69,7 +69,7 @@ class DLM_Logging_List_Table extends WP_List_Table {
|
|
69 |
}
|
70 |
|
71 |
if ( $log->version )
|
72 |
-
$download_string .= ' (' . sprintf( __( 'v%s', '
|
73 |
|
74 |
return $download_string;
|
75 |
break;
|
@@ -89,7 +89,7 @@ class DLM_Logging_List_Table extends WP_List_Table {
|
|
89 |
$user = get_user_by( 'id', $log->user_id );
|
90 |
|
91 |
if ( ! isset( $user ) || ! $user ) {
|
92 |
-
$user_string = __( 'Non-member', '
|
93 |
} else {
|
94 |
$user_string = '<a href="' . admin_url( 'user-edit.php?user_id=' . $user->ID ) . '">';
|
95 |
$user_string .= $user->user_login . ' – ';
|
@@ -120,12 +120,12 @@ class DLM_Logging_List_Table extends WP_List_Table {
|
|
120 |
public function get_columns(){
|
121 |
$columns = array(
|
122 |
'status' => '',
|
123 |
-
'download' => __( 'Download', '
|
124 |
-
'file' => __( 'File', '
|
125 |
-
'user' => __( 'User', '
|
126 |
-
'user_ip' => __( 'IP Address', '
|
127 |
-
'user_ua' => __( 'User Agent', '
|
128 |
-
'date' => __( 'Date', '
|
129 |
);
|
130 |
return $columns;
|
131 |
}
|
@@ -139,10 +139,10 @@ class DLM_Logging_List_Table extends WP_List_Table {
|
|
139 |
<?php if ( 'top' == $which ) : ?>
|
140 |
<div class="alignleft actions">
|
141 |
<select name="filter_status">
|
142 |
-
<option value=""><?php _e( 'Any status', '
|
143 |
-
<option value="failed" <?php selected( $this->filter_status, 'failed' ); ?>><?php _e( 'Failed', '
|
144 |
-
<option value="redirected" <?php selected( $this->filter_status, 'redirected' ); ?>><?php _e( 'Redirected', '
|
145 |
-
<option value="completed" <?php selected( $this->filter_status, 'completed' ); ?>><?php _e( 'Completed', '
|
146 |
</select>
|
147 |
<?php
|
148 |
global $wpdb, $wp_locale;
|
@@ -182,15 +182,15 @@ class DLM_Logging_List_Table extends WP_List_Table {
|
|
182 |
<?php endif;
|
183 |
?>
|
184 |
<select name="logs_per_page">
|
185 |
-
<option value="25"><?php _e( '25 per page', '
|
186 |
-
<option value="50" <?php selected( $this->logs_per_page, 50 ) ?>><?php _e( '50 per page', '
|
187 |
-
<option value="100" <?php selected( $this->logs_per_page, 100 ) ?>><?php _e( '100 per page', '
|
188 |
-
<option value="200" <?php selected( $this->logs_per_page, 200 ) ?>><?php _e( '200 per page', '
|
189 |
-
<option value="-1" <?php selected( $this->logs_per_page, -1 ) ?>><?php _e( 'Show All', '
|
190 |
</select>
|
191 |
<input type="hidden" name="post_type" value="dlm_download" />
|
192 |
<input type="hidden" name="page" value="download-monitor-logs" />
|
193 |
-
<input type="submit" value="<?php _e( 'Filter', '
|
194 |
</div>
|
195 |
<?php endif; ?>
|
196 |
<?php
|
47 |
$download_status = '<span class="redirected" title="' . esc_attr( $log->download_status_message ) . '">➜</span>';
|
48 |
break;
|
49 |
default :
|
50 |
+
$download_status = '<span class="completed" title="' . __( 'Download Complete', 'download-monitor' ) . '">✔</span>';
|
51 |
break;
|
52 |
}
|
53 |
|
54 |
return $download_status;
|
55 |
break;
|
56 |
case 'date' :
|
57 |
+
return '<time title="' . date_i18n( get_option( 'date_format' ) . ' @ ' . get_option( 'time_format' ), strtotime( $log->download_date ) ) . '"">' . sprintf( __( '%s ago', 'download-monitor' ), human_time_diff( strtotime( $log->download_date ), current_time( 'timestamp' ) ) ) . '</time>';
|
58 |
break;
|
59 |
case 'download' :
|
60 |
$download = new DLM_Download( $log->download_id );
|
61 |
$download->set_version( $log->version_id );
|
62 |
|
63 |
if ( ! $download->exists() ) {
|
64 |
+
$download_string = sprintf( __( 'Download #%d (no longer exists)', 'download-monitor' ), $log->download_id );
|
65 |
} else {
|
66 |
$download_string = '<a href="' . admin_url( 'post.php?post=' . $download->id . '&action=edit' ) . '">';
|
67 |
$download_string .= '#' . $download->id . ' – ' . $download->get_the_title();
|
69 |
}
|
70 |
|
71 |
if ( $log->version )
|
72 |
+
$download_string .= ' (' . sprintf( __( 'v%s', 'download-monitor' ), $log->version ) . ')';
|
73 |
|
74 |
return $download_string;
|
75 |
break;
|
89 |
$user = get_user_by( 'id', $log->user_id );
|
90 |
|
91 |
if ( ! isset( $user ) || ! $user ) {
|
92 |
+
$user_string = __( 'Non-member', 'download-monitor' );
|
93 |
} else {
|
94 |
$user_string = '<a href="' . admin_url( 'user-edit.php?user_id=' . $user->ID ) . '">';
|
95 |
$user_string .= $user->user_login . ' – ';
|
120 |
public function get_columns(){
|
121 |
$columns = array(
|
122 |
'status' => '',
|
123 |
+
'download' => __( 'Download', 'download-monitor' ),
|
124 |
+
'file' => __( 'File', 'download-monitor' ),
|
125 |
+
'user' => __( 'User', 'download-monitor' ),
|
126 |
+
'user_ip' => __( 'IP Address', 'download-monitor' ),
|
127 |
+
'user_ua' => __( 'User Agent', 'download-monitor' ),
|
128 |
+
'date' => __( 'Date', 'download-monitor' ),
|
129 |
);
|
130 |
return $columns;
|
131 |
}
|
139 |
<?php if ( 'top' == $which ) : ?>
|
140 |
<div class="alignleft actions">
|
141 |
<select name="filter_status">
|
142 |
+
<option value=""><?php _e( 'Any status', 'download-monitor' ); ?></option>
|
143 |
+
<option value="failed" <?php selected( $this->filter_status, 'failed' ); ?>><?php _e( 'Failed', 'download-monitor' ); ?></option>
|
144 |
+
<option value="redirected" <?php selected( $this->filter_status, 'redirected' ); ?>><?php _e( 'Redirected', 'download-monitor' ); ?></option>
|
145 |
+
<option value="completed" <?php selected( $this->filter_status, 'completed' ); ?>><?php _e( 'Completed', 'download-monitor' ); ?></option>
|
146 |
</select>
|
147 |
<?php
|
148 |
global $wpdb, $wp_locale;
|
182 |
<?php endif;
|
183 |
?>
|
184 |
<select name="logs_per_page">
|
185 |
+
<option value="25"><?php _e( '25 per page', 'download-monitor' ); ?></option>
|
186 |
+
<option value="50" <?php selected( $this->logs_per_page, 50 ) ?>><?php _e( '50 per page', 'download-monitor' ); ?></option>
|
187 |
+
<option value="100" <?php selected( $this->logs_per_page, 100 ) ?>><?php _e( '100 per page', 'download-monitor' ); ?></option>
|
188 |
+
<option value="200" <?php selected( $this->logs_per_page, 200 ) ?>><?php _e( '200 per page', 'download-monitor' ); ?></option>
|
189 |
+
<option value="-1" <?php selected( $this->logs_per_page, -1 ) ?>><?php _e( 'Show All', 'download-monitor' ); ?></option>
|
190 |
</select>
|
191 |
<input type="hidden" name="post_type" value="dlm_download" />
|
192 |
<input type="hidden" name="page" value="download-monitor-logs" />
|
193 |
+
<input type="submit" value="<?php _e( 'Filter', 'download-monitor' ); ?>" class="button" />
|
194 |
</div>
|
195 |
<?php endif; ?>
|
196 |
<?php
|
includes/admin/html-downloadable-file-version.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<div class="dlm-metabox closed downloadable_file" data-file="<?php echo $file_id; ?>">
|
2 |
<h3>
|
3 |
-
<button type="button" class="remove_file button"><?php _e( 'Remove', '
|
4 |
-
<div class="handlediv" title="<?php _e( 'Click to toggle', '
|
5 |
-
<strong>#<?php echo $file_id; ?> — <?php echo sprintf( __( 'Version <span class="version">%s</span> (%s)', '
|
6 |
<input type="hidden" name="downloadable_file_id[<?php echo $i; ?>]" value="<?php echo $file_id; ?>" />
|
7 |
<input type="hidden" class="file_menu_order" name="downloadable_file_menu_order[<?php echo $i; ?>]" value="<?php echo $i; ?>" />
|
8 |
</h3>
|
@@ -13,25 +13,25 @@
|
|
13 |
|
14 |
<tr>
|
15 |
<td width="1%">
|
16 |
-
<label><?php _e( 'Version', '
|
17 |
-
<input type="text" class="short" name="downloadable_file_version[<?php echo $i; ?>]" placeholder="<?php _e( 'n/a', '
|
18 |
</td>
|
19 |
<td rowspan="3">
|
20 |
|
21 |
-
<label><?php _e( 'File URL(s)', '
|
22 |
-
<textarea name="downloadable_file_urls[<?php echo $i; ?>]" wrap="off" class="downloadable_file_urls" cols="5" rows="5" placeholder="<?php _e( 'Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).', '
|
23 |
<p>
|
24 |
<?php
|
25 |
$buttons = apply_filters( 'dlm_downloadable_file_version_buttons', array(
|
26 |
'upload_file' => array(
|
27 |
-
'text' => __( 'Upload file', '
|
28 |
'data' => array(
|
29 |
-
'choose' => __( 'Choose a file', '
|
30 |
-
'update' => __( 'Insert file URL', '
|
31 |
)
|
32 |
),
|
33 |
'browse_for_file' => array(
|
34 |
-
'text' => __( 'Browse for file', '
|
35 |
)
|
36 |
) );
|
37 |
|
@@ -49,14 +49,14 @@
|
|
49 |
</tr>
|
50 |
<tr>
|
51 |
<td>
|
52 |
-
<label><?php _e( 'Download count', '
|
53 |
<input type="text" class="short" name="downloadable_file_download_count[<?php echo $i; ?>]" placeholder="<?php echo $file_download_count; ?>" />
|
54 |
</td>
|
55 |
</tr>
|
56 |
<tr>
|
57 |
<td>
|
58 |
-
<label><?php _e('File Date', '
|
59 |
-
<input type="text" class="date-picker-field" name="downloadable_file_date[<?php echo $i; ?>]" maxlength="10" value="<?php echo date('Y-m-d', strtotime( $file_post_date ) ); ?>" /> @ <input type="text" class="hour" placeholder="<?php _e('h', '
|
60 |
</td>
|
61 |
</tr>
|
62 |
|
1 |
<div class="dlm-metabox closed downloadable_file" data-file="<?php echo $file_id; ?>">
|
2 |
<h3>
|
3 |
+
<button type="button" class="remove_file button"><?php _e( 'Remove', 'download-monitor' ); ?></button>
|
4 |
+
<div class="handlediv" title="<?php _e( 'Click to toggle', 'download-monitor' ); ?>"></div>
|
5 |
+
<strong>#<?php echo $file_id; ?> — <?php echo sprintf( __( 'Version <span class="version">%s</span> (%s)', 'download-monitor' ), ( $file_version ) ? $file_version : __('n/a', 'download-monitor'), date_i18n( get_option( 'date_format' ), strtotime( $file_post_date ) ) ); ?> — <?php echo sprintf( _n('Downloaded %s time', 'Downloaded %s times', $file_download_count, 'download-monitor'), $file_download_count ); ?></strong>
|
6 |
<input type="hidden" name="downloadable_file_id[<?php echo $i; ?>]" value="<?php echo $file_id; ?>" />
|
7 |
<input type="hidden" class="file_menu_order" name="downloadable_file_menu_order[<?php echo $i; ?>]" value="<?php echo $i; ?>" />
|
8 |
</h3>
|
13 |
|
14 |
<tr>
|
15 |
<td width="1%">
|
16 |
+
<label><?php _e( 'Version', 'download-monitor' ); ?>:</label>
|
17 |
+
<input type="text" class="short" name="downloadable_file_version[<?php echo $i; ?>]" placeholder="<?php _e( 'n/a', 'download-monitor' ); ?>" value="<?php echo $file_version; ?>" />
|
18 |
</td>
|
19 |
<td rowspan="3">
|
20 |
|
21 |
+
<label><?php _e( 'File URL(s)', 'download-monitor' ); ?>:</label>
|
22 |
+
<textarea name="downloadable_file_urls[<?php echo $i; ?>]" wrap="off" class="downloadable_file_urls" cols="5" rows="5" placeholder="<?php _e( 'Enter one file path/URL per line - multiple files will be used as mirrors (chosen at random).', 'download-monitor' ); ?>"><?php echo esc_textarea( implode( "\n", $file_urls ) ); ?></textarea>
|
23 |
<p>
|
24 |
<?php
|
25 |
$buttons = apply_filters( 'dlm_downloadable_file_version_buttons', array(
|
26 |
'upload_file' => array(
|
27 |
+
'text' => __( 'Upload file', 'download-monitor' ),
|
28 |
'data' => array(
|
29 |
+
'choose' => __( 'Choose a file', 'download-monitor' ),
|
30 |
+
'update' => __( 'Insert file URL', 'download-monitor' ),
|
31 |
)
|
32 |
),
|
33 |
'browse_for_file' => array(
|
34 |
+
'text' => __( 'Browse for file', 'download-monitor' )
|
35 |
)
|
36 |
) );
|
37 |
|
49 |
</tr>
|
50 |
<tr>
|
51 |
<td>
|
52 |
+
<label><?php _e( 'Download count', 'download-monitor' ); ?>:</label>
|
53 |
<input type="text" class="short" name="downloadable_file_download_count[<?php echo $i; ?>]" placeholder="<?php echo $file_download_count; ?>" />
|
54 |
</td>
|
55 |
</tr>
|
56 |
<tr>
|
57 |
<td>
|
58 |
+
<label><?php _e('File Date', 'download-monitor'); ?>:</label>
|
59 |
+
<input type="text" class="date-picker-field" name="downloadable_file_date[<?php echo $i; ?>]" maxlength="10" value="<?php echo date('Y-m-d', strtotime( $file_post_date ) ); ?>" /> @ <input type="text" class="hour" placeholder="<?php _e('h', 'download-monitor') ?>" name="downloadable_file_date_hour[<?php echo $i; ?>]" maxlength="2" size="2" value="<?php echo date('H', strtotime( $file_post_date ) ); ?>" />:<input type="text" class="minute" placeholder="<?php _e('m', 'download-monitor') ?>" name="downloadable_file_date_minute[<?php echo $i; ?>]" maxlength="2" size="2" value="<?php echo date('i', strtotime( $file_post_date ) ); ?>" />
|
60 |
</td>
|
61 |
</tr>
|
62 |
|
includes/class-dlm-ajax-handler.php
CHANGED
@@ -49,8 +49,10 @@ class WP_DLM_Ajax_Handler {
|
|
49 |
|
50 |
$file = get_post( intval( $_POST['file_id'] ) );
|
51 |
|
52 |
-
if ( $file && $file->post_type == "dlm_download_version" )
|
|
|
53 |
wp_delete_post( $file->ID );
|
|
|
54 |
|
55 |
die();
|
56 |
}
|
@@ -77,12 +79,14 @@ class WP_DLM_Ajax_Handler {
|
|
77 |
'post_type' => 'dlm_download_version'
|
78 |
);
|
79 |
|
80 |
-
$file_id
|
81 |
-
$i
|
82 |
-
$file_version
|
83 |
-
$file_post_date
|
84 |
-
$file_download_count
|
85 |
-
$file_urls
|
|
|
|
|
86 |
|
87 |
include( 'admin/html-downloadable-file-version.php' );
|
88 |
|
49 |
|
50 |
$file = get_post( intval( $_POST['file_id'] ) );
|
51 |
|
52 |
+
if ( $file && $file->post_type == "dlm_download_version" ) {
|
53 |
+
delete_transient( 'dlm_file_version_ids_' . $file->post_parent );
|
54 |
wp_delete_post( $file->ID );
|
55 |
+
}
|
56 |
|
57 |
die();
|
58 |
}
|
79 |
'post_type' => 'dlm_download_version'
|
80 |
);
|
81 |
|
82 |
+
$file_id = wp_insert_post( $file );
|
83 |
+
$i = $size;
|
84 |
+
$file_version = '';
|
85 |
+
$file_post_date = current_time( 'mysql' );
|
86 |
+
$file_download_count = 0;
|
87 |
+
$file_urls = array();
|
88 |
+
|
89 |
+
delete_transient( 'dlm_file_version_ids_' . $post_id );
|
90 |
|
91 |
include( 'admin/html-downloadable-file-version.php' );
|
92 |
|
includes/class-dlm-download-handler.php
CHANGED
@@ -76,16 +76,27 @@ class DLM_Download_Handler {
|
|
76 |
$wp->query_vars[ $this->endpoint ] = $_GET[ $this->endpoint ];
|
77 |
}
|
78 |
|
79 |
-
if ( ! empty( $wp->query_vars[ $this->endpoint ] ) ) {
|
80 |
|
81 |
// Prevent caching when endpoint is set
|
82 |
define( 'DONOTCACHEPAGE', true );
|
83 |
|
84 |
// Prevent hotlinking
|
85 |
-
if ( get_option( 'dlm_hotlink_protection_enabled' )
|
86 |
-
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
}
|
90 |
}
|
91 |
|
@@ -102,10 +113,11 @@ class DLM_Download_Handler {
|
|
102 |
break;
|
103 |
}
|
104 |
|
105 |
-
if ( $download_id > 0 )
|
106 |
$download = new DLM_Download( $download_id );
|
107 |
-
else
|
108 |
$download = null;
|
|
|
109 |
|
110 |
// Handle version (if set)
|
111 |
$version_id = '';
|
@@ -125,16 +137,18 @@ class DLM_Download_Handler {
|
|
125 |
// Action on found download
|
126 |
if ( ! is_null( $download ) && $download->exists() ) {
|
127 |
if ( post_password_required( $download_id ) ) {
|
128 |
-
wp_die( get_the_password_form( $download_id ), __( 'Password Required', '
|
129 |
}
|
130 |
$this->trigger( $download, $version_id );
|
131 |
}
|
132 |
|
133 |
-
elseif ( $redirect = apply_filters( 'dlm_404_redirect', false ) )
|
134 |
wp_redirect( $redirect );
|
|
|
135 |
|
136 |
-
else
|
137 |
-
wp_die( __( 'Download does not exist.', '
|
|
|
138 |
|
139 |
die('1');
|
140 |
}
|
@@ -163,12 +177,12 @@ class DLM_Download_Handler {
|
|
163 |
$file_paths = $version->mirrors;
|
164 |
|
165 |
if ( empty( $file_paths ) )
|
166 |
-
wp_die( __( 'No file paths defined.', '
|
167 |
|
168 |
$file_path = $file_paths[ array_rand( $file_paths ) ];
|
169 |
|
170 |
if ( ! $file_path )
|
171 |
-
wp_die( __( 'No file paths defined.', '
|
172 |
|
173 |
// Check Access
|
174 |
if ( ! apply_filters( 'dlm_can_download', true, $download, $version ) ) {
|
@@ -177,7 +191,7 @@ class DLM_Download_Handler {
|
|
177 |
wp_redirect( $redirect );
|
178 |
|
179 |
else
|
180 |
-
wp_die( __( 'You do not have permission to access this download.', '
|
181 |
|
182 |
exit;
|
183 |
}
|
@@ -195,7 +209,7 @@ class DLM_Download_Handler {
|
|
195 |
|
196 |
// Redirect to the file...
|
197 |
if ( $download->redirect_only() || apply_filters( 'dlm_do_not_force', false, $download, $version ) ) {
|
198 |
-
$this->log( 'download', 'redirected', __( 'Redirected to file', '
|
199 |
|
200 |
// Ensure we have a valid URL, not a file path
|
201 |
$file_path = str_replace( ABSPATH, site_url( '/', 'http' ), $file_path );
|
@@ -211,21 +225,21 @@ class DLM_Download_Handler {
|
|
211 |
if ( get_option( 'dlm_xsendfile_enabled' ) ) {
|
212 |
if ( function_exists( 'apache_get_modules' ) && in_array( 'mod_xsendfile', apache_get_modules() ) ) {
|
213 |
|
214 |
-
$this->log( 'download', 'redirected', __( 'Redirected to file', '
|
215 |
|
216 |
header( "X-Sendfile: $file_path" );
|
217 |
exit;
|
218 |
|
219 |
} elseif ( stristr( getenv( 'SERVER_SOFTWARE' ), 'lighttpd' ) ) {
|
220 |
|
221 |
-
$this->log( 'download', 'redirected', __( 'Redirected to file', '
|
222 |
|
223 |
header( "X-LIGHTTPD-send-file: $file_path" );
|
224 |
exit;
|
225 |
|
226 |
} elseif ( stristr( getenv( 'SERVER_SOFTWARE' ), 'nginx' ) || stristr( getenv( 'SERVER_SOFTWARE' ), 'cherokee' ) ) {
|
227 |
|
228 |
-
$this->log( 'download', 'redirected', __( 'Redirected to file', '
|
229 |
|
230 |
$file_path = str_ireplace( $_SERVER[ 'DOCUMENT_ROOT' ], '', $file_path );
|
231 |
header( "X-Accel-Redirect: /$file_path" );
|
@@ -264,14 +278,14 @@ class DLM_Download_Handler {
|
|
264 |
} elseif ( $remote_file ) {
|
265 |
|
266 |
// Redirect - we can't track if this completes or not
|
267 |
-
$this->log( 'download', 'redirected', __( 'Redirected to remote file.', '
|
268 |
|
269 |
header( 'Location: ' . $file_path );
|
270 |
|
271 |
} else {
|
272 |
-
$this->log( 'download', 'failed', __( 'File not found', '
|
273 |
|
274 |
-
wp_die( __( 'File not found.', '
|
275 |
}
|
276 |
|
277 |
exit;
|
@@ -313,12 +327,12 @@ class DLM_Download_Handler {
|
|
313 |
@session_write_close();
|
314 |
@ini_set( 'zlib.output_compression', 'Off' );
|
315 |
@error_reporting(0);
|
316 |
-
|
317 |
/**
|
318 |
* Prevents errors, for example: transfer closed with 3 bytes remaining to read
|
319 |
*/
|
320 |
@ob_end_clean(); // Clear the output buffer
|
321 |
-
|
322 |
if ( ob_get_level() ) {
|
323 |
@ob_end_clean(); // Zip corruption fix
|
324 |
}
|
76 |
$wp->query_vars[ $this->endpoint ] = $_GET[ $this->endpoint ];
|
77 |
}
|
78 |
|
79 |
+
if ( ! empty( $wp->query_vars[ $this->endpoint ] ) && strstr( $wp->request, $this->endpoint . '/' ) ) {
|
80 |
|
81 |
// Prevent caching when endpoint is set
|
82 |
define( 'DONOTCACHEPAGE', true );
|
83 |
|
84 |
// Prevent hotlinking
|
85 |
+
if ( get_option( 'dlm_hotlink_protection_enabled' ) ) {
|
86 |
+
$referer = ! empty( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '';
|
87 |
+
if ( $referer || apply_filters( 'dlm_hotlink_block_empty_referer', false ) ) {
|
88 |
+
$allowed_referers = apply_filters( 'dlm_hotlink_allowed_referers', array( home_url() ) );
|
89 |
+
$allowed = false;
|
90 |
+
foreach ( $allowed_referers as $allowed_referer ) {
|
91 |
+
if ( strstr( $referer, $allowed_referer ) ) {
|
92 |
+
$allowed = true;
|
93 |
+
break;
|
94 |
+
}
|
95 |
+
}
|
96 |
+
if ( ! $allowed ) {
|
97 |
+
wp_redirect( apply_filters( 'dlm_hotlink_redirect', home_url() ) );
|
98 |
+
exit;
|
99 |
+
}
|
100 |
}
|
101 |
}
|
102 |
|
113 |
break;
|
114 |
}
|
115 |
|
116 |
+
if ( $download_id > 0 ) {
|
117 |
$download = new DLM_Download( $download_id );
|
118 |
+
} else {
|
119 |
$download = null;
|
120 |
+
}
|
121 |
|
122 |
// Handle version (if set)
|
123 |
$version_id = '';
|
137 |
// Action on found download
|
138 |
if ( ! is_null( $download ) && $download->exists() ) {
|
139 |
if ( post_password_required( $download_id ) ) {
|
140 |
+
wp_die( get_the_password_form( $download_id ), __( 'Password Required', 'download-monitor' ) );
|
141 |
}
|
142 |
$this->trigger( $download, $version_id );
|
143 |
}
|
144 |
|
145 |
+
elseif ( $redirect = apply_filters( 'dlm_404_redirect', false ) ) {
|
146 |
wp_redirect( $redirect );
|
147 |
+
}
|
148 |
|
149 |
+
else {
|
150 |
+
wp_die( __( 'Download does not exist.', 'download-monitor' ) . ' <a href="' . home_url() . '">' . __( 'Go to homepage →', 'download-monitor' ) . '</a>', __( 'Download Error', 'download-monitor' ), array( 'response' => 404 ) );
|
151 |
+
}
|
152 |
|
153 |
die('1');
|
154 |
}
|
177 |
$file_paths = $version->mirrors;
|
178 |
|
179 |
if ( empty( $file_paths ) )
|
180 |
+
wp_die( __( 'No file paths defined.', 'download-monitor' ) . ' <a href="' . home_url() . '">' . __( 'Go to homepage →', 'download-monitor' ) . '</a>', __( 'Download Error', 'download-monitor' ) );
|
181 |
|
182 |
$file_path = $file_paths[ array_rand( $file_paths ) ];
|
183 |
|
184 |
if ( ! $file_path )
|
185 |
+
wp_die( __( 'No file paths defined.', 'download-monitor' ) . ' <a href="' . home_url() . '">' . __( 'Go to homepage →', 'download-monitor' ) . '</a>', __( 'Download Error', 'download-monitor' ) );
|
186 |
|
187 |
// Check Access
|
188 |
if ( ! apply_filters( 'dlm_can_download', true, $download, $version ) ) {
|
191 |
wp_redirect( $redirect );
|
192 |
|
193 |
else
|
194 |
+
wp_die( __( 'You do not have permission to access this download.', 'download-monitor' ) . ' <a href="' . home_url() . '">' . __( 'Go to homepage →', 'download-monitor' ) . '</a>', __( 'Download Error', 'download-monitor' ), array( 'response' => 200 ) );
|
195 |
|
196 |
exit;
|
197 |
}
|
209 |
|
210 |
// Redirect to the file...
|
211 |
if ( $download->redirect_only() || apply_filters( 'dlm_do_not_force', false, $download, $version ) ) {
|
212 |
+
$this->log( 'download', 'redirected', __( 'Redirected to file', 'download-monitor' ), $download, $version );
|
213 |
|
214 |
// Ensure we have a valid URL, not a file path
|
215 |
$file_path = str_replace( ABSPATH, site_url( '/', 'http' ), $file_path );
|
225 |
if ( get_option( 'dlm_xsendfile_enabled' ) ) {
|
226 |
if ( function_exists( 'apache_get_modules' ) && in_array( 'mod_xsendfile', apache_get_modules() ) ) {
|
227 |
|
228 |
+
$this->log( 'download', 'redirected', __( 'Redirected to file', 'download-monitor' ), $download, $version );
|
229 |
|
230 |
header( "X-Sendfile: $file_path" );
|
231 |
exit;
|
232 |
|
233 |
} elseif ( stristr( getenv( 'SERVER_SOFTWARE' ), 'lighttpd' ) ) {
|
234 |
|
235 |
+
$this->log( 'download', 'redirected', __( 'Redirected to file', 'download-monitor' ), $download, $version );
|
236 |
|
237 |
header( "X-LIGHTTPD-send-file: $file_path" );
|
238 |
exit;
|
239 |
|
240 |
} elseif ( stristr( getenv( 'SERVER_SOFTWARE' ), 'nginx' ) || stristr( getenv( 'SERVER_SOFTWARE' ), 'cherokee' ) ) {
|
241 |
|
242 |
+
$this->log( 'download', 'redirected', __( 'Redirected to file', 'download-monitor' ), $download, $version );
|
243 |
|
244 |
$file_path = str_ireplace( $_SERVER[ 'DOCUMENT_ROOT' ], '', $file_path );
|
245 |
header( "X-Accel-Redirect: /$file_path" );
|
278 |
} elseif ( $remote_file ) {
|
279 |
|
280 |
// Redirect - we can't track if this completes or not
|
281 |
+
$this->log( 'download', 'redirected', __( 'Redirected to remote file.', 'download-monitor' ), $download, $version );
|
282 |
|
283 |
header( 'Location: ' . $file_path );
|
284 |
|
285 |
} else {
|
286 |
+
$this->log( 'download', 'failed', __( 'File not found', 'download-monitor' ), $download, $version );
|
287 |
|
288 |
+
wp_die( __( 'File not found.', 'download-monitor' ) . ' <a href="' . home_url() . '">' . __( 'Go to homepage →', 'download-monitor' ) . '</a>', __( 'Download Error', 'download-monitor' ), array( 'response' => 404 ) );
|
289 |
}
|
290 |
|
291 |
exit;
|
327 |
@session_write_close();
|
328 |
@ini_set( 'zlib.output_compression', 'Off' );
|
329 |
@error_reporting(0);
|
330 |
+
|
331 |
/**
|
332 |
* Prevents errors, for example: transfer closed with 3 bytes remaining to read
|
333 |
*/
|
334 |
@ob_end_clean(); // Clear the output buffer
|
335 |
+
|
336 |
if ( ob_get_level() ) {
|
337 |
@ob_end_clean(); // Zip corruption fix
|
338 |
}
|
includes/class-dlm-download-version.php
CHANGED
@@ -27,8 +27,10 @@ class DLM_Download_Version {
|
|
27 |
// Get URLS
|
28 |
if ( is_string( $this->mirrors ) ) {
|
29 |
$this->mirrors = array_filter( (array) json_decode( $this->mirrors ) );
|
30 |
-
}
|
31 |
$this->mirrors = array_filter( $this->mirrors );
|
|
|
|
|
32 |
}
|
33 |
|
34 |
$this->url = current( $this->mirrors );
|
27 |
// Get URLS
|
28 |
if ( is_string( $this->mirrors ) ) {
|
29 |
$this->mirrors = array_filter( (array) json_decode( $this->mirrors ) );
|
30 |
+
} elseif ( is_array( $this->mirrors ) ) {
|
31 |
$this->mirrors = array_filter( $this->mirrors );
|
32 |
+
} else {
|
33 |
+
$this->mirrors = array();
|
34 |
}
|
35 |
|
36 |
$this->url = current( $this->mirrors );
|
includes/class-dlm-download.php
CHANGED
@@ -422,9 +422,11 @@ class DLM_Download {
|
|
422 |
public function get_version_id( $version_string = '' ) {
|
423 |
$versions = $this->get_file_versions();
|
424 |
|
425 |
-
foreach ( $versions as $version_id => $version )
|
426 |
-
if ( version_compare( $version->version, strtolower( $version_string ), '=' ) )
|
427 |
return $version_id;
|
|
|
|
|
428 |
}
|
429 |
|
430 |
/**
|
@@ -465,7 +467,13 @@ class DLM_Download {
|
|
465 |
*/
|
466 |
function get_file_version_ids() {
|
467 |
if ( ! is_array( $this->file_version_ids ) ) {
|
468 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
}
|
470 |
|
471 |
return $this->file_version_ids;
|
@@ -478,14 +486,16 @@ class DLM_Download {
|
|
478 |
* @return void
|
479 |
*/
|
480 |
public function get_file_versions() {
|
481 |
-
if ( $this->files )
|
482 |
return $this->files;
|
|
|
483 |
|
484 |
$version_ids = $this->get_file_version_ids();
|
485 |
$this->files = array();
|
486 |
|
487 |
-
foreach ( $version_ids as $version_id )
|
488 |
$this->files[ $version_id ] = new DLM_Download_Version( $version_id, $this->id );
|
|
|
489 |
|
490 |
return $this->files;
|
491 |
}
|
422 |
public function get_version_id( $version_string = '' ) {
|
423 |
$versions = $this->get_file_versions();
|
424 |
|
425 |
+
foreach ( $versions as $version_id => $version ) {
|
426 |
+
if ( ( is_numeric( $version->version ) && version_compare( $version->version, strtolower( $version_string ), '=' ) ) || strtolower( $version->version ) === strtolower( $version_string ) ) {
|
427 |
return $version_id;
|
428 |
+
}
|
429 |
+
}
|
430 |
}
|
431 |
|
432 |
/**
|
467 |
*/
|
468 |
function get_file_version_ids() {
|
469 |
if ( ! is_array( $this->file_version_ids ) ) {
|
470 |
+
$transient_name = 'dlm_file_version_ids_' . $this->id;
|
471 |
+
|
472 |
+
if ( false === ( $this->file_version_ids = get_transient( $transient_name ) ) ) {
|
473 |
+
$this->file_version_ids = get_posts( 'post_parent=' . $this->id . '&post_type=dlm_download_version&orderby=menu_order&order=ASC&fields=ids&post_status=publish&numberposts=-1' );
|
474 |
+
|
475 |
+
set_transient( $transient_name, $this->file_version_ids, YEAR_IN_SECONDS );
|
476 |
+
}
|
477 |
}
|
478 |
|
479 |
return $this->file_version_ids;
|
486 |
* @return void
|
487 |
*/
|
488 |
public function get_file_versions() {
|
489 |
+
if ( $this->files ) {
|
490 |
return $this->files;
|
491 |
+
}
|
492 |
|
493 |
$version_ids = $this->get_file_version_ids();
|
494 |
$this->files = array();
|
495 |
|
496 |
+
foreach ( $version_ids as $version_id ) {
|
497 |
$this->files[ $version_id ] = new DLM_Download_Version( $version_id, $this->id );
|
498 |
+
}
|
499 |
|
500 |
return $this->files;
|
501 |
}
|
includes/class-dlm-shortcodes.php
CHANGED
@@ -90,7 +90,7 @@ class DLM_Shortcodes {
|
|
90 |
return '<a href="' . $download->get_the_download_link() . '">' . $content . '</a>';
|
91 |
|
92 |
} else {
|
93 |
-
return '[' . __( 'Download not found', '
|
94 |
}
|
95 |
}
|
96 |
|
@@ -122,7 +122,7 @@ class DLM_Shortcodes {
|
|
122 |
}
|
123 |
|
124 |
} else {
|
125 |
-
echo '[' . __( 'Download not found', '
|
126 |
}
|
127 |
|
128 |
wp_reset_postdata();
|
@@ -300,7 +300,7 @@ class DLM_Shortcodes {
|
|
300 |
'taxonomy' => 'dlm_download_category',
|
301 |
'field' => 'slug',
|
302 |
'terms' => $categories,
|
303 |
-
'include_children' => $category_include_children
|
304 |
);
|
305 |
}
|
306 |
|
90 |
return '<a href="' . $download->get_the_download_link() . '">' . $content . '</a>';
|
91 |
|
92 |
} else {
|
93 |
+
return '[' . __( 'Download not found', 'download-monitor' ) . ']';
|
94 |
}
|
95 |
}
|
96 |
|
122 |
}
|
123 |
|
124 |
} else {
|
125 |
+
echo '[' . __( 'Download not found', 'download-monitor' ) . ']';
|
126 |
}
|
127 |
|
128 |
wp_reset_postdata();
|
300 |
'taxonomy' => 'dlm_download_category',
|
301 |
'field' => 'slug',
|
302 |
'terms' => $categories,
|
303 |
+
'include_children' => ( $category_include_children === 'true' || $category_include_children === true )
|
304 |
);
|
305 |
}
|
306 |
|
includes/widgets/class-dlm-widget-downloads.php
CHANGED
@@ -24,9 +24,9 @@ class DLM_Widget_Downloads extends WP_Widget {
|
|
24 |
|
25 |
/* Widget variable settings. */
|
26 |
$this->widget_cssclass = 'dlm_widget_downloads';
|
27 |
-
$this->widget_description = __( 'Display a list of your downloads.', '
|
28 |
$this->widget_idbase = 'dlm_widget_downloads';
|
29 |
-
$this->widget_name = __( 'Downloads List', '
|
30 |
|
31 |
/* Widget settings. */
|
32 |
$widget_ops = array( 'classname' => $this->widget_cssclass, 'description' => $this->widget_description );
|
@@ -49,7 +49,7 @@ class DLM_Widget_Downloads extends WP_Widget {
|
|
49 |
|
50 |
extract( $args );
|
51 |
|
52 |
-
$title = isset( $instance['title'] ) ? apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ) : __( 'Featured Downloads', '
|
53 |
$posts_per_page = isset( $instance['posts_per_page'] ) ? absint( $instance['posts_per_page'] ) : 10;
|
54 |
$format = isset( $instance['format'] ) ? sanitize_title( $instance['format'] ) : '';
|
55 |
$orderby = isset( $instance['orderby'] ) ? $instance['orderby'] : 'title';
|
@@ -145,7 +145,7 @@ class DLM_Widget_Downloads extends WP_Widget {
|
|
145 |
* @return void
|
146 |
*/
|
147 |
function form( $instance ) {
|
148 |
-
$title = isset( $instance['title'] ) ? $instance['title'] : __( 'Featured Downloads', '
|
149 |
$posts_per_page = isset( $instance['posts_per_page'] ) ? absint( $instance['posts_per_page'] ) : 10;
|
150 |
$format = isset( $instance['format'] ) ? sanitize_title( $instance['format'] ) : '';
|
151 |
$orderby = isset( $instance['orderby'] ) ? $instance['orderby'] : 'title';
|
@@ -154,42 +154,42 @@ class DLM_Widget_Downloads extends WP_Widget {
|
|
154 |
$members_only = isset( $instance['members_only'] ) ? $instance['members_only'] : 'no';
|
155 |
?>
|
156 |
<p>
|
157 |
-
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', '
|
158 |
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
|
159 |
</p>
|
160 |
<p>
|
161 |
-
<label for="<?php echo $this->get_field_id( 'posts_per_page' ); ?>"><?php _e( 'Limit:', '
|
162 |
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'posts_per_page' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'posts_per_page' ) ); ?>" type="text" value="<?php echo esc_attr( $posts_per_page ); ?>" size="3" />
|
163 |
</p>
|
164 |
<p>
|
165 |
-
<label for="<?php echo $this->get_field_id( 'format' ); ?>"><?php _e( 'Output template:', '
|
166 |
-
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'format' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'format' ) ); ?>" type="text" value="<?php echo esc_attr( $format ); ?>" placeholder="<?php _e( 'Default template', '
|
167 |
</p>
|
168 |
<p>
|
169 |
-
<label for="<?php echo $this->get_field_id( 'orderby' ); ?>"><?php _e( 'Order by:', '
|
170 |
<select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'orderby' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'orderby' ) ); ?>" type="text">
|
171 |
-
<option value="title" <?php selected( $orderby, 'title' ); ?>><?php _e( 'Title', '
|
172 |
-
<option value="rand" <?php selected( $orderby, 'rand' ); ?>><?php _e( 'Random', '
|
173 |
-
<option value="ID" <?php selected( $orderby, 'ID' ); ?>><?php _e( 'ID', '
|
174 |
-
<option value="date" <?php selected( $orderby, 'date' ); ?>><?php _e( 'Date added', '
|
175 |
-
<option value="modified" <?php selected( $orderby, 'modified' ); ?>><?php _e( 'Date modified', '
|
176 |
-
<option value="download_count" <?php selected( $orderby, 'download_count' ); ?>><?php _e( 'Download count', '
|
177 |
</select>
|
178 |
</p>
|
179 |
<p>
|
180 |
-
<label for="<?php echo $this->get_field_id( 'order' ); ?>"><?php _e( 'Order:', '
|
181 |
<select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'order' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'order' ) ); ?>" type="text">
|
182 |
-
<option value="ASC" <?php selected( $order, 'ASC' ); ?>><?php _e( 'ASC', '
|
183 |
-
<option value="DESC" <?php selected( $order, 'DESC' ); ?>><?php _e( 'DESC', '
|
184 |
</select>
|
185 |
</p>
|
186 |
<p>
|
187 |
<input id="<?php echo esc_attr( $this->get_field_id( 'featured' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'featured' ) ); ?>" type="checkbox" <?php checked( $featured, 'yes' ); ?> />
|
188 |
-
<label for="<?php echo $this->get_field_id( 'featured' ); ?>"><?php _e( 'Show only featured downloads', '
|
189 |
</p>
|
190 |
<p>
|
191 |
<input id="<?php echo esc_attr( $this->get_field_id( 'members_only' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'members_only' ) ); ?>" type="checkbox" <?php checked( $members_only, 'yes' ); ?> />
|
192 |
-
<label for="<?php echo $this->get_field_id( 'members_only' ); ?>"><?php _e( 'Show only members only downloads', '
|
193 |
</p>
|
194 |
<?php
|
195 |
}
|
24 |
|
25 |
/* Widget variable settings. */
|
26 |
$this->widget_cssclass = 'dlm_widget_downloads';
|
27 |
+
$this->widget_description = __( 'Display a list of your downloads.', 'download-monitor' );
|
28 |
$this->widget_idbase = 'dlm_widget_downloads';
|
29 |
+
$this->widget_name = __( 'Downloads List', 'download-monitor' );
|
30 |
|
31 |
/* Widget settings. */
|
32 |
$widget_ops = array( 'classname' => $this->widget_cssclass, 'description' => $this->widget_description );
|
49 |
|
50 |
extract( $args );
|
51 |
|
52 |
+
$title = isset( $instance['title'] ) ? apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ) : __( 'Featured Downloads', 'download-monitor' );
|
53 |
$posts_per_page = isset( $instance['posts_per_page'] ) ? absint( $instance['posts_per_page'] ) : 10;
|
54 |
$format = isset( $instance['format'] ) ? sanitize_title( $instance['format'] ) : '';
|
55 |
$orderby = isset( $instance['orderby'] ) ? $instance['orderby'] : 'title';
|
145 |
* @return void
|
146 |
*/
|
147 |
function form( $instance ) {
|
148 |
+
$title = isset( $instance['title'] ) ? $instance['title'] : __( 'Featured Downloads', 'download-monitor' );
|
149 |
$posts_per_page = isset( $instance['posts_per_page'] ) ? absint( $instance['posts_per_page'] ) : 10;
|
150 |
$format = isset( $instance['format'] ) ? sanitize_title( $instance['format'] ) : '';
|
151 |
$orderby = isset( $instance['orderby'] ) ? $instance['orderby'] : 'title';
|
154 |
$members_only = isset( $instance['members_only'] ) ? $instance['members_only'] : 'no';
|
155 |
?>
|
156 |
<p>
|
157 |
+
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'download-monitor' ); ?></label>
|
158 |
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
|
159 |
</p>
|
160 |
<p>
|
161 |
+
<label for="<?php echo $this->get_field_id( 'posts_per_page' ); ?>"><?php _e( 'Limit:', 'download-monitor' ); ?></label>
|
162 |
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'posts_per_page' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'posts_per_page' ) ); ?>" type="text" value="<?php echo esc_attr( $posts_per_page ); ?>" size="3" />
|
163 |
</p>
|
164 |
<p>
|
165 |
+
<label for="<?php echo $this->get_field_id( 'format' ); ?>"><?php _e( 'Output template:', 'download-monitor' ); ?></label>
|
166 |
+
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'format' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'format' ) ); ?>" type="text" value="<?php echo esc_attr( $format ); ?>" placeholder="<?php _e( 'Default template', 'download-monitor' ); ?>" />
|
167 |
</p>
|
168 |
<p>
|
169 |
+
<label for="<?php echo $this->get_field_id( 'orderby' ); ?>"><?php _e( 'Order by:', 'download-monitor' ); ?></label>
|
170 |
<select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'orderby' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'orderby' ) ); ?>" type="text">
|
171 |
+
<option value="title" <?php selected( $orderby, 'title' ); ?>><?php _e( 'Title', 'download-monitor' ); ?></option>
|
172 |
+
<option value="rand" <?php selected( $orderby, 'rand' ); ?>><?php _e( 'Random', 'download-monitor' ); ?></option>
|
173 |
+
<option value="ID" <?php selected( $orderby, 'ID' ); ?>><?php _e( 'ID', 'download-monitor' ); ?></option>
|
174 |
+
<option value="date" <?php selected( $orderby, 'date' ); ?>><?php _e( 'Date added', 'download-monitor' ); ?></option>
|
175 |
+
<option value="modified" <?php selected( $orderby, 'modified' ); ?>><?php _e( 'Date modified', 'download-monitor' ); ?></option>
|
176 |
+
<option value="download_count" <?php selected( $orderby, 'download_count' ); ?>><?php _e( 'Download count', 'download-monitor' ); ?></option>
|
177 |
</select>
|
178 |
</p>
|
179 |
<p>
|
180 |
+
<label for="<?php echo $this->get_field_id( 'order' ); ?>"><?php _e( 'Order:', 'download-monitor' ); ?></label>
|
181 |
<select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'order' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'order' ) ); ?>" type="text">
|
182 |
+
<option value="ASC" <?php selected( $order, 'ASC' ); ?>><?php _e( 'ASC', 'download-monitor' ); ?></option>
|
183 |
+
<option value="DESC" <?php selected( $order, 'DESC' ); ?>><?php _e( 'DESC', 'download-monitor' ); ?></option>
|
184 |
</select>
|
185 |
</p>
|
186 |
<p>
|
187 |
<input id="<?php echo esc_attr( $this->get_field_id( 'featured' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'featured' ) ); ?>" type="checkbox" <?php checked( $featured, 'yes' ); ?> />
|
188 |
+
<label for="<?php echo $this->get_field_id( 'featured' ); ?>"><?php _e( 'Show only featured downloads', 'download-monitor' ); ?></label>
|
189 |
</p>
|
190 |
<p>
|
191 |
<input id="<?php echo esc_attr( $this->get_field_id( 'members_only' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'members_only' ) ); ?>" type="checkbox" <?php checked( $members_only, 'yes' ); ?> />
|
192 |
+
<label for="<?php echo $this->get_field_id( 'members_only' ); ?>"><?php _e( 'Show only members only downloads', 'download-monitor' ); ?></label>
|
193 |
</p>
|
194 |
<?php
|
195 |
}
|
languages/download-monitor-de_DE.mo
ADDED
Binary file
|
languages/{download_monitor-de_DE.po → download-monitor-de_DE.po}
RENAMED
@@ -1,947 +1,915 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
|
15 |
-
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
-
"X-Poedit-Basepath: \n"
|
19 |
-
"X-Poedit-Bookmarks: \n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
"X-Textdomain-Support: yes"
|
22 |
-
|
23 |
-
#: download-monitor.php:90
|
24 |
-
#: includes/admin/class-dlm-admin.php:206
|
25 |
-
#@ download_monitor
|
26 |
msgid "Settings"
|
27 |
msgstr "Einstellungen"
|
28 |
|
29 |
-
#: download-monitor.php:
|
30 |
-
#@ download_monitor
|
31 |
msgid "Add-ons"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: download-monitor.php:
|
35 |
-
#@ download_monitor
|
36 |
msgid "Docs"
|
37 |
msgstr "Doku"
|
38 |
|
39 |
-
#: download-monitor.php:
|
40 |
-
#:
|
41 |
-
#: includes/admin/class-dlm-admin-cpt.php:174
|
42 |
-
#@ download_monitor
|
43 |
msgid "Categories"
|
44 |
msgstr "Kategorien"
|
45 |
|
46 |
-
#: download-monitor.php:
|
47 |
-
#@ download_monitor
|
48 |
msgid "Download Category"
|
49 |
msgstr "Download Kategorie"
|
50 |
|
51 |
-
#: download-monitor.php:
|
52 |
-
#@ download_monitor
|
53 |
msgid "Search Download Categories"
|
54 |
msgstr "Kategorien durchsuchen"
|
55 |
|
56 |
-
#: download-monitor.php:
|
57 |
-
#@ download_monitor
|
58 |
msgid "All Download Categories"
|
59 |
msgstr "Alle Download Kategorien"
|
60 |
|
61 |
-
#: download-monitor.php:
|
62 |
-
#@ download_monitor
|
63 |
msgid "Parent Download Category"
|
64 |
msgstr "Übergeordnete Download-Kategorie"
|
65 |
|
66 |
-
#: download-monitor.php:
|
67 |
-
#@ download_monitor
|
68 |
msgid "Parent Download Category:"
|
69 |
msgstr "Übergeordnete Download-Kategorie:"
|
70 |
|
71 |
-
#: download-monitor.php:
|
72 |
-
#@ download_monitor
|
73 |
msgid "Edit Download Category"
|
74 |
msgstr "Download-Kategorie bearbeiten"
|
75 |
|
76 |
-
#: download-monitor.php:
|
77 |
-
#@ download_monitor
|
78 |
msgid "Update Download Category"
|
79 |
msgstr "Download-Kategorie aktualisieren"
|
80 |
|
81 |
-
#: download-monitor.php:
|
82 |
-
#@ download_monitor
|
83 |
msgid "Add New Download Category"
|
84 |
msgstr "Download-Kategorie hinzufügen"
|
85 |
|
86 |
-
#: download-monitor.php:
|
87 |
-
#@ download_monitor
|
88 |
msgid "New Download Category Name"
|
89 |
msgstr "Neuer Name für Download-Kategorie"
|
90 |
|
91 |
-
#: download-monitor.php:
|
92 |
-
#:
|
93 |
-
#: includes/admin/class-dlm-admin-cpt.php:175
|
94 |
-
#@ download_monitor
|
95 |
msgid "Tags"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: download-monitor.php:
|
99 |
-
#@ download_monitor
|
100 |
msgid "Download Tag"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: download-monitor.php:
|
104 |
-
#@ download_monitor
|
105 |
msgid "Search Download Tags"
|
106 |
msgstr "Download Tags durchsuchen"
|
107 |
|
108 |
-
#: download-monitor.php:
|
109 |
-
#@ download_monitor
|
110 |
msgid "All Download Tags"
|
111 |
msgstr "Alle Download Tags"
|
112 |
|
113 |
-
#: download-monitor.php:
|
114 |
-
#@ download_monitor
|
115 |
msgid "Parent Download Tag"
|
116 |
msgstr "Übergeordneter Download Tag"
|
117 |
|
118 |
-
#: download-monitor.php:
|
119 |
-
#@ download_monitor
|
120 |
msgid "Parent Download Tag:"
|
121 |
msgstr "Übergeordneter Download Tag:"
|
122 |
|
123 |
-
#: download-monitor.php:
|
124 |
-
#@ download_monitor
|
125 |
msgid "Edit Download Tag"
|
126 |
msgstr "Download Tag bearbeiten"
|
127 |
|
128 |
-
#: download-monitor.php:
|
129 |
-
#@ download_monitor
|
130 |
msgid "Update Download Tag"
|
131 |
msgstr "Download Tag aktualisieren"
|
132 |
|
133 |
-
#: download-monitor.php:
|
134 |
-
#@ download_monitor
|
135 |
msgid "Add New Download Tag"
|
136 |
msgstr "Download Tag hinzufügen"
|
137 |
|
138 |
-
#: download-monitor.php:
|
139 |
-
#@ download_monitor
|
140 |
msgid "New Download Tag Name"
|
141 |
msgstr "Neuer Name für Download Tag"
|
142 |
|
143 |
-
#: download-monitor.php:
|
144 |
-
|
|
|
|
|
|
|
145 |
msgid "Downloads"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: download-monitor.php:
|
149 |
-
#: includes/admin/class-dlm-
|
150 |
-
#: includes/admin/class-dlm-logging-list-table.php:116
|
151 |
-
#@ download_monitor
|
152 |
msgid "Download"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: download-monitor.php:
|
156 |
-
#@ download_monitor
|
157 |
msgid "Add New"
|
158 |
msgstr "Neuer Eintrag"
|
159 |
|
160 |
-
#: download-monitor.php:
|
161 |
-
#@ download_monitor
|
162 |
msgid "Add Download"
|
163 |
msgstr "Download hinzufügen"
|
164 |
|
165 |
-
#: download-monitor.php:
|
166 |
-
#@ download_monitor
|
167 |
msgid "Edit"
|
168 |
msgstr "Bearbeiten"
|
169 |
|
170 |
-
#: download-monitor.php:
|
171 |
-
#@ download_monitor
|
172 |
msgid "Edit Download"
|
173 |
msgstr "Download bearbeiten"
|
174 |
|
175 |
-
#: download-monitor.php:
|
176 |
-
#@ download_monitor
|
177 |
msgid "New Download"
|
178 |
msgstr "Neue Download-Eintrag"
|
179 |
|
180 |
-
#: download-monitor.php:
|
181 |
-
#: download-monitor.php:308
|
182 |
-
#@ download_monitor
|
183 |
msgid "View Download"
|
184 |
msgstr "Download-Informationen ansehen"
|
185 |
|
186 |
-
#: download-monitor.php:
|
187 |
-
#@ download_monitor
|
188 |
msgid "Search Downloads"
|
189 |
msgstr "Downloads durchsuchen"
|
190 |
|
191 |
-
#: download-monitor.php:
|
192 |
-
#@ download_monitor
|
193 |
msgid "No Downloads found"
|
194 |
msgstr "Keine Downloads gefunden"
|
195 |
|
196 |
-
#: download-monitor.php:
|
197 |
-
#@ download_monitor
|
198 |
msgid "No Downloads found in trash"
|
199 |
msgstr "Keine Downloads im Papierkorb"
|
200 |
|
201 |
-
#: download-monitor.php:
|
202 |
-
#@ download_monitor
|
203 |
msgid "Parent Download"
|
204 |
msgstr "Übergeordneter Download-Eintrag"
|
205 |
|
206 |
-
#: download-monitor.php:
|
207 |
-
#@ download_monitor
|
208 |
msgid "This is where you can create and manage downloads for your site."
|
209 |
msgstr "Hier können sie die Downloads für ihre Seite verwalten"
|
210 |
|
|
|
|
|
|
|
|
|
|
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
212 |
-
#@ download_monitor
|
213 |
msgid "Select a category"
|
214 |
msgstr "Kategorie auswählen"
|
215 |
|
216 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
217 |
-
#@ download_monitor
|
218 |
msgid "Download title"
|
219 |
msgstr "Titel des Downloads"
|
220 |
|
221 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
222 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
223 |
-
#@ download_monitor
|
224 |
msgid "Download updated."
|
225 |
msgstr "Download aktualisiert."
|
226 |
|
227 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
228 |
-
#@ download_monitor
|
229 |
msgid "Custom field updated."
|
230 |
msgstr "Sonderfeld aktualisiert."
|
231 |
|
232 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
233 |
-
#@ download_monitor
|
234 |
msgid "Custom field deleted."
|
235 |
msgstr "Sonderfeld gelöscht."
|
236 |
|
237 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
238 |
-
#, php-format
|
239 |
-
#@ download_monitor
|
240 |
msgid "Download restored to revision from %s"
|
241 |
msgstr "Download Version von Datum %s wiederhergestellt."
|
242 |
|
243 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
244 |
-
#@ download_monitor
|
245 |
msgid "Download published."
|
246 |
msgstr "Download veröffentlicht."
|
247 |
|
248 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
249 |
-
#@ download_monitor
|
250 |
msgid "Download saved."
|
251 |
msgstr "Download gespeichert."
|
252 |
|
253 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
254 |
-
#@ download_monitor
|
255 |
msgid "Download submitted."
|
256 |
msgstr "Download eingereicht."
|
257 |
|
258 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
259 |
-
#, php-format
|
260 |
-
#@ download_monitor
|
261 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
262 |
msgstr "Download geplant für: <strong>%1$s</strong>."
|
263 |
|
264 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
265 |
-
#@ download_monitor
|
266 |
msgid "M j, Y @ G:i"
|
267 |
msgstr ""
|
268 |
|
269 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
270 |
-
#@ download_monitor
|
271 |
msgid "Download draft updated."
|
272 |
msgstr "Download Entwurf aktualisiert."
|
273 |
|
274 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
275 |
-
#@ download_monitor
|
276 |
msgid "Image"
|
277 |
msgstr "Bild"
|
278 |
|
279 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
280 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
281 |
-
#@ download_monitor
|
282 |
msgid "Title"
|
283 |
msgstr "Titel"
|
284 |
|
285 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
286 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
287 |
-
#@ download_monitor
|
288 |
msgid "ID"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
292 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
293 |
-
#@ download_monitor
|
294 |
msgid "File"
|
295 |
msgstr "Datei"
|
296 |
|
297 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
298 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
299 |
-
#: includes/admin/html-downloadable-file-version.php:
|
300 |
-
#@ download_monitor
|
301 |
msgid "Version"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
305 |
-
|
306 |
-
|
307 |
-
|
|
|
|
|
308 |
|
309 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
310 |
-
#@ download_monitor
|
311 |
msgid "Featured"
|
312 |
msgstr "Hervorgehobene Artikel"
|
313 |
|
314 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
315 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
316 |
-
#@ download_monitor
|
317 |
msgid "Members only"
|
318 |
msgstr "Nur für Mitglieder"
|
319 |
|
320 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
321 |
-
|
|
|
|
|
|
|
322 |
msgid "Date posted"
|
323 |
msgstr "Veröffentlichungs-Datum"
|
324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
326 |
-
#@ download_monitor
|
327 |
msgid "Popular Downloads"
|
328 |
msgstr "Beliebte Downloads"
|
329 |
|
330 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
331 |
-
#@ download_monitor
|
332 |
msgid "There are no stats available yet!"
|
333 |
msgstr "Es liegen noch keine Statistiken vor."
|
334 |
|
335 |
-
#: includes/admin/class-dlm-admin-dashboard.php:68
|
336 |
-
#: includes/admin/html-downloadable-file-version.php:29
|
337 |
-
#: includes/widgets/class-dlm-widget-downloads.php:176
|
338 |
-
#@ download_monitor
|
339 |
-
msgid "Download count"
|
340 |
-
msgstr "Download-Anzahl"
|
341 |
-
|
342 |
#: includes/admin/class-dlm-admin-insert.php:32
|
343 |
#: includes/admin/class-dlm-admin-insert.php:40
|
344 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
345 |
-
#@ download_monitor
|
346 |
msgid "Insert Download"
|
347 |
msgstr "Download einfügen"
|
348 |
|
349 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
350 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
351 |
-
#@ download_monitor
|
352 |
msgid "Insert Shortcode"
|
353 |
msgstr "Shortcode einfügen"
|
354 |
|
355 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
356 |
-
#@ download_monitor
|
357 |
msgid "Quick-add download"
|
358 |
msgstr "Download schnell hinzufügen"
|
359 |
|
360 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
361 |
-
#@ download_monitor
|
362 |
msgid "Error: File was not created."
|
363 |
msgstr "Fehler: Datei nicht erstellt."
|
364 |
|
365 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
366 |
-
#@ download_monitor
|
367 |
msgid "Download successfully created."
|
368 |
msgstr "Download-Eintrag erfolgreich erstellt."
|
369 |
|
370 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
371 |
-
#@ download_monitor
|
372 |
msgid "Error: Download was not created."
|
373 |
msgstr "Fehler: Download-Eintrag nicht erstellt."
|
374 |
|
375 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
376 |
-
#@ download_monitor
|
377 |
msgid "Choose a download"
|
378 |
msgstr "Download auswählen."
|
379 |
|
380 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
381 |
-
#@ download_monitor
|
382 |
msgid "Template"
|
383 |
msgstr "Vorlage"
|
384 |
|
385 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
386 |
-
#@ download_monitor
|
387 |
msgid "Template Name"
|
388 |
msgstr "Name der Vorlage"
|
389 |
|
390 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
391 |
-
|
392 |
-
|
393 |
-
|
|
|
394 |
msgstr "Wenn sie dieses Feld freilassen wird die Vorlage <code>content-download.php</code> verwendet. Wenn sie zum Beispiel <code>image</code> eingeben, wird die Vorlage <code>content-download-image.php</code> verwendet."
|
395 |
|
396 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
397 |
-
#@ download_monitor
|
398 |
msgid "Drop file here"
|
399 |
msgstr "Datei hier ablegen"
|
400 |
|
401 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
402 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
403 |
-
#@ download_monitor
|
404 |
msgid "or"
|
405 |
msgstr "oder"
|
406 |
|
407 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
408 |
-
#@ download_monitor
|
409 |
msgid "Select File"
|
410 |
msgstr "Datei auswählen"
|
411 |
|
412 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
413 |
-
#@ download_monitor
|
414 |
msgid "Enter URL manually"
|
415 |
msgstr "URL selbst eintragen"
|
416 |
|
417 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
418 |
-
#@ download_monitor
|
419 |
msgid "Download URL"
|
420 |
msgstr "URL herunterladen"
|
421 |
|
422 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
423 |
-
#@ download_monitor
|
424 |
msgid "Required URL"
|
425 |
msgstr "URL erforderlich"
|
426 |
|
427 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
428 |
-
#@ download_monitor
|
429 |
msgid "Download Title"
|
430 |
msgstr "Download Titel"
|
431 |
|
432 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
433 |
-
#@ download_monitor
|
434 |
msgid "Required title"
|
435 |
msgstr "Titel erforderlich"
|
436 |
|
437 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
438 |
-
#@ download_monitor
|
439 |
msgid "Optional version number"
|
440 |
msgstr "Optionale Versionsnummer"
|
441 |
|
442 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
443 |
-
#@ download_monitor
|
444 |
msgid "Save Download"
|
445 |
msgstr "Download speichern"
|
446 |
|
447 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
448 |
-
#@ default
|
449 |
msgid "Allowed Files"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
453 |
-
#@ download_monitor
|
454 |
msgid "Please wait..."
|
455 |
msgstr "Bitte warten ..."
|
456 |
|
457 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
458 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
459 |
-
#@ download_monitor
|
460 |
msgid "Browse for a file"
|
461 |
msgstr "Nach Datei suchen"
|
462 |
|
463 |
-
#: includes/admin/class-dlm-admin-media-browser.php:
|
464 |
-
#@ download_monitor
|
465 |
msgid "No files found"
|
466 |
msgstr "Keine Dateien gefunden"
|
467 |
|
468 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
469 |
-
#@ download_monitor
|
470 |
msgid "Download Options"
|
471 |
msgstr "Download Optionen"
|
472 |
|
473 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
474 |
-
|
475 |
-
|
476 |
-
msgstr "Auswählbare Datei Versionen"
|
477 |
|
478 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
479 |
-
#@ download_monitor
|
480 |
msgid "Short Description"
|
481 |
msgstr "Kurze Beschreibung"
|
482 |
|
483 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
484 |
-
#@ download_monitor
|
485 |
msgid "Featured download"
|
486 |
msgstr "Hervorgehobene Download"
|
487 |
|
488 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
489 |
-
#@ download_monitor
|
490 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
491 |
msgstr "Download als hervorgehoben markieren. Die Hervorhebung wird in shortcodes und widgets verwendet."
|
492 |
|
493 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
494 |
-
|
495 |
-
|
|
|
496 |
msgstr "Nur angemeldete Benutzer haben Zugriff auf die Datei, wenn dies ausgewählt ist."
|
497 |
|
498 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
499 |
-
|
500 |
-
|
501 |
-
|
|
|
|
|
|
|
|
|
|
|
502 |
|
503 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
504 |
-
|
|
|
|
|
|
|
505 |
msgid "Close all"
|
506 |
msgstr "Alle schließen"
|
507 |
|
508 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
509 |
-
#@ download_monitor
|
510 |
msgid "Expand all"
|
511 |
msgstr "Alles expandieren"
|
512 |
|
513 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
514 |
-
#@ download_monitor
|
515 |
msgid "Are you sure you want to delete this file?"
|
516 |
msgstr "Sind sie sicher dass sie dides Datei löschen möchten?"
|
517 |
|
518 |
-
#: includes/admin/class-dlm-admin.php:
|
519 |
-
#@ download_monitor
|
520 |
msgid "General"
|
521 |
msgstr "Allgemein"
|
522 |
|
523 |
-
#: includes/admin/class-dlm-admin.php:
|
524 |
-
#@ download_monitor
|
525 |
msgid "Default Template"
|
526 |
msgstr "Standard-Vorlage"
|
527 |
|
528 |
-
#: includes/admin/class-dlm-admin.php:
|
529 |
-
|
530 |
-
|
|
|
531 |
msgstr "Vorlage auswählen für <code>[download]</code> shortcodes (kann mit dem <code>format</code> Argument überschrieben werden)."
|
532 |
|
533 |
-
#: includes/admin/class-dlm-admin.php:
|
534 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
535 |
msgid "Endpoint"
|
536 |
msgstr "Endpunkt"
|
537 |
|
538 |
-
#: includes/admin/class-dlm-admin.php:
|
539 |
-
#@ download_monitor
|
540 |
msgid "download"
|
541 |
msgstr "Download"
|
542 |
|
543 |
-
#: includes/admin/class-dlm-admin.php:
|
544 |
-
#@ download_monitor
|
545 |
msgid "Download Endpoint"
|
546 |
msgstr "Download Endpunkt"
|
547 |
|
548 |
-
#: includes/admin/class-dlm-admin.php:
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
msgstr "Bestimme den Endpunkt für Download-Links. Standardmäßig: <code>%s</code>."
|
553 |
|
554 |
-
#: includes/admin/class-dlm-admin.php:
|
555 |
-
#@ download_monitor
|
556 |
msgid "Endpoint Value"
|
557 |
msgstr "Endpunkt Werte"
|
558 |
|
559 |
-
#: includes/admin/class-dlm-admin.php:
|
560 |
-
|
561 |
-
|
562 |
-
|
|
|
563 |
msgstr "Bestimme welche Werte am Ende ihres Endpunkts stehen sollen zur Identifikation ihrer Download-Datei. Zum Beispiel: ID ergibt den folgenden Link <code>%s</code>"
|
564 |
|
565 |
-
#: includes/admin/class-dlm-admin.php:
|
566 |
-
#: includes/admin/class-dlm-admin.php:
|
567 |
-
#@ download_monitor
|
568 |
msgid "Download ID"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/admin/class-dlm-admin.php:
|
572 |
-
#@ download_monitor
|
573 |
msgid "Download slug"
|
574 |
msgstr "Download Slug"
|
575 |
|
576 |
-
#: includes/admin/class-dlm-admin.php:
|
577 |
-
#@ download_monitor
|
578 |
msgid "X-Accel-Redirect / X-Sendfile"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: includes/admin/class-dlm-admin.php:
|
582 |
-
#: includes/admin/class-dlm-admin.php:
|
583 |
-
|
584 |
msgid "Enable"
|
585 |
msgstr "Anschalten"
|
586 |
|
587 |
-
#: includes/admin/class-dlm-admin.php:
|
588 |
-
|
589 |
-
|
|
|
|
|
590 |
msgstr "Falls unterstützt, können <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> genutzt werden, anstelle von PHP (Server braucht <code>mod_xsendfile</code>)."
|
591 |
|
592 |
-
#: includes/admin/class-dlm-admin.php:
|
593 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
594 |
msgid "Logging"
|
595 |
msgstr "Log Aufzeichung"
|
596 |
|
597 |
-
#: includes/admin/class-dlm-admin.php:
|
598 |
-
#@ download_monitor
|
599 |
msgid "Download Log"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: includes/admin/class-dlm-admin.php:
|
603 |
-
#@ download_monitor
|
604 |
msgid "Log download attempts, IP addresses and more."
|
605 |
msgstr "Download Versuche, IP Adressen und anderes aufzeichnen."
|
606 |
|
607 |
-
#: includes/admin/class-dlm-admin.php:
|
608 |
-
#@ download_monitor
|
609 |
msgid "Blacklist IPs"
|
610 |
msgstr "IPs sperren (Blacklist)"
|
611 |
|
612 |
-
#: includes/admin/class-dlm-admin.php:
|
613 |
-
|
614 |
-
|
|
|
615 |
msgstr "IP Adressen auf Blackliste setzen, 1 pro Linie. Code <code>*</code> als Wildcard."
|
616 |
|
617 |
-
#: includes/admin/class-dlm-admin.php:
|
618 |
-
#@ download_monitor
|
619 |
msgid "Blacklist user agents"
|
620 |
msgstr "User Agents sperren"
|
621 |
|
622 |
-
#: includes/admin/class-dlm-admin.php:
|
623 |
-
#@ download_monitor
|
624 |
msgid "List browser user agents to blacklist, 1 per line."
|
625 |
msgstr "User Agents für Sperrung auflisten, einer pro Linie."
|
626 |
|
627 |
-
#: includes/admin/class-dlm-admin.php:
|
628 |
-
#@ download_monitor
|
629 |
msgid "Logs"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: includes/admin/class-dlm-admin.php:
|
633 |
-
#@ download_monitor
|
634 |
msgid "Settings successfully saved"
|
635 |
msgstr "Einstellungen gespeichert"
|
636 |
|
637 |
-
#: includes/admin/class-dlm-admin.php:
|
638 |
-
#@ download_monitor
|
639 |
msgid "Save Changes"
|
640 |
msgstr "Änderungen speichern"
|
641 |
|
642 |
-
#: includes/admin/class-dlm-admin.php:
|
643 |
-
#@ download_monitor
|
644 |
msgid "Download Logs"
|
645 |
msgstr "Logs herunterladen"
|
646 |
|
647 |
-
#: includes/admin/class-dlm-admin.php:
|
648 |
-
#@ download_monitor
|
649 |
msgid "Export CSV"
|
650 |
msgstr "CSV exportieren"
|
651 |
|
652 |
-
#: includes/admin/class-dlm-admin.php:
|
653 |
-
|
|
|
|
|
|
|
654 |
msgid "Version ID"
|
655 |
msgstr "Versions-ID"
|
656 |
|
657 |
-
#: includes/admin/class-dlm-admin.php:
|
658 |
-
|
|
|
|
|
|
|
659 |
msgid "User ID"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: includes/admin/class-dlm-admin.php:
|
663 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
664 |
msgid "User IP"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/admin/class-dlm-admin.php:
|
668 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
669 |
-
#@ download_monitor
|
670 |
msgid "User Agent"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: includes/admin/class-dlm-admin.php:
|
674 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
675 |
-
#@ download_monitor
|
676 |
msgid "Date"
|
677 |
msgstr "Datum"
|
678 |
|
679 |
-
#: includes/admin/class-dlm-admin.php:
|
680 |
-
#@ download_monitor
|
681 |
msgid "Status"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
685 |
-
#@ download_monitor
|
686 |
msgid "Download Complete"
|
687 |
msgstr "Download-Eintrag komplett"
|
688 |
|
689 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
690 |
-
#, php-format
|
691 |
-
#@ download_monitor
|
692 |
msgid "%s ago"
|
693 |
msgstr "Zeit verstrichen: %s"
|
694 |
|
695 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
696 |
-
#, php-format
|
697 |
-
#@ download_monitor
|
698 |
msgid "Download #%d (no longer exists)"
|
699 |
msgstr "Download #%d (existiert nicht mehr)"
|
700 |
|
701 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
702 |
-
#, php-format
|
703 |
-
#@ download_monitor
|
704 |
msgid "v%s"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
708 |
-
#@ download_monitor
|
709 |
msgid "Non-member"
|
710 |
msgstr "Nicht-Mitglied"
|
711 |
|
712 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
713 |
-
#@ download_monitor
|
714 |
msgid "User"
|
715 |
msgstr "Benutzer"
|
716 |
|
717 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
718 |
-
#@ download_monitor
|
719 |
msgid "IP Address"
|
720 |
msgstr "IP Addresse"
|
721 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
#: includes/admin/html-downloadable-file-version.php:3
|
723 |
-
#@ download_monitor
|
724 |
msgid "Remove"
|
725 |
msgstr "Löschen"
|
726 |
|
727 |
#: includes/admin/html-downloadable-file-version.php:4
|
728 |
-
#@ download_monitor
|
729 |
msgid "Click to toggle"
|
730 |
msgstr "Zum Umschalten klicken"
|
731 |
|
732 |
#: includes/admin/html-downloadable-file-version.php:5
|
733 |
-
#, php-format
|
734 |
-
#@ download_monitor
|
735 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
736 |
msgstr ""
|
737 |
|
738 |
#: includes/admin/html-downloadable-file-version.php:5
|
739 |
-
#: includes/admin/html-downloadable-file-version.php:
|
740 |
-
#@ download_monitor
|
741 |
msgid "n/a"
|
742 |
msgstr "nicht verfügbar"
|
743 |
|
744 |
#: includes/admin/html-downloadable-file-version.php:5
|
745 |
-
#, php-format
|
746 |
-
#@ download_monitor
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
msgstr[0] "%s-mal heruntergeladen"
|
750 |
msgstr[1] "%s-mal heruntergeladen"
|
751 |
|
752 |
-
#: includes/admin/html-downloadable-file-version.php:
|
753 |
-
#@ download_monitor
|
754 |
msgid "File URL(s)"
|
755 |
msgstr "Datei URL(s)"
|
756 |
|
757 |
-
#: includes/admin/html-downloadable-file-version.php:
|
758 |
-
|
759 |
-
|
|
|
760 |
msgstr "Einen Pfad)Url pro Zeile - mehrere werden als file mirrors genutzt (zufällige Auswahl)."
|
761 |
|
762 |
-
#: includes/admin/html-downloadable-file-version.php:
|
763 |
-
|
|
|
|
|
|
|
764 |
msgid "Choose a file"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/admin/html-downloadable-file-version.php:
|
768 |
-
#@ woocommerce
|
769 |
msgid "Insert file URL"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: includes/admin/html-downloadable-file-version.php:
|
773 |
-
#@ download_monitor
|
774 |
-
msgid "Upload file"
|
775 |
-
msgstr "Datei auf den Server laden"
|
776 |
-
|
777 |
-
#: includes/admin/html-downloadable-file-version.php:22
|
778 |
-
#@ download_monitor
|
779 |
msgid "Browse for file"
|
780 |
msgstr "Datei suchen"
|
781 |
|
782 |
-
#: includes/admin/html-downloadable-file-version.php:
|
783 |
-
#@ download_monitor
|
784 |
msgid "File Date"
|
785 |
msgstr "Datei-Erstellungsdatum"
|
786 |
|
787 |
-
#: includes/admin/html-downloadable-file-version.php:
|
788 |
-
#@ download_monitor
|
789 |
msgid "h"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: includes/admin/html-downloadable-file-version.php:
|
793 |
-
#@ download_monitor
|
794 |
msgid "m"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/class-dlm-download-handler.php:
|
798 |
-
|
|
|
|
|
|
|
799 |
msgid "Download does not exist."
|
800 |
msgstr "Download existiert nicht."
|
801 |
|
802 |
-
#: includes/class-dlm-download-handler.php:
|
803 |
-
#: includes/class-dlm-download-handler.php:
|
804 |
-
#: includes/class-dlm-download-handler.php:
|
805 |
-
#: includes/class-dlm-download-handler.php:
|
806 |
-
#: includes/class-dlm-download-handler.php:
|
807 |
-
#@ download_monitor
|
808 |
msgid "Go to homepage →"
|
809 |
msgstr "Zur Homepage →"
|
810 |
|
811 |
-
#: includes/class-dlm-download-handler.php:
|
812 |
-
#: includes/class-dlm-download-handler.php:
|
813 |
-
#: includes/class-dlm-download-handler.php:
|
814 |
-
#: includes/class-dlm-download-handler.php:
|
815 |
-
#: includes/class-dlm-download-handler.php:
|
816 |
-
#@ download_monitor
|
817 |
msgid "Download Error"
|
818 |
msgstr "Downloadfehler"
|
819 |
|
820 |
-
#: includes/class-dlm-download-handler.php:
|
821 |
-
#: includes/class-dlm-download-handler.php:
|
822 |
-
#@ download_monitor
|
823 |
msgid "No file paths defined."
|
824 |
msgstr "Dateipfad nicht definiert."
|
825 |
|
826 |
-
#: includes/class-dlm-download-handler.php:
|
827 |
-
#@ download_monitor
|
828 |
msgid "You do not have permission to access this download."
|
829 |
msgstr "Sie besitzen nicht die nötige Berechtigung, um auf diese Download-Datei zuzugreifen."
|
830 |
|
831 |
-
#: includes/class-dlm-download-handler.php:
|
832 |
-
#: includes/class-dlm-download-handler.php:
|
833 |
-
#: includes/class-dlm-download-handler.php:
|
834 |
-
#: includes/class-dlm-download-handler.php:
|
835 |
-
#@ download_monitor
|
836 |
msgid "Redirected to file"
|
837 |
msgstr "Weitergeleitet zu Datei"
|
838 |
|
839 |
-
#: includes/class-dlm-download-handler.php:
|
840 |
-
#@ download_monitor
|
841 |
msgid "Redirected to remote file."
|
842 |
msgstr "Weitergeleitet zu Datei auf anderem Server"
|
843 |
|
844 |
-
#: includes/class-dlm-download-handler.php:
|
845 |
-
#@ download_monitor
|
846 |
msgid "File not found"
|
847 |
msgstr "Datei nicht gefunden"
|
848 |
|
849 |
-
#: includes/class-dlm-download-handler.php:
|
850 |
-
#@ download_monitor
|
851 |
msgid "File not found."
|
852 |
msgstr "Datei nicht gefunden."
|
853 |
|
854 |
-
#: includes/class-dlm-shortcodes.php:
|
855 |
-
#@ download_monitor
|
856 |
msgid "Download not found"
|
857 |
msgstr "Download Eintrag nicht gefunden."
|
858 |
|
859 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
860 |
-
#@ download_monitor
|
861 |
msgid "Display a list of your downloads."
|
862 |
msgstr "Liste der Downloads anzeigen."
|
863 |
|
864 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
865 |
-
#@ download_monitor
|
866 |
msgid "Downloads List"
|
867 |
msgstr "Liste der Downloads"
|
868 |
|
869 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
870 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
871 |
-
#@ download_monitor
|
872 |
msgid "Featured Downloads"
|
873 |
msgstr "Hervorgehobene Downloads"
|
874 |
|
875 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
876 |
-
#@ download_monitor
|
877 |
msgid "Title:"
|
878 |
msgstr "Titel:"
|
879 |
|
880 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
881 |
-
#@ download_monitor
|
882 |
msgid "Limit:"
|
883 |
msgstr ""
|
884 |
|
885 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
886 |
-
#@ download_monitor
|
887 |
msgid "Output template:"
|
888 |
msgstr "Vorlage für Ausgabe:"
|
889 |
|
890 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
891 |
-
#@ download_monitor
|
892 |
msgid "Default template"
|
893 |
msgstr "Standard-Vorlage"
|
894 |
|
895 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
896 |
-
#@ download_monitor
|
897 |
msgid "Order by:"
|
898 |
msgstr "Geordnet nach:"
|
899 |
|
900 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
901 |
-
#@ download_monitor
|
902 |
msgid "Random"
|
903 |
msgstr "Zufällig"
|
904 |
|
905 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
906 |
-
#@ download_monitor
|
907 |
msgid "Date added"
|
908 |
msgstr "Erstellungs-Datum"
|
909 |
|
910 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
911 |
-
#@ download_monitor
|
912 |
msgid "Date modified"
|
913 |
msgstr "Letzte Änderung"
|
914 |
|
915 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
916 |
-
#@ download_monitor
|
917 |
msgid "Order:"
|
918 |
msgstr "Reihenfolge:"
|
919 |
|
920 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
921 |
-
#@ download_monitor
|
922 |
msgid "ASC"
|
923 |
msgstr "Auf"
|
924 |
|
925 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
926 |
-
#@ download_monitor
|
927 |
msgid "DESC"
|
928 |
msgstr "Ab"
|
929 |
|
930 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
931 |
-
#@ download_monitor
|
932 |
msgid "Show only featured downloads"
|
933 |
msgstr "Nur hervorgehobene Downloads anzeigen"
|
934 |
|
935 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
936 |
-
#@ download_monitor
|
937 |
msgid "Show only members only downloads"
|
938 |
msgstr "Downloads nur Mitgliedern anzeigen"
|
939 |
|
940 |
#: templates/content-download-box.php:12
|
941 |
-
#: templates/content-download-filename.php:9
|
942 |
-
#: templates/content-download.php:9
|
943 |
-
#, php-format
|
944 |
-
#@ download_monitor
|
945 |
msgid "1 download"
|
946 |
msgid_plural "%d downloads"
|
947 |
msgstr[0] "1 Download"
|
@@ -949,28 +917,44 @@ msgstr[1] "%d Downloads"
|
|
949 |
|
950 |
#: templates/content-download-box.php:20
|
951 |
#: templates/content-download-filename.php:8
|
952 |
-
#: templates/content-download.php:8
|
953 |
-
#, php-format
|
954 |
-
#@ download_monitor
|
955 |
msgid "Version %s"
|
956 |
msgstr ""
|
957 |
|
958 |
#: templates/content-download-box.php:21
|
959 |
-
#@ download_monitor
|
960 |
msgid "Download File"
|
961 |
msgstr "Datei herunterladen"
|
962 |
|
963 |
#: templates/content-download-button.php:9
|
964 |
-
#, php-format
|
965 |
-
#@ download_monitor
|
966 |
msgid "Download “%s”"
|
967 |
msgstr ""
|
968 |
|
969 |
#: templates/content-download-button.php:10
|
970 |
-
|
971 |
-
#@ download_monitor
|
972 |
msgid "Downloaded 1 time"
|
973 |
msgid_plural "Downloaded %d times"
|
974 |
msgstr[0] "Einmal heruntergeladen"
|
975 |
msgstr[1] "%d-mal heruntergeladen"
|
976 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:24+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/download-monitor/language/de_DE/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: de_DE\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "Einstellungen"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
|
|
23 |
msgid "Add-ons"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: download-monitor.php:94
|
|
|
27 |
msgid "Docs"
|
28 |
msgstr "Doku"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
|
|
|
|
32 |
msgid "Categories"
|
33 |
msgstr "Kategorien"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
|
|
36 |
msgid "Download Category"
|
37 |
msgstr "Download Kategorie"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
|
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "Kategorien durchsuchen"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
|
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "Alle Download Kategorien"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
|
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "Übergeordnete Download-Kategorie"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
|
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "Übergeordnete Download-Kategorie:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
|
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "Download-Kategorie bearbeiten"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
|
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "Download-Kategorie aktualisieren"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
|
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "Download-Kategorie hinzufügen"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
|
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "Neuer Name für Download-Kategorie"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
|
|
|
|
73 |
msgid "Tags"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: download-monitor.php:274
|
|
|
77 |
msgid "Download Tag"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: download-monitor.php:275
|
|
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "Download Tags durchsuchen"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
|
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "Alle Download Tags"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
|
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "Übergeordneter Download Tag"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
|
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "Übergeordneter Download Tag:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
|
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "Download Tag bearbeiten"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
|
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "Download Tag aktualisieren"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
|
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "Download Tag hinzufügen"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
|
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "Neuer Name für Download Tag"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
121 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
|
|
|
|
122 |
msgid "Download"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: download-monitor.php:306
|
|
|
126 |
msgid "Add New"
|
127 |
msgstr "Neuer Eintrag"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
|
|
130 |
msgid "Add Download"
|
131 |
msgstr "Download hinzufügen"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
|
|
134 |
msgid "Edit"
|
135 |
msgstr "Bearbeiten"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
|
|
138 |
msgid "Edit Download"
|
139 |
msgstr "Download bearbeiten"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
|
|
142 |
msgid "New Download"
|
143 |
msgstr "Neue Download-Eintrag"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
|
|
|
|
146 |
msgid "View Download"
|
147 |
msgstr "Download-Informationen ansehen"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
|
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "Downloads durchsuchen"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
|
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "Keine Downloads gefunden"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
|
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "Keine Downloads im Papierkorb"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
|
|
162 |
msgid "Parent Download"
|
163 |
msgstr "Übergeordneter Download-Eintrag"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
|
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "Hier können sie die Downloads für ihre Seite verwalten"
|
168 |
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
|
|
175 |
msgid "Select a category"
|
176 |
msgstr "Kategorie auswählen"
|
177 |
|
178 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
|
|
179 |
msgid "Download title"
|
180 |
msgstr "Titel des Downloads"
|
181 |
|
182 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
|
|
184 |
msgid "Download updated."
|
185 |
msgstr "Download aktualisiert."
|
186 |
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
|
|
188 |
msgid "Custom field updated."
|
189 |
msgstr "Sonderfeld aktualisiert."
|
190 |
|
191 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
|
|
192 |
msgid "Custom field deleted."
|
193 |
msgstr "Sonderfeld gelöscht."
|
194 |
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "Download Version von Datum %s wiederhergestellt."
|
198 |
|
199 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
|
|
200 |
msgid "Download published."
|
201 |
msgstr "Download veröffentlicht."
|
202 |
|
203 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
|
|
204 |
msgid "Download saved."
|
205 |
msgstr "Download gespeichert."
|
206 |
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
|
|
208 |
msgid "Download submitted."
|
209 |
msgstr "Download eingereicht."
|
210 |
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "Download geplant für: <strong>%1$s</strong>."
|
214 |
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
|
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr ""
|
218 |
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
|
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "Download Entwurf aktualisiert."
|
222 |
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
|
|
224 |
msgid "Image"
|
225 |
msgstr "Bild"
|
226 |
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
|
|
229 |
msgid "Title"
|
230 |
msgstr "Titel"
|
231 |
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
|
|
234 |
msgid "ID"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
238 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
|
|
239 |
msgid "File"
|
240 |
msgstr "Datei"
|
241 |
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
|
|
245 |
msgid "Version"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
+
msgstr "Download-Anzahl"
|
254 |
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
|
|
256 |
msgid "Featured"
|
257 |
msgstr "Hervorgehobene Artikel"
|
258 |
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
|
|
261 |
msgid "Members only"
|
262 |
msgstr "Nur für Mitglieder"
|
263 |
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "Veröffentlichungs-Datum"
|
271 |
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
|
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "Beliebte Downloads"
|
281 |
|
282 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
|
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "Es liegen noch keine Statistiken vor."
|
285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
#: includes/admin/class-dlm-admin-insert.php:40
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
|
|
289 |
msgid "Insert Download"
|
290 |
msgstr "Download einfügen"
|
291 |
|
292 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
|
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "Shortcode einfügen"
|
296 |
|
297 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
|
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "Download schnell hinzufügen"
|
300 |
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
|
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "Fehler: Datei nicht erstellt."
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
|
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "Download-Eintrag erfolgreich erstellt."
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
|
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "Fehler: Download-Eintrag nicht erstellt."
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
|
|
314 |
msgid "Choose a download"
|
315 |
msgstr "Download auswählen."
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
|
|
318 |
msgid "Template"
|
319 |
msgstr "Vorlage"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
|
|
322 |
msgid "Template Name"
|
323 |
msgstr "Name der Vorlage"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
326 |
+
msgid ""
|
327 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
msgstr "Wenn sie dieses Feld freilassen wird die Vorlage <code>content-download.php</code> verwendet. Wenn sie zum Beispiel <code>image</code> eingeben, wird die Vorlage <code>content-download-image.php</code> verwendet."
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
|
|
333 |
msgid "Drop file here"
|
334 |
msgstr "Datei hier ablegen"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
|
|
338 |
msgid "or"
|
339 |
msgstr "oder"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
|
|
342 |
msgid "Select File"
|
343 |
msgstr "Datei auswählen"
|
344 |
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
|
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "URL selbst eintragen"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
|
|
350 |
msgid "Download URL"
|
351 |
msgstr "URL herunterladen"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
|
|
354 |
msgid "Required URL"
|
355 |
msgstr "URL erforderlich"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
|
|
358 |
msgid "Download Title"
|
359 |
msgstr "Download Titel"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
|
|
362 |
msgid "Required title"
|
363 |
msgstr "Titel erforderlich"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
|
|
366 |
msgid "Optional version number"
|
367 |
msgstr "Optionale Versionsnummer"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
|
|
370 |
msgid "Save Download"
|
371 |
msgstr "Download speichern"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
|
|
374 |
msgid "Allowed Files"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
|
|
378 |
msgid "Please wait..."
|
379 |
msgstr "Bitte warten ..."
|
380 |
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
|
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "Nach Datei suchen"
|
385 |
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
|
|
387 |
msgid "No files found"
|
388 |
msgstr "Keine Dateien gefunden"
|
389 |
|
390 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
|
|
391 |
msgid "Download Options"
|
392 |
msgstr "Download Optionen"
|
393 |
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr ""
|
|
|
397 |
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
|
|
399 |
msgid "Short Description"
|
400 |
msgstr "Kurze Beschreibung"
|
401 |
|
402 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
|
|
403 |
msgid "Featured download"
|
404 |
msgstr "Hervorgehobene Download"
|
405 |
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
|
|
407 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
msgstr "Download als hervorgehoben markieren. Die Hervorhebung wird in shortcodes und widgets verwendet."
|
409 |
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
+
msgid ""
|
412 |
+
"Only logged in users will be able to access the file via a download link if "
|
413 |
+
"this is enabled."
|
414 |
msgstr "Nur angemeldete Benutzer haben Zugriff auf die Datei, wenn dies ausgewählt ist."
|
415 |
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr ""
|
425 |
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
431 |
msgid "Close all"
|
432 |
msgstr "Alle schließen"
|
433 |
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
435 |
msgid "Expand all"
|
436 |
msgstr "Alles expandieren"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
|
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "Sind sie sicher dass sie dides Datei löschen möchten?"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
|
|
443 |
msgid "General"
|
444 |
msgstr "Allgemein"
|
445 |
|
446 |
+
#: includes/admin/class-dlm-admin.php:100
|
|
|
447 |
msgid "Default Template"
|
448 |
msgstr "Standard-Vorlage"
|
449 |
|
450 |
+
#: includes/admin/class-dlm-admin.php:101
|
451 |
+
msgid ""
|
452 |
+
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
+
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
msgstr "Vorlage auswählen für <code>[download]</code> shortcodes (kann mit dem <code>format</code> Argument überschrieben werden)."
|
455 |
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "Endpunkt"
|
499 |
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
|
|
501 |
msgid "download"
|
502 |
msgstr "Download"
|
503 |
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
|
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "Download Endpunkt"
|
507 |
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
509 |
+
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
msgstr "Bestimme den Endpunkt für Download-Links. Standardmäßig: <code>%s</code>."
|
513 |
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
|
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "Endpunkt Werte"
|
517 |
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
519 |
+
msgid ""
|
520 |
+
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
msgstr "Bestimme welche Werte am Ende ihres Endpunkts stehen sollen zur Identifikation ihrer Download-Datei. Zum Beispiel: ID ergibt den folgenden Link <code>%s</code>"
|
524 |
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
|
|
527 |
msgid "Download ID"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
|
|
531 |
msgid "Download slug"
|
532 |
msgstr "Download Slug"
|
533 |
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
|
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "Anschalten"
|
543 |
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
545 |
+
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
548 |
+
"<code>mod_xsendfile</code>)."
|
549 |
msgstr "Falls unterstützt, können <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> genutzt werden, anstelle von PHP (Server braucht <code>mod_xsendfile</code>)."
|
550 |
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "Log Aufzeichung"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
|
|
566 |
msgid "Download Log"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
|
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "Download Versuche, IP Adressen und anderes aufzeichnen."
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
|
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "IPs sperren (Blacklist)"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
578 |
+
msgid ""
|
579 |
+
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
+
"wildcard."
|
581 |
msgstr "IP Adressen auf Blackliste setzen, 1 pro Linie. Code <code>*</code> als Wildcard."
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
|
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "User Agents sperren"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
|
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "User Agents für Sperrung auflisten, einer pro Linie."
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
|
|
592 |
msgid "Logs"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
|
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "Einstellungen gespeichert"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
|
|
600 |
msgid "Save Changes"
|
601 |
msgstr "Änderungen speichern"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
604 |
msgid "Download Logs"
|
605 |
msgstr "Logs herunterladen"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
608 |
msgid "Export CSV"
|
609 |
msgstr "CSV exportieren"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
msgid "Version ID"
|
617 |
msgstr "Versions-ID"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
+
msgid "Filename"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
msgid "User ID"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
+
msgid "User Login"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
+
msgid "User Email"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
msgid "User IP"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
640 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
|
|
641 |
msgid "User Agent"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
645 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
|
|
646 |
msgid "Date"
|
647 |
msgstr "Datum"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
|
|
650 |
msgid "Status"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: includes/admin/class-dlm-logging-list-table.php:50
|
|
|
654 |
msgid "Download Complete"
|
655 |
msgstr "Download-Eintrag komplett"
|
656 |
|
657 |
+
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "Zeit verstrichen: %s"
|
660 |
|
661 |
+
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "Download #%d (existiert nicht mehr)"
|
664 |
|
665 |
+
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: includes/admin/class-dlm-logging-list-table.php:92
|
|
|
670 |
msgid "Non-member"
|
671 |
msgstr "Nicht-Mitglied"
|
672 |
|
673 |
+
#: includes/admin/class-dlm-logging-list-table.php:125
|
|
|
674 |
msgid "User"
|
675 |
msgstr "Benutzer"
|
676 |
|
677 |
+
#: includes/admin/class-dlm-logging-list-table.php:126
|
|
|
678 |
msgid "IP Address"
|
679 |
msgstr "IP Addresse"
|
680 |
|
681 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
682 |
+
msgid "Any status"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
686 |
+
msgid "Failed"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
690 |
+
msgid "Redirected"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
694 |
+
msgid "Completed"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
+
msgid "Show all dates"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
702 |
+
msgid "%1$s %2$d"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
706 |
+
msgid "25 per page"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
710 |
+
msgid "50 per page"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
714 |
+
msgid "100 per page"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
718 |
+
msgid "200 per page"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
+
msgid "Show All"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
726 |
+
msgid "Filter"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
|
|
730 |
msgid "Remove"
|
731 |
msgstr "Löschen"
|
732 |
|
733 |
#: includes/admin/html-downloadable-file-version.php:4
|
|
|
734 |
msgid "Click to toggle"
|
735 |
msgstr "Zum Umschalten klicken"
|
736 |
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr ""
|
740 |
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
|
|
743 |
msgid "n/a"
|
744 |
msgstr "nicht verfügbar"
|
745 |
|
746 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
|
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
msgstr[0] "%s-mal heruntergeladen"
|
750 |
msgstr[1] "%s-mal heruntergeladen"
|
751 |
|
752 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
|
|
753 |
msgid "File URL(s)"
|
754 |
msgstr "Datei URL(s)"
|
755 |
|
756 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
757 |
+
msgid ""
|
758 |
+
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
759 |
+
"(chosen at random)."
|
760 |
msgstr "Einen Pfad)Url pro Zeile - mehrere werden als file mirrors genutzt (zufällige Auswahl)."
|
761 |
|
762 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
763 |
+
msgid "Upload file"
|
764 |
+
msgstr "Datei auf den Server laden"
|
765 |
+
|
766 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
767 |
msgid "Choose a file"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
|
|
771 |
msgid "Insert file URL"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
msgid "Browse for file"
|
776 |
msgstr "Datei suchen"
|
777 |
|
778 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
|
|
779 |
msgid "File Date"
|
780 |
msgstr "Datei-Erstellungsdatum"
|
781 |
|
782 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
783 |
msgid "h"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
787 |
msgid "m"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: includes/class-dlm-download-handler.php:140
|
791 |
+
msgid "Password Required"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/class-dlm-download-handler.php:150
|
795 |
msgid "Download does not exist."
|
796 |
msgstr "Download existiert nicht."
|
797 |
|
798 |
+
#: includes/class-dlm-download-handler.php:150
|
799 |
+
#: includes/class-dlm-download-handler.php:180
|
800 |
+
#: includes/class-dlm-download-handler.php:185
|
801 |
+
#: includes/class-dlm-download-handler.php:194
|
802 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
803 |
msgid "Go to homepage →"
|
804 |
msgstr "Zur Homepage →"
|
805 |
|
806 |
+
#: includes/class-dlm-download-handler.php:150
|
807 |
+
#: includes/class-dlm-download-handler.php:180
|
808 |
+
#: includes/class-dlm-download-handler.php:185
|
809 |
+
#: includes/class-dlm-download-handler.php:194
|
810 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
811 |
msgid "Download Error"
|
812 |
msgstr "Downloadfehler"
|
813 |
|
814 |
+
#: includes/class-dlm-download-handler.php:180
|
815 |
+
#: includes/class-dlm-download-handler.php:185
|
|
|
816 |
msgid "No file paths defined."
|
817 |
msgstr "Dateipfad nicht definiert."
|
818 |
|
819 |
+
#: includes/class-dlm-download-handler.php:194
|
|
|
820 |
msgid "You do not have permission to access this download."
|
821 |
msgstr "Sie besitzen nicht die nötige Berechtigung, um auf diese Download-Datei zuzugreifen."
|
822 |
|
823 |
+
#: includes/class-dlm-download-handler.php:212
|
824 |
+
#: includes/class-dlm-download-handler.php:228
|
825 |
+
#: includes/class-dlm-download-handler.php:235
|
826 |
+
#: includes/class-dlm-download-handler.php:242
|
|
|
827 |
msgid "Redirected to file"
|
828 |
msgstr "Weitergeleitet zu Datei"
|
829 |
|
830 |
+
#: includes/class-dlm-download-handler.php:281
|
|
|
831 |
msgid "Redirected to remote file."
|
832 |
msgstr "Weitergeleitet zu Datei auf anderem Server"
|
833 |
|
834 |
+
#: includes/class-dlm-download-handler.php:286
|
|
|
835 |
msgid "File not found"
|
836 |
msgstr "Datei nicht gefunden"
|
837 |
|
838 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
839 |
msgid "File not found."
|
840 |
msgstr "Datei nicht gefunden."
|
841 |
|
842 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
|
|
843 |
msgid "Download not found"
|
844 |
msgstr "Download Eintrag nicht gefunden."
|
845 |
|
846 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
|
|
847 |
msgid "Display a list of your downloads."
|
848 |
msgstr "Liste der Downloads anzeigen."
|
849 |
|
850 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
|
|
851 |
msgid "Downloads List"
|
852 |
msgstr "Liste der Downloads"
|
853 |
|
854 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
855 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
|
|
856 |
msgid "Featured Downloads"
|
857 |
msgstr "Hervorgehobene Downloads"
|
858 |
|
859 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
|
|
860 |
msgid "Title:"
|
861 |
msgstr "Titel:"
|
862 |
|
863 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
|
|
864 |
msgid "Limit:"
|
865 |
msgstr ""
|
866 |
|
867 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
|
|
868 |
msgid "Output template:"
|
869 |
msgstr "Vorlage für Ausgabe:"
|
870 |
|
871 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
|
|
872 |
msgid "Default template"
|
873 |
msgstr "Standard-Vorlage"
|
874 |
|
875 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
|
|
876 |
msgid "Order by:"
|
877 |
msgstr "Geordnet nach:"
|
878 |
|
879 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
|
|
880 |
msgid "Random"
|
881 |
msgstr "Zufällig"
|
882 |
|
883 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
|
|
884 |
msgid "Date added"
|
885 |
msgstr "Erstellungs-Datum"
|
886 |
|
887 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
|
|
888 |
msgid "Date modified"
|
889 |
msgstr "Letzte Änderung"
|
890 |
|
891 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
|
|
892 |
msgid "Order:"
|
893 |
msgstr "Reihenfolge:"
|
894 |
|
895 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
|
|
896 |
msgid "ASC"
|
897 |
msgstr "Auf"
|
898 |
|
899 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
|
|
900 |
msgid "DESC"
|
901 |
msgstr "Ab"
|
902 |
|
903 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
|
|
904 |
msgid "Show only featured downloads"
|
905 |
msgstr "Nur hervorgehobene Downloads anzeigen"
|
906 |
|
907 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
|
|
908 |
msgid "Show only members only downloads"
|
909 |
msgstr "Downloads nur Mitgliedern anzeigen"
|
910 |
|
911 |
#: templates/content-download-box.php:12
|
912 |
+
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
|
|
|
|
|
|
913 |
msgid "1 download"
|
914 |
msgid_plural "%d downloads"
|
915 |
msgstr[0] "1 Download"
|
917 |
|
918 |
#: templates/content-download-box.php:20
|
919 |
#: templates/content-download-filename.php:8
|
920 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
|
|
|
|
921 |
msgid "Version %s"
|
922 |
msgstr ""
|
923 |
|
924 |
#: templates/content-download-box.php:21
|
|
|
925 |
msgid "Download File"
|
926 |
msgstr "Datei herunterladen"
|
927 |
|
928 |
#: templates/content-download-button.php:9
|
|
|
|
|
929 |
msgid "Download “%s”"
|
930 |
msgstr ""
|
931 |
|
932 |
#: templates/content-download-button.php:10
|
933 |
+
#: templates/content-download-version-list.php:17
|
|
|
934 |
msgid "Downloaded 1 time"
|
935 |
msgid_plural "Downloaded %d times"
|
936 |
msgstr[0] "Einmal heruntergeladen"
|
937 |
msgstr[1] "%d-mal heruntergeladen"
|
938 |
|
939 |
+
#. Plugin Name of the plugin/theme
|
940 |
+
msgid "Download Monitor"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#. Plugin URI of the plugin/theme
|
944 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#. Description of the plugin/theme
|
948 |
+
msgid ""
|
949 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
950 |
+
"outputting download links and file information on your WordPress powered "
|
951 |
+
"site."
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#. Author of the plugin/theme
|
955 |
+
msgid "Mike Jolley"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#. Author URI of the plugin/theme
|
959 |
+
msgid "http://mikejolley.com"
|
960 |
+
msgstr ""
|
languages/download-monitor-es_ES.mo
ADDED
Binary file
|
languages/download-monitor-es_ES.po
ADDED
@@ -0,0 +1,961 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
+
# IlDucci <victor.gonfraile@hotmail.es>, 2014
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Download Monitor\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
9 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
10 |
+
"PO-Revision-Date: 2014-06-28 16:14+0000\n"
|
11 |
+
"Last-Translator: IlDucci <victor.gonfraile@hotmail.es>\n"
|
12 |
+
"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/download-monitor/language/es_ES/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: es_ES\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
|
19 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
20 |
+
msgid "Settings"
|
21 |
+
msgstr "Ajustes"
|
22 |
+
|
23 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
24 |
+
msgid "Add-ons"
|
25 |
+
msgstr "Complementos"
|
26 |
+
|
27 |
+
#: download-monitor.php:94
|
28 |
+
msgid "Docs"
|
29 |
+
msgstr "Documentación"
|
30 |
+
|
31 |
+
#: download-monitor.php:241 download-monitor.php:243
|
32 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
33 |
+
msgid "Categories"
|
34 |
+
msgstr "Categorías"
|
35 |
+
|
36 |
+
#: download-monitor.php:244
|
37 |
+
msgid "Download Category"
|
38 |
+
msgstr "Categoría de descarga"
|
39 |
+
|
40 |
+
#: download-monitor.php:245
|
41 |
+
msgid "Search Download Categories"
|
42 |
+
msgstr "Buscar categorías de descarga"
|
43 |
+
|
44 |
+
#: download-monitor.php:246
|
45 |
+
msgid "All Download Categories"
|
46 |
+
msgstr "Todas las categorías de descarga"
|
47 |
+
|
48 |
+
#: download-monitor.php:247
|
49 |
+
msgid "Parent Download Category"
|
50 |
+
msgstr "Categoría de descarga superior"
|
51 |
+
|
52 |
+
#: download-monitor.php:248
|
53 |
+
msgid "Parent Download Category:"
|
54 |
+
msgstr "Categoría de descarga superior:"
|
55 |
+
|
56 |
+
#: download-monitor.php:249
|
57 |
+
msgid "Edit Download Category"
|
58 |
+
msgstr "Editar categoría de descarga"
|
59 |
+
|
60 |
+
#: download-monitor.php:250
|
61 |
+
msgid "Update Download Category"
|
62 |
+
msgstr "Actualizar categoría de descarga"
|
63 |
+
|
64 |
+
#: download-monitor.php:251
|
65 |
+
msgid "Add New Download Category"
|
66 |
+
msgstr "Añadir una categoría de descarga nueva"
|
67 |
+
|
68 |
+
#: download-monitor.php:252
|
69 |
+
msgid "New Download Category Name"
|
70 |
+
msgstr "Nombre de la nueva categoría de descarga"
|
71 |
+
|
72 |
+
#: download-monitor.php:271 download-monitor.php:273
|
73 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
74 |
+
msgid "Tags"
|
75 |
+
msgstr "Etiquetas"
|
76 |
+
|
77 |
+
#: download-monitor.php:274
|
78 |
+
msgid "Download Tag"
|
79 |
+
msgstr "Etiqueta de descarga"
|
80 |
+
|
81 |
+
#: download-monitor.php:275
|
82 |
+
msgid "Search Download Tags"
|
83 |
+
msgstr "Buscar etiquetas de descarga"
|
84 |
+
|
85 |
+
#: download-monitor.php:276
|
86 |
+
msgid "All Download Tags"
|
87 |
+
msgstr "Todas las etiquetas de descarga"
|
88 |
+
|
89 |
+
#: download-monitor.php:277
|
90 |
+
msgid "Parent Download Tag"
|
91 |
+
msgstr "Etiqueta de descarga superior"
|
92 |
+
|
93 |
+
#: download-monitor.php:278
|
94 |
+
msgid "Parent Download Tag:"
|
95 |
+
msgstr "Etiqueta de descarga superior:"
|
96 |
+
|
97 |
+
#: download-monitor.php:279
|
98 |
+
msgid "Edit Download Tag"
|
99 |
+
msgstr "Editar etiqueta de descarga"
|
100 |
+
|
101 |
+
#: download-monitor.php:280
|
102 |
+
msgid "Update Download Tag"
|
103 |
+
msgstr "Actualizar etiqueta de descarga"
|
104 |
+
|
105 |
+
#: download-monitor.php:281
|
106 |
+
msgid "Add New Download Tag"
|
107 |
+
msgstr "Añadir una etiqueta de descarga nueva"
|
108 |
+
|
109 |
+
#: download-monitor.php:282
|
110 |
+
msgid "New Download Tag Name"
|
111 |
+
msgstr "Nombre de la nueva etiqueta de descarga"
|
112 |
+
|
113 |
+
#: download-monitor.php:303
|
114 |
+
msgid "All Downloads"
|
115 |
+
msgstr "Todas las descargas"
|
116 |
+
|
117 |
+
#: download-monitor.php:304
|
118 |
+
msgid "Downloads"
|
119 |
+
msgstr "Descargas"
|
120 |
+
|
121 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
122 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
123 |
+
msgid "Download"
|
124 |
+
msgstr "Descarga"
|
125 |
+
|
126 |
+
#: download-monitor.php:306
|
127 |
+
msgid "Add New"
|
128 |
+
msgstr "Añadir nueva"
|
129 |
+
|
130 |
+
#: download-monitor.php:307
|
131 |
+
msgid "Add Download"
|
132 |
+
msgstr "Añadir descarga"
|
133 |
+
|
134 |
+
#: download-monitor.php:308
|
135 |
+
msgid "Edit"
|
136 |
+
msgstr "Editar"
|
137 |
+
|
138 |
+
#: download-monitor.php:309
|
139 |
+
msgid "Edit Download"
|
140 |
+
msgstr "Editar descarga"
|
141 |
+
|
142 |
+
#: download-monitor.php:310
|
143 |
+
msgid "New Download"
|
144 |
+
msgstr "Descarga nueva"
|
145 |
+
|
146 |
+
#: download-monitor.php:311 download-monitor.php:312
|
147 |
+
msgid "View Download"
|
148 |
+
msgstr "Ver descarga"
|
149 |
+
|
150 |
+
#: download-monitor.php:313
|
151 |
+
msgid "Search Downloads"
|
152 |
+
msgstr "Buscar descargas"
|
153 |
+
|
154 |
+
#: download-monitor.php:314
|
155 |
+
msgid "No Downloads found"
|
156 |
+
msgstr "No se han encontrado descargas"
|
157 |
+
|
158 |
+
#: download-monitor.php:315
|
159 |
+
msgid "No Downloads found in trash"
|
160 |
+
msgstr "No se han encontrado descargas en la papelera"
|
161 |
+
|
162 |
+
#: download-monitor.php:316
|
163 |
+
msgid "Parent Download"
|
164 |
+
msgstr "Descarga superior"
|
165 |
+
|
166 |
+
#: download-monitor.php:318
|
167 |
+
msgid "This is where you can create and manage downloads for your site."
|
168 |
+
msgstr "Aquí puedes crear y gestionar las descargas de tu página web."
|
169 |
+
|
170 |
+
#: includes/admin/class-dlm-addons.php:50
|
171 |
+
#: includes/admin/class-dlm-admin.php:260
|
172 |
+
msgid "Download Monitor Add-ons"
|
173 |
+
msgstr "Complementos de Download Monitor"
|
174 |
+
|
175 |
+
#: includes/admin/class-dlm-admin-cpt.php:64
|
176 |
+
msgid "Select a category"
|
177 |
+
msgstr "Selecciona una categoría"
|
178 |
+
|
179 |
+
#: includes/admin/class-dlm-admin-cpt.php:124
|
180 |
+
msgid "Download title"
|
181 |
+
msgstr "Título de la descarga"
|
182 |
+
|
183 |
+
#: includes/admin/class-dlm-admin-cpt.php:140
|
184 |
+
#: includes/admin/class-dlm-admin-cpt.php:143
|
185 |
+
msgid "Download updated."
|
186 |
+
msgstr "Descarga actualizada."
|
187 |
+
|
188 |
+
#: includes/admin/class-dlm-admin-cpt.php:141
|
189 |
+
msgid "Custom field updated."
|
190 |
+
msgstr "Apartado personalizado actualizado."
|
191 |
+
|
192 |
+
#: includes/admin/class-dlm-admin-cpt.php:142
|
193 |
+
msgid "Custom field deleted."
|
194 |
+
msgstr "Apartado personalizado eliminado."
|
195 |
+
|
196 |
+
#: includes/admin/class-dlm-admin-cpt.php:144
|
197 |
+
msgid "Download restored to revision from %s"
|
198 |
+
msgstr "Descarga recuperada desde la revisión %s"
|
199 |
+
|
200 |
+
#: includes/admin/class-dlm-admin-cpt.php:145
|
201 |
+
msgid "Download published."
|
202 |
+
msgstr "Descarga publicada."
|
203 |
+
|
204 |
+
#: includes/admin/class-dlm-admin-cpt.php:146
|
205 |
+
msgid "Download saved."
|
206 |
+
msgstr "Descarga guardada."
|
207 |
+
|
208 |
+
#: includes/admin/class-dlm-admin-cpt.php:147
|
209 |
+
msgid "Download submitted."
|
210 |
+
msgstr "Descarga enviada."
|
211 |
+
|
212 |
+
#: includes/admin/class-dlm-admin-cpt.php:148
|
213 |
+
msgid "Download scheduled for: <strong>%1$s</strong>."
|
214 |
+
msgstr "Descarga prevista para: <strong>%1$s</strong>."
|
215 |
+
|
216 |
+
#: includes/admin/class-dlm-admin-cpt.php:149
|
217 |
+
msgid "M j, Y @ G:i"
|
218 |
+
msgstr "j \"\"d\"\"e F \"\"d\"\"e Y, G:i"
|
219 |
+
|
220 |
+
#: includes/admin/class-dlm-admin-cpt.php:150
|
221 |
+
msgid "Download draft updated."
|
222 |
+
msgstr "Borrador de descarga actualizado."
|
223 |
+
|
224 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
225 |
+
msgid "Image"
|
226 |
+
msgstr "Imagen"
|
227 |
+
|
228 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
229 |
+
#: includes/widgets/class-dlm-widget-downloads.php:171
|
230 |
+
msgid "Title"
|
231 |
+
msgstr "Título"
|
232 |
+
|
233 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
234 |
+
#: includes/widgets/class-dlm-widget-downloads.php:173
|
235 |
+
msgid "ID"
|
236 |
+
msgstr "ID"
|
237 |
+
|
238 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
239 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
240 |
+
msgid "File"
|
241 |
+
msgstr "Archivo"
|
242 |
+
|
243 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
244 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
245 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
246 |
+
msgid "Version"
|
247 |
+
msgstr "Versión"
|
248 |
+
|
249 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
250 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
251 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
252 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
253 |
+
msgid "Download count"
|
254 |
+
msgstr "Cantidad de descargas"
|
255 |
+
|
256 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
257 |
+
msgid "Featured"
|
258 |
+
msgstr "Destacado"
|
259 |
+
|
260 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
261 |
+
#: includes/admin/class-dlm-admin-writepanels.php:63
|
262 |
+
msgid "Members only"
|
263 |
+
msgstr "Solo para miembros"
|
264 |
+
|
265 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
266 |
+
msgid "Redirect only"
|
267 |
+
msgstr "Solo redirigir"
|
268 |
+
|
269 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
270 |
+
msgid "Date posted"
|
271 |
+
msgstr "Publicación"
|
272 |
+
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
275 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
276 |
+
msgid "Yes"
|
277 |
+
msgstr "Sí"
|
278 |
+
|
279 |
+
#: includes/admin/class-dlm-admin-dashboard.php:21
|
280 |
+
msgid "Popular Downloads"
|
281 |
+
msgstr "Descargas más populares"
|
282 |
+
|
283 |
+
#: includes/admin/class-dlm-admin-dashboard.php:53
|
284 |
+
msgid "There are no stats available yet!"
|
285 |
+
msgstr "¡Aún no hay estadísticas disponibles!"
|
286 |
+
|
287 |
+
#: includes/admin/class-dlm-admin-insert.php:32
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
289 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
290 |
+
msgid "Insert Download"
|
291 |
+
msgstr "Insertar descarga"
|
292 |
+
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
294 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
295 |
+
msgid "Insert Shortcode"
|
296 |
+
msgstr "Insertar código rápido"
|
297 |
+
|
298 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
299 |
+
msgid "Quick-add download"
|
300 |
+
msgstr "Añadir descarga rápidamente"
|
301 |
+
|
302 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
303 |
+
msgid "Error: File was not created."
|
304 |
+
msgstr "Error: No se ha creado el archivo."
|
305 |
+
|
306 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
307 |
+
msgid "Download successfully created."
|
308 |
+
msgstr "Descarga creada correctamente."
|
309 |
+
|
310 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
311 |
+
msgid "Error: Download was not created."
|
312 |
+
msgstr "Error: No se ha creado la descarga."
|
313 |
+
|
314 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
315 |
+
msgid "Choose a download"
|
316 |
+
msgstr "Selecciona una descarga"
|
317 |
+
|
318 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
319 |
+
msgid "Template"
|
320 |
+
msgstr "Plantilla"
|
321 |
+
|
322 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
323 |
+
msgid "Template Name"
|
324 |
+
msgstr "Nombre de la plantilla"
|
325 |
+
|
326 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
327 |
+
msgid ""
|
328 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
329 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
330 |
+
">content-download-image.php</code> template will be used instead."
|
331 |
+
msgstr "Si dejas este cuadro en blanco, se utilizará el archivo de plantilla predeterminado <code>content-download.php</code>. Si, por ejemplo, escribes <code>image</code>, se utilizará en su lugar la plantilla <code>content-download-image.php</code>."
|
332 |
+
|
333 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
334 |
+
msgid "Drop file here"
|
335 |
+
msgstr "suelta aquí el archivo"
|
336 |
+
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
338 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
339 |
+
msgid "or"
|
340 |
+
msgstr "o"
|
341 |
+
|
342 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
343 |
+
msgid "Select File"
|
344 |
+
msgstr "Seleccionar archivo"
|
345 |
+
|
346 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
347 |
+
msgid "Enter URL manually"
|
348 |
+
msgstr "Introducir la dirección URL manualmente"
|
349 |
+
|
350 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
351 |
+
msgid "Download URL"
|
352 |
+
msgstr "URL de descarga"
|
353 |
+
|
354 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
355 |
+
msgid "Required URL"
|
356 |
+
msgstr "URL necesaria"
|
357 |
+
|
358 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
359 |
+
msgid "Download Title"
|
360 |
+
msgstr "Título de la descarga"
|
361 |
+
|
362 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
363 |
+
msgid "Required title"
|
364 |
+
msgstr "Título necesario"
|
365 |
+
|
366 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
367 |
+
msgid "Optional version number"
|
368 |
+
msgstr "Número de versión opcional"
|
369 |
+
|
370 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
371 |
+
msgid "Save Download"
|
372 |
+
msgstr "Guardar descarga"
|
373 |
+
|
374 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
375 |
+
msgid "Allowed Files"
|
376 |
+
msgstr "Archivos permitidos"
|
377 |
+
|
378 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
379 |
+
msgid "Please wait..."
|
380 |
+
msgstr "Espera, por favor..."
|
381 |
+
|
382 |
+
#: includes/admin/class-dlm-admin-media-browser.php:31
|
383 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
384 |
+
msgid "Browse for a file"
|
385 |
+
msgstr "Buscar un archivo"
|
386 |
+
|
387 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
388 |
+
msgid "No files found"
|
389 |
+
msgstr "No se han encontrado archivos"
|
390 |
+
|
391 |
+
#: includes/admin/class-dlm-admin-writepanels.php:29
|
392 |
+
msgid "Download Options"
|
393 |
+
msgstr "Opciones de descarga"
|
394 |
+
|
395 |
+
#: includes/admin/class-dlm-admin-writepanels.php:30
|
396 |
+
msgid "Downloadable Files/Versions"
|
397 |
+
msgstr "Archivos descargables/Versiones"
|
398 |
+
|
399 |
+
#: includes/admin/class-dlm-admin-writepanels.php:35
|
400 |
+
msgid "Short Description"
|
401 |
+
msgstr "Descripción breve"
|
402 |
+
|
403 |
+
#: includes/admin/class-dlm-admin-writepanels.php:57
|
404 |
+
msgid "Featured download"
|
405 |
+
msgstr "Descarga destacada"
|
406 |
+
|
407 |
+
#: includes/admin/class-dlm-admin-writepanels.php:58
|
408 |
+
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
409 |
+
msgstr "Marcar esta descarga como destacada. Utilizado por los códigos rápidos y los widgets."
|
410 |
+
|
411 |
+
#: includes/admin/class-dlm-admin-writepanels.php:64
|
412 |
+
msgid ""
|
413 |
+
"Only logged in users will be able to access the file via a download link if "
|
414 |
+
"this is enabled."
|
415 |
+
msgstr "Al activar esta opción solo podrán acceder al archivo los usuarios que hayan iniciado sesión y tengan acceso al enlace de descarga."
|
416 |
+
|
417 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
418 |
+
msgid "Redirect to file"
|
419 |
+
msgstr "Redirigir al archivo"
|
420 |
+
|
421 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
422 |
+
msgid ""
|
423 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
424 |
+
" may need to move your file."
|
425 |
+
msgstr "No forzar la descarga. Si la carpeta <code>dlm_upload</code> está protegida, quizá necesites mover tu archivo."
|
426 |
+
|
427 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
428 |
+
msgid "Add file"
|
429 |
+
msgstr "Añadir archivo"
|
430 |
+
|
431 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
432 |
+
msgid "Close all"
|
433 |
+
msgstr "Cerrar todo"
|
434 |
+
|
435 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
436 |
+
msgid "Expand all"
|
437 |
+
msgstr "Abrir todo"
|
438 |
+
|
439 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
440 |
+
msgid "Are you sure you want to delete this file?"
|
441 |
+
msgstr "¿Seguro que quieres eliminar este archivo?"
|
442 |
+
|
443 |
+
#: includes/admin/class-dlm-admin.php:95
|
444 |
+
msgid "General"
|
445 |
+
msgstr "General"
|
446 |
+
|
447 |
+
#: includes/admin/class-dlm-admin.php:100
|
448 |
+
msgid "Default Template"
|
449 |
+
msgstr "Plantilla predeterminada"
|
450 |
+
|
451 |
+
#: includes/admin/class-dlm-admin.php:101
|
452 |
+
msgid ""
|
453 |
+
"Choose which template is used for <code>[download]</code> shortcodes by "
|
454 |
+
"default (this can be overridden by the <code>format</code> argument)."
|
455 |
+
msgstr "Selecciona que plantilla utilizarán los códigos rápidos <code>[download]</code> de forma predeterminada (puede anularse con la cadena <code>format</code>)."
|
456 |
+
|
457 |
+
#: includes/admin/class-dlm-admin.php:104
|
458 |
+
msgid "Default - Title and count"
|
459 |
+
msgstr "Predeterminado: Título y cantidad de descargas"
|
460 |
+
|
461 |
+
#: includes/admin/class-dlm-admin.php:105
|
462 |
+
msgid "Button - CSS styled button showing title and count"
|
463 |
+
msgstr "Botón: Botón con estilo CSS que muestra el título y la cantidad de descargas."
|
464 |
+
|
465 |
+
#: includes/admin/class-dlm-admin.php:106
|
466 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
467 |
+
msgstr "Caja: Caja que muestra una miniatura, el título, la cantidad de descargas, el nombre del archivo y su tamaño."
|
468 |
+
|
469 |
+
#: includes/admin/class-dlm-admin.php:107
|
470 |
+
msgid "Filename - Filename and download count"
|
471 |
+
msgstr "Nombre de archivo: Nombre de archivo y cantidad de descargas."
|
472 |
+
|
473 |
+
#: includes/admin/class-dlm-admin.php:108
|
474 |
+
msgid "Title - Shows download title only"
|
475 |
+
msgstr "Título: Solo muestra el título de la descarga."
|
476 |
+
|
477 |
+
#: includes/admin/class-dlm-admin.php:109
|
478 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
479 |
+
msgstr "Lista de versiones: Muestra todas las versiones de descarga en una lista sin ordenar."
|
480 |
+
|
481 |
+
#: includes/admin/class-dlm-admin.php:110
|
482 |
+
msgid "Custom template"
|
483 |
+
msgstr "Plantilla personalizada"
|
484 |
+
|
485 |
+
#: includes/admin/class-dlm-admin.php:116
|
486 |
+
msgid "Custom Template"
|
487 |
+
msgstr "Plantilla personalizada"
|
488 |
+
|
489 |
+
#: includes/admin/class-dlm-admin.php:117
|
490 |
+
msgid ""
|
491 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
492 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
493 |
+
">content-download-image.php</code> template will be used instead. You can "
|
494 |
+
"add custom templates inside your theme folder."
|
495 |
+
msgstr "Si dejas este cuadro en blanco, se utilizará el archivo de plantilla predeterminado <code>content-download.php</code>. Si, por ejemplo, escribes <code>image</code>, se utilizará en su lugar la plantilla <code>content-download-image.php</code>. Puedes añadir plantillas personalizadas dentro de la carpeta de tu apariencia."
|
496 |
+
|
497 |
+
#: includes/admin/class-dlm-admin.php:122
|
498 |
+
msgid "Endpoint"
|
499 |
+
msgstr "Término"
|
500 |
+
|
501 |
+
#: includes/admin/class-dlm-admin.php:127
|
502 |
+
msgid "download"
|
503 |
+
msgstr "descarga"
|
504 |
+
|
505 |
+
#: includes/admin/class-dlm-admin.php:128
|
506 |
+
msgid "Download Endpoint"
|
507 |
+
msgstr "Término de la descarga"
|
508 |
+
|
509 |
+
#: includes/admin/class-dlm-admin.php:129
|
510 |
+
msgid ""
|
511 |
+
"Define what endpoint should be used for download links. By default this will"
|
512 |
+
" be <code>%s</code>."
|
513 |
+
msgstr "Define qué término se utilizará para los enlaces de descarga. Por defecto se utilizará <code>%s</code>."
|
514 |
+
|
515 |
+
#: includes/admin/class-dlm-admin.php:134
|
516 |
+
msgid "Endpoint Value"
|
517 |
+
msgstr "Valor del término"
|
518 |
+
|
519 |
+
#: includes/admin/class-dlm-admin.php:135
|
520 |
+
msgid ""
|
521 |
+
"Define what unique value should be used on the end of your endpoint to "
|
522 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
523 |
+
"<code>%s</code>"
|
524 |
+
msgstr "Define qué valor único debería utilizarse al final de tu término para identificar el archivo descargable. Por ejemplo, una ID mostraría un enlace similar a <code>%s</code>."
|
525 |
+
|
526 |
+
#: includes/admin/class-dlm-admin.php:138
|
527 |
+
#: includes/admin/class-dlm-admin.php:460
|
528 |
+
msgid "Download ID"
|
529 |
+
msgstr "ID de descarga"
|
530 |
+
|
531 |
+
#: includes/admin/class-dlm-admin.php:139
|
532 |
+
msgid "Download slug"
|
533 |
+
msgstr "Slug de descarga"
|
534 |
+
|
535 |
+
#: includes/admin/class-dlm-admin.php:145
|
536 |
+
msgid "X-Accel-Redirect / X-Sendfile"
|
537 |
+
msgstr "X-Accel-Redirect / X-Sendfile"
|
538 |
+
|
539 |
+
#: includes/admin/class-dlm-admin.php:146
|
540 |
+
#: includes/admin/class-dlm-admin.php:154
|
541 |
+
#: includes/admin/class-dlm-admin.php:165
|
542 |
+
msgid "Enable"
|
543 |
+
msgstr "Activar"
|
544 |
+
|
545 |
+
#: includes/admin/class-dlm-admin.php:147
|
546 |
+
msgid ""
|
547 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
548 |
+
" used to serve downloads instead of PHP (server requires "
|
549 |
+
"<code>mod_xsendfile</code>)."
|
550 |
+
msgstr "Si el servidor lo permite, se pueden distribuir las descargas a través de <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> en vez de usar PHP (el servidor necesita <code>mod_xsendfile</code>)."
|
551 |
+
|
552 |
+
#: includes/admin/class-dlm-admin.php:153
|
553 |
+
msgid "Prevent hotlinking"
|
554 |
+
msgstr "Evitar hotlinking"
|
555 |
+
|
556 |
+
#: includes/admin/class-dlm-admin.php:155
|
557 |
+
msgid ""
|
558 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
559 |
+
"originated from your site and if not, redirect them to the homepage."
|
560 |
+
msgstr "Si activas esta opción, el gestor de descargas comprobará si la referencia PHP se ha originado desde tu página web, y en caso contrario la redirigirá a la misma."
|
561 |
+
|
562 |
+
#: includes/admin/class-dlm-admin.php:161
|
563 |
+
msgid "Logging"
|
564 |
+
msgstr "Registros"
|
565 |
+
|
566 |
+
#: includes/admin/class-dlm-admin.php:167
|
567 |
+
msgid "Download Log"
|
568 |
+
msgstr "Registro de descargas"
|
569 |
+
|
570 |
+
#: includes/admin/class-dlm-admin.php:168
|
571 |
+
msgid "Log download attempts, IP addresses and more."
|
572 |
+
msgstr "Registrar los intentos de descargas, las direcciones IP y más."
|
573 |
+
|
574 |
+
#: includes/admin/class-dlm-admin.php:174
|
575 |
+
msgid "Blacklist IPs"
|
576 |
+
msgstr "IPs en lista negra"
|
577 |
+
|
578 |
+
#: includes/admin/class-dlm-admin.php:175
|
579 |
+
msgid ""
|
580 |
+
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
581 |
+
"wildcard."
|
582 |
+
msgstr "Indica las direcciones IP que están en la lista negra, una IP por línea. Se puede utilizar el comodín <code>*</code>."
|
583 |
+
|
584 |
+
#: includes/admin/class-dlm-admin.php:182
|
585 |
+
msgid "Blacklist user agents"
|
586 |
+
msgstr "Agentes de usuario en lista negra"
|
587 |
+
|
588 |
+
#: includes/admin/class-dlm-admin.php:183
|
589 |
+
msgid "List browser user agents to blacklist, 1 per line."
|
590 |
+
msgstr "Indica los agentes de usuario de navegadores que están en la lista negra. Un agente por línea."
|
591 |
+
|
592 |
+
#: includes/admin/class-dlm-admin.php:255
|
593 |
+
msgid "Logs"
|
594 |
+
msgstr "Registros"
|
595 |
+
|
596 |
+
#: includes/admin/class-dlm-admin.php:299
|
597 |
+
msgid "Settings successfully saved"
|
598 |
+
msgstr "Los ajustes se han guardado correctamente"
|
599 |
+
|
600 |
+
#: includes/admin/class-dlm-admin.php:366
|
601 |
+
msgid "Save Changes"
|
602 |
+
msgstr "Guardar cambios"
|
603 |
+
|
604 |
+
#: includes/admin/class-dlm-admin.php:410
|
605 |
+
msgid "Download Logs"
|
606 |
+
msgstr "Registros de descarga"
|
607 |
+
|
608 |
+
#: includes/admin/class-dlm-admin.php:410
|
609 |
+
msgid "Export CSV"
|
610 |
+
msgstr "Exportar CSV"
|
611 |
+
|
612 |
+
#: includes/admin/class-dlm-admin.php:410
|
613 |
+
msgid "Delete Logs"
|
614 |
+
msgstr "Registros de eliminación"
|
615 |
+
|
616 |
+
#: includes/admin/class-dlm-admin.php:461
|
617 |
+
msgid "Version ID"
|
618 |
+
msgstr "ID de la versión"
|
619 |
+
|
620 |
+
#: includes/admin/class-dlm-admin.php:462
|
621 |
+
msgid "Filename"
|
622 |
+
msgstr "Nombre del archivo"
|
623 |
+
|
624 |
+
#: includes/admin/class-dlm-admin.php:463
|
625 |
+
msgid "User ID"
|
626 |
+
msgstr "ID del usuario"
|
627 |
+
|
628 |
+
#: includes/admin/class-dlm-admin.php:464
|
629 |
+
msgid "User Login"
|
630 |
+
msgstr "Nombre del usuario"
|
631 |
+
|
632 |
+
#: includes/admin/class-dlm-admin.php:465
|
633 |
+
msgid "User Email"
|
634 |
+
msgstr "Email del usuario"
|
635 |
+
|
636 |
+
#: includes/admin/class-dlm-admin.php:466
|
637 |
+
msgid "User IP"
|
638 |
+
msgstr "IP del usuario"
|
639 |
+
|
640 |
+
#: includes/admin/class-dlm-admin.php:467
|
641 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
642 |
+
msgid "User Agent"
|
643 |
+
msgstr "Agente del usuario"
|
644 |
+
|
645 |
+
#: includes/admin/class-dlm-admin.php:468
|
646 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
647 |
+
msgid "Date"
|
648 |
+
msgstr "Fecha"
|
649 |
+
|
650 |
+
#: includes/admin/class-dlm-admin.php:469
|
651 |
+
msgid "Status"
|
652 |
+
msgstr "Estado"
|
653 |
+
|
654 |
+
#: includes/admin/class-dlm-logging-list-table.php:50
|
655 |
+
msgid "Download Complete"
|
656 |
+
msgstr "Descarga completada"
|
657 |
+
|
658 |
+
#: includes/admin/class-dlm-logging-list-table.php:57
|
659 |
+
msgid "%s ago"
|
660 |
+
msgstr "Hace %s"
|
661 |
+
|
662 |
+
#: includes/admin/class-dlm-logging-list-table.php:64
|
663 |
+
msgid "Download #%d (no longer exists)"
|
664 |
+
msgstr "Descarga #%d (ya no existe)"
|
665 |
+
|
666 |
+
#: includes/admin/class-dlm-logging-list-table.php:72
|
667 |
+
msgid "v%s"
|
668 |
+
msgstr "v%s"
|
669 |
+
|
670 |
+
#: includes/admin/class-dlm-logging-list-table.php:92
|
671 |
+
msgid "Non-member"
|
672 |
+
msgstr "Externo"
|
673 |
+
|
674 |
+
#: includes/admin/class-dlm-logging-list-table.php:125
|
675 |
+
msgid "User"
|
676 |
+
msgstr "Usuario"
|
677 |
+
|
678 |
+
#: includes/admin/class-dlm-logging-list-table.php:126
|
679 |
+
msgid "IP Address"
|
680 |
+
msgstr "Dirección IP"
|
681 |
+
|
682 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
683 |
+
msgid "Any status"
|
684 |
+
msgstr "Cualquier estado"
|
685 |
+
|
686 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
687 |
+
msgid "Failed"
|
688 |
+
msgstr "Fallido"
|
689 |
+
|
690 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
691 |
+
msgid "Redirected"
|
692 |
+
msgstr "Redirigido"
|
693 |
+
|
694 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
695 |
+
msgid "Completed"
|
696 |
+
msgstr "Completada"
|
697 |
+
|
698 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
699 |
+
msgid "Show all dates"
|
700 |
+
msgstr "Mostrar todas las fechas"
|
701 |
+
|
702 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
703 |
+
msgid "%1$s %2$d"
|
704 |
+
msgstr "%1$s %2$d"
|
705 |
+
|
706 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
707 |
+
msgid "25 per page"
|
708 |
+
msgstr "25 por página"
|
709 |
+
|
710 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
711 |
+
msgid "50 per page"
|
712 |
+
msgstr "50 por página"
|
713 |
+
|
714 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
715 |
+
msgid "100 per page"
|
716 |
+
msgstr "100 por página"
|
717 |
+
|
718 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
719 |
+
msgid "200 per page"
|
720 |
+
msgstr "200 por página"
|
721 |
+
|
722 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
723 |
+
msgid "Show All"
|
724 |
+
msgstr "Mostrar todo"
|
725 |
+
|
726 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
727 |
+
msgid "Filter"
|
728 |
+
msgstr "Filtro"
|
729 |
+
|
730 |
+
#: includes/admin/html-downloadable-file-version.php:3
|
731 |
+
msgid "Remove"
|
732 |
+
msgstr "Eliminar"
|
733 |
+
|
734 |
+
#: includes/admin/html-downloadable-file-version.php:4
|
735 |
+
msgid "Click to toggle"
|
736 |
+
msgstr "Pulsa para alternar"
|
737 |
+
|
738 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
739 |
+
msgid "Version <span class=\"version\">%s</span> (%s)"
|
740 |
+
msgstr "Versión <span class=\"version\">%s</span> (%s)"
|
741 |
+
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
743 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
744 |
+
msgid "n/a"
|
745 |
+
msgstr "No disponible"
|
746 |
+
|
747 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
748 |
+
msgid "Downloaded %s time"
|
749 |
+
msgid_plural "Downloaded %s times"
|
750 |
+
msgstr[0] "Descargado %s vez"
|
751 |
+
msgstr[1] "Descargado %s veces"
|
752 |
+
|
753 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
754 |
+
msgid "File URL(s)"
|
755 |
+
msgstr "Dirección(es) URL del archivo"
|
756 |
+
|
757 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
758 |
+
msgid ""
|
759 |
+
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
760 |
+
"(chosen at random)."
|
761 |
+
msgstr "Introduce una dirección a archivo/dirección URL por línea; si hay varios archivos se utilizarán como descargas alternativas (elegidas al azar)."
|
762 |
+
|
763 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
764 |
+
msgid "Upload file"
|
765 |
+
msgstr "Subir archivo"
|
766 |
+
|
767 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
768 |
+
msgid "Choose a file"
|
769 |
+
msgstr "Selecciona un archivo"
|
770 |
+
|
771 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
772 |
+
msgid "Insert file URL"
|
773 |
+
msgstr "Introduce la dirección URL del archivo"
|
774 |
+
|
775 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
776 |
+
msgid "Browse for file"
|
777 |
+
msgstr "Buscar archivo"
|
778 |
+
|
779 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
780 |
+
msgid "File Date"
|
781 |
+
msgstr "Fecha del archivo"
|
782 |
+
|
783 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
784 |
+
msgid "h"
|
785 |
+
msgstr "h"
|
786 |
+
|
787 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
788 |
+
msgid "m"
|
789 |
+
msgstr "m"
|
790 |
+
|
791 |
+
#: includes/class-dlm-download-handler.php:140
|
792 |
+
msgid "Password Required"
|
793 |
+
msgstr "Necesaria contraseña"
|
794 |
+
|
795 |
+
#: includes/class-dlm-download-handler.php:150
|
796 |
+
msgid "Download does not exist."
|
797 |
+
msgstr "La descarga no existe."
|
798 |
+
|
799 |
+
#: includes/class-dlm-download-handler.php:150
|
800 |
+
#: includes/class-dlm-download-handler.php:180
|
801 |
+
#: includes/class-dlm-download-handler.php:185
|
802 |
+
#: includes/class-dlm-download-handler.php:194
|
803 |
+
#: includes/class-dlm-download-handler.php:288
|
804 |
+
msgid "Go to homepage →"
|
805 |
+
msgstr "Ir a la página web →"
|
806 |
+
|
807 |
+
#: includes/class-dlm-download-handler.php:150
|
808 |
+
#: includes/class-dlm-download-handler.php:180
|
809 |
+
#: includes/class-dlm-download-handler.php:185
|
810 |
+
#: includes/class-dlm-download-handler.php:194
|
811 |
+
#: includes/class-dlm-download-handler.php:288
|
812 |
+
msgid "Download Error"
|
813 |
+
msgstr "Error en la descarga"
|
814 |
+
|
815 |
+
#: includes/class-dlm-download-handler.php:180
|
816 |
+
#: includes/class-dlm-download-handler.php:185
|
817 |
+
msgid "No file paths defined."
|
818 |
+
msgstr "No se ha definido una dirección de archivo."
|
819 |
+
|
820 |
+
#: includes/class-dlm-download-handler.php:194
|
821 |
+
msgid "You do not have permission to access this download."
|
822 |
+
msgstr "No tienes permisos para acceder a esta descarga."
|
823 |
+
|
824 |
+
#: includes/class-dlm-download-handler.php:212
|
825 |
+
#: includes/class-dlm-download-handler.php:228
|
826 |
+
#: includes/class-dlm-download-handler.php:235
|
827 |
+
#: includes/class-dlm-download-handler.php:242
|
828 |
+
msgid "Redirected to file"
|
829 |
+
msgstr "Redirigido al archivo"
|
830 |
+
|
831 |
+
#: includes/class-dlm-download-handler.php:281
|
832 |
+
msgid "Redirected to remote file."
|
833 |
+
msgstr "Redirigido al archivo remoto."
|
834 |
+
|
835 |
+
#: includes/class-dlm-download-handler.php:286
|
836 |
+
msgid "File not found"
|
837 |
+
msgstr "Archivo no encontrado"
|
838 |
+
|
839 |
+
#: includes/class-dlm-download-handler.php:288
|
840 |
+
msgid "File not found."
|
841 |
+
msgstr "Archivo no encontrado."
|
842 |
+
|
843 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
844 |
+
msgid "Download not found"
|
845 |
+
msgstr "Descarga no encontrada"
|
846 |
+
|
847 |
+
#: includes/widgets/class-dlm-widget-downloads.php:27
|
848 |
+
msgid "Display a list of your downloads."
|
849 |
+
msgstr "Muestra una lista de tus descargas."
|
850 |
+
|
851 |
+
#: includes/widgets/class-dlm-widget-downloads.php:29
|
852 |
+
msgid "Downloads List"
|
853 |
+
msgstr "Lista de descargas"
|
854 |
+
|
855 |
+
#: includes/widgets/class-dlm-widget-downloads.php:52
|
856 |
+
#: includes/widgets/class-dlm-widget-downloads.php:148
|
857 |
+
msgid "Featured Downloads"
|
858 |
+
msgstr "Descargas destacadas"
|
859 |
+
|
860 |
+
#: includes/widgets/class-dlm-widget-downloads.php:157
|
861 |
+
msgid "Title:"
|
862 |
+
msgstr "Título:"
|
863 |
+
|
864 |
+
#: includes/widgets/class-dlm-widget-downloads.php:161
|
865 |
+
msgid "Limit:"
|
866 |
+
msgstr "Límite:"
|
867 |
+
|
868 |
+
#: includes/widgets/class-dlm-widget-downloads.php:165
|
869 |
+
msgid "Output template:"
|
870 |
+
msgstr "Plantilla de salida:"
|
871 |
+
|
872 |
+
#: includes/widgets/class-dlm-widget-downloads.php:166
|
873 |
+
msgid "Default template"
|
874 |
+
msgstr "Plantilla predeterminada"
|
875 |
+
|
876 |
+
#: includes/widgets/class-dlm-widget-downloads.php:169
|
877 |
+
msgid "Order by:"
|
878 |
+
msgstr "Ordenar por:"
|
879 |
+
|
880 |
+
#: includes/widgets/class-dlm-widget-downloads.php:172
|
881 |
+
msgid "Random"
|
882 |
+
msgstr "Al azar"
|
883 |
+
|
884 |
+
#: includes/widgets/class-dlm-widget-downloads.php:174
|
885 |
+
msgid "Date added"
|
886 |
+
msgstr "Fecha de creación"
|
887 |
+
|
888 |
+
#: includes/widgets/class-dlm-widget-downloads.php:175
|
889 |
+
msgid "Date modified"
|
890 |
+
msgstr "Fecha de modificación"
|
891 |
+
|
892 |
+
#: includes/widgets/class-dlm-widget-downloads.php:180
|
893 |
+
msgid "Order:"
|
894 |
+
msgstr "Orden:"
|
895 |
+
|
896 |
+
#: includes/widgets/class-dlm-widget-downloads.php:182
|
897 |
+
msgid "ASC"
|
898 |
+
msgstr "ASCENDENTE"
|
899 |
+
|
900 |
+
#: includes/widgets/class-dlm-widget-downloads.php:183
|
901 |
+
msgid "DESC"
|
902 |
+
msgstr "DESCENDENTE"
|
903 |
+
|
904 |
+
#: includes/widgets/class-dlm-widget-downloads.php:188
|
905 |
+
msgid "Show only featured downloads"
|
906 |
+
msgstr "Solo mostrar las descargas destacadas"
|
907 |
+
|
908 |
+
#: includes/widgets/class-dlm-widget-downloads.php:192
|
909 |
+
msgid "Show only members only downloads"
|
910 |
+
msgstr "Solo mostrar las descargas a los miembros"
|
911 |
+
|
912 |
+
#: templates/content-download-box.php:12
|
913 |
+
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
914 |
+
msgid "1 download"
|
915 |
+
msgid_plural "%d downloads"
|
916 |
+
msgstr[0] "1 descarga"
|
917 |
+
msgstr[1] "%d descargas"
|
918 |
+
|
919 |
+
#: templates/content-download-box.php:20
|
920 |
+
#: templates/content-download-filename.php:8
|
921 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
922 |
+
msgid "Version %s"
|
923 |
+
msgstr "Versión %s"
|
924 |
+
|
925 |
+
#: templates/content-download-box.php:21
|
926 |
+
msgid "Download File"
|
927 |
+
msgstr "Descargar archivo"
|
928 |
+
|
929 |
+
#: templates/content-download-button.php:9
|
930 |
+
msgid "Download “%s”"
|
931 |
+
msgstr "Descargar “%s”"
|
932 |
+
|
933 |
+
#: templates/content-download-button.php:10
|
934 |
+
#: templates/content-download-version-list.php:17
|
935 |
+
msgid "Downloaded 1 time"
|
936 |
+
msgid_plural "Downloaded %d times"
|
937 |
+
msgstr[0] "Descargado 1 vez"
|
938 |
+
msgstr[1] "Descargado %d veces"
|
939 |
+
|
940 |
+
#. Plugin Name of the plugin/theme
|
941 |
+
msgid "Download Monitor"
|
942 |
+
msgstr "Download Monitor"
|
943 |
+
|
944 |
+
#. Plugin URI of the plugin/theme
|
945 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
946 |
+
msgstr "http://mikejolley.com/projects/download-monitor/"
|
947 |
+
|
948 |
+
#. Description of the plugin/theme
|
949 |
+
msgid ""
|
950 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
951 |
+
"outputting download links and file information on your WordPress powered "
|
952 |
+
"site."
|
953 |
+
msgstr "Una solución completa para gestionar archivos descargables, monitorizar descargas y exportar enlaces de descarga e información de archivos en tu web WordPress."
|
954 |
+
|
955 |
+
#. Author of the plugin/theme
|
956 |
+
msgid "Mike Jolley"
|
957 |
+
msgstr "Mike Jolley"
|
958 |
+
|
959 |
+
#. Author URI of the plugin/theme
|
960 |
+
msgid "http://mikejolley.com"
|
961 |
+
msgstr "http://mikejolley.com"
|
languages/download-monitor-fa_IR.mo
ADDED
Binary file
|
languages/{download_monitor-fa_IR.po → download-monitor-fa_IR.po}
RENAMED
@@ -1,1003 +1,957 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Generator: Poedit 1.5.5\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Textdomain-Support: yes\n"
|
18 |
"Language: fa_IR\n"
|
19 |
-
"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
|
23 |
-
#: download-monitor.php:90 includes/admin/class-dlm-admin.php:206
|
24 |
msgid "Settings"
|
25 |
msgstr "تنظیمات"
|
26 |
|
27 |
-
|
28 |
-
#: download-monitor.php:91
|
29 |
msgid "Add-ons"
|
30 |
msgstr "افزونه ها"
|
31 |
|
32 |
-
|
33 |
-
#: download-monitor.php:92
|
34 |
msgid "Docs"
|
35 |
msgstr "اسناد"
|
36 |
|
37 |
-
|
38 |
-
#:
|
39 |
-
#: includes/admin/class-dlm-admin-cpt.php:174
|
40 |
msgid "Categories"
|
41 |
msgstr "موضوعات"
|
42 |
|
43 |
-
|
44 |
-
#: download-monitor.php:243
|
45 |
msgid "Download Category"
|
46 |
msgstr "موضوعات دانلود"
|
47 |
|
48 |
-
|
49 |
-
#: download-monitor.php:244
|
50 |
msgid "Search Download Categories"
|
51 |
msgstr "جستجوی موضوعات دانلود"
|
52 |
|
53 |
-
|
54 |
-
#: download-monitor.php:245
|
55 |
msgid "All Download Categories"
|
56 |
msgstr "همه ی موضوعات دانلود"
|
57 |
|
58 |
-
|
59 |
-
#: download-monitor.php:246
|
60 |
msgid "Parent Download Category"
|
61 |
msgstr "موضوع دانلود مادر"
|
62 |
|
63 |
-
|
64 |
-
#: download-monitor.php:247
|
65 |
msgid "Parent Download Category:"
|
66 |
msgstr "موضوع دانلود مادر:"
|
67 |
|
68 |
-
|
69 |
-
#: download-monitor.php:248
|
70 |
msgid "Edit Download Category"
|
71 |
msgstr "ویرایش موضوع دانلود"
|
72 |
|
73 |
-
|
74 |
-
#: download-monitor.php:249
|
75 |
msgid "Update Download Category"
|
76 |
msgstr "بروز رسانی موضوع دانلود"
|
77 |
|
78 |
-
|
79 |
-
#: download-monitor.php:250
|
80 |
msgid "Add New Download Category"
|
81 |
msgstr "اضافه کردن موضوع دانلود"
|
82 |
|
83 |
-
|
84 |
-
#: download-monitor.php:251
|
85 |
msgid "New Download Category Name"
|
86 |
msgstr "نام موضوع دانلود جدید"
|
87 |
|
88 |
-
|
89 |
-
#:
|
90 |
-
#: includes/admin/class-dlm-admin-cpt.php:175
|
91 |
msgid "Tags"
|
92 |
msgstr "برچسب ها"
|
93 |
|
94 |
-
|
95 |
-
#: download-monitor.php:272
|
96 |
msgid "Download Tag"
|
97 |
msgstr "برچسب دانلود"
|
98 |
|
99 |
-
|
100 |
-
#: download-monitor.php:273
|
101 |
msgid "Search Download Tags"
|
102 |
msgstr "جستجوی برچسب های دانلود"
|
103 |
|
104 |
-
|
105 |
-
#: download-monitor.php:274
|
106 |
msgid "All Download Tags"
|
107 |
msgstr "همه ی تگ های دانلود"
|
108 |
|
109 |
-
|
110 |
-
#: download-monitor.php:275
|
111 |
msgid "Parent Download Tag"
|
112 |
msgstr "برچسب دانلود مادر"
|
113 |
|
114 |
-
|
115 |
-
#: download-monitor.php:276
|
116 |
msgid "Parent Download Tag:"
|
117 |
msgstr "برچسب دانلود مادر:"
|
118 |
|
119 |
-
|
120 |
-
#: download-monitor.php:277
|
121 |
msgid "Edit Download Tag"
|
122 |
msgstr "ویرایش برچسب دانلود"
|
123 |
|
124 |
-
|
125 |
-
#: download-monitor.php:278
|
126 |
msgid "Update Download Tag"
|
127 |
msgstr "بروز رسانی برچسب دانلود"
|
128 |
|
129 |
-
|
130 |
-
#: download-monitor.php:279
|
131 |
msgid "Add New Download Tag"
|
132 |
msgstr "اضافه کردن برچسب دانلود"
|
133 |
|
134 |
-
|
135 |
-
#: download-monitor.php:280
|
136 |
msgid "New Download Tag Name"
|
137 |
msgstr "نام برچسب دانلود جدید"
|
138 |
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
141 |
msgid "Downloads"
|
142 |
msgstr "دانلود"
|
143 |
|
144 |
-
|
145 |
-
#:
|
146 |
-
#: includes/admin/class-dlm-logging-list-table.php:116
|
147 |
msgid "Download"
|
148 |
msgstr "دانلود"
|
149 |
|
150 |
-
|
151 |
-
#: download-monitor.php:302
|
152 |
msgid "Add New"
|
153 |
msgstr "اضافه کردن"
|
154 |
|
155 |
-
|
156 |
-
#: download-monitor.php:303
|
157 |
msgid "Add Download"
|
158 |
msgstr "اضافه کردن دانلود"
|
159 |
|
160 |
-
|
161 |
-
#: download-monitor.php:304
|
162 |
msgid "Edit"
|
163 |
msgstr "ویرایش"
|
164 |
|
165 |
-
|
166 |
-
#: download-monitor.php:305
|
167 |
msgid "Edit Download"
|
168 |
msgstr "ویرایش دانلود"
|
169 |
|
170 |
-
|
171 |
-
#: download-monitor.php:306
|
172 |
msgid "New Download"
|
173 |
msgstr "دانلود جدید"
|
174 |
|
175 |
-
|
176 |
-
#: download-monitor.php:307 download-monitor.php:308
|
177 |
msgid "View Download"
|
178 |
msgstr "مشاهده دانلود"
|
179 |
|
180 |
-
|
181 |
-
#: download-monitor.php:309
|
182 |
msgid "Search Downloads"
|
183 |
msgstr "جستجوی دانلود ها"
|
184 |
|
185 |
-
|
186 |
-
#: download-monitor.php:310
|
187 |
msgid "No Downloads found"
|
188 |
msgstr "هیچ دانلودی یافت نشد"
|
189 |
|
190 |
-
|
191 |
-
#: download-monitor.php:311
|
192 |
msgid "No Downloads found in trash"
|
193 |
msgstr "هیچ دانلودی در سطل زباله یافت نشد"
|
194 |
|
195 |
-
|
196 |
-
#: download-monitor.php:312
|
197 |
msgid "Parent Download"
|
198 |
msgstr "دانلود مادر"
|
199 |
|
200 |
-
|
201 |
-
#: download-monitor.php:314
|
202 |
msgid "This is where you can create and manage downloads for your site."
|
|
|
|
|
|
|
|
|
|
|
203 |
msgstr ""
|
204 |
-
"اینجا جاییست که شما میتوانید برای سایتتان دانلود جدید بسازید یا آنها را "
|
205 |
-
"مدیریت کنید."
|
206 |
|
207 |
-
# @ download_monitor
|
208 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
209 |
msgid "Select a category"
|
210 |
msgstr "یک موضوع انتخاب کنید"
|
211 |
|
212 |
-
# @ download_monitor
|
213 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
214 |
msgid "Download title"
|
215 |
msgstr "عنوان دانلود"
|
216 |
|
217 |
-
# @ download_monitor
|
218 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
220 |
msgid "Download updated."
|
221 |
msgstr "دانلود بروز رسانی شد."
|
222 |
|
223 |
-
# @ download_monitor
|
224 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
225 |
msgid "Custom field updated."
|
226 |
msgstr "فیلد دلخواه بروز رسانی شد."
|
227 |
|
228 |
-
# @ download_monitor
|
229 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
230 |
msgid "Custom field deleted."
|
231 |
msgstr "فیلد دلخواه حذف شد."
|
232 |
|
233 |
-
# @ download_monitor
|
234 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
235 |
-
#, php-format
|
236 |
msgid "Download restored to revision from %s"
|
237 |
msgstr "دانلود به نسخه %s بازنگری شد"
|
238 |
|
239 |
-
# @ download_monitor
|
240 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
241 |
msgid "Download published."
|
242 |
msgstr "دانلود منتشر شد."
|
243 |
|
244 |
-
# @ download_monitor
|
245 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
246 |
msgid "Download saved."
|
247 |
msgstr "دانلود ذخیره شد."
|
248 |
|
249 |
-
# @ download_monitor
|
250 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
251 |
msgid "Download submitted."
|
252 |
msgstr "دانلود ثبت شد."
|
253 |
|
254 |
-
# @ download_monitor
|
255 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
256 |
-
#, php-format
|
257 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
258 |
msgstr "دانلود برای <strong>%1$s</strong> زمانبندی شد."
|
259 |
|
260 |
-
# @ download_monitor
|
261 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
262 |
msgid "M j, Y @ G:i"
|
263 |
msgstr "M j Y @ G:i"
|
264 |
|
265 |
-
# @ download_monitor
|
266 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
267 |
msgid "Download draft updated."
|
268 |
msgstr "پیشنویس دانلود بروزرسانی شد."
|
269 |
|
270 |
-
|
271 |
-
#: includes/admin/class-dlm-admin-cpt.php:169
|
272 |
msgid "Image"
|
273 |
msgstr "تصویر"
|
274 |
|
275 |
-
|
276 |
-
#: includes/admin/class-dlm-admin-cpt.php:170
|
277 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
278 |
msgid "Title"
|
279 |
msgstr "عنوان"
|
280 |
|
281 |
-
|
282 |
-
#: includes/admin/class-dlm-admin-cpt.php:171
|
283 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
284 |
msgid "ID"
|
285 |
msgstr "شناسه"
|
286 |
|
287 |
-
|
288 |
-
#: includes/admin/class-dlm-
|
289 |
-
#: includes/admin/class-dlm-logging-list-table.php:117
|
290 |
msgid "File"
|
291 |
msgstr "فایل"
|
292 |
|
293 |
-
|
294 |
-
#: includes/admin/class-dlm-admin-
|
295 |
-
#: includes/admin/
|
296 |
-
#: includes/admin/html-downloadable-file-version.php:13
|
297 |
msgid "Version"
|
298 |
msgstr "نسخه"
|
299 |
|
300 |
-
|
301 |
-
#: includes/admin/class-dlm-admin-
|
302 |
-
|
|
|
|
|
303 |
msgstr "تعداد دانلود"
|
304 |
|
305 |
-
|
306 |
-
#: includes/admin/class-dlm-admin-cpt.php:178
|
307 |
msgid "Featured"
|
308 |
msgstr "ویژه"
|
309 |
|
310 |
-
|
311 |
-
#: includes/admin/class-dlm-admin-cpt.php:179
|
312 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
313 |
msgid "Members only"
|
314 |
msgstr "فقط اعضا"
|
315 |
|
316 |
-
|
317 |
-
|
|
|
|
|
|
|
318 |
msgid "Date posted"
|
319 |
msgstr "تاریخ ارسال"
|
320 |
|
321 |
-
|
|
|
|
|
|
|
|
|
|
|
322 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
323 |
msgid "Popular Downloads"
|
324 |
msgstr "دانلود های محبوب"
|
325 |
|
326 |
-
# @ download_monitor
|
327 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
328 |
msgid "There are no stats available yet!"
|
329 |
msgstr "هنوز هیچ آماری در دسترس نیست!"
|
330 |
|
331 |
-
# @ download_monitor
|
332 |
-
#: includes/admin/class-dlm-admin-dashboard.php:68
|
333 |
-
#: includes/admin/html-downloadable-file-version.php:29
|
334 |
-
#: includes/widgets/class-dlm-widget-downloads.php:176
|
335 |
-
msgid "Download count"
|
336 |
-
msgstr "تعداد دانلود"
|
337 |
-
|
338 |
-
# @ download_monitor
|
339 |
#: includes/admin/class-dlm-admin-insert.php:32
|
340 |
#: includes/admin/class-dlm-admin-insert.php:40
|
341 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
342 |
msgid "Insert Download"
|
343 |
msgstr "وارد کردن دانلود"
|
344 |
|
345 |
-
|
346 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
347 |
-
#: includes/admin/class-dlm-admin-insert.php:182
|
348 |
msgid "Insert Shortcode"
|
349 |
msgstr "وارد کردن شورت کد"
|
350 |
|
351 |
-
|
352 |
-
#: includes/admin/class-dlm-admin-insert.php:81
|
353 |
msgid "Quick-add download"
|
354 |
msgstr "اضافه کردن سریع دانلود"
|
355 |
|
356 |
-
|
357 |
-
#: includes/admin/class-dlm-admin-insert.php:124
|
358 |
msgid "Error: File was not created."
|
359 |
msgstr "خطا: فایل ایجاد نشد."
|
360 |
|
361 |
-
|
362 |
-
#: includes/admin/class-dlm-admin-insert.php:143
|
363 |
msgid "Download successfully created."
|
364 |
msgstr "دانلود با موفقیت ایجاد شد."
|
365 |
|
366 |
-
|
367 |
-
#: includes/admin/class-dlm-admin-insert.php:145
|
368 |
msgid "Error: Download was not created."
|
369 |
msgstr "خطا: دانلود ایجاد نشد"
|
370 |
|
371 |
-
|
372 |
-
#: includes/admin/class-dlm-admin-insert.php:163
|
373 |
msgid "Choose a download"
|
374 |
msgstr "یک دانلود را انتخاب کنید"
|
375 |
|
376 |
-
|
377 |
-
#: includes/admin/class-dlm-admin-insert.php:175
|
378 |
msgid "Template"
|
379 |
msgstr "قالب"
|
380 |
|
381 |
-
|
382 |
-
#: includes/admin/class-dlm-admin-insert.php:176
|
383 |
msgid "Template Name"
|
384 |
msgstr "نام قالب"
|
385 |
|
386 |
-
|
387 |
-
#: includes/admin/class-dlm-admin-insert.php:178
|
388 |
-
#: includes/admin/class-dlm-admin.php:94
|
389 |
msgid ""
|
390 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
391 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
392 |
-
"
|
393 |
-
msgstr ""
|
394 |
-
"در صورتی که فیلد را خالی بگذارین به صورت پیشفرض از قالب <code>content-"
|
395 |
-
"download.php</code> استفاده خواهد شد. برای مثال در صورت وارد کردن "
|
396 |
-
"<code>image</code>، قالب دانلود به صورت <code>content-download-image.php</"
|
397 |
-
"code> در خواهد آمد."
|
398 |
|
399 |
-
|
400 |
-
#: includes/admin/class-dlm-admin-insert.php:193
|
401 |
msgid "Drop file here"
|
402 |
msgstr "فایل را اینجا بندازید"
|
403 |
|
404 |
-
|
405 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
406 |
-
#: includes/admin/class-dlm-admin-insert.php:196
|
407 |
msgid "or"
|
408 |
msgstr "یا"
|
409 |
|
410 |
-
|
411 |
-
#: includes/admin/class-dlm-admin-insert.php:195
|
412 |
msgid "Select File"
|
413 |
msgstr "انتخاب فایل"
|
414 |
|
415 |
-
|
416 |
-
#: includes/admin/class-dlm-admin-insert.php:197
|
417 |
msgid "Enter URL manually"
|
418 |
msgstr "بصورت دستی آدرس فایل را وارد کنید"
|
419 |
|
420 |
-
|
421 |
-
#: includes/admin/class-dlm-admin-insert.php:203
|
422 |
msgid "Download URL"
|
423 |
msgstr "آدرس دانلود"
|
424 |
|
425 |
-
|
426 |
-
#: includes/admin/class-dlm-admin-insert.php:204
|
427 |
msgid "Required URL"
|
428 |
msgstr "آدرس مورد نیاز"
|
429 |
|
430 |
-
|
431 |
-
#: includes/admin/class-dlm-admin-insert.php:207
|
432 |
msgid "Download Title"
|
433 |
msgstr "عنوان دانلود"
|
434 |
|
435 |
-
|
436 |
-
#: includes/admin/class-dlm-admin-insert.php:208
|
437 |
msgid "Required title"
|
438 |
msgstr "عنوان مورد نیاز"
|
439 |
|
440 |
-
|
441 |
-
#: includes/admin/class-dlm-admin-insert.php:212
|
442 |
msgid "Optional version number"
|
443 |
msgstr "شماره نسخه اختیاری"
|
444 |
|
445 |
-
|
446 |
-
#: includes/admin/class-dlm-admin-insert.php:215
|
447 |
msgid "Save Download"
|
448 |
msgstr "ذخیره دانلود"
|
449 |
|
450 |
-
|
451 |
-
#: includes/admin/class-dlm-admin-insert.php:273
|
452 |
msgid "Allowed Files"
|
453 |
msgstr "فایل های مجاز"
|
454 |
|
455 |
-
|
456 |
-
#: includes/admin/class-dlm-admin-insert.php:323
|
457 |
msgid "Please wait..."
|
458 |
msgstr "لطفا صبر کنید"
|
459 |
|
460 |
-
# @ download_monitor
|
461 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
462 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
463 |
msgid "Browse for a file"
|
464 |
msgstr "جستجو برای یک فایل"
|
465 |
|
466 |
-
|
467 |
-
#: includes/admin/class-dlm-admin-media-browser.php:100
|
468 |
msgid "No files found"
|
469 |
msgstr "هیچ فایلی یافت نشد"
|
470 |
|
471 |
-
# @ download_monitor
|
472 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
473 |
msgid "Download Options"
|
474 |
msgstr "تنظیمات دانلود"
|
475 |
|
476 |
-
# @ download_monitor
|
477 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
478 |
-
msgid "Downloadable
|
479 |
-
msgstr "
|
480 |
|
481 |
-
# @ download_monitor
|
482 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
483 |
msgid "Short Description"
|
484 |
msgstr "توضیحات کوتاه"
|
485 |
|
486 |
-
# @ download_monitor
|
487 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
488 |
msgid "Featured download"
|
489 |
msgstr "دانلود ویژه"
|
490 |
|
491 |
-
# @ download_monitor
|
492 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
493 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
494 |
msgstr "این دانلود را ویژه کنید! استفاده شده توسط شورت کدها و ابزارک ها."
|
495 |
|
496 |
-
# @ download_monitor
|
497 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
498 |
msgid ""
|
499 |
"Only logged in users will be able to access the file via a download link if "
|
500 |
"this is enabled."
|
|
|
|
|
|
|
|
|
501 |
msgstr ""
|
502 |
-
"در صورت انتخاب تنها کاربران وارد شده به سایت قادر به دسترسی به فایل از طریق "
|
503 |
-
"لینک دانلود هستند."
|
504 |
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
|
|
509 |
|
510 |
-
|
511 |
-
|
|
|
|
|
|
|
512 |
msgid "Close all"
|
513 |
msgstr "بستن همه"
|
514 |
|
515 |
-
|
516 |
-
#: includes/admin/class-dlm-admin-writepanels.php:87
|
517 |
msgid "Expand all"
|
518 |
msgstr "باز کردن همه"
|
519 |
|
520 |
-
|
521 |
-
#: includes/admin/class-dlm-admin-writepanels.php:210
|
522 |
msgid "Are you sure you want to delete this file?"
|
523 |
msgstr "آیا مطمئن هستید میخواهید این فایل را پاک کنید؟"
|
524 |
|
525 |
-
|
526 |
-
#: includes/admin/class-dlm-admin.php:87
|
527 |
msgid "General"
|
528 |
msgstr "عمومی"
|
529 |
|
530 |
-
|
531 |
-
#: includes/admin/class-dlm-admin.php:93
|
532 |
msgid "Default Template"
|
533 |
msgstr "قالب پیشفرض"
|
534 |
|
535 |
-
|
536 |
-
#: includes/admin/class-dlm-admin.php:94
|
537 |
msgid ""
|
538 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
539 |
"default (this can be overridden by the <code>format</code> argument)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
msgstr ""
|
541 |
-
"انتخاب کنید کدام قالب برای شرت کد <code>[download]</code> بصورت پیشفرض "
|
542 |
-
"استفاده شده است (می تواد با استفاده از <code>format</code> بازنویسی شود)."
|
543 |
|
544 |
-
|
545 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
546 |
msgid "Endpoint"
|
547 |
msgstr "نقطه پایانی"
|
548 |
|
549 |
-
|
550 |
-
#: includes/admin/class-dlm-admin.php:104
|
551 |
msgid "download"
|
552 |
msgstr "دانلود"
|
553 |
|
554 |
-
|
555 |
-
#: includes/admin/class-dlm-admin.php:105
|
556 |
msgid "Download Endpoint"
|
557 |
msgstr "نقطه پایانی دانلود"
|
558 |
|
559 |
-
|
560 |
-
#: includes/admin/class-dlm-admin.php:106
|
561 |
-
#, php-format
|
562 |
msgid ""
|
563 |
-
"Define what endpoint should be used for download links. By default this will
|
564 |
-
"be <code>%s</code>."
|
565 |
msgstr ""
|
566 |
|
567 |
-
|
568 |
-
#: includes/admin/class-dlm-admin.php:111
|
569 |
msgid "Endpoint Value"
|
570 |
msgstr "مقدار نقطه پایانی"
|
571 |
|
572 |
-
|
573 |
-
#: includes/admin/class-dlm-admin.php:112
|
574 |
-
#, php-format
|
575 |
msgid ""
|
576 |
"Define what unique value should be used on the end of your endpoint to "
|
577 |
-
"identify the downloadable file. e.g. ID would give a link like
|
578 |
-
"code>"
|
579 |
msgstr ""
|
580 |
|
581 |
-
|
582 |
-
#: includes/admin/class-dlm-admin.php:
|
583 |
-
#: includes/admin/class-dlm-admin.php:369
|
584 |
msgid "Download ID"
|
585 |
msgstr "شناسه دانلود"
|
586 |
|
587 |
-
|
588 |
-
#: includes/admin/class-dlm-admin.php:116
|
589 |
msgid "Download slug"
|
590 |
msgstr "اسلاگ دانلود"
|
591 |
|
592 |
-
|
593 |
-
#: includes/admin/class-dlm-admin.php:122
|
594 |
msgid "X-Accel-Redirect / X-Sendfile"
|
595 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
596 |
|
597 |
-
|
598 |
-
#: includes/admin/class-dlm-admin.php:
|
599 |
-
#: includes/admin/class-dlm-admin.php:
|
600 |
msgid "Enable"
|
601 |
msgstr "فعال"
|
602 |
|
603 |
-
|
604 |
-
#: includes/admin/class-dlm-admin.php:124
|
605 |
msgid ""
|
606 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be
|
607 |
-
"used to serve downloads instead of PHP (server requires
|
608 |
-
"code>)."
|
609 |
-
msgstr ""
|
610 |
-
"در صورتی که از <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> "
|
611 |
-
"پشتیبانی شود، can be used to serve downloads instead of PHP (server requires "
|
612 |
"<code>mod_xsendfile</code>)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
|
614 |
-
|
615 |
-
#: includes/admin/class-dlm-admin.php:130
|
616 |
msgid "Logging"
|
617 |
msgstr "در حال ثبت وقایع"
|
618 |
|
619 |
-
|
620 |
-
#: includes/admin/class-dlm-admin.php:136
|
621 |
msgid "Download Log"
|
622 |
msgstr "ثبت وقایع دانلود"
|
623 |
|
624 |
-
|
625 |
-
#: includes/admin/class-dlm-admin.php:137
|
626 |
msgid "Log download attempts, IP addresses and more."
|
627 |
msgstr "وقایع اقدام به دانلود، آی پی آدرس ها و بیشتر."
|
628 |
|
629 |
-
|
630 |
-
#: includes/admin/class-dlm-admin.php:143
|
631 |
msgid "Blacklist IPs"
|
632 |
msgstr "لیست سیاه آی پی ها"
|
633 |
|
634 |
-
|
635 |
-
#: includes/admin/class-dlm-admin.php:144
|
636 |
msgid ""
|
637 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
638 |
"wildcard."
|
639 |
-
msgstr ""
|
640 |
-
"لیست آی پی آدرس برای لیست سیاه، یکی در هر خط. برای جستجوی عمومی از <code>*</"
|
641 |
-
"code> استفده کنید."
|
642 |
|
643 |
-
|
644 |
-
#: includes/admin/class-dlm-admin.php:151
|
645 |
msgid "Blacklist user agents"
|
646 |
msgstr "لیست سیاه نوع کاربران"
|
647 |
|
648 |
-
|
649 |
-
#: includes/admin/class-dlm-admin.php:152
|
650 |
msgid "List browser user agents to blacklist, 1 per line."
|
651 |
msgstr "لیست نمایش نوع کاربری برای لیست سیاه، یکی در هر خط."
|
652 |
|
653 |
-
|
654 |
-
#: includes/admin/class-dlm-admin.php:204
|
655 |
msgid "Logs"
|
656 |
msgstr "وقایع"
|
657 |
|
658 |
-
|
659 |
-
#: includes/admin/class-dlm-admin.php:237
|
660 |
msgid "Settings successfully saved"
|
661 |
msgstr "تنظیمات با موفقیت ذخیره شد"
|
662 |
|
663 |
-
|
664 |
-
#: includes/admin/class-dlm-admin.php:304
|
665 |
msgid "Save Changes"
|
666 |
msgstr "ذخیره تنظیمات"
|
667 |
|
668 |
-
|
669 |
-
#: includes/admin/class-dlm-admin.php:341
|
670 |
msgid "Download Logs"
|
671 |
msgstr "دانلود وقایع"
|
672 |
|
673 |
-
|
674 |
-
#: includes/admin/class-dlm-admin.php:341
|
675 |
msgid "Export CSV"
|
676 |
msgstr "خروجی CSV"
|
677 |
|
678 |
-
|
679 |
-
|
|
|
|
|
|
|
680 |
msgid "Version ID"
|
681 |
msgstr "شناسه نسخه"
|
682 |
|
683 |
-
|
684 |
-
|
|
|
|
|
|
|
685 |
msgid "User ID"
|
686 |
msgstr "شناسه کاربر"
|
687 |
|
688 |
-
|
689 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
690 |
msgid "User IP"
|
691 |
msgstr "آی پی کاربر"
|
692 |
|
693 |
-
|
694 |
-
#: includes/admin/class-dlm-
|
695 |
-
#: includes/admin/class-dlm-logging-list-table.php:120
|
696 |
msgid "User Agent"
|
697 |
msgstr "نوع کاربر"
|
698 |
|
699 |
-
|
700 |
-
#: includes/admin/class-dlm-
|
701 |
-
#: includes/admin/class-dlm-logging-list-table.php:121
|
702 |
msgid "Date"
|
703 |
msgstr "تاریخ"
|
704 |
|
705 |
-
|
706 |
-
#: includes/admin/class-dlm-admin.php:375
|
707 |
msgid "Status"
|
708 |
msgstr "وضعیت"
|
709 |
|
710 |
-
|
711 |
-
#: includes/admin/class-dlm-logging-list-table.php:43
|
712 |
msgid "Download Complete"
|
713 |
msgstr "دانلود کامل شد"
|
714 |
|
715 |
-
|
716 |
-
#: includes/admin/class-dlm-logging-list-table.php:50
|
717 |
-
#, php-format
|
718 |
msgid "%s ago"
|
719 |
msgstr "%s پیش"
|
720 |
|
721 |
-
|
722 |
-
#: includes/admin/class-dlm-logging-list-table.php:57
|
723 |
-
#, php-format
|
724 |
msgid "Download #%d (no longer exists)"
|
725 |
msgstr "دانلود #%d (دیگر وجود ندارد)"
|
726 |
|
727 |
-
|
728 |
-
#: includes/admin/class-dlm-logging-list-table.php:65
|
729 |
-
#, php-format
|
730 |
msgid "v%s"
|
731 |
msgstr "v%s"
|
732 |
|
733 |
-
|
734 |
-
#: includes/admin/class-dlm-logging-list-table.php:85
|
735 |
msgid "Non-member"
|
736 |
msgstr "عضو نیست"
|
737 |
|
738 |
-
|
739 |
-
#: includes/admin/class-dlm-logging-list-table.php:118
|
740 |
msgid "User"
|
741 |
msgstr "کاربر"
|
742 |
|
743 |
-
|
744 |
-
#: includes/admin/class-dlm-logging-list-table.php:119
|
745 |
msgid "IP Address"
|
746 |
msgstr "آی پی آدرس"
|
747 |
|
748 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
#: includes/admin/html-downloadable-file-version.php:3
|
750 |
msgid "Remove"
|
751 |
msgstr "حذف"
|
752 |
|
753 |
-
# @ download_monitor
|
754 |
#: includes/admin/html-downloadable-file-version.php:4
|
755 |
msgid "Click to toggle"
|
756 |
msgstr "برای تغییر حالت کلیک کنید"
|
757 |
|
758 |
-
# @ download_monitor
|
759 |
#: includes/admin/html-downloadable-file-version.php:5
|
760 |
-
#, php-format
|
761 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
762 |
msgstr "نسخه <span class=\"version\">%s</span> (%s)"
|
763 |
|
764 |
-
# @ download_monitor
|
765 |
#: includes/admin/html-downloadable-file-version.php:5
|
766 |
-
#: includes/admin/html-downloadable-file-version.php:
|
767 |
msgid "n/a"
|
768 |
msgstr "n/a"
|
769 |
|
770 |
-
# @ download_monitor
|
771 |
#: includes/admin/html-downloadable-file-version.php:5
|
772 |
-
#, php-format
|
773 |
msgid "Downloaded %s time"
|
774 |
msgid_plural "Downloaded %s times"
|
775 |
-
msgstr[0] "
|
776 |
-
msgstr[1] "%s بار دانلود شده است"
|
777 |
|
778 |
-
|
779 |
-
#: includes/admin/html-downloadable-file-version.php:18
|
780 |
msgid "File URL(s)"
|
781 |
msgstr "آدرس فایل(ها)"
|
782 |
|
783 |
-
|
784 |
-
#: includes/admin/html-downloadable-file-version.php:19
|
785 |
msgid ""
|
786 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
787 |
"(chosen at random)."
|
788 |
-
msgstr ""
|
789 |
-
"آدرس هر فایل در یک خط - فایل های چنتایی به عنوان لینک میرور استفاده میشوند "
|
790 |
-
"(chosen at random)."
|
791 |
|
792 |
-
|
793 |
-
|
|
|
|
|
|
|
794 |
msgid "Choose a file"
|
795 |
msgstr "یک فایل را انتخاب کنید"
|
796 |
|
797 |
-
|
798 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
799 |
msgid "Insert file URL"
|
800 |
msgstr "آدرس فایل را وارد کنید"
|
801 |
|
802 |
-
|
803 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
804 |
-
msgid "Upload file"
|
805 |
-
msgstr "آپلود فایل"
|
806 |
-
|
807 |
-
# @ download_monitor
|
808 |
-
#: includes/admin/html-downloadable-file-version.php:22
|
809 |
msgid "Browse for file"
|
810 |
msgstr "جستجوی فایل"
|
811 |
|
812 |
-
|
813 |
-
#: includes/admin/html-downloadable-file-version.php:35
|
814 |
msgid "File Date"
|
815 |
msgstr "تاریخ فایل"
|
816 |
|
817 |
-
|
818 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
819 |
msgid "h"
|
820 |
msgstr "h"
|
821 |
|
822 |
-
|
823 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
824 |
msgid "m"
|
825 |
msgstr "m"
|
826 |
|
827 |
-
|
828 |
-
|
|
|
|
|
|
|
829 |
msgid "Download does not exist."
|
830 |
msgstr "دانلود موجود نیست."
|
831 |
|
832 |
-
|
833 |
-
#: includes/class-dlm-download-handler.php:
|
834 |
-
#: includes/class-dlm-download-handler.php:
|
835 |
-
#: includes/class-dlm-download-handler.php:
|
836 |
-
#: includes/class-dlm-download-handler.php:
|
837 |
-
#: includes/class-dlm-download-handler.php:286
|
838 |
msgid "Go to homepage →"
|
839 |
msgstr "برو به صفحه اصلی ←"
|
840 |
|
841 |
-
|
842 |
-
#: includes/class-dlm-download-handler.php:
|
843 |
-
#: includes/class-dlm-download-handler.php:
|
844 |
-
#: includes/class-dlm-download-handler.php:
|
845 |
-
#: includes/class-dlm-download-handler.php:
|
846 |
-
#: includes/class-dlm-download-handler.php:286
|
847 |
msgid "Download Error"
|
848 |
msgstr "خطای دانلود"
|
849 |
|
850 |
-
|
851 |
-
#: includes/class-dlm-download-handler.php:
|
852 |
-
#: includes/class-dlm-download-handler.php:145
|
853 |
msgid "No file paths defined."
|
854 |
msgstr "هیچ آدرس فایلی تعریف نشده است."
|
855 |
|
856 |
-
|
857 |
-
#: includes/class-dlm-download-handler.php:154
|
858 |
msgid "You do not have permission to access this download."
|
859 |
msgstr "شما اجازه دسترسی به این فایل را ندارید"
|
860 |
|
861 |
-
|
862 |
-
#: includes/class-dlm-download-handler.php:
|
863 |
-
#: includes/class-dlm-download-handler.php:
|
864 |
-
#: includes/class-dlm-download-handler.php:
|
865 |
-
#: includes/class-dlm-download-handler.php:264
|
866 |
msgid "Redirected to file"
|
867 |
msgstr "هدایت به فایل"
|
868 |
|
869 |
-
|
870 |
-
#: includes/class-dlm-download-handler.php:279
|
871 |
msgid "Redirected to remote file."
|
872 |
msgstr "هدایت به فایل"
|
873 |
|
874 |
-
|
875 |
-
#: includes/class-dlm-download-handler.php:284
|
876 |
msgid "File not found"
|
877 |
msgstr "فایل یافت نشد"
|
878 |
|
879 |
-
|
880 |
-
#: includes/class-dlm-download-handler.php:286
|
881 |
msgid "File not found."
|
882 |
msgstr "فایل یافت نشد."
|
883 |
|
884 |
-
|
885 |
-
#: includes/class-dlm-shortcodes.php:102
|
886 |
msgid "Download not found"
|
887 |
msgstr "دانلود یافت نشد"
|
888 |
|
889 |
-
# @ download_monitor
|
890 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
891 |
msgid "Display a list of your downloads."
|
892 |
msgstr "نمایش یک لیست از دانلودهای شما"
|
893 |
|
894 |
-
# @ download_monitor
|
895 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
896 |
msgid "Downloads List"
|
897 |
msgstr "لیست دانلودها"
|
898 |
|
899 |
-
# @ download_monitor
|
900 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
901 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
902 |
msgid "Featured Downloads"
|
903 |
msgstr "دانلود های ویژه"
|
904 |
|
905 |
-
# @ download_monitor
|
906 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
907 |
msgid "Title:"
|
908 |
msgstr "عنوان:"
|
909 |
|
910 |
-
# @ download_monitor
|
911 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
912 |
msgid "Limit:"
|
913 |
msgstr "محدودیت:"
|
914 |
|
915 |
-
# @ download_monitor
|
916 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
917 |
msgid "Output template:"
|
918 |
msgstr "قالب خروجی:"
|
919 |
|
920 |
-
# @ download_monitor
|
921 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
922 |
msgid "Default template"
|
923 |
msgstr "قالب پیشفرض"
|
924 |
|
925 |
-
# @ download_monitor
|
926 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
927 |
msgid "Order by:"
|
928 |
msgstr "ترتیب بر اساس:"
|
929 |
|
930 |
-
# @ download_monitor
|
931 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
932 |
msgid "Random"
|
933 |
msgstr "تصادفی"
|
934 |
|
935 |
-
# @ download_monitor
|
936 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
937 |
msgid "Date added"
|
938 |
msgstr "تاریخ ارسال"
|
939 |
|
940 |
-
# @ download_monitor
|
941 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
942 |
msgid "Date modified"
|
943 |
msgstr "تاریخ ویرایش"
|
944 |
|
945 |
-
# @ download_monitor
|
946 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
947 |
msgid "Order:"
|
948 |
msgstr "سفارش:"
|
949 |
|
950 |
-
# @ download_monitor
|
951 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
952 |
msgid "ASC"
|
953 |
msgstr "صعودی"
|
954 |
|
955 |
-
# @ download_monitor
|
956 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
957 |
msgid "DESC"
|
958 |
msgstr "نزولی"
|
959 |
|
960 |
-
# @ download_monitor
|
961 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
962 |
msgid "Show only featured downloads"
|
963 |
msgstr "فقط دانلود های ویژه را نشان بده"
|
964 |
|
965 |
-
# @ download_monitor
|
966 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
967 |
msgid "Show only members only downloads"
|
968 |
msgstr "فقط دانلود های مخصوص اعضا را نشان بده"
|
969 |
|
970 |
-
# @ download_monitor
|
971 |
#: templates/content-download-box.php:12
|
972 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
973 |
-
#, php-format
|
974 |
msgid "1 download"
|
975 |
msgid_plural "%d downloads"
|
976 |
-
msgstr[0] "
|
977 |
-
msgstr[1] "%d دانلود"
|
978 |
|
979 |
-
# @ download_monitor
|
980 |
#: templates/content-download-box.php:20
|
981 |
-
#: templates/content-download-filename.php:8
|
982 |
-
|
983 |
msgid "Version %s"
|
984 |
msgstr "نسخه %s"
|
985 |
|
986 |
-
# @ download_monitor
|
987 |
#: templates/content-download-box.php:21
|
988 |
msgid "Download File"
|
989 |
msgstr "دانلود فایل"
|
990 |
|
991 |
-
# @ download_monitor
|
992 |
#: templates/content-download-button.php:9
|
993 |
-
#, php-format
|
994 |
msgid "Download “%s”"
|
995 |
msgstr "دانلود “%s”"
|
996 |
|
997 |
-
# @ download_monitor
|
998 |
#: templates/content-download-button.php:10
|
999 |
-
|
1000 |
msgid "Downloaded 1 time"
|
1001 |
msgid_plural "Downloaded %d times"
|
1002 |
-
msgstr[0] "
|
1003 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:21+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/download-monitor/language/fa_IR/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
"Language: fa_IR\n"
|
16 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
|
17 |
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "تنظیمات"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
|
|
23 |
msgid "Add-ons"
|
24 |
msgstr "افزونه ها"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
|
|
27 |
msgid "Docs"
|
28 |
msgstr "اسناد"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
|
|
32 |
msgid "Categories"
|
33 |
msgstr "موضوعات"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
|
|
36 |
msgid "Download Category"
|
37 |
msgstr "موضوعات دانلود"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
|
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "جستجوی موضوعات دانلود"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
|
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "همه ی موضوعات دانلود"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
|
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "موضوع دانلود مادر"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
|
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "موضوع دانلود مادر:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
|
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "ویرایش موضوع دانلود"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
|
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "بروز رسانی موضوع دانلود"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
|
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "اضافه کردن موضوع دانلود"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
|
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "نام موضوع دانلود جدید"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
|
|
73 |
msgid "Tags"
|
74 |
msgstr "برچسب ها"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
|
|
77 |
msgid "Download Tag"
|
78 |
msgstr "برچسب دانلود"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
|
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "جستجوی برچسب های دانلود"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
|
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "همه ی تگ های دانلود"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
|
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "برچسب دانلود مادر"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
|
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "برچسب دانلود مادر:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
|
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "ویرایش برچسب دانلود"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
|
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "بروز رسانی برچسب دانلود"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
|
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "اضافه کردن برچسب دانلود"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
|
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "نام برچسب دانلود جدید"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr "دانلود"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
121 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
|
|
122 |
msgid "Download"
|
123 |
msgstr "دانلود"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
|
|
126 |
msgid "Add New"
|
127 |
msgstr "اضافه کردن"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
|
|
130 |
msgid "Add Download"
|
131 |
msgstr "اضافه کردن دانلود"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
|
|
134 |
msgid "Edit"
|
135 |
msgstr "ویرایش"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
|
|
138 |
msgid "Edit Download"
|
139 |
msgstr "ویرایش دانلود"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
|
|
142 |
msgid "New Download"
|
143 |
msgstr "دانلود جدید"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
|
|
146 |
msgid "View Download"
|
147 |
msgstr "مشاهده دانلود"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
|
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "جستجوی دانلود ها"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
|
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "هیچ دانلودی یافت نشد"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
|
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "هیچ دانلودی در سطل زباله یافت نشد"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
|
|
162 |
msgid "Parent Download"
|
163 |
msgstr "دانلود مادر"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
|
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
+
msgstr "اینجا جاییست که شما میتوانید برای سایتتان دانلود جدید بسازید یا آنها را مدیریت کنید."
|
168 |
+
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
msgstr ""
|
|
|
|
|
173 |
|
|
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
msgid "Select a category"
|
176 |
msgstr "یک موضوع انتخاب کنید"
|
177 |
|
|
|
178 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
179 |
msgid "Download title"
|
180 |
msgstr "عنوان دانلود"
|
181 |
|
|
|
182 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
184 |
msgid "Download updated."
|
185 |
msgstr "دانلود بروز رسانی شد."
|
186 |
|
|
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
188 |
msgid "Custom field updated."
|
189 |
msgstr "فیلد دلخواه بروز رسانی شد."
|
190 |
|
|
|
191 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
192 |
msgid "Custom field deleted."
|
193 |
msgstr "فیلد دلخواه حذف شد."
|
194 |
|
|
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "دانلود به نسخه %s بازنگری شد"
|
198 |
|
|
|
199 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
200 |
msgid "Download published."
|
201 |
msgstr "دانلود منتشر شد."
|
202 |
|
|
|
203 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
204 |
msgid "Download saved."
|
205 |
msgstr "دانلود ذخیره شد."
|
206 |
|
|
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
208 |
msgid "Download submitted."
|
209 |
msgstr "دانلود ثبت شد."
|
210 |
|
|
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "دانلود برای <strong>%1$s</strong> زمانبندی شد."
|
214 |
|
|
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr "M j Y @ G:i"
|
218 |
|
|
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "پیشنویس دانلود بروزرسانی شد."
|
222 |
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
|
|
224 |
msgid "Image"
|
225 |
msgstr "تصویر"
|
226 |
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
|
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
msgid "Title"
|
230 |
msgstr "عنوان"
|
231 |
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
|
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
msgid "ID"
|
235 |
msgstr "شناسه"
|
236 |
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
238 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
|
|
239 |
msgid "File"
|
240 |
msgstr "فایل"
|
241 |
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
|
|
245 |
msgid "Version"
|
246 |
msgstr "نسخه"
|
247 |
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
msgstr "تعداد دانلود"
|
254 |
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
|
|
256 |
msgid "Featured"
|
257 |
msgstr "ویژه"
|
258 |
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
|
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
msgid "Members only"
|
262 |
msgstr "فقط اعضا"
|
263 |
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "تاریخ ارسال"
|
271 |
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "دانلود های محبوب"
|
281 |
|
|
|
282 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "هنوز هیچ آماری در دسترس نیست!"
|
285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
#: includes/admin/class-dlm-admin-insert.php:40
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
msgid "Insert Download"
|
290 |
msgstr "وارد کردن دانلود"
|
291 |
|
292 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
|
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "وارد کردن شورت کد"
|
296 |
|
297 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
|
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "اضافه کردن سریع دانلود"
|
300 |
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
|
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "خطا: فایل ایجاد نشد."
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
|
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "دانلود با موفقیت ایجاد شد."
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
|
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "خطا: دانلود ایجاد نشد"
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
|
|
314 |
msgid "Choose a download"
|
315 |
msgstr "یک دانلود را انتخاب کنید"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
|
|
318 |
msgid "Template"
|
319 |
msgstr "قالب"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
|
|
322 |
msgid "Template Name"
|
323 |
msgstr "نام قالب"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
|
|
|
|
326 |
msgid ""
|
327 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "در صورتی که فیلد را خالی بگذارین به صورت پیشفرض از قالب <code>content-download.php</code> استفاده خواهد شد. برای مثال در صورت وارد کردن <code>image</code>، قالب دانلود به صورت <code>content-download-image.php</code> در خواهد آمد."
|
|
|
|
|
|
|
|
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
|
|
333 |
msgid "Drop file here"
|
334 |
msgstr "فایل را اینجا بندازید"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
|
|
338 |
msgid "or"
|
339 |
msgstr "یا"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
|
|
342 |
msgid "Select File"
|
343 |
msgstr "انتخاب فایل"
|
344 |
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
|
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "بصورت دستی آدرس فایل را وارد کنید"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
|
|
350 |
msgid "Download URL"
|
351 |
msgstr "آدرس دانلود"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
|
|
354 |
msgid "Required URL"
|
355 |
msgstr "آدرس مورد نیاز"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
|
|
358 |
msgid "Download Title"
|
359 |
msgstr "عنوان دانلود"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
|
|
362 |
msgid "Required title"
|
363 |
msgstr "عنوان مورد نیاز"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
|
|
366 |
msgid "Optional version number"
|
367 |
msgstr "شماره نسخه اختیاری"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
|
|
370 |
msgid "Save Download"
|
371 |
msgstr "ذخیره دانلود"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
|
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "فایل های مجاز"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
|
|
378 |
msgid "Please wait..."
|
379 |
msgstr "لطفا صبر کنید"
|
380 |
|
|
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "جستجو برای یک فایل"
|
385 |
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
|
|
387 |
msgid "No files found"
|
388 |
msgstr "هیچ فایلی یافت نشد"
|
389 |
|
|
|
390 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
391 |
msgid "Download Options"
|
392 |
msgstr "تنظیمات دانلود"
|
393 |
|
|
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr ""
|
397 |
|
|
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
msgid "Short Description"
|
400 |
msgstr "توضیحات کوتاه"
|
401 |
|
|
|
402 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
403 |
msgid "Featured download"
|
404 |
msgstr "دانلود ویژه"
|
405 |
|
|
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
407 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
msgstr "این دانلود را ویژه کنید! استفاده شده توسط شورت کدها و ابزارک ها."
|
409 |
|
|
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
msgid ""
|
412 |
"Only logged in users will be able to access the file via a download link if "
|
413 |
"this is enabled."
|
414 |
+
msgstr "در صورت انتخاب تنها کاربران وارد شده به سایت قادر به دسترسی به فایل از طریق لینک دانلود هستند."
|
415 |
+
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
msgstr ""
|
|
|
|
|
419 |
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr ""
|
425 |
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
431 |
msgid "Close all"
|
432 |
msgstr "بستن همه"
|
433 |
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
435 |
msgid "Expand all"
|
436 |
msgstr "باز کردن همه"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
|
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "آیا مطمئن هستید میخواهید این فایل را پاک کنید؟"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
|
|
443 |
msgid "General"
|
444 |
msgstr "عمومی"
|
445 |
|
446 |
+
#: includes/admin/class-dlm-admin.php:100
|
|
|
447 |
msgid "Default Template"
|
448 |
msgstr "قالب پیشفرض"
|
449 |
|
450 |
+
#: includes/admin/class-dlm-admin.php:101
|
|
|
451 |
msgid ""
|
452 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "انتخاب کنید کدام قالب برای شرت کد <code>[download]</code> بصورت پیشفرض استفاده شده است (می تواد با استفاده از <code>format</code> بازنویسی شود)."
|
455 |
+
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
msgstr ""
|
|
|
|
|
463 |
|
464 |
+
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "نقطه پایانی"
|
499 |
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
|
|
501 |
msgid "download"
|
502 |
msgstr "دانلود"
|
503 |
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
|
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "نقطه پایانی دانلود"
|
507 |
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
|
|
|
|
509 |
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
|
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "مقدار نقطه پایانی"
|
517 |
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
|
|
|
|
519 |
msgid ""
|
520 |
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
|
|
527 |
msgid "Download ID"
|
528 |
msgstr "شناسه دانلود"
|
529 |
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
|
|
531 |
msgid "Download slug"
|
532 |
msgstr "اسلاگ دانلود"
|
533 |
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
|
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "فعال"
|
543 |
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
|
|
545 |
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
|
|
|
|
|
|
|
|
548 |
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "در صورتی که از <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> پشتیبانی شود، can be used to serve downloads instead of PHP (server requires <code>mod_xsendfile</code>)."
|
550 |
+
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
|
|
562 |
msgid "Logging"
|
563 |
msgstr "در حال ثبت وقایع"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
|
|
566 |
msgid "Download Log"
|
567 |
msgstr "ثبت وقایع دانلود"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
|
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "وقایع اقدام به دانلود، آی پی آدرس ها و بیشتر."
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
|
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "لیست سیاه آی پی ها"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
|
|
578 |
msgid ""
|
579 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
"wildcard."
|
581 |
+
msgstr "لیست آی پی آدرس برای لیست سیاه، یکی در هر خط. برای جستجوی عمومی از <code>*</code> استفده کنید."
|
|
|
|
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
|
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "لیست سیاه نوع کاربران"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
|
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "لیست نمایش نوع کاربری برای لیست سیاه، یکی در هر خط."
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
|
|
592 |
msgid "Logs"
|
593 |
msgstr "وقایع"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
|
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "تنظیمات با موفقیت ذخیره شد"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
|
|
600 |
msgid "Save Changes"
|
601 |
msgstr "ذخیره تنظیمات"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
604 |
msgid "Download Logs"
|
605 |
msgstr "دانلود وقایع"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
608 |
msgid "Export CSV"
|
609 |
msgstr "خروجی CSV"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
msgid "Version ID"
|
617 |
msgstr "شناسه نسخه"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
+
msgid "Filename"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
msgid "User ID"
|
625 |
msgstr "شناسه کاربر"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
+
msgid "User Login"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
+
msgid "User Email"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
msgid "User IP"
|
637 |
msgstr "آی پی کاربر"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
640 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
|
|
641 |
msgid "User Agent"
|
642 |
msgstr "نوع کاربر"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
645 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
|
|
646 |
msgid "Date"
|
647 |
msgstr "تاریخ"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
|
|
650 |
msgid "Status"
|
651 |
msgstr "وضعیت"
|
652 |
|
653 |
+
#: includes/admin/class-dlm-logging-list-table.php:50
|
|
|
654 |
msgid "Download Complete"
|
655 |
msgstr "دانلود کامل شد"
|
656 |
|
657 |
+
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "%s پیش"
|
660 |
|
661 |
+
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "دانلود #%d (دیگر وجود ندارد)"
|
664 |
|
665 |
+
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
669 |
+
#: includes/admin/class-dlm-logging-list-table.php:92
|
|
|
670 |
msgid "Non-member"
|
671 |
msgstr "عضو نیست"
|
672 |
|
673 |
+
#: includes/admin/class-dlm-logging-list-table.php:125
|
|
|
674 |
msgid "User"
|
675 |
msgstr "کاربر"
|
676 |
|
677 |
+
#: includes/admin/class-dlm-logging-list-table.php:126
|
|
|
678 |
msgid "IP Address"
|
679 |
msgstr "آی پی آدرس"
|
680 |
|
681 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
682 |
+
msgid "Any status"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
686 |
+
msgid "Failed"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
690 |
+
msgid "Redirected"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
694 |
+
msgid "Completed"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
+
msgid "Show all dates"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
702 |
+
msgid "%1$s %2$d"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
706 |
+
msgid "25 per page"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
710 |
+
msgid "50 per page"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
714 |
+
msgid "100 per page"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
718 |
+
msgid "200 per page"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
+
msgid "Show All"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
726 |
+
msgid "Filter"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
730 |
msgid "Remove"
|
731 |
msgstr "حذف"
|
732 |
|
|
|
733 |
#: includes/admin/html-downloadable-file-version.php:4
|
734 |
msgid "Click to toggle"
|
735 |
msgstr "برای تغییر حالت کلیک کنید"
|
736 |
|
|
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "نسخه <span class=\"version\">%s</span> (%s)"
|
740 |
|
|
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
msgid "n/a"
|
744 |
msgstr "n/a"
|
745 |
|
|
|
746 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
+
msgstr[0] ""
|
|
|
750 |
|
751 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
|
|
752 |
msgid "File URL(s)"
|
753 |
msgstr "آدرس فایل(ها)"
|
754 |
|
755 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
|
|
756 |
msgid ""
|
757 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
758 |
"(chosen at random)."
|
759 |
+
msgstr "آدرس هر فایل در یک خط - فایل های چنتایی به عنوان لینک میرور استفاده میشوند (chosen at random)."
|
|
|
|
|
760 |
|
761 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
762 |
+
msgid "Upload file"
|
763 |
+
msgstr "آپلود فایل"
|
764 |
+
|
765 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
766 |
msgid "Choose a file"
|
767 |
msgstr "یک فایل را انتخاب کنید"
|
768 |
|
769 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
|
|
770 |
msgid "Insert file URL"
|
771 |
msgstr "آدرس فایل را وارد کنید"
|
772 |
|
773 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgid "Browse for file"
|
775 |
msgstr "جستجوی فایل"
|
776 |
|
777 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
|
|
778 |
msgid "File Date"
|
779 |
msgstr "تاریخ فایل"
|
780 |
|
781 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
782 |
msgid "h"
|
783 |
msgstr "h"
|
784 |
|
785 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
786 |
msgid "m"
|
787 |
msgstr "m"
|
788 |
|
789 |
+
#: includes/class-dlm-download-handler.php:140
|
790 |
+
msgid "Password Required"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/class-dlm-download-handler.php:150
|
794 |
msgid "Download does not exist."
|
795 |
msgstr "دانلود موجود نیست."
|
796 |
|
797 |
+
#: includes/class-dlm-download-handler.php:150
|
798 |
+
#: includes/class-dlm-download-handler.php:180
|
799 |
+
#: includes/class-dlm-download-handler.php:185
|
800 |
+
#: includes/class-dlm-download-handler.php:194
|
801 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
802 |
msgid "Go to homepage →"
|
803 |
msgstr "برو به صفحه اصلی ←"
|
804 |
|
805 |
+
#: includes/class-dlm-download-handler.php:150
|
806 |
+
#: includes/class-dlm-download-handler.php:180
|
807 |
+
#: includes/class-dlm-download-handler.php:185
|
808 |
+
#: includes/class-dlm-download-handler.php:194
|
809 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
810 |
msgid "Download Error"
|
811 |
msgstr "خطای دانلود"
|
812 |
|
813 |
+
#: includes/class-dlm-download-handler.php:180
|
814 |
+
#: includes/class-dlm-download-handler.php:185
|
|
|
815 |
msgid "No file paths defined."
|
816 |
msgstr "هیچ آدرس فایلی تعریف نشده است."
|
817 |
|
818 |
+
#: includes/class-dlm-download-handler.php:194
|
|
|
819 |
msgid "You do not have permission to access this download."
|
820 |
msgstr "شما اجازه دسترسی به این فایل را ندارید"
|
821 |
|
822 |
+
#: includes/class-dlm-download-handler.php:212
|
823 |
+
#: includes/class-dlm-download-handler.php:228
|
824 |
+
#: includes/class-dlm-download-handler.php:235
|
825 |
+
#: includes/class-dlm-download-handler.php:242
|
|
|
826 |
msgid "Redirected to file"
|
827 |
msgstr "هدایت به فایل"
|
828 |
|
829 |
+
#: includes/class-dlm-download-handler.php:281
|
|
|
830 |
msgid "Redirected to remote file."
|
831 |
msgstr "هدایت به فایل"
|
832 |
|
833 |
+
#: includes/class-dlm-download-handler.php:286
|
|
|
834 |
msgid "File not found"
|
835 |
msgstr "فایل یافت نشد"
|
836 |
|
837 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
838 |
msgid "File not found."
|
839 |
msgstr "فایل یافت نشد."
|
840 |
|
841 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
|
|
842 |
msgid "Download not found"
|
843 |
msgstr "دانلود یافت نشد"
|
844 |
|
|
|
845 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
846 |
msgid "Display a list of your downloads."
|
847 |
msgstr "نمایش یک لیست از دانلودهای شما"
|
848 |
|
|
|
849 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
850 |
msgid "Downloads List"
|
851 |
msgstr "لیست دانلودها"
|
852 |
|
|
|
853 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
854 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
855 |
msgid "Featured Downloads"
|
856 |
msgstr "دانلود های ویژه"
|
857 |
|
|
|
858 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
859 |
msgid "Title:"
|
860 |
msgstr "عنوان:"
|
861 |
|
|
|
862 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
863 |
msgid "Limit:"
|
864 |
msgstr "محدودیت:"
|
865 |
|
|
|
866 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
867 |
msgid "Output template:"
|
868 |
msgstr "قالب خروجی:"
|
869 |
|
|
|
870 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
871 |
msgid "Default template"
|
872 |
msgstr "قالب پیشفرض"
|
873 |
|
|
|
874 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
875 |
msgid "Order by:"
|
876 |
msgstr "ترتیب بر اساس:"
|
877 |
|
|
|
878 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
879 |
msgid "Random"
|
880 |
msgstr "تصادفی"
|
881 |
|
|
|
882 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
883 |
msgid "Date added"
|
884 |
msgstr "تاریخ ارسال"
|
885 |
|
|
|
886 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
887 |
msgid "Date modified"
|
888 |
msgstr "تاریخ ویرایش"
|
889 |
|
|
|
890 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
891 |
msgid "Order:"
|
892 |
msgstr "سفارش:"
|
893 |
|
|
|
894 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
895 |
msgid "ASC"
|
896 |
msgstr "صعودی"
|
897 |
|
|
|
898 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
899 |
msgid "DESC"
|
900 |
msgstr "نزولی"
|
901 |
|
|
|
902 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
903 |
msgid "Show only featured downloads"
|
904 |
msgstr "فقط دانلود های ویژه را نشان بده"
|
905 |
|
|
|
906 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
907 |
msgid "Show only members only downloads"
|
908 |
msgstr "فقط دانلود های مخصوص اعضا را نشان بده"
|
909 |
|
|
|
910 |
#: templates/content-download-box.php:12
|
911 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
|
|
912 |
msgid "1 download"
|
913 |
msgid_plural "%d downloads"
|
914 |
+
msgstr[0] ""
|
|
|
915 |
|
|
|
916 |
#: templates/content-download-box.php:20
|
917 |
+
#: templates/content-download-filename.php:8
|
918 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
919 |
msgid "Version %s"
|
920 |
msgstr "نسخه %s"
|
921 |
|
|
|
922 |
#: templates/content-download-box.php:21
|
923 |
msgid "Download File"
|
924 |
msgstr "دانلود فایل"
|
925 |
|
|
|
926 |
#: templates/content-download-button.php:9
|
|
|
927 |
msgid "Download “%s”"
|
928 |
msgstr "دانلود “%s”"
|
929 |
|
|
|
930 |
#: templates/content-download-button.php:10
|
931 |
+
#: templates/content-download-version-list.php:17
|
932 |
msgid "Downloaded 1 time"
|
933 |
msgid_plural "Downloaded %d times"
|
934 |
+
msgstr[0] ""
|
935 |
+
|
936 |
+
#. Plugin Name of the plugin/theme
|
937 |
+
msgid "Download Monitor"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#. Plugin URI of the plugin/theme
|
941 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#. Description of the plugin/theme
|
945 |
+
msgid ""
|
946 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
947 |
+
"outputting download links and file information on your WordPress powered "
|
948 |
+
"site."
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#. Author of the plugin/theme
|
952 |
+
msgid "Mike Jolley"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#. Author URI of the plugin/theme
|
956 |
+
msgid "http://mikejolley.com"
|
957 |
+
msgstr ""
|
languages/download-monitor-fr_FR.mo
ADDED
Binary file
|
languages/{download_monitor-fr_FR.po → download-monitor-fr_FR.po}
RENAMED
@@ -1,1102 +1,960 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
|
15 |
-
|
16 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Textdomain-Support: yes\n"
|
18 |
-
"X-Poedit-SearchPath-0: .\n"
|
19 |
-
|
20 |
-
# @ download_monitor
|
21 |
-
#: download-monitor.php:90 includes/admin/class-dlm-admin.php:233
|
22 |
msgid "Settings"
|
23 |
msgstr "Réglages"
|
24 |
|
25 |
-
|
26 |
-
#: download-monitor.php:91
|
27 |
msgid "Add-ons"
|
28 |
msgstr "Extensions"
|
29 |
|
30 |
-
|
31 |
-
#: download-monitor.php:92
|
32 |
msgid "Docs"
|
33 |
msgstr "Docs"
|
34 |
|
35 |
-
|
36 |
-
#:
|
37 |
-
#: includes/admin/class-dlm-admin-cpt.php:174
|
38 |
msgid "Categories"
|
39 |
msgstr "Catégories"
|
40 |
|
41 |
-
|
42 |
-
#: download-monitor.php:242
|
43 |
msgid "Download Category"
|
44 |
msgstr "Catégorie de téléchargement"
|
45 |
|
46 |
-
|
47 |
-
#: download-monitor.php:243
|
48 |
msgid "Search Download Categories"
|
49 |
msgstr "Recherche dans les catégories de téléchargement"
|
50 |
|
51 |
-
|
52 |
-
#: download-monitor.php:244
|
53 |
msgid "All Download Categories"
|
54 |
msgstr "Toutes les catégories de téléchargement"
|
55 |
|
56 |
-
|
57 |
-
#: download-monitor.php:245
|
58 |
msgid "Parent Download Category"
|
59 |
msgstr "Catégorie parent de téléchargement"
|
60 |
|
61 |
-
|
62 |
-
#: download-monitor.php:246
|
63 |
msgid "Parent Download Category:"
|
64 |
msgstr "Catégorie parent de téléchargement:"
|
65 |
|
66 |
-
|
67 |
-
#: download-monitor.php:247
|
68 |
msgid "Edit Download Category"
|
69 |
msgstr "Editer la catégorie de téléchargement"
|
70 |
|
71 |
-
|
72 |
-
#: download-monitor.php:248
|
73 |
msgid "Update Download Category"
|
74 |
msgstr "Mise à jour de la catégorie de téléchargement"
|
75 |
|
76 |
-
|
77 |
-
#: download-monitor.php:249
|
78 |
msgid "Add New Download Category"
|
79 |
msgstr "Ajouter une nouvelle catégorie de téléchargement"
|
80 |
|
81 |
-
|
82 |
-
#: download-monitor.php:250
|
83 |
msgid "New Download Category Name"
|
84 |
msgstr "Nouveau nom de catégorie de téléchargement"
|
85 |
|
86 |
-
|
87 |
-
#:
|
88 |
-
#: includes/admin/class-dlm-admin-cpt.php:175
|
89 |
msgid "Tags"
|
90 |
msgstr "Mots-clef"
|
91 |
|
92 |
-
|
93 |
-
#: download-monitor.php:272
|
94 |
msgid "Download Tag"
|
95 |
msgstr "Mot-clef de téléchargement"
|
96 |
|
97 |
-
|
98 |
-
#: download-monitor.php:273
|
99 |
msgid "Search Download Tags"
|
100 |
msgstr "Rechercher dans les mots-clef de téléchargement"
|
101 |
|
102 |
-
|
103 |
-
#: download-monitor.php:274
|
104 |
msgid "All Download Tags"
|
105 |
msgstr "Tous les mots-clef de téléchargement"
|
106 |
|
107 |
-
|
108 |
-
#: download-monitor.php:275
|
109 |
msgid "Parent Download Tag"
|
110 |
msgstr "Mot-clef parent de téléchargement"
|
111 |
|
112 |
-
|
113 |
-
#: download-monitor.php:276
|
114 |
msgid "Parent Download Tag:"
|
115 |
msgstr "Mot-clef parent de téléchargement:"
|
116 |
|
117 |
-
|
118 |
-
#: download-monitor.php:277
|
119 |
msgid "Edit Download Tag"
|
120 |
msgstr "Éditer mot-clef de téléchargement"
|
121 |
|
122 |
-
|
123 |
-
#: download-monitor.php:278
|
124 |
msgid "Update Download Tag"
|
125 |
msgstr "Mise à jour mot-clef de téléchargement"
|
126 |
|
127 |
-
|
128 |
-
#: download-monitor.php:279
|
129 |
msgid "Add New Download Tag"
|
130 |
msgstr "Ajouter mot-clef de téléchargement"
|
131 |
|
132 |
-
|
133 |
-
#: download-monitor.php:280
|
134 |
msgid "New Download Tag Name"
|
135 |
msgstr "Nouveau nom de mot-clef de téléchargement"
|
136 |
|
137 |
-
|
138 |
-
|
|
|
|
|
|
|
139 |
msgid "Downloads"
|
140 |
msgstr "Téléchargements"
|
141 |
|
142 |
-
|
143 |
-
#: download-monitor.php:302 includes/admin/class-dlm-admin-dashboard.php:69
|
144 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
145 |
msgid "Download"
|
146 |
msgstr "Téléchargement"
|
147 |
|
148 |
-
|
149 |
-
#: download-monitor.php:303
|
150 |
msgid "Add New"
|
151 |
msgstr "Ajouter nouveau"
|
152 |
|
153 |
-
|
154 |
-
#: download-monitor.php:304
|
155 |
msgid "Add Download"
|
156 |
msgstr "Ajouter téléchargement"
|
157 |
|
158 |
-
|
159 |
-
#: download-monitor.php:305
|
160 |
msgid "Edit"
|
161 |
msgstr "Éditer"
|
162 |
|
163 |
-
|
164 |
-
#: download-monitor.php:306
|
165 |
msgid "Edit Download"
|
166 |
msgstr "Éditer téléchargement"
|
167 |
|
168 |
-
|
169 |
-
#: download-monitor.php:307
|
170 |
msgid "New Download"
|
171 |
msgstr "Nouveau téléchargement"
|
172 |
|
173 |
-
|
174 |
-
#: download-monitor.php:308 download-monitor.php:309
|
175 |
msgid "View Download"
|
176 |
msgstr "Voir téléchargement"
|
177 |
|
178 |
-
|
179 |
-
#: download-monitor.php:310
|
180 |
msgid "Search Downloads"
|
181 |
msgstr "Rechercher dans les téléchargements"
|
182 |
|
183 |
-
|
184 |
-
#: download-monitor.php:311
|
185 |
msgid "No Downloads found"
|
186 |
msgstr "Aucun téléchargement de trouvé"
|
187 |
|
188 |
-
|
189 |
-
#: download-monitor.php:312
|
190 |
msgid "No Downloads found in trash"
|
191 |
msgstr "Aucun téléchargement de trouvé dans la poubelle"
|
192 |
|
193 |
-
|
194 |
-
#: download-monitor.php:313
|
195 |
msgid "Parent Download"
|
196 |
msgstr "Téléchargement parent"
|
197 |
|
198 |
-
|
199 |
-
#: download-monitor.php:315
|
200 |
msgid "This is where you can create and manage downloads for your site."
|
201 |
msgstr "Vous pouvez créer et gérer les téléchargements pour votre site ici."
|
202 |
|
203 |
-
|
|
|
|
|
|
|
|
|
204 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
205 |
msgid "Select a category"
|
206 |
msgstr "Sélectionner une catégorie"
|
207 |
|
208 |
-
# @ download_monitor
|
209 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
210 |
msgid "Download title"
|
211 |
msgstr "Titre de téléchargement"
|
212 |
|
213 |
-
# @ download_monitor
|
214 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
216 |
msgid "Download updated."
|
217 |
msgstr "Téléchargement mis à jour."
|
218 |
|
219 |
-
# @ download_monitor
|
220 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
221 |
msgid "Custom field updated."
|
222 |
msgstr "Champ personnalisé mis à jour."
|
223 |
|
224 |
-
# @ download_monitor
|
225 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
226 |
msgid "Custom field deleted."
|
227 |
msgstr "Champ personnalisé supprimé."
|
228 |
|
229 |
-
# @ download_monitor
|
230 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
231 |
-
#, php-format
|
232 |
msgid "Download restored to revision from %s"
|
233 |
msgstr "Téléchargement restauré à partir de la révision %s"
|
234 |
|
235 |
-
# @ download_monitor
|
236 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
237 |
msgid "Download published."
|
238 |
msgstr "Téléchargement publié."
|
239 |
|
240 |
-
# @ download_monitor
|
241 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
242 |
msgid "Download saved."
|
243 |
msgstr "Téléchargement sauvegardé."
|
244 |
|
245 |
-
# @ download_monitor
|
246 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
247 |
msgid "Download submitted."
|
248 |
msgstr "Téléchargement soumis."
|
249 |
|
250 |
-
# @ download_monitor
|
251 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
252 |
-
#, php-format
|
253 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
254 |
msgstr "Téléchargement programmé pour: <strong>%1$s</strong>."
|
255 |
|
256 |
-
# @ download_monitor
|
257 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
258 |
msgid "M j, Y @ G:i"
|
259 |
msgstr "j F Y @ G:i"
|
260 |
|
261 |
-
# @ download_monitor
|
262 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
263 |
msgid "Download draft updated."
|
264 |
msgstr "Brouillon de téléchargement mis à jour."
|
265 |
|
266 |
-
|
267 |
-
#: includes/admin/class-dlm-admin-cpt.php:169
|
268 |
msgid "Image"
|
269 |
msgstr "Image"
|
270 |
|
271 |
-
|
272 |
-
#: includes/admin/class-dlm-admin-cpt.php:170
|
273 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
274 |
msgid "Title"
|
275 |
msgstr "Titre"
|
276 |
|
277 |
-
|
278 |
-
#: includes/admin/class-dlm-admin-cpt.php:171
|
279 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
280 |
msgid "ID"
|
281 |
msgstr "ID de "
|
282 |
|
283 |
-
|
284 |
-
#: includes/admin/class-dlm-admin-cpt.php:172
|
285 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
286 |
msgid "File"
|
287 |
msgstr "Fichier"
|
288 |
|
289 |
-
|
290 |
-
#: includes/admin/class-dlm-admin-
|
291 |
-
#: includes/admin/
|
292 |
-
#: includes/admin/html-downloadable-file-version.php:13
|
293 |
msgid "Version"
|
294 |
msgstr "Version"
|
295 |
|
296 |
-
|
297 |
-
#: includes/admin/class-dlm-admin-
|
298 |
-
|
299 |
-
|
|
|
|
|
300 |
|
301 |
-
|
302 |
-
#: includes/admin/class-dlm-admin-cpt.php:178
|
303 |
msgid "Featured"
|
304 |
msgstr "À la une"
|
305 |
|
306 |
-
|
307 |
-
#: includes/admin/class-dlm-admin-cpt.php:179
|
308 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
309 |
msgid "Members only"
|
310 |
msgstr "Membres uniquement"
|
311 |
|
312 |
-
|
313 |
-
|
|
|
|
|
|
|
314 |
msgid "Date posted"
|
315 |
msgstr "Date de publication"
|
316 |
|
317 |
-
|
|
|
|
|
|
|
|
|
|
|
318 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
319 |
msgid "Popular Downloads"
|
320 |
msgstr "Téléchargements populaires"
|
321 |
|
322 |
-
# @ download_monitor
|
323 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
324 |
msgid "There are no stats available yet!"
|
325 |
msgstr "Il n'y a pas de stats disponibles actuellement !"
|
326 |
|
327 |
-
|
328 |
-
#: includes/admin/class-dlm-admin-
|
329 |
-
#: includes/admin/html-downloadable-file-version.php:29
|
330 |
-
#: includes/widgets/class-dlm-widget-downloads.php:176
|
331 |
-
msgid "Download count"
|
332 |
-
msgstr "Décompte téléchargement"
|
333 |
-
|
334 |
-
# @ download_monitor
|
335 |
-
#: includes/admin/class-dlm-admin-insert.php:29
|
336 |
-
#: includes/admin/class-dlm-admin-insert.php:37
|
337 |
#: includes/admin/class-dlm-admin-insert.php:68
|
338 |
msgid "Insert Download"
|
339 |
msgstr "Insérer téléchargement"
|
340 |
|
341 |
-
# @ download_monitor
|
342 |
#: includes/admin/class-dlm-admin-insert.php:78
|
343 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
344 |
msgid "Insert Shortcode"
|
345 |
msgstr "Insérer shortcode"
|
346 |
|
347 |
-
# @ download_monitor
|
348 |
#: includes/admin/class-dlm-admin-insert.php:78
|
349 |
msgid "Quick-add download"
|
350 |
msgstr "Ajouter rapidement un téléchargement"
|
351 |
|
352 |
-
# @ download_monitor
|
353 |
#: includes/admin/class-dlm-admin-insert.php:122
|
354 |
msgid "Error: File was not created."
|
355 |
msgstr "Erreur: le fichier n'a pas été créé."
|
356 |
|
357 |
-
|
358 |
-
#: includes/admin/class-dlm-admin-insert.php:129
|
359 |
msgid "Download successfully created."
|
360 |
msgstr "Téléchargement créé avec succès."
|
361 |
|
362 |
-
|
363 |
-
#: includes/admin/class-dlm-admin-insert.php:131
|
364 |
msgid "Error: Download was not created."
|
365 |
msgstr "Erreur: téléchargement non créé."
|
366 |
|
367 |
-
|
368 |
-
#: includes/admin/class-dlm-admin-insert.php:149
|
369 |
msgid "Choose a download"
|
370 |
msgstr "Choisir un téléchargement"
|
371 |
|
372 |
-
|
373 |
-
#: includes/admin/class-dlm-admin-insert.php:161
|
374 |
msgid "Template"
|
375 |
msgstr "Template"
|
376 |
|
377 |
-
|
378 |
-
#: includes/admin/class-dlm-admin-insert.php:162
|
379 |
msgid "Template Name"
|
380 |
msgstr "Nom de template"
|
381 |
|
382 |
-
|
383 |
-
#: includes/admin/class-dlm-admin-insert.php:164
|
384 |
-
#: includes/admin/class-dlm-admin.php:101
|
385 |
msgid ""
|
386 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
387 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
388 |
-
"
|
389 |
-
msgstr ""
|
390 |
-
"Laisser ce champ vide fera utiliser le fichier template par défaut "
|
391 |
-
"<code>content-download.php</code>. Si vous entrez par exemple <code>image</"
|
392 |
-
"code>, le template <code>content-download-image.php</code> sera utilisé à la "
|
393 |
-
"place. "
|
394 |
|
395 |
-
|
396 |
-
#: includes/admin/class-dlm-admin-insert.php:179
|
397 |
msgid "Drop file here"
|
398 |
msgstr "Déposer le fichier ici"
|
399 |
|
400 |
-
|
401 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
402 |
-
#: includes/admin/class-dlm-admin-insert.php:182
|
403 |
msgid "or"
|
404 |
msgstr "ou"
|
405 |
|
406 |
-
|
407 |
-
#: includes/admin/class-dlm-admin-insert.php:181
|
408 |
msgid "Select File"
|
409 |
msgstr "Sélectionner fichier"
|
410 |
|
411 |
-
|
412 |
-
#: includes/admin/class-dlm-admin-insert.php:183
|
413 |
msgid "Enter URL manually"
|
414 |
msgstr "Entrer URL manuellement"
|
415 |
|
416 |
-
|
417 |
-
#: includes/admin/class-dlm-admin-insert.php:189
|
418 |
msgid "Download URL"
|
419 |
msgstr "URL de téléchargement"
|
420 |
|
421 |
-
|
422 |
-
#: includes/admin/class-dlm-admin-insert.php:190
|
423 |
msgid "Required URL"
|
424 |
msgstr "URL requis"
|
425 |
|
426 |
-
|
427 |
-
#: includes/admin/class-dlm-admin-insert.php:193
|
428 |
msgid "Download Title"
|
429 |
msgstr "Titre de téléchargement"
|
430 |
|
431 |
-
|
432 |
-
#: includes/admin/class-dlm-admin-insert.php:194
|
433 |
msgid "Required title"
|
434 |
msgstr "Titre requis"
|
435 |
|
436 |
-
|
437 |
-
#: includes/admin/class-dlm-admin-insert.php:198
|
438 |
msgid "Optional version number"
|
439 |
msgstr "Numéro de version optionnel"
|
440 |
|
441 |
-
|
442 |
-
#: includes/admin/class-dlm-admin-insert.php:201
|
443 |
msgid "Save Download"
|
444 |
msgstr "Sauvegarder téléchargement"
|
445 |
|
446 |
-
|
447 |
-
#: includes/admin/class-dlm-admin-insert.php:259
|
448 |
msgid "Allowed Files"
|
449 |
msgstr "Fichiers autorisés"
|
450 |
|
451 |
-
|
452 |
-
#: includes/admin/class-dlm-admin-insert.php:309
|
453 |
msgid "Please wait..."
|
454 |
msgstr "Veuillez patienter..."
|
455 |
|
456 |
-
# @ download_monitor
|
457 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
458 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
459 |
msgid "Browse for a file"
|
460 |
msgstr "Parcourir à la recherche d'un fichier"
|
461 |
|
462 |
-
|
463 |
-
#: includes/admin/class-dlm-admin-media-browser.php:100
|
464 |
msgid "No files found"
|
465 |
msgstr "Aucun fichier de trouvé"
|
466 |
|
467 |
-
# @ download_monitor
|
468 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
469 |
msgid "Download Options"
|
470 |
msgstr "Options de téléchargement"
|
471 |
|
472 |
-
# @ download_monitor
|
473 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
474 |
-
msgid "Downloadable
|
475 |
-
msgstr "
|
476 |
|
477 |
-
# @ download_monitor
|
478 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
479 |
msgid "Short Description"
|
480 |
msgstr "Description rapide"
|
481 |
|
482 |
-
# @ download_monitor
|
483 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
484 |
msgid "Featured download"
|
485 |
msgstr "Téléchargement à la une"
|
486 |
|
487 |
-
# @ download_monitor
|
488 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
489 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
490 |
-
msgstr ""
|
491 |
-
"Marque ce téléchargement comme étant à la une. Utilisé par les shortcodes et "
|
492 |
-
"les widgets."
|
493 |
|
494 |
-
# @ download_monitor
|
495 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
496 |
msgid ""
|
497 |
"Only logged in users will be able to access the file via a download link if "
|
498 |
"this is enabled."
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
|
|
|
|
|
502 |
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
|
|
|
|
|
|
|
|
|
|
507 |
|
508 |
-
|
509 |
-
#: includes/admin/class-dlm-admin-writepanels.php:93
|
510 |
msgid "Close all"
|
511 |
msgstr "Fermer tout"
|
512 |
|
513 |
-
|
514 |
-
#: includes/admin/class-dlm-admin-writepanels.php:93
|
515 |
msgid "Expand all"
|
516 |
msgstr "Développer tout"
|
517 |
|
518 |
-
|
519 |
-
#: includes/admin/class-dlm-admin-writepanels.php:216
|
520 |
msgid "Are you sure you want to delete this file?"
|
521 |
msgstr "Êtes-vous sûr de vouloir supprimer ce fichier ?"
|
522 |
|
523 |
-
|
524 |
-
#: includes/admin/class-dlm-admin.php:94
|
525 |
msgid "General"
|
526 |
msgstr "Général"
|
527 |
|
528 |
-
# @ download_monitor
|
529 |
#: includes/admin/class-dlm-admin.php:100
|
530 |
msgid "Default Template"
|
531 |
msgstr "Template par défaut"
|
532 |
|
533 |
-
# @ download_monitor
|
534 |
#: includes/admin/class-dlm-admin.php:101
|
535 |
msgid ""
|
536 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
537 |
"default (this can be overridden by the <code>format</code> argument)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
msgstr ""
|
539 |
-
"Veuillez choisir quel template sera utilisé pour les shortcodes <code>"
|
540 |
-
"[download]</code> par défaut (vous pouvez passer outre avec l'argument "
|
541 |
-
"<code>format</code>)."
|
542 |
|
543 |
-
# @ download_monitor
|
544 |
#: includes/admin/class-dlm-admin.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
545 |
msgid "Endpoint"
|
546 |
msgstr "Endpoint"
|
547 |
|
548 |
-
|
549 |
-
#: includes/admin/class-dlm-admin.php:111
|
550 |
msgid "download"
|
551 |
msgstr "download"
|
552 |
|
553 |
-
|
554 |
-
#: includes/admin/class-dlm-admin.php:112
|
555 |
msgid "Download Endpoint"
|
556 |
msgstr "Endpoint de téléchargement"
|
557 |
|
558 |
-
|
559 |
-
#: includes/admin/class-dlm-admin.php:113
|
560 |
-
#, php-format
|
561 |
msgid ""
|
562 |
-
"Define what endpoint should be used for download links. By default this will
|
563 |
-
"be <code>%s</code>."
|
564 |
-
msgstr ""
|
565 |
-
"Définit quet endpoint doit être utilisé pour les liens de téléchargement. "
|
566 |
-
"Par défaut, ce sera <code>%s</code>."
|
567 |
|
568 |
-
|
569 |
-
#: includes/admin/class-dlm-admin.php:118
|
570 |
msgid "Endpoint Value"
|
571 |
msgstr "Valeur de endpoint"
|
572 |
|
573 |
-
|
574 |
-
#: includes/admin/class-dlm-admin.php:119
|
575 |
-
#, php-format
|
576 |
msgid ""
|
577 |
"Define what unique value should be used on the end of your endpoint to "
|
578 |
-
"identify the downloadable file. e.g. ID would give a link like
|
579 |
-
"code>"
|
580 |
-
msgstr ""
|
581 |
-
"Définit quelle unique valeur doit être utilisée à la fin de votre endpoint "
|
582 |
-
"pour identifier le fichier téléchargeable, c' à d l'ID donnerait un lien du "
|
583 |
-
"genre <code>%s</code>"
|
584 |
|
585 |
-
|
586 |
-
#: includes/admin/class-dlm-admin.php:
|
587 |
-
#: includes/admin/class-dlm-admin.php:407
|
588 |
msgid "Download ID"
|
589 |
msgstr "ID de téléchargement"
|
590 |
|
591 |
-
|
592 |
-
#: includes/admin/class-dlm-admin.php:123
|
593 |
msgid "Download slug"
|
594 |
msgstr "Identifiant de téléchargement"
|
595 |
|
596 |
-
|
597 |
-
#: includes/admin/class-dlm-admin.php:129
|
598 |
msgid "X-Accel-Redirect / X-Sendfile"
|
599 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
600 |
|
601 |
-
|
602 |
-
#: includes/admin/class-dlm-admin.php:
|
603 |
-
#: includes/admin/class-dlm-admin.php:
|
604 |
msgid "Enable"
|
605 |
msgstr "Activé"
|
606 |
|
607 |
-
|
608 |
-
#: includes/admin/class-dlm-admin.php:131
|
609 |
msgid ""
|
610 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be
|
611 |
-
"used to serve downloads instead of PHP (server requires
|
612 |
-
"code>)."
|
|
|
|
|
|
|
|
|
613 |
msgstr ""
|
614 |
-
"Si supporté, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> peut "
|
615 |
-
"être utilisé pour servir les téléchargements plutôt que par PHP (le serveur "
|
616 |
-
"nécessite <code>mod_xsendfile</code>)."
|
617 |
|
618 |
-
|
619 |
-
|
|
|
|
|
|
|
|
|
|
|
620 |
msgid "Logging"
|
621 |
msgstr "Connexion"
|
622 |
|
623 |
-
|
624 |
-
#: includes/admin/class-dlm-admin.php:143
|
625 |
msgid "Download Log"
|
626 |
msgstr "Log de téléchargement"
|
627 |
|
628 |
-
|
629 |
-
#: includes/admin/class-dlm-admin.php:144
|
630 |
msgid "Log download attempts, IP addresses and more."
|
631 |
msgstr "Log de tentatives de téléchargement, adresses IP et plus. "
|
632 |
|
633 |
-
|
634 |
-
#: includes/admin/class-dlm-admin.php:150
|
635 |
msgid "Blacklist IPs"
|
636 |
msgstr "Liste noire d'IP"
|
637 |
|
638 |
-
|
639 |
-
#: includes/admin/class-dlm-admin.php:151
|
640 |
msgid ""
|
641 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
642 |
"wildcard."
|
643 |
-
msgstr ""
|
644 |
-
"Liste d'adresses IP à blacklister, une par ligne. Utilisez <code>*</code> "
|
645 |
-
"comme caractère générique."
|
646 |
|
647 |
-
|
648 |
-
#: includes/admin/class-dlm-admin.php:158
|
649 |
msgid "Blacklist user agents"
|
650 |
msgstr "Liste noire d'user agents"
|
651 |
|
652 |
-
|
653 |
-
#: includes/admin/class-dlm-admin.php:159
|
654 |
msgid "List browser user agents to blacklist, 1 per line."
|
655 |
msgstr "Liste d'user agents de navigateur à blacklister, un par ligne."
|
656 |
|
657 |
-
|
658 |
-
#: includes/admin/class-dlm-admin.php:231
|
659 |
msgid "Logs"
|
660 |
msgstr "Logs"
|
661 |
|
662 |
-
|
663 |
-
#: includes/admin/class-dlm-admin.php:264
|
664 |
msgid "Settings successfully saved"
|
665 |
msgstr "Réglages sauvegardés avec succès"
|
666 |
|
667 |
-
|
668 |
-
#: includes/admin/class-dlm-admin.php:331
|
669 |
msgid "Save Changes"
|
670 |
msgstr "Sauvegarder les modifications"
|
671 |
|
672 |
-
|
673 |
-
#: includes/admin/class-dlm-admin.php:368
|
674 |
msgid "Download Logs"
|
675 |
msgstr "Télécharger les logs"
|
676 |
|
677 |
-
|
678 |
-
#: includes/admin/class-dlm-admin.php:368
|
679 |
msgid "Export CSV"
|
680 |
msgstr "Exporter au format CSV"
|
681 |
|
682 |
-
|
683 |
-
|
|
|
|
|
|
|
684 |
msgid "Version ID"
|
685 |
msgstr "ID de version"
|
686 |
|
687 |
-
|
688 |
-
|
|
|
|
|
|
|
689 |
msgid "User ID"
|
690 |
msgstr "ID d'utilisateur"
|
691 |
|
692 |
-
|
693 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
msgid "User IP"
|
695 |
msgstr "IP d'utilisateur"
|
696 |
|
697 |
-
|
698 |
-
#: includes/admin/class-dlm-admin.php:414
|
699 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
700 |
msgid "User Agent"
|
701 |
msgstr "User Agent"
|
702 |
|
703 |
-
|
704 |
-
#: includes/admin/class-dlm-admin.php:415
|
705 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
706 |
msgid "Date"
|
707 |
msgstr "Date"
|
708 |
|
709 |
-
|
710 |
-
#: includes/admin/class-dlm-admin.php:416
|
711 |
msgid "Status"
|
712 |
msgstr "Status"
|
713 |
|
714 |
-
# @ download_monitor
|
715 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
716 |
msgid "Download Complete"
|
717 |
msgstr "Téléchargement complété"
|
718 |
|
719 |
-
# @ download_monitor
|
720 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
721 |
-
#, php-format
|
722 |
msgid "%s ago"
|
723 |
msgstr "il y a %s"
|
724 |
|
725 |
-
# @ download_monitor
|
726 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
727 |
-
#, php-format
|
728 |
msgid "Download #%d (no longer exists)"
|
729 |
msgstr "Le téléchargement #%d (il n'existe plus)"
|
730 |
|
731 |
-
# @ download_monitor
|
732 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
733 |
-
#, php-format
|
734 |
msgid "v%s"
|
735 |
msgstr "v%s"
|
736 |
|
737 |
-
# @ download_monitor
|
738 |
#: includes/admin/class-dlm-logging-list-table.php:92
|
739 |
msgid "Non-member"
|
740 |
msgstr "Non membre"
|
741 |
|
742 |
-
# @ download_monitor
|
743 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
744 |
msgid "User"
|
745 |
msgstr "Utilisateur"
|
746 |
|
747 |
-
# @ download_monitor
|
748 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
749 |
msgid "IP Address"
|
750 |
msgstr "Adresse IP"
|
751 |
|
752 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
753 |
#: includes/admin/html-downloadable-file-version.php:3
|
754 |
msgid "Remove"
|
755 |
msgstr "Retirer"
|
756 |
|
757 |
-
# @ download_monitor
|
758 |
#: includes/admin/html-downloadable-file-version.php:4
|
759 |
msgid "Click to toggle"
|
760 |
msgstr "Cliquer pour déplier"
|
761 |
|
762 |
-
# @ download_monitor
|
763 |
#: includes/admin/html-downloadable-file-version.php:5
|
764 |
-
#, php-format
|
765 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
766 |
msgstr "Version <span class=\"version\">%s</span> (%s)"
|
767 |
|
768 |
-
# @ download_monitor
|
769 |
#: includes/admin/html-downloadable-file-version.php:5
|
770 |
-
#: includes/admin/html-downloadable-file-version.php:
|
771 |
msgid "n/a"
|
772 |
msgstr "n/a"
|
773 |
|
774 |
-
# @ download_monitor
|
775 |
#: includes/admin/html-downloadable-file-version.php:5
|
776 |
-
#, php-format
|
777 |
msgid "Downloaded %s time"
|
778 |
msgid_plural "Downloaded %s times"
|
779 |
msgstr[0] "Téléchargé %s fois"
|
780 |
msgstr[1] "Téléchargé %s fois"
|
781 |
|
782 |
-
|
783 |
-
#: includes/admin/html-downloadable-file-version.php:18
|
784 |
msgid "File URL(s)"
|
785 |
msgstr "URL(s) de fichier"
|
786 |
|
787 |
-
|
788 |
-
#: includes/admin/html-downloadable-file-version.php:19
|
789 |
msgid ""
|
790 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
791 |
"(chosen at random)."
|
792 |
-
msgstr ""
|
793 |
-
"Entrez un chemin de fichier/une URL par ligne - les fichiers multiples "
|
794 |
-
"seront utilisés comme miroirs (choisis au hasard)."
|
795 |
|
796 |
-
|
797 |
-
|
|
|
|
|
|
|
798 |
msgid "Choose a file"
|
799 |
msgstr "Choisir un fichier"
|
800 |
|
801 |
-
|
802 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
803 |
msgid "Insert file URL"
|
804 |
msgstr "Insérer l'URL de fichier"
|
805 |
|
806 |
-
|
807 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
808 |
-
msgid "Upload file"
|
809 |
-
msgstr "Uploader un fichier"
|
810 |
-
|
811 |
-
# @ download_monitor
|
812 |
-
#: includes/admin/html-downloadable-file-version.php:22
|
813 |
msgid "Browse for file"
|
814 |
msgstr "Parcourir à la recherche d'un fichier"
|
815 |
|
816 |
-
|
817 |
-
#: includes/admin/html-downloadable-file-version.php:35
|
818 |
msgid "File Date"
|
819 |
msgstr "Date de fichier"
|
820 |
|
821 |
-
|
822 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
823 |
msgid "h"
|
824 |
msgstr "h"
|
825 |
|
826 |
-
|
827 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
828 |
msgid "m"
|
829 |
msgstr "m"
|
830 |
|
831 |
-
|
832 |
-
|
|
|
|
|
|
|
833 |
msgid "Download does not exist."
|
834 |
msgstr "Le téléchargment n'existe pas."
|
835 |
|
836 |
-
|
837 |
-
#: includes/class-dlm-download-handler.php:
|
838 |
-
#: includes/class-dlm-download-handler.php:
|
839 |
-
#: includes/class-dlm-download-handler.php:
|
840 |
-
#: includes/class-dlm-download-handler.php:
|
841 |
-
#: includes/class-dlm-download-handler.php:333
|
842 |
msgid "Go to homepage →"
|
843 |
msgstr "Aller à la page d'accueil →"
|
844 |
|
845 |
-
|
846 |
-
#: includes/class-dlm-download-handler.php:
|
847 |
-
#: includes/class-dlm-download-handler.php:
|
848 |
-
#: includes/class-dlm-download-handler.php:
|
849 |
-
#: includes/class-dlm-download-handler.php:
|
850 |
-
#: includes/class-dlm-download-handler.php:333
|
851 |
msgid "Download Error"
|
852 |
msgstr "Erreur de téléchargement"
|
853 |
|
854 |
-
|
855 |
-
#: includes/class-dlm-download-handler.php:
|
856 |
-
#: includes/class-dlm-download-handler.php:149
|
857 |
msgid "No file paths defined."
|
858 |
msgstr "Aucun chemin de fichier n'est spécifié."
|
859 |
|
860 |
-
|
861 |
-
#: includes/class-dlm-download-handler.php:158
|
862 |
msgid "You do not have permission to access this download."
|
863 |
msgstr "Vous n'avez pas l'autorisation d'accéder à ce téléchargement."
|
864 |
|
865 |
-
|
866 |
-
#: includes/class-dlm-download-handler.php:
|
867 |
-
#: includes/class-dlm-download-handler.php:
|
868 |
-
#: includes/class-dlm-download-handler.php:
|
869 |
-
#: includes/class-dlm-download-handler.php:286
|
870 |
msgid "Redirected to file"
|
871 |
msgstr "Rediriger vers le fichier"
|
872 |
|
873 |
-
|
874 |
-
#: includes/class-dlm-download-handler.php:325
|
875 |
msgid "Redirected to remote file."
|
876 |
msgstr "Rediriger vers le fichier distant."
|
877 |
|
878 |
-
|
879 |
-
#: includes/class-dlm-download-handler.php:331
|
880 |
msgid "File not found"
|
881 |
msgstr "Fichier non trouvé"
|
882 |
|
883 |
-
|
884 |
-
#: includes/class-dlm-download-handler.php:333
|
885 |
msgid "File not found."
|
886 |
msgstr "Fichier non trouvé."
|
887 |
|
888 |
-
# @ download_monitor
|
889 |
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
890 |
msgid "Download not found"
|
891 |
msgstr "Téléchargement non trouvé"
|
892 |
|
893 |
-
# @ download_monitor
|
894 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
895 |
msgid "Display a list of your downloads."
|
896 |
msgstr "Afficher une liste de vos téléchartements."
|
897 |
|
898 |
-
# @ download_monitor
|
899 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
900 |
msgid "Downloads List"
|
901 |
msgstr "Liste de téléchargements"
|
902 |
|
903 |
-
# @ download_monitor
|
904 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
905 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
906 |
msgid "Featured Downloads"
|
907 |
msgstr "Téléchargements à la une"
|
908 |
|
909 |
-
# @ download_monitor
|
910 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
911 |
msgid "Title:"
|
912 |
msgstr "Titre:"
|
913 |
|
914 |
-
# @ download_monitor
|
915 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
916 |
msgid "Limit:"
|
917 |
msgstr "Limite:"
|
918 |
|
919 |
-
# @ download_monitor
|
920 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
921 |
msgid "Output template:"
|
922 |
msgstr "Template d'affichage:"
|
923 |
|
924 |
-
# @ download_monitor
|
925 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
926 |
msgid "Default template"
|
927 |
msgstr "Template par défaut"
|
928 |
|
929 |
-
# @ download_monitor
|
930 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
931 |
msgid "Order by:"
|
932 |
msgstr "Trier par:"
|
933 |
|
934 |
-
# @ download_monitor
|
935 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
936 |
msgid "Random"
|
937 |
msgstr "au hasard"
|
938 |
|
939 |
-
# @ download_monitor
|
940 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
941 |
msgid "Date added"
|
942 |
msgstr "date d'ajout"
|
943 |
|
944 |
-
# @ download_monitor
|
945 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
946 |
msgid "Date modified"
|
947 |
msgstr "date de modification"
|
948 |
|
949 |
-
# @ download_monitor
|
950 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
951 |
msgid "Order:"
|
952 |
msgstr "Ordre:"
|
953 |
|
954 |
-
# @ download_monitor
|
955 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
956 |
msgid "ASC"
|
957 |
msgstr "ASC"
|
958 |
|
959 |
-
# @ download_monitor
|
960 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
961 |
msgid "DESC"
|
962 |
msgstr "DESC"
|
963 |
|
964 |
-
# @ download_monitor
|
965 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
966 |
msgid "Show only featured downloads"
|
967 |
msgstr "Ne montrer que les téléchargements à la une"
|
968 |
|
969 |
-
# @ download_monitor
|
970 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
971 |
msgid "Show only members only downloads"
|
972 |
msgstr "Ne montrer que les téléchargements réservés aux membres"
|
973 |
|
974 |
-
# @ download_monitor
|
975 |
-
#: templates/content-download-box.php:20
|
976 |
-
#: templates/content-download-filename.php:8 templates/content-download.php:8
|
977 |
-
#, php-format
|
978 |
-
msgid "Version %s"
|
979 |
-
msgstr "Version %s"
|
980 |
-
|
981 |
-
# @ download_monitor
|
982 |
#: templates/content-download-box.php:12
|
983 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
984 |
-
#, php-format
|
985 |
msgid "1 download"
|
986 |
msgid_plural "%d downloads"
|
987 |
msgstr[0] "un téléchargement"
|
988 |
msgstr[1] "%d téléchargements"
|
989 |
|
990 |
-
|
|
|
|
|
|
|
|
|
|
|
991 |
#: templates/content-download-box.php:21
|
992 |
msgid "Download File"
|
993 |
msgstr "Télécharger le fichier"
|
994 |
|
995 |
-
# @ download_monitor
|
996 |
#: templates/content-download-button.php:9
|
997 |
-
#, php-format
|
998 |
msgid "Download “%s”"
|
999 |
msgstr "Télécharger “%s”"
|
1000 |
|
1001 |
-
# @ download_monitor
|
1002 |
#: templates/content-download-button.php:10
|
1003 |
-
|
1004 |
msgid "Downloaded 1 time"
|
1005 |
msgid_plural "Downloaded %d times"
|
1006 |
msgstr[0] "Téléchargé une fois"
|
1007 |
msgstr[1] "Téléchargé %d fois"
|
1008 |
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
msgstr "Nom de fichier"
|
1013 |
-
|
1014 |
-
# @ download_monitor
|
1015 |
-
#: includes/admin/class-dlm-admin.php:411
|
1016 |
-
msgid "User Login"
|
1017 |
-
msgstr "Login utilisateur"
|
1018 |
-
|
1019 |
-
# @ download_monitor
|
1020 |
-
#: includes/admin/class-dlm-admin.php:412
|
1021 |
-
msgid "User Email"
|
1022 |
-
msgstr "Email utilisateur"
|
1023 |
-
|
1024 |
-
# @ download_monitor
|
1025 |
-
#: includes/admin/class-dlm-logging-list-table.php:142
|
1026 |
-
msgid "Any status"
|
1027 |
-
msgstr "Quel que soit le statut"
|
1028 |
-
|
1029 |
-
# @ download_monitor
|
1030 |
-
#: includes/admin/class-dlm-logging-list-table.php:143
|
1031 |
-
msgid "Failed"
|
1032 |
-
msgstr "Échoué"
|
1033 |
-
|
1034 |
-
# @ download_monitor
|
1035 |
-
#: includes/admin/class-dlm-logging-list-table.php:144
|
1036 |
-
msgid "Redirected"
|
1037 |
-
msgstr "Redirigé"
|
1038 |
-
|
1039 |
-
# @ download_monitor
|
1040 |
-
#: includes/admin/class-dlm-logging-list-table.php:145
|
1041 |
-
msgid "Completed"
|
1042 |
-
msgstr "Complété"
|
1043 |
-
|
1044 |
-
# @ download_monitor
|
1045 |
-
#: includes/admin/class-dlm-logging-list-table.php:185
|
1046 |
-
msgid "25 per page"
|
1047 |
-
msgstr "25 par page"
|
1048 |
-
|
1049 |
-
# @ download_monitor
|
1050 |
-
#: includes/admin/class-dlm-logging-list-table.php:186
|
1051 |
-
msgid "50 per page"
|
1052 |
-
msgstr "50 par page"
|
1053 |
-
|
1054 |
-
# @ download_monitor
|
1055 |
-
#: includes/admin/class-dlm-logging-list-table.php:187
|
1056 |
-
msgid "100 per page"
|
1057 |
-
msgstr "100 par page"
|
1058 |
-
|
1059 |
-
# @ download_monitor
|
1060 |
-
#: includes/admin/class-dlm-logging-list-table.php:188
|
1061 |
-
msgid "200 per page"
|
1062 |
-
msgstr "200 par page"
|
1063 |
-
|
1064 |
-
# @ download_monitor
|
1065 |
-
#: includes/admin/class-dlm-logging-list-table.php:189
|
1066 |
-
msgid "Show All"
|
1067 |
-
msgstr "Montrer tout"
|
1068 |
-
|
1069 |
-
# @ download_monitor
|
1070 |
-
#: includes/admin/class-dlm-logging-list-table.php:193
|
1071 |
-
msgid "Filter"
|
1072 |
-
msgstr "Filtrer"
|
1073 |
-
|
1074 |
-
# @ download_monitor
|
1075 |
-
#: includes/admin/class-dlm-admin-cpt.php:180
|
1076 |
-
msgid "Redirect only"
|
1077 |
-
msgstr "Uniquement redirection"
|
1078 |
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
msgstr "Redirection vers le fichier"
|
1083 |
|
1084 |
-
|
1085 |
-
#: includes/admin/class-dlm-admin-writepanels.php:70
|
1086 |
msgid ""
|
1087 |
-
"
|
1088 |
-
"
|
|
|
1089 |
msgstr ""
|
1090 |
-
"Ne pas forcer le téléchargement. Si le répertoire <code>dlm_upload</code> "
|
1091 |
-
"est protégé, il se peut que vous ayez à déplacer le fichier."
|
1092 |
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
msgstr "Montrer toutes les dates"
|
1097 |
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
msgid "%1$s %2$d"
|
1102 |
-
msgstr "%1$s %2$d"
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:20+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: French (France) (http://www.transifex.com/projects/p/download-monitor/language/fr_FR/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: fr_FR\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
17 |
+
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "Réglages"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
|
|
23 |
msgid "Add-ons"
|
24 |
msgstr "Extensions"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
|
|
27 |
msgid "Docs"
|
28 |
msgstr "Docs"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
|
|
32 |
msgid "Categories"
|
33 |
msgstr "Catégories"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
|
|
36 |
msgid "Download Category"
|
37 |
msgstr "Catégorie de téléchargement"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
|
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "Recherche dans les catégories de téléchargement"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
|
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "Toutes les catégories de téléchargement"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
|
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "Catégorie parent de téléchargement"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
|
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "Catégorie parent de téléchargement:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
|
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "Editer la catégorie de téléchargement"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
|
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "Mise à jour de la catégorie de téléchargement"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
|
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "Ajouter une nouvelle catégorie de téléchargement"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
|
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "Nouveau nom de catégorie de téléchargement"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
|
|
73 |
msgid "Tags"
|
74 |
msgstr "Mots-clef"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
|
|
77 |
msgid "Download Tag"
|
78 |
msgstr "Mot-clef de téléchargement"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
|
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "Rechercher dans les mots-clef de téléchargement"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
|
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "Tous les mots-clef de téléchargement"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
|
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "Mot-clef parent de téléchargement"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
|
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "Mot-clef parent de téléchargement:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
|
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "Éditer mot-clef de téléchargement"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
|
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "Mise à jour mot-clef de téléchargement"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
|
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "Ajouter mot-clef de téléchargement"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
|
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "Nouveau nom de mot-clef de téléchargement"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr "Téléchargements"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
|
|
121 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
122 |
msgid "Download"
|
123 |
msgstr "Téléchargement"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
|
|
126 |
msgid "Add New"
|
127 |
msgstr "Ajouter nouveau"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
|
|
130 |
msgid "Add Download"
|
131 |
msgstr "Ajouter téléchargement"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
|
|
134 |
msgid "Edit"
|
135 |
msgstr "Éditer"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
|
|
138 |
msgid "Edit Download"
|
139 |
msgstr "Éditer téléchargement"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
|
|
142 |
msgid "New Download"
|
143 |
msgstr "Nouveau téléchargement"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
|
|
146 |
msgid "View Download"
|
147 |
msgstr "Voir téléchargement"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
|
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "Rechercher dans les téléchargements"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
|
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "Aucun téléchargement de trouvé"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
|
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "Aucun téléchargement de trouvé dans la poubelle"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
|
|
162 |
msgid "Parent Download"
|
163 |
msgstr "Téléchargement parent"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
|
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "Vous pouvez créer et gérer les téléchargements pour votre site ici."
|
168 |
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
msgid "Select a category"
|
176 |
msgstr "Sélectionner une catégorie"
|
177 |
|
|
|
178 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
179 |
msgid "Download title"
|
180 |
msgstr "Titre de téléchargement"
|
181 |
|
|
|
182 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
184 |
msgid "Download updated."
|
185 |
msgstr "Téléchargement mis à jour."
|
186 |
|
|
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
188 |
msgid "Custom field updated."
|
189 |
msgstr "Champ personnalisé mis à jour."
|
190 |
|
|
|
191 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
192 |
msgid "Custom field deleted."
|
193 |
msgstr "Champ personnalisé supprimé."
|
194 |
|
|
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "Téléchargement restauré à partir de la révision %s"
|
198 |
|
|
|
199 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
200 |
msgid "Download published."
|
201 |
msgstr "Téléchargement publié."
|
202 |
|
|
|
203 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
204 |
msgid "Download saved."
|
205 |
msgstr "Téléchargement sauvegardé."
|
206 |
|
|
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
208 |
msgid "Download submitted."
|
209 |
msgstr "Téléchargement soumis."
|
210 |
|
|
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "Téléchargement programmé pour: <strong>%1$s</strong>."
|
214 |
|
|
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr "j F Y @ G:i"
|
218 |
|
|
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "Brouillon de téléchargement mis à jour."
|
222 |
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
|
|
224 |
msgid "Image"
|
225 |
msgstr "Image"
|
226 |
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
|
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
msgid "Title"
|
230 |
msgstr "Titre"
|
231 |
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
|
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
msgid "ID"
|
235 |
msgstr "ID de "
|
236 |
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
|
|
238 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
239 |
msgid "File"
|
240 |
msgstr "Fichier"
|
241 |
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
|
|
245 |
msgid "Version"
|
246 |
msgstr "Version"
|
247 |
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
+
msgstr "Décompte téléchargement"
|
254 |
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
|
|
256 |
msgid "Featured"
|
257 |
msgstr "À la une"
|
258 |
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
|
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
msgid "Members only"
|
262 |
msgstr "Membres uniquement"
|
263 |
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr "Uniquement redirection"
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "Date de publication"
|
271 |
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "Téléchargements populaires"
|
281 |
|
|
|
282 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "Il n'y a pas de stats disponibles actuellement !"
|
285 |
|
286 |
+
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
msgid "Insert Download"
|
290 |
msgstr "Insérer téléchargement"
|
291 |
|
|
|
292 |
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "Insérer shortcode"
|
296 |
|
|
|
297 |
#: includes/admin/class-dlm-admin-insert.php:78
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "Ajouter rapidement un téléchargement"
|
300 |
|
|
|
301 |
#: includes/admin/class-dlm-admin-insert.php:122
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "Erreur: le fichier n'a pas été créé."
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
|
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "Téléchargement créé avec succès."
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
|
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "Erreur: téléchargement non créé."
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
|
|
314 |
msgid "Choose a download"
|
315 |
msgstr "Choisir un téléchargement"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
|
|
318 |
msgid "Template"
|
319 |
msgstr "Template"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
|
|
322 |
msgid "Template Name"
|
323 |
msgstr "Nom de template"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
|
|
|
|
326 |
msgid ""
|
327 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "Laisser ce champ vide fera utiliser le fichier template par défaut <code>content-download.php</code>. Si vous entrez par exemple <code>image</code>, le template <code>content-download-image.php</code> sera utilisé à la place. "
|
|
|
|
|
|
|
|
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
|
|
333 |
msgid "Drop file here"
|
334 |
msgstr "Déposer le fichier ici"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
|
|
338 |
msgid "or"
|
339 |
msgstr "ou"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
|
|
342 |
msgid "Select File"
|
343 |
msgstr "Sélectionner fichier"
|
344 |
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
|
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "Entrer URL manuellement"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
|
|
350 |
msgid "Download URL"
|
351 |
msgstr "URL de téléchargement"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
|
|
354 |
msgid "Required URL"
|
355 |
msgstr "URL requis"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
|
|
358 |
msgid "Download Title"
|
359 |
msgstr "Titre de téléchargement"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
|
|
362 |
msgid "Required title"
|
363 |
msgstr "Titre requis"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
|
|
366 |
msgid "Optional version number"
|
367 |
msgstr "Numéro de version optionnel"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
|
|
370 |
msgid "Save Download"
|
371 |
msgstr "Sauvegarder téléchargement"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
|
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "Fichiers autorisés"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
|
|
378 |
msgid "Please wait..."
|
379 |
msgstr "Veuillez patienter..."
|
380 |
|
|
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "Parcourir à la recherche d'un fichier"
|
385 |
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
|
|
387 |
msgid "No files found"
|
388 |
msgstr "Aucun fichier de trouvé"
|
389 |
|
|
|
390 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
391 |
msgid "Download Options"
|
392 |
msgstr "Options de téléchargement"
|
393 |
|
|
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr ""
|
397 |
|
|
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
msgid "Short Description"
|
400 |
msgstr "Description rapide"
|
401 |
|
|
|
402 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
403 |
msgid "Featured download"
|
404 |
msgstr "Téléchargement à la une"
|
405 |
|
|
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
407 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
+
msgstr "Marque ce téléchargement comme étant à la une. Utilisé par les shortcodes et les widgets."
|
|
|
|
|
409 |
|
|
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
msgid ""
|
412 |
"Only logged in users will be able to access the file via a download link if "
|
413 |
"this is enabled."
|
414 |
+
msgstr "Seuls les utilisateurs connectés auront accès au fichier via un lien de téléchargement si il est disponible."
|
415 |
+
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
+
msgstr "Redirection vers le fichier"
|
419 |
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr "Ne pas forcer le téléchargement. Si le répertoire <code>dlm_upload</code> est protégé, il se peut que vous ayez à déplacer le fichier."
|
425 |
+
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr ""
|
429 |
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
431 |
msgid "Close all"
|
432 |
msgstr "Fermer tout"
|
433 |
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
435 |
msgid "Expand all"
|
436 |
msgstr "Développer tout"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
|
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "Êtes-vous sûr de vouloir supprimer ce fichier ?"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
|
|
443 |
msgid "General"
|
444 |
msgstr "Général"
|
445 |
|
|
|
446 |
#: includes/admin/class-dlm-admin.php:100
|
447 |
msgid "Default Template"
|
448 |
msgstr "Template par défaut"
|
449 |
|
|
|
450 |
#: includes/admin/class-dlm-admin.php:101
|
451 |
msgid ""
|
452 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "Veuillez choisir quel template sera utilisé pour les shortcodes <code>[download]</code> par défaut (vous pouvez passer outre avec l'argument <code>format</code>)."
|
455 |
+
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
msgstr ""
|
|
|
|
|
|
|
463 |
|
|
|
464 |
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "Endpoint"
|
499 |
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
|
|
501 |
msgid "download"
|
502 |
msgstr "download"
|
503 |
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
|
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "Endpoint de téléchargement"
|
507 |
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
|
|
|
|
509 |
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
+
msgstr "Définit quet endpoint doit être utilisé pour les liens de téléchargement. Par défaut, ce sera <code>%s</code>."
|
|
|
|
|
513 |
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
|
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "Valeur de endpoint"
|
517 |
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
|
|
|
|
519 |
msgid ""
|
520 |
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
+
msgstr "Définit quelle unique valeur doit être utilisée à la fin de votre endpoint pour identifier le fichier téléchargeable, c' à d l'ID donnerait un lien du genre <code>%s</code>"
|
|
|
|
|
|
|
524 |
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
|
|
527 |
msgid "Download ID"
|
528 |
msgstr "ID de téléchargement"
|
529 |
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
|
|
531 |
msgid "Download slug"
|
532 |
msgstr "Identifiant de téléchargement"
|
533 |
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
|
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "Activé"
|
543 |
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
|
|
545 |
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
548 |
+
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "Si supporté, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> peut être utilisé pour servir les téléchargements plutôt que par PHP (le serveur nécessite <code>mod_xsendfile</code>)."
|
550 |
+
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
msgstr ""
|
|
|
|
|
|
|
554 |
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "Connexion"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
|
|
566 |
msgid "Download Log"
|
567 |
msgstr "Log de téléchargement"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
|
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "Log de tentatives de téléchargement, adresses IP et plus. "
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
|
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "Liste noire d'IP"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
|
|
578 |
msgid ""
|
579 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
"wildcard."
|
581 |
+
msgstr "Liste d'adresses IP à blacklister, une par ligne. Utilisez <code>*</code> comme caractère générique."
|
|
|
|
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
|
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "Liste noire d'user agents"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
|
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "Liste d'user agents de navigateur à blacklister, un par ligne."
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
|
|
592 |
msgid "Logs"
|
593 |
msgstr "Logs"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
|
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "Réglages sauvegardés avec succès"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
|
|
600 |
msgid "Save Changes"
|
601 |
msgstr "Sauvegarder les modifications"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
604 |
msgid "Download Logs"
|
605 |
msgstr "Télécharger les logs"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
608 |
msgid "Export CSV"
|
609 |
msgstr "Exporter au format CSV"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
msgid "Version ID"
|
617 |
msgstr "ID de version"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
+
msgid "Filename"
|
621 |
+
msgstr "Nom de fichier"
|
622 |
+
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
msgid "User ID"
|
625 |
msgstr "ID d'utilisateur"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
+
msgid "User Login"
|
629 |
+
msgstr "Login utilisateur"
|
630 |
+
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
+
msgid "User Email"
|
633 |
+
msgstr "Email utilisateur"
|
634 |
+
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
msgid "User IP"
|
637 |
msgstr "IP d'utilisateur"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
|
|
640 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
641 |
msgid "User Agent"
|
642 |
msgstr "User Agent"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
|
|
645 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
646 |
msgid "Date"
|
647 |
msgstr "Date"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
|
|
650 |
msgid "Status"
|
651 |
msgstr "Status"
|
652 |
|
|
|
653 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
654 |
msgid "Download Complete"
|
655 |
msgstr "Téléchargement complété"
|
656 |
|
|
|
657 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "il y a %s"
|
660 |
|
|
|
661 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "Le téléchargement #%d (il n'existe plus)"
|
664 |
|
|
|
665 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
|
|
669 |
#: includes/admin/class-dlm-logging-list-table.php:92
|
670 |
msgid "Non-member"
|
671 |
msgstr "Non membre"
|
672 |
|
|
|
673 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
674 |
msgid "User"
|
675 |
msgstr "Utilisateur"
|
676 |
|
|
|
677 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
678 |
msgid "IP Address"
|
679 |
msgstr "Adresse IP"
|
680 |
|
681 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
682 |
+
msgid "Any status"
|
683 |
+
msgstr "Quel que soit le statut"
|
684 |
+
|
685 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
686 |
+
msgid "Failed"
|
687 |
+
msgstr "Échoué"
|
688 |
+
|
689 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
690 |
+
msgid "Redirected"
|
691 |
+
msgstr "Redirigé"
|
692 |
+
|
693 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
694 |
+
msgid "Completed"
|
695 |
+
msgstr "Complété"
|
696 |
+
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
+
msgid "Show all dates"
|
699 |
+
msgstr "Montrer toutes les dates"
|
700 |
+
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
702 |
+
msgid "%1$s %2$d"
|
703 |
+
msgstr "%1$s %2$d"
|
704 |
+
|
705 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
706 |
+
msgid "25 per page"
|
707 |
+
msgstr "25 par page"
|
708 |
+
|
709 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
710 |
+
msgid "50 per page"
|
711 |
+
msgstr "50 par page"
|
712 |
+
|
713 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
714 |
+
msgid "100 per page"
|
715 |
+
msgstr "100 par page"
|
716 |
+
|
717 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
718 |
+
msgid "200 per page"
|
719 |
+
msgstr "200 par page"
|
720 |
+
|
721 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
+
msgid "Show All"
|
723 |
+
msgstr "Montrer tout"
|
724 |
+
|
725 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
726 |
+
msgid "Filter"
|
727 |
+
msgstr "Filtrer"
|
728 |
+
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
730 |
msgid "Remove"
|
731 |
msgstr "Retirer"
|
732 |
|
|
|
733 |
#: includes/admin/html-downloadable-file-version.php:4
|
734 |
msgid "Click to toggle"
|
735 |
msgstr "Cliquer pour déplier"
|
736 |
|
|
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "Version <span class=\"version\">%s</span> (%s)"
|
740 |
|
|
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
msgid "n/a"
|
744 |
msgstr "n/a"
|
745 |
|
|
|
746 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
msgstr[0] "Téléchargé %s fois"
|
750 |
msgstr[1] "Téléchargé %s fois"
|
751 |
|
752 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
|
|
753 |
msgid "File URL(s)"
|
754 |
msgstr "URL(s) de fichier"
|
755 |
|
756 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
|
|
757 |
msgid ""
|
758 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
759 |
"(chosen at random)."
|
760 |
+
msgstr "Entrez un chemin de fichier/une URL par ligne - les fichiers multiples seront utilisés comme miroirs (choisis au hasard)."
|
|
|
|
|
761 |
|
762 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
763 |
+
msgid "Upload file"
|
764 |
+
msgstr "Uploader un fichier"
|
765 |
+
|
766 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
767 |
msgid "Choose a file"
|
768 |
msgstr "Choisir un fichier"
|
769 |
|
770 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
|
|
771 |
msgid "Insert file URL"
|
772 |
msgstr "Insérer l'URL de fichier"
|
773 |
|
774 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
msgid "Browse for file"
|
776 |
msgstr "Parcourir à la recherche d'un fichier"
|
777 |
|
778 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
|
|
779 |
msgid "File Date"
|
780 |
msgstr "Date de fichier"
|
781 |
|
782 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
783 |
msgid "h"
|
784 |
msgstr "h"
|
785 |
|
786 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
787 |
msgid "m"
|
788 |
msgstr "m"
|
789 |
|
790 |
+
#: includes/class-dlm-download-handler.php:140
|
791 |
+
msgid "Password Required"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/class-dlm-download-handler.php:150
|
795 |
msgid "Download does not exist."
|
796 |
msgstr "Le téléchargment n'existe pas."
|
797 |
|
798 |
+
#: includes/class-dlm-download-handler.php:150
|
799 |
+
#: includes/class-dlm-download-handler.php:180
|
800 |
+
#: includes/class-dlm-download-handler.php:185
|
801 |
+
#: includes/class-dlm-download-handler.php:194
|
802 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
803 |
msgid "Go to homepage →"
|
804 |
msgstr "Aller à la page d'accueil →"
|
805 |
|
806 |
+
#: includes/class-dlm-download-handler.php:150
|
807 |
+
#: includes/class-dlm-download-handler.php:180
|
808 |
+
#: includes/class-dlm-download-handler.php:185
|
809 |
+
#: includes/class-dlm-download-handler.php:194
|
810 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
811 |
msgid "Download Error"
|
812 |
msgstr "Erreur de téléchargement"
|
813 |
|
814 |
+
#: includes/class-dlm-download-handler.php:180
|
815 |
+
#: includes/class-dlm-download-handler.php:185
|
|
|
816 |
msgid "No file paths defined."
|
817 |
msgstr "Aucun chemin de fichier n'est spécifié."
|
818 |
|
819 |
+
#: includes/class-dlm-download-handler.php:194
|
|
|
820 |
msgid "You do not have permission to access this download."
|
821 |
msgstr "Vous n'avez pas l'autorisation d'accéder à ce téléchargement."
|
822 |
|
823 |
+
#: includes/class-dlm-download-handler.php:212
|
824 |
+
#: includes/class-dlm-download-handler.php:228
|
825 |
+
#: includes/class-dlm-download-handler.php:235
|
826 |
+
#: includes/class-dlm-download-handler.php:242
|
|
|
827 |
msgid "Redirected to file"
|
828 |
msgstr "Rediriger vers le fichier"
|
829 |
|
830 |
+
#: includes/class-dlm-download-handler.php:281
|
|
|
831 |
msgid "Redirected to remote file."
|
832 |
msgstr "Rediriger vers le fichier distant."
|
833 |
|
834 |
+
#: includes/class-dlm-download-handler.php:286
|
|
|
835 |
msgid "File not found"
|
836 |
msgstr "Fichier non trouvé"
|
837 |
|
838 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
839 |
msgid "File not found."
|
840 |
msgstr "Fichier non trouvé."
|
841 |
|
|
|
842 |
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
843 |
msgid "Download not found"
|
844 |
msgstr "Téléchargement non trouvé"
|
845 |
|
|
|
846 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
847 |
msgid "Display a list of your downloads."
|
848 |
msgstr "Afficher une liste de vos téléchartements."
|
849 |
|
|
|
850 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
851 |
msgid "Downloads List"
|
852 |
msgstr "Liste de téléchargements"
|
853 |
|
|
|
854 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
855 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
856 |
msgid "Featured Downloads"
|
857 |
msgstr "Téléchargements à la une"
|
858 |
|
|
|
859 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
860 |
msgid "Title:"
|
861 |
msgstr "Titre:"
|
862 |
|
|
|
863 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
864 |
msgid "Limit:"
|
865 |
msgstr "Limite:"
|
866 |
|
|
|
867 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
868 |
msgid "Output template:"
|
869 |
msgstr "Template d'affichage:"
|
870 |
|
|
|
871 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
872 |
msgid "Default template"
|
873 |
msgstr "Template par défaut"
|
874 |
|
|
|
875 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
876 |
msgid "Order by:"
|
877 |
msgstr "Trier par:"
|
878 |
|
|
|
879 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
880 |
msgid "Random"
|
881 |
msgstr "au hasard"
|
882 |
|
|
|
883 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
884 |
msgid "Date added"
|
885 |
msgstr "date d'ajout"
|
886 |
|
|
|
887 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
888 |
msgid "Date modified"
|
889 |
msgstr "date de modification"
|
890 |
|
|
|
891 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
892 |
msgid "Order:"
|
893 |
msgstr "Ordre:"
|
894 |
|
|
|
895 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
896 |
msgid "ASC"
|
897 |
msgstr "ASC"
|
898 |
|
|
|
899 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
900 |
msgid "DESC"
|
901 |
msgstr "DESC"
|
902 |
|
|
|
903 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
904 |
msgid "Show only featured downloads"
|
905 |
msgstr "Ne montrer que les téléchargements à la une"
|
906 |
|
|
|
907 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
908 |
msgid "Show only members only downloads"
|
909 |
msgstr "Ne montrer que les téléchargements réservés aux membres"
|
910 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
911 |
#: templates/content-download-box.php:12
|
912 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
|
|
913 |
msgid "1 download"
|
914 |
msgid_plural "%d downloads"
|
915 |
msgstr[0] "un téléchargement"
|
916 |
msgstr[1] "%d téléchargements"
|
917 |
|
918 |
+
#: templates/content-download-box.php:20
|
919 |
+
#: templates/content-download-filename.php:8
|
920 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
921 |
+
msgid "Version %s"
|
922 |
+
msgstr "Version %s"
|
923 |
+
|
924 |
#: templates/content-download-box.php:21
|
925 |
msgid "Download File"
|
926 |
msgstr "Télécharger le fichier"
|
927 |
|
|
|
928 |
#: templates/content-download-button.php:9
|
|
|
929 |
msgid "Download “%s”"
|
930 |
msgstr "Télécharger “%s”"
|
931 |
|
|
|
932 |
#: templates/content-download-button.php:10
|
933 |
+
#: templates/content-download-version-list.php:17
|
934 |
msgid "Downloaded 1 time"
|
935 |
msgid_plural "Downloaded %d times"
|
936 |
msgstr[0] "Téléchargé une fois"
|
937 |
msgstr[1] "Téléchargé %d fois"
|
938 |
|
939 |
+
#. Plugin Name of the plugin/theme
|
940 |
+
msgid "Download Monitor"
|
941 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
942 |
|
943 |
+
#. Plugin URI of the plugin/theme
|
944 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
945 |
+
msgstr ""
|
|
|
946 |
|
947 |
+
#. Description of the plugin/theme
|
|
|
948 |
msgid ""
|
949 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
950 |
+
"outputting download links and file information on your WordPress powered "
|
951 |
+
"site."
|
952 |
msgstr ""
|
|
|
|
|
953 |
|
954 |
+
#. Author of the plugin/theme
|
955 |
+
msgid "Mike Jolley"
|
956 |
+
msgstr ""
|
|
|
957 |
|
958 |
+
#. Author URI of the plugin/theme
|
959 |
+
msgid "http://mikejolley.com"
|
960 |
+
msgstr ""
|
|
|
|
languages/download-monitor-hu_HU.mo
ADDED
Binary file
|
languages/{download_monitor-hu_HU.po → download-monitor-hu_HU.po}
RENAMED
@@ -1,1085 +1,960 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
12 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
13 |
-
|
14 |
-
|
15 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Textdomain-Support: yes\n"
|
19 |
-
"Language: Hungarian\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
|
22 |
-
# @ download_monitor
|
23 |
-
#: download-monitor.php:90 includes/admin/class-dlm-admin.php:226
|
24 |
msgid "Settings"
|
25 |
msgstr "Beállítások"
|
26 |
|
27 |
-
|
28 |
-
#: download-monitor.php:91
|
29 |
msgid "Add-ons"
|
30 |
msgstr "Kiegészítők"
|
31 |
|
32 |
-
|
33 |
-
#: download-monitor.php:92
|
34 |
msgid "Docs"
|
35 |
msgstr "Dokumentum"
|
36 |
|
37 |
-
|
38 |
-
#:
|
39 |
-
#: includes/admin/class-dlm-admin-cpt.php:174
|
40 |
msgid "Categories"
|
41 |
msgstr "Letöltési kategória"
|
42 |
|
43 |
-
|
44 |
-
#: download-monitor.php:243
|
45 |
msgid "Download Category"
|
46 |
msgstr "Letöltési kategória"
|
47 |
|
48 |
-
|
49 |
-
#: download-monitor.php:244
|
50 |
msgid "Search Download Categories"
|
51 |
msgstr "Keresés a letöltési kategóriákban"
|
52 |
|
53 |
-
|
54 |
-
#: download-monitor.php:245
|
55 |
msgid "All Download Categories"
|
56 |
msgstr "Összes letöltési kategória"
|
57 |
|
58 |
-
|
59 |
-
#: download-monitor.php:246
|
60 |
msgid "Parent Download Category"
|
61 |
msgstr "Szülő letöltési kategória"
|
62 |
|
63 |
-
|
64 |
-
#: download-monitor.php:247
|
65 |
msgid "Parent Download Category:"
|
66 |
msgstr "Szülő letöltési kategória:"
|
67 |
|
68 |
-
|
69 |
-
#: download-monitor.php:248
|
70 |
msgid "Edit Download Category"
|
71 |
msgstr "Letöltési kategória szerkesztés"
|
72 |
|
73 |
-
|
74 |
-
#: download-monitor.php:249
|
75 |
msgid "Update Download Category"
|
76 |
msgstr "Letöltési kategória frissítés"
|
77 |
|
78 |
-
|
79 |
-
#: download-monitor.php:250
|
80 |
msgid "Add New Download Category"
|
81 |
msgstr "Új letöltési kategória"
|
82 |
|
83 |
-
|
84 |
-
#: download-monitor.php:251
|
85 |
msgid "New Download Category Name"
|
86 |
msgstr "Új letöltési kategória neve"
|
87 |
|
88 |
-
|
89 |
-
#:
|
90 |
-
#: includes/admin/class-dlm-admin-cpt.php:175
|
91 |
msgid "Tags"
|
92 |
msgstr "Letöltés címke"
|
93 |
|
94 |
-
|
95 |
-
#: download-monitor.php:273
|
96 |
msgid "Download Tag"
|
97 |
msgstr "Letöltés címke"
|
98 |
|
99 |
-
|
100 |
-
#: download-monitor.php:274
|
101 |
msgid "Search Download Tags"
|
102 |
msgstr "Keresés a letöltési címkék között"
|
103 |
|
104 |
-
|
105 |
-
#: download-monitor.php:275
|
106 |
msgid "All Download Tags"
|
107 |
msgstr "Összes letöltés-címke"
|
108 |
|
109 |
-
|
110 |
-
#: download-monitor.php:276
|
111 |
msgid "Parent Download Tag"
|
112 |
msgstr "Szülő letöltési címke"
|
113 |
|
114 |
-
|
115 |
-
#: download-monitor.php:277
|
116 |
msgid "Parent Download Tag:"
|
117 |
msgstr "Szülő letöltési címke:"
|
118 |
|
119 |
-
|
120 |
-
#: download-monitor.php:278
|
121 |
msgid "Edit Download Tag"
|
122 |
msgstr "Letöltési címke szerkesztése"
|
123 |
|
124 |
-
|
125 |
-
#: download-monitor.php:279
|
126 |
msgid "Update Download Tag"
|
127 |
msgstr "Letöltési címke frissítése"
|
128 |
|
129 |
-
|
130 |
-
#: download-monitor.php:280
|
131 |
msgid "Add New Download Tag"
|
132 |
msgstr "Új letöltési címke"
|
133 |
|
134 |
-
|
135 |
-
#: download-monitor.php:281
|
136 |
msgid "New Download Tag Name"
|
137 |
msgstr "Új letöltési címke neve:"
|
138 |
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
141 |
msgid "Downloads"
|
142 |
msgstr "Letöltés"
|
143 |
|
144 |
-
|
145 |
-
#: download-monitor.php:303 includes/admin/class-dlm-admin-dashboard.php:69
|
146 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
147 |
msgid "Download"
|
148 |
msgstr "Letöltés"
|
149 |
|
150 |
-
|
151 |
-
#: download-monitor.php:304
|
152 |
msgid "Add New"
|
153 |
msgstr "Új létrehozása"
|
154 |
|
155 |
-
|
156 |
-
#: download-monitor.php:305
|
157 |
msgid "Add Download"
|
158 |
msgstr "Letöltés hozzáadása"
|
159 |
|
160 |
-
|
161 |
-
#: download-monitor.php:306
|
162 |
msgid "Edit"
|
163 |
msgstr "Szerkesztés"
|
164 |
|
165 |
-
|
166 |
-
#: download-monitor.php:307
|
167 |
msgid "Edit Download"
|
168 |
msgstr "Letöltés szerkesztése"
|
169 |
|
170 |
-
|
171 |
-
#: download-monitor.php:308
|
172 |
msgid "New Download"
|
173 |
msgstr "Új letöltés"
|
174 |
|
175 |
-
|
176 |
-
#: download-monitor.php:309 download-monitor.php:310
|
177 |
msgid "View Download"
|
178 |
msgstr "Letöltés megtekintése"
|
179 |
|
180 |
-
|
181 |
-
#: download-monitor.php:311
|
182 |
msgid "Search Downloads"
|
183 |
msgstr "Letöltés keresése"
|
184 |
|
185 |
-
|
186 |
-
#: download-monitor.php:312
|
187 |
msgid "No Downloads found"
|
188 |
msgstr "Nem található letöltés"
|
189 |
|
190 |
-
|
191 |
-
#: download-monitor.php:313
|
192 |
msgid "No Downloads found in trash"
|
193 |
msgstr "Nem található letöltés a lomtárban"
|
194 |
|
195 |
-
|
196 |
-
#: download-monitor.php:314
|
197 |
msgid "Parent Download"
|
198 |
msgstr "Letöltés szülő"
|
199 |
|
200 |
-
|
201 |
-
#: download-monitor.php:316
|
202 |
msgid "This is where you can create and manage downloads for your site."
|
|
|
|
|
|
|
|
|
|
|
203 |
msgstr ""
|
204 |
-
"Ez az a rész, ahol a honlapunkhoz létrehozhatunk és kezelhetünk letöltéseket."
|
205 |
|
206 |
-
# @ download_monitor
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
208 |
msgid "Select a category"
|
209 |
msgstr "Kategória választása"
|
210 |
|
211 |
-
# @ download_monitor
|
212 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
213 |
msgid "Download title"
|
214 |
msgstr "Letöltés elnevezése"
|
215 |
|
216 |
-
# @ download_monitor
|
217 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
218 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
219 |
msgid "Download updated."
|
220 |
msgstr "Letöltés frissítve"
|
221 |
|
222 |
-
# @ download_monitor
|
223 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
224 |
msgid "Custom field updated."
|
225 |
msgstr "Egyedi mező frissítve."
|
226 |
|
227 |
-
# @ download_monitor
|
228 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
229 |
msgid "Custom field deleted."
|
230 |
msgstr "Egyedi mező törölve."
|
231 |
|
232 |
-
# @ download_monitor
|
233 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
234 |
-
#, php-format
|
235 |
msgid "Download restored to revision from %s"
|
236 |
msgstr "%s változatból a letöltés helyreállítva"
|
237 |
|
238 |
-
# @ download_monitor
|
239 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
240 |
msgid "Download published."
|
241 |
msgstr "Letöltés közzétéve."
|
242 |
|
243 |
-
# @ download_monitor
|
244 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
245 |
msgid "Download saved."
|
246 |
msgstr "Letöltés elmentve."
|
247 |
|
248 |
-
# @ download_monitor
|
249 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
250 |
msgid "Download submitted."
|
251 |
msgstr "Letöltés elküldve"
|
252 |
|
253 |
-
# @ download_monitor
|
254 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
255 |
-
#, php-format
|
256 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
257 |
msgstr "<strong>%1$s</strong> letöltés ütemezve."
|
258 |
|
259 |
-
# @ download_monitor
|
260 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
261 |
msgid "M j, Y @ G:i"
|
262 |
msgstr "Y-m-d H:i"
|
263 |
|
264 |
-
# @ download_monitor
|
265 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
266 |
msgid "Download draft updated."
|
267 |
msgstr "Letöltés vázlat frissítve."
|
268 |
|
269 |
-
|
270 |
-
#: includes/admin/class-dlm-admin-cpt.php:169
|
271 |
msgid "Image"
|
272 |
msgstr "Kép"
|
273 |
|
274 |
-
|
275 |
-
#: includes/admin/class-dlm-admin-cpt.php:170
|
276 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
277 |
msgid "Title"
|
278 |
msgstr "Cím"
|
279 |
|
280 |
-
|
281 |
-
#: includes/admin/class-dlm-admin-cpt.php:171
|
282 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
283 |
msgid "ID"
|
284 |
msgstr "ID"
|
285 |
|
286 |
-
|
287 |
-
#: includes/admin/class-dlm-admin-cpt.php:172
|
288 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
289 |
msgid "File"
|
290 |
msgstr "Fájl"
|
291 |
|
292 |
-
|
293 |
-
#: includes/admin/class-dlm-admin-
|
294 |
-
#: includes/admin/
|
295 |
-
#: includes/admin/html-downloadable-file-version.php:13
|
296 |
msgid "Version"
|
297 |
msgstr "verzió"
|
298 |
|
299 |
-
|
300 |
-
#: includes/admin/class-dlm-admin-
|
301 |
-
|
302 |
-
|
|
|
|
|
303 |
|
304 |
-
|
305 |
-
#: includes/admin/class-dlm-admin-cpt.php:178
|
306 |
msgid "Featured"
|
307 |
msgstr "Kiemelt"
|
308 |
|
309 |
-
|
310 |
-
#: includes/admin/class-dlm-admin-cpt.php:179
|
311 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
312 |
msgid "Members only"
|
313 |
msgstr "Csak regisztrált felhasználóknak"
|
314 |
|
315 |
-
|
316 |
-
|
|
|
|
|
|
|
317 |
msgid "Date posted"
|
318 |
msgstr "Dátum elküldve"
|
319 |
|
320 |
-
|
|
|
|
|
|
|
|
|
|
|
321 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
322 |
msgid "Popular Downloads"
|
323 |
msgstr "Népszerű letöltések"
|
324 |
|
325 |
-
# @ download_monitor
|
326 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
327 |
msgid "There are no stats available yet!"
|
328 |
msgstr "Még nem érhető el statisztikai adat."
|
329 |
|
330 |
-
|
331 |
-
#: includes/admin/class-dlm-admin-
|
332 |
-
#: includes/admin/html-downloadable-file-version.php:29
|
333 |
-
#: includes/widgets/class-dlm-widget-downloads.php:176
|
334 |
-
msgid "Download count"
|
335 |
-
msgstr "Letöltés számlálás"
|
336 |
-
|
337 |
-
# @ download_monitor
|
338 |
-
#: includes/admin/class-dlm-admin-insert.php:29
|
339 |
-
#: includes/admin/class-dlm-admin-insert.php:37
|
340 |
#: includes/admin/class-dlm-admin-insert.php:68
|
341 |
msgid "Insert Download"
|
342 |
msgstr "Letöltés beillesztése"
|
343 |
|
344 |
-
# @ download_monitor
|
345 |
#: includes/admin/class-dlm-admin-insert.php:78
|
346 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
347 |
msgid "Insert Shortcode"
|
348 |
msgstr "Rövidkód beillesztése"
|
349 |
|
350 |
-
# @ download_monitor
|
351 |
#: includes/admin/class-dlm-admin-insert.php:78
|
352 |
msgid "Quick-add download"
|
353 |
msgstr "Gyors letöltés hozzáadás"
|
354 |
|
355 |
-
|
356 |
-
#: includes/admin/class-dlm-admin-insert.php:121
|
357 |
msgid "Error: File was not created."
|
358 |
msgstr "Hiba: Nem hozható létre a fájl."
|
359 |
|
360 |
-
|
361 |
-
#: includes/admin/class-dlm-admin-insert.php:128
|
362 |
msgid "Download successfully created."
|
363 |
msgstr "A letöltés sikeresen létrehozva."
|
364 |
|
365 |
-
|
366 |
-
#: includes/admin/class-dlm-admin-insert.php:130
|
367 |
msgid "Error: Download was not created."
|
368 |
msgstr "Hiba: A letöltés nem hozható létre."
|
369 |
|
370 |
-
|
371 |
-
#: includes/admin/class-dlm-admin-insert.php:148
|
372 |
msgid "Choose a download"
|
373 |
msgstr "Válasszunk ki egy letöltést"
|
374 |
|
375 |
-
|
376 |
-
#: includes/admin/class-dlm-admin-insert.php:160
|
377 |
msgid "Template"
|
378 |
msgstr "Sablonminta"
|
379 |
|
380 |
-
|
381 |
-
#: includes/admin/class-dlm-admin-insert.php:161
|
382 |
msgid "Template Name"
|
383 |
msgstr "Sablonminta neve"
|
384 |
|
385 |
-
|
386 |
-
#: includes/admin/class-dlm-admin-insert.php:163
|
387 |
-
#: includes/admin/class-dlm-admin.php:94
|
388 |
msgid ""
|
389 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
390 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
391 |
-
"
|
392 |
-
msgstr ""
|
393 |
-
"Alapértelmezetként hagyjuk üresen a <code>content-download.php</code> "
|
394 |
-
"mintasablon fájl használatához. Amennyiben pl. az <code>image</code> kerül "
|
395 |
-
"megadásra, akkor a <code>content-download-image.php</code> mintasablon fog "
|
396 |
-
"helyette használatba kerülni."
|
397 |
|
398 |
-
|
399 |
-
#: includes/admin/class-dlm-admin-insert.php:178
|
400 |
msgid "Drop file here"
|
401 |
msgstr "Húzzuk ide a fájlt"
|
402 |
|
403 |
-
|
404 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
405 |
-
#: includes/admin/class-dlm-admin-insert.php:181
|
406 |
msgid "or"
|
407 |
msgstr "vagy"
|
408 |
|
409 |
-
|
410 |
-
#: includes/admin/class-dlm-admin-insert.php:180
|
411 |
msgid "Select File"
|
412 |
msgstr "Válasszunk egy fájlt"
|
413 |
|
414 |
-
|
415 |
-
#: includes/admin/class-dlm-admin-insert.php:182
|
416 |
msgid "Enter URL manually"
|
417 |
msgstr "URL megadása kézzel"
|
418 |
|
419 |
-
|
420 |
-
#: includes/admin/class-dlm-admin-insert.php:188
|
421 |
msgid "Download URL"
|
422 |
msgstr "Letöltési URL"
|
423 |
|
424 |
-
|
425 |
-
#: includes/admin/class-dlm-admin-insert.php:189
|
426 |
msgid "Required URL"
|
427 |
msgstr "Kötelező URL"
|
428 |
|
429 |
-
|
430 |
-
#: includes/admin/class-dlm-admin-insert.php:192
|
431 |
msgid "Download Title"
|
432 |
msgstr "Letöltés neve"
|
433 |
|
434 |
-
|
435 |
-
#: includes/admin/class-dlm-admin-insert.php:193
|
436 |
msgid "Required title"
|
437 |
msgstr "Kötelező cím"
|
438 |
|
439 |
-
|
440 |
-
#: includes/admin/class-dlm-admin-insert.php:197
|
441 |
msgid "Optional version number"
|
442 |
msgstr "Verziószám (opcionális)"
|
443 |
|
444 |
-
|
445 |
-
#: includes/admin/class-dlm-admin-insert.php:200
|
446 |
msgid "Save Download"
|
447 |
msgstr "Letöltés mentése"
|
448 |
|
449 |
-
|
450 |
-
#: includes/admin/class-dlm-admin-insert.php:258
|
451 |
msgid "Allowed Files"
|
452 |
msgstr "Engedélyezett fájlok"
|
453 |
|
454 |
-
|
455 |
-
#: includes/admin/class-dlm-admin-insert.php:308
|
456 |
msgid "Please wait..."
|
457 |
msgstr "Kis türelmet kérünk..."
|
458 |
|
459 |
-
# @ download_monitor
|
460 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
461 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
462 |
msgid "Browse for a file"
|
463 |
msgstr "Tallózás...Nach Datei suchen"
|
464 |
|
465 |
-
|
466 |
-
#: includes/admin/class-dlm-admin-media-browser.php:100
|
467 |
msgid "No files found"
|
468 |
msgstr "Nem található fájl"
|
469 |
|
470 |
-
# @ download_monitor
|
471 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
472 |
msgid "Download Options"
|
473 |
msgstr "Letöltési lehetőségek"
|
474 |
|
475 |
-
# @ download_monitor
|
476 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
477 |
-
msgid "Downloadable
|
478 |
-
msgstr "
|
479 |
|
480 |
-
# @ download_monitor
|
481 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
482 |
msgid "Short Description"
|
483 |
msgstr "Rövid leírás"
|
484 |
|
485 |
-
# @ download_monitor
|
486 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
487 |
msgid "Featured download"
|
488 |
msgstr "Kiemelt letöltés"
|
489 |
|
490 |
-
# @ download_monitor
|
491 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
492 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
493 |
-
msgstr ""
|
494 |
-
"Jelöljük meg ezt a letöltést kiemeltként. Rövidkódokhoz és widgethez "
|
495 |
-
"használva."
|
496 |
|
497 |
-
# @ download_monitor
|
498 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
499 |
msgid ""
|
500 |
"Only logged in users will be able to access the file via a download link if "
|
501 |
"this is enabled."
|
|
|
|
|
|
|
|
|
502 |
msgstr ""
|
503 |
-
"Csak bejelentkezett felhasználók kapcsolódhatnak a letöltési fájloh, "
|
504 |
-
"amennyiben ez bekapcsolt állapotú."
|
505 |
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
|
|
|
|
|
|
|
|
|
|
510 |
|
511 |
-
|
512 |
-
#: includes/admin/class-dlm-admin-writepanels.php:87
|
513 |
msgid "Close all"
|
514 |
msgstr "Összes bezárása"
|
515 |
|
516 |
-
|
517 |
-
#: includes/admin/class-dlm-admin-writepanels.php:87
|
518 |
msgid "Expand all"
|
519 |
msgstr "Összes kinyitása"
|
520 |
|
521 |
-
|
522 |
-
#: includes/admin/class-dlm-admin-writepanels.php:210
|
523 |
msgid "Are you sure you want to delete this file?"
|
524 |
msgstr "Biztosan töröljük ezt a fájlt?"
|
525 |
|
526 |
-
|
527 |
-
#: includes/admin/class-dlm-admin.php:87
|
528 |
msgid "General"
|
529 |
msgstr "Általános"
|
530 |
|
531 |
-
|
532 |
-
#: includes/admin/class-dlm-admin.php:93
|
533 |
msgid "Default Template"
|
534 |
msgstr "Alapértelmezett mintasablon"
|
535 |
|
536 |
-
|
537 |
-
#: includes/admin/class-dlm-admin.php:94
|
538 |
msgid ""
|
539 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
540 |
"default (this can be overridden by the <code>format</code> argument)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
541 |
msgstr ""
|
542 |
-
"Válasszuk ki, hogy az alapértelmezett <code>[download]</code> rövidkód "
|
543 |
-
"esetén melyik mintasablon legyen az alapértelmezett (ez a <code>format</"
|
544 |
-
"code> argumentummal felülírható)."
|
545 |
|
546 |
-
|
547 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
msgid "Endpoint"
|
549 |
msgstr "Kimenet"
|
550 |
|
551 |
-
|
552 |
-
#: includes/admin/class-dlm-admin.php:104
|
553 |
msgid "download"
|
554 |
msgstr "letöltés"
|
555 |
|
556 |
-
|
557 |
-
#: includes/admin/class-dlm-admin.php:105
|
558 |
msgid "Download Endpoint"
|
559 |
msgstr "Letöltés kimeneti formátum"
|
560 |
|
561 |
-
|
562 |
-
#: includes/admin/class-dlm-admin.php:106
|
563 |
-
#, php-format
|
564 |
msgid ""
|
565 |
-
"Define what endpoint should be used for download links. By default this will
|
566 |
-
"be <code>%s</code>."
|
567 |
-
msgstr ""
|
568 |
-
"Határozzuk meg, hogy milyen kimeneti formát szeretnénk használni a letöltési "
|
569 |
-
"hivatkozáshoz. Alapértelmezettkén ez használjuk: <code>%s</code>."
|
570 |
|
571 |
-
|
572 |
-
#: includes/admin/class-dlm-admin.php:111
|
573 |
msgid "Endpoint Value"
|
574 |
msgstr "Végső kimenet értéke"
|
575 |
|
576 |
-
|
577 |
-
#: includes/admin/class-dlm-admin.php:112
|
578 |
-
#, php-format
|
579 |
msgid ""
|
580 |
"Define what unique value should be used on the end of your endpoint to "
|
581 |
-
"identify the downloadable file. e.g. ID would give a link like
|
582 |
-
"code>"
|
583 |
-
msgstr ""
|
584 |
-
"Határozzuk meg, hogy milyen egyedi értéket szeretnénk használni a letöltési "
|
585 |
-
"hivatkozáshoz. Alapértelmezettkén ez használjuk: <code>%s</code>."
|
586 |
|
587 |
-
|
588 |
-
#: includes/admin/class-dlm-admin.php:
|
589 |
-
#: includes/admin/class-dlm-admin.php:400
|
590 |
msgid "Download ID"
|
591 |
msgstr "Letöltés ID"
|
592 |
|
593 |
-
|
594 |
-
#: includes/admin/class-dlm-admin.php:116
|
595 |
msgid "Download slug"
|
596 |
msgstr "Letöltés slug"
|
597 |
|
598 |
-
|
599 |
-
#: includes/admin/class-dlm-admin.php:122
|
600 |
msgid "X-Accel-Redirect / X-Sendfile"
|
601 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
602 |
|
603 |
-
|
604 |
-
#: includes/admin/class-dlm-admin.php:
|
605 |
-
#: includes/admin/class-dlm-admin.php:
|
606 |
msgid "Enable"
|
607 |
msgstr "Bekapcsol"
|
608 |
|
609 |
-
|
610 |
-
#: includes/admin/class-dlm-admin.php:124
|
611 |
msgid ""
|
612 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be
|
613 |
-
"used to serve downloads instead of PHP (server requires
|
614 |
-
"code>)."
|
615 |
-
msgstr ""
|
616 |
-
"Amennyiben az <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> "
|
617 |
-
"támogatott, a PHP letöltés helyett használhatjuk (szerverkövetelmény: "
|
618 |
"<code>mod_xsendfile</code>)."
|
|
|
|
|
|
|
|
|
|
|
619 |
|
620 |
-
|
621 |
-
|
|
|
|
|
|
|
|
|
|
|
622 |
msgid "Logging"
|
623 |
msgstr "Naplózás"
|
624 |
|
625 |
-
|
626 |
-
#: includes/admin/class-dlm-admin.php:136
|
627 |
msgid "Download Log"
|
628 |
msgstr "Letöltési napló"
|
629 |
|
630 |
-
|
631 |
-
#: includes/admin/class-dlm-admin.php:137
|
632 |
msgid "Log download attempts, IP addresses and more."
|
633 |
msgstr "Naplózzuk a letöltési próbálkozásokat, IP címeket és egyéb dolgokat."
|
634 |
|
635 |
-
|
636 |
-
#: includes/admin/class-dlm-admin.php:143
|
637 |
msgid "Blacklist IPs"
|
638 |
msgstr "Feketelistás IP címek"
|
639 |
|
640 |
-
|
641 |
-
#: includes/admin/class-dlm-admin.php:144
|
642 |
msgid ""
|
643 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
644 |
"wildcard."
|
645 |
-
msgstr ""
|
646 |
-
"IP címek listája a feketelistához, soronként egy IP cím. Használjuk a "
|
647 |
-
"<code>*</code> karaktert helyettesítő(joly)ként"
|
648 |
|
649 |
-
|
650 |
-
#: includes/admin/class-dlm-admin.php:151
|
651 |
msgid "Blacklist user agents"
|
652 |
msgstr "Feketelistás felhasználói ügynökök"
|
653 |
|
654 |
-
|
655 |
-
#: includes/admin/class-dlm-admin.php:152
|
656 |
msgid "List browser user agents to blacklist, 1 per line."
|
657 |
msgstr "Lista a felhasználói ügynök feketelistához, soronként egy cím."
|
658 |
|
659 |
-
|
660 |
-
#: includes/admin/class-dlm-admin.php:224
|
661 |
msgid "Logs"
|
662 |
msgstr "Napló"
|
663 |
|
664 |
-
|
665 |
-
#: includes/admin/class-dlm-admin.php:257
|
666 |
msgid "Settings successfully saved"
|
667 |
msgstr "A beállítások sikeresen mentésre kerültek."
|
668 |
|
669 |
-
|
670 |
-
#: includes/admin/class-dlm-admin.php:324
|
671 |
msgid "Save Changes"
|
672 |
msgstr "Módosítások mentlése"
|
673 |
|
674 |
-
|
675 |
-
#: includes/admin/class-dlm-admin.php:361
|
676 |
msgid "Download Logs"
|
677 |
msgstr "Letöltési napló"
|
678 |
|
679 |
-
|
680 |
-
#: includes/admin/class-dlm-admin.php:361
|
681 |
msgid "Export CSV"
|
682 |
msgstr "Exprt CSV formában"
|
683 |
|
684 |
-
|
685 |
-
|
|
|
|
|
|
|
686 |
msgid "Version ID"
|
687 |
msgstr "Verzió-ID"
|
688 |
|
689 |
-
|
690 |
-
|
|
|
|
|
|
|
691 |
msgid "User ID"
|
692 |
msgstr "Felhasználó ID"
|
693 |
|
694 |
-
|
695 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
696 |
msgid "User IP"
|
697 |
msgstr "Felhasználó IP"
|
698 |
|
699 |
-
|
700 |
-
#: includes/admin/class-dlm-admin.php:407
|
701 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
702 |
msgid "User Agent"
|
703 |
msgstr "Felhasználói azonosító ügynök"
|
704 |
|
705 |
-
|
706 |
-
#: includes/admin/class-dlm-admin.php:408
|
707 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
708 |
msgid "Date"
|
709 |
msgstr "Dátum"
|
710 |
|
711 |
-
|
712 |
-
#: includes/admin/class-dlm-admin.php:409
|
713 |
msgid "Status"
|
714 |
msgstr "Állapot"
|
715 |
|
716 |
-
# @ download_monitor
|
717 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
718 |
msgid "Download Complete"
|
719 |
msgstr "A letöltés befejeződött"
|
720 |
|
721 |
-
# @ download_monitor
|
722 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
723 |
-
#, php-format
|
724 |
msgid "%s ago"
|
725 |
msgstr "%s telt el a letöltés óta"
|
726 |
|
727 |
-
# @ download_monitor
|
728 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
729 |
-
#, php-format
|
730 |
msgid "Download #%d (no longer exists)"
|
731 |
msgstr "Letöltés #%d (már nem létezik)"
|
732 |
|
733 |
-
# @ download_monitor
|
734 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
735 |
-
#, php-format
|
736 |
msgid "v%s"
|
737 |
msgstr "v%s"
|
738 |
|
739 |
-
# @ download_monitor
|
740 |
#: includes/admin/class-dlm-logging-list-table.php:92
|
741 |
msgid "Non-member"
|
742 |
msgstr "Nem regisztrált"
|
743 |
|
744 |
-
# @ download_monitor
|
745 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
746 |
msgid "User"
|
747 |
msgstr "Felhasználó"
|
748 |
|
749 |
-
# @ download_monitor
|
750 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
751 |
msgid "IP Address"
|
752 |
msgstr "IP cím"
|
753 |
|
754 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
755 |
#: includes/admin/html-downloadable-file-version.php:3
|
756 |
msgid "Remove"
|
757 |
msgstr "Eltávolítás"
|
758 |
|
759 |
-
# @ download_monitor
|
760 |
#: includes/admin/html-downloadable-file-version.php:4
|
761 |
msgid "Click to toggle"
|
762 |
msgstr "Összezárás"
|
763 |
|
764 |
-
# @ download_monitor
|
765 |
#: includes/admin/html-downloadable-file-version.php:5
|
766 |
-
#, php-format
|
767 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
768 |
msgstr "<span class=\"version\">%s</span> (%s) verzió"
|
769 |
|
770 |
-
# @ download_monitor
|
771 |
#: includes/admin/html-downloadable-file-version.php:5
|
772 |
-
#: includes/admin/html-downloadable-file-version.php:
|
773 |
msgid "n/a"
|
774 |
msgstr "n/a"
|
775 |
|
776 |
-
# @ download_monitor
|
777 |
#: includes/admin/html-downloadable-file-version.php:5
|
778 |
-
#, php-format
|
779 |
msgid "Downloaded %s time"
|
780 |
msgid_plural "Downloaded %s times"
|
781 |
msgstr[0] "Letöltve %s alkalommal"
|
782 |
msgstr[1] "Letöltve %s alkalommal"
|
783 |
|
784 |
-
|
785 |
-
#: includes/admin/html-downloadable-file-version.php:18
|
786 |
msgid "File URL(s)"
|
787 |
msgstr "Fájl URL cím(ek)"
|
788 |
|
789 |
-
|
790 |
-
#: includes/admin/html-downloadable-file-version.php:19
|
791 |
msgid ""
|
792 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
793 |
"(chosen at random)."
|
794 |
-
msgstr ""
|
795 |
-
"Soronként egy fájl elérési utat/URL címet adjunk meg - a többes fájlok "
|
796 |
-
"tükrözéshez kerülnek használatra (a választás véletlenszerű)."
|
797 |
|
798 |
-
|
799 |
-
|
|
|
|
|
|
|
800 |
msgid "Choose a file"
|
801 |
msgstr "Válasszunk egy fájlt"
|
802 |
|
803 |
-
|
804 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
805 |
msgid "Insert file URL"
|
806 |
msgstr "Fájl URL címének beillesztése"
|
807 |
|
808 |
-
|
809 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
810 |
-
msgid "Upload file"
|
811 |
-
msgstr "Fájlfeltöltés"
|
812 |
-
|
813 |
-
# @ download_monitor
|
814 |
-
#: includes/admin/html-downloadable-file-version.php:22
|
815 |
msgid "Browse for file"
|
816 |
msgstr "Tallózás"
|
817 |
|
818 |
-
|
819 |
-
#: includes/admin/html-downloadable-file-version.php:35
|
820 |
msgid "File Date"
|
821 |
msgstr "Fájl dátuma"
|
822 |
|
823 |
-
|
824 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
825 |
msgid "h"
|
826 |
msgstr "ó"
|
827 |
|
828 |
-
|
829 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
830 |
msgid "m"
|
831 |
msgstr "p"
|
832 |
|
833 |
-
|
834 |
-
|
|
|
|
|
|
|
835 |
msgid "Download does not exist."
|
836 |
msgstr "Nem létező letöltés."
|
837 |
|
838 |
-
|
839 |
-
#: includes/class-dlm-download-handler.php:
|
840 |
-
#: includes/class-dlm-download-handler.php:
|
841 |
-
#: includes/class-dlm-download-handler.php:
|
842 |
-
#: includes/class-dlm-download-handler.php:
|
843 |
-
#: includes/class-dlm-download-handler.php:298
|
844 |
msgid "Go to homepage →"
|
845 |
msgstr "Kezdőlap →"
|
846 |
|
847 |
-
|
848 |
-
#: includes/class-dlm-download-handler.php:
|
849 |
-
#: includes/class-dlm-download-handler.php:
|
850 |
-
#: includes/class-dlm-download-handler.php:
|
851 |
-
#: includes/class-dlm-download-handler.php:
|
852 |
-
#: includes/class-dlm-download-handler.php:298
|
853 |
msgid "Download Error"
|
854 |
msgstr "Letöltési hiba"
|
855 |
|
856 |
-
|
857 |
-
#: includes/class-dlm-download-handler.php:
|
858 |
-
#: includes/class-dlm-download-handler.php:148
|
859 |
msgid "No file paths defined."
|
860 |
msgstr "Nincs megadva a fájl elérési útvonala"
|
861 |
|
862 |
-
|
863 |
-
#: includes/class-dlm-download-handler.php:157
|
864 |
msgid "You do not have permission to access this download."
|
865 |
msgstr "Nincs megfelelő jogosultság ehhez a letöltéshez kapcsolódni."
|
866 |
|
867 |
-
|
868 |
-
#: includes/class-dlm-download-handler.php:
|
869 |
-
#: includes/class-dlm-download-handler.php:
|
870 |
-
#: includes/class-dlm-download-handler.php:
|
871 |
-
#: includes/class-dlm-download-handler.php:276
|
872 |
msgid "Redirected to file"
|
873 |
msgstr "Átirányítás a fájlhoz"
|
874 |
|
875 |
-
|
876 |
-
#: includes/class-dlm-download-handler.php:291
|
877 |
msgid "Redirected to remote file."
|
878 |
msgstr "Átirányítás a távoli fájlhoz"
|
879 |
|
880 |
-
|
881 |
-
#: includes/class-dlm-download-handler.php:296
|
882 |
msgid "File not found"
|
883 |
msgstr "Nem található a fájl"
|
884 |
|
885 |
-
|
886 |
-
#: includes/class-dlm-download-handler.php:298
|
887 |
msgid "File not found."
|
888 |
msgstr "Nem található a fájl"
|
889 |
|
890 |
-
# @ download_monitor
|
891 |
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
892 |
msgid "Download not found"
|
893 |
msgstr "Nem található a letöltés"
|
894 |
|
895 |
-
# @ download_monitor
|
896 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
897 |
msgid "Display a list of your downloads."
|
898 |
msgstr "Jelenítsük meg a letöltéseink listáját."
|
899 |
|
900 |
-
# @ download_monitor
|
901 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
902 |
msgid "Downloads List"
|
903 |
msgstr "Letöltési lista"
|
904 |
|
905 |
-
# @ download_monitor
|
906 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
907 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
908 |
msgid "Featured Downloads"
|
909 |
msgstr "Kiemelt letöltések"
|
910 |
|
911 |
-
# @ download_monitor
|
912 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
913 |
msgid "Title:"
|
914 |
msgstr "Cím:"
|
915 |
|
916 |
-
# @ download_monitor
|
917 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
918 |
msgid "Limit:"
|
919 |
msgstr "Korlátozás:"
|
920 |
|
921 |
-
# @ download_monitor
|
922 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
923 |
msgid "Output template:"
|
924 |
msgstr "Kimeneti sablonminta:"
|
925 |
|
926 |
-
# @ download_monitor
|
927 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
928 |
msgid "Default template"
|
929 |
msgstr "Alapértelmezett sablonminta"
|
930 |
|
931 |
-
# @ download_monitor
|
932 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
933 |
msgid "Order by:"
|
934 |
msgstr "Rendezés:Geordnet nach:"
|
935 |
|
936 |
-
# @ download_monitor
|
937 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
938 |
msgid "Random"
|
939 |
msgstr "Véletlenszerűen"
|
940 |
|
941 |
-
# @ download_monitor
|
942 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
943 |
msgid "Date added"
|
944 |
msgstr "Hozzáadás dátuma"
|
945 |
|
946 |
-
# @ download_monitor
|
947 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
948 |
msgid "Date modified"
|
949 |
msgstr "Dátum módosítva"
|
950 |
|
951 |
-
# @ download_monitor
|
952 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
953 |
msgid "Order:"
|
954 |
msgstr "Sorrend:"
|
955 |
|
956 |
-
# @ download_monitor
|
957 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
958 |
msgid "ASC"
|
959 |
msgstr "ASC"
|
960 |
|
961 |
-
# @ download_monitor
|
962 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
963 |
msgid "DESC"
|
964 |
msgstr "DESC"
|
965 |
|
966 |
-
# @ download_monitor
|
967 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
968 |
msgid "Show only featured downloads"
|
969 |
msgstr "Csak a kiemelt letöltések mutatása"
|
970 |
|
971 |
-
# @ download_monitor
|
972 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
973 |
msgid "Show only members only downloads"
|
974 |
msgstr "Csak a regisztráltaknak szóló letöltés mutatása"
|
975 |
|
976 |
-
# @ download_monitor
|
977 |
#: templates/content-download-box.php:12
|
978 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
979 |
-
#, php-format
|
980 |
msgid "1 download"
|
981 |
msgid_plural "%d downloads"
|
982 |
msgstr[0] "1 letöltés"
|
983 |
msgstr[1] "%d letöltés"
|
984 |
|
985 |
-
# @ download_monitor
|
986 |
#: templates/content-download-box.php:20
|
987 |
-
#: templates/content-download-filename.php:8
|
988 |
-
|
989 |
msgid "Version %s"
|
990 |
msgstr "%s verzió"
|
991 |
|
992 |
-
# @ download_monitor
|
993 |
#: templates/content-download-box.php:21
|
994 |
msgid "Download File"
|
995 |
msgstr "Letöltés fájl"
|
996 |
|
997 |
-
# @ download_monitor
|
998 |
#: templates/content-download-button.php:9
|
999 |
-
#, php-format
|
1000 |
msgid "Download “%s”"
|
1001 |
msgstr "Letöltés “%s”"
|
1002 |
|
1003 |
-
# @ download_monitor
|
1004 |
#: templates/content-download-button.php:10
|
1005 |
-
|
1006 |
msgid "Downloaded 1 time"
|
1007 |
msgid_plural "Downloaded %d times"
|
1008 |
msgstr[0] "Letöltve 1 alkalommal"
|
1009 |
msgstr[1] "Letöltve %d alkalommal"
|
1010 |
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
msgstr "Fájlnév"
|
1015 |
-
|
1016 |
-
# @ download_monitor
|
1017 |
-
#: includes/admin/class-dlm-admin.php:404
|
1018 |
-
msgid "User Login"
|
1019 |
-
msgstr "Bejelentkezés"
|
1020 |
-
|
1021 |
-
# @ download_monitor
|
1022 |
-
#: includes/admin/class-dlm-admin.php:405
|
1023 |
-
msgid "User Email"
|
1024 |
-
msgstr "Email"
|
1025 |
-
|
1026 |
-
# @ download_monitor
|
1027 |
-
#: includes/admin/class-dlm-logging-list-table.php:142
|
1028 |
-
msgid "Any status"
|
1029 |
-
msgstr "Minden állapot"
|
1030 |
-
|
1031 |
-
# @ download_monitor
|
1032 |
-
#: includes/admin/class-dlm-logging-list-table.php:143
|
1033 |
-
msgid "Failed"
|
1034 |
-
msgstr "Hibás"
|
1035 |
-
|
1036 |
-
# @ download_monitor
|
1037 |
-
#: includes/admin/class-dlm-logging-list-table.php:144
|
1038 |
-
msgid "Redirected"
|
1039 |
-
msgstr "Átirányított"
|
1040 |
-
|
1041 |
-
# @ download_monitor
|
1042 |
-
#: includes/admin/class-dlm-logging-list-table.php:145
|
1043 |
-
msgid "Completed"
|
1044 |
-
msgstr "Komplett"
|
1045 |
-
|
1046 |
-
# @ default
|
1047 |
-
#: includes/admin/class-dlm-logging-list-table.php:166
|
1048 |
-
msgid "Show all dates"
|
1049 |
-
msgstr "Összes dátum mutatása"
|
1050 |
-
|
1051 |
-
# @ default
|
1052 |
-
#: includes/admin/class-dlm-logging-list-table.php:179
|
1053 |
-
#, php-format
|
1054 |
-
msgid "%1$s %2$d"
|
1055 |
-
msgstr "%1$s %2$d"
|
1056 |
-
|
1057 |
-
# @ download_monitor
|
1058 |
-
#: includes/admin/class-dlm-logging-list-table.php:185
|
1059 |
-
msgid "25 per page"
|
1060 |
-
msgstr "25/oldal"
|
1061 |
-
|
1062 |
-
# @ download_monitor
|
1063 |
-
#: includes/admin/class-dlm-logging-list-table.php:186
|
1064 |
-
msgid "50 per page"
|
1065 |
-
msgstr "50/oldal"
|
1066 |
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
msgstr "100/oldal"
|
1071 |
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
|
|
|
|
1076 |
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
msgstr "Összes mutatása"
|
1081 |
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
msgstr "Szűrés"
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:21+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/download-monitor/language/hu_HU/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: hu_HU\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "Beállítások"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
|
|
23 |
msgid "Add-ons"
|
24 |
msgstr "Kiegészítők"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
|
|
27 |
msgid "Docs"
|
28 |
msgstr "Dokumentum"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
|
|
32 |
msgid "Categories"
|
33 |
msgstr "Letöltési kategória"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
|
|
36 |
msgid "Download Category"
|
37 |
msgstr "Letöltési kategória"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
|
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "Keresés a letöltési kategóriákban"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
|
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "Összes letöltési kategória"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
|
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "Szülő letöltési kategória"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
|
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "Szülő letöltési kategória:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
|
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "Letöltési kategória szerkesztés"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
|
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "Letöltési kategória frissítés"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
|
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "Új letöltési kategória"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
|
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "Új letöltési kategória neve"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
|
|
73 |
msgid "Tags"
|
74 |
msgstr "Letöltés címke"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
|
|
77 |
msgid "Download Tag"
|
78 |
msgstr "Letöltés címke"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
|
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "Keresés a letöltési címkék között"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
|
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "Összes letöltés-címke"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
|
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "Szülő letöltési címke"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
|
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "Szülő letöltési címke:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
|
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "Letöltési címke szerkesztése"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
|
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "Letöltési címke frissítése"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
|
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "Új letöltési címke"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
|
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "Új letöltési címke neve:"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr "Letöltés"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
|
|
121 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
122 |
msgid "Download"
|
123 |
msgstr "Letöltés"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
|
|
126 |
msgid "Add New"
|
127 |
msgstr "Új létrehozása"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
|
|
130 |
msgid "Add Download"
|
131 |
msgstr "Letöltés hozzáadása"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
|
|
134 |
msgid "Edit"
|
135 |
msgstr "Szerkesztés"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
|
|
138 |
msgid "Edit Download"
|
139 |
msgstr "Letöltés szerkesztése"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
|
|
142 |
msgid "New Download"
|
143 |
msgstr "Új letöltés"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
|
|
146 |
msgid "View Download"
|
147 |
msgstr "Letöltés megtekintése"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
|
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "Letöltés keresése"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
|
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "Nem található letöltés"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
|
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "Nem található letöltés a lomtárban"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
|
|
162 |
msgid "Parent Download"
|
163 |
msgstr "Letöltés szülő"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
|
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
+
msgstr "Ez az a rész, ahol a honlapunkhoz létrehozhatunk és kezelhetünk letöltéseket."
|
168 |
+
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
msgstr ""
|
|
|
173 |
|
|
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
msgid "Select a category"
|
176 |
msgstr "Kategória választása"
|
177 |
|
|
|
178 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
179 |
msgid "Download title"
|
180 |
msgstr "Letöltés elnevezése"
|
181 |
|
|
|
182 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
184 |
msgid "Download updated."
|
185 |
msgstr "Letöltés frissítve"
|
186 |
|
|
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
188 |
msgid "Custom field updated."
|
189 |
msgstr "Egyedi mező frissítve."
|
190 |
|
|
|
191 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
192 |
msgid "Custom field deleted."
|
193 |
msgstr "Egyedi mező törölve."
|
194 |
|
|
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "%s változatból a letöltés helyreállítva"
|
198 |
|
|
|
199 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
200 |
msgid "Download published."
|
201 |
msgstr "Letöltés közzétéve."
|
202 |
|
|
|
203 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
204 |
msgid "Download saved."
|
205 |
msgstr "Letöltés elmentve."
|
206 |
|
|
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
208 |
msgid "Download submitted."
|
209 |
msgstr "Letöltés elküldve"
|
210 |
|
|
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "<strong>%1$s</strong> letöltés ütemezve."
|
214 |
|
|
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr "Y-m-d H:i"
|
218 |
|
|
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "Letöltés vázlat frissítve."
|
222 |
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
|
|
224 |
msgid "Image"
|
225 |
msgstr "Kép"
|
226 |
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
|
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
msgid "Title"
|
230 |
msgstr "Cím"
|
231 |
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
|
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
msgid "ID"
|
235 |
msgstr "ID"
|
236 |
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
|
|
238 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
239 |
msgid "File"
|
240 |
msgstr "Fájl"
|
241 |
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
|
|
245 |
msgid "Version"
|
246 |
msgstr "verzió"
|
247 |
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
+
msgstr "Letöltés számlálás"
|
254 |
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
|
|
256 |
msgid "Featured"
|
257 |
msgstr "Kiemelt"
|
258 |
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
|
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
msgid "Members only"
|
262 |
msgstr "Csak regisztrált felhasználóknak"
|
263 |
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "Dátum elküldve"
|
271 |
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "Népszerű letöltések"
|
281 |
|
|
|
282 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "Még nem érhető el statisztikai adat."
|
285 |
|
286 |
+
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
msgid "Insert Download"
|
290 |
msgstr "Letöltés beillesztése"
|
291 |
|
|
|
292 |
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "Rövidkód beillesztése"
|
296 |
|
|
|
297 |
#: includes/admin/class-dlm-admin-insert.php:78
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "Gyors letöltés hozzáadás"
|
300 |
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
|
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "Hiba: Nem hozható létre a fájl."
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
|
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "A letöltés sikeresen létrehozva."
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
|
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "Hiba: A letöltés nem hozható létre."
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
|
|
314 |
msgid "Choose a download"
|
315 |
msgstr "Válasszunk ki egy letöltést"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
|
|
318 |
msgid "Template"
|
319 |
msgstr "Sablonminta"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
|
|
322 |
msgid "Template Name"
|
323 |
msgstr "Sablonminta neve"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
|
|
|
|
326 |
msgid ""
|
327 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "Alapértelmezetként hagyjuk üresen a <code>content-download.php</code> mintasablon fájl használatához. Amennyiben pl. az <code>image</code> kerül megadásra, akkor a <code>content-download-image.php</code> mintasablon fog helyette használatba kerülni."
|
|
|
|
|
|
|
|
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
|
|
333 |
msgid "Drop file here"
|
334 |
msgstr "Húzzuk ide a fájlt"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
|
|
338 |
msgid "or"
|
339 |
msgstr "vagy"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
|
|
342 |
msgid "Select File"
|
343 |
msgstr "Válasszunk egy fájlt"
|
344 |
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
|
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "URL megadása kézzel"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
|
|
350 |
msgid "Download URL"
|
351 |
msgstr "Letöltési URL"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
|
|
354 |
msgid "Required URL"
|
355 |
msgstr "Kötelező URL"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
|
|
358 |
msgid "Download Title"
|
359 |
msgstr "Letöltés neve"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
|
|
362 |
msgid "Required title"
|
363 |
msgstr "Kötelező cím"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
|
|
366 |
msgid "Optional version number"
|
367 |
msgstr "Verziószám (opcionális)"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
|
|
370 |
msgid "Save Download"
|
371 |
msgstr "Letöltés mentése"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
|
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "Engedélyezett fájlok"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
|
|
378 |
msgid "Please wait..."
|
379 |
msgstr "Kis türelmet kérünk..."
|
380 |
|
|
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "Tallózás...Nach Datei suchen"
|
385 |
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
|
|
387 |
msgid "No files found"
|
388 |
msgstr "Nem található fájl"
|
389 |
|
|
|
390 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
391 |
msgid "Download Options"
|
392 |
msgstr "Letöltési lehetőségek"
|
393 |
|
|
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr ""
|
397 |
|
|
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
msgid "Short Description"
|
400 |
msgstr "Rövid leírás"
|
401 |
|
|
|
402 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
403 |
msgid "Featured download"
|
404 |
msgstr "Kiemelt letöltés"
|
405 |
|
|
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
407 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
+
msgstr "Jelöljük meg ezt a letöltést kiemeltként. Rövidkódokhoz és widgethez használva."
|
|
|
|
|
409 |
|
|
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
msgid ""
|
412 |
"Only logged in users will be able to access the file via a download link if "
|
413 |
"this is enabled."
|
414 |
+
msgstr "Csak bejelentkezett felhasználók kapcsolódhatnak a letöltési fájloh, amennyiben ez bekapcsolt állapotú."
|
415 |
+
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
msgstr ""
|
|
|
|
|
419 |
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr ""
|
429 |
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
431 |
msgid "Close all"
|
432 |
msgstr "Összes bezárása"
|
433 |
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
435 |
msgid "Expand all"
|
436 |
msgstr "Összes kinyitása"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
|
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "Biztosan töröljük ezt a fájlt?"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
|
|
443 |
msgid "General"
|
444 |
msgstr "Általános"
|
445 |
|
446 |
+
#: includes/admin/class-dlm-admin.php:100
|
|
|
447 |
msgid "Default Template"
|
448 |
msgstr "Alapértelmezett mintasablon"
|
449 |
|
450 |
+
#: includes/admin/class-dlm-admin.php:101
|
|
|
451 |
msgid ""
|
452 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "Válasszuk ki, hogy az alapértelmezett <code>[download]</code> rövidkód esetén melyik mintasablon legyen az alapértelmezett (ez a <code>format</code> argumentummal felülírható)."
|
455 |
+
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
msgstr ""
|
|
|
|
|
|
|
463 |
|
464 |
+
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "Kimenet"
|
499 |
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
|
|
501 |
msgid "download"
|
502 |
msgstr "letöltés"
|
503 |
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
|
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "Letöltés kimeneti formátum"
|
507 |
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
|
|
|
|
509 |
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
+
msgstr "Határozzuk meg, hogy milyen kimeneti formát szeretnénk használni a letöltési hivatkozáshoz. Alapértelmezettkén ez használjuk: <code>%s</code>."
|
|
|
|
|
513 |
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
|
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "Végső kimenet értéke"
|
517 |
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
|
|
|
|
519 |
msgid ""
|
520 |
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
+
msgstr "Határozzuk meg, hogy milyen egyedi értéket szeretnénk használni a letöltési hivatkozáshoz. Alapértelmezettkén ez használjuk: <code>%s</code>."
|
|
|
|
|
524 |
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
|
|
527 |
msgid "Download ID"
|
528 |
msgstr "Letöltés ID"
|
529 |
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
|
|
531 |
msgid "Download slug"
|
532 |
msgstr "Letöltés slug"
|
533 |
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
|
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "Bekapcsol"
|
543 |
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
|
|
545 |
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
|
|
|
|
|
|
|
|
548 |
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "Amennyiben az <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> támogatott, a PHP letöltés helyett használhatjuk (szerverkövetelmény: <code>mod_xsendfile</code>)."
|
550 |
+
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "Naplózás"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
|
|
566 |
msgid "Download Log"
|
567 |
msgstr "Letöltési napló"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
|
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "Naplózzuk a letöltési próbálkozásokat, IP címeket és egyéb dolgokat."
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
|
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "Feketelistás IP címek"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
|
|
578 |
msgid ""
|
579 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
"wildcard."
|
581 |
+
msgstr "IP címek listája a feketelistához, soronként egy IP cím. Használjuk a <code>*</code> karaktert helyettesítő(joly)ként"
|
|
|
|
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
|
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "Feketelistás felhasználói ügynökök"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
|
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "Lista a felhasználói ügynök feketelistához, soronként egy cím."
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
|
|
592 |
msgid "Logs"
|
593 |
msgstr "Napló"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
|
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "A beállítások sikeresen mentésre kerültek."
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
|
|
600 |
msgid "Save Changes"
|
601 |
msgstr "Módosítások mentlése"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
604 |
msgid "Download Logs"
|
605 |
msgstr "Letöltési napló"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
608 |
msgid "Export CSV"
|
609 |
msgstr "Exprt CSV formában"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
msgid "Version ID"
|
617 |
msgstr "Verzió-ID"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
+
msgid "Filename"
|
621 |
+
msgstr "Fájlnév"
|
622 |
+
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
msgid "User ID"
|
625 |
msgstr "Felhasználó ID"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
+
msgid "User Login"
|
629 |
+
msgstr "Bejelentkezés"
|
630 |
+
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
+
msgid "User Email"
|
633 |
+
msgstr "Email"
|
634 |
+
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
msgid "User IP"
|
637 |
msgstr "Felhasználó IP"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
|
|
640 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
641 |
msgid "User Agent"
|
642 |
msgstr "Felhasználói azonosító ügynök"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
|
|
645 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
646 |
msgid "Date"
|
647 |
msgstr "Dátum"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
|
|
650 |
msgid "Status"
|
651 |
msgstr "Állapot"
|
652 |
|
|
|
653 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
654 |
msgid "Download Complete"
|
655 |
msgstr "A letöltés befejeződött"
|
656 |
|
|
|
657 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "%s telt el a letöltés óta"
|
660 |
|
|
|
661 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "Letöltés #%d (már nem létezik)"
|
664 |
|
|
|
665 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
|
|
669 |
#: includes/admin/class-dlm-logging-list-table.php:92
|
670 |
msgid "Non-member"
|
671 |
msgstr "Nem regisztrált"
|
672 |
|
|
|
673 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
674 |
msgid "User"
|
675 |
msgstr "Felhasználó"
|
676 |
|
|
|
677 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
678 |
msgid "IP Address"
|
679 |
msgstr "IP cím"
|
680 |
|
681 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
682 |
+
msgid "Any status"
|
683 |
+
msgstr "Minden állapot"
|
684 |
+
|
685 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
686 |
+
msgid "Failed"
|
687 |
+
msgstr "Hibás"
|
688 |
+
|
689 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
690 |
+
msgid "Redirected"
|
691 |
+
msgstr "Átirányított"
|
692 |
+
|
693 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
694 |
+
msgid "Completed"
|
695 |
+
msgstr "Komplett"
|
696 |
+
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
+
msgid "Show all dates"
|
699 |
+
msgstr "Összes dátum mutatása"
|
700 |
+
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
702 |
+
msgid "%1$s %2$d"
|
703 |
+
msgstr "%1$s %2$d"
|
704 |
+
|
705 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
706 |
+
msgid "25 per page"
|
707 |
+
msgstr "25/oldal"
|
708 |
+
|
709 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
710 |
+
msgid "50 per page"
|
711 |
+
msgstr "50/oldal"
|
712 |
+
|
713 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
714 |
+
msgid "100 per page"
|
715 |
+
msgstr "100/oldal"
|
716 |
+
|
717 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
718 |
+
msgid "200 per page"
|
719 |
+
msgstr "200/oldal"
|
720 |
+
|
721 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
+
msgid "Show All"
|
723 |
+
msgstr "Összes mutatása"
|
724 |
+
|
725 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
726 |
+
msgid "Filter"
|
727 |
+
msgstr "Szűrés"
|
728 |
+
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
730 |
msgid "Remove"
|
731 |
msgstr "Eltávolítás"
|
732 |
|
|
|
733 |
#: includes/admin/html-downloadable-file-version.php:4
|
734 |
msgid "Click to toggle"
|
735 |
msgstr "Összezárás"
|
736 |
|
|
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "<span class=\"version\">%s</span> (%s) verzió"
|
740 |
|
|
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
msgid "n/a"
|
744 |
msgstr "n/a"
|
745 |
|
|
|
746 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
msgstr[0] "Letöltve %s alkalommal"
|
750 |
msgstr[1] "Letöltve %s alkalommal"
|
751 |
|
752 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
|
|
753 |
msgid "File URL(s)"
|
754 |
msgstr "Fájl URL cím(ek)"
|
755 |
|
756 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
|
|
757 |
msgid ""
|
758 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
759 |
"(chosen at random)."
|
760 |
+
msgstr "Soronként egy fájl elérési utat/URL címet adjunk meg - a többes fájlok tükrözéshez kerülnek használatra (a választás véletlenszerű)."
|
|
|
|
|
761 |
|
762 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
763 |
+
msgid "Upload file"
|
764 |
+
msgstr "Fájlfeltöltés"
|
765 |
+
|
766 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
767 |
msgid "Choose a file"
|
768 |
msgstr "Válasszunk egy fájlt"
|
769 |
|
770 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
|
|
771 |
msgid "Insert file URL"
|
772 |
msgstr "Fájl URL címének beillesztése"
|
773 |
|
774 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
msgid "Browse for file"
|
776 |
msgstr "Tallózás"
|
777 |
|
778 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
|
|
779 |
msgid "File Date"
|
780 |
msgstr "Fájl dátuma"
|
781 |
|
782 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
783 |
msgid "h"
|
784 |
msgstr "ó"
|
785 |
|
786 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
787 |
msgid "m"
|
788 |
msgstr "p"
|
789 |
|
790 |
+
#: includes/class-dlm-download-handler.php:140
|
791 |
+
msgid "Password Required"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/class-dlm-download-handler.php:150
|
795 |
msgid "Download does not exist."
|
796 |
msgstr "Nem létező letöltés."
|
797 |
|
798 |
+
#: includes/class-dlm-download-handler.php:150
|
799 |
+
#: includes/class-dlm-download-handler.php:180
|
800 |
+
#: includes/class-dlm-download-handler.php:185
|
801 |
+
#: includes/class-dlm-download-handler.php:194
|
802 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
803 |
msgid "Go to homepage →"
|
804 |
msgstr "Kezdőlap →"
|
805 |
|
806 |
+
#: includes/class-dlm-download-handler.php:150
|
807 |
+
#: includes/class-dlm-download-handler.php:180
|
808 |
+
#: includes/class-dlm-download-handler.php:185
|
809 |
+
#: includes/class-dlm-download-handler.php:194
|
810 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
811 |
msgid "Download Error"
|
812 |
msgstr "Letöltési hiba"
|
813 |
|
814 |
+
#: includes/class-dlm-download-handler.php:180
|
815 |
+
#: includes/class-dlm-download-handler.php:185
|
|
|
816 |
msgid "No file paths defined."
|
817 |
msgstr "Nincs megadva a fájl elérési útvonala"
|
818 |
|
819 |
+
#: includes/class-dlm-download-handler.php:194
|
|
|
820 |
msgid "You do not have permission to access this download."
|
821 |
msgstr "Nincs megfelelő jogosultság ehhez a letöltéshez kapcsolódni."
|
822 |
|
823 |
+
#: includes/class-dlm-download-handler.php:212
|
824 |
+
#: includes/class-dlm-download-handler.php:228
|
825 |
+
#: includes/class-dlm-download-handler.php:235
|
826 |
+
#: includes/class-dlm-download-handler.php:242
|
|
|
827 |
msgid "Redirected to file"
|
828 |
msgstr "Átirányítás a fájlhoz"
|
829 |
|
830 |
+
#: includes/class-dlm-download-handler.php:281
|
|
|
831 |
msgid "Redirected to remote file."
|
832 |
msgstr "Átirányítás a távoli fájlhoz"
|
833 |
|
834 |
+
#: includes/class-dlm-download-handler.php:286
|
|
|
835 |
msgid "File not found"
|
836 |
msgstr "Nem található a fájl"
|
837 |
|
838 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
839 |
msgid "File not found."
|
840 |
msgstr "Nem található a fájl"
|
841 |
|
|
|
842 |
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
843 |
msgid "Download not found"
|
844 |
msgstr "Nem található a letöltés"
|
845 |
|
|
|
846 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
847 |
msgid "Display a list of your downloads."
|
848 |
msgstr "Jelenítsük meg a letöltéseink listáját."
|
849 |
|
|
|
850 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
851 |
msgid "Downloads List"
|
852 |
msgstr "Letöltési lista"
|
853 |
|
|
|
854 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
855 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
856 |
msgid "Featured Downloads"
|
857 |
msgstr "Kiemelt letöltések"
|
858 |
|
|
|
859 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
860 |
msgid "Title:"
|
861 |
msgstr "Cím:"
|
862 |
|
|
|
863 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
864 |
msgid "Limit:"
|
865 |
msgstr "Korlátozás:"
|
866 |
|
|
|
867 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
868 |
msgid "Output template:"
|
869 |
msgstr "Kimeneti sablonminta:"
|
870 |
|
|
|
871 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
872 |
msgid "Default template"
|
873 |
msgstr "Alapértelmezett sablonminta"
|
874 |
|
|
|
875 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
876 |
msgid "Order by:"
|
877 |
msgstr "Rendezés:Geordnet nach:"
|
878 |
|
|
|
879 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
880 |
msgid "Random"
|
881 |
msgstr "Véletlenszerűen"
|
882 |
|
|
|
883 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
884 |
msgid "Date added"
|
885 |
msgstr "Hozzáadás dátuma"
|
886 |
|
|
|
887 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
888 |
msgid "Date modified"
|
889 |
msgstr "Dátum módosítva"
|
890 |
|
|
|
891 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
892 |
msgid "Order:"
|
893 |
msgstr "Sorrend:"
|
894 |
|
|
|
895 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
896 |
msgid "ASC"
|
897 |
msgstr "ASC"
|
898 |
|
|
|
899 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
900 |
msgid "DESC"
|
901 |
msgstr "DESC"
|
902 |
|
|
|
903 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
904 |
msgid "Show only featured downloads"
|
905 |
msgstr "Csak a kiemelt letöltések mutatása"
|
906 |
|
|
|
907 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
908 |
msgid "Show only members only downloads"
|
909 |
msgstr "Csak a regisztráltaknak szóló letöltés mutatása"
|
910 |
|
|
|
911 |
#: templates/content-download-box.php:12
|
912 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
|
|
913 |
msgid "1 download"
|
914 |
msgid_plural "%d downloads"
|
915 |
msgstr[0] "1 letöltés"
|
916 |
msgstr[1] "%d letöltés"
|
917 |
|
|
|
918 |
#: templates/content-download-box.php:20
|
919 |
+
#: templates/content-download-filename.php:8
|
920 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
921 |
msgid "Version %s"
|
922 |
msgstr "%s verzió"
|
923 |
|
|
|
924 |
#: templates/content-download-box.php:21
|
925 |
msgid "Download File"
|
926 |
msgstr "Letöltés fájl"
|
927 |
|
|
|
928 |
#: templates/content-download-button.php:9
|
|
|
929 |
msgid "Download “%s”"
|
930 |
msgstr "Letöltés “%s”"
|
931 |
|
|
|
932 |
#: templates/content-download-button.php:10
|
933 |
+
#: templates/content-download-version-list.php:17
|
934 |
msgid "Downloaded 1 time"
|
935 |
msgid_plural "Downloaded %d times"
|
936 |
msgstr[0] "Letöltve 1 alkalommal"
|
937 |
msgstr[1] "Letöltve %d alkalommal"
|
938 |
|
939 |
+
#. Plugin Name of the plugin/theme
|
940 |
+
msgid "Download Monitor"
|
941 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
942 |
|
943 |
+
#. Plugin URI of the plugin/theme
|
944 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
945 |
+
msgstr ""
|
|
|
946 |
|
947 |
+
#. Description of the plugin/theme
|
948 |
+
msgid ""
|
949 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
950 |
+
"outputting download links and file information on your WordPress powered "
|
951 |
+
"site."
|
952 |
+
msgstr ""
|
953 |
|
954 |
+
#. Author of the plugin/theme
|
955 |
+
msgid "Mike Jolley"
|
956 |
+
msgstr ""
|
|
|
957 |
|
958 |
+
#. Author URI of the plugin/theme
|
959 |
+
msgid "http://mikejolley.com"
|
960 |
+
msgstr ""
|
|
languages/download-monitor-it_IT.mo
ADDED
Binary file
|
languages/{download_monitor-it_IT.po → download-monitor-it_IT.po}
RENAMED
@@ -1,223 +1,175 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Download Monitor\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"X-Poedit-Language: Italian\n"
|
16 |
-
"X-Poedit-Country: ITALY\n"
|
17 |
-
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: download-monitor.php:
|
20 |
-
#: includes/admin/class-dlm-admin.php:226
|
21 |
msgid "Settings"
|
22 |
msgstr "Impostazioni"
|
23 |
|
24 |
-
#: download-monitor.php:
|
25 |
msgid "Add-ons"
|
26 |
msgstr "Componenti aggiuntivi"
|
27 |
|
28 |
-
#: download-monitor.php:
|
29 |
msgid "Docs"
|
30 |
msgstr "Documentazione"
|
31 |
|
32 |
-
#: download-monitor.php:
|
33 |
-
#:
|
34 |
-
#: includes/admin/class-dlm-admin-cpt.php:174
|
35 |
msgid "Categories"
|
36 |
msgstr "Categorie"
|
37 |
|
38 |
-
#: download-monitor.php:
|
39 |
msgid "Download Category"
|
40 |
msgstr "Categoria Download"
|
41 |
|
42 |
-
#: download-monitor.php:
|
43 |
msgid "Search Download Categories"
|
44 |
msgstr "Cerca nelle Categorie Download"
|
45 |
|
46 |
-
#: download-monitor.php:
|
47 |
msgid "All Download Categories"
|
48 |
msgstr "Tutte le Categorie Download"
|
49 |
|
50 |
-
#: download-monitor.php:
|
51 |
msgid "Parent Download Category"
|
52 |
msgstr "Categoria Download Genitore"
|
53 |
|
54 |
-
#: download-monitor.php:
|
55 |
msgid "Parent Download Category:"
|
56 |
msgstr "Categoria Download Genitore:"
|
57 |
|
58 |
-
#: download-monitor.php:
|
59 |
msgid "Edit Download Category"
|
60 |
msgstr "Modifica Categoria Download"
|
61 |
|
62 |
-
#: download-monitor.php:
|
63 |
msgid "Update Download Category"
|
64 |
msgstr "Aggiorna Categoria Download"
|
65 |
|
66 |
-
#: download-monitor.php:
|
67 |
msgid "Add New Download Category"
|
68 |
msgstr "Aggiungi Nuova Categoria Download"
|
69 |
|
70 |
-
#: download-monitor.php:
|
71 |
msgid "New Download Category Name"
|
72 |
msgstr "Nome Nuova Categoria Download"
|
73 |
|
74 |
-
#: download-monitor.php:
|
75 |
-
#:
|
76 |
-
#: includes/admin/class-dlm-admin-cpt.php:175
|
77 |
msgid "Tags"
|
78 |
msgstr "Tags"
|
79 |
|
80 |
-
#: download-monitor.php:
|
81 |
msgid "Download Tag"
|
82 |
msgstr "Tag Download"
|
83 |
|
84 |
-
#: download-monitor.php:
|
85 |
msgid "Search Download Tags"
|
86 |
msgstr "Cerca tra le Tags Download"
|
87 |
|
88 |
-
#: download-monitor.php:
|
89 |
msgid "All Download Tags"
|
90 |
msgstr "Tulle le Tags Download"
|
91 |
|
92 |
-
#: download-monitor.php:
|
93 |
msgid "Parent Download Tag"
|
94 |
msgstr "Tag Download Genitore"
|
95 |
|
96 |
-
#: download-monitor.php:
|
97 |
msgid "Parent Download Tag:"
|
98 |
msgstr "Tag Download Genitore:"
|
99 |
|
100 |
-
#: download-monitor.php:
|
101 |
msgid "Edit Download Tag"
|
102 |
msgstr "Modifica Tag Download"
|
103 |
|
104 |
-
#: download-monitor.php:
|
105 |
msgid "Update Download Tag"
|
106 |
msgstr "Aggiorna Tag Download"
|
107 |
|
108 |
-
#: download-monitor.php:
|
109 |
msgid "Add New Download Tag"
|
110 |
msgstr "Aggiungi Nuova Tag Download"
|
111 |
|
112 |
-
#: download-monitor.php:
|
113 |
msgid "New Download Tag Name"
|
114 |
msgstr "Nome Nuova Tag Download"
|
115 |
|
116 |
-
#: download-monitor.php:
|
|
|
|
|
|
|
|
|
117 |
msgid "Downloads"
|
118 |
msgstr "Downloads"
|
119 |
|
120 |
-
#: download-monitor.php:
|
121 |
-
#: includes/admin/class-dlm-
|
122 |
msgid "Download"
|
123 |
msgstr "Download"
|
124 |
|
125 |
-
#: download-monitor.php:
|
126 |
msgid "Add New"
|
127 |
msgstr "Aggiungi Nuovo"
|
128 |
|
129 |
-
#: download-monitor.php:
|
130 |
msgid "Add Download"
|
131 |
msgstr "Aggiungi Download"
|
132 |
|
133 |
-
#: download-monitor.php:
|
134 |
msgid "Edit"
|
135 |
msgstr "Modifica"
|
136 |
|
137 |
-
#: download-monitor.php:
|
138 |
msgid "Edit Download"
|
139 |
msgstr "Modifica Download"
|
140 |
|
141 |
-
#: download-monitor.php:
|
142 |
msgid "New Download"
|
143 |
msgstr "Nuovo Download"
|
144 |
|
145 |
-
#: download-monitor.php:
|
146 |
-
#: download-monitor.php:308
|
147 |
msgid "View Download"
|
148 |
msgstr "Visualizza Download"
|
149 |
|
150 |
-
#: download-monitor.php:
|
151 |
msgid "Search Downloads"
|
152 |
msgstr "Cerca Downloads"
|
153 |
|
154 |
-
#: download-monitor.php:
|
155 |
msgid "No Downloads found"
|
156 |
msgstr "Nessun Download trovato"
|
157 |
|
158 |
-
#: download-monitor.php:
|
159 |
msgid "No Downloads found in trash"
|
160 |
msgstr "Nessun Download trovato nel cestino"
|
161 |
|
162 |
-
#: download-monitor.php:
|
163 |
msgid "Parent Download"
|
164 |
msgstr "Download Genitore"
|
165 |
|
166 |
-
#: download-monitor.php:
|
167 |
msgid "This is where you can create and manage downloads for your site."
|
168 |
msgstr "Qui potete creare e gestire i download del vostro sito."
|
169 |
|
170 |
-
#: includes/class-dlm-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
#: includes/class-dlm-download-handler.php:121
|
175 |
-
#: includes/class-dlm-download-handler.php:140
|
176 |
-
#: includes/class-dlm-download-handler.php:145
|
177 |
-
#: includes/class-dlm-download-handler.php:154
|
178 |
-
#: includes/class-dlm-download-handler.php:295
|
179 |
-
msgid "Go to homepage →"
|
180 |
-
msgstr "Vai alla home →"
|
181 |
-
|
182 |
-
#: includes/class-dlm-download-handler.php:121
|
183 |
-
#: includes/class-dlm-download-handler.php:140
|
184 |
-
#: includes/class-dlm-download-handler.php:145
|
185 |
-
#: includes/class-dlm-download-handler.php:154
|
186 |
-
#: includes/class-dlm-download-handler.php:295
|
187 |
-
msgid "Download Error"
|
188 |
-
msgstr "Errore Download"
|
189 |
-
|
190 |
-
#: includes/class-dlm-download-handler.php:140
|
191 |
-
#: includes/class-dlm-download-handler.php:145
|
192 |
-
msgid "No file paths defined."
|
193 |
-
msgstr "Nessun percorso definito."
|
194 |
-
|
195 |
-
#: includes/class-dlm-download-handler.php:154
|
196 |
-
msgid "You do not have permission to access this download."
|
197 |
-
msgstr "Non hai permessi sufficienti per accedere a questo download."
|
198 |
-
|
199 |
-
#: includes/class-dlm-download-handler.php:168
|
200 |
-
#: includes/class-dlm-download-handler.php:261
|
201 |
-
#: includes/class-dlm-download-handler.php:267
|
202 |
-
#: includes/class-dlm-download-handler.php:273
|
203 |
-
msgid "Redirected to file"
|
204 |
-
msgstr "Reindirizzato al file"
|
205 |
-
|
206 |
-
#: includes/class-dlm-download-handler.php:288
|
207 |
-
msgid "Redirected to remote file."
|
208 |
-
msgstr "Reindirizzato al file remoto."
|
209 |
-
|
210 |
-
#: includes/class-dlm-download-handler.php:293
|
211 |
-
msgid "File not found"
|
212 |
-
msgstr "File non trovato"
|
213 |
-
|
214 |
-
#: includes/class-dlm-download-handler.php:295
|
215 |
-
msgid "File not found."
|
216 |
-
msgstr "File non trovato."
|
217 |
-
|
218 |
-
#: includes/class-dlm-shortcodes.php:102
|
219 |
-
msgid "Download not found"
|
220 |
-
msgstr "Download non trovato"
|
221 |
|
222 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
223 |
msgid "Select a category"
|
@@ -241,7 +193,6 @@ msgid "Custom field deleted."
|
|
241 |
msgstr "Campo personalizzato cancellato."
|
242 |
|
243 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
244 |
-
#, php-format
|
245 |
msgid "Download restored to revision from %s"
|
246 |
msgstr "Scarica restaurato a revisione da %s"
|
247 |
|
@@ -258,7 +209,6 @@ msgid "Download submitted."
|
|
258 |
msgstr "Download inserito."
|
259 |
|
260 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
261 |
-
#, php-format
|
262 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
263 |
msgstr "Download programmato per: <strong>%1$s</strong>."
|
264 |
|
@@ -270,44 +220,61 @@ msgstr "d/m/Y @ H:i"
|
|
270 |
msgid "Download draft updated."
|
271 |
msgstr "Bozza Download aggiornata."
|
272 |
|
273 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
274 |
msgid "Image"
|
275 |
msgstr "Immagine"
|
276 |
|
277 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
|
|
278 |
msgid "Title"
|
279 |
msgstr "Titolo"
|
280 |
|
281 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
|
|
282 |
msgid "ID"
|
283 |
msgstr "ID"
|
284 |
|
285 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
|
|
286 |
msgid "File"
|
287 |
msgstr "File"
|
288 |
|
289 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
290 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
|
|
291 |
msgid "Version"
|
292 |
msgstr "Versione"
|
293 |
|
294 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
295 |
-
|
296 |
-
|
|
|
|
|
|
|
297 |
|
298 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
299 |
msgid "Featured"
|
300 |
msgstr "In Evidenza"
|
301 |
|
302 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
303 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
304 |
msgid "Members only"
|
305 |
msgstr "Solo membri"
|
306 |
|
307 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
|
|
|
|
|
|
|
|
308 |
msgid "Date posted"
|
309 |
msgstr "Data pubblicazione"
|
310 |
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
312 |
msgid "Popular Downloads"
|
313 |
msgstr "Downloads Popolari"
|
@@ -316,103 +283,107 @@ msgstr "Downloads Popolari"
|
|
316 |
msgid "There are no stats available yet!"
|
317 |
msgstr "Non ci sono ancora statistiche disponibili."
|
318 |
|
319 |
-
#: includes/admin/class-dlm-admin-dashboard.php:70
|
320 |
-
msgid "Download count"
|
321 |
-
msgstr "Conteggio Download"
|
322 |
-
|
323 |
#: includes/admin/class-dlm-admin-insert.php:32
|
324 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
|
|
325 |
msgid "Insert Download"
|
326 |
msgstr "Inserisci Download"
|
327 |
|
328 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
329 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
330 |
msgid "Insert Shortcode"
|
331 |
msgstr "Inserisci Shortcode"
|
332 |
|
333 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
334 |
msgid "Quick-add download"
|
335 |
msgstr "Aggiungi Download velocemente"
|
336 |
|
337 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
338 |
msgid "Error: File was not created."
|
339 |
msgstr "Errore: File non creato."
|
340 |
|
341 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
342 |
msgid "Download successfully created."
|
343 |
msgstr "Download creato con successo."
|
344 |
|
345 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
346 |
msgid "Error: Download was not created."
|
347 |
msgstr "Errore: Download non creato."
|
348 |
|
349 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
350 |
msgid "Choose a download"
|
351 |
msgstr "Scegli un download:"
|
352 |
|
353 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
354 |
msgid "Template"
|
355 |
msgstr "Modello"
|
356 |
|
357 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
358 |
msgid "Template Name"
|
359 |
msgstr "Nome Modello"
|
360 |
|
361 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
362 |
-
|
363 |
-
|
|
|
|
|
364 |
msgstr "Se lasciato vuoto, verrà utilizzato il modello default <code>content-download.php</code>. Se si inserisce, per esempio, <code>image</code>, verrà utilizzato il modello <code>content-download-image.php</code>."
|
365 |
|
366 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
367 |
msgid "Drop file here"
|
368 |
msgstr "Trascina qui il file"
|
369 |
|
370 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
371 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
372 |
msgid "or"
|
373 |
msgstr "oppure"
|
374 |
|
375 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
|
|
|
|
|
|
|
|
376 |
msgid "Enter URL manually"
|
377 |
msgstr "Inserisci l'URL manualmente"
|
378 |
|
379 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
380 |
msgid "Download URL"
|
381 |
msgstr "URL Download"
|
382 |
|
383 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
384 |
msgid "Required URL"
|
385 |
msgstr "URL richiesto"
|
386 |
|
387 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
388 |
msgid "Download Title"
|
389 |
msgstr "Titolo Download"
|
390 |
|
391 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
392 |
msgid "Required title"
|
393 |
msgstr "Titolo richiesto"
|
394 |
|
395 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
396 |
msgid "Optional version number"
|
397 |
msgstr "Numero di versione facoltativo"
|
398 |
|
399 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
400 |
msgid "Save Download"
|
401 |
msgstr "Salva Download"
|
402 |
|
403 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
404 |
msgid "Allowed Files"
|
405 |
msgstr "File Permessi"
|
406 |
|
407 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
408 |
msgid "Please wait..."
|
409 |
msgstr "Attendere..."
|
410 |
|
411 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
|
|
412 |
msgid "Browse for a file"
|
413 |
msgstr "Scegli un file"
|
414 |
|
415 |
-
#: includes/admin/class-dlm-admin-media-browser.php:
|
416 |
msgid "No files found"
|
417 |
msgstr "Nessun file trovato"
|
418 |
|
@@ -421,8 +392,8 @@ msgid "Download Options"
|
|
421 |
msgstr "Opzioni Download"
|
422 |
|
423 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
424 |
-
msgid "Downloadable
|
425 |
-
msgstr "Versioni
|
426 |
|
427 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
428 |
msgid "Short Description"
|
@@ -437,166 +408,245 @@ msgid "Mark this download as featured. Used by shortcodes and widgets."
|
|
437 |
msgstr "Metti in evidenza questo download. Utilizzato da shortcode e widget."
|
438 |
|
439 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
440 |
-
msgid "
|
|
|
|
|
441 |
msgstr "Se abilitato, solo utenti registrati avranno accesso al file tramite il link."
|
442 |
|
443 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
446 |
|
447 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
msgid "Close all"
|
449 |
msgstr "Chiudi tutto"
|
450 |
|
451 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
452 |
msgid "Expand all"
|
453 |
msgstr "Espandi tutto"
|
454 |
|
455 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
456 |
msgid "Are you sure you want to delete this file?"
|
457 |
msgstr "Sei sicuro di voler cancellare questo file?"
|
458 |
|
459 |
-
#: includes/admin/class-dlm-admin.php:
|
460 |
msgid "General"
|
461 |
msgstr "Generale"
|
462 |
|
463 |
-
#: includes/admin/class-dlm-admin.php:
|
464 |
msgid "Default Template"
|
465 |
msgstr "Modello Default"
|
466 |
|
467 |
-
#: includes/admin/class-dlm-admin.php:
|
468 |
-
msgid "
|
|
|
|
|
469 |
msgstr "Scegli quale modello default usare per gli shortcode <code>[download]</code> (può essere modificato dall'argomento <code>format</code>)."
|
470 |
|
471 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
msgid "Endpoint"
|
473 |
msgstr "Terminale"
|
474 |
|
475 |
-
#: includes/admin/class-dlm-admin.php:
|
476 |
msgid "download"
|
477 |
msgstr "download"
|
478 |
|
479 |
-
#: includes/admin/class-dlm-admin.php:
|
480 |
msgid "Download Endpoint"
|
481 |
msgstr "Terminale Download"
|
482 |
|
483 |
-
#: includes/admin/class-dlm-admin.php:
|
484 |
-
|
485 |
-
|
|
|
486 |
msgstr "Definire quale terminale deve essere usato per i link di download. Per default sarà <code>%s</code>."
|
487 |
|
488 |
-
#: includes/admin/class-dlm-admin.php:
|
489 |
msgid "Endpoint Value"
|
490 |
msgstr "Valore Terminale"
|
491 |
|
492 |
-
#: includes/admin/class-dlm-admin.php:
|
493 |
-
|
494 |
-
|
|
|
|
|
495 |
msgstr "Definire quale valore unico deve essere usato alla fine del terminale per identificare il file per il download. Ad esempio ID formerebbe un link come <code>%s</code>"
|
496 |
|
497 |
-
#: includes/admin/class-dlm-admin.php:
|
498 |
-
#: includes/admin/class-dlm-admin.php:
|
499 |
msgid "Download ID"
|
500 |
msgstr "ID Download"
|
501 |
|
502 |
-
#: includes/admin/class-dlm-admin.php:
|
503 |
msgid "Download slug"
|
504 |
msgstr "Abbreviazione Download"
|
505 |
|
506 |
-
#: includes/admin/class-dlm-admin.php:
|
507 |
msgid "X-Accel-Redirect / X-Sendfile"
|
508 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
509 |
|
510 |
-
#: includes/admin/class-dlm-admin.php:
|
511 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
512 |
msgid "Enable"
|
513 |
msgstr "Abilita"
|
514 |
|
515 |
-
#: includes/admin/class-dlm-admin.php:
|
516 |
-
msgid "
|
|
|
|
|
|
|
517 |
msgstr "Se supportato, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> può essere usato per fornire download al posto di PHP (server richiede <code>mod_xsendfile</code>)."
|
518 |
|
519 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
520 |
msgid "Logging"
|
521 |
msgstr "Registrazione"
|
522 |
|
523 |
-
#: includes/admin/class-dlm-admin.php:
|
524 |
msgid "Download Log"
|
525 |
msgstr "Registrazione Download"
|
526 |
|
527 |
-
#: includes/admin/class-dlm-admin.php:
|
528 |
msgid "Log download attempts, IP addresses and more."
|
529 |
msgstr "Registra i tentativi di download, indirizzi IP e altro"
|
530 |
|
531 |
-
#: includes/admin/class-dlm-admin.php:
|
532 |
msgid "Blacklist IPs"
|
533 |
msgstr "Lista Nera IP"
|
534 |
|
535 |
-
#: includes/admin/class-dlm-admin.php:
|
536 |
-
msgid "
|
|
|
|
|
537 |
msgstr "Aggiugi indirizzi IP alla Lista Nera, 1 per riga. Usa <code>*</code> come jolly."
|
538 |
|
539 |
-
#: includes/admin/class-dlm-admin.php:
|
540 |
msgid "Blacklist user agents"
|
541 |
msgstr "Lista Nera User Agent"
|
542 |
|
543 |
-
#: includes/admin/class-dlm-admin.php:
|
544 |
msgid "List browser user agents to blacklist, 1 per line."
|
545 |
msgstr "Aggiungi browser user agent alla Lista Nera, 1 per riga."
|
546 |
|
547 |
-
#: includes/admin/class-dlm-admin.php:
|
548 |
msgid "Logs"
|
549 |
msgstr "Registrazioni"
|
550 |
|
551 |
-
#: includes/admin/class-dlm-admin.php:
|
552 |
msgid "Settings successfully saved"
|
553 |
msgstr "Impostazioni salvate con successo"
|
554 |
|
555 |
-
#: includes/admin/class-dlm-admin.php:
|
556 |
msgid "Save Changes"
|
557 |
msgstr "Modifiche Registrate"
|
558 |
|
559 |
-
#: includes/admin/class-dlm-admin.php:
|
560 |
msgid "Download Logs"
|
561 |
msgstr "Registrazioni Download"
|
562 |
|
563 |
-
#: includes/admin/class-dlm-admin.php:
|
564 |
msgid "Export CSV"
|
565 |
msgstr "Esporta CSV"
|
566 |
|
567 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
|
|
|
|
|
|
568 |
msgid "Version ID"
|
569 |
msgstr "ID Versione"
|
570 |
|
571 |
-
#: includes/admin/class-dlm-admin.php:
|
572 |
msgid "Filename"
|
573 |
msgstr "Nome File"
|
574 |
|
575 |
-
#: includes/admin/class-dlm-admin.php:
|
576 |
msgid "User ID"
|
577 |
msgstr "ID Utente"
|
578 |
|
579 |
-
#: includes/admin/class-dlm-admin.php:
|
580 |
msgid "User Login"
|
581 |
msgstr "Login Utente"
|
582 |
|
583 |
-
#: includes/admin/class-dlm-admin.php:
|
584 |
msgid "User Email"
|
585 |
msgstr "Email Utente"
|
586 |
|
587 |
-
#: includes/admin/class-dlm-admin.php:
|
588 |
msgid "User IP"
|
589 |
msgstr "IP Utente"
|
590 |
|
591 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
592 |
msgid "User Agent"
|
593 |
msgstr "User Agent"
|
594 |
|
595 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
596 |
msgid "Date"
|
597 |
msgstr "Data"
|
598 |
|
599 |
-
#: includes/admin/class-dlm-admin.php:
|
600 |
msgid "Status"
|
601 |
msgstr "Stato"
|
602 |
|
@@ -605,17 +655,14 @@ msgid "Download Complete"
|
|
605 |
msgstr "Download Completo"
|
606 |
|
607 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
608 |
-
#, php-format
|
609 |
msgid "%s ago"
|
610 |
msgstr "%s fa"
|
611 |
|
612 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
613 |
-
#, php-format
|
614 |
msgid "Download #%d (no longer exists)"
|
615 |
msgstr "Download #%d non esiste più"
|
616 |
|
617 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
618 |
-
#, php-format
|
619 |
msgid "v%s"
|
620 |
msgstr "v%s"
|
621 |
|
@@ -647,12 +694,11 @@ msgstr "Reindirizzato"
|
|
647 |
msgid "Completed"
|
648 |
msgstr "Completato"
|
649 |
|
650 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
651 |
msgid "Show all dates"
|
652 |
msgstr "Mostra tutte le date"
|
653 |
|
654 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
655 |
-
#, php-format
|
656 |
msgid "%1$s %2$d"
|
657 |
msgstr "%1$s %2$d"
|
658 |
|
@@ -689,51 +735,114 @@ msgid "Click to toggle"
|
|
689 |
msgstr "Clicca per aprire"
|
690 |
|
691 |
#: includes/admin/html-downloadable-file-version.php:5
|
692 |
-
#, php-format
|
693 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
694 |
msgstr "Versione <span class=\"version\">%s</span> (%s)"
|
695 |
|
696 |
#: includes/admin/html-downloadable-file-version.php:5
|
697 |
-
#: includes/admin/html-downloadable-file-version.php:
|
698 |
msgid "n/a"
|
699 |
msgstr "n/a"
|
700 |
|
701 |
-
#: includes/admin/html-downloadable-file-version.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
702 |
msgid "File URL(s)"
|
703 |
msgstr "URL(s) File"
|
704 |
|
705 |
-
#: includes/admin/html-downloadable-file-version.php:
|
706 |
-
msgid "
|
|
|
|
|
707 |
msgstr "Inserisci un indirizzo/URL per riga - file multipli verranno utilizzati come mirror (scelti a caso)."
|
708 |
|
709 |
-
#: includes/admin/html-downloadable-file-version.php:
|
|
|
|
|
|
|
|
|
710 |
msgid "Choose a file"
|
711 |
msgstr "Scegli un file"
|
712 |
|
713 |
-
#: includes/admin/html-downloadable-file-version.php:
|
714 |
msgid "Insert file URL"
|
715 |
msgstr "Inserisci URL File"
|
716 |
|
717 |
-
#: includes/admin/html-downloadable-file-version.php:
|
718 |
-
msgid "Upload file"
|
719 |
-
msgstr "Carica file"
|
720 |
-
|
721 |
-
#: includes/admin/html-downloadable-file-version.php:22
|
722 |
msgid "Browse for file"
|
723 |
msgstr "Scegli un file"
|
724 |
|
725 |
-
#: includes/admin/html-downloadable-file-version.php:
|
726 |
msgid "File Date"
|
727 |
msgstr "Data File"
|
728 |
|
729 |
-
#: includes/admin/html-downloadable-file-version.php:
|
730 |
msgid "h"
|
731 |
msgstr "h"
|
732 |
|
733 |
-
#: includes/admin/html-downloadable-file-version.php:
|
734 |
msgid "m"
|
735 |
msgstr "m"
|
736 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
738 |
msgid "Display a list of your downloads."
|
739 |
msgstr "Mostra una lista dei tuoi download."
|
@@ -799,8 +908,16 @@ msgstr "Mostra solo download in evidenza"
|
|
799 |
msgid "Show only members only downloads"
|
800 |
msgstr "Mostra solo download per soli membri"
|
801 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
#: templates/content-download-box.php:20
|
803 |
-
|
|
|
804 |
msgid "Version %s"
|
805 |
msgstr "Versione %s"
|
806 |
|
@@ -809,7 +926,35 @@ msgid "Download File"
|
|
809 |
msgstr "File Download"
|
810 |
|
811 |
#: templates/content-download-button.php:9
|
812 |
-
#, php-format
|
813 |
msgid "Download “%s”"
|
814 |
msgstr "Download “%s”"
|
815 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:21+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/download-monitor/language/it_IT/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: it_IT\n"
|
|
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
|
|
|
17 |
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "Impostazioni"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
23 |
msgid "Add-ons"
|
24 |
msgstr "Componenti aggiuntivi"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
27 |
msgid "Docs"
|
28 |
msgstr "Documentazione"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
|
|
32 |
msgid "Categories"
|
33 |
msgstr "Categorie"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
36 |
msgid "Download Category"
|
37 |
msgstr "Categoria Download"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "Cerca nelle Categorie Download"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "Tutte le Categorie Download"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "Categoria Download Genitore"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "Categoria Download Genitore:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "Modifica Categoria Download"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "Aggiorna Categoria Download"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "Aggiungi Nuova Categoria Download"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "Nome Nuova Categoria Download"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
|
|
73 |
msgid "Tags"
|
74 |
msgstr "Tags"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
77 |
msgid "Download Tag"
|
78 |
msgstr "Tag Download"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "Cerca tra le Tags Download"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "Tulle le Tags Download"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "Tag Download Genitore"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "Tag Download Genitore:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "Modifica Tag Download"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "Aggiorna Tag Download"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "Aggiungi Nuova Tag Download"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "Nome Nuova Tag Download"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr "Tutti i Download"
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr "Downloads"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
121 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
122 |
msgid "Download"
|
123 |
msgstr "Download"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
126 |
msgid "Add New"
|
127 |
msgstr "Aggiungi Nuovo"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
130 |
msgid "Add Download"
|
131 |
msgstr "Aggiungi Download"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
134 |
msgid "Edit"
|
135 |
msgstr "Modifica"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
138 |
msgid "Edit Download"
|
139 |
msgstr "Modifica Download"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
142 |
msgid "New Download"
|
143 |
msgstr "Nuovo Download"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
|
|
146 |
msgid "View Download"
|
147 |
msgstr "Visualizza Download"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "Cerca Downloads"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "Nessun Download trovato"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "Nessun Download trovato nel cestino"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
162 |
msgid "Parent Download"
|
163 |
msgstr "Download Genitore"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "Qui potete creare e gestire i download del vostro sito."
|
168 |
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
+
msgstr "Add-on Download Monitor"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
msgid "Select a category"
|
193 |
msgstr "Campo personalizzato cancellato."
|
194 |
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "Scarica restaurato a revisione da %s"
|
198 |
|
209 |
msgstr "Download inserito."
|
210 |
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "Download programmato per: <strong>%1$s</strong>."
|
214 |
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "Bozza Download aggiornata."
|
222 |
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
224 |
msgid "Image"
|
225 |
msgstr "Immagine"
|
226 |
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
228 |
+
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
msgid "Title"
|
230 |
msgstr "Titolo"
|
231 |
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
233 |
+
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
msgid "ID"
|
235 |
msgstr "ID"
|
236 |
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
238 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
239 |
msgid "File"
|
240 |
msgstr "File"
|
241 |
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
245 |
msgid "Version"
|
246 |
msgstr "Versione"
|
247 |
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
+
msgstr "Conteggio Download"
|
254 |
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
256 |
msgid "Featured"
|
257 |
msgstr "In Evidenza"
|
258 |
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
msgid "Members only"
|
262 |
msgstr "Solo membri"
|
263 |
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr "Solo reindirizzamento"
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "Data pubblicazione"
|
271 |
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr "Si"
|
277 |
+
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "Downloads Popolari"
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "Non ci sono ancora statistiche disponibili."
|
285 |
|
|
|
|
|
|
|
|
|
286 |
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
msgid "Insert Download"
|
290 |
msgstr "Inserisci Download"
|
291 |
|
292 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "Inserisci Shortcode"
|
296 |
|
297 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "Aggiungi Download velocemente"
|
300 |
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "Errore: File non creato."
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "Download creato con successo."
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "Errore: Download non creato."
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
314 |
msgid "Choose a download"
|
315 |
msgstr "Scegli un download:"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
318 |
msgid "Template"
|
319 |
msgstr "Modello"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
322 |
msgid "Template Name"
|
323 |
msgstr "Nome Modello"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
326 |
+
msgid ""
|
327 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
msgstr "Se lasciato vuoto, verrà utilizzato il modello default <code>content-download.php</code>. Se si inserisce, per esempio, <code>image</code>, verrà utilizzato il modello <code>content-download-image.php</code>."
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
333 |
msgid "Drop file here"
|
334 |
msgstr "Trascina qui il file"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
338 |
msgid "or"
|
339 |
msgstr "oppure"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
342 |
+
msgid "Select File"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "Inserisci l'URL manualmente"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
350 |
msgid "Download URL"
|
351 |
msgstr "URL Download"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
354 |
msgid "Required URL"
|
355 |
msgstr "URL richiesto"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
358 |
msgid "Download Title"
|
359 |
msgstr "Titolo Download"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
362 |
msgid "Required title"
|
363 |
msgstr "Titolo richiesto"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
366 |
msgid "Optional version number"
|
367 |
msgstr "Numero di versione facoltativo"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
370 |
msgid "Save Download"
|
371 |
msgstr "Salva Download"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "File Permessi"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
378 |
msgid "Please wait..."
|
379 |
msgstr "Attendere..."
|
380 |
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "Scegli un file"
|
385 |
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
387 |
msgid "No files found"
|
388 |
msgstr "Nessun file trovato"
|
389 |
|
392 |
msgstr "Opzioni Download"
|
393 |
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr "File/Versioni Scaricabili"
|
397 |
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
msgid "Short Description"
|
408 |
msgstr "Metti in evidenza questo download. Utilizzato da shortcode e widget."
|
409 |
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
+
msgid ""
|
412 |
+
"Only logged in users will be able to access the file via a download link if "
|
413 |
+
"this is enabled."
|
414 |
msgstr "Se abilitato, solo utenti registrati avranno accesso al file tramite il link."
|
415 |
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
+
msgstr "Reindirizza al file"
|
419 |
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr "Non forzare il download. Se la cartella <code>dlm_upload</code> è protetta potrei aver bisogno di spostare il tuo file."
|
425 |
+
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr "Aggiungi file"
|
429 |
+
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
431 |
msgid "Close all"
|
432 |
msgstr "Chiudi tutto"
|
433 |
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
435 |
msgid "Expand all"
|
436 |
msgstr "Espandi tutto"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "Sei sicuro di voler cancellare questo file?"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
443 |
msgid "General"
|
444 |
msgstr "Generale"
|
445 |
|
446 |
+
#: includes/admin/class-dlm-admin.php:100
|
447 |
msgid "Default Template"
|
448 |
msgstr "Modello Default"
|
449 |
|
450 |
+
#: includes/admin/class-dlm-admin.php:101
|
451 |
+
msgid ""
|
452 |
+
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
+
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
msgstr "Scegli quale modello default usare per gli shortcode <code>[download]</code> (può essere modificato dall'argomento <code>format</code>)."
|
455 |
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
+
msgstr "Default - Titolo e contatore"
|
459 |
+
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
+
msgstr "Bottone - bottone con stile CSS che mostra titolo e contatore"
|
463 |
+
|
464 |
+
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr "Box - Box che mostra thumbnail, titolo, contatore, nome del file e dimensione del file."
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
+
msgstr "Nome del file - Nome del file e contatore di download"
|
471 |
+
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr "Titolo - Mostra solo il titolo del download"
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr "Lista versione - Lista non ordinata di tutte le versioni di download"
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr "Template personalizzato"
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr "Template personalizzato"
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr "Se lasciato vuoto, verrà utilizzato il modello default <code>content-download.php</code>. Se si inserisce, per esempio, <code>image</code>, verrà utilizzato il modello <code>content-download-image.php</code>."
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "Terminale"
|
499 |
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
501 |
msgid "download"
|
502 |
msgstr "download"
|
503 |
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "Terminale Download"
|
507 |
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
509 |
+
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
msgstr "Definire quale terminale deve essere usato per i link di download. Per default sarà <code>%s</code>."
|
513 |
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "Valore Terminale"
|
517 |
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
519 |
+
msgid ""
|
520 |
+
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
msgstr "Definire quale valore unico deve essere usato alla fine del terminale per identificare il file per il download. Ad esempio ID formerebbe un link come <code>%s</code>"
|
524 |
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
527 |
msgid "Download ID"
|
528 |
msgstr "ID Download"
|
529 |
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
531 |
msgid "Download slug"
|
532 |
msgstr "Abbreviazione Download"
|
533 |
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "Abilita"
|
543 |
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
545 |
+
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
548 |
+
"<code>mod_xsendfile</code>)."
|
549 |
msgstr "Se supportato, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> può essere usato per fornire download al posto di PHP (server richiede <code>mod_xsendfile</code>)."
|
550 |
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr "Previeni hotlinking"
|
554 |
+
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr "Se abilitato, il gestore dei download controllerà la referenza PHP per controllare se ha avuto origine dal tuo sito o no, reindirizzandoli alla pagina principale."
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "Registrazione"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
566 |
msgid "Download Log"
|
567 |
msgstr "Registrazione Download"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "Registra i tentativi di download, indirizzi IP e altro"
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "Lista Nera IP"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
578 |
+
msgid ""
|
579 |
+
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
+
"wildcard."
|
581 |
msgstr "Aggiugi indirizzi IP alla Lista Nera, 1 per riga. Usa <code>*</code> come jolly."
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "Lista Nera User Agent"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "Aggiungi browser user agent alla Lista Nera, 1 per riga."
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
592 |
msgid "Logs"
|
593 |
msgstr "Registrazioni"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "Impostazioni salvate con successo"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
600 |
msgid "Save Changes"
|
601 |
msgstr "Modifiche Registrate"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
604 |
msgid "Download Logs"
|
605 |
msgstr "Registrazioni Download"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
608 |
msgid "Export CSV"
|
609 |
msgstr "Esporta CSV"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr "Cancella Log"
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
msgid "Version ID"
|
617 |
msgstr "ID Versione"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
msgid "Filename"
|
621 |
msgstr "Nome File"
|
622 |
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
msgid "User ID"
|
625 |
msgstr "ID Utente"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
msgid "User Login"
|
629 |
msgstr "Login Utente"
|
630 |
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
msgid "User Email"
|
633 |
msgstr "Email Utente"
|
634 |
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
msgid "User IP"
|
637 |
msgstr "IP Utente"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
640 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
641 |
msgid "User Agent"
|
642 |
msgstr "User Agent"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
645 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
646 |
msgid "Date"
|
647 |
msgstr "Data"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
650 |
msgid "Status"
|
651 |
msgstr "Stato"
|
652 |
|
655 |
msgstr "Download Completo"
|
656 |
|
657 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "%s fa"
|
660 |
|
661 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "Download #%d non esiste più"
|
664 |
|
665 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
694 |
msgid "Completed"
|
695 |
msgstr "Completato"
|
696 |
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
msgid "Show all dates"
|
699 |
msgstr "Mostra tutte le date"
|
700 |
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
|
|
702 |
msgid "%1$s %2$d"
|
703 |
msgstr "%1$s %2$d"
|
704 |
|
735 |
msgstr "Clicca per aprire"
|
736 |
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "Versione <span class=\"version\">%s</span> (%s)"
|
740 |
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
msgid "n/a"
|
744 |
msgstr "n/a"
|
745 |
|
746 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
747 |
+
msgid "Downloaded %s time"
|
748 |
+
msgid_plural "Downloaded %s times"
|
749 |
+
msgstr[0] ""
|
750 |
+
msgstr[1] ""
|
751 |
+
|
752 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
753 |
msgid "File URL(s)"
|
754 |
msgstr "URL(s) File"
|
755 |
|
756 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
757 |
+
msgid ""
|
758 |
+
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
759 |
+
"(chosen at random)."
|
760 |
msgstr "Inserisci un indirizzo/URL per riga - file multipli verranno utilizzati come mirror (scelti a caso)."
|
761 |
|
762 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
763 |
+
msgid "Upload file"
|
764 |
+
msgstr "Carica file"
|
765 |
+
|
766 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
767 |
msgid "Choose a file"
|
768 |
msgstr "Scegli un file"
|
769 |
|
770 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
771 |
msgid "Insert file URL"
|
772 |
msgstr "Inserisci URL File"
|
773 |
|
774 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
|
|
|
|
|
|
775 |
msgid "Browse for file"
|
776 |
msgstr "Scegli un file"
|
777 |
|
778 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
779 |
msgid "File Date"
|
780 |
msgstr "Data File"
|
781 |
|
782 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
783 |
msgid "h"
|
784 |
msgstr "h"
|
785 |
|
786 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
787 |
msgid "m"
|
788 |
msgstr "m"
|
789 |
|
790 |
+
#: includes/class-dlm-download-handler.php:140
|
791 |
+
msgid "Password Required"
|
792 |
+
msgstr "Password Obbligatoria"
|
793 |
+
|
794 |
+
#: includes/class-dlm-download-handler.php:150
|
795 |
+
msgid "Download does not exist."
|
796 |
+
msgstr "Download non esiste"
|
797 |
+
|
798 |
+
#: includes/class-dlm-download-handler.php:150
|
799 |
+
#: includes/class-dlm-download-handler.php:180
|
800 |
+
#: includes/class-dlm-download-handler.php:185
|
801 |
+
#: includes/class-dlm-download-handler.php:194
|
802 |
+
#: includes/class-dlm-download-handler.php:288
|
803 |
+
msgid "Go to homepage →"
|
804 |
+
msgstr "Vai alla home →"
|
805 |
+
|
806 |
+
#: includes/class-dlm-download-handler.php:150
|
807 |
+
#: includes/class-dlm-download-handler.php:180
|
808 |
+
#: includes/class-dlm-download-handler.php:185
|
809 |
+
#: includes/class-dlm-download-handler.php:194
|
810 |
+
#: includes/class-dlm-download-handler.php:288
|
811 |
+
msgid "Download Error"
|
812 |
+
msgstr "Errore Download"
|
813 |
+
|
814 |
+
#: includes/class-dlm-download-handler.php:180
|
815 |
+
#: includes/class-dlm-download-handler.php:185
|
816 |
+
msgid "No file paths defined."
|
817 |
+
msgstr "Nessun percorso definito."
|
818 |
+
|
819 |
+
#: includes/class-dlm-download-handler.php:194
|
820 |
+
msgid "You do not have permission to access this download."
|
821 |
+
msgstr "Non hai permessi sufficienti per accedere a questo download."
|
822 |
+
|
823 |
+
#: includes/class-dlm-download-handler.php:212
|
824 |
+
#: includes/class-dlm-download-handler.php:228
|
825 |
+
#: includes/class-dlm-download-handler.php:235
|
826 |
+
#: includes/class-dlm-download-handler.php:242
|
827 |
+
msgid "Redirected to file"
|
828 |
+
msgstr "Reindirizzato al file"
|
829 |
+
|
830 |
+
#: includes/class-dlm-download-handler.php:281
|
831 |
+
msgid "Redirected to remote file."
|
832 |
+
msgstr "Reindirizzato al file remoto."
|
833 |
+
|
834 |
+
#: includes/class-dlm-download-handler.php:286
|
835 |
+
msgid "File not found"
|
836 |
+
msgstr "File non trovato"
|
837 |
+
|
838 |
+
#: includes/class-dlm-download-handler.php:288
|
839 |
+
msgid "File not found."
|
840 |
+
msgstr "File non trovato."
|
841 |
+
|
842 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
843 |
+
msgid "Download not found"
|
844 |
+
msgstr "Download non trovato"
|
845 |
+
|
846 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
847 |
msgid "Display a list of your downloads."
|
848 |
msgstr "Mostra una lista dei tuoi download."
|
908 |
msgid "Show only members only downloads"
|
909 |
msgstr "Mostra solo download per soli membri"
|
910 |
|
911 |
+
#: templates/content-download-box.php:12
|
912 |
+
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
913 |
+
msgid "1 download"
|
914 |
+
msgid_plural "%d downloads"
|
915 |
+
msgstr[0] ""
|
916 |
+
msgstr[1] ""
|
917 |
+
|
918 |
#: templates/content-download-box.php:20
|
919 |
+
#: templates/content-download-filename.php:8
|
920 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
921 |
msgid "Version %s"
|
922 |
msgstr "Versione %s"
|
923 |
|
926 |
msgstr "File Download"
|
927 |
|
928 |
#: templates/content-download-button.php:9
|
|
|
929 |
msgid "Download “%s”"
|
930 |
msgstr "Download “%s”"
|
931 |
|
932 |
+
#: templates/content-download-button.php:10
|
933 |
+
#: templates/content-download-version-list.php:17
|
934 |
+
msgid "Downloaded 1 time"
|
935 |
+
msgid_plural "Downloaded %d times"
|
936 |
+
msgstr[0] ""
|
937 |
+
msgstr[1] ""
|
938 |
+
|
939 |
+
#. Plugin Name of the plugin/theme
|
940 |
+
msgid "Download Monitor"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#. Plugin URI of the plugin/theme
|
944 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#. Description of the plugin/theme
|
948 |
+
msgid ""
|
949 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
950 |
+
"outputting download links and file information on your WordPress powered "
|
951 |
+
"site."
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#. Author of the plugin/theme
|
955 |
+
msgid "Mike Jolley"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#. Author URI of the plugin/theme
|
959 |
+
msgid "http://mikejolley.com"
|
960 |
+
msgstr ""
|
languages/download-monitor-ja.mo
ADDED
Binary file
|
languages/{download_monitor-ja.po → download-monitor-ja.po}
RENAMED
@@ -1,171 +1,176 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
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 1.5.7\n"
|
13 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
15 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
16 |
-
"X-Textdomain-Support: yes\n"
|
17 |
"Language: ja\n"
|
18 |
-
"
|
19 |
-
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#: download-monitor.php:
|
23 |
msgid "Settings"
|
24 |
msgstr "設定"
|
25 |
|
26 |
-
#: download-monitor.php:
|
27 |
msgid "Add-ons"
|
28 |
msgstr "アドオン"
|
29 |
|
30 |
-
#: download-monitor.php:
|
31 |
msgid "Docs"
|
32 |
msgstr "ドキュメント"
|
33 |
|
34 |
-
#: download-monitor.php:
|
35 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
36 |
msgid "Categories"
|
37 |
msgstr "カテゴリ"
|
38 |
|
39 |
-
#: download-monitor.php:
|
40 |
msgid "Download Category"
|
41 |
msgstr "ダウンロードカテゴリ"
|
42 |
|
43 |
-
#: download-monitor.php:
|
44 |
msgid "Search Download Categories"
|
45 |
msgstr "ダウンロードカテゴリを検索"
|
46 |
|
47 |
-
#: download-monitor.php:
|
48 |
msgid "All Download Categories"
|
49 |
msgstr "全てのダウンロードカテゴリ"
|
50 |
|
51 |
-
#: download-monitor.php:
|
52 |
msgid "Parent Download Category"
|
53 |
msgstr "親のダウンロードカテゴリ"
|
54 |
|
55 |
-
#: download-monitor.php:
|
56 |
msgid "Parent Download Category:"
|
57 |
msgstr "親のダウンロードカテゴリ:"
|
58 |
|
59 |
-
#: download-monitor.php:
|
60 |
msgid "Edit Download Category"
|
61 |
msgstr "ダウンロードカテゴリを編集"
|
62 |
|
63 |
-
#: download-monitor.php:
|
64 |
msgid "Update Download Category"
|
65 |
msgstr "ダウンロードカテゴリを更新"
|
66 |
|
67 |
-
#: download-monitor.php:
|
68 |
msgid "Add New Download Category"
|
69 |
msgstr "新しいダウンロードカテゴリを追加"
|
70 |
|
71 |
-
#: download-monitor.php:
|
72 |
msgid "New Download Category Name"
|
73 |
msgstr "新しいダウンロードカテゴリの名前"
|
74 |
|
75 |
-
#: download-monitor.php:
|
76 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
77 |
msgid "Tags"
|
78 |
msgstr "タグ"
|
79 |
|
80 |
-
#: download-monitor.php:
|
81 |
msgid "Download Tag"
|
82 |
msgstr "ダウンロードタグ"
|
83 |
|
84 |
-
#: download-monitor.php:
|
85 |
msgid "Search Download Tags"
|
86 |
msgstr "ダウンロードタグを検索"
|
87 |
|
88 |
-
#: download-monitor.php:
|
89 |
msgid "All Download Tags"
|
90 |
msgstr "全てのダウンロードタグ"
|
91 |
|
92 |
-
#: download-monitor.php:
|
93 |
msgid "Parent Download Tag"
|
94 |
msgstr "親のダウンロードタグ"
|
95 |
|
96 |
-
#: download-monitor.php:
|
97 |
msgid "Parent Download Tag:"
|
98 |
msgstr "親のダウンロードタグ:"
|
99 |
|
100 |
-
#: download-monitor.php:
|
101 |
msgid "Edit Download Tag"
|
102 |
msgstr "ダウンロードタグを編集"
|
103 |
|
104 |
-
#: download-monitor.php:
|
105 |
msgid "Update Download Tag"
|
106 |
msgstr "ダウンロードタグを更新"
|
107 |
|
108 |
-
#: download-monitor.php:
|
109 |
msgid "Add New Download Tag"
|
110 |
msgstr "新しいダウンロードタグを追加"
|
111 |
|
112 |
-
#: download-monitor.php:
|
113 |
msgid "New Download Tag Name"
|
114 |
msgstr "新しいダウンロードタグの名前"
|
115 |
|
116 |
-
#: download-monitor.php:
|
|
|
|
|
|
|
|
|
117 |
msgid "Downloads"
|
118 |
msgstr "ダウンロード"
|
119 |
|
120 |
-
#: download-monitor.php:
|
121 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
122 |
msgid "Download"
|
123 |
msgstr "ダウンロード"
|
124 |
|
125 |
-
#: download-monitor.php:
|
126 |
msgid "Add New"
|
127 |
msgstr "新規作成"
|
128 |
|
129 |
-
#: download-monitor.php:
|
130 |
msgid "Add Download"
|
131 |
msgstr "ダウンロードを追加"
|
132 |
|
133 |
-
#: download-monitor.php:
|
134 |
msgid "Edit"
|
135 |
msgstr "編集"
|
136 |
|
137 |
-
#: download-monitor.php:
|
138 |
msgid "Edit Download"
|
139 |
msgstr "ダウンロードを編集"
|
140 |
|
141 |
-
#: download-monitor.php:
|
142 |
msgid "New Download"
|
143 |
msgstr "新しいダウンロード"
|
144 |
|
145 |
-
#: download-monitor.php:
|
146 |
msgid "View Download"
|
147 |
msgstr "ダウンロードを表示"
|
148 |
|
149 |
-
#: download-monitor.php:
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "ダウンロードを検索"
|
152 |
|
153 |
-
#: download-monitor.php:
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "ダウンロードはありません。"
|
156 |
|
157 |
-
#: download-monitor.php:
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "ゴミ箱にダウンロードはありません。"
|
160 |
|
161 |
-
#: download-monitor.php:
|
162 |
msgid "Parent Download"
|
163 |
msgstr "親のダウンロード"
|
164 |
|
165 |
-
#: download-monitor.php:
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "あなたのサイトのためのダウンロードの作成及び管理ができます。"
|
168 |
|
|
|
|
|
|
|
|
|
|
|
169 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
170 |
msgid "Select a category"
|
171 |
msgstr "カテゴリを選択"
|
@@ -188,7 +193,6 @@ msgid "Custom field deleted."
|
|
188 |
msgstr "カスタムフィールドを削除しました。"
|
189 |
|
190 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
191 |
-
#, php-format
|
192 |
msgid "Download restored to revision from %s"
|
193 |
msgstr "リビジョン %s へダウンロードを復元しました。"
|
194 |
|
@@ -205,7 +209,6 @@ msgid "Download submitted."
|
|
205 |
msgstr "ダウンロードを投稿しました。"
|
206 |
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
208 |
-
#, php-format
|
209 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
210 |
msgstr "ダウンロードスケジュール: <strong>%1$s</strong>."
|
211 |
|
@@ -217,48 +220,61 @@ msgstr "j F Y @ G:i"
|
|
217 |
msgid "Download draft updated."
|
218 |
msgstr "ダウンロード案を更新しました。"
|
219 |
|
220 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
221 |
msgid "Image"
|
222 |
msgstr "画像"
|
223 |
|
224 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
225 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
226 |
msgid "Title"
|
227 |
msgstr "タイトル"
|
228 |
|
229 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
230 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
231 |
msgid "ID"
|
232 |
msgstr "ID"
|
233 |
|
234 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
235 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
236 |
msgid "File"
|
237 |
msgstr "ファイル"
|
238 |
|
239 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
240 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
241 |
-
#: includes/admin/html-downloadable-file-version.php:
|
242 |
msgid "Version"
|
243 |
msgstr "バージョン"
|
244 |
|
245 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
246 |
-
|
247 |
-
|
|
|
|
|
|
|
248 |
|
249 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
250 |
msgid "Featured"
|
251 |
msgstr "注目"
|
252 |
|
253 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
254 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
255 |
msgid "Members only"
|
256 |
msgstr "メンバーズオンリー"
|
257 |
|
258 |
-
#: includes/admin/class-dlm-admin-cpt.php:
|
|
|
|
|
|
|
|
|
259 |
msgid "Date posted"
|
260 |
msgstr "投稿日時"
|
261 |
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
263 |
msgid "Popular Downloads"
|
264 |
msgstr "トップダウンロード"
|
@@ -267,117 +283,107 @@ msgstr "トップダウンロード"
|
|
267 |
msgid "There are no stats available yet!"
|
268 |
msgstr "まだ統計がありません!"
|
269 |
|
270 |
-
#: includes/admin/class-dlm-admin-dashboard.php:68
|
271 |
-
#: includes/admin/html-downloadable-file-version.php:29
|
272 |
-
#: includes/widgets/class-dlm-widget-downloads.php:176
|
273 |
-
msgid "Download count"
|
274 |
-
msgstr "ダウンロードカウント"
|
275 |
-
|
276 |
#: includes/admin/class-dlm-admin-insert.php:32
|
277 |
#: includes/admin/class-dlm-admin-insert.php:40
|
278 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
279 |
msgid "Insert Download"
|
280 |
msgstr "ダウンロードを挿入"
|
281 |
|
282 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
283 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
284 |
msgid "Insert Shortcode"
|
285 |
msgstr "ショートコードを挿入"
|
286 |
|
287 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
288 |
msgid "Quick-add download"
|
289 |
msgstr "ダウンロードを即時挿入"
|
290 |
|
291 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
292 |
msgid "Error: File was not created."
|
293 |
msgstr "エラー:ファイルが作成されませんでした。"
|
294 |
|
295 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
296 |
msgid "Download successfully created."
|
297 |
msgstr "ダウンロードが作成されました。"
|
298 |
|
299 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
300 |
msgid "Error: Download was not created."
|
301 |
msgstr "エラー:ダウンロードは作成されていません。"
|
302 |
|
303 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
304 |
msgid "Choose a download"
|
305 |
msgstr "ダウンロードを選択"
|
306 |
|
307 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
308 |
msgid "Template"
|
309 |
msgstr "テンプレート"
|
310 |
|
311 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
312 |
msgid "Template Name"
|
313 |
msgstr "テンプレート名"
|
314 |
|
315 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
316 |
-
#: includes/admin/class-dlm-admin.php:94
|
317 |
msgid ""
|
318 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
319 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
320 |
-
"
|
321 |
-
msgstr ""
|
322 |
-
"空白にするとデフォルトのテンプレート <code>content-download.php</code> が使用"
|
323 |
-
"されます。例えば、<code>image</code>と入力すると、<code>content-download-"
|
324 |
-
"image.php</code>のテンプレートが使用されます。"
|
325 |
|
326 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
327 |
msgid "Drop file here"
|
328 |
msgstr "ファイルをここにドロップ"
|
329 |
|
330 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
331 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
332 |
msgid "or"
|
333 |
msgstr "もしくは"
|
334 |
|
335 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
336 |
msgid "Select File"
|
337 |
msgstr "ファイルを選択"
|
338 |
|
339 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
340 |
msgid "Enter URL manually"
|
341 |
msgstr "手動でURLを入力"
|
342 |
|
343 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
344 |
msgid "Download URL"
|
345 |
msgstr "ダウンロードURL"
|
346 |
|
347 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
348 |
msgid "Required URL"
|
349 |
msgstr "URLが必要です。"
|
350 |
|
351 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
352 |
msgid "Download Title"
|
353 |
msgstr "タイトル"
|
354 |
|
355 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
356 |
msgid "Required title"
|
357 |
msgstr "タイトルが必要です。"
|
358 |
|
359 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
360 |
msgid "Optional version number"
|
361 |
msgstr "任意のバージョン番号"
|
362 |
|
363 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
364 |
msgid "Save Download"
|
365 |
msgstr "ダウンロードを保存しました。"
|
366 |
|
367 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
368 |
msgid "Allowed Files"
|
369 |
msgstr "許可されたファイル"
|
370 |
|
371 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
372 |
msgid "Please wait..."
|
373 |
msgstr "お待ちください..."
|
374 |
|
375 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
376 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
377 |
msgid "Browse for a file"
|
378 |
msgstr "ファイルを参照"
|
379 |
|
380 |
-
#: includes/admin/class-dlm-admin-media-browser.php:
|
381 |
msgid "No files found"
|
382 |
msgstr "ファイルが見つかりません。"
|
383 |
|
@@ -386,8 +392,8 @@ msgid "Download Options"
|
|
386 |
msgstr "ダウンロードオプション"
|
387 |
|
388 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
389 |
-
msgid "Downloadable
|
390 |
-
msgstr "
|
391 |
|
392 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
393 |
msgid "Short Description"
|
@@ -399,223 +405,327 @@ msgstr "注目のダウンロード"
|
|
399 |
|
400 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
401 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
402 |
-
msgstr ""
|
403 |
-
"このダウンロードを注目のダウンロードとしてマークします。ショートコードとウィ"
|
404 |
-
"ジェットで使用されます。"
|
405 |
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
407 |
msgid ""
|
408 |
"Only logged in users will be able to access the file via a download link if "
|
409 |
"this is enabled."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
msgstr ""
|
411 |
-
"ユーザーがログインし、これが有効になっている場合のみ、ダウンロードリンクを介"
|
412 |
-
"してファイルにアクセスすることができるようになります。"
|
413 |
|
414 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
415 |
-
msgid "Add
|
416 |
-
msgstr "
|
417 |
|
418 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
419 |
msgid "Close all"
|
420 |
msgstr "すべて閉じる"
|
421 |
|
422 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
423 |
msgid "Expand all"
|
424 |
msgstr "すべて展開"
|
425 |
|
426 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
427 |
msgid "Are you sure you want to delete this file?"
|
428 |
msgstr "本当にこのファイルを削除しますか?"
|
429 |
|
430 |
-
#: includes/admin/class-dlm-admin.php:
|
431 |
msgid "General"
|
432 |
msgstr "一般"
|
433 |
|
434 |
-
#: includes/admin/class-dlm-admin.php:
|
435 |
msgid "Default Template"
|
436 |
msgstr "デフォルトテンプレート"
|
437 |
|
438 |
-
#: includes/admin/class-dlm-admin.php:
|
439 |
msgid ""
|
440 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
441 |
"default (this can be overridden by the <code>format</code> argument)."
|
|
|
|
|
|
|
|
|
442 |
msgstr ""
|
443 |
-
"デフォルトの<code>[download]</code>ショートコードで使われるテンプレートを選択"
|
444 |
-
"してください。(この設定は <code>format</code> 引数で上書きできます。)"
|
445 |
|
446 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgid "Endpoint"
|
448 |
msgstr "エンドポイント"
|
449 |
|
450 |
-
#: includes/admin/class-dlm-admin.php:
|
451 |
msgid "download"
|
452 |
msgstr "download"
|
453 |
|
454 |
-
#: includes/admin/class-dlm-admin.php:
|
455 |
msgid "Download Endpoint"
|
456 |
msgstr "ダウンロードエンドポイント"
|
457 |
|
458 |
-
#: includes/admin/class-dlm-admin.php:
|
459 |
-
#, php-format
|
460 |
msgid ""
|
461 |
-
"Define what endpoint should be used for download links. By default this will
|
462 |
-
"be <code>%s</code>."
|
463 |
-
msgstr ""
|
464 |
-
"どのエンドポイントがダウンロードリンクに使われるかを定義します。デフォルトで"
|
465 |
-
"は <code>%s</code> が使われます。"
|
466 |
|
467 |
-
#: includes/admin/class-dlm-admin.php:
|
468 |
msgid "Endpoint Value"
|
469 |
msgstr "エンドポイント値"
|
470 |
|
471 |
-
#: includes/admin/class-dlm-admin.php:
|
472 |
-
#, php-format
|
473 |
msgid ""
|
474 |
"Define what unique value should be used on the end of your endpoint to "
|
475 |
-
"identify the downloadable file. e.g. ID would give a link like
|
476 |
-
"code>"
|
477 |
-
msgstr ""
|
478 |
-
"どの任意の値がダウンロード可能なファイルを識別するためにエンドポイントの最後"
|
479 |
-
"に使われるかを定義します。例えば、IDは <code>%s</code> のようなリンクを与えま"
|
480 |
-
"す。"
|
481 |
|
482 |
-
#: includes/admin/class-dlm-admin.php:
|
483 |
-
#: includes/admin/class-dlm-admin.php:
|
484 |
msgid "Download ID"
|
485 |
msgstr "ダウンロードID"
|
486 |
|
487 |
-
#: includes/admin/class-dlm-admin.php:
|
488 |
msgid "Download slug"
|
489 |
msgstr "ダウンロードスラグ"
|
490 |
|
491 |
-
#: includes/admin/class-dlm-admin.php:
|
492 |
msgid "X-Accel-Redirect / X-Sendfile"
|
493 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
494 |
|
495 |
-
#: includes/admin/class-dlm-admin.php:
|
496 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
497 |
msgid "Enable"
|
498 |
msgstr "有効"
|
499 |
|
500 |
-
#: includes/admin/class-dlm-admin.php:
|
501 |
msgid ""
|
502 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be
|
503 |
-
"used to serve downloads instead of PHP (server requires
|
504 |
-
"code>)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
msgstr ""
|
506 |
-
"もし有効ならば、<code>X-Accel-Redirect</code> / <code>X-Sendfile</code> をPHP"
|
507 |
-
"の代わりにダウンロードサービスを使えます。(サーバー側での "
|
508 |
-
"<code>mod_xsendfile</code> の設定が必要です。)"
|
509 |
|
510 |
-
#: includes/admin/class-dlm-admin.php:
|
511 |
msgid "Logging"
|
512 |
msgstr "ロギング"
|
513 |
|
514 |
-
#: includes/admin/class-dlm-admin.php:
|
515 |
msgid "Download Log"
|
516 |
msgstr "ダウンロードログ"
|
517 |
|
518 |
-
#: includes/admin/class-dlm-admin.php:
|
519 |
msgid "Log download attempts, IP addresses and more."
|
520 |
msgstr "ダウンロードを試みたIPアドレスなどを記録します。"
|
521 |
|
522 |
-
#: includes/admin/class-dlm-admin.php:
|
523 |
msgid "Blacklist IPs"
|
524 |
msgstr "IPブラックリスト"
|
525 |
|
526 |
-
#: includes/admin/class-dlm-admin.php:
|
527 |
msgid ""
|
528 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
529 |
"wildcard."
|
530 |
-
msgstr ""
|
531 |
-
"リストにあるIPアドレスをブラックリストに指定します。1行に1つのIPを書いてく"
|
532 |
-
"ださい。<code>*</code> がワイルドカードとして使えます。"
|
533 |
|
534 |
-
#: includes/admin/class-dlm-admin.php:
|
535 |
msgid "Blacklist user agents"
|
536 |
msgstr "ユーザーエージェントブラックリスト"
|
537 |
|
538 |
-
#: includes/admin/class-dlm-admin.php:
|
539 |
msgid "List browser user agents to blacklist, 1 per line."
|
540 |
msgstr "リストにあるユーザーエージェントをブラックリストに指定します。"
|
541 |
|
542 |
-
#: includes/admin/class-dlm-admin.php:
|
543 |
msgid "Logs"
|
544 |
msgstr "ログ"
|
545 |
|
546 |
-
#: includes/admin/class-dlm-admin.php:
|
547 |
msgid "Settings successfully saved"
|
548 |
msgstr "設定を保存しました。"
|
549 |
|
550 |
-
#: includes/admin/class-dlm-admin.php:
|
551 |
msgid "Save Changes"
|
552 |
msgstr "設定を保存"
|
553 |
|
554 |
-
#: includes/admin/class-dlm-admin.php:
|
555 |
msgid "Download Logs"
|
556 |
msgstr "ダウンロードログ"
|
557 |
|
558 |
-
#: includes/admin/class-dlm-admin.php:
|
559 |
msgid "Export CSV"
|
560 |
msgstr "CSVで出力"
|
561 |
|
562 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
|
|
|
|
|
|
563 |
msgid "Version ID"
|
564 |
msgstr "バージョンID"
|
565 |
|
566 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
|
|
|
|
|
|
567 |
msgid "User ID"
|
568 |
msgstr "ユーザーID"
|
569 |
|
570 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
msgid "User IP"
|
572 |
msgstr "IPアドレス"
|
573 |
|
574 |
-
#: includes/admin/class-dlm-admin.php:
|
575 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
576 |
msgid "User Agent"
|
577 |
msgstr "ユーザーエージェント"
|
578 |
|
579 |
-
#: includes/admin/class-dlm-admin.php:
|
580 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
581 |
msgid "Date"
|
582 |
msgstr "日時"
|
583 |
|
584 |
-
#: includes/admin/class-dlm-admin.php:
|
585 |
msgid "Status"
|
586 |
msgstr "ステータス"
|
587 |
|
588 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
589 |
msgid "Download Complete"
|
590 |
msgstr "ダウンロードしました。"
|
591 |
|
592 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
593 |
-
#, php-format
|
594 |
msgid "%s ago"
|
595 |
msgstr "%s 前"
|
596 |
|
597 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
598 |
-
#, php-format
|
599 |
msgid "Download #%d (no longer exists)"
|
600 |
msgstr "#%d をダウンロード (存在しません)"
|
601 |
|
602 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
603 |
-
#, php-format
|
604 |
msgid "v%s"
|
605 |
msgstr "v%s"
|
606 |
|
607 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
608 |
msgid "Non-member"
|
609 |
msgstr "非メンバー"
|
610 |
|
611 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
612 |
msgid "User"
|
613 |
msgstr "ユーザー"
|
614 |
|
615 |
-
#: includes/admin/class-dlm-logging-list-table.php:
|
616 |
msgid "IP Address"
|
617 |
msgstr "IPアドレス"
|
618 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
#: includes/admin/html-downloadable-file-version.php:3
|
620 |
msgid "Remove"
|
621 |
msgstr "削除"
|
@@ -625,111 +735,110 @@ msgid "Click to toggle"
|
|
625 |
msgstr "切り替えるにはクリック"
|
626 |
|
627 |
#: includes/admin/html-downloadable-file-version.php:5
|
628 |
-
#, php-format
|
629 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
630 |
msgstr "Version <span class=\"version\">%s</span> (%s)"
|
631 |
|
632 |
#: includes/admin/html-downloadable-file-version.php:5
|
633 |
-
#: includes/admin/html-downloadable-file-version.php:
|
634 |
msgid "n/a"
|
635 |
msgstr "n/a"
|
636 |
|
637 |
#: includes/admin/html-downloadable-file-version.php:5
|
638 |
-
#, php-format
|
639 |
msgid "Downloaded %s time"
|
640 |
msgid_plural "Downloaded %s times"
|
641 |
-
msgstr[0] "
|
642 |
-
msgstr[1] "%sダウンロード"
|
643 |
|
644 |
-
#: includes/admin/html-downloadable-file-version.php:
|
645 |
msgid "File URL(s)"
|
646 |
msgstr "ファイルのURL"
|
647 |
|
648 |
-
#: includes/admin/html-downloadable-file-version.php:
|
649 |
msgid ""
|
650 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
651 |
"(chosen at random)."
|
652 |
-
msgstr ""
|
653 |
-
"1行に1つのファイルパス、もしくはURLを入力してください。複数ファイルがある場"
|
654 |
-
"合はミラーとして使われます。(ランダムで選択)"
|
655 |
|
656 |
-
#: includes/admin/html-downloadable-file-version.php:
|
|
|
|
|
|
|
|
|
657 |
msgid "Choose a file"
|
658 |
msgstr "ファイルを選択"
|
659 |
|
660 |
-
#: includes/admin/html-downloadable-file-version.php:
|
661 |
msgid "Insert file URL"
|
662 |
msgstr "URLを挿入"
|
663 |
|
664 |
-
#: includes/admin/html-downloadable-file-version.php:
|
665 |
-
msgid "Upload file"
|
666 |
-
msgstr "ファイルをアップロード"
|
667 |
-
|
668 |
-
#: includes/admin/html-downloadable-file-version.php:22
|
669 |
msgid "Browse for file"
|
670 |
msgstr "ファイルを参照"
|
671 |
|
672 |
-
#: includes/admin/html-downloadable-file-version.php:
|
673 |
msgid "File Date"
|
674 |
msgstr "ファイル日時"
|
675 |
|
676 |
-
#: includes/admin/html-downloadable-file-version.php:
|
677 |
msgid "h"
|
678 |
msgstr "時"
|
679 |
|
680 |
-
#: includes/admin/html-downloadable-file-version.php:
|
681 |
msgid "m"
|
682 |
msgstr "分"
|
683 |
|
684 |
-
#: includes/class-dlm-download-handler.php:
|
|
|
|
|
|
|
|
|
685 |
msgid "Download does not exist."
|
686 |
msgstr "ダウンロードが存在しません。"
|
687 |
|
688 |
-
#: includes/class-dlm-download-handler.php:
|
689 |
-
#: includes/class-dlm-download-handler.php:
|
690 |
-
#: includes/class-dlm-download-handler.php:
|
691 |
-
#: includes/class-dlm-download-handler.php:
|
692 |
-
#: includes/class-dlm-download-handler.php:
|
693 |
msgid "Go to homepage →"
|
694 |
msgstr "&rarr のホームページへ行きます。"
|
695 |
|
696 |
-
#: includes/class-dlm-download-handler.php:
|
697 |
-
#: includes/class-dlm-download-handler.php:
|
698 |
-
#: includes/class-dlm-download-handler.php:
|
699 |
-
#: includes/class-dlm-download-handler.php:
|
700 |
-
#: includes/class-dlm-download-handler.php:
|
701 |
msgid "Download Error"
|
702 |
msgstr "ダウンロードエラー"
|
703 |
|
704 |
-
#: includes/class-dlm-download-handler.php:
|
705 |
-
#: includes/class-dlm-download-handler.php:
|
706 |
msgid "No file paths defined."
|
707 |
msgstr "ファイルパスが指定されていません。"
|
708 |
|
709 |
-
#: includes/class-dlm-download-handler.php:
|
710 |
msgid "You do not have permission to access this download."
|
711 |
msgstr "このダウンロードへのアクセスする権限を持っていません。"
|
712 |
|
713 |
-
#: includes/class-dlm-download-handler.php:
|
714 |
-
#: includes/class-dlm-download-handler.php:
|
715 |
-
#: includes/class-dlm-download-handler.php:
|
716 |
-
#: includes/class-dlm-download-handler.php:
|
717 |
msgid "Redirected to file"
|
718 |
msgstr "ファイルへリダイレクトします。"
|
719 |
|
720 |
-
#: includes/class-dlm-download-handler.php:
|
721 |
msgid "Redirected to remote file."
|
722 |
msgstr "外部ファイルへリダイレクトします。"
|
723 |
|
724 |
-
#: includes/class-dlm-download-handler.php:
|
725 |
msgid "File not found"
|
726 |
msgstr "ファイルが見つかりません"
|
727 |
|
728 |
-
#: includes/class-dlm-download-handler.php:
|
729 |
msgid "File not found."
|
730 |
msgstr "ファイルが見つかりません。"
|
731 |
|
732 |
-
#: includes/class-dlm-shortcodes.php:
|
733 |
msgid "Download not found"
|
734 |
msgstr "ダウンロードが見つかりません"
|
735 |
|
@@ -798,33 +907,51 @@ msgstr "注目のダウンロードのみに表示されます。"
|
|
798 |
msgid "Show only members only downloads"
|
799 |
msgstr "メンバーズオンリーのダウンロードのみに表示されます。"
|
800 |
|
801 |
-
#: templates/content-download-bouton-perso.php:11
|
802 |
-
#: templates/content-download-box.php:20
|
803 |
-
#: templates/content-download-filename.php:8 templates/content-download.php:8
|
804 |
-
#, php-format
|
805 |
-
msgid "Version %s"
|
806 |
-
msgstr "バージョン %s"
|
807 |
-
|
808 |
#: templates/content-download-box.php:12
|
809 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
810 |
-
#, php-format
|
811 |
msgid "1 download"
|
812 |
msgid_plural "%d downloads"
|
813 |
-
msgstr[0] "
|
814 |
-
|
|
|
|
|
|
|
|
|
|
|
815 |
|
816 |
#: templates/content-download-box.php:21
|
817 |
msgid "Download File"
|
818 |
msgstr "ファイルをダウンロード"
|
819 |
|
820 |
#: templates/content-download-button.php:9
|
821 |
-
#, php-format
|
822 |
msgid "Download “%s”"
|
823 |
msgstr "“%s” をダウンロード"
|
824 |
|
825 |
#: templates/content-download-button.php:10
|
826 |
-
|
827 |
msgid "Downloaded 1 time"
|
828 |
msgid_plural "Downloaded %d times"
|
829 |
-
msgstr[0] "
|
830 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:21+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Japanese (http://www.transifex.com/projects/p/download-monitor/language/ja/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
|
|
|
|
15 |
"Language: ja\n"
|
16 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
|
|
|
17 |
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
19 |
msgid "Settings"
|
20 |
msgstr "設定"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
23 |
msgid "Add-ons"
|
24 |
msgstr "アドオン"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
27 |
msgid "Docs"
|
28 |
msgstr "ドキュメント"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
32 |
msgid "Categories"
|
33 |
msgstr "カテゴリ"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
36 |
msgid "Download Category"
|
37 |
msgstr "ダウンロードカテゴリ"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "ダウンロードカテゴリを検索"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "全てのダウンロードカテゴリ"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "親のダウンロードカテゴリ"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "親のダウンロードカテゴリ:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "ダウンロードカテゴリを編集"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "ダウンロードカテゴリを更新"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "新しいダウンロードカテゴリを追加"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "新しいダウンロードカテゴリの名前"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
73 |
msgid "Tags"
|
74 |
msgstr "タグ"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
77 |
msgid "Download Tag"
|
78 |
msgstr "ダウンロードタグ"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "ダウンロードタグを検索"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "全てのダウンロードタグ"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "親のダウンロードタグ"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "親のダウンロードタグ:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "ダウンロードタグを編集"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "ダウンロードタグを更新"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "新しいダウンロードタグを追加"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "新しいダウンロードタグの名前"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr "ダウンロード"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
121 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
122 |
msgid "Download"
|
123 |
msgstr "ダウンロード"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
126 |
msgid "Add New"
|
127 |
msgstr "新規作成"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
130 |
msgid "Add Download"
|
131 |
msgstr "ダウンロードを追加"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
134 |
msgid "Edit"
|
135 |
msgstr "編集"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
138 |
msgid "Edit Download"
|
139 |
msgstr "ダウンロードを編集"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
142 |
msgid "New Download"
|
143 |
msgstr "新しいダウンロード"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
146 |
msgid "View Download"
|
147 |
msgstr "ダウンロードを表示"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "ダウンロードを検索"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "ダウンロードはありません。"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "ゴミ箱にダウンロードはありません。"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
162 |
msgid "Parent Download"
|
163 |
msgstr "親のダウンロード"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "あなたのサイトのためのダウンロードの作成及び管理ができます。"
|
168 |
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
msgid "Select a category"
|
176 |
msgstr "カテゴリを選択"
|
193 |
msgstr "カスタムフィールドを削除しました。"
|
194 |
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "リビジョン %s へダウンロードを復元しました。"
|
198 |
|
209 |
msgstr "ダウンロードを投稿しました。"
|
210 |
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "ダウンロードスケジュール: <strong>%1$s</strong>."
|
214 |
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "ダウンロード案を更新しました。"
|
222 |
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
224 |
msgid "Image"
|
225 |
msgstr "画像"
|
226 |
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
msgid "Title"
|
230 |
msgstr "タイトル"
|
231 |
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
msgid "ID"
|
235 |
msgstr "ID"
|
236 |
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
238 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
239 |
msgid "File"
|
240 |
msgstr "ファイル"
|
241 |
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
245 |
msgid "Version"
|
246 |
msgstr "バージョン"
|
247 |
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
+
msgstr "ダウンロードカウント"
|
254 |
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
256 |
msgid "Featured"
|
257 |
msgstr "注目"
|
258 |
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
msgid "Members only"
|
262 |
msgstr "メンバーズオンリー"
|
263 |
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "投稿日時"
|
271 |
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "トップダウンロード"
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "まだ統計がありません!"
|
285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
#: includes/admin/class-dlm-admin-insert.php:40
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
msgid "Insert Download"
|
290 |
msgstr "ダウンロードを挿入"
|
291 |
|
292 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "ショートコードを挿入"
|
296 |
|
297 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "ダウンロードを即時挿入"
|
300 |
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "エラー:ファイルが作成されませんでした。"
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "ダウンロードが作成されました。"
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "エラー:ダウンロードは作成されていません。"
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
314 |
msgid "Choose a download"
|
315 |
msgstr "ダウンロードを選択"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
318 |
msgid "Template"
|
319 |
msgstr "テンプレート"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
322 |
msgid "Template Name"
|
323 |
msgstr "テンプレート名"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
|
|
326 |
msgid ""
|
327 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "空白にするとデフォルトのテンプレート <code>content-download.php</code> が使用されます。例えば、<code>image</code>と入力すると、<code>content-download-image.php</code>のテンプレートが使用されます。"
|
|
|
|
|
|
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
333 |
msgid "Drop file here"
|
334 |
msgstr "ファイルをここにドロップ"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
338 |
msgid "or"
|
339 |
msgstr "もしくは"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
342 |
msgid "Select File"
|
343 |
msgstr "ファイルを選択"
|
344 |
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "手動でURLを入力"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
350 |
msgid "Download URL"
|
351 |
msgstr "ダウンロードURL"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
354 |
msgid "Required URL"
|
355 |
msgstr "URLが必要です。"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
358 |
msgid "Download Title"
|
359 |
msgstr "タイトル"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
362 |
msgid "Required title"
|
363 |
msgstr "タイトルが必要です。"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
366 |
msgid "Optional version number"
|
367 |
msgstr "任意のバージョン番号"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
370 |
msgid "Save Download"
|
371 |
msgstr "ダウンロードを保存しました。"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "許可されたファイル"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
378 |
msgid "Please wait..."
|
379 |
msgstr "お待ちください..."
|
380 |
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "ファイルを参照"
|
385 |
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
387 |
msgid "No files found"
|
388 |
msgstr "ファイルが見つかりません。"
|
389 |
|
392 |
msgstr "ダウンロードオプション"
|
393 |
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr ""
|
397 |
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
msgid "Short Description"
|
405 |
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
407 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
+
msgstr "このダウンロードを注目のダウンロードとしてマークします。ショートコードとウィジェットで使用されます。"
|
|
|
|
|
409 |
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
msgid ""
|
412 |
"Only logged in users will be able to access the file via a download link if "
|
413 |
"this is enabled."
|
414 |
+
msgstr "ユーザーがログインし、これが有効になっている場合のみ、ダウンロードリンクを介してファイルにアクセスすることができるようになります。"
|
415 |
+
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
msgstr ""
|
|
|
|
|
425 |
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr ""
|
429 |
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
431 |
msgid "Close all"
|
432 |
msgstr "すべて閉じる"
|
433 |
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
435 |
msgid "Expand all"
|
436 |
msgstr "すべて展開"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "本当にこのファイルを削除しますか?"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
443 |
msgid "General"
|
444 |
msgstr "一般"
|
445 |
|
446 |
+
#: includes/admin/class-dlm-admin.php:100
|
447 |
msgid "Default Template"
|
448 |
msgstr "デフォルトテンプレート"
|
449 |
|
450 |
+
#: includes/admin/class-dlm-admin.php:101
|
451 |
msgid ""
|
452 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "デフォルトの<code>[download]</code>ショートコードで使われるテンプレートを選択してください。(この設定は <code>format</code> 引数で上書きできます。)"
|
455 |
+
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
msgstr ""
|
|
|
|
|
459 |
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "エンドポイント"
|
499 |
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
501 |
msgid "download"
|
502 |
msgstr "download"
|
503 |
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "ダウンロードエンドポイント"
|
507 |
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
|
|
509 |
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
+
msgstr "どのエンドポイントがダウンロードリンクに使われるかを定義します。デフォルトでは <code>%s</code> が使われます。"
|
|
|
|
|
513 |
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "エンドポイント値"
|
517 |
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
|
|
519 |
msgid ""
|
520 |
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
+
msgstr "どの任意の値がダウンロード可能なファイルを識別するためにエンドポイントの最後に使われるかを定義します。例えば、IDは <code>%s</code> のようなリンクを与えます。"
|
|
|
|
|
|
|
524 |
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
527 |
msgid "Download ID"
|
528 |
msgstr "ダウンロードID"
|
529 |
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
531 |
msgid "Download slug"
|
532 |
msgstr "ダウンロードスラグ"
|
533 |
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "有効"
|
543 |
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
545 |
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
548 |
+
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "もし有効ならば、<code>X-Accel-Redirect</code> / <code>X-Sendfile</code> をPHPの代わりにダウンロードサービスを使えます。(サーバー側での <code>mod_xsendfile</code> の設定が必要です。)"
|
550 |
+
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
msgstr ""
|
|
|
|
|
|
|
560 |
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "ロギング"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
566 |
msgid "Download Log"
|
567 |
msgstr "ダウンロードログ"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "ダウンロードを試みたIPアドレスなどを記録します。"
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "IPブラックリスト"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
578 |
msgid ""
|
579 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
"wildcard."
|
581 |
+
msgstr "リストにあるIPアドレスをブラックリストに指定します。1行に1つのIPを書いてください。<code>*</code> がワイルドカードとして使えます。"
|
|
|
|
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "ユーザーエージェントブラックリスト"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "リストにあるユーザーエージェントをブラックリストに指定します。"
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
592 |
msgid "Logs"
|
593 |
msgstr "ログ"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "設定を保存しました。"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
600 |
msgid "Save Changes"
|
601 |
msgstr "設定を保存"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
604 |
msgid "Download Logs"
|
605 |
msgstr "ダウンロードログ"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
608 |
msgid "Export CSV"
|
609 |
msgstr "CSVで出力"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
msgid "Version ID"
|
617 |
msgstr "バージョンID"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
+
msgid "Filename"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
msgid "User ID"
|
625 |
msgstr "ユーザーID"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
+
msgid "User Login"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
+
msgid "User Email"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
msgid "User IP"
|
637 |
msgstr "IPアドレス"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
640 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
641 |
msgid "User Agent"
|
642 |
msgstr "ユーザーエージェント"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
645 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
646 |
msgid "Date"
|
647 |
msgstr "日時"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
650 |
msgid "Status"
|
651 |
msgstr "ステータス"
|
652 |
|
653 |
+
#: includes/admin/class-dlm-logging-list-table.php:50
|
654 |
msgid "Download Complete"
|
655 |
msgstr "ダウンロードしました。"
|
656 |
|
657 |
+
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "%s 前"
|
660 |
|
661 |
+
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "#%d をダウンロード (存在しません)"
|
664 |
|
665 |
+
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
669 |
+
#: includes/admin/class-dlm-logging-list-table.php:92
|
670 |
msgid "Non-member"
|
671 |
msgstr "非メンバー"
|
672 |
|
673 |
+
#: includes/admin/class-dlm-logging-list-table.php:125
|
674 |
msgid "User"
|
675 |
msgstr "ユーザー"
|
676 |
|
677 |
+
#: includes/admin/class-dlm-logging-list-table.php:126
|
678 |
msgid "IP Address"
|
679 |
msgstr "IPアドレス"
|
680 |
|
681 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
682 |
+
msgid "Any status"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
686 |
+
msgid "Failed"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
690 |
+
msgid "Redirected"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
694 |
+
msgid "Completed"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
+
msgid "Show all dates"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
702 |
+
msgid "%1$s %2$d"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
706 |
+
msgid "25 per page"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
710 |
+
msgid "50 per page"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
714 |
+
msgid "100 per page"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
718 |
+
msgid "200 per page"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
+
msgid "Show All"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
726 |
+
msgid "Filter"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
730 |
msgid "Remove"
|
731 |
msgstr "削除"
|
735 |
msgstr "切り替えるにはクリック"
|
736 |
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "Version <span class=\"version\">%s</span> (%s)"
|
740 |
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
msgid "n/a"
|
744 |
msgstr "n/a"
|
745 |
|
746 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
+
msgstr[0] ""
|
|
|
750 |
|
751 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
752 |
msgid "File URL(s)"
|
753 |
msgstr "ファイルのURL"
|
754 |
|
755 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
756 |
msgid ""
|
757 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
758 |
"(chosen at random)."
|
759 |
+
msgstr "1行に1つのファイルパス、もしくはURLを入力してください。複数ファイルがある場合はミラーとして使われます。(ランダムで選択)"
|
|
|
|
|
760 |
|
761 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
762 |
+
msgid "Upload file"
|
763 |
+
msgstr "ファイルをアップロード"
|
764 |
+
|
765 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
766 |
msgid "Choose a file"
|
767 |
msgstr "ファイルを選択"
|
768 |
|
769 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
770 |
msgid "Insert file URL"
|
771 |
msgstr "URLを挿入"
|
772 |
|
773 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
|
|
|
|
|
|
774 |
msgid "Browse for file"
|
775 |
msgstr "ファイルを参照"
|
776 |
|
777 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
778 |
msgid "File Date"
|
779 |
msgstr "ファイル日時"
|
780 |
|
781 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
782 |
msgid "h"
|
783 |
msgstr "時"
|
784 |
|
785 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
786 |
msgid "m"
|
787 |
msgstr "分"
|
788 |
|
789 |
+
#: includes/class-dlm-download-handler.php:140
|
790 |
+
msgid "Password Required"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/class-dlm-download-handler.php:150
|
794 |
msgid "Download does not exist."
|
795 |
msgstr "ダウンロードが存在しません。"
|
796 |
|
797 |
+
#: includes/class-dlm-download-handler.php:150
|
798 |
+
#: includes/class-dlm-download-handler.php:180
|
799 |
+
#: includes/class-dlm-download-handler.php:185
|
800 |
+
#: includes/class-dlm-download-handler.php:194
|
801 |
+
#: includes/class-dlm-download-handler.php:288
|
802 |
msgid "Go to homepage →"
|
803 |
msgstr "&rarr のホームページへ行きます。"
|
804 |
|
805 |
+
#: includes/class-dlm-download-handler.php:150
|
806 |
+
#: includes/class-dlm-download-handler.php:180
|
807 |
+
#: includes/class-dlm-download-handler.php:185
|
808 |
+
#: includes/class-dlm-download-handler.php:194
|
809 |
+
#: includes/class-dlm-download-handler.php:288
|
810 |
msgid "Download Error"
|
811 |
msgstr "ダウンロードエラー"
|
812 |
|
813 |
+
#: includes/class-dlm-download-handler.php:180
|
814 |
+
#: includes/class-dlm-download-handler.php:185
|
815 |
msgid "No file paths defined."
|
816 |
msgstr "ファイルパスが指定されていません。"
|
817 |
|
818 |
+
#: includes/class-dlm-download-handler.php:194
|
819 |
msgid "You do not have permission to access this download."
|
820 |
msgstr "このダウンロードへのアクセスする権限を持っていません。"
|
821 |
|
822 |
+
#: includes/class-dlm-download-handler.php:212
|
823 |
+
#: includes/class-dlm-download-handler.php:228
|
824 |
+
#: includes/class-dlm-download-handler.php:235
|
825 |
+
#: includes/class-dlm-download-handler.php:242
|
826 |
msgid "Redirected to file"
|
827 |
msgstr "ファイルへリダイレクトします。"
|
828 |
|
829 |
+
#: includes/class-dlm-download-handler.php:281
|
830 |
msgid "Redirected to remote file."
|
831 |
msgstr "外部ファイルへリダイレクトします。"
|
832 |
|
833 |
+
#: includes/class-dlm-download-handler.php:286
|
834 |
msgid "File not found"
|
835 |
msgstr "ファイルが見つかりません"
|
836 |
|
837 |
+
#: includes/class-dlm-download-handler.php:288
|
838 |
msgid "File not found."
|
839 |
msgstr "ファイルが見つかりません。"
|
840 |
|
841 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
842 |
msgid "Download not found"
|
843 |
msgstr "ダウンロードが見つかりません"
|
844 |
|
907 |
msgid "Show only members only downloads"
|
908 |
msgstr "メンバーズオンリーのダウンロードのみに表示されます。"
|
909 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
910 |
#: templates/content-download-box.php:12
|
911 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
|
|
912 |
msgid "1 download"
|
913 |
msgid_plural "%d downloads"
|
914 |
+
msgstr[0] ""
|
915 |
+
|
916 |
+
#: templates/content-download-box.php:20
|
917 |
+
#: templates/content-download-filename.php:8
|
918 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
919 |
+
msgid "Version %s"
|
920 |
+
msgstr "バージョン %s"
|
921 |
|
922 |
#: templates/content-download-box.php:21
|
923 |
msgid "Download File"
|
924 |
msgstr "ファイルをダウンロード"
|
925 |
|
926 |
#: templates/content-download-button.php:9
|
|
|
927 |
msgid "Download “%s”"
|
928 |
msgstr "“%s” をダウンロード"
|
929 |
|
930 |
#: templates/content-download-button.php:10
|
931 |
+
#: templates/content-download-version-list.php:17
|
932 |
msgid "Downloaded 1 time"
|
933 |
msgid_plural "Downloaded %d times"
|
934 |
+
msgstr[0] ""
|
935 |
+
|
936 |
+
#. Plugin Name of the plugin/theme
|
937 |
+
msgid "Download Monitor"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#. Plugin URI of the plugin/theme
|
941 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#. Description of the plugin/theme
|
945 |
+
msgid ""
|
946 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
947 |
+
"outputting download links and file information on your WordPress powered "
|
948 |
+
"site."
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#. Author of the plugin/theme
|
952 |
+
msgid "Mike Jolley"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#. Author URI of the plugin/theme
|
956 |
+
msgid "http://mikejolley.com"
|
957 |
+
msgstr ""
|
languages/download-monitor-pl_PL.mo
ADDED
Binary file
|
languages/download-monitor-pl_PL.po
ADDED
@@ -0,0 +1,963 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
+
msgid ""
|
5 |
+
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:22+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/download-monitor/language/pl_PL/)\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: pl_PL\n"
|
16 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
+
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr "Ustawienia"
|
21 |
+
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
23 |
+
msgid "Add-ons"
|
24 |
+
msgstr "Dodatki"
|
25 |
+
|
26 |
+
#: download-monitor.php:94
|
27 |
+
msgid "Docs"
|
28 |
+
msgstr "Dokumentacja"
|
29 |
+
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
32 |
+
msgid "Categories"
|
33 |
+
msgstr "Kategorie"
|
34 |
+
|
35 |
+
#: download-monitor.php:244
|
36 |
+
msgid "Download Category"
|
37 |
+
msgstr "Kategoria plików"
|
38 |
+
|
39 |
+
#: download-monitor.php:245
|
40 |
+
msgid "Search Download Categories"
|
41 |
+
msgstr "Przeszukaj kategorie plików"
|
42 |
+
|
43 |
+
#: download-monitor.php:246
|
44 |
+
msgid "All Download Categories"
|
45 |
+
msgstr "Wszystkie kategorie plików"
|
46 |
+
|
47 |
+
#: download-monitor.php:247
|
48 |
+
msgid "Parent Download Category"
|
49 |
+
msgstr "Nadrzędna kategoria plików"
|
50 |
+
|
51 |
+
#: download-monitor.php:248
|
52 |
+
msgid "Parent Download Category:"
|
53 |
+
msgstr "Nadrzędna kategoria plików:"
|
54 |
+
|
55 |
+
#: download-monitor.php:249
|
56 |
+
msgid "Edit Download Category"
|
57 |
+
msgstr "Edytuj kategorię plików"
|
58 |
+
|
59 |
+
#: download-monitor.php:250
|
60 |
+
msgid "Update Download Category"
|
61 |
+
msgstr "Aktualizuj kategorię plików"
|
62 |
+
|
63 |
+
#: download-monitor.php:251
|
64 |
+
msgid "Add New Download Category"
|
65 |
+
msgstr "Dodaj nową kategorię"
|
66 |
+
|
67 |
+
#: download-monitor.php:252
|
68 |
+
msgid "New Download Category Name"
|
69 |
+
msgstr "Nazwa nowej kategorii"
|
70 |
+
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
73 |
+
msgid "Tags"
|
74 |
+
msgstr "Etykiety"
|
75 |
+
|
76 |
+
#: download-monitor.php:274
|
77 |
+
msgid "Download Tag"
|
78 |
+
msgstr "Etykieta pliku"
|
79 |
+
|
80 |
+
#: download-monitor.php:275
|
81 |
+
msgid "Search Download Tags"
|
82 |
+
msgstr "Przeszukaj etykiety"
|
83 |
+
|
84 |
+
#: download-monitor.php:276
|
85 |
+
msgid "All Download Tags"
|
86 |
+
msgstr "Wszystkie etykiety"
|
87 |
+
|
88 |
+
#: download-monitor.php:277
|
89 |
+
msgid "Parent Download Tag"
|
90 |
+
msgstr "Etykieta nadrzędna"
|
91 |
+
|
92 |
+
#: download-monitor.php:278
|
93 |
+
msgid "Parent Download Tag:"
|
94 |
+
msgstr "Etykieta nadrzędna:"
|
95 |
+
|
96 |
+
#: download-monitor.php:279
|
97 |
+
msgid "Edit Download Tag"
|
98 |
+
msgstr "Edytuj etykietę"
|
99 |
+
|
100 |
+
#: download-monitor.php:280
|
101 |
+
msgid "Update Download Tag"
|
102 |
+
msgstr "Aktualizuj etykietę"
|
103 |
+
|
104 |
+
#: download-monitor.php:281
|
105 |
+
msgid "Add New Download Tag"
|
106 |
+
msgstr "Dodaj nową etykietę"
|
107 |
+
|
108 |
+
#: download-monitor.php:282
|
109 |
+
msgid "New Download Tag Name"
|
110 |
+
msgstr "Nazwa nowej etykiety"
|
111 |
+
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr "Wszystkie pliki do pobrania"
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
+
msgid "Downloads"
|
118 |
+
msgstr "Pliki"
|
119 |
+
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
121 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
122 |
+
msgid "Download"
|
123 |
+
msgstr "Plik"
|
124 |
+
|
125 |
+
#: download-monitor.php:306
|
126 |
+
msgid "Add New"
|
127 |
+
msgstr "Dodaj nowy"
|
128 |
+
|
129 |
+
#: download-monitor.php:307
|
130 |
+
msgid "Add Download"
|
131 |
+
msgstr "Dodaj plik"
|
132 |
+
|
133 |
+
#: download-monitor.php:308
|
134 |
+
msgid "Edit"
|
135 |
+
msgstr "Edytuj"
|
136 |
+
|
137 |
+
#: download-monitor.php:309
|
138 |
+
msgid "Edit Download"
|
139 |
+
msgstr "Edytuj plik"
|
140 |
+
|
141 |
+
#: download-monitor.php:310
|
142 |
+
msgid "New Download"
|
143 |
+
msgstr "Nowe plik"
|
144 |
+
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
146 |
+
msgid "View Download"
|
147 |
+
msgstr "Obejrzyj plik"
|
148 |
+
|
149 |
+
#: download-monitor.php:313
|
150 |
+
msgid "Search Downloads"
|
151 |
+
msgstr "Szukaj plików"
|
152 |
+
|
153 |
+
#: download-monitor.php:314
|
154 |
+
msgid "No Downloads found"
|
155 |
+
msgstr "Nie znaleziono plików"
|
156 |
+
|
157 |
+
#: download-monitor.php:315
|
158 |
+
msgid "No Downloads found in trash"
|
159 |
+
msgstr "W koszu też nie znalazłem plików"
|
160 |
+
|
161 |
+
#: download-monitor.php:316
|
162 |
+
msgid "Parent Download"
|
163 |
+
msgstr "Pobranie nadrzędne"
|
164 |
+
|
165 |
+
#: download-monitor.php:318
|
166 |
+
msgid "This is where you can create and manage downloads for your site."
|
167 |
+
msgstr "Tu możesz tworzyć i zarządzać plikami do pliku dla swojej strony."
|
168 |
+
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
+
msgstr "Dodatki do Download Monitora"
|
173 |
+
|
174 |
+
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
+
msgid "Select a category"
|
176 |
+
msgstr "Wybierz kategorię"
|
177 |
+
|
178 |
+
#: includes/admin/class-dlm-admin-cpt.php:124
|
179 |
+
msgid "Download title"
|
180 |
+
msgstr "Tytuł pliku"
|
181 |
+
|
182 |
+
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
+
#: includes/admin/class-dlm-admin-cpt.php:143
|
184 |
+
msgid "Download updated."
|
185 |
+
msgstr "Pobranie zaktualizowano."
|
186 |
+
|
187 |
+
#: includes/admin/class-dlm-admin-cpt.php:141
|
188 |
+
msgid "Custom field updated."
|
189 |
+
msgstr "Pole spersonalizowane zostało zaktualizowane."
|
190 |
+
|
191 |
+
#: includes/admin/class-dlm-admin-cpt.php:142
|
192 |
+
msgid "Custom field deleted."
|
193 |
+
msgstr "Pole spersonalizowane zostało skasowane."
|
194 |
+
|
195 |
+
#: includes/admin/class-dlm-admin-cpt.php:144
|
196 |
+
msgid "Download restored to revision from %s"
|
197 |
+
msgstr "Strona pobierania przywrócona do wesji z %s"
|
198 |
+
|
199 |
+
#: includes/admin/class-dlm-admin-cpt.php:145
|
200 |
+
msgid "Download published."
|
201 |
+
msgstr "Strona pobierania została opublikowana."
|
202 |
+
|
203 |
+
#: includes/admin/class-dlm-admin-cpt.php:146
|
204 |
+
msgid "Download saved."
|
205 |
+
msgstr "Strona pobierania zapisana."
|
206 |
+
|
207 |
+
#: includes/admin/class-dlm-admin-cpt.php:147
|
208 |
+
msgid "Download submitted."
|
209 |
+
msgstr "Strona pobierania wysłana."
|
210 |
+
|
211 |
+
#: includes/admin/class-dlm-admin-cpt.php:148
|
212 |
+
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
+
msgstr "Zaplanowano na: <strong>%1$s</strong>."
|
214 |
+
|
215 |
+
#: includes/admin/class-dlm-admin-cpt.php:149
|
216 |
+
msgid "M j, Y @ G:i"
|
217 |
+
msgstr "d–n–Y o H:i"
|
218 |
+
|
219 |
+
#: includes/admin/class-dlm-admin-cpt.php:150
|
220 |
+
msgid "Download draft updated."
|
221 |
+
msgstr "Szkic strony pobierania zaktualizowany."
|
222 |
+
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
224 |
+
msgid "Image"
|
225 |
+
msgstr "Obraz"
|
226 |
+
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
228 |
+
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
+
msgid "Title"
|
230 |
+
msgstr "Tytuł"
|
231 |
+
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
233 |
+
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
+
msgid "ID"
|
235 |
+
msgstr "ID"
|
236 |
+
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
238 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
239 |
+
msgid "File"
|
240 |
+
msgstr "Plik"
|
241 |
+
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
245 |
+
msgid "Version"
|
246 |
+
msgstr "Wersja"
|
247 |
+
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
+
msgstr "Licznik plików"
|
254 |
+
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
256 |
+
msgid "Featured"
|
257 |
+
msgstr "Wyróżnione"
|
258 |
+
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
260 |
+
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
+
msgid "Members only"
|
262 |
+
msgstr "Tylko dla zarejestrowanych"
|
263 |
+
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr "Tylko przekierowanie"
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
+
msgid "Date posted"
|
270 |
+
msgstr "Data publikacji"
|
271 |
+
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
+
msgid "Popular Downloads"
|
280 |
+
msgstr "Najpopularniejsze pliku"
|
281 |
+
|
282 |
+
#: includes/admin/class-dlm-admin-dashboard.php:53
|
283 |
+
msgid "There are no stats available yet!"
|
284 |
+
msgstr "Nie ma jeszcze żadnych statystyk."
|
285 |
+
|
286 |
+
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
+
msgid "Insert Download"
|
290 |
+
msgstr "Wstaw plik"
|
291 |
+
|
292 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
294 |
+
msgid "Insert Shortcode"
|
295 |
+
msgstr "Wstaw shortcode"
|
296 |
+
|
297 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
298 |
+
msgid "Quick-add download"
|
299 |
+
msgstr "Szybkie dodawanie plików"
|
300 |
+
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
302 |
+
msgid "Error: File was not created."
|
303 |
+
msgstr "Błąd: plik nie został utworzony."
|
304 |
+
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
306 |
+
msgid "Download successfully created."
|
307 |
+
msgstr "Pobranie udało się utworzyć."
|
308 |
+
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
310 |
+
msgid "Error: Download was not created."
|
311 |
+
msgstr "Błąd: nie udało się utworzyć pliku."
|
312 |
+
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
314 |
+
msgid "Choose a download"
|
315 |
+
msgstr "Wybierz plik"
|
316 |
+
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
318 |
+
msgid "Template"
|
319 |
+
msgstr "Szablon"
|
320 |
+
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
322 |
+
msgid "Template Name"
|
323 |
+
msgstr "Nazwa szablonu"
|
324 |
+
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
326 |
+
msgid ""
|
327 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "Jeśli pole pozostanie puste, wtyczka użyje domyślnego szablonu <code>content-download.php</code>. Jeśli wpiszesz na przykład <code>image</code>, wtyczka użyje zamiast tego szablonu <code>content-download-image.php</code>."
|
331 |
+
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
333 |
+
msgid "Drop file here"
|
334 |
+
msgstr "Upuść plik tutaj"
|
335 |
+
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
338 |
+
msgid "or"
|
339 |
+
msgstr "albo"
|
340 |
+
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
342 |
+
msgid "Select File"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
346 |
+
msgid "Enter URL manually"
|
347 |
+
msgstr "Wybierz URL ręcznie"
|
348 |
+
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
350 |
+
msgid "Download URL"
|
351 |
+
msgstr "URL pliku"
|
352 |
+
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
354 |
+
msgid "Required URL"
|
355 |
+
msgstr "URL jest wymagany"
|
356 |
+
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
358 |
+
msgid "Download Title"
|
359 |
+
msgstr "Tytuł pliku"
|
360 |
+
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
362 |
+
msgid "Required title"
|
363 |
+
msgstr "Tytuł jest wymagany"
|
364 |
+
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
366 |
+
msgid "Optional version number"
|
367 |
+
msgstr "Opcjonalny numer wersji"
|
368 |
+
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
370 |
+
msgid "Save Download"
|
371 |
+
msgstr "Zapisz plik"
|
372 |
+
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
374 |
+
msgid "Allowed Files"
|
375 |
+
msgstr "Dozwolone typy plików"
|
376 |
+
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
378 |
+
msgid "Please wait..."
|
379 |
+
msgstr "Proszę czekać..."
|
380 |
+
|
381 |
+
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
+
msgid "Browse for a file"
|
384 |
+
msgstr "Wyszukaj plik"
|
385 |
+
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
387 |
+
msgid "No files found"
|
388 |
+
msgstr "Nic nie znaleziono"
|
389 |
+
|
390 |
+
#: includes/admin/class-dlm-admin-writepanels.php:29
|
391 |
+
msgid "Download Options"
|
392 |
+
msgstr "Opcje pobierania"
|
393 |
+
|
394 |
+
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
+
msgid "Short Description"
|
400 |
+
msgstr "Krótki opis"
|
401 |
+
|
402 |
+
#: includes/admin/class-dlm-admin-writepanels.php:57
|
403 |
+
msgid "Featured download"
|
404 |
+
msgstr "Plik wyróżniony"
|
405 |
+
|
406 |
+
#: includes/admin/class-dlm-admin-writepanels.php:58
|
407 |
+
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
+
msgstr "Oznacz ten plik jako wyróżniony. Wykorzystują to kody shortcode i widgety."
|
409 |
+
|
410 |
+
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
+
msgid ""
|
412 |
+
"Only logged in users will be able to access the file via a download link if "
|
413 |
+
"this is enabled."
|
414 |
+
msgstr "Tylko zalogowani użytkownicy będą mogli pobrać ten plik."
|
415 |
+
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
+
msgstr "Przekieruj do pliku"
|
419 |
+
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr "Nie wymuszaj pobierania. Jeśli folder <code>dlm_upload</code> jest chroniony, być może będziesz misiał przenieść plik gdzie indziej."
|
425 |
+
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
431 |
+
msgid "Close all"
|
432 |
+
msgstr "Zamknij wszystko"
|
433 |
+
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
435 |
+
msgid "Expand all"
|
436 |
+
msgstr "Rozszerz wszystko"
|
437 |
+
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
439 |
+
msgid "Are you sure you want to delete this file?"
|
440 |
+
msgstr "Na serio chcesz skasować ten plik?"
|
441 |
+
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
443 |
+
msgid "General"
|
444 |
+
msgstr "Ogólne"
|
445 |
+
|
446 |
+
#: includes/admin/class-dlm-admin.php:100
|
447 |
+
msgid "Default Template"
|
448 |
+
msgstr "Szablon domyślny"
|
449 |
+
|
450 |
+
#: includes/admin/class-dlm-admin.php:101
|
451 |
+
msgid ""
|
452 |
+
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
+
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "Wybierz który szablon ma być użyty do wyświetlania kodów <code>[download]</code> (ustawienie można zmienić również poprzez użycie argumentu <code>format</code>)."
|
455 |
+
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
+
msgstr "Domyślne - Tytuł i licznik"
|
459 |
+
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
+
msgstr "Przycisk - CSS button pokazujący tytuł i licznik"
|
463 |
+
|
464 |
+
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr "Pudełko - ramka pokazująca miniaturkę, tytuł, licznik, nazwę pliku i jego rozmiar."
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
+
msgstr "Nazwa pliku - Nazwa i licznik plików"
|
471 |
+
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr "Tytuł - Pokazuje jedynie nazwę pliku do pliku"
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr "Lista wersji - Wylicza wszystkie wersje pliku do pliku w postaci nieuporządkowanej listy"
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr "Własny szablon"
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr "Własny szablon"
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr "Jeśli to pole pozostanie puste, wtyczka użyje domyślnego szablonu <code>content-download.php</code>. Jeśli wpiszesz na przykład <code>image</code>, użyje zamiast tego szablonu <code>content-download-image.php</code>. Możesz dodać więcej własnych szablonów w katalogu używanej przez Ciebie skórki WP."
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
+
msgid "Endpoint"
|
498 |
+
msgstr "Miejsce docelowe"
|
499 |
+
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
501 |
+
msgid "download"
|
502 |
+
msgstr "plik"
|
503 |
+
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
505 |
+
msgid "Download Endpoint"
|
506 |
+
msgstr "Miejsce docelowe plików"
|
507 |
+
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
509 |
+
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
+
msgstr "Zdefiniuj dokąd docelowo będą prowadzić linki do plików. Domyślnie jest to strona <code>%s</code>."
|
513 |
+
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
515 |
+
msgid "Endpoint Value"
|
516 |
+
msgstr "Wartość miejsca docelowego"
|
517 |
+
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
519 |
+
msgid ""
|
520 |
+
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
+
msgstr "Zdefiniuj jaka wartość ma zostać użyta na końcu drogi pliku by zidentyfikować pobieralny plik. Na przykład ID stworzy link wyglądający tak: <code>%s</code>"
|
524 |
+
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
527 |
+
msgid "Download ID"
|
528 |
+
msgstr "ID pliku"
|
529 |
+
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
531 |
+
msgid "Download slug"
|
532 |
+
msgstr "Krótki opis pliku"
|
533 |
+
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
535 |
+
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
+
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
+
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
+
msgid "Enable"
|
542 |
+
msgstr "Włącz"
|
543 |
+
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
545 |
+
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
548 |
+
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "Jeśli ta opcja jest wspierana, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> mogą napędzać pobieranie plików zamiast zwykłego PHP (server musi mieć zainstalowany <code>mod_xsendfile</code>)."
|
550 |
+
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
+
msgid "Logging"
|
563 |
+
msgstr "Rejestrowanie"
|
564 |
+
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
566 |
+
msgid "Download Log"
|
567 |
+
msgstr "Rejestr plików"
|
568 |
+
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
570 |
+
msgid "Log download attempts, IP addresses and more."
|
571 |
+
msgstr "Rejestruj próby pobrania plików, adresy IP i więcej."
|
572 |
+
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
574 |
+
msgid "Blacklist IPs"
|
575 |
+
msgstr "Czarna lista IP"
|
576 |
+
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
578 |
+
msgid ""
|
579 |
+
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
+
"wildcard."
|
581 |
+
msgstr "Dodaj adresy IP do czarnej listy, po jednym w linii. Kod <code>*</code> zastępuje inne znaki."
|
582 |
+
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
584 |
+
msgid "Blacklist user agents"
|
585 |
+
msgstr "Roboty na czarnej liście"
|
586 |
+
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
588 |
+
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
+
msgstr "Dodaj roboty przeglądarkowe do czarnej listy, po jednym na linię."
|
590 |
+
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
592 |
+
msgid "Logs"
|
593 |
+
msgstr "Rejestry"
|
594 |
+
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
596 |
+
msgid "Settings successfully saved"
|
597 |
+
msgstr "Ustawienia zostały zapisane"
|
598 |
+
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
600 |
+
msgid "Save Changes"
|
601 |
+
msgstr "Zapisz zmiany"
|
602 |
+
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
604 |
+
msgid "Download Logs"
|
605 |
+
msgstr "Rejestry pobierań"
|
606 |
+
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
608 |
+
msgid "Export CSV"
|
609 |
+
msgstr "Eksportuj CSV"
|
610 |
+
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr "Skasuj rejestry"
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
+
msgid "Version ID"
|
617 |
+
msgstr "ID wersji"
|
618 |
+
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
+
msgid "Filename"
|
621 |
+
msgstr "Nazwa pliku"
|
622 |
+
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
+
msgid "User ID"
|
625 |
+
msgstr "ID użytkownika"
|
626 |
+
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
+
msgid "User Login"
|
629 |
+
msgstr "Login użytkownika"
|
630 |
+
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
+
msgid "User Email"
|
633 |
+
msgstr "E-mail użytkownika"
|
634 |
+
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
+
msgid "User IP"
|
637 |
+
msgstr "IP użytkownika"
|
638 |
+
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
640 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
641 |
+
msgid "User Agent"
|
642 |
+
msgstr "Agent użytkownika"
|
643 |
+
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
645 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
646 |
+
msgid "Date"
|
647 |
+
msgstr "Data"
|
648 |
+
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
650 |
+
msgid "Status"
|
651 |
+
msgstr "Status"
|
652 |
+
|
653 |
+
#: includes/admin/class-dlm-logging-list-table.php:50
|
654 |
+
msgid "Download Complete"
|
655 |
+
msgstr "Pobieranie zakończone"
|
656 |
+
|
657 |
+
#: includes/admin/class-dlm-logging-list-table.php:57
|
658 |
+
msgid "%s ago"
|
659 |
+
msgstr "%s temu"
|
660 |
+
|
661 |
+
#: includes/admin/class-dlm-logging-list-table.php:64
|
662 |
+
msgid "Download #%d (no longer exists)"
|
663 |
+
msgstr "Plik #%d (już nie istnieje)"
|
664 |
+
|
665 |
+
#: includes/admin/class-dlm-logging-list-table.php:72
|
666 |
+
msgid "v%s"
|
667 |
+
msgstr "v%s"
|
668 |
+
|
669 |
+
#: includes/admin/class-dlm-logging-list-table.php:92
|
670 |
+
msgid "Non-member"
|
671 |
+
msgstr "Zewnętrzny"
|
672 |
+
|
673 |
+
#: includes/admin/class-dlm-logging-list-table.php:125
|
674 |
+
msgid "User"
|
675 |
+
msgstr "Użytkownik"
|
676 |
+
|
677 |
+
#: includes/admin/class-dlm-logging-list-table.php:126
|
678 |
+
msgid "IP Address"
|
679 |
+
msgstr "Adres IP"
|
680 |
+
|
681 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
682 |
+
msgid "Any status"
|
683 |
+
msgstr "Dowolny status"
|
684 |
+
|
685 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
686 |
+
msgid "Failed"
|
687 |
+
msgstr "Nieudany"
|
688 |
+
|
689 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
690 |
+
msgid "Redirected"
|
691 |
+
msgstr "Przekierowany"
|
692 |
+
|
693 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
694 |
+
msgid "Completed"
|
695 |
+
msgstr "Zakończony"
|
696 |
+
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
+
msgid "Show all dates"
|
699 |
+
msgstr "Pokaż wszystkie"
|
700 |
+
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
702 |
+
msgid "%1$s %2$d"
|
703 |
+
msgstr "%1$s %2$d"
|
704 |
+
|
705 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
706 |
+
msgid "25 per page"
|
707 |
+
msgstr "25 na stronę"
|
708 |
+
|
709 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
710 |
+
msgid "50 per page"
|
711 |
+
msgstr "50 na stronę"
|
712 |
+
|
713 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
714 |
+
msgid "100 per page"
|
715 |
+
msgstr "100 na stronę"
|
716 |
+
|
717 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
718 |
+
msgid "200 per page"
|
719 |
+
msgstr "200 na stronę"
|
720 |
+
|
721 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
+
msgid "Show All"
|
723 |
+
msgstr "Pokaż wszystkie"
|
724 |
+
|
725 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
726 |
+
msgid "Filter"
|
727 |
+
msgstr "Filtr"
|
728 |
+
|
729 |
+
#: includes/admin/html-downloadable-file-version.php:3
|
730 |
+
msgid "Remove"
|
731 |
+
msgstr "Usuń"
|
732 |
+
|
733 |
+
#: includes/admin/html-downloadable-file-version.php:4
|
734 |
+
msgid "Click to toggle"
|
735 |
+
msgstr "Kliknij by zmienić"
|
736 |
+
|
737 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
738 |
+
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
+
msgstr "Wersja <span class=\"version\">%s</span> (%s)"
|
740 |
+
|
741 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
+
msgid "n/a"
|
744 |
+
msgstr "Nie dotyczy"
|
745 |
+
|
746 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
747 |
+
msgid "Downloaded %s time"
|
748 |
+
msgid_plural "Downloaded %s times"
|
749 |
+
msgstr[0] ""
|
750 |
+
msgstr[1] ""
|
751 |
+
msgstr[2] ""
|
752 |
+
|
753 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
754 |
+
msgid "File URL(s)"
|
755 |
+
msgstr "URL pliku lub plików"
|
756 |
+
|
757 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
758 |
+
msgid ""
|
759 |
+
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
760 |
+
"(chosen at random)."
|
761 |
+
msgstr "Podaj jedną ścieżkę/URL na linię. Więcej linii będzie traktowane jako tzw. lustra, alternatywne źródła (będą wybierane losowo)."
|
762 |
+
|
763 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
764 |
+
msgid "Upload file"
|
765 |
+
msgstr "Wgraj plik"
|
766 |
+
|
767 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
768 |
+
msgid "Choose a file"
|
769 |
+
msgstr "Wybierz plik"
|
770 |
+
|
771 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
772 |
+
msgid "Insert file URL"
|
773 |
+
msgstr "Wklej tutaj URL do pliku"
|
774 |
+
|
775 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
776 |
+
msgid "Browse for file"
|
777 |
+
msgstr "Przeglądaj w poszukiwaniu pliku"
|
778 |
+
|
779 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
780 |
+
msgid "File Date"
|
781 |
+
msgstr "Data pliku"
|
782 |
+
|
783 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
784 |
+
msgid "h"
|
785 |
+
msgstr "h"
|
786 |
+
|
787 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
788 |
+
msgid "m"
|
789 |
+
msgstr "m"
|
790 |
+
|
791 |
+
#: includes/class-dlm-download-handler.php:140
|
792 |
+
msgid "Password Required"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: includes/class-dlm-download-handler.php:150
|
796 |
+
msgid "Download does not exist."
|
797 |
+
msgstr "Plik nie istnieje."
|
798 |
+
|
799 |
+
#: includes/class-dlm-download-handler.php:150
|
800 |
+
#: includes/class-dlm-download-handler.php:180
|
801 |
+
#: includes/class-dlm-download-handler.php:185
|
802 |
+
#: includes/class-dlm-download-handler.php:194
|
803 |
+
#: includes/class-dlm-download-handler.php:288
|
804 |
+
msgid "Go to homepage →"
|
805 |
+
msgstr "Przejdź na stronę główną →"
|
806 |
+
|
807 |
+
#: includes/class-dlm-download-handler.php:150
|
808 |
+
#: includes/class-dlm-download-handler.php:180
|
809 |
+
#: includes/class-dlm-download-handler.php:185
|
810 |
+
#: includes/class-dlm-download-handler.php:194
|
811 |
+
#: includes/class-dlm-download-handler.php:288
|
812 |
+
msgid "Download Error"
|
813 |
+
msgstr "Błąd pobierania"
|
814 |
+
|
815 |
+
#: includes/class-dlm-download-handler.php:180
|
816 |
+
#: includes/class-dlm-download-handler.php:185
|
817 |
+
msgid "No file paths defined."
|
818 |
+
msgstr "Nie ustawiono ścieżek."
|
819 |
+
|
820 |
+
#: includes/class-dlm-download-handler.php:194
|
821 |
+
msgid "You do not have permission to access this download."
|
822 |
+
msgstr "Nie masz uprawnień dostępu do tego pliku."
|
823 |
+
|
824 |
+
#: includes/class-dlm-download-handler.php:212
|
825 |
+
#: includes/class-dlm-download-handler.php:228
|
826 |
+
#: includes/class-dlm-download-handler.php:235
|
827 |
+
#: includes/class-dlm-download-handler.php:242
|
828 |
+
msgid "Redirected to file"
|
829 |
+
msgstr "Przekierowano do pliku"
|
830 |
+
|
831 |
+
#: includes/class-dlm-download-handler.php:281
|
832 |
+
msgid "Redirected to remote file."
|
833 |
+
msgstr "Przekierowano do zdalnego pliku."
|
834 |
+
|
835 |
+
#: includes/class-dlm-download-handler.php:286
|
836 |
+
msgid "File not found"
|
837 |
+
msgstr "Nie znaleziono pliku"
|
838 |
+
|
839 |
+
#: includes/class-dlm-download-handler.php:288
|
840 |
+
msgid "File not found."
|
841 |
+
msgstr "Nie znaleziono pliku."
|
842 |
+
|
843 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
844 |
+
msgid "Download not found"
|
845 |
+
msgstr "Nie znaleziono pliku"
|
846 |
+
|
847 |
+
#: includes/widgets/class-dlm-widget-downloads.php:27
|
848 |
+
msgid "Display a list of your downloads."
|
849 |
+
msgstr "Wyświetl listę plików do pliku."
|
850 |
+
|
851 |
+
#: includes/widgets/class-dlm-widget-downloads.php:29
|
852 |
+
msgid "Downloads List"
|
853 |
+
msgstr "Listy pobierania"
|
854 |
+
|
855 |
+
#: includes/widgets/class-dlm-widget-downloads.php:52
|
856 |
+
#: includes/widgets/class-dlm-widget-downloads.php:148
|
857 |
+
msgid "Featured Downloads"
|
858 |
+
msgstr "Wyróżnione pliki"
|
859 |
+
|
860 |
+
#: includes/widgets/class-dlm-widget-downloads.php:157
|
861 |
+
msgid "Title:"
|
862 |
+
msgstr "Tytuł:"
|
863 |
+
|
864 |
+
#: includes/widgets/class-dlm-widget-downloads.php:161
|
865 |
+
msgid "Limit:"
|
866 |
+
msgstr "Limit:"
|
867 |
+
|
868 |
+
#: includes/widgets/class-dlm-widget-downloads.php:165
|
869 |
+
msgid "Output template:"
|
870 |
+
msgstr "Szablon docelowy:"
|
871 |
+
|
872 |
+
#: includes/widgets/class-dlm-widget-downloads.php:166
|
873 |
+
msgid "Default template"
|
874 |
+
msgstr "Szablon domyślny:"
|
875 |
+
|
876 |
+
#: includes/widgets/class-dlm-widget-downloads.php:169
|
877 |
+
msgid "Order by:"
|
878 |
+
msgstr "Uporządkuj wedle:"
|
879 |
+
|
880 |
+
#: includes/widgets/class-dlm-widget-downloads.php:172
|
881 |
+
msgid "Random"
|
882 |
+
msgstr "Losowo"
|
883 |
+
|
884 |
+
#: includes/widgets/class-dlm-widget-downloads.php:174
|
885 |
+
msgid "Date added"
|
886 |
+
msgstr "Daty dodania"
|
887 |
+
|
888 |
+
#: includes/widgets/class-dlm-widget-downloads.php:175
|
889 |
+
msgid "Date modified"
|
890 |
+
msgstr "Daty modyfikacji"
|
891 |
+
|
892 |
+
#: includes/widgets/class-dlm-widget-downloads.php:180
|
893 |
+
msgid "Order:"
|
894 |
+
msgstr "Porządek:"
|
895 |
+
|
896 |
+
#: includes/widgets/class-dlm-widget-downloads.php:182
|
897 |
+
msgid "ASC"
|
898 |
+
msgstr "wstępująco"
|
899 |
+
|
900 |
+
#: includes/widgets/class-dlm-widget-downloads.php:183
|
901 |
+
msgid "DESC"
|
902 |
+
msgstr "zstępująco"
|
903 |
+
|
904 |
+
#: includes/widgets/class-dlm-widget-downloads.php:188
|
905 |
+
msgid "Show only featured downloads"
|
906 |
+
msgstr "Pokaż jedynie wyróżnione pliki"
|
907 |
+
|
908 |
+
#: includes/widgets/class-dlm-widget-downloads.php:192
|
909 |
+
msgid "Show only members only downloads"
|
910 |
+
msgstr "Pokaż jedynie pliki do pliku przez zalogowanych"
|
911 |
+
|
912 |
+
#: templates/content-download-box.php:12
|
913 |
+
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
914 |
+
msgid "1 download"
|
915 |
+
msgid_plural "%d downloads"
|
916 |
+
msgstr[0] ""
|
917 |
+
msgstr[1] ""
|
918 |
+
msgstr[2] ""
|
919 |
+
|
920 |
+
#: templates/content-download-box.php:20
|
921 |
+
#: templates/content-download-filename.php:8
|
922 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
923 |
+
msgid "Version %s"
|
924 |
+
msgstr "Wersja %s"
|
925 |
+
|
926 |
+
#: templates/content-download-box.php:21
|
927 |
+
msgid "Download File"
|
928 |
+
msgstr "Pobierz plik"
|
929 |
+
|
930 |
+
#: templates/content-download-button.php:9
|
931 |
+
msgid "Download “%s”"
|
932 |
+
msgstr "Pobierz “%s”"
|
933 |
+
|
934 |
+
#: templates/content-download-button.php:10
|
935 |
+
#: templates/content-download-version-list.php:17
|
936 |
+
msgid "Downloaded 1 time"
|
937 |
+
msgid_plural "Downloaded %d times"
|
938 |
+
msgstr[0] ""
|
939 |
+
msgstr[1] ""
|
940 |
+
msgstr[2] ""
|
941 |
+
|
942 |
+
#. Plugin Name of the plugin/theme
|
943 |
+
msgid "Download Monitor"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#. Plugin URI of the plugin/theme
|
947 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#. Description of the plugin/theme
|
951 |
+
msgid ""
|
952 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
953 |
+
"outputting download links and file information on your WordPress powered "
|
954 |
+
"site."
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#. Author of the plugin/theme
|
958 |
+
msgid "Mike Jolley"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#. Author URI of the plugin/theme
|
962 |
+
msgid "http://mikejolley.com"
|
963 |
+
msgstr ""
|
languages/download-monitor-pt_BR.mo
ADDED
Binary file
|
languages/{download_monitor-pt_BR.po → download-monitor-pt_BR.po}
RENAMED
@@ -1,374 +1,253 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Download Monitor package.
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Download Monitor
|
6 |
-
"Report-Msgid-Bugs-To: \n"
|
7 |
-
"POT-Creation-Date: 2014-
|
8 |
-
"PO-Revision-Date: 2014-
|
9 |
-
"Last-Translator:
|
10 |
-
"Language-Team:
|
11 |
-
"Language: pt_BR\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 |
-
|
17 |
-
|
18 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
20 |
-
"esc_attr_e\n"
|
21 |
-
"X-Poedit-Basepath: ../\n"
|
22 |
-
"X-Textdomain-Support: yes\n"
|
23 |
-
"X-Poedit-SearchPath-0: .\n"
|
24 |
-
|
25 |
-
#: download-monitor.php:89 includes/admin/class-dlm-admin.php:249
|
26 |
msgid "Settings"
|
27 |
msgstr "Opções"
|
28 |
|
29 |
-
#: download-monitor.php:
|
30 |
msgid "Add-ons"
|
31 |
msgstr "Complementos"
|
32 |
|
33 |
-
#: download-monitor.php:
|
34 |
msgid "Docs"
|
35 |
msgstr "Docs"
|
36 |
|
37 |
-
#: download-monitor.php:
|
38 |
#: includes/admin/class-dlm-admin-cpt.php:172
|
39 |
msgid "Categories"
|
40 |
msgstr "Categorias"
|
41 |
|
42 |
-
|
43 |
-
#: download-monitor.php:241
|
44 |
msgid "Download Category"
|
45 |
msgstr "Categoria de Download"
|
46 |
|
47 |
-
|
48 |
-
#: download-monitor.php:242
|
49 |
msgid "Search Download Categories"
|
50 |
msgstr "Procurar Categoria de Download"
|
51 |
|
52 |
-
|
53 |
-
#: download-monitor.php:243
|
54 |
msgid "All Download Categories"
|
55 |
msgstr "Todas Categorias de Download"
|
56 |
|
57 |
-
|
58 |
-
#: download-monitor.php:244
|
59 |
msgid "Parent Download Category"
|
60 |
msgstr "Pai da Categoria de Download"
|
61 |
|
62 |
-
|
63 |
-
#: download-monitor.php:245
|
64 |
msgid "Parent Download Category:"
|
65 |
msgstr "Pai da Categoria de Download:"
|
66 |
|
67 |
-
|
68 |
-
#: download-monitor.php:246
|
69 |
msgid "Edit Download Category"
|
70 |
msgstr "Editar Categoria de Download"
|
71 |
|
72 |
-
|
73 |
-
#: download-monitor.php:247
|
74 |
msgid "Update Download Category"
|
75 |
msgstr "Atualizar Categoria de Download"
|
76 |
|
77 |
-
|
78 |
-
#: download-monitor.php:248
|
79 |
msgid "Add New Download Category"
|
80 |
msgstr "Add Nova Categoria de Download"
|
81 |
|
82 |
-
|
83 |
-
#: download-monitor.php:249
|
84 |
msgid "New Download Category Name"
|
85 |
msgstr "Nome da Nova Categoria de Download"
|
86 |
|
87 |
-
|
88 |
-
#: download-monitor.php:268 download-monitor.php:270
|
89 |
#: includes/admin/class-dlm-admin-cpt.php:173
|
90 |
msgid "Tags"
|
91 |
msgstr "Tags"
|
92 |
|
93 |
-
|
94 |
-
#: download-monitor.php:271
|
95 |
msgid "Download Tag"
|
96 |
msgstr "Tag de Download"
|
97 |
|
98 |
-
|
99 |
-
#: download-monitor.php:272
|
100 |
msgid "Search Download Tags"
|
101 |
msgstr "Procurar Tag de Download"
|
102 |
|
103 |
-
|
104 |
-
#: download-monitor.php:273
|
105 |
msgid "All Download Tags"
|
106 |
msgstr "Todas as Tags de Download"
|
107 |
|
108 |
-
|
109 |
-
#: download-monitor.php:274
|
110 |
msgid "Parent Download Tag"
|
111 |
msgstr "Pai da Tag de Download"
|
112 |
|
113 |
-
|
114 |
-
#: download-monitor.php:275
|
115 |
msgid "Parent Download Tag:"
|
116 |
msgstr "Pai da Tag de Download:"
|
117 |
|
118 |
-
|
119 |
-
#: download-monitor.php:276
|
120 |
msgid "Edit Download Tag"
|
121 |
msgstr "Editar Tag de Download"
|
122 |
|
123 |
-
|
124 |
-
#: download-monitor.php:277
|
125 |
msgid "Update Download Tag"
|
126 |
msgstr "Atualizar Tag de Download"
|
127 |
|
128 |
-
|
129 |
-
#: download-monitor.php:278
|
130 |
msgid "Add New Download Tag"
|
131 |
msgstr "Add Nova Tag de Download"
|
132 |
|
133 |
-
|
134 |
-
#: download-monitor.php:279
|
135 |
msgid "New Download Tag Name"
|
136 |
msgstr "Nome da Nova Tag de Download"
|
137 |
|
138 |
-
|
139 |
-
# @ default
|
140 |
-
#: download-monitor.php:300
|
141 |
msgid "All Downloads"
|
142 |
msgstr "Todos os Downloads"
|
143 |
|
144 |
-
|
145 |
-
# @ default
|
146 |
-
#: download-monitor.php:301
|
147 |
msgid "Downloads"
|
148 |
msgstr "Downloads"
|
149 |
|
150 |
-
|
151 |
-
#: download-monitor.php:302 includes/admin/class-dlm-admin-dashboard.php:69
|
152 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
153 |
msgid "Download"
|
154 |
msgstr "Download"
|
155 |
|
156 |
-
|
157 |
-
#: download-monitor.php:303
|
158 |
msgid "Add New"
|
159 |
msgstr "Adicionar Novo"
|
160 |
|
161 |
-
|
162 |
-
#: download-monitor.php:304
|
163 |
msgid "Add Download"
|
164 |
msgstr "Adicionar Download"
|
165 |
|
166 |
-
|
167 |
-
#: download-monitor.php:305
|
168 |
msgid "Edit"
|
169 |
msgstr "Editar"
|
170 |
|
171 |
-
|
172 |
-
#: download-monitor.php:306
|
173 |
msgid "Edit Download"
|
174 |
msgstr "Editar Download"
|
175 |
|
176 |
-
|
177 |
-
#: download-monitor.php:307
|
178 |
msgid "New Download"
|
179 |
msgstr "Novo Download"
|
180 |
|
181 |
-
|
182 |
-
#: download-monitor.php:308 download-monitor.php:309
|
183 |
msgid "View Download"
|
184 |
msgstr "Visualizar Download"
|
185 |
|
186 |
-
|
187 |
-
#: download-monitor.php:310
|
188 |
msgid "Search Downloads"
|
189 |
msgstr "Procurar Downloads"
|
190 |
|
191 |
-
|
192 |
-
#: download-monitor.php:311
|
193 |
msgid "No Downloads found"
|
194 |
msgstr "Nenhum Download encontrado"
|
195 |
|
196 |
-
|
197 |
-
#: download-monitor.php:312
|
198 |
msgid "No Downloads found in trash"
|
199 |
msgstr "Nenhum Download encontrado na lixeira"
|
200 |
|
201 |
-
|
202 |
-
#: download-monitor.php:313
|
203 |
msgid "Parent Download"
|
204 |
msgstr "Pai Download"
|
205 |
|
206 |
-
#: download-monitor.php:
|
207 |
msgid "This is where you can create and manage downloads for your site."
|
208 |
msgstr "Aqui é onde você pode criar e gerenciar downloads para o seu site."
|
209 |
|
210 |
-
# @ download_monitor
|
211 |
-
#: includes/class-dlm-download-handler.php:124
|
212 |
-
msgid "Download does not exist."
|
213 |
-
msgstr "Download não existe."
|
214 |
-
|
215 |
-
#: includes/class-dlm-download-handler.php:124
|
216 |
-
#: includes/class-dlm-download-handler.php:153
|
217 |
-
#: includes/class-dlm-download-handler.php:158
|
218 |
-
#: includes/class-dlm-download-handler.php:167
|
219 |
-
#: includes/class-dlm-download-handler.php:261
|
220 |
-
msgid "Go to homepage →"
|
221 |
-
msgstr "Ir para página inicial →"
|
222 |
-
|
223 |
-
# @ download_monitor
|
224 |
-
#: includes/class-dlm-download-handler.php:124
|
225 |
-
#: includes/class-dlm-download-handler.php:153
|
226 |
-
#: includes/class-dlm-download-handler.php:158
|
227 |
-
#: includes/class-dlm-download-handler.php:167
|
228 |
-
#: includes/class-dlm-download-handler.php:261
|
229 |
-
msgid "Download Error"
|
230 |
-
msgstr "Erro no Download"
|
231 |
-
|
232 |
-
# @ download_monitor
|
233 |
-
#: includes/class-dlm-download-handler.php:153
|
234 |
-
#: includes/class-dlm-download-handler.php:158
|
235 |
-
msgid "No file paths defined."
|
236 |
-
msgstr "Nenhum caminho do arquivo foi definido."
|
237 |
-
|
238 |
-
# @ default
|
239 |
-
#: includes/class-dlm-download-handler.php:167
|
240 |
-
msgid "You do not have permission to access this download."
|
241 |
-
msgstr "Você não tem permissão para fazer este download."
|
242 |
-
|
243 |
-
#: includes/class-dlm-download-handler.php:185
|
244 |
-
#: includes/class-dlm-download-handler.php:201
|
245 |
-
#: includes/class-dlm-download-handler.php:208
|
246 |
-
#: includes/class-dlm-download-handler.php:215
|
247 |
-
msgid "Redirected to file"
|
248 |
-
msgstr "Redirecionado para arquivo"
|
249 |
-
|
250 |
-
# @ download_monitor
|
251 |
-
#: includes/class-dlm-download-handler.php:254
|
252 |
-
msgid "Redirected to remote file."
|
253 |
-
msgstr "Redirecionado para arquivo remoto."
|
254 |
-
|
255 |
-
# @ download_monitor
|
256 |
-
#: includes/class-dlm-download-handler.php:259
|
257 |
-
msgid "File not found"
|
258 |
-
msgstr "Arquivo não encontrado"
|
259 |
-
|
260 |
-
# @ download_monitor
|
261 |
-
#: includes/class-dlm-download-handler.php:261
|
262 |
-
msgid "File not found."
|
263 |
-
msgstr "Arquivo não encontrado."
|
264 |
-
|
265 |
-
# @ download_monitor
|
266 |
-
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
267 |
-
msgid "Download not found"
|
268 |
-
msgstr "Download não encontrado."
|
269 |
-
|
270 |
-
# @ download_monitor
|
271 |
#: includes/admin/class-dlm-addons.php:50
|
272 |
-
#: includes/admin/class-dlm-admin.php:
|
273 |
msgid "Download Monitor Add-ons"
|
274 |
msgstr "Complementos do Download Monitor"
|
275 |
|
276 |
-
# @ download_monitor
|
277 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
278 |
msgid "Select a category"
|
279 |
msgstr "Selecionar categoria"
|
280 |
|
281 |
-
# @ default
|
282 |
-
# @ download_monitor
|
283 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
284 |
msgid "Download title"
|
285 |
msgstr "Título do download"
|
286 |
|
287 |
-
# @ download_monitor
|
288 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
289 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
290 |
msgid "Download updated."
|
291 |
msgstr "Download atualizado."
|
292 |
|
293 |
-
# @ download_monitor
|
294 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
295 |
msgid "Custom field updated."
|
296 |
msgstr "Campo personalizado atualizado."
|
297 |
|
298 |
-
# @ download_monitor
|
299 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
300 |
msgid "Custom field deleted."
|
301 |
msgstr "Campo personalizado apagado."
|
302 |
|
303 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
304 |
-
#, php-format
|
305 |
msgid "Download restored to revision from %s"
|
306 |
msgstr "Download restaurado da revisão de %s"
|
307 |
|
308 |
-
# @ download_monitor
|
309 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
310 |
msgid "Download published."
|
311 |
msgstr "Download postado."
|
312 |
|
313 |
-
# @ download_monitor
|
314 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
315 |
msgid "Download saved."
|
316 |
msgstr "Download salvo."
|
317 |
|
318 |
-
# @ download_monitor
|
319 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
320 |
msgid "Download submitted."
|
321 |
msgstr "Download enviado."
|
322 |
|
323 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
324 |
-
#, php-format
|
325 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
326 |
msgstr "Download agendado para: <strong>%1$s</strong>."
|
327 |
|
328 |
-
# @ download_monitor
|
329 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
330 |
msgid "M j, Y @ G:i"
|
331 |
msgstr "d M Y @ H:i"
|
332 |
|
333 |
-
# @ download_monitor
|
334 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
335 |
msgid "Download draft updated."
|
336 |
msgstr "Rascunho do download atualizado."
|
337 |
|
338 |
-
# @ download_monitor
|
339 |
#: includes/admin/class-dlm-admin-cpt.php:167
|
340 |
msgid "Image"
|
341 |
msgstr "Imagem"
|
342 |
|
343 |
-
# @ download_monitor
|
344 |
#: includes/admin/class-dlm-admin-cpt.php:168
|
345 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
346 |
msgid "Title"
|
347 |
msgstr "Título"
|
348 |
|
349 |
-
# @ download_monitor
|
350 |
#: includes/admin/class-dlm-admin-cpt.php:169
|
351 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
352 |
msgid "ID"
|
353 |
msgstr "ID"
|
354 |
|
355 |
-
# @ download_monitor
|
356 |
#: includes/admin/class-dlm-admin-cpt.php:170
|
357 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
358 |
msgid "File"
|
359 |
msgstr "Arquivo"
|
360 |
|
361 |
-
# @ download_monitor
|
362 |
#: includes/admin/class-dlm-admin-cpt.php:171
|
363 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
364 |
-
#: includes/admin/html-downloadable-file-version.php:
|
365 |
msgid "Version"
|
366 |
msgstr "Versão"
|
367 |
|
368 |
-
# @ download_monitor
|
369 |
#: includes/admin/class-dlm-admin-cpt.php:174
|
370 |
#: includes/admin/class-dlm-admin-dashboard.php:70
|
371 |
-
#: includes/admin/html-downloadable-file-version.php:
|
372 |
#: includes/widgets/class-dlm-widget-downloads.php:176
|
373 |
msgid "Download count"
|
374 |
msgstr "Contador do Download"
|
@@ -377,30 +256,25 @@ msgstr "Contador do Download"
|
|
377 |
msgid "Featured"
|
378 |
msgstr "Destaque"
|
379 |
|
380 |
-
# @ download_monitor
|
381 |
#: includes/admin/class-dlm-admin-cpt.php:176
|
382 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
383 |
msgid "Members only"
|
384 |
msgstr "Somente membros"
|
385 |
|
386 |
-
# @ download_monitor
|
387 |
#: includes/admin/class-dlm-admin-cpt.php:177
|
388 |
msgid "Redirect only"
|
389 |
msgstr "Somente redirecionar"
|
390 |
|
391 |
-
# @ download_monitor
|
392 |
#: includes/admin/class-dlm-admin-cpt.php:178
|
393 |
msgid "Date posted"
|
394 |
msgstr "Upado em"
|
395 |
|
396 |
-
# @ download_monitor
|
397 |
#: includes/admin/class-dlm-admin-cpt.php:212
|
398 |
#: includes/admin/class-dlm-admin-cpt.php:220
|
399 |
#: includes/admin/class-dlm-admin-cpt.php:228
|
400 |
msgid "Yes"
|
401 |
msgstr "Sim"
|
402 |
|
403 |
-
# @ download_monitor
|
404 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
405 |
msgid "Popular Downloads"
|
406 |
msgstr "Downloads Popular"
|
@@ -409,143 +283,122 @@ msgstr "Downloads Popular"
|
|
409 |
msgid "There are no stats available yet!"
|
410 |
msgstr "Ainda não há estatísticas disponíveis!"
|
411 |
|
412 |
-
# @ download_monitor
|
413 |
#: includes/admin/class-dlm-admin-insert.php:32
|
414 |
#: includes/admin/class-dlm-admin-insert.php:40
|
415 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
416 |
msgid "Insert Download"
|
417 |
msgstr "Inserir Download"
|
418 |
|
419 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
420 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
421 |
msgid "Insert Shortcode"
|
422 |
msgstr "Inserir Shortcode"
|
423 |
|
424 |
-
|
425 |
-
#: includes/admin/class-dlm-admin-insert.php:80
|
426 |
msgid "Quick-add download"
|
427 |
msgstr "Add Download rápido"
|
428 |
|
429 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
430 |
msgid "Error: File was not created."
|
431 |
msgstr "Erro: O arquivo não foi criado."
|
432 |
|
433 |
-
|
434 |
-
#: includes/admin/class-dlm-admin-insert.php:137
|
435 |
msgid "Download successfully created."
|
436 |
msgstr "Download criado com sucesso"
|
437 |
|
438 |
-
|
439 |
-
#: includes/admin/class-dlm-admin-insert.php:139
|
440 |
msgid "Error: Download was not created."
|
441 |
msgstr "Erro: O download não foi criado."
|
442 |
|
443 |
-
|
444 |
-
#: includes/admin/class-dlm-admin-insert.php:157
|
445 |
msgid "Choose a download"
|
446 |
msgstr "Escolha o download"
|
447 |
|
448 |
-
|
449 |
-
#: includes/admin/class-dlm-admin-insert.php:169
|
450 |
msgid "Template"
|
451 |
msgstr "Modelo"
|
452 |
|
453 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
454 |
msgid "Template Name"
|
455 |
msgstr "Nome do Modelo"
|
456 |
|
457 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
458 |
msgid ""
|
459 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
460 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
461 |
-
"
|
462 |
-
msgstr ""
|
463 |
-
"Deixando em branco será usado o arquivo de modelo padrão: <code>content-"
|
464 |
-
"download.php</code>. Se você digitar, por exemplo, <code>image</code>, será "
|
465 |
-
"usado o modelo: <code>content-download-image.php</code>."
|
466 |
|
467 |
-
|
468 |
-
#: includes/admin/class-dlm-admin-insert.php:187
|
469 |
msgid "Drop file here"
|
470 |
msgstr "Solte o arquivo aqui"
|
471 |
|
472 |
-
|
473 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
474 |
-
#: includes/admin/class-dlm-admin-insert.php:190
|
475 |
msgid "or"
|
476 |
msgstr "ou"
|
477 |
|
478 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
479 |
msgid "Select File"
|
480 |
msgstr "Selecione o arquivo"
|
481 |
|
482 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
483 |
msgid "Enter URL manually"
|
484 |
msgstr "Insira a URL manualmente"
|
485 |
|
486 |
-
|
487 |
-
#: includes/admin/class-dlm-admin-insert.php:197
|
488 |
msgid "Download URL"
|
489 |
msgstr "URL do Download"
|
490 |
|
491 |
-
|
492 |
-
#: includes/admin/class-dlm-admin-insert.php:198
|
493 |
msgid "Required URL"
|
494 |
msgstr "URL Obrigatória"
|
495 |
|
496 |
-
|
497 |
-
#: includes/admin/class-dlm-admin-insert.php:201
|
498 |
msgid "Download Title"
|
499 |
msgstr "Título do Download"
|
500 |
|
501 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
502 |
msgid "Required title"
|
503 |
msgstr "Título Obrigatório"
|
504 |
|
505 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
506 |
msgid "Optional version number"
|
507 |
msgstr "Número da versão Opcional"
|
508 |
|
509 |
-
|
510 |
-
#: includes/admin/class-dlm-admin-insert.php:209
|
511 |
msgid "Save Download"
|
512 |
msgstr "Salvar Download"
|
513 |
|
514 |
-
|
515 |
-
#: includes/admin/class-dlm-admin-insert.php:267
|
516 |
msgid "Allowed Files"
|
517 |
msgstr "Arquivos Permitidos"
|
518 |
|
519 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
520 |
msgid "Please wait..."
|
521 |
msgstr "Por favor, aguarde..."
|
522 |
|
523 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
524 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
525 |
msgid "Browse for a file"
|
526 |
msgstr "Procurar por um arquivo"
|
527 |
|
528 |
-
# @ download_monitor
|
529 |
#: includes/admin/class-dlm-admin-media-browser.php:101
|
530 |
msgid "No files found"
|
531 |
msgstr "Nenhum arquivo encontrado"
|
532 |
|
533 |
-
# @ download_monitor
|
534 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
535 |
msgid "Download Options"
|
536 |
msgstr "Opções do Download"
|
537 |
|
538 |
-
# @ download_monitor
|
539 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
540 |
msgid "Downloadable Files/Versions"
|
541 |
msgstr "Versões Disponível do Arquivo"
|
542 |
|
543 |
-
# @ download_monitor
|
544 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
545 |
msgid "Short Description"
|
546 |
msgstr "Descrição Curta"
|
547 |
|
548 |
-
# @ download_monitor
|
549 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
550 |
msgid "Featured download"
|
551 |
msgstr "Download em Destaque"
|
@@ -558,24 +411,18 @@ msgstr "Marca este download como em destaque. Usado por shortcodes e widgets."
|
|
558 |
msgid ""
|
559 |
"Only logged in users will be able to access the file via a download link if "
|
560 |
"this is enabled."
|
561 |
-
msgstr ""
|
562 |
-
"Se ativado, apenas os usuários logados serão capazes de acessar o arquivo "
|
563 |
-
"via link de download."
|
564 |
|
565 |
-
# @ download_monitor
|
566 |
#: includes/admin/class-dlm-admin-writepanels.php:69
|
567 |
msgid "Redirect to file"
|
568 |
msgstr "Redirecionar para arquivo"
|
569 |
|
570 |
#: includes/admin/class-dlm-admin-writepanels.php:70
|
571 |
msgid ""
|
572 |
-
"Don't force download. If the <code>dlm_upload</code> folder is protected you
|
573 |
-
"may need to move your file."
|
574 |
-
msgstr ""
|
575 |
-
"Não forçar download. Se a pasta <code>dlm_upload</code> estiver protegida "
|
576 |
-
"pode ser necessário mover seu arquivo."
|
577 |
|
578 |
-
# @ download_monitor
|
579 |
#: includes/admin/class-dlm-admin-writepanels.php:94
|
580 |
msgid "Add file"
|
581 |
msgstr "Add arquivo"
|
@@ -588,17 +435,14 @@ msgstr "Fechar tudo"
|
|
588 |
msgid "Expand all"
|
589 |
msgstr "Expandir tudo"
|
590 |
|
591 |
-
|
592 |
-
#: includes/admin/class-dlm-admin-writepanels.php:220
|
593 |
msgid "Are you sure you want to delete this file?"
|
594 |
msgstr "Você tem certeza de que deseja apagar este arquivo?"
|
595 |
|
596 |
-
# @ download_monitor
|
597 |
#: includes/admin/class-dlm-admin.php:95
|
598 |
msgid "General"
|
599 |
msgstr "Geral"
|
600 |
|
601 |
-
# @ download_monitor
|
602 |
#: includes/admin/class-dlm-admin.php:100
|
603 |
msgid "Default Template"
|
604 |
msgstr "Modelo Padrão"
|
@@ -607,9 +451,7 @@ msgstr "Modelo Padrão"
|
|
607 |
msgid ""
|
608 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
609 |
"default (this can be overridden by the <code>format</code> argument)."
|
610 |
-
msgstr ""
|
611 |
-
"Escolha qual modelo será usado com o shortcodes <code>[download]</code> por "
|
612 |
-
"padrão, (podendo ser substituído pelo argumento <code>format</code>)."
|
613 |
|
614 |
#: includes/admin/class-dlm-admin.php:104
|
615 |
msgid "Default - Title and count"
|
@@ -621,30 +463,24 @@ msgstr "Botão - Botão estilizado em CSS mostrando título e contador"
|
|
621 |
|
622 |
#: includes/admin/class-dlm-admin.php:106
|
623 |
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
624 |
-
msgstr ""
|
625 |
-
"Caixa - Caixa mostrando miniatura, título, contador, nome e tamanho do "
|
626 |
-
"arquivo."
|
627 |
|
628 |
#: includes/admin/class-dlm-admin.php:107
|
629 |
msgid "Filename - Filename and download count"
|
630 |
msgstr "Nome do arquivo - Nome do arquivo e contador de download"
|
631 |
|
632 |
-
# @ download_monitor
|
633 |
#: includes/admin/class-dlm-admin.php:108
|
634 |
msgid "Title - Shows download title only"
|
635 |
msgstr "Título - Exibe apenas o título do download"
|
636 |
|
637 |
#: includes/admin/class-dlm-admin.php:109
|
638 |
msgid "Version list - Lists all download versions in an unordered list"
|
639 |
-
msgstr ""
|
640 |
-
"Lista de versões - Lista todas as versões do download numa lista desordenada"
|
641 |
|
642 |
-
# @ download_monitor
|
643 |
#: includes/admin/class-dlm-admin.php:110
|
644 |
msgid "Custom template"
|
645 |
msgstr "Modelo personalizado"
|
646 |
|
647 |
-
# @ download_monitor
|
648 |
#: includes/admin/class-dlm-admin.php:116
|
649 |
msgid "Custom Template"
|
650 |
msgstr "Modelo Personalizado"
|
@@ -652,62 +488,45 @@ msgstr "Modelo Personalizado"
|
|
652 |
#: includes/admin/class-dlm-admin.php:117
|
653 |
msgid ""
|
654 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
655 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
656 |
-
"
|
657 |
-
"
|
658 |
-
msgstr ""
|
659 |
-
"Deixando em branco será usado o arquivo modelo padrão <code>content-download."
|
660 |
-
"php</code>. Se você, por exemplo, inserir <code>image</code>, o modelo "
|
661 |
-
"<code>content-download-image.php</code> será usado. Você pode adicionar "
|
662 |
-
"modelos personalizados dentro da pasta do seu tema."
|
663 |
|
664 |
#: includes/admin/class-dlm-admin.php:122
|
665 |
msgid "Endpoint"
|
666 |
msgstr "Ponto final"
|
667 |
|
668 |
-
# @ download_monitor
|
669 |
#: includes/admin/class-dlm-admin.php:127
|
670 |
msgid "download"
|
671 |
msgstr "download"
|
672 |
|
673 |
-
# @ download_monitor
|
674 |
#: includes/admin/class-dlm-admin.php:128
|
675 |
msgid "Download Endpoint"
|
676 |
msgstr "Ponto final do Download"
|
677 |
|
678 |
#: includes/admin/class-dlm-admin.php:129
|
679 |
-
#, php-format
|
680 |
msgid ""
|
681 |
-
"Define what endpoint should be used for download links. By default this will
|
682 |
-
"be <code>%s</code>."
|
683 |
-
msgstr ""
|
684 |
-
"Define qual termo será usado como ponto final (extremidade) no link de "
|
685 |
-
"download. Por padrão temos o termo <code>download</code> como ponto final "
|
686 |
-
"(extremidade) e o resultado será: <code>%s</code>."
|
687 |
|
688 |
#: includes/admin/class-dlm-admin.php:134
|
689 |
msgid "Endpoint Value"
|
690 |
msgstr "Valor do Ponto final"
|
691 |
|
692 |
#: includes/admin/class-dlm-admin.php:135
|
693 |
-
#, php-format
|
694 |
msgid ""
|
695 |
"Define what unique value should be used on the end of your endpoint to "
|
696 |
-
"identify the downloadable file. e.g. ID would give a link like
|
697 |
-
"code>"
|
698 |
-
msgstr ""
|
699 |
-
"Define qual valor único será usado após o ponto final (extremidade) para "
|
700 |
-
"identificar o arquivo no link de download. Ex.: Usando o <code>ID do "
|
701 |
-
"Download</code> teremos o link assim: <code>%s</code>"
|
702 |
|
703 |
-
# @ download_monitor
|
704 |
#: includes/admin/class-dlm-admin.php:138
|
705 |
-
#: includes/admin/class-dlm-admin.php:
|
706 |
msgid "Download ID"
|
707 |
msgstr "ID do Download"
|
708 |
|
709 |
-
# @ download_monitor
|
710 |
-
# @ default
|
711 |
#: includes/admin/class-dlm-admin.php:139
|
712 |
msgid "Download slug"
|
713 |
msgstr "Slug do download"
|
@@ -717,145 +536,133 @@ msgid "X-Accel-Redirect / X-Sendfile"
|
|
717 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
718 |
|
719 |
#: includes/admin/class-dlm-admin.php:146
|
720 |
-
#: includes/admin/class-dlm-admin.php:
|
|
|
721 |
msgid "Enable"
|
722 |
msgstr "Ativar"
|
723 |
|
724 |
#: includes/admin/class-dlm-admin.php:147
|
725 |
msgid ""
|
726 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be
|
727 |
-
"used to serve downloads instead of PHP (server requires
|
728 |
-
"code>)."
|
729 |
-
msgstr ""
|
730 |
-
"Se suportado, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> pode "
|
731 |
-
"ser usado para fornecer downloads ao invés do PHP (requer no servidor "
|
732 |
"<code>mod_xsendfile</code>)."
|
|
|
733 |
|
734 |
#: includes/admin/class-dlm-admin.php:153
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
msgid "Logging"
|
736 |
msgstr "Log"
|
737 |
|
738 |
-
|
739 |
-
#: includes/admin/class-dlm-admin.php:159
|
740 |
msgid "Download Log"
|
741 |
msgstr "Log dos Downloads"
|
742 |
|
743 |
-
#: includes/admin/class-dlm-admin.php:
|
744 |
msgid "Log download attempts, IP addresses and more."
|
745 |
-
msgstr ""
|
746 |
-
"Log com as tentativas de download, endereços de IP, agentes de usuário, data "
|
747 |
-
"e muito mais."
|
748 |
|
749 |
-
#: includes/admin/class-dlm-admin.php:
|
750 |
msgid "Blacklist IPs"
|
751 |
msgstr "Lista Negra de IPs"
|
752 |
|
753 |
-
#: includes/admin/class-dlm-admin.php:
|
754 |
msgid ""
|
755 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
756 |
"wildcard."
|
757 |
-
msgstr ""
|
758 |
-
"Lista de endereços de IP na lista negra, 1 por linha. Use <code>*</code> "
|
759 |
-
"como wildcard."
|
760 |
|
761 |
-
#: includes/admin/class-dlm-admin.php:
|
762 |
msgid "Blacklist user agents"
|
763 |
msgstr "Lista Negra dos agentes de usuário"
|
764 |
|
765 |
-
#: includes/admin/class-dlm-admin.php:
|
766 |
msgid "List browser user agents to blacklist, 1 per line."
|
767 |
msgstr "Lista dos agentes de usuário de navegador na lista negra, 1 por linha."
|
768 |
|
769 |
-
#: includes/admin/class-dlm-admin.php:
|
770 |
msgid "Logs"
|
771 |
msgstr "Logs"
|
772 |
|
773 |
-
#: includes/admin/class-dlm-admin.php:
|
774 |
msgid "Settings successfully saved"
|
775 |
msgstr "Opções salvas com sucesso"
|
776 |
|
777 |
-
|
778 |
-
#: includes/admin/class-dlm-admin.php:358
|
779 |
msgid "Save Changes"
|
780 |
msgstr "Salvar Alterações"
|
781 |
|
782 |
-
|
783 |
-
#: includes/admin/class-dlm-admin.php:402
|
784 |
msgid "Download Logs"
|
785 |
msgstr "Logs dos Downloads"
|
786 |
|
787 |
-
#: includes/admin/class-dlm-admin.php:
|
788 |
msgid "Export CSV"
|
789 |
msgstr "Exportar CSV"
|
790 |
|
791 |
-
|
792 |
-
#: includes/admin/class-dlm-admin.php:402
|
793 |
msgid "Delete Logs"
|
794 |
msgstr "Resetar Logs"
|
795 |
|
796 |
-
|
797 |
-
#: includes/admin/class-dlm-admin.php:453
|
798 |
msgid "Version ID"
|
799 |
msgstr "ID da Versão"
|
800 |
|
801 |
-
|
802 |
-
#: includes/admin/class-dlm-admin.php:454
|
803 |
msgid "Filename"
|
804 |
msgstr "Nome do arquivo"
|
805 |
|
806 |
-
|
807 |
-
#: includes/admin/class-dlm-admin.php:455
|
808 |
msgid "User ID"
|
809 |
msgstr "ID do Usuário"
|
810 |
|
811 |
-
|
812 |
-
#: includes/admin/class-dlm-admin.php:456
|
813 |
msgid "User Login"
|
814 |
msgstr "Login do Usuário"
|
815 |
|
816 |
-
#: includes/admin/class-dlm-admin.php:
|
817 |
msgid "User Email"
|
818 |
msgstr "Email do Usuário"
|
819 |
|
820 |
-
|
821 |
-
#: includes/admin/class-dlm-admin.php:458
|
822 |
msgid "User IP"
|
823 |
msgstr "IP do Usuário"
|
824 |
|
825 |
-
#: includes/admin/class-dlm-admin.php:
|
826 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
827 |
msgid "User Agent"
|
828 |
msgstr "Agente do Usuário"
|
829 |
|
830 |
-
|
831 |
-
#: includes/admin/class-dlm-admin.php:460
|
832 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
833 |
msgid "Date"
|
834 |
msgstr "Data"
|
835 |
|
836 |
-
#: includes/admin/class-dlm-admin.php:
|
837 |
msgid "Status"
|
838 |
msgstr "Status"
|
839 |
|
840 |
-
# @ download_monitor
|
841 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
842 |
msgid "Download Complete"
|
843 |
msgstr "Download Finalizado com Sucesso"
|
844 |
|
845 |
-
# @ download_monitor
|
846 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
847 |
-
#, php-format
|
848 |
msgid "%s ago"
|
849 |
msgstr "%s atrás"
|
850 |
|
851 |
-
# @ download_monitor
|
852 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
853 |
-
#, php-format
|
854 |
msgid "Download #%d (no longer exists)"
|
855 |
msgstr "Download #%d (não existe mais)"
|
856 |
|
857 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
858 |
-
#, php-format
|
859 |
msgid "v%s"
|
860 |
msgstr "v%s"
|
861 |
|
@@ -863,12 +670,10 @@ msgstr "v%s"
|
|
863 |
msgid "Non-member"
|
864 |
msgstr "Não-membro"
|
865 |
|
866 |
-
# @ download_monitor
|
867 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
868 |
msgid "User"
|
869 |
msgstr "Usuário"
|
870 |
|
871 |
-
# @ download_monitor
|
872 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
873 |
msgid "IP Address"
|
874 |
msgstr "IP"
|
@@ -894,7 +699,6 @@ msgid "Show all dates"
|
|
894 |
msgstr "Mostrar todas as datas"
|
895 |
|
896 |
#: includes/admin/class-dlm-logging-list-table.php:177
|
897 |
-
#, php-format
|
898 |
msgid "%1$s %2$d"
|
899 |
msgstr "%1$s %2$d"
|
900 |
|
@@ -914,7 +718,6 @@ msgstr "100 por página"
|
|
914 |
msgid "200 per page"
|
915 |
msgstr "200 por página"
|
916 |
|
917 |
-
# @ download_monitor
|
918 |
#: includes/admin/class-dlm-logging-list-table.php:189
|
919 |
msgid "Show All"
|
920 |
msgstr "Mostrar Tudo"
|
@@ -923,94 +726,136 @@ msgstr "Mostrar Tudo"
|
|
923 |
msgid "Filter"
|
924 |
msgstr "Filtrar"
|
925 |
|
926 |
-
# @ download_monitor
|
927 |
#: includes/admin/html-downloadable-file-version.php:3
|
928 |
msgid "Remove"
|
929 |
msgstr "Apagar"
|
930 |
|
931 |
-
# @ download_monitor
|
932 |
#: includes/admin/html-downloadable-file-version.php:4
|
933 |
msgid "Click to toggle"
|
934 |
msgstr "Clique para alternar"
|
935 |
|
936 |
#: includes/admin/html-downloadable-file-version.php:5
|
937 |
-
#, php-format
|
938 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
939 |
msgstr "Versão <span class=\"version\">%s</span> (%s)"
|
940 |
|
941 |
#: includes/admin/html-downloadable-file-version.php:5
|
942 |
-
#: includes/admin/html-downloadable-file-version.php:
|
943 |
msgid "n/a"
|
944 |
msgstr "n/a"
|
945 |
|
946 |
-
# @ download_monitor
|
947 |
#: includes/admin/html-downloadable-file-version.php:5
|
948 |
-
#, php-format
|
949 |
msgid "Downloaded %s time"
|
950 |
msgid_plural "Downloaded %s times"
|
951 |
msgstr[0] "Baixado %s vez"
|
952 |
msgstr[1] "Baixado %s vezes"
|
953 |
|
954 |
-
|
955 |
-
#: includes/admin/html-downloadable-file-version.php:18
|
956 |
msgid "File URL(s)"
|
957 |
msgstr "URL(s) do Arquivo"
|
958 |
|
959 |
-
#: includes/admin/html-downloadable-file-version.php:
|
960 |
msgid ""
|
961 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
962 |
"(chosen at random)."
|
963 |
-
msgstr ""
|
964 |
-
"Insira um caminho/URL do arquivo por linha - vários arquivos serão usados "
|
965 |
-
"como espelhos (escolhidos aleatoriamente)."
|
966 |
|
967 |
-
|
968 |
-
#: includes/admin/html-downloadable-file-version.php:24
|
969 |
msgid "Upload file"
|
970 |
msgstr "Enviar arquivo"
|
971 |
|
972 |
-
#: includes/admin/html-downloadable-file-version.php:
|
973 |
msgid "Choose a file"
|
974 |
msgstr "Escolha um arquivo"
|
975 |
|
976 |
-
|
977 |
-
#: includes/admin/html-downloadable-file-version.php:27
|
978 |
msgid "Insert file URL"
|
979 |
msgstr "Inserir URL do arquivo"
|
980 |
|
981 |
-
#: includes/admin/html-downloadable-file-version.php:
|
982 |
msgid "Browse for file"
|
983 |
msgstr "Procurar por arquivo"
|
984 |
|
985 |
-
|
986 |
-
#: includes/admin/html-downloadable-file-version.php:55
|
987 |
msgid "File Date"
|
988 |
msgstr "Data do Arquivo"
|
989 |
|
990 |
-
#: includes/admin/html-downloadable-file-version.php:
|
991 |
msgid "h"
|
992 |
msgstr "h"
|
993 |
|
994 |
-
#: includes/admin/html-downloadable-file-version.php:
|
995 |
msgid "m"
|
996 |
msgstr "m"
|
997 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
998 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
999 |
msgid "Display a list of your downloads."
|
1000 |
msgstr "Exibirá uma lista de seus downloads disponíveis."
|
1001 |
|
1002 |
-
# @ download_monitor
|
1003 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
1004 |
msgid "Downloads List"
|
1005 |
msgstr "Lista de Downloads"
|
1006 |
|
1007 |
-
# @ download_monitor
|
1008 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
1009 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
1010 |
msgid "Featured Downloads"
|
1011 |
msgstr "Downloads em Destaque"
|
1012 |
|
1013 |
-
# @ download_monitor
|
1014 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
1015 |
msgid "Title:"
|
1016 |
msgstr "Título:"
|
@@ -1023,7 +868,6 @@ msgstr "Limite:"
|
|
1023 |
msgid "Output template:"
|
1024 |
msgstr "Modelo de saída:"
|
1025 |
|
1026 |
-
# @ download_monitor
|
1027 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
1028 |
msgid "Default template"
|
1029 |
msgstr "Modelo padrão"
|
@@ -1036,12 +880,10 @@ msgstr "Organizar downloads:"
|
|
1036 |
msgid "Random"
|
1037 |
msgstr "Aletoriamente"
|
1038 |
|
1039 |
-
# @ download_monitor
|
1040 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
1041 |
msgid "Date added"
|
1042 |
msgstr "Data de upload"
|
1043 |
|
1044 |
-
# @ download_monitor
|
1045 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
1046 |
msgid "Date modified"
|
1047 |
msgstr "Data de modificação"
|
@@ -1058,48 +900,61 @@ msgstr "Crescente"
|
|
1058 |
msgid "DESC"
|
1059 |
msgstr "Decrescente"
|
1060 |
|
1061 |
-
# @ download_monitor
|
1062 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
1063 |
msgid "Show only featured downloads"
|
1064 |
msgstr "Mostrar apenas os downloads em destaque"
|
1065 |
|
1066 |
-
# @ download_monitor
|
1067 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
1068 |
msgid "Show only members only downloads"
|
1069 |
msgstr "Mostrar apenas os downloads dos membros"
|
1070 |
|
1071 |
-
# @ download_monitor
|
1072 |
#: templates/content-download-box.php:12
|
1073 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
1074 |
-
#, php-format
|
1075 |
msgid "1 download"
|
1076 |
msgid_plural "%d downloads"
|
1077 |
msgstr[0] "1 download"
|
1078 |
msgstr[1] "%d downloads"
|
1079 |
|
1080 |
-
# @ download_monitor
|
1081 |
#: templates/content-download-box.php:20
|
1082 |
#: templates/content-download-filename.php:8
|
1083 |
#: templates/content-download-title.php:8 templates/content-download.php:8
|
1084 |
-
#, php-format
|
1085 |
msgid "Version %s"
|
1086 |
msgstr "Versão %s"
|
1087 |
|
1088 |
-
# @ download_monitor
|
1089 |
#: templates/content-download-box.php:21
|
1090 |
msgid "Download File"
|
1091 |
msgstr "Baixar Arquivo"
|
1092 |
|
1093 |
#: templates/content-download-button.php:9
|
1094 |
-
#, php-format
|
1095 |
msgid "Download “%s”"
|
1096 |
msgstr "Download “%s”"
|
1097 |
|
1098 |
-
# @ download_monitor
|
1099 |
#: templates/content-download-button.php:10
|
1100 |
#: templates/content-download-version-list.php:17
|
1101 |
-
#, php-format
|
1102 |
msgid "Downloaded 1 time"
|
1103 |
msgid_plural "Downloaded %d times"
|
1104 |
msgstr[0] "Baixado 1 vez"
|
1105 |
msgstr[1] "Baixado %d vezes"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:22+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/download-monitor/language/pt_BR/)\n"
|
|
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: pt_BR\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
17 |
+
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "Opções"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
23 |
msgid "Add-ons"
|
24 |
msgstr "Complementos"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
27 |
msgid "Docs"
|
28 |
msgstr "Docs"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
#: includes/admin/class-dlm-admin-cpt.php:172
|
32 |
msgid "Categories"
|
33 |
msgstr "Categorias"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
|
|
36 |
msgid "Download Category"
|
37 |
msgstr "Categoria de Download"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
|
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "Procurar Categoria de Download"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
|
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "Todas Categorias de Download"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
|
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "Pai da Categoria de Download"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
|
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "Pai da Categoria de Download:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
|
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "Editar Categoria de Download"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
|
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "Atualizar Categoria de Download"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
|
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "Add Nova Categoria de Download"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
|
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "Nome da Nova Categoria de Download"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
|
|
72 |
#: includes/admin/class-dlm-admin-cpt.php:173
|
73 |
msgid "Tags"
|
74 |
msgstr "Tags"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
|
|
77 |
msgid "Download Tag"
|
78 |
msgstr "Tag de Download"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
|
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "Procurar Tag de Download"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
|
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "Todas as Tags de Download"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
|
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "Pai da Tag de Download"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
|
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "Pai da Tag de Download:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
|
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "Editar Tag de Download"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
|
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "Atualizar Tag de Download"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
|
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "Add Nova Tag de Download"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
|
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "Nome da Nova Tag de Download"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
|
|
|
|
113 |
msgid "All Downloads"
|
114 |
msgstr "Todos os Downloads"
|
115 |
|
116 |
+
#: download-monitor.php:304
|
|
|
|
|
117 |
msgid "Downloads"
|
118 |
msgstr "Downloads"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
|
|
121 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
122 |
msgid "Download"
|
123 |
msgstr "Download"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
|
|
126 |
msgid "Add New"
|
127 |
msgstr "Adicionar Novo"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
|
|
130 |
msgid "Add Download"
|
131 |
msgstr "Adicionar Download"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
|
|
134 |
msgid "Edit"
|
135 |
msgstr "Editar"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
|
|
138 |
msgid "Edit Download"
|
139 |
msgstr "Editar Download"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
|
|
142 |
msgid "New Download"
|
143 |
msgstr "Novo Download"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
|
|
146 |
msgid "View Download"
|
147 |
msgstr "Visualizar Download"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
|
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "Procurar Downloads"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
|
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "Nenhum Download encontrado"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
|
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "Nenhum Download encontrado na lixeira"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
|
|
162 |
msgid "Parent Download"
|
163 |
msgstr "Pai Download"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "Aqui é onde você pode criar e gerenciar downloads para o seu site."
|
168 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
msgid "Download Monitor Add-ons"
|
172 |
msgstr "Complementos do Download Monitor"
|
173 |
|
|
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
msgid "Select a category"
|
176 |
msgstr "Selecionar categoria"
|
177 |
|
|
|
|
|
178 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
179 |
msgid "Download title"
|
180 |
msgstr "Título do download"
|
181 |
|
|
|
182 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
184 |
msgid "Download updated."
|
185 |
msgstr "Download atualizado."
|
186 |
|
|
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
188 |
msgid "Custom field updated."
|
189 |
msgstr "Campo personalizado atualizado."
|
190 |
|
|
|
191 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
192 |
msgid "Custom field deleted."
|
193 |
msgstr "Campo personalizado apagado."
|
194 |
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "Download restaurado da revisão de %s"
|
198 |
|
|
|
199 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
200 |
msgid "Download published."
|
201 |
msgstr "Download postado."
|
202 |
|
|
|
203 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
204 |
msgid "Download saved."
|
205 |
msgstr "Download salvo."
|
206 |
|
|
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
208 |
msgid "Download submitted."
|
209 |
msgstr "Download enviado."
|
210 |
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "Download agendado para: <strong>%1$s</strong>."
|
214 |
|
|
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr "d M Y @ H:i"
|
218 |
|
|
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "Rascunho do download atualizado."
|
222 |
|
|
|
223 |
#: includes/admin/class-dlm-admin-cpt.php:167
|
224 |
msgid "Image"
|
225 |
msgstr "Imagem"
|
226 |
|
|
|
227 |
#: includes/admin/class-dlm-admin-cpt.php:168
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
msgid "Title"
|
230 |
msgstr "Título"
|
231 |
|
|
|
232 |
#: includes/admin/class-dlm-admin-cpt.php:169
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
msgid "ID"
|
235 |
msgstr "ID"
|
236 |
|
|
|
237 |
#: includes/admin/class-dlm-admin-cpt.php:170
|
238 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
239 |
msgid "File"
|
240 |
msgstr "Arquivo"
|
241 |
|
|
|
242 |
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
245 |
msgid "Version"
|
246 |
msgstr "Versão"
|
247 |
|
|
|
248 |
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
msgid "Download count"
|
253 |
msgstr "Contador do Download"
|
256 |
msgid "Featured"
|
257 |
msgstr "Destaque"
|
258 |
|
|
|
259 |
#: includes/admin/class-dlm-admin-cpt.php:176
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
msgid "Members only"
|
262 |
msgstr "Somente membros"
|
263 |
|
|
|
264 |
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
msgid "Redirect only"
|
266 |
msgstr "Somente redirecionar"
|
267 |
|
|
|
268 |
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "Upado em"
|
271 |
|
|
|
272 |
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
msgid "Yes"
|
276 |
msgstr "Sim"
|
277 |
|
|
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "Downloads Popular"
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "Ainda não há estatísticas disponíveis!"
|
285 |
|
|
|
286 |
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
#: includes/admin/class-dlm-admin-insert.php:40
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
msgid "Insert Download"
|
290 |
msgstr "Inserir Download"
|
291 |
|
292 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "Inserir Shortcode"
|
296 |
|
297 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
|
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "Add Download rápido"
|
300 |
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "Erro: O arquivo não foi criado."
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
|
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "Download criado com sucesso"
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
|
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "Erro: O download não foi criado."
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
|
|
314 |
msgid "Choose a download"
|
315 |
msgstr "Escolha o download"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
|
|
318 |
msgid "Template"
|
319 |
msgstr "Modelo"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
322 |
msgid "Template Name"
|
323 |
msgstr "Nome do Modelo"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
326 |
msgid ""
|
327 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "Deixando em branco será usado o arquivo de modelo padrão: <code>content-download.php</code>. Se você digitar, por exemplo, <code>image</code>, será usado o modelo: <code>content-download-image.php</code>."
|
|
|
|
|
|
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
|
|
333 |
msgid "Drop file here"
|
334 |
msgstr "Solte o arquivo aqui"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
|
|
338 |
msgid "or"
|
339 |
msgstr "ou"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
342 |
msgid "Select File"
|
343 |
msgstr "Selecione o arquivo"
|
344 |
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "Insira a URL manualmente"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
|
|
350 |
msgid "Download URL"
|
351 |
msgstr "URL do Download"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
|
|
354 |
msgid "Required URL"
|
355 |
msgstr "URL Obrigatória"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
|
|
358 |
msgid "Download Title"
|
359 |
msgstr "Título do Download"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
362 |
msgid "Required title"
|
363 |
msgstr "Título Obrigatório"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
366 |
msgid "Optional version number"
|
367 |
msgstr "Número da versão Opcional"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
|
|
370 |
msgid "Save Download"
|
371 |
msgstr "Salvar Download"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
|
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "Arquivos Permitidos"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
378 |
msgid "Please wait..."
|
379 |
msgstr "Por favor, aguarde..."
|
380 |
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "Procurar por um arquivo"
|
385 |
|
|
|
386 |
#: includes/admin/class-dlm-admin-media-browser.php:101
|
387 |
msgid "No files found"
|
388 |
msgstr "Nenhum arquivo encontrado"
|
389 |
|
|
|
390 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
391 |
msgid "Download Options"
|
392 |
msgstr "Opções do Download"
|
393 |
|
|
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
msgid "Downloadable Files/Versions"
|
396 |
msgstr "Versões Disponível do Arquivo"
|
397 |
|
|
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
msgid "Short Description"
|
400 |
msgstr "Descrição Curta"
|
401 |
|
|
|
402 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
403 |
msgid "Featured download"
|
404 |
msgstr "Download em Destaque"
|
411 |
msgid ""
|
412 |
"Only logged in users will be able to access the file via a download link if "
|
413 |
"this is enabled."
|
414 |
+
msgstr "Se ativado, apenas os usuários logados serão capazes de acessar o arquivo via link de download."
|
|
|
|
|
415 |
|
|
|
416 |
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
msgid "Redirect to file"
|
418 |
msgstr "Redirecionar para arquivo"
|
419 |
|
420 |
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr "Não forçar download. Se a pasta <code>dlm_upload</code> estiver protegida pode ser necessário mover seu arquivo."
|
|
|
|
|
425 |
|
|
|
426 |
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
msgid "Add file"
|
428 |
msgstr "Add arquivo"
|
435 |
msgid "Expand all"
|
436 |
msgstr "Expandir tudo"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
|
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "Você tem certeza de que deseja apagar este arquivo?"
|
441 |
|
|
|
442 |
#: includes/admin/class-dlm-admin.php:95
|
443 |
msgid "General"
|
444 |
msgstr "Geral"
|
445 |
|
|
|
446 |
#: includes/admin/class-dlm-admin.php:100
|
447 |
msgid "Default Template"
|
448 |
msgstr "Modelo Padrão"
|
451 |
msgid ""
|
452 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "Escolha qual modelo será usado com o shortcodes <code>[download]</code> por padrão, (podendo ser substituído pelo argumento <code>format</code>)."
|
|
|
|
|
455 |
|
456 |
#: includes/admin/class-dlm-admin.php:104
|
457 |
msgid "Default - Title and count"
|
463 |
|
464 |
#: includes/admin/class-dlm-admin.php:106
|
465 |
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr "Caixa - Caixa mostrando miniatura, título, contador, nome e tamanho do arquivo."
|
|
|
|
|
467 |
|
468 |
#: includes/admin/class-dlm-admin.php:107
|
469 |
msgid "Filename - Filename and download count"
|
470 |
msgstr "Nome do arquivo - Nome do arquivo e contador de download"
|
471 |
|
|
|
472 |
#: includes/admin/class-dlm-admin.php:108
|
473 |
msgid "Title - Shows download title only"
|
474 |
msgstr "Título - Exibe apenas o título do download"
|
475 |
|
476 |
#: includes/admin/class-dlm-admin.php:109
|
477 |
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr "Lista de versões - Lista todas as versões do download numa lista desordenada"
|
|
|
479 |
|
|
|
480 |
#: includes/admin/class-dlm-admin.php:110
|
481 |
msgid "Custom template"
|
482 |
msgstr "Modelo personalizado"
|
483 |
|
|
|
484 |
#: includes/admin/class-dlm-admin.php:116
|
485 |
msgid "Custom Template"
|
486 |
msgstr "Modelo Personalizado"
|
488 |
#: includes/admin/class-dlm-admin.php:117
|
489 |
msgid ""
|
490 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr "Deixando em branco será usado o arquivo modelo padrão <code>content-download.php</code>. Se você, por exemplo, inserir <code>image</code>, o modelo <code>content-download-image.php</code> será usado. Você pode adicionar modelos personalizados dentro da pasta do seu tema."
|
|
|
|
|
|
|
|
|
495 |
|
496 |
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "Ponto final"
|
499 |
|
|
|
500 |
#: includes/admin/class-dlm-admin.php:127
|
501 |
msgid "download"
|
502 |
msgstr "download"
|
503 |
|
|
|
504 |
#: includes/admin/class-dlm-admin.php:128
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "Ponto final do Download"
|
507 |
|
508 |
#: includes/admin/class-dlm-admin.php:129
|
|
|
509 |
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
+
msgstr "Define qual termo será usado como ponto final (extremidade) no link de download. Por padrão temos o termo <code>download</code> como ponto final (extremidade) e o resultado será: <code>%s</code>."
|
|
|
|
|
|
|
513 |
|
514 |
#: includes/admin/class-dlm-admin.php:134
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "Valor do Ponto final"
|
517 |
|
518 |
#: includes/admin/class-dlm-admin.php:135
|
|
|
519 |
msgid ""
|
520 |
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
+
msgstr "Define qual valor único será usado após o ponto final (extremidade) para identificar o arquivo no link de download. Ex.: Usando o <code>ID do Download</code> teremos o link assim: <code>%s</code>"
|
|
|
|
|
|
|
524 |
|
|
|
525 |
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
527 |
msgid "Download ID"
|
528 |
msgstr "ID do Download"
|
529 |
|
|
|
|
|
530 |
#: includes/admin/class-dlm-admin.php:139
|
531 |
msgid "Download slug"
|
532 |
msgstr "Slug do download"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "Ativar"
|
543 |
|
544 |
#: includes/admin/class-dlm-admin.php:147
|
545 |
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
|
|
|
|
|
|
|
|
548 |
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "Se suportado, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> pode ser usado para fornecer downloads ao invés do PHP (requer no servidor <code>mod_xsendfile</code>)."
|
550 |
|
551 |
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "Log"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
|
|
566 |
msgid "Download Log"
|
567 |
msgstr "Log dos Downloads"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
+
msgstr "Log com as tentativas de download, endereços de IP, agentes de usuário, data e muito mais."
|
|
|
|
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "Lista Negra de IPs"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
578 |
msgid ""
|
579 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
"wildcard."
|
581 |
+
msgstr "Lista de endereços de IP na lista negra, 1 por linha. Use <code>*</code> como wildcard."
|
|
|
|
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "Lista Negra dos agentes de usuário"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "Lista dos agentes de usuário de navegador na lista negra, 1 por linha."
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
592 |
msgid "Logs"
|
593 |
msgstr "Logs"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "Opções salvas com sucesso"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
|
|
600 |
msgid "Save Changes"
|
601 |
msgstr "Salvar Alterações"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
604 |
msgid "Download Logs"
|
605 |
msgstr "Logs dos Downloads"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
608 |
msgid "Export CSV"
|
609 |
msgstr "Exportar CSV"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
612 |
msgid "Delete Logs"
|
613 |
msgstr "Resetar Logs"
|
614 |
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
|
|
616 |
msgid "Version ID"
|
617 |
msgstr "ID da Versão"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
|
|
620 |
msgid "Filename"
|
621 |
msgstr "Nome do arquivo"
|
622 |
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
|
|
624 |
msgid "User ID"
|
625 |
msgstr "ID do Usuário"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
|
|
628 |
msgid "User Login"
|
629 |
msgstr "Login do Usuário"
|
630 |
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
msgid "User Email"
|
633 |
msgstr "Email do Usuário"
|
634 |
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
|
|
636 |
msgid "User IP"
|
637 |
msgstr "IP do Usuário"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
640 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
641 |
msgid "User Agent"
|
642 |
msgstr "Agente do Usuário"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
|
|
645 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
646 |
msgid "Date"
|
647 |
msgstr "Data"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
650 |
msgid "Status"
|
651 |
msgstr "Status"
|
652 |
|
|
|
653 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
654 |
msgid "Download Complete"
|
655 |
msgstr "Download Finalizado com Sucesso"
|
656 |
|
|
|
657 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "%s atrás"
|
660 |
|
|
|
661 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "Download #%d (não existe mais)"
|
664 |
|
665 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
670 |
msgid "Non-member"
|
671 |
msgstr "Não-membro"
|
672 |
|
|
|
673 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
674 |
msgid "User"
|
675 |
msgstr "Usuário"
|
676 |
|
|
|
677 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
678 |
msgid "IP Address"
|
679 |
msgstr "IP"
|
699 |
msgstr "Mostrar todas as datas"
|
700 |
|
701 |
#: includes/admin/class-dlm-logging-list-table.php:177
|
|
|
702 |
msgid "%1$s %2$d"
|
703 |
msgstr "%1$s %2$d"
|
704 |
|
718 |
msgid "200 per page"
|
719 |
msgstr "200 por página"
|
720 |
|
|
|
721 |
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
msgid "Show All"
|
723 |
msgstr "Mostrar Tudo"
|
726 |
msgid "Filter"
|
727 |
msgstr "Filtrar"
|
728 |
|
|
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
730 |
msgid "Remove"
|
731 |
msgstr "Apagar"
|
732 |
|
|
|
733 |
#: includes/admin/html-downloadable-file-version.php:4
|
734 |
msgid "Click to toggle"
|
735 |
msgstr "Clique para alternar"
|
736 |
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "Versão <span class=\"version\">%s</span> (%s)"
|
740 |
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
msgid "n/a"
|
744 |
msgstr "n/a"
|
745 |
|
|
|
746 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
msgstr[0] "Baixado %s vez"
|
750 |
msgstr[1] "Baixado %s vezes"
|
751 |
|
752 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
|
|
753 |
msgid "File URL(s)"
|
754 |
msgstr "URL(s) do Arquivo"
|
755 |
|
756 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
757 |
msgid ""
|
758 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
759 |
"(chosen at random)."
|
760 |
+
msgstr "Insira um caminho/URL do arquivo por linha - vários arquivos serão usados como espelhos (escolhidos aleatoriamente)."
|
|
|
|
|
761 |
|
762 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
|
|
763 |
msgid "Upload file"
|
764 |
msgstr "Enviar arquivo"
|
765 |
|
766 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
767 |
msgid "Choose a file"
|
768 |
msgstr "Escolha um arquivo"
|
769 |
|
770 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
|
|
771 |
msgid "Insert file URL"
|
772 |
msgstr "Inserir URL do arquivo"
|
773 |
|
774 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
775 |
msgid "Browse for file"
|
776 |
msgstr "Procurar por arquivo"
|
777 |
|
778 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
|
|
779 |
msgid "File Date"
|
780 |
msgstr "Data do Arquivo"
|
781 |
|
782 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
783 |
msgid "h"
|
784 |
msgstr "h"
|
785 |
|
786 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
787 |
msgid "m"
|
788 |
msgstr "m"
|
789 |
|
790 |
+
#: includes/class-dlm-download-handler.php:140
|
791 |
+
msgid "Password Required"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/class-dlm-download-handler.php:150
|
795 |
+
msgid "Download does not exist."
|
796 |
+
msgstr "Download não existe."
|
797 |
+
|
798 |
+
#: includes/class-dlm-download-handler.php:150
|
799 |
+
#: includes/class-dlm-download-handler.php:180
|
800 |
+
#: includes/class-dlm-download-handler.php:185
|
801 |
+
#: includes/class-dlm-download-handler.php:194
|
802 |
+
#: includes/class-dlm-download-handler.php:288
|
803 |
+
msgid "Go to homepage →"
|
804 |
+
msgstr "Ir para página inicial →"
|
805 |
+
|
806 |
+
#: includes/class-dlm-download-handler.php:150
|
807 |
+
#: includes/class-dlm-download-handler.php:180
|
808 |
+
#: includes/class-dlm-download-handler.php:185
|
809 |
+
#: includes/class-dlm-download-handler.php:194
|
810 |
+
#: includes/class-dlm-download-handler.php:288
|
811 |
+
msgid "Download Error"
|
812 |
+
msgstr "Erro no Download"
|
813 |
+
|
814 |
+
#: includes/class-dlm-download-handler.php:180
|
815 |
+
#: includes/class-dlm-download-handler.php:185
|
816 |
+
msgid "No file paths defined."
|
817 |
+
msgstr "Nenhum caminho do arquivo foi definido."
|
818 |
+
|
819 |
+
#: includes/class-dlm-download-handler.php:194
|
820 |
+
msgid "You do not have permission to access this download."
|
821 |
+
msgstr "Você não tem permissão para fazer este download."
|
822 |
+
|
823 |
+
#: includes/class-dlm-download-handler.php:212
|
824 |
+
#: includes/class-dlm-download-handler.php:228
|
825 |
+
#: includes/class-dlm-download-handler.php:235
|
826 |
+
#: includes/class-dlm-download-handler.php:242
|
827 |
+
msgid "Redirected to file"
|
828 |
+
msgstr "Redirecionado para arquivo"
|
829 |
+
|
830 |
+
#: includes/class-dlm-download-handler.php:281
|
831 |
+
msgid "Redirected to remote file."
|
832 |
+
msgstr "Redirecionado para arquivo remoto."
|
833 |
+
|
834 |
+
#: includes/class-dlm-download-handler.php:286
|
835 |
+
msgid "File not found"
|
836 |
+
msgstr "Arquivo não encontrado"
|
837 |
+
|
838 |
+
#: includes/class-dlm-download-handler.php:288
|
839 |
+
msgid "File not found."
|
840 |
+
msgstr "Arquivo não encontrado."
|
841 |
+
|
842 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
843 |
+
msgid "Download not found"
|
844 |
+
msgstr "Download não encontrado."
|
845 |
+
|
846 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
847 |
msgid "Display a list of your downloads."
|
848 |
msgstr "Exibirá uma lista de seus downloads disponíveis."
|
849 |
|
|
|
850 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
851 |
msgid "Downloads List"
|
852 |
msgstr "Lista de Downloads"
|
853 |
|
|
|
854 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
855 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
856 |
msgid "Featured Downloads"
|
857 |
msgstr "Downloads em Destaque"
|
858 |
|
|
|
859 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
860 |
msgid "Title:"
|
861 |
msgstr "Título:"
|
868 |
msgid "Output template:"
|
869 |
msgstr "Modelo de saída:"
|
870 |
|
|
|
871 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
872 |
msgid "Default template"
|
873 |
msgstr "Modelo padrão"
|
880 |
msgid "Random"
|
881 |
msgstr "Aletoriamente"
|
882 |
|
|
|
883 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
884 |
msgid "Date added"
|
885 |
msgstr "Data de upload"
|
886 |
|
|
|
887 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
888 |
msgid "Date modified"
|
889 |
msgstr "Data de modificação"
|
900 |
msgid "DESC"
|
901 |
msgstr "Decrescente"
|
902 |
|
|
|
903 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
904 |
msgid "Show only featured downloads"
|
905 |
msgstr "Mostrar apenas os downloads em destaque"
|
906 |
|
|
|
907 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
908 |
msgid "Show only members only downloads"
|
909 |
msgstr "Mostrar apenas os downloads dos membros"
|
910 |
|
|
|
911 |
#: templates/content-download-box.php:12
|
912 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
|
|
913 |
msgid "1 download"
|
914 |
msgid_plural "%d downloads"
|
915 |
msgstr[0] "1 download"
|
916 |
msgstr[1] "%d downloads"
|
917 |
|
|
|
918 |
#: templates/content-download-box.php:20
|
919 |
#: templates/content-download-filename.php:8
|
920 |
#: templates/content-download-title.php:8 templates/content-download.php:8
|
|
|
921 |
msgid "Version %s"
|
922 |
msgstr "Versão %s"
|
923 |
|
|
|
924 |
#: templates/content-download-box.php:21
|
925 |
msgid "Download File"
|
926 |
msgstr "Baixar Arquivo"
|
927 |
|
928 |
#: templates/content-download-button.php:9
|
|
|
929 |
msgid "Download “%s”"
|
930 |
msgstr "Download “%s”"
|
931 |
|
|
|
932 |
#: templates/content-download-button.php:10
|
933 |
#: templates/content-download-version-list.php:17
|
|
|
934 |
msgid "Downloaded 1 time"
|
935 |
msgid_plural "Downloaded %d times"
|
936 |
msgstr[0] "Baixado 1 vez"
|
937 |
msgstr[1] "Baixado %d vezes"
|
938 |
+
|
939 |
+
#. Plugin Name of the plugin/theme
|
940 |
+
msgid "Download Monitor"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#. Plugin URI of the plugin/theme
|
944 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#. Description of the plugin/theme
|
948 |
+
msgid ""
|
949 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
950 |
+
"outputting download links and file information on your WordPress powered "
|
951 |
+
"site."
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#. Author of the plugin/theme
|
955 |
+
msgid "Mike Jolley"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#. Author URI of the plugin/theme
|
959 |
+
msgid "http://mikejolley.com"
|
960 |
+
msgstr ""
|
languages/download-monitor-sr_RS.mo
ADDED
Binary file
|
languages/{download_monitor-sr_RS.po → download-monitor-sr_RS.po}
RENAMED
@@ -1,1099 +1,963 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
|
15 |
-
|
16 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Textdomain-Support: yes\n"
|
18 |
-
"X-Poedit-SearchPath-0: .\n"
|
19 |
-
|
20 |
-
# @ download_monitor
|
21 |
-
#: download-monitor.php:90 includes/admin/class-dlm-admin.php:233
|
22 |
msgid "Settings"
|
23 |
msgstr "Postavke"
|
24 |
|
25 |
-
|
26 |
-
#: download-monitor.php:91
|
27 |
msgid "Add-ons"
|
28 |
msgstr "Add-ons"
|
29 |
|
30 |
-
|
31 |
-
#: download-monitor.php:92
|
32 |
msgid "Docs"
|
33 |
msgstr "Docs"
|
34 |
|
35 |
-
|
36 |
-
#:
|
37 |
-
#: includes/admin/class-dlm-admin-cpt.php:174
|
38 |
msgid "Categories"
|
39 |
msgstr "Kategorije"
|
40 |
|
41 |
-
|
42 |
-
#: download-monitor.php:242
|
43 |
msgid "Download Category"
|
44 |
msgstr "Download kategorije"
|
45 |
|
46 |
-
|
47 |
-
#: download-monitor.php:243
|
48 |
msgid "Search Download Categories"
|
49 |
msgstr "Pretraga downloada kategorija"
|
50 |
|
51 |
-
|
52 |
-
#: download-monitor.php:244
|
53 |
msgid "All Download Categories"
|
54 |
msgstr "Sve downloadovane kategorije"
|
55 |
|
56 |
-
|
57 |
-
#: download-monitor.php:245
|
58 |
msgid "Parent Download Category"
|
59 |
msgstr "Parent Download kategorija"
|
60 |
|
61 |
-
|
62 |
-
#: download-monitor.php:246
|
63 |
msgid "Parent Download Category:"
|
64 |
msgstr "Parent Download kategorija:"
|
65 |
|
66 |
-
|
67 |
-
#: download-monitor.php:247
|
68 |
msgid "Edit Download Category"
|
69 |
msgstr "Edit Download kategorija"
|
70 |
|
71 |
-
|
72 |
-
#: download-monitor.php:248
|
73 |
msgid "Update Download Category"
|
74 |
msgstr "Update Download kategorija"
|
75 |
|
76 |
-
|
77 |
-
#: download-monitor.php:249
|
78 |
msgid "Add New Download Category"
|
79 |
msgstr "Dodaj novu Download kategoriju"
|
80 |
|
81 |
-
|
82 |
-
#: download-monitor.php:250
|
83 |
msgid "New Download Category Name"
|
84 |
msgstr "Novo Download ime kategorije"
|
85 |
|
86 |
-
|
87 |
-
#:
|
88 |
-
#: includes/admin/class-dlm-admin-cpt.php:175
|
89 |
msgid "Tags"
|
90 |
msgstr "Tagovi"
|
91 |
|
92 |
-
|
93 |
-
#: download-monitor.php:272
|
94 |
msgid "Download Tag"
|
95 |
msgstr "Download Tag"
|
96 |
|
97 |
-
|
98 |
-
#: download-monitor.php:273
|
99 |
msgid "Search Download Tags"
|
100 |
msgstr "Pretraga Download Tagova"
|
101 |
|
102 |
-
|
103 |
-
#: download-monitor.php:274
|
104 |
msgid "All Download Tags"
|
105 |
msgstr "Svi Download Tagovi"
|
106 |
|
107 |
-
|
108 |
-
#: download-monitor.php:275
|
109 |
msgid "Parent Download Tag"
|
110 |
msgstr "Parent Download Tag"
|
111 |
|
112 |
-
|
113 |
-
#: download-monitor.php:276
|
114 |
msgid "Parent Download Tag:"
|
115 |
msgstr "Parent Download Tag:"
|
116 |
|
117 |
-
|
118 |
-
#: download-monitor.php:277
|
119 |
msgid "Edit Download Tag"
|
120 |
msgstr "Edit Download Tag"
|
121 |
|
122 |
-
|
123 |
-
#: download-monitor.php:278
|
124 |
msgid "Update Download Tag"
|
125 |
msgstr "Update Download Tag"
|
126 |
|
127 |
-
|
128 |
-
#: download-monitor.php:279
|
129 |
msgid "Add New Download Tag"
|
130 |
msgstr "Dodati novi Download Tag"
|
131 |
|
132 |
-
|
133 |
-
#: download-monitor.php:280
|
134 |
msgid "New Download Tag Name"
|
135 |
msgstr "Novo ime download taga"
|
136 |
|
137 |
-
|
138 |
-
|
|
|
|
|
|
|
139 |
msgid "Downloads"
|
140 |
msgstr "Downloads"
|
141 |
|
142 |
-
|
143 |
-
#: download-monitor.php:302 includes/admin/class-dlm-admin-dashboard.php:69
|
144 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
145 |
msgid "Download"
|
146 |
msgstr "Download"
|
147 |
|
148 |
-
|
149 |
-
#: download-monitor.php:303
|
150 |
msgid "Add New"
|
151 |
msgstr "Dodaj novi"
|
152 |
|
153 |
-
|
154 |
-
#: download-monitor.php:304
|
155 |
msgid "Add Download"
|
156 |
msgstr "Dodaj download"
|
157 |
|
158 |
-
|
159 |
-
#: download-monitor.php:305
|
160 |
msgid "Edit"
|
161 |
msgstr "Edit"
|
162 |
|
163 |
-
|
164 |
-
#: download-monitor.php:306
|
165 |
msgid "Edit Download"
|
166 |
msgstr "Edit Download"
|
167 |
|
168 |
-
|
169 |
-
#: download-monitor.php:307
|
170 |
msgid "New Download"
|
171 |
msgstr "Novi Download"
|
172 |
|
173 |
-
|
174 |
-
#: download-monitor.php:308 download-monitor.php:309
|
175 |
msgid "View Download"
|
176 |
msgstr "Pregledaj Download"
|
177 |
|
178 |
-
|
179 |
-
#: download-monitor.php:310
|
180 |
msgid "Search Downloads"
|
181 |
msgstr "Pretraga Download-ova"
|
182 |
|
183 |
-
|
184 |
-
#: download-monitor.php:311
|
185 |
msgid "No Downloads found"
|
186 |
msgstr "Nijedan download nije pronadjen"
|
187 |
|
188 |
-
|
189 |
-
#: download-monitor.php:312
|
190 |
msgid "No Downloads found in trash"
|
191 |
msgstr "Nijedan download nije pronadjen u djubretu"
|
192 |
|
193 |
-
|
194 |
-
#: download-monitor.php:313
|
195 |
msgid "Parent Download"
|
196 |
msgstr "Parent Download"
|
197 |
|
198 |
-
|
199 |
-
#: download-monitor.php:315
|
200 |
msgid "This is where you can create and manage downloads for your site."
|
201 |
msgstr "Ovde možete da napravite i upravljate download-ove za vaš sajt"
|
202 |
|
203 |
-
|
|
|
|
|
|
|
|
|
204 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
205 |
msgid "Select a category"
|
206 |
msgstr "Izaberite kategoriju"
|
207 |
|
208 |
-
# @ download_monitor
|
209 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
210 |
msgid "Download title"
|
211 |
msgstr "Download-ujte naslov"
|
212 |
|
213 |
-
# @ download_monitor
|
214 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
216 |
msgid "Download updated."
|
217 |
msgstr "Download updatedovana."
|
218 |
|
219 |
-
# @ download_monitor
|
220 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
221 |
msgid "Custom field updated."
|
222 |
msgstr "Custom field updateovan."
|
223 |
|
224 |
-
# @ download_monitor
|
225 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
226 |
msgid "Custom field deleted."
|
227 |
msgstr "Custom field obrisan."
|
228 |
|
229 |
-
# @ download_monitor
|
230 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
231 |
-
#, php-format
|
232 |
msgid "Download restored to revision from %s"
|
233 |
msgstr "Download povraćen revizijom iz %s"
|
234 |
|
235 |
-
# @ download_monitor
|
236 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
237 |
msgid "Download published."
|
238 |
msgstr "Download objavljen."
|
239 |
|
240 |
-
# @ download_monitor
|
241 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
242 |
msgid "Download saved."
|
243 |
msgstr "Download sačuvan."
|
244 |
|
245 |
-
# @ download_monitor
|
246 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
247 |
msgid "Download submitted."
|
248 |
msgstr "Download podnešen."
|
249 |
|
250 |
-
# @ download_monitor
|
251 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
252 |
-
#, php-format
|
253 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
254 |
msgstr "Download zakazan za:<strong>%1$s</strong>."
|
255 |
|
256 |
-
# @ download_monitor
|
257 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
258 |
msgid "M j, Y @ G:i"
|
259 |
msgstr "M j, Y @ G:i"
|
260 |
|
261 |
-
# @ download_monitor
|
262 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
263 |
msgid "Download draft updated."
|
264 |
msgstr "Download draft updateovan."
|
265 |
|
266 |
-
|
267 |
-
#: includes/admin/class-dlm-admin-cpt.php:169
|
268 |
msgid "Image"
|
269 |
msgstr "Slika"
|
270 |
|
271 |
-
|
272 |
-
#: includes/admin/class-dlm-admin-cpt.php:170
|
273 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
274 |
msgid "Title"
|
275 |
msgstr "Naslov"
|
276 |
|
277 |
-
|
278 |
-
#: includes/admin/class-dlm-admin-cpt.php:171
|
279 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
280 |
msgid "ID"
|
281 |
msgstr "ID"
|
282 |
|
283 |
-
|
284 |
-
#: includes/admin/class-dlm-admin-cpt.php:172
|
285 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
286 |
msgid "File"
|
287 |
msgstr "Fajl"
|
288 |
|
289 |
-
|
290 |
-
#: includes/admin/class-dlm-admin-
|
291 |
-
#: includes/admin/
|
292 |
-
#: includes/admin/html-downloadable-file-version.php:13
|
293 |
msgid "Version"
|
294 |
msgstr "Verzija"
|
295 |
|
296 |
-
|
297 |
-
#: includes/admin/class-dlm-admin-
|
298 |
-
|
299 |
-
|
|
|
|
|
300 |
|
301 |
-
|
302 |
-
#: includes/admin/class-dlm-admin-cpt.php:178
|
303 |
msgid "Featured"
|
304 |
msgstr "Istaknuto"
|
305 |
|
306 |
-
|
307 |
-
#: includes/admin/class-dlm-admin-cpt.php:179
|
308 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
309 |
msgid "Members only"
|
310 |
msgstr "Samo članovi"
|
311 |
|
312 |
-
|
313 |
-
|
|
|
|
|
|
|
314 |
msgid "Date posted"
|
315 |
msgstr "Datum postovan"
|
316 |
|
317 |
-
|
|
|
|
|
|
|
|
|
|
|
318 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
319 |
msgid "Popular Downloads"
|
320 |
msgstr "Popular Download-ovi"
|
321 |
|
322 |
-
# @ download_monitor
|
323 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
324 |
msgid "There are no stats available yet!"
|
325 |
msgstr "Još uvek nema dostupnih rezultata."
|
326 |
|
327 |
-
|
328 |
-
#: includes/admin/class-dlm-admin-
|
329 |
-
#: includes/admin/html-downloadable-file-version.php:29
|
330 |
-
#: includes/widgets/class-dlm-widget-downloads.php:176
|
331 |
-
msgid "Download count"
|
332 |
-
msgstr "Računanje download-a"
|
333 |
-
|
334 |
-
# @ download_monitor
|
335 |
-
#: includes/admin/class-dlm-admin-insert.php:29
|
336 |
-
#: includes/admin/class-dlm-admin-insert.php:37
|
337 |
#: includes/admin/class-dlm-admin-insert.php:68
|
338 |
msgid "Insert Download"
|
339 |
msgstr "Unesite download"
|
340 |
|
341 |
-
# @ download_monitor
|
342 |
#: includes/admin/class-dlm-admin-insert.php:78
|
343 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
344 |
msgid "Insert Shortcode"
|
345 |
msgstr "Unesite shortcode"
|
346 |
|
347 |
-
# @ download_monitor
|
348 |
#: includes/admin/class-dlm-admin-insert.php:78
|
349 |
msgid "Quick-add download"
|
350 |
msgstr "Quick-add download"
|
351 |
|
352 |
-
# @ download_monitor
|
353 |
#: includes/admin/class-dlm-admin-insert.php:122
|
354 |
msgid "Error: File was not created."
|
355 |
msgstr "Error: Fajl nije stvoren."
|
356 |
|
357 |
-
|
358 |
-
#: includes/admin/class-dlm-admin-insert.php:129
|
359 |
msgid "Download successfully created."
|
360 |
msgstr "Download uspešno stvoren."
|
361 |
|
362 |
-
|
363 |
-
#: includes/admin/class-dlm-admin-insert.php:131
|
364 |
msgid "Error: Download was not created."
|
365 |
msgstr "Error: Download nije stvoren."
|
366 |
|
367 |
-
|
368 |
-
#: includes/admin/class-dlm-admin-insert.php:149
|
369 |
msgid "Choose a download"
|
370 |
msgstr "Izaberite download"
|
371 |
|
372 |
-
|
373 |
-
#: includes/admin/class-dlm-admin-insert.php:161
|
374 |
msgid "Template"
|
375 |
msgstr "Template"
|
376 |
|
377 |
-
|
378 |
-
#: includes/admin/class-dlm-admin-insert.php:162
|
379 |
msgid "Template Name"
|
380 |
msgstr "Ime template"
|
381 |
|
382 |
-
|
383 |
-
#: includes/admin/class-dlm-admin-insert.php:164
|
384 |
-
#: includes/admin/class-dlm-admin.php:101
|
385 |
msgid ""
|
386 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
387 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
388 |
-
"
|
389 |
-
msgstr ""
|
390 |
-
"Ako ostavite ovo prazno biće korišćen default <code>content-download.php</"
|
391 |
-
"code> template fajl. Ako uneste npr<code>image</code>, the <code>content-"
|
392 |
-
"download-image.php</code> template će biti korišćena."
|
393 |
|
394 |
-
|
395 |
-
#: includes/admin/class-dlm-admin-insert.php:179
|
396 |
msgid "Drop file here"
|
397 |
msgstr "Ubacite fajl ovde"
|
398 |
|
399 |
-
|
400 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
401 |
-
#: includes/admin/class-dlm-admin-insert.php:182
|
402 |
msgid "or"
|
403 |
msgstr "ili"
|
404 |
|
405 |
-
|
406 |
-
#: includes/admin/class-dlm-admin-insert.php:181
|
407 |
msgid "Select File"
|
408 |
msgstr "Izaberi fajl"
|
409 |
|
410 |
-
|
411 |
-
#: includes/admin/class-dlm-admin-insert.php:183
|
412 |
msgid "Enter URL manually"
|
413 |
msgstr "Unesite URL ručno"
|
414 |
|
415 |
-
|
416 |
-
#: includes/admin/class-dlm-admin-insert.php:189
|
417 |
msgid "Download URL"
|
418 |
msgstr "Download URL"
|
419 |
|
420 |
-
|
421 |
-
#: includes/admin/class-dlm-admin-insert.php:190
|
422 |
msgid "Required URL"
|
423 |
msgstr "Zahtevani URL"
|
424 |
|
425 |
-
|
426 |
-
#: includes/admin/class-dlm-admin-insert.php:193
|
427 |
msgid "Download Title"
|
428 |
msgstr "Download-ovani naslov"
|
429 |
|
430 |
-
|
431 |
-
#: includes/admin/class-dlm-admin-insert.php:194
|
432 |
msgid "Required title"
|
433 |
msgstr "Zahtevani naslov"
|
434 |
|
435 |
-
|
436 |
-
#: includes/admin/class-dlm-admin-insert.php:198
|
437 |
msgid "Optional version number"
|
438 |
msgstr "Broj opcionalne verzije"
|
439 |
|
440 |
-
|
441 |
-
#: includes/admin/class-dlm-admin-insert.php:201
|
442 |
msgid "Save Download"
|
443 |
msgstr "Sačuvaj download"
|
444 |
|
445 |
-
|
446 |
-
#: includes/admin/class-dlm-admin-insert.php:259
|
447 |
msgid "Allowed Files"
|
448 |
msgstr "Dozvoljeni fajlovi"
|
449 |
|
450 |
-
|
451 |
-
#: includes/admin/class-dlm-admin-insert.php:309
|
452 |
msgid "Please wait..."
|
453 |
msgstr "Molimo sačekajte..."
|
454 |
|
455 |
-
# @ download_monitor
|
456 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
457 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
458 |
msgid "Browse for a file"
|
459 |
msgstr "Pretraga za fajlom"
|
460 |
|
461 |
-
|
462 |
-
#: includes/admin/class-dlm-admin-media-browser.php:100
|
463 |
msgid "No files found"
|
464 |
msgstr "Fajl nije pronadjen"
|
465 |
|
466 |
-
# @ download_monitor
|
467 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
468 |
msgid "Download Options"
|
469 |
msgstr "Download opcije"
|
470 |
|
471 |
-
# @ download_monitor
|
472 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
473 |
-
msgid "Downloadable
|
474 |
-
msgstr "
|
475 |
|
476 |
-
# @ download_monitor
|
477 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
478 |
msgid "Short Description"
|
479 |
msgstr "Kratak opis"
|
480 |
|
481 |
-
# @ download_monitor
|
482 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
483 |
msgid "Featured download"
|
484 |
msgstr "Trenutni download"
|
485 |
|
486 |
-
# @ download_monitor
|
487 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
488 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
489 |
msgstr "Označite ovaj download. Koristite shortcodeove i widgete."
|
490 |
|
491 |
-
# @ download_monitor
|
492 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
493 |
msgid ""
|
494 |
"Only logged in users will be able to access the file via a download link if "
|
495 |
"this is enabled."
|
496 |
-
msgstr ""
|
497 |
-
"Samo ulogovani korisnici će biti u mogućnost da pristupe fajlu via download "
|
498 |
-
"linka ako je ovo omogućeno."
|
499 |
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
msgstr "Dodajte verziju"
|
504 |
|
505 |
-
|
506 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
msgid "Close all"
|
508 |
msgstr "Zatvorite sve"
|
509 |
|
510 |
-
|
511 |
-
#: includes/admin/class-dlm-admin-writepanels.php:93
|
512 |
msgid "Expand all"
|
513 |
msgstr "Proširite sve"
|
514 |
|
515 |
-
|
516 |
-
#: includes/admin/class-dlm-admin-writepanels.php:216
|
517 |
msgid "Are you sure you want to delete this file?"
|
518 |
msgstr "Da li ste sigurni da izbrišete ovaj fajl?"
|
519 |
|
520 |
-
|
521 |
-
#: includes/admin/class-dlm-admin.php:94
|
522 |
msgid "General"
|
523 |
msgstr "Opšte"
|
524 |
|
525 |
-
# @ download_monitor
|
526 |
#: includes/admin/class-dlm-admin.php:100
|
527 |
msgid "Default Template"
|
528 |
msgstr "Default Template"
|
529 |
|
530 |
-
# @ download_monitor
|
531 |
#: includes/admin/class-dlm-admin.php:101
|
532 |
msgid ""
|
533 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
534 |
"default (this can be overridden by the <code>format</code> argument)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
535 |
msgstr ""
|
536 |
-
"Izaberite koju ćete template da koristite za <code>[download]</code> "
|
537 |
-
"shortcode-ove po default-u (ovo može biti prepisano kodom <code>format</"
|
538 |
-
"code> argument)."
|
539 |
|
540 |
-
# @ download_monitor
|
541 |
#: includes/admin/class-dlm-admin.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
msgid "Endpoint"
|
543 |
msgstr "Krajnja tačka"
|
544 |
|
545 |
-
|
546 |
-
#: includes/admin/class-dlm-admin.php:111
|
547 |
msgid "download"
|
548 |
msgstr "download"
|
549 |
|
550 |
-
|
551 |
-
#: includes/admin/class-dlm-admin.php:112
|
552 |
msgid "Download Endpoint"
|
553 |
msgstr "Download Endpoint"
|
554 |
|
555 |
-
|
556 |
-
#: includes/admin/class-dlm-admin.php:113
|
557 |
-
#, php-format
|
558 |
msgid ""
|
559 |
-
"Define what endpoint should be used for download links. By default this will
|
560 |
-
"be <code>%s</code>."
|
561 |
-
msgstr ""
|
562 |
-
"Definišite koja krajnja tačka će biti korišćena za download linkova. Po "
|
563 |
-
"defaultu ovo će biti<code>%s</code>."
|
564 |
|
565 |
-
|
566 |
-
#: includes/admin/class-dlm-admin.php:118
|
567 |
msgid "Endpoint Value"
|
568 |
msgstr "Vrednost krajnje tačke"
|
569 |
|
570 |
-
|
571 |
-
#: includes/admin/class-dlm-admin.php:119
|
572 |
-
#, php-format
|
573 |
msgid ""
|
574 |
"Define what unique value should be used on the end of your endpoint to "
|
575 |
-
"identify the downloadable file. e.g. ID would give a link like
|
576 |
-
"code>"
|
577 |
-
msgstr ""
|
578 |
-
"Definišite koja jedinstvena vrednost treba da bude korišćena na kraju vaše "
|
579 |
-
"krajnje tačke za identifikaciju dowload-ujućeg fajla npr ID će dati link "
|
580 |
"<code>%s</code>"
|
|
|
581 |
|
582 |
-
|
583 |
-
#: includes/admin/class-dlm-admin.php:
|
584 |
-
#: includes/admin/class-dlm-admin.php:407
|
585 |
msgid "Download ID"
|
586 |
msgstr "Download ID"
|
587 |
|
588 |
-
|
589 |
-
#: includes/admin/class-dlm-admin.php:123
|
590 |
msgid "Download slug"
|
591 |
msgstr "Download slug"
|
592 |
|
593 |
-
|
594 |
-
#: includes/admin/class-dlm-admin.php:129
|
595 |
msgid "X-Accel-Redirect / X-Sendfile"
|
596 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
597 |
|
598 |
-
|
599 |
-
#: includes/admin/class-dlm-admin.php:
|
600 |
-
#: includes/admin/class-dlm-admin.php:
|
601 |
msgid "Enable"
|
602 |
msgstr "Omogući"
|
603 |
|
604 |
-
|
605 |
-
#: includes/admin/class-dlm-admin.php:131
|
606 |
msgid ""
|
607 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be
|
608 |
-
"used to serve downloads instead of PHP (server requires
|
609 |
-
"code>)."
|
610 |
-
msgstr ""
|
611 |
-
"Ako je podržano<code>X-Accel-Redirect</code> / <code>X-Sendfile</code> može "
|
612 |
-
"biti korišćen za služenje download-ovima umesto PHP (serveri traže "
|
613 |
"<code>mod_xsendfile</code>)."
|
|
|
614 |
|
615 |
-
|
616 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
617 |
msgid "Logging"
|
618 |
msgstr "Logging"
|
619 |
|
620 |
-
|
621 |
-
#: includes/admin/class-dlm-admin.php:143
|
622 |
msgid "Download Log"
|
623 |
msgstr "Download Log"
|
624 |
|
625 |
-
|
626 |
-
#: includes/admin/class-dlm-admin.php:144
|
627 |
msgid "Log download attempts, IP addresses and more."
|
628 |
msgstr "Pokušaj log downloada, IP adresea i još toga."
|
629 |
|
630 |
-
|
631 |
-
#: includes/admin/class-dlm-admin.php:150
|
632 |
msgid "Blacklist IPs"
|
633 |
msgstr "IP crna lista"
|
634 |
|
635 |
-
|
636 |
-
#: includes/admin/class-dlm-admin.php:151
|
637 |
msgid ""
|
638 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
639 |
"wildcard."
|
640 |
-
msgstr ""
|
641 |
-
"Lista IP adresa za crnu listu, 1 po rečenici. Koristi <code>*</code>se za "
|
642 |
-
"wildcard."
|
643 |
|
644 |
-
|
645 |
-
#: includes/admin/class-dlm-admin.php:158
|
646 |
msgid "Blacklist user agents"
|
647 |
msgstr "Crna lista agenta korisnika "
|
648 |
|
649 |
-
|
650 |
-
#: includes/admin/class-dlm-admin.php:159
|
651 |
msgid "List browser user agents to blacklist, 1 per line."
|
652 |
msgstr "Lista pretraživača agenta korisnika za crnu listu, 1 po rečenici."
|
653 |
|
654 |
-
|
655 |
-
#: includes/admin/class-dlm-admin.php:231
|
656 |
msgid "Logs"
|
657 |
msgstr "Logs"
|
658 |
|
659 |
-
|
660 |
-
#: includes/admin/class-dlm-admin.php:264
|
661 |
msgid "Settings successfully saved"
|
662 |
msgstr "Postavke sačuvane uspešno"
|
663 |
|
664 |
-
|
665 |
-
#: includes/admin/class-dlm-admin.php:331
|
666 |
msgid "Save Changes"
|
667 |
msgstr "Sačuvaj promene"
|
668 |
|
669 |
-
|
670 |
-
#: includes/admin/class-dlm-admin.php:368
|
671 |
msgid "Download Logs"
|
672 |
msgstr "Download Logs"
|
673 |
|
674 |
-
|
675 |
-
#: includes/admin/class-dlm-admin.php:368
|
676 |
msgid "Export CSV"
|
677 |
msgstr "Export CSV"
|
678 |
|
679 |
-
|
680 |
-
|
|
|
|
|
|
|
681 |
msgid "Version ID"
|
682 |
msgstr "ID verzija"
|
683 |
|
684 |
-
|
685 |
-
|
|
|
|
|
|
|
686 |
msgid "User ID"
|
687 |
msgstr "ID korisnika"
|
688 |
|
689 |
-
|
690 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
691 |
msgid "User IP"
|
692 |
msgstr "IP korisnika"
|
693 |
|
694 |
-
|
695 |
-
#: includes/admin/class-dlm-admin.php:414
|
696 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
697 |
msgid "User Agent"
|
698 |
msgstr "Agent korisnik"
|
699 |
|
700 |
-
|
701 |
-
#: includes/admin/class-dlm-admin.php:415
|
702 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
703 |
msgid "Date"
|
704 |
msgstr "Date"
|
705 |
|
706 |
-
|
707 |
-
#: includes/admin/class-dlm-admin.php:416
|
708 |
msgid "Status"
|
709 |
msgstr "Status"
|
710 |
|
711 |
-
# @ download_monitor
|
712 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
713 |
msgid "Download Complete"
|
714 |
msgstr "Download završen"
|
715 |
|
716 |
-
# @ download_monitor
|
717 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
718 |
-
#, php-format
|
719 |
msgid "%s ago"
|
720 |
msgstr "%s ago"
|
721 |
|
722 |
-
# @ download_monitor
|
723 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
724 |
-
#, php-format
|
725 |
msgid "Download #%d (no longer exists)"
|
726 |
msgstr "Download #%d (ne postoji više)"
|
727 |
|
728 |
-
# @ download_monitor
|
729 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
730 |
-
#, php-format
|
731 |
msgid "v%s"
|
732 |
msgstr "v%s"
|
733 |
|
734 |
-
# @ download_monitor
|
735 |
#: includes/admin/class-dlm-logging-list-table.php:92
|
736 |
msgid "Non-member"
|
737 |
msgstr "Nije član"
|
738 |
|
739 |
-
# @ download_monitor
|
740 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
741 |
msgid "User"
|
742 |
msgstr "Korisnik"
|
743 |
|
744 |
-
# @ download_monitor
|
745 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
746 |
msgid "IP Address"
|
747 |
msgstr "IP adresa"
|
748 |
|
749 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
#: includes/admin/html-downloadable-file-version.php:3
|
751 |
msgid "Remove"
|
752 |
msgstr "Ukloniti"
|
753 |
|
754 |
-
# @ download_monitor
|
755 |
#: includes/admin/html-downloadable-file-version.php:4
|
756 |
msgid "Click to toggle"
|
757 |
msgstr "Klika za toggle"
|
758 |
|
759 |
-
# @ download_monitor
|
760 |
#: includes/admin/html-downloadable-file-version.php:5
|
761 |
-
#, php-format
|
762 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
763 |
msgstr "Verzija<span class=\"version\">%s</span> (%s)"
|
764 |
|
765 |
-
# @ download_monitor
|
766 |
#: includes/admin/html-downloadable-file-version.php:5
|
767 |
-
#: includes/admin/html-downloadable-file-version.php:
|
768 |
msgid "n/a"
|
769 |
msgstr "n/a"
|
770 |
|
771 |
-
# @ download_monitor
|
772 |
#: includes/admin/html-downloadable-file-version.php:5
|
773 |
-
#, php-format
|
774 |
msgid "Downloaded %s time"
|
775 |
msgid_plural "Downloaded %s times"
|
776 |
-
msgstr[0] "
|
777 |
-
msgstr[1] "
|
|
|
778 |
|
779 |
-
|
780 |
-
#: includes/admin/html-downloadable-file-version.php:18
|
781 |
msgid "File URL(s)"
|
782 |
msgstr "File URL(s)"
|
783 |
|
784 |
-
|
785 |
-
#: includes/admin/html-downloadable-file-version.php:19
|
786 |
msgid ""
|
787 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
788 |
"(chosen at random)."
|
789 |
-
msgstr ""
|
790 |
-
"Unesite jedanu putanju fajla-URL po rečenici brojni fajlovi će biti "
|
791 |
-
"korišćeni kao ogledala (izabrano nasumično)."
|
792 |
|
793 |
-
|
794 |
-
|
|
|
|
|
|
|
795 |
msgid "Choose a file"
|
796 |
msgstr "Izaberite fajl"
|
797 |
|
798 |
-
|
799 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
800 |
msgid "Insert file URL"
|
801 |
msgstr "Unesite fajl u URL"
|
802 |
|
803 |
-
|
804 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
805 |
-
msgid "Upload file"
|
806 |
-
msgstr "Upload fajl"
|
807 |
-
|
808 |
-
# @ download_monitor
|
809 |
-
#: includes/admin/html-downloadable-file-version.php:22
|
810 |
msgid "Browse for file"
|
811 |
msgstr "Traži fajl"
|
812 |
|
813 |
-
|
814 |
-
#: includes/admin/html-downloadable-file-version.php:35
|
815 |
msgid "File Date"
|
816 |
msgstr "Datum fajla"
|
817 |
|
818 |
-
|
819 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
820 |
msgid "h"
|
821 |
msgstr "h"
|
822 |
|
823 |
-
|
824 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
825 |
msgid "m"
|
826 |
msgstr "m"
|
827 |
|
828 |
-
|
829 |
-
|
|
|
|
|
|
|
830 |
msgid "Download does not exist."
|
831 |
msgstr "Ne postoji download."
|
832 |
|
833 |
-
|
834 |
-
#: includes/class-dlm-download-handler.php:
|
835 |
-
#: includes/class-dlm-download-handler.php:
|
836 |
-
#: includes/class-dlm-download-handler.php:
|
837 |
-
#: includes/class-dlm-download-handler.php:
|
838 |
-
#: includes/class-dlm-download-handler.php:333
|
839 |
msgid "Go to homepage →"
|
840 |
msgstr "Idi na početnu stranicu →"
|
841 |
|
842 |
-
|
843 |
-
#: includes/class-dlm-download-handler.php:
|
844 |
-
#: includes/class-dlm-download-handler.php:
|
845 |
-
#: includes/class-dlm-download-handler.php:
|
846 |
-
#: includes/class-dlm-download-handler.php:
|
847 |
-
#: includes/class-dlm-download-handler.php:333
|
848 |
msgid "Download Error"
|
849 |
msgstr "Download Error"
|
850 |
|
851 |
-
|
852 |
-
#: includes/class-dlm-download-handler.php:
|
853 |
-
#: includes/class-dlm-download-handler.php:149
|
854 |
msgid "No file paths defined."
|
855 |
msgstr "Putanja fajla nije definisana."
|
856 |
|
857 |
-
|
858 |
-
#: includes/class-dlm-download-handler.php:158
|
859 |
msgid "You do not have permission to access this download."
|
860 |
msgstr "Nemate dozvolu za pristup ovom downloadu."
|
861 |
|
862 |
-
|
863 |
-
#: includes/class-dlm-download-handler.php:
|
864 |
-
#: includes/class-dlm-download-handler.php:
|
865 |
-
#: includes/class-dlm-download-handler.php:
|
866 |
-
#: includes/class-dlm-download-handler.php:286
|
867 |
msgid "Redirected to file"
|
868 |
msgstr "Preusmereno na fajl"
|
869 |
|
870 |
-
|
871 |
-
#: includes/class-dlm-download-handler.php:325
|
872 |
msgid "Redirected to remote file."
|
873 |
msgstr "Preusmereno na upravljački fajl."
|
874 |
|
875 |
-
|
876 |
-
#: includes/class-dlm-download-handler.php:331
|
877 |
msgid "File not found"
|
878 |
msgstr "Fajl nije pronadjen."
|
879 |
|
880 |
-
|
881 |
-
#: includes/class-dlm-download-handler.php:333
|
882 |
msgid "File not found."
|
883 |
msgstr "Fajl nije pronadjen."
|
884 |
|
885 |
-
# @ download_monitor
|
886 |
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
887 |
msgid "Download not found"
|
888 |
msgstr "Download nije pronadjen"
|
889 |
|
890 |
-
# @ download_monitor
|
891 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
892 |
msgid "Display a list of your downloads."
|
893 |
msgstr "Prikaži listu vaših download-ova"
|
894 |
|
895 |
-
# @ download_monitor
|
896 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
897 |
msgid "Downloads List"
|
898 |
msgstr "Lista download-ova"
|
899 |
|
900 |
-
# @ download_monitor
|
901 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
902 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
903 |
msgid "Featured Downloads"
|
904 |
msgstr "Trenutni download"
|
905 |
|
906 |
-
# @ download_monitor
|
907 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
908 |
msgid "Title:"
|
909 |
msgstr "Naslov:"
|
910 |
|
911 |
-
# @ download_monitor
|
912 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
913 |
msgid "Limit:"
|
914 |
msgstr "Limit:"
|
915 |
|
916 |
-
# @ download_monitor
|
917 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
918 |
msgid "Output template:"
|
919 |
msgstr "Output template:"
|
920 |
|
921 |
-
# @ download_monitor
|
922 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
923 |
msgid "Default template"
|
924 |
msgstr "Default template"
|
925 |
|
926 |
-
# @ download_monitor
|
927 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
928 |
msgid "Order by:"
|
929 |
msgstr "Naručeno od strane:"
|
930 |
|
931 |
-
# @ download_monitor
|
932 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
933 |
msgid "Random"
|
934 |
msgstr "Nasumično"
|
935 |
|
936 |
-
# @ download_monitor
|
937 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
938 |
msgid "Date added"
|
939 |
msgstr "Datum dodat"
|
940 |
|
941 |
-
# @ download_monitor
|
942 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
943 |
msgid "Date modified"
|
944 |
msgstr "Modifikovan datum"
|
945 |
|
946 |
-
# @ download_monitor
|
947 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
948 |
msgid "Order:"
|
949 |
msgstr "Naruči:"
|
950 |
|
951 |
-
# @ download_monitor
|
952 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
953 |
msgid "ASC"
|
954 |
msgstr "ASC"
|
955 |
|
956 |
-
# @ download_monitor
|
957 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
958 |
msgid "DESC"
|
959 |
msgstr "DESC"
|
960 |
|
961 |
-
# @ download_monitor
|
962 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
963 |
msgid "Show only featured downloads"
|
964 |
msgstr "Prikaži samo trenutne downloadove"
|
965 |
|
966 |
-
# @ download_monitor
|
967 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
968 |
msgid "Show only members only downloads"
|
969 |
msgstr "Prikaži samo članove samo download"
|
970 |
|
971 |
-
# @ download_monitor
|
972 |
-
#: templates/content-download-box.php:20
|
973 |
-
#: templates/content-download-filename.php:8 templates/content-download.php:8
|
974 |
-
#, php-format
|
975 |
-
msgid "Version %s"
|
976 |
-
msgstr "Version %s"
|
977 |
-
|
978 |
-
# @ download_monitor
|
979 |
#: templates/content-download-box.php:12
|
980 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
981 |
-
#, php-format
|
982 |
msgid "1 download"
|
983 |
msgid_plural "%d downloads"
|
984 |
-
msgstr[0] "
|
985 |
-
msgstr[1] "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
986 |
|
987 |
-
# @ download_monitor
|
988 |
#: templates/content-download-box.php:21
|
989 |
msgid "Download File"
|
990 |
msgstr "Download fajla"
|
991 |
|
992 |
-
# @ download_monitor
|
993 |
#: templates/content-download-button.php:9
|
994 |
-
#, php-format
|
995 |
msgid "Download “%s”"
|
996 |
msgstr "Download “%s”"
|
997 |
|
998 |
-
# @ download_monitor
|
999 |
#: templates/content-download-button.php:10
|
1000 |
-
|
1001 |
msgid "Downloaded 1 time"
|
1002 |
msgid_plural "Downloaded %d times"
|
1003 |
-
msgstr[0] "
|
1004 |
-
msgstr[1] "
|
1005 |
-
|
1006 |
-
# @ download_monitor
|
1007 |
-
#: includes/admin/class-dlm-admin.php:409
|
1008 |
-
msgid "Filename"
|
1009 |
-
msgstr "Ime fajla"
|
1010 |
-
|
1011 |
-
# @ download_monitor
|
1012 |
-
#: includes/admin/class-dlm-admin.php:411
|
1013 |
-
msgid "User Login"
|
1014 |
-
msgstr "Login korisnika"
|
1015 |
-
|
1016 |
-
# @ download_monitor
|
1017 |
-
#: includes/admin/class-dlm-admin.php:412
|
1018 |
-
msgid "User Email"
|
1019 |
-
msgstr "Email korisnika"
|
1020 |
-
|
1021 |
-
# @ download_monitor
|
1022 |
-
#: includes/admin/class-dlm-logging-list-table.php:142
|
1023 |
-
msgid "Any status"
|
1024 |
-
msgstr "Bilo kakav status"
|
1025 |
-
|
1026 |
-
# @ download_monitor
|
1027 |
-
#: includes/admin/class-dlm-logging-list-table.php:143
|
1028 |
-
msgid "Failed"
|
1029 |
-
msgstr "Nije uspelo"
|
1030 |
-
|
1031 |
-
# @ download_monitor
|
1032 |
-
#: includes/admin/class-dlm-logging-list-table.php:144
|
1033 |
-
msgid "Redirected"
|
1034 |
-
msgstr "Preusmereno"
|
1035 |
-
|
1036 |
-
# @ download_monitor
|
1037 |
-
#: includes/admin/class-dlm-logging-list-table.php:145
|
1038 |
-
msgid "Completed"
|
1039 |
-
msgstr "Završeno"
|
1040 |
-
|
1041 |
-
# @ download_monitor
|
1042 |
-
#: includes/admin/class-dlm-logging-list-table.php:185
|
1043 |
-
msgid "25 per page"
|
1044 |
-
msgstr "25 po stranici"
|
1045 |
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
msgstr "50 po stranici"
|
1050 |
-
|
1051 |
-
# @ download_monitor
|
1052 |
-
#: includes/admin/class-dlm-logging-list-table.php:187
|
1053 |
-
msgid "100 per page"
|
1054 |
-
msgstr "100 po stranici"
|
1055 |
-
|
1056 |
-
# @ download_monitor
|
1057 |
-
#: includes/admin/class-dlm-logging-list-table.php:188
|
1058 |
-
msgid "200 per page"
|
1059 |
-
msgstr "200 po stranici"
|
1060 |
-
|
1061 |
-
# @ download_monitor
|
1062 |
-
#: includes/admin/class-dlm-logging-list-table.php:189
|
1063 |
-
msgid "Show All"
|
1064 |
-
msgstr "Prikaži sve"
|
1065 |
-
|
1066 |
-
# @ download_monitor
|
1067 |
-
#: includes/admin/class-dlm-logging-list-table.php:193
|
1068 |
-
msgid "Filter"
|
1069 |
-
msgstr "Filter"
|
1070 |
-
|
1071 |
-
# @ download_monitor
|
1072 |
-
#: includes/admin/class-dlm-admin-cpt.php:180
|
1073 |
-
msgid "Redirect only"
|
1074 |
-
msgstr "Samo preusmeri"
|
1075 |
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
msgstr "Preusmeravanje na fajl"
|
1080 |
|
1081 |
-
|
1082 |
-
#: includes/admin/class-dlm-admin-writepanels.php:70
|
1083 |
msgid ""
|
1084 |
-
"
|
1085 |
-
"
|
|
|
1086 |
msgstr ""
|
1087 |
-
"Nemojte siliti download. Ako je <code>dlm_upload</code> folder zaštićen "
|
1088 |
-
"možda ćete morati da pomerite vaš fajl."
|
1089 |
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
msgstr "Prikazati sve datume"
|
1094 |
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
msgid "%1$s %2$d"
|
1099 |
-
msgstr "%1$s %2$d"
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:22+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Serbian (Serbia) (http://www.transifex.com/projects/p/download-monitor/language/sr_RS/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: sr_RS\n"
|
16 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
+
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "Postavke"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
|
|
23 |
msgid "Add-ons"
|
24 |
msgstr "Add-ons"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
|
|
27 |
msgid "Docs"
|
28 |
msgstr "Docs"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
|
|
32 |
msgid "Categories"
|
33 |
msgstr "Kategorije"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
|
|
36 |
msgid "Download Category"
|
37 |
msgstr "Download kategorije"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
|
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "Pretraga downloada kategorija"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
|
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "Sve downloadovane kategorije"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
|
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "Parent Download kategorija"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
|
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "Parent Download kategorija:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
|
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "Edit Download kategorija"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
|
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "Update Download kategorija"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
|
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "Dodaj novu Download kategoriju"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
|
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "Novo Download ime kategorije"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
|
|
73 |
msgid "Tags"
|
74 |
msgstr "Tagovi"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
|
|
77 |
msgid "Download Tag"
|
78 |
msgstr "Download Tag"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
|
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "Pretraga Download Tagova"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
|
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "Svi Download Tagovi"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
|
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "Parent Download Tag"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
|
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "Parent Download Tag:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
|
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "Edit Download Tag"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
|
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "Update Download Tag"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
|
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "Dodati novi Download Tag"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
|
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "Novo ime download taga"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr "Downloads"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
|
|
121 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
122 |
msgid "Download"
|
123 |
msgstr "Download"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
|
|
126 |
msgid "Add New"
|
127 |
msgstr "Dodaj novi"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
|
|
130 |
msgid "Add Download"
|
131 |
msgstr "Dodaj download"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
|
|
134 |
msgid "Edit"
|
135 |
msgstr "Edit"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
|
|
138 |
msgid "Edit Download"
|
139 |
msgstr "Edit Download"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
|
|
142 |
msgid "New Download"
|
143 |
msgstr "Novi Download"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
|
|
146 |
msgid "View Download"
|
147 |
msgstr "Pregledaj Download"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
|
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "Pretraga Download-ova"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
|
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "Nijedan download nije pronadjen"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
|
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "Nijedan download nije pronadjen u djubretu"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
|
|
162 |
msgid "Parent Download"
|
163 |
msgstr "Parent Download"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
|
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "Ovde možete da napravite i upravljate download-ove za vaš sajt"
|
168 |
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
msgid "Select a category"
|
176 |
msgstr "Izaberite kategoriju"
|
177 |
|
|
|
178 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
179 |
msgid "Download title"
|
180 |
msgstr "Download-ujte naslov"
|
181 |
|
|
|
182 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
184 |
msgid "Download updated."
|
185 |
msgstr "Download updatedovana."
|
186 |
|
|
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
188 |
msgid "Custom field updated."
|
189 |
msgstr "Custom field updateovan."
|
190 |
|
|
|
191 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
192 |
msgid "Custom field deleted."
|
193 |
msgstr "Custom field obrisan."
|
194 |
|
|
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "Download povraćen revizijom iz %s"
|
198 |
|
|
|
199 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
200 |
msgid "Download published."
|
201 |
msgstr "Download objavljen."
|
202 |
|
|
|
203 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
204 |
msgid "Download saved."
|
205 |
msgstr "Download sačuvan."
|
206 |
|
|
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
208 |
msgid "Download submitted."
|
209 |
msgstr "Download podnešen."
|
210 |
|
|
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "Download zakazan za:<strong>%1$s</strong>."
|
214 |
|
|
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr "M j, Y @ G:i"
|
218 |
|
|
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "Download draft updateovan."
|
222 |
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
|
|
224 |
msgid "Image"
|
225 |
msgstr "Slika"
|
226 |
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
|
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
msgid "Title"
|
230 |
msgstr "Naslov"
|
231 |
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
|
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
msgid "ID"
|
235 |
msgstr "ID"
|
236 |
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
|
|
238 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
239 |
msgid "File"
|
240 |
msgstr "Fajl"
|
241 |
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
|
|
245 |
msgid "Version"
|
246 |
msgstr "Verzija"
|
247 |
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
+
msgstr "Računanje download-a"
|
254 |
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
|
|
256 |
msgid "Featured"
|
257 |
msgstr "Istaknuto"
|
258 |
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
|
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
msgid "Members only"
|
262 |
msgstr "Samo članovi"
|
263 |
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr "Samo preusmeri"
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "Datum postovan"
|
271 |
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "Popular Download-ovi"
|
281 |
|
|
|
282 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "Još uvek nema dostupnih rezultata."
|
285 |
|
286 |
+
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
msgid "Insert Download"
|
290 |
msgstr "Unesite download"
|
291 |
|
|
|
292 |
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "Unesite shortcode"
|
296 |
|
|
|
297 |
#: includes/admin/class-dlm-admin-insert.php:78
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "Quick-add download"
|
300 |
|
|
|
301 |
#: includes/admin/class-dlm-admin-insert.php:122
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "Error: Fajl nije stvoren."
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
|
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "Download uspešno stvoren."
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
|
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "Error: Download nije stvoren."
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
|
|
314 |
msgid "Choose a download"
|
315 |
msgstr "Izaberite download"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
|
|
318 |
msgid "Template"
|
319 |
msgstr "Template"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
|
|
322 |
msgid "Template Name"
|
323 |
msgstr "Ime template"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
|
|
|
|
326 |
msgid ""
|
327 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "Ako ostavite ovo prazno biće korišćen default <code>content-download.php</code> template fajl. Ako uneste npr<code>image</code>, the <code>content-download-image.php</code> template će biti korišćena."
|
|
|
|
|
|
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
|
|
333 |
msgid "Drop file here"
|
334 |
msgstr "Ubacite fajl ovde"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
|
|
338 |
msgid "or"
|
339 |
msgstr "ili"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
|
|
342 |
msgid "Select File"
|
343 |
msgstr "Izaberi fajl"
|
344 |
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
|
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "Unesite URL ručno"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
|
|
350 |
msgid "Download URL"
|
351 |
msgstr "Download URL"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
|
|
354 |
msgid "Required URL"
|
355 |
msgstr "Zahtevani URL"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
|
|
358 |
msgid "Download Title"
|
359 |
msgstr "Download-ovani naslov"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
|
|
362 |
msgid "Required title"
|
363 |
msgstr "Zahtevani naslov"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
|
|
366 |
msgid "Optional version number"
|
367 |
msgstr "Broj opcionalne verzije"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
|
|
370 |
msgid "Save Download"
|
371 |
msgstr "Sačuvaj download"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
|
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "Dozvoljeni fajlovi"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
|
|
378 |
msgid "Please wait..."
|
379 |
msgstr "Molimo sačekajte..."
|
380 |
|
|
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "Pretraga za fajlom"
|
385 |
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
|
|
387 |
msgid "No files found"
|
388 |
msgstr "Fajl nije pronadjen"
|
389 |
|
|
|
390 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
391 |
msgid "Download Options"
|
392 |
msgstr "Download opcije"
|
393 |
|
|
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr ""
|
397 |
|
|
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
msgid "Short Description"
|
400 |
msgstr "Kratak opis"
|
401 |
|
|
|
402 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
403 |
msgid "Featured download"
|
404 |
msgstr "Trenutni download"
|
405 |
|
|
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
407 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
msgstr "Označite ovaj download. Koristite shortcodeove i widgete."
|
409 |
|
|
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
msgid ""
|
412 |
"Only logged in users will be able to access the file via a download link if "
|
413 |
"this is enabled."
|
414 |
+
msgstr "Samo ulogovani korisnici će biti u mogućnost da pristupe fajlu via download linka ako je ovo omogućeno."
|
|
|
|
|
415 |
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
+
msgstr "Preusmeravanje na fajl"
|
|
|
419 |
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr "Nemojte siliti download. Ako je <code>dlm_upload</code> folder zaštićen možda ćete morati da pomerite vaš fajl."
|
425 |
+
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
431 |
msgid "Close all"
|
432 |
msgstr "Zatvorite sve"
|
433 |
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
435 |
msgid "Expand all"
|
436 |
msgstr "Proširite sve"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
|
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "Da li ste sigurni da izbrišete ovaj fajl?"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
|
|
443 |
msgid "General"
|
444 |
msgstr "Opšte"
|
445 |
|
|
|
446 |
#: includes/admin/class-dlm-admin.php:100
|
447 |
msgid "Default Template"
|
448 |
msgstr "Default Template"
|
449 |
|
|
|
450 |
#: includes/admin/class-dlm-admin.php:101
|
451 |
msgid ""
|
452 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "Izaberite koju ćete template da koristite za <code>[download]</code> shortcode-ove po default-u (ovo može biti prepisano kodom <code>format</code> argument)."
|
455 |
+
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
msgstr ""
|
|
|
|
|
|
|
463 |
|
|
|
464 |
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "Krajnja tačka"
|
499 |
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
|
|
501 |
msgid "download"
|
502 |
msgstr "download"
|
503 |
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
|
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "Download Endpoint"
|
507 |
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
|
|
|
|
509 |
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
+
msgstr "Definišite koja krajnja tačka će biti korišćena za download linkova. Po defaultu ovo će biti<code>%s</code>."
|
|
|
|
|
513 |
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
|
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "Vrednost krajnje tačke"
|
517 |
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
|
|
|
|
519 |
msgid ""
|
520 |
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
|
|
|
|
|
|
|
|
522 |
"<code>%s</code>"
|
523 |
+
msgstr "Definišite koja jedinstvena vrednost treba da bude korišćena na kraju vaše krajnje tačke za identifikaciju dowload-ujućeg fajla npr ID će dati link <code>%s</code>"
|
524 |
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
|
|
527 |
msgid "Download ID"
|
528 |
msgstr "Download ID"
|
529 |
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
|
|
531 |
msgid "Download slug"
|
532 |
msgstr "Download slug"
|
533 |
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
|
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "Omogući"
|
543 |
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
|
|
545 |
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
|
|
|
|
|
|
|
|
548 |
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "Ako je podržano<code>X-Accel-Redirect</code> / <code>X-Sendfile</code> može biti korišćen za služenje download-ovima umesto PHP (serveri traže <code>mod_xsendfile</code>)."
|
550 |
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "Logging"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
|
|
566 |
msgid "Download Log"
|
567 |
msgstr "Download Log"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
|
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "Pokušaj log downloada, IP adresea i još toga."
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
|
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "IP crna lista"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
|
|
578 |
msgid ""
|
579 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
"wildcard."
|
581 |
+
msgstr "Lista IP adresa za crnu listu, 1 po rečenici. Koristi <code>*</code>se za wildcard."
|
|
|
|
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
|
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "Crna lista agenta korisnika "
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
|
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "Lista pretraživača agenta korisnika za crnu listu, 1 po rečenici."
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
|
|
592 |
msgid "Logs"
|
593 |
msgstr "Logs"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
|
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "Postavke sačuvane uspešno"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
|
|
600 |
msgid "Save Changes"
|
601 |
msgstr "Sačuvaj promene"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
604 |
msgid "Download Logs"
|
605 |
msgstr "Download Logs"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
608 |
msgid "Export CSV"
|
609 |
msgstr "Export CSV"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
msgid "Version ID"
|
617 |
msgstr "ID verzija"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
+
msgid "Filename"
|
621 |
+
msgstr "Ime fajla"
|
622 |
+
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
msgid "User ID"
|
625 |
msgstr "ID korisnika"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
+
msgid "User Login"
|
629 |
+
msgstr "Login korisnika"
|
630 |
+
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
+
msgid "User Email"
|
633 |
+
msgstr "Email korisnika"
|
634 |
+
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
msgid "User IP"
|
637 |
msgstr "IP korisnika"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
|
|
640 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
641 |
msgid "User Agent"
|
642 |
msgstr "Agent korisnik"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
|
|
645 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
646 |
msgid "Date"
|
647 |
msgstr "Date"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
|
|
650 |
msgid "Status"
|
651 |
msgstr "Status"
|
652 |
|
|
|
653 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
654 |
msgid "Download Complete"
|
655 |
msgstr "Download završen"
|
656 |
|
|
|
657 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "%s ago"
|
660 |
|
|
|
661 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "Download #%d (ne postoji više)"
|
664 |
|
|
|
665 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
|
|
669 |
#: includes/admin/class-dlm-logging-list-table.php:92
|
670 |
msgid "Non-member"
|
671 |
msgstr "Nije član"
|
672 |
|
|
|
673 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
674 |
msgid "User"
|
675 |
msgstr "Korisnik"
|
676 |
|
|
|
677 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
678 |
msgid "IP Address"
|
679 |
msgstr "IP adresa"
|
680 |
|
681 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
682 |
+
msgid "Any status"
|
683 |
+
msgstr "Bilo kakav status"
|
684 |
+
|
685 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
686 |
+
msgid "Failed"
|
687 |
+
msgstr "Nije uspelo"
|
688 |
+
|
689 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
690 |
+
msgid "Redirected"
|
691 |
+
msgstr "Preusmereno"
|
692 |
+
|
693 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
694 |
+
msgid "Completed"
|
695 |
+
msgstr "Završeno"
|
696 |
+
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
+
msgid "Show all dates"
|
699 |
+
msgstr "Prikazati sve datume"
|
700 |
+
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
702 |
+
msgid "%1$s %2$d"
|
703 |
+
msgstr "%1$s %2$d"
|
704 |
+
|
705 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
706 |
+
msgid "25 per page"
|
707 |
+
msgstr "25 po stranici"
|
708 |
+
|
709 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
710 |
+
msgid "50 per page"
|
711 |
+
msgstr "50 po stranici"
|
712 |
+
|
713 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
714 |
+
msgid "100 per page"
|
715 |
+
msgstr "100 po stranici"
|
716 |
+
|
717 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
718 |
+
msgid "200 per page"
|
719 |
+
msgstr "200 po stranici"
|
720 |
+
|
721 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
+
msgid "Show All"
|
723 |
+
msgstr "Prikaži sve"
|
724 |
+
|
725 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
726 |
+
msgid "Filter"
|
727 |
+
msgstr "Filter"
|
728 |
+
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
730 |
msgid "Remove"
|
731 |
msgstr "Ukloniti"
|
732 |
|
|
|
733 |
#: includes/admin/html-downloadable-file-version.php:4
|
734 |
msgid "Click to toggle"
|
735 |
msgstr "Klika za toggle"
|
736 |
|
|
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "Verzija<span class=\"version\">%s</span> (%s)"
|
740 |
|
|
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
msgid "n/a"
|
744 |
msgstr "n/a"
|
745 |
|
|
|
746 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
+
msgstr[0] ""
|
750 |
+
msgstr[1] ""
|
751 |
+
msgstr[2] ""
|
752 |
|
753 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
|
|
754 |
msgid "File URL(s)"
|
755 |
msgstr "File URL(s)"
|
756 |
|
757 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
|
|
758 |
msgid ""
|
759 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
760 |
"(chosen at random)."
|
761 |
+
msgstr "Unesite jedanu putanju fajla-URL po rečenici brojni fajlovi će biti korišćeni kao ogledala (izabrano nasumično)."
|
|
|
|
|
762 |
|
763 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
764 |
+
msgid "Upload file"
|
765 |
+
msgstr "Upload fajl"
|
766 |
+
|
767 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
768 |
msgid "Choose a file"
|
769 |
msgstr "Izaberite fajl"
|
770 |
|
771 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
|
|
772 |
msgid "Insert file URL"
|
773 |
msgstr "Unesite fajl u URL"
|
774 |
|
775 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
|
|
|
|
|
|
|
|
|
|
776 |
msgid "Browse for file"
|
777 |
msgstr "Traži fajl"
|
778 |
|
779 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
|
|
780 |
msgid "File Date"
|
781 |
msgstr "Datum fajla"
|
782 |
|
783 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
784 |
msgid "h"
|
785 |
msgstr "h"
|
786 |
|
787 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
788 |
msgid "m"
|
789 |
msgstr "m"
|
790 |
|
791 |
+
#: includes/class-dlm-download-handler.php:140
|
792 |
+
msgid "Password Required"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: includes/class-dlm-download-handler.php:150
|
796 |
msgid "Download does not exist."
|
797 |
msgstr "Ne postoji download."
|
798 |
|
799 |
+
#: includes/class-dlm-download-handler.php:150
|
800 |
+
#: includes/class-dlm-download-handler.php:180
|
801 |
+
#: includes/class-dlm-download-handler.php:185
|
802 |
+
#: includes/class-dlm-download-handler.php:194
|
803 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
804 |
msgid "Go to homepage →"
|
805 |
msgstr "Idi na početnu stranicu →"
|
806 |
|
807 |
+
#: includes/class-dlm-download-handler.php:150
|
808 |
+
#: includes/class-dlm-download-handler.php:180
|
809 |
+
#: includes/class-dlm-download-handler.php:185
|
810 |
+
#: includes/class-dlm-download-handler.php:194
|
811 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
812 |
msgid "Download Error"
|
813 |
msgstr "Download Error"
|
814 |
|
815 |
+
#: includes/class-dlm-download-handler.php:180
|
816 |
+
#: includes/class-dlm-download-handler.php:185
|
|
|
817 |
msgid "No file paths defined."
|
818 |
msgstr "Putanja fajla nije definisana."
|
819 |
|
820 |
+
#: includes/class-dlm-download-handler.php:194
|
|
|
821 |
msgid "You do not have permission to access this download."
|
822 |
msgstr "Nemate dozvolu za pristup ovom downloadu."
|
823 |
|
824 |
+
#: includes/class-dlm-download-handler.php:212
|
825 |
+
#: includes/class-dlm-download-handler.php:228
|
826 |
+
#: includes/class-dlm-download-handler.php:235
|
827 |
+
#: includes/class-dlm-download-handler.php:242
|
|
|
828 |
msgid "Redirected to file"
|
829 |
msgstr "Preusmereno na fajl"
|
830 |
|
831 |
+
#: includes/class-dlm-download-handler.php:281
|
|
|
832 |
msgid "Redirected to remote file."
|
833 |
msgstr "Preusmereno na upravljački fajl."
|
834 |
|
835 |
+
#: includes/class-dlm-download-handler.php:286
|
|
|
836 |
msgid "File not found"
|
837 |
msgstr "Fajl nije pronadjen."
|
838 |
|
839 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
840 |
msgid "File not found."
|
841 |
msgstr "Fajl nije pronadjen."
|
842 |
|
|
|
843 |
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
844 |
msgid "Download not found"
|
845 |
msgstr "Download nije pronadjen"
|
846 |
|
|
|
847 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
848 |
msgid "Display a list of your downloads."
|
849 |
msgstr "Prikaži listu vaših download-ova"
|
850 |
|
|
|
851 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
852 |
msgid "Downloads List"
|
853 |
msgstr "Lista download-ova"
|
854 |
|
|
|
855 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
856 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
857 |
msgid "Featured Downloads"
|
858 |
msgstr "Trenutni download"
|
859 |
|
|
|
860 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
861 |
msgid "Title:"
|
862 |
msgstr "Naslov:"
|
863 |
|
|
|
864 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
865 |
msgid "Limit:"
|
866 |
msgstr "Limit:"
|
867 |
|
|
|
868 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
869 |
msgid "Output template:"
|
870 |
msgstr "Output template:"
|
871 |
|
|
|
872 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
873 |
msgid "Default template"
|
874 |
msgstr "Default template"
|
875 |
|
|
|
876 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
877 |
msgid "Order by:"
|
878 |
msgstr "Naručeno od strane:"
|
879 |
|
|
|
880 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
881 |
msgid "Random"
|
882 |
msgstr "Nasumično"
|
883 |
|
|
|
884 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
885 |
msgid "Date added"
|
886 |
msgstr "Datum dodat"
|
887 |
|
|
|
888 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
889 |
msgid "Date modified"
|
890 |
msgstr "Modifikovan datum"
|
891 |
|
|
|
892 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
893 |
msgid "Order:"
|
894 |
msgstr "Naruči:"
|
895 |
|
|
|
896 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
897 |
msgid "ASC"
|
898 |
msgstr "ASC"
|
899 |
|
|
|
900 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
901 |
msgid "DESC"
|
902 |
msgstr "DESC"
|
903 |
|
|
|
904 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
905 |
msgid "Show only featured downloads"
|
906 |
msgstr "Prikaži samo trenutne downloadove"
|
907 |
|
|
|
908 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
909 |
msgid "Show only members only downloads"
|
910 |
msgstr "Prikaži samo članove samo download"
|
911 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
912 |
#: templates/content-download-box.php:12
|
913 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
|
|
914 |
msgid "1 download"
|
915 |
msgid_plural "%d downloads"
|
916 |
+
msgstr[0] ""
|
917 |
+
msgstr[1] ""
|
918 |
+
msgstr[2] ""
|
919 |
+
|
920 |
+
#: templates/content-download-box.php:20
|
921 |
+
#: templates/content-download-filename.php:8
|
922 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
923 |
+
msgid "Version %s"
|
924 |
+
msgstr "Version %s"
|
925 |
|
|
|
926 |
#: templates/content-download-box.php:21
|
927 |
msgid "Download File"
|
928 |
msgstr "Download fajla"
|
929 |
|
|
|
930 |
#: templates/content-download-button.php:9
|
|
|
931 |
msgid "Download “%s”"
|
932 |
msgstr "Download “%s”"
|
933 |
|
|
|
934 |
#: templates/content-download-button.php:10
|
935 |
+
#: templates/content-download-version-list.php:17
|
936 |
msgid "Downloaded 1 time"
|
937 |
msgid_plural "Downloaded %d times"
|
938 |
+
msgstr[0] ""
|
939 |
+
msgstr[1] ""
|
940 |
+
msgstr[2] ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
|
942 |
+
#. Plugin Name of the plugin/theme
|
943 |
+
msgid "Download Monitor"
|
944 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
945 |
|
946 |
+
#. Plugin URI of the plugin/theme
|
947 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
948 |
+
msgstr ""
|
|
|
949 |
|
950 |
+
#. Description of the plugin/theme
|
|
|
951 |
msgid ""
|
952 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
953 |
+
"outputting download links and file information on your WordPress powered "
|
954 |
+
"site."
|
955 |
msgstr ""
|
|
|
|
|
956 |
|
957 |
+
#. Author of the plugin/theme
|
958 |
+
msgid "Mike Jolley"
|
959 |
+
msgstr ""
|
|
|
960 |
|
961 |
+
#. Author URI of the plugin/theme
|
962 |
+
msgid "http://mikejolley.com"
|
963 |
+
msgstr ""
|
|
|
|
languages/download-monitor-sv_SE.mo
ADDED
Binary file
|
languages/{download_monitor-sv_SE.po → download-monitor-sv_SE.po}
RENAMED
@@ -1,1006 +1,960 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Generator: Poedit 1.5.7\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Textdomain-Support: yes\n"
|
18 |
"Language: sv_SE\n"
|
19 |
-
"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
|
23 |
-
#: download-monitor.php:90 includes/admin/class-dlm-admin.php:206
|
24 |
msgid "Settings"
|
25 |
msgstr "Inställningar"
|
26 |
|
27 |
-
|
28 |
-
#: download-monitor.php:91
|
29 |
msgid "Add-ons"
|
30 |
msgstr "Tillägg"
|
31 |
|
32 |
-
|
33 |
-
#: download-monitor.php:92
|
34 |
msgid "Docs"
|
35 |
msgstr "Dokument"
|
36 |
|
37 |
-
|
38 |
-
#:
|
39 |
-
#: includes/admin/class-dlm-admin-cpt.php:174
|
40 |
msgid "Categories"
|
41 |
msgstr "Kategorier"
|
42 |
|
43 |
-
|
44 |
-
#: download-monitor.php:243
|
45 |
msgid "Download Category"
|
46 |
msgstr "Nedladdningskategori"
|
47 |
|
48 |
-
|
49 |
-
#: download-monitor.php:244
|
50 |
msgid "Search Download Categories"
|
51 |
msgstr "Sök nedladdningskategori"
|
52 |
|
53 |
-
|
54 |
-
#: download-monitor.php:245
|
55 |
msgid "All Download Categories"
|
56 |
msgstr "Alla kategorier"
|
57 |
|
58 |
-
|
59 |
-
#: download-monitor.php:246
|
60 |
msgid "Parent Download Category"
|
61 |
msgstr "Överordnad nedladdningskategori"
|
62 |
|
63 |
-
|
64 |
-
#: download-monitor.php:247
|
65 |
msgid "Parent Download Category:"
|
66 |
msgstr "Överordnad nedladdningskategori:"
|
67 |
|
68 |
-
|
69 |
-
#: download-monitor.php:248
|
70 |
msgid "Edit Download Category"
|
71 |
msgstr "Ändra nedladdningskategori"
|
72 |
|
73 |
-
|
74 |
-
#: download-monitor.php:249
|
75 |
msgid "Update Download Category"
|
76 |
msgstr "Uppdatera nedladdningskategori"
|
77 |
|
78 |
-
|
79 |
-
#: download-monitor.php:250
|
80 |
msgid "Add New Download Category"
|
81 |
msgstr "Lägg till ny nedladdningskategori"
|
82 |
|
83 |
-
|
84 |
-
#: download-monitor.php:251
|
85 |
msgid "New Download Category Name"
|
86 |
msgstr "Nytt namn på nedladdningskategori"
|
87 |
|
88 |
-
|
89 |
-
#:
|
90 |
-
#: includes/admin/class-dlm-admin-cpt.php:175
|
91 |
msgid "Tags"
|
92 |
msgstr "Etiketter"
|
93 |
|
94 |
-
|
95 |
-
#: download-monitor.php:272
|
96 |
msgid "Download Tag"
|
97 |
msgstr "Nedladdningsetikett"
|
98 |
|
99 |
-
|
100 |
-
#: download-monitor.php:273
|
101 |
msgid "Search Download Tags"
|
102 |
msgstr "Sök nedladdningsetikett"
|
103 |
|
104 |
-
|
105 |
-
#: download-monitor.php:274
|
106 |
msgid "All Download Tags"
|
107 |
msgstr "Alla nedladdningsetiketter"
|
108 |
|
109 |
-
|
110 |
-
#: download-monitor.php:275
|
111 |
msgid "Parent Download Tag"
|
112 |
msgstr "Överordnad nedladdningsetikett"
|
113 |
|
114 |
-
|
115 |
-
#: download-monitor.php:276
|
116 |
msgid "Parent Download Tag:"
|
117 |
msgstr "Överordnad nedladdningsetikett:"
|
118 |
|
119 |
-
|
120 |
-
#: download-monitor.php:277
|
121 |
msgid "Edit Download Tag"
|
122 |
msgstr "Ändra nedladdningsetikett"
|
123 |
|
124 |
-
|
125 |
-
#: download-monitor.php:278
|
126 |
msgid "Update Download Tag"
|
127 |
msgstr "Uppdatera nedladdningsetikett"
|
128 |
|
129 |
-
|
130 |
-
#: download-monitor.php:279
|
131 |
msgid "Add New Download Tag"
|
132 |
msgstr "Lägg till ny nedladdningsetikett"
|
133 |
|
134 |
-
|
135 |
-
#: download-monitor.php:280
|
136 |
msgid "New Download Tag Name"
|
137 |
msgstr "Nytt namn på nedladdningsetikett"
|
138 |
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
141 |
msgid "Downloads"
|
142 |
msgstr "Nedladdningar"
|
143 |
|
144 |
-
|
145 |
-
#:
|
146 |
-
#: includes/admin/class-dlm-logging-list-table.php:116
|
147 |
msgid "Download"
|
148 |
msgstr "Nedladdning"
|
149 |
|
150 |
-
|
151 |
-
#: download-monitor.php:302
|
152 |
msgid "Add New"
|
153 |
msgstr "Lägg till ny"
|
154 |
|
155 |
-
|
156 |
-
#: download-monitor.php:303
|
157 |
msgid "Add Download"
|
158 |
msgstr "Lägg till ny nedladdning"
|
159 |
|
160 |
-
|
161 |
-
#: download-monitor.php:304
|
162 |
msgid "Edit"
|
163 |
msgstr "Ändra"
|
164 |
|
165 |
-
|
166 |
-
#: download-monitor.php:305
|
167 |
msgid "Edit Download"
|
168 |
msgstr "Ändra nedladdning"
|
169 |
|
170 |
-
|
171 |
-
#: download-monitor.php:306
|
172 |
msgid "New Download"
|
173 |
msgstr "Ny nedladdning"
|
174 |
|
175 |
-
|
176 |
-
#: download-monitor.php:307 download-monitor.php:308
|
177 |
msgid "View Download"
|
178 |
msgstr "Visa nedladdning"
|
179 |
|
180 |
-
|
181 |
-
#: download-monitor.php:309
|
182 |
msgid "Search Downloads"
|
183 |
msgstr "Sök nedladdning"
|
184 |
|
185 |
-
|
186 |
-
#: download-monitor.php:310
|
187 |
msgid "No Downloads found"
|
188 |
msgstr "Ingen nedladdnings hittas"
|
189 |
|
190 |
-
|
191 |
-
#: download-monitor.php:311
|
192 |
msgid "No Downloads found in trash"
|
193 |
msgstr "Ingen nedladdning hittas i skräpkorgen"
|
194 |
|
195 |
-
|
196 |
-
#: download-monitor.php:312
|
197 |
msgid "Parent Download"
|
198 |
msgstr "Överordnad nedladdning"
|
199 |
|
200 |
-
|
201 |
-
#: download-monitor.php:314
|
202 |
msgid "This is where you can create and manage downloads for your site."
|
203 |
msgstr "Här kan du skapa och hantera dina nedladdningar för din webbplats."
|
204 |
|
205 |
-
|
|
|
|
|
|
|
|
|
206 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
207 |
msgid "Select a category"
|
208 |
msgstr "Välj en kategori"
|
209 |
|
210 |
-
# @ download_monitor
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
212 |
msgid "Download title"
|
213 |
msgstr "Nedladdningstitel"
|
214 |
|
215 |
-
# @ download_monitor
|
216 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
217 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
218 |
msgid "Download updated."
|
219 |
msgstr "Nedladdning uppdaterad."
|
220 |
|
221 |
-
# @ download_monitor
|
222 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
223 |
msgid "Custom field updated."
|
224 |
msgstr "Eget fält uppdaterat."
|
225 |
|
226 |
-
# @ download_monitor
|
227 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
228 |
msgid "Custom field deleted."
|
229 |
msgstr "Eget fält borttaget."
|
230 |
|
231 |
-
# @ download_monitor
|
232 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
233 |
-
#, php-format
|
234 |
msgid "Download restored to revision from %s"
|
235 |
msgstr "Nedladdning återställd till revision från %s"
|
236 |
|
237 |
-
# @ download_monitor
|
238 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
239 |
msgid "Download published."
|
240 |
msgstr "Nedladdning publicerad."
|
241 |
|
242 |
-
# @ download_monitor
|
243 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
244 |
msgid "Download saved."
|
245 |
msgstr "Nedladdning sparad."
|
246 |
|
247 |
-
# @ download_monitor
|
248 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
249 |
msgid "Download submitted."
|
250 |
msgstr "Nedladdning skickad."
|
251 |
|
252 |
-
# @ download_monitor
|
253 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
254 |
-
#, php-format
|
255 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
256 |
msgstr "Nedladdning schemalagd för: <strong>%1$s</strong>."
|
257 |
|
258 |
-
# @ download_monitor
|
259 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
260 |
msgid "M j, Y @ G:i"
|
261 |
msgstr "M j, Y @ G:i"
|
262 |
|
263 |
-
# @ download_monitor
|
264 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
265 |
msgid "Download draft updated."
|
266 |
msgstr "Nedladdningsutkast uppdaterat."
|
267 |
|
268 |
-
|
269 |
-
#: includes/admin/class-dlm-admin-cpt.php:169
|
270 |
msgid "Image"
|
271 |
msgstr "Bild"
|
272 |
|
273 |
-
|
274 |
-
#: includes/admin/class-dlm-admin-cpt.php:170
|
275 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
276 |
msgid "Title"
|
277 |
msgstr "Titel"
|
278 |
|
279 |
-
|
280 |
-
#: includes/admin/class-dlm-admin-cpt.php:171
|
281 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
282 |
msgid "ID"
|
283 |
msgstr "ID"
|
284 |
|
285 |
-
|
286 |
-
#: includes/admin/class-dlm-
|
287 |
-
#: includes/admin/class-dlm-logging-list-table.php:117
|
288 |
msgid "File"
|
289 |
msgstr "Fil"
|
290 |
|
291 |
-
|
292 |
-
#: includes/admin/class-dlm-admin-
|
293 |
-
#: includes/admin/
|
294 |
-
#: includes/admin/html-downloadable-file-version.php:13
|
295 |
msgid "Version"
|
296 |
msgstr "Version"
|
297 |
|
298 |
-
|
299 |
-
#: includes/admin/class-dlm-admin-
|
300 |
-
|
301 |
-
|
|
|
|
|
302 |
|
303 |
-
|
304 |
-
#: includes/admin/class-dlm-admin-cpt.php:178
|
305 |
msgid "Featured"
|
306 |
msgstr "Viktig"
|
307 |
|
308 |
-
|
309 |
-
#: includes/admin/class-dlm-admin-cpt.php:179
|
310 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
311 |
msgid "Members only"
|
312 |
msgstr "Endast för medlemmar"
|
313 |
|
314 |
-
|
315 |
-
|
|
|
|
|
|
|
316 |
msgid "Date posted"
|
317 |
msgstr "Publiceringsdatum"
|
318 |
|
319 |
-
|
|
|
|
|
|
|
|
|
|
|
320 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
321 |
msgid "Popular Downloads"
|
322 |
msgstr "Populära nedladdningar"
|
323 |
|
324 |
-
# @ download_monitor
|
325 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
326 |
msgid "There are no stats available yet!"
|
327 |
msgstr "Det finns ingen statistik ännu!"
|
328 |
|
329 |
-
# @ download_monitor
|
330 |
-
#: includes/admin/class-dlm-admin-dashboard.php:68
|
331 |
-
#: includes/admin/html-downloadable-file-version.php:29
|
332 |
-
#: includes/widgets/class-dlm-widget-downloads.php:176
|
333 |
-
msgid "Download count"
|
334 |
-
msgstr "Antal nedladdningar"
|
335 |
-
|
336 |
-
# @ download_monitor
|
337 |
#: includes/admin/class-dlm-admin-insert.php:32
|
338 |
#: includes/admin/class-dlm-admin-insert.php:40
|
339 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
340 |
msgid "Insert Download"
|
341 |
msgstr "Infoga nedladdning"
|
342 |
|
343 |
-
|
344 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
345 |
-
#: includes/admin/class-dlm-admin-insert.php:182
|
346 |
msgid "Insert Shortcode"
|
347 |
msgstr "Infoga shortcode"
|
348 |
|
349 |
-
|
350 |
-
#: includes/admin/class-dlm-admin-insert.php:81
|
351 |
msgid "Quick-add download"
|
352 |
msgstr "Enkel uppladdning"
|
353 |
|
354 |
-
|
355 |
-
#: includes/admin/class-dlm-admin-insert.php:124
|
356 |
msgid "Error: File was not created."
|
357 |
msgstr "Fel: Filen skapades inte."
|
358 |
|
359 |
-
|
360 |
-
#: includes/admin/class-dlm-admin-insert.php:143
|
361 |
msgid "Download successfully created."
|
362 |
msgstr "Nedladdning skapades."
|
363 |
|
364 |
-
|
365 |
-
#: includes/admin/class-dlm-admin-insert.php:145
|
366 |
msgid "Error: Download was not created."
|
367 |
msgstr "Fel: Nedladdning skapades ej."
|
368 |
|
369 |
-
|
370 |
-
#: includes/admin/class-dlm-admin-insert.php:163
|
371 |
msgid "Choose a download"
|
372 |
msgstr "Välj nedladdning"
|
373 |
|
374 |
-
|
375 |
-
#: includes/admin/class-dlm-admin-insert.php:175
|
376 |
msgid "Template"
|
377 |
msgstr "Mall"
|
378 |
|
379 |
-
|
380 |
-
#: includes/admin/class-dlm-admin-insert.php:176
|
381 |
msgid "Template Name"
|
382 |
msgstr "Mallnamn"
|
383 |
|
384 |
-
|
385 |
-
#: includes/admin/class-dlm-admin-insert.php:178
|
386 |
-
#: includes/admin/class-dlm-admin.php:94
|
387 |
msgid ""
|
388 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
389 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
390 |
-
"
|
391 |
-
msgstr ""
|
392 |
-
"Om detta lämnas tomt kommer standardmallen <code>content-download.php</code> "
|
393 |
-
"användas. Om du skriver in exempelvis, <code>bild</code>, kommer "
|
394 |
-
"<code>content-download-bild.php</code> användas istället. "
|
395 |
|
396 |
-
|
397 |
-
#: includes/admin/class-dlm-admin-insert.php:193
|
398 |
msgid "Drop file here"
|
399 |
msgstr "Släpp filen här"
|
400 |
|
401 |
-
|
402 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
403 |
-
#: includes/admin/class-dlm-admin-insert.php:196
|
404 |
msgid "or"
|
405 |
msgstr "eller"
|
406 |
|
407 |
-
|
408 |
-
#: includes/admin/class-dlm-admin-insert.php:195
|
409 |
msgid "Select File"
|
410 |
msgstr "Välj fil"
|
411 |
|
412 |
-
|
413 |
-
#: includes/admin/class-dlm-admin-insert.php:197
|
414 |
msgid "Enter URL manually"
|
415 |
msgstr "Skriv in URL manuellt"
|
416 |
|
417 |
-
|
418 |
-
#: includes/admin/class-dlm-admin-insert.php:203
|
419 |
msgid "Download URL"
|
420 |
msgstr "Nedladdnings-URL"
|
421 |
|
422 |
-
|
423 |
-
#: includes/admin/class-dlm-admin-insert.php:204
|
424 |
msgid "Required URL"
|
425 |
msgstr "Nödvändig URL"
|
426 |
|
427 |
-
|
428 |
-
#: includes/admin/class-dlm-admin-insert.php:207
|
429 |
msgid "Download Title"
|
430 |
msgstr "Nedladdningstitel"
|
431 |
|
432 |
-
|
433 |
-
#: includes/admin/class-dlm-admin-insert.php:208
|
434 |
msgid "Required title"
|
435 |
msgstr "Nödvändig titel"
|
436 |
|
437 |
-
|
438 |
-
#: includes/admin/class-dlm-admin-insert.php:212
|
439 |
msgid "Optional version number"
|
440 |
msgstr "Alternativt versionsnummer"
|
441 |
|
442 |
-
|
443 |
-
#: includes/admin/class-dlm-admin-insert.php:215
|
444 |
msgid "Save Download"
|
445 |
msgstr "Spara"
|
446 |
|
447 |
-
|
448 |
-
#: includes/admin/class-dlm-admin-insert.php:273
|
449 |
msgid "Allowed Files"
|
450 |
msgstr "Tillåtna filer"
|
451 |
|
452 |
-
|
453 |
-
#: includes/admin/class-dlm-admin-insert.php:323
|
454 |
msgid "Please wait..."
|
455 |
msgstr "Ett ögonblick..."
|
456 |
|
457 |
-
# @ download_monitor
|
458 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
459 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
460 |
msgid "Browse for a file"
|
461 |
msgstr "Välj en fil"
|
462 |
|
463 |
-
|
464 |
-
#: includes/admin/class-dlm-admin-media-browser.php:100
|
465 |
msgid "No files found"
|
466 |
msgstr "Inga filer hittades"
|
467 |
|
468 |
-
# @ download_monitor
|
469 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
470 |
msgid "Download Options"
|
471 |
msgstr "Nedladdningsaltenativ"
|
472 |
|
473 |
-
# @ download_monitor
|
474 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
475 |
-
msgid "Downloadable
|
476 |
-
msgstr "
|
477 |
|
478 |
-
# @ download_monitor
|
479 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
480 |
msgid "Short Description"
|
481 |
msgstr "Kort beskrivning"
|
482 |
|
483 |
-
# @ download_monitor
|
484 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
485 |
msgid "Featured download"
|
486 |
msgstr "Viktig nedladdning"
|
487 |
|
488 |
-
# @ download_monitor
|
489 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
490 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
491 |
-
msgstr ""
|
492 |
-
"Markera denna nedladdning som viktig. Används av shortcodes och widgets."
|
493 |
|
494 |
-
# @ download_monitor
|
495 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
496 |
msgid ""
|
497 |
"Only logged in users will be able to access the file via a download link if "
|
498 |
"this is enabled."
|
|
|
|
|
|
|
|
|
499 |
msgstr ""
|
500 |
-
"Bara inloggade användare kommer åt filen via en nedladdningslänk om detta är "
|
501 |
-
"aktiverat."
|
502 |
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
|
|
507 |
|
508 |
-
|
509 |
-
|
|
|
|
|
|
|
510 |
msgid "Close all"
|
511 |
msgstr "Stäng alla"
|
512 |
|
513 |
-
|
514 |
-
#: includes/admin/class-dlm-admin-writepanels.php:87
|
515 |
msgid "Expand all"
|
516 |
msgstr "Expandera alla"
|
517 |
|
518 |
-
|
519 |
-
#: includes/admin/class-dlm-admin-writepanels.php:210
|
520 |
msgid "Are you sure you want to delete this file?"
|
521 |
msgstr "Är du säker på att du vill ta bort denna fil?"
|
522 |
|
523 |
-
|
524 |
-
#: includes/admin/class-dlm-admin.php:87
|
525 |
msgid "General"
|
526 |
msgstr "Allmänna"
|
527 |
|
528 |
-
|
529 |
-
#: includes/admin/class-dlm-admin.php:93
|
530 |
msgid "Default Template"
|
531 |
msgstr "Standardmall"
|
532 |
|
533 |
-
|
534 |
-
#: includes/admin/class-dlm-admin.php:94
|
535 |
msgid ""
|
536 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
537 |
"default (this can be overridden by the <code>format</code> argument)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
msgstr ""
|
539 |
-
"Välj vilken mall som ska användas för <code>[download]</code> shortcodes som "
|
540 |
-
"standard (detta kan skrivas över av <code>format</code>-argumentet)."
|
541 |
|
542 |
-
|
543 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
544 |
msgid "Endpoint"
|
545 |
msgstr "Slutpunkt"
|
546 |
|
547 |
-
|
548 |
-
#: includes/admin/class-dlm-admin.php:104
|
549 |
msgid "download"
|
550 |
msgstr "ladda-ner"
|
551 |
|
552 |
-
|
553 |
-
#: includes/admin/class-dlm-admin.php:105
|
554 |
msgid "Download Endpoint"
|
555 |
msgstr "Nedladdningsslutpunkt"
|
556 |
|
557 |
-
|
558 |
-
#: includes/admin/class-dlm-admin.php:106
|
559 |
-
#, php-format
|
560 |
msgid ""
|
561 |
-
"Define what endpoint should be used for download links. By default this will
|
562 |
-
"be <code>%s</code>."
|
563 |
-
msgstr ""
|
564 |
-
"Definiera vilken slutpunkt nedladdningar ska ha. Som standard kommer detta "
|
565 |
-
"vara <code>%s</code>."
|
566 |
|
567 |
-
|
568 |
-
#: includes/admin/class-dlm-admin.php:111
|
569 |
msgid "Endpoint Value"
|
570 |
msgstr "Slutpunktsvärde"
|
571 |
|
572 |
-
|
573 |
-
#: includes/admin/class-dlm-admin.php:112
|
574 |
-
#, php-format
|
575 |
msgid ""
|
576 |
"Define what unique value should be used on the end of your endpoint to "
|
577 |
-
"identify the downloadable file. e.g. ID would give a link like
|
578 |
-
"code>"
|
579 |
-
msgstr ""
|
580 |
-
"Definiera vilket unikt värde i slutet på din slutpunkt för att identifiera "
|
581 |
-
"den nedladdningsbara filen. Exempelvis, ID skulle ge dig en länk som<code>"
|
582 |
-
"%s</code>"
|
583 |
|
584 |
-
|
585 |
-
#: includes/admin/class-dlm-admin.php:
|
586 |
-
#: includes/admin/class-dlm-admin.php:369
|
587 |
msgid "Download ID"
|
588 |
msgstr "Nedladdnings-ID"
|
589 |
|
590 |
-
|
591 |
-
#: includes/admin/class-dlm-admin.php:116
|
592 |
msgid "Download slug"
|
593 |
msgstr "Nedladdningsslug"
|
594 |
|
595 |
-
|
596 |
-
#: includes/admin/class-dlm-admin.php:122
|
597 |
msgid "X-Accel-Redirect / X-Sendfile"
|
598 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
599 |
|
600 |
-
|
601 |
-
#: includes/admin/class-dlm-admin.php:
|
602 |
-
#: includes/admin/class-dlm-admin.php:
|
603 |
msgid "Enable"
|
604 |
msgstr "Aktivera"
|
605 |
|
606 |
-
|
607 |
-
#: includes/admin/class-dlm-admin.php:124
|
608 |
msgid ""
|
609 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be
|
610 |
-
"used to serve downloads instead of PHP (server requires
|
611 |
-
"code>)."
|
612 |
-
msgstr ""
|
613 |
-
"Om det stödjs, kan <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> "
|
614 |
-
"användas för att hantera nedladdningar istället för PHP (servern behöver då "
|
615 |
"<code>mod_xsendfile</code>)."
|
|
|
|
|
|
|
|
|
|
|
616 |
|
617 |
-
|
618 |
-
|
|
|
|
|
|
|
|
|
|
|
619 |
msgid "Logging"
|
620 |
msgstr "Loggar"
|
621 |
|
622 |
-
|
623 |
-
#: includes/admin/class-dlm-admin.php:136
|
624 |
msgid "Download Log"
|
625 |
msgstr "Nedladdningslogg"
|
626 |
|
627 |
-
|
628 |
-
#: includes/admin/class-dlm-admin.php:137
|
629 |
msgid "Log download attempts, IP addresses and more."
|
630 |
msgstr "Loggar nedladdningsförsök, IP-adresser med mera."
|
631 |
|
632 |
-
|
633 |
-
#: includes/admin/class-dlm-admin.php:143
|
634 |
msgid "Blacklist IPs"
|
635 |
msgstr "Svartlista IP"
|
636 |
|
637 |
-
|
638 |
-
#: includes/admin/class-dlm-admin.php:144
|
639 |
msgid ""
|
640 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
641 |
"wildcard."
|
642 |
-
msgstr ""
|
643 |
-
"Lista IP-adresser att svartlista, 1 per rad. Använd <code>*</code> för "
|
644 |
-
"wildcard."
|
645 |
|
646 |
-
|
647 |
-
#: includes/admin/class-dlm-admin.php:151
|
648 |
msgid "Blacklist user agents"
|
649 |
msgstr "Svartlista användarprogram"
|
650 |
|
651 |
-
|
652 |
-
#: includes/admin/class-dlm-admin.php:152
|
653 |
msgid "List browser user agents to blacklist, 1 per line."
|
654 |
msgstr "Lista webbläsarprogram att svartlista, 1 per rad."
|
655 |
|
656 |
-
|
657 |
-
#: includes/admin/class-dlm-admin.php:204
|
658 |
msgid "Logs"
|
659 |
msgstr "Loggar"
|
660 |
|
661 |
-
|
662 |
-
#: includes/admin/class-dlm-admin.php:237
|
663 |
msgid "Settings successfully saved"
|
664 |
msgstr "Inställningar sparade"
|
665 |
|
666 |
-
|
667 |
-
#: includes/admin/class-dlm-admin.php:304
|
668 |
msgid "Save Changes"
|
669 |
msgstr "Spara ändringar"
|
670 |
|
671 |
-
|
672 |
-
#: includes/admin/class-dlm-admin.php:341
|
673 |
msgid "Download Logs"
|
674 |
msgstr "Ladda ner loggar"
|
675 |
|
676 |
-
|
677 |
-
#: includes/admin/class-dlm-admin.php:341
|
678 |
msgid "Export CSV"
|
679 |
msgstr "Exportera CSV"
|
680 |
|
681 |
-
|
682 |
-
|
|
|
|
|
|
|
683 |
msgid "Version ID"
|
684 |
msgstr "ID-version"
|
685 |
|
686 |
-
|
687 |
-
|
|
|
|
|
|
|
688 |
msgid "User ID"
|
689 |
msgstr "Användar-ID"
|
690 |
|
691 |
-
|
692 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
msgid "User IP"
|
694 |
msgstr "Användar-IP"
|
695 |
|
696 |
-
|
697 |
-
#: includes/admin/class-dlm-
|
698 |
-
#: includes/admin/class-dlm-logging-list-table.php:120
|
699 |
msgid "User Agent"
|
700 |
msgstr "Användarprogram"
|
701 |
|
702 |
-
|
703 |
-
#: includes/admin/class-dlm-
|
704 |
-
#: includes/admin/class-dlm-logging-list-table.php:121
|
705 |
msgid "Date"
|
706 |
msgstr "Datum"
|
707 |
|
708 |
-
|
709 |
-
#: includes/admin/class-dlm-admin.php:375
|
710 |
msgid "Status"
|
711 |
msgstr "Status"
|
712 |
|
713 |
-
|
714 |
-
#: includes/admin/class-dlm-logging-list-table.php:43
|
715 |
msgid "Download Complete"
|
716 |
msgstr "Nedladdning slutförd"
|
717 |
|
718 |
-
|
719 |
-
#: includes/admin/class-dlm-logging-list-table.php:50
|
720 |
-
#, php-format
|
721 |
msgid "%s ago"
|
722 |
msgstr "%s sedan"
|
723 |
|
724 |
-
|
725 |
-
#: includes/admin/class-dlm-logging-list-table.php:57
|
726 |
-
#, php-format
|
727 |
msgid "Download #%d (no longer exists)"
|
728 |
msgstr "Nedladdning #%d (finns inte längre)"
|
729 |
|
730 |
-
|
731 |
-
#: includes/admin/class-dlm-logging-list-table.php:65
|
732 |
-
#, php-format
|
733 |
msgid "v%s"
|
734 |
msgstr "v%s"
|
735 |
|
736 |
-
|
737 |
-
#: includes/admin/class-dlm-logging-list-table.php:85
|
738 |
msgid "Non-member"
|
739 |
msgstr "Icke-medlem"
|
740 |
|
741 |
-
|
742 |
-
#: includes/admin/class-dlm-logging-list-table.php:118
|
743 |
msgid "User"
|
744 |
msgstr "Användare"
|
745 |
|
746 |
-
|
747 |
-
#: includes/admin/class-dlm-logging-list-table.php:119
|
748 |
msgid "IP Address"
|
749 |
msgstr "IP-address"
|
750 |
|
751 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
752 |
#: includes/admin/html-downloadable-file-version.php:3
|
753 |
msgid "Remove"
|
754 |
msgstr "Ta bort"
|
755 |
|
756 |
-
# @ download_monitor
|
757 |
#: includes/admin/html-downloadable-file-version.php:4
|
758 |
msgid "Click to toggle"
|
759 |
msgstr "Klicka för att växla"
|
760 |
|
761 |
-
# @ download_monitor
|
762 |
#: includes/admin/html-downloadable-file-version.php:5
|
763 |
-
#, php-format
|
764 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
765 |
msgstr "Version <span class=\"version\">%s</span> (%s)"
|
766 |
|
767 |
-
# @ download_monitor
|
768 |
#: includes/admin/html-downloadable-file-version.php:5
|
769 |
-
#: includes/admin/html-downloadable-file-version.php:
|
770 |
msgid "n/a"
|
771 |
msgstr "Ej applicerbar"
|
772 |
|
773 |
-
# @ download_monitor
|
774 |
#: includes/admin/html-downloadable-file-version.php:5
|
775 |
-
#, php-format
|
776 |
msgid "Downloaded %s time"
|
777 |
msgid_plural "Downloaded %s times"
|
778 |
msgstr[0] "Nedladdad %s gånger"
|
779 |
msgstr[1] "Nedladdade %s gånger"
|
780 |
|
781 |
-
|
782 |
-
#: includes/admin/html-downloadable-file-version.php:18
|
783 |
msgid "File URL(s)"
|
784 |
msgstr "Fil-URL(er)"
|
785 |
|
786 |
-
|
787 |
-
#: includes/admin/html-downloadable-file-version.php:19
|
788 |
msgid ""
|
789 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
790 |
"(chosen at random)."
|
791 |
-
msgstr ""
|
792 |
-
"Skriv in en sökväg/URL per rad - multipla filer kommer att användas som "
|
793 |
-
"alternativ/mirrors (valda slumpmässigt)."
|
794 |
|
795 |
-
|
796 |
-
|
|
|
|
|
|
|
797 |
msgid "Choose a file"
|
798 |
msgstr "Välj en fil"
|
799 |
|
800 |
-
|
801 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
802 |
msgid "Insert file URL"
|
803 |
msgstr "Skriv in URL till fil"
|
804 |
|
805 |
-
|
806 |
-
#: includes/admin/html-downloadable-file-version.php:21
|
807 |
-
msgid "Upload file"
|
808 |
-
msgstr "Ladda upp en fil"
|
809 |
-
|
810 |
-
# @ download_monitor
|
811 |
-
#: includes/admin/html-downloadable-file-version.php:22
|
812 |
msgid "Browse for file"
|
813 |
msgstr "Sök efter uppladdad fil"
|
814 |
|
815 |
-
|
816 |
-
#: includes/admin/html-downloadable-file-version.php:35
|
817 |
msgid "File Date"
|
818 |
msgstr "Filens datum"
|
819 |
|
820 |
-
|
821 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
822 |
msgid "h"
|
823 |
msgstr "tim"
|
824 |
|
825 |
-
|
826 |
-
#: includes/admin/html-downloadable-file-version.php:36
|
827 |
msgid "m"
|
828 |
msgstr "min"
|
829 |
|
830 |
-
|
831 |
-
|
|
|
|
|
|
|
832 |
msgid "Download does not exist."
|
833 |
msgstr "Nedladdning finns ej."
|
834 |
|
835 |
-
|
836 |
-
#: includes/class-dlm-download-handler.php:
|
837 |
-
#: includes/class-dlm-download-handler.php:
|
838 |
-
#: includes/class-dlm-download-handler.php:
|
839 |
-
#: includes/class-dlm-download-handler.php:
|
840 |
-
#: includes/class-dlm-download-handler.php:286
|
841 |
msgid "Go to homepage →"
|
842 |
msgstr "Gå till hemsidan →"
|
843 |
|
844 |
-
|
845 |
-
#: includes/class-dlm-download-handler.php:
|
846 |
-
#: includes/class-dlm-download-handler.php:
|
847 |
-
#: includes/class-dlm-download-handler.php:
|
848 |
-
#: includes/class-dlm-download-handler.php:
|
849 |
-
#: includes/class-dlm-download-handler.php:286
|
850 |
msgid "Download Error"
|
851 |
msgstr "Nedladdningsfel"
|
852 |
|
853 |
-
|
854 |
-
#: includes/class-dlm-download-handler.php:
|
855 |
-
#: includes/class-dlm-download-handler.php:145
|
856 |
msgid "No file paths defined."
|
857 |
msgstr "Inga sökvägar till fil finns definierade."
|
858 |
|
859 |
-
|
860 |
-
#: includes/class-dlm-download-handler.php:154
|
861 |
msgid "You do not have permission to access this download."
|
862 |
msgstr "Du har inte tillräckliga rättigheter för denna nedladdning."
|
863 |
|
864 |
-
|
865 |
-
#: includes/class-dlm-download-handler.php:
|
866 |
-
#: includes/class-dlm-download-handler.php:
|
867 |
-
#: includes/class-dlm-download-handler.php:
|
868 |
-
#: includes/class-dlm-download-handler.php:264
|
869 |
msgid "Redirected to file"
|
870 |
msgstr "Omdirigerad till fil"
|
871 |
|
872 |
-
|
873 |
-
#: includes/class-dlm-download-handler.php:279
|
874 |
msgid "Redirected to remote file."
|
875 |
msgstr "Omdirigerad till fil på annan plats."
|
876 |
|
877 |
-
|
878 |
-
#: includes/class-dlm-download-handler.php:284
|
879 |
msgid "File not found"
|
880 |
msgstr "Fil hittas ej"
|
881 |
|
882 |
-
|
883 |
-
#: includes/class-dlm-download-handler.php:286
|
884 |
msgid "File not found."
|
885 |
msgstr "Fil hittas ej."
|
886 |
|
887 |
-
|
888 |
-
#: includes/class-dlm-shortcodes.php:102
|
889 |
msgid "Download not found"
|
890 |
msgstr "Nedladdning hittas ej"
|
891 |
|
892 |
-
# @ download_monitor
|
893 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
894 |
msgid "Display a list of your downloads."
|
895 |
msgstr "Visa en lista med dina nedladdningar."
|
896 |
|
897 |
-
# @ download_monitor
|
898 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
899 |
msgid "Downloads List"
|
900 |
msgstr "Nedladdningslista"
|
901 |
|
902 |
-
# @ download_monitor
|
903 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
904 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
905 |
msgid "Featured Downloads"
|
906 |
msgstr "Viktiga nedladdningar"
|
907 |
|
908 |
-
# @ download_monitor
|
909 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
910 |
msgid "Title:"
|
911 |
msgstr "Titel:"
|
912 |
|
913 |
-
# @ download_monitor
|
914 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
915 |
msgid "Limit:"
|
916 |
msgstr "Begränsning:"
|
917 |
|
918 |
-
# @ download_monitor
|
919 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
920 |
msgid "Output template:"
|
921 |
msgstr "Outputmall:"
|
922 |
|
923 |
-
# @ download_monitor
|
924 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
925 |
msgid "Default template"
|
926 |
msgstr "Standardmall"
|
927 |
|
928 |
-
# @ download_monitor
|
929 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
930 |
msgid "Order by:"
|
931 |
msgstr "Sortera på:"
|
932 |
|
933 |
-
# @ download_monitor
|
934 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
935 |
msgid "Random"
|
936 |
msgstr "Slumpmässig"
|
937 |
|
938 |
-
# @ download_monitor
|
939 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
940 |
msgid "Date added"
|
941 |
msgstr "Datum tillagt"
|
942 |
|
943 |
-
# @ download_monitor
|
944 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
945 |
msgid "Date modified"
|
946 |
msgstr "Datum modifierat"
|
947 |
|
948 |
-
# @ download_monitor
|
949 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
950 |
msgid "Order:"
|
951 |
msgstr "Sortera:"
|
952 |
|
953 |
-
# @ download_monitor
|
954 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
955 |
msgid "ASC"
|
956 |
msgstr "Fallande"
|
957 |
|
958 |
-
# @ download_monitor
|
959 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
960 |
msgid "DESC"
|
961 |
msgstr "Stigande"
|
962 |
|
963 |
-
# @ download_monitor
|
964 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
965 |
msgid "Show only featured downloads"
|
966 |
msgstr "Visa bara viktiga nedladdningar"
|
967 |
|
968 |
-
# @ download_monitor
|
969 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
970 |
msgid "Show only members only downloads"
|
971 |
msgstr "Visa bara medlemstillåtna nedladdningar"
|
972 |
|
973 |
-
# @ download_monitor
|
974 |
#: templates/content-download-box.php:12
|
975 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
976 |
-
#, php-format
|
977 |
msgid "1 download"
|
978 |
msgid_plural "%d downloads"
|
979 |
msgstr[0] "1 nedladdning"
|
980 |
msgstr[1] "%d nedladdningar"
|
981 |
|
982 |
-
# @ download_monitor
|
983 |
#: templates/content-download-box.php:20
|
984 |
-
#: templates/content-download-filename.php:8
|
985 |
-
|
986 |
msgid "Version %s"
|
987 |
msgstr "Version %s"
|
988 |
|
989 |
-
# @ download_monitor
|
990 |
#: templates/content-download-box.php:21
|
991 |
msgid "Download File"
|
992 |
msgstr "Ladda ner fil"
|
993 |
|
994 |
-
# @ download_monitor
|
995 |
#: templates/content-download-button.php:9
|
996 |
-
#, php-format
|
997 |
msgid "Download “%s”"
|
998 |
msgstr "Ladda ner “%s”"
|
999 |
|
1000 |
-
# @ download_monitor
|
1001 |
#: templates/content-download-button.php:10
|
1002 |
-
|
1003 |
msgid "Downloaded 1 time"
|
1004 |
msgid_plural "Downloaded %d times"
|
1005 |
msgstr[0] "Nedladdad 1 gång"
|
1006 |
msgstr[1] "Nedladdad %d gånger"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:23+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/download-monitor/language/sv_SE/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
"Language: sv_SE\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
17 |
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "Inställningar"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
|
|
23 |
msgid "Add-ons"
|
24 |
msgstr "Tillägg"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
|
|
27 |
msgid "Docs"
|
28 |
msgstr "Dokument"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
|
|
32 |
msgid "Categories"
|
33 |
msgstr "Kategorier"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
|
|
36 |
msgid "Download Category"
|
37 |
msgstr "Nedladdningskategori"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
|
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "Sök nedladdningskategori"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
|
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "Alla kategorier"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
|
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "Överordnad nedladdningskategori"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
|
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "Överordnad nedladdningskategori:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
|
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "Ändra nedladdningskategori"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
|
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "Uppdatera nedladdningskategori"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
|
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "Lägg till ny nedladdningskategori"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
|
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "Nytt namn på nedladdningskategori"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
|
|
73 |
msgid "Tags"
|
74 |
msgstr "Etiketter"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
|
|
77 |
msgid "Download Tag"
|
78 |
msgstr "Nedladdningsetikett"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
|
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "Sök nedladdningsetikett"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
|
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "Alla nedladdningsetiketter"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
|
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "Överordnad nedladdningsetikett"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
|
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "Överordnad nedladdningsetikett:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
|
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "Ändra nedladdningsetikett"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
|
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "Uppdatera nedladdningsetikett"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
|
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "Lägg till ny nedladdningsetikett"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
|
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "Nytt namn på nedladdningsetikett"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
+
msgid "All Downloads"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr "Nedladdningar"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
121 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
|
|
122 |
msgid "Download"
|
123 |
msgstr "Nedladdning"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
|
|
126 |
msgid "Add New"
|
127 |
msgstr "Lägg till ny"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
|
|
130 |
msgid "Add Download"
|
131 |
msgstr "Lägg till ny nedladdning"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
|
|
134 |
msgid "Edit"
|
135 |
msgstr "Ändra"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
|
|
138 |
msgid "Edit Download"
|
139 |
msgstr "Ändra nedladdning"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
|
|
142 |
msgid "New Download"
|
143 |
msgstr "Ny nedladdning"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
|
|
146 |
msgid "View Download"
|
147 |
msgstr "Visa nedladdning"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
|
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "Sök nedladdning"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
|
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "Ingen nedladdnings hittas"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
|
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "Ingen nedladdning hittas i skräpkorgen"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
|
|
162 |
msgid "Parent Download"
|
163 |
msgstr "Överordnad nedladdning"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
|
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "Här kan du skapa och hantera dina nedladdningar för din webbplats."
|
168 |
|
169 |
+
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
171 |
+
msgid "Download Monitor Add-ons"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
175 |
msgid "Select a category"
|
176 |
msgstr "Välj en kategori"
|
177 |
|
|
|
178 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
179 |
msgid "Download title"
|
180 |
msgstr "Nedladdningstitel"
|
181 |
|
|
|
182 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
184 |
msgid "Download updated."
|
185 |
msgstr "Nedladdning uppdaterad."
|
186 |
|
|
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
188 |
msgid "Custom field updated."
|
189 |
msgstr "Eget fält uppdaterat."
|
190 |
|
|
|
191 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
192 |
msgid "Custom field deleted."
|
193 |
msgstr "Eget fält borttaget."
|
194 |
|
|
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr "Nedladdning återställd till revision från %s"
|
198 |
|
|
|
199 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
200 |
msgid "Download published."
|
201 |
msgstr "Nedladdning publicerad."
|
202 |
|
|
|
203 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
204 |
msgid "Download saved."
|
205 |
msgstr "Nedladdning sparad."
|
206 |
|
|
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
208 |
msgid "Download submitted."
|
209 |
msgstr "Nedladdning skickad."
|
210 |
|
|
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "Nedladdning schemalagd för: <strong>%1$s</strong>."
|
214 |
|
|
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr "M j, Y @ G:i"
|
218 |
|
|
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "Nedladdningsutkast uppdaterat."
|
222 |
|
223 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
|
|
224 |
msgid "Image"
|
225 |
msgstr "Bild"
|
226 |
|
227 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
|
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
229 |
msgid "Title"
|
230 |
msgstr "Titel"
|
231 |
|
232 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
|
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
234 |
msgid "ID"
|
235 |
msgstr "ID"
|
236 |
|
237 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
238 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
|
|
239 |
msgid "File"
|
240 |
msgstr "Fil"
|
241 |
|
242 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
|
|
245 |
msgid "Version"
|
246 |
msgstr "Version"
|
247 |
|
248 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
252 |
+
msgid "Download count"
|
253 |
+
msgstr "Antal nedladdningar"
|
254 |
|
255 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
|
|
256 |
msgid "Featured"
|
257 |
msgstr "Viktig"
|
258 |
|
259 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
|
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
261 |
msgid "Members only"
|
262 |
msgstr "Endast för medlemmar"
|
263 |
|
264 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
265 |
+
msgid "Redirect only"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
269 |
msgid "Date posted"
|
270 |
msgstr "Publiceringsdatum"
|
271 |
|
272 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
275 |
+
msgid "Yes"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "Populära nedladdningar"
|
281 |
|
|
|
282 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "Det finns ingen statistik ännu!"
|
285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
#: includes/admin/class-dlm-admin-insert.php:40
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
289 |
msgid "Insert Download"
|
290 |
msgstr "Infoga nedladdning"
|
291 |
|
292 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
|
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "Infoga shortcode"
|
296 |
|
297 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
|
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "Enkel uppladdning"
|
300 |
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
|
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "Fel: Filen skapades inte."
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
|
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "Nedladdning skapades."
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
|
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "Fel: Nedladdning skapades ej."
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
|
|
314 |
msgid "Choose a download"
|
315 |
msgstr "Välj nedladdning"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
|
|
318 |
msgid "Template"
|
319 |
msgstr "Mall"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
|
|
322 |
msgid "Template Name"
|
323 |
msgstr "Mallnamn"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
|
|
|
|
326 |
msgid ""
|
327 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "Om detta lämnas tomt kommer standardmallen <code>content-download.php</code> användas. Om du skriver in exempelvis, <code>bild</code>, kommer <code>content-download-bild.php</code> användas istället. "
|
|
|
|
|
|
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
|
|
333 |
msgid "Drop file here"
|
334 |
msgstr "Släpp filen här"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
|
|
338 |
msgid "or"
|
339 |
msgstr "eller"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
|
|
342 |
msgid "Select File"
|
343 |
msgstr "Välj fil"
|
344 |
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
|
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "Skriv in URL manuellt"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
|
|
350 |
msgid "Download URL"
|
351 |
msgstr "Nedladdnings-URL"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
|
|
354 |
msgid "Required URL"
|
355 |
msgstr "Nödvändig URL"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
|
|
358 |
msgid "Download Title"
|
359 |
msgstr "Nedladdningstitel"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
|
|
362 |
msgid "Required title"
|
363 |
msgstr "Nödvändig titel"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
|
|
366 |
msgid "Optional version number"
|
367 |
msgstr "Alternativt versionsnummer"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
|
|
370 |
msgid "Save Download"
|
371 |
msgstr "Spara"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
|
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "Tillåtna filer"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
|
|
378 |
msgid "Please wait..."
|
379 |
msgstr "Ett ögonblick..."
|
380 |
|
|
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "Välj en fil"
|
385 |
|
386 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
|
|
387 |
msgid "No files found"
|
388 |
msgstr "Inga filer hittades"
|
389 |
|
|
|
390 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
391 |
msgid "Download Options"
|
392 |
msgstr "Nedladdningsaltenativ"
|
393 |
|
|
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
395 |
+
msgid "Downloadable Files/Versions"
|
396 |
+
msgstr ""
|
397 |
|
|
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
399 |
msgid "Short Description"
|
400 |
msgstr "Kort beskrivning"
|
401 |
|
|
|
402 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
403 |
msgid "Featured download"
|
404 |
msgstr "Viktig nedladdning"
|
405 |
|
|
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
407 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
+
msgstr "Markera denna nedladdning som viktig. Används av shortcodes och widgets."
|
|
|
409 |
|
|
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
411 |
msgid ""
|
412 |
"Only logged in users will be able to access the file via a download link if "
|
413 |
"this is enabled."
|
414 |
+
msgstr "Bara inloggade användare kommer åt filen via en nedladdningslänk om detta är aktiverat."
|
415 |
+
|
416 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
417 |
+
msgid "Redirect to file"
|
418 |
msgstr ""
|
|
|
|
|
419 |
|
420 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
421 |
+
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr ""
|
425 |
|
426 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
427 |
+
msgid "Add file"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
431 |
msgid "Close all"
|
432 |
msgstr "Stäng alla"
|
433 |
|
434 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
435 |
msgid "Expand all"
|
436 |
msgstr "Expandera alla"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
|
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "Är du säker på att du vill ta bort denna fil?"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
|
|
443 |
msgid "General"
|
444 |
msgstr "Allmänna"
|
445 |
|
446 |
+
#: includes/admin/class-dlm-admin.php:100
|
|
|
447 |
msgid "Default Template"
|
448 |
msgstr "Standardmall"
|
449 |
|
450 |
+
#: includes/admin/class-dlm-admin.php:101
|
|
|
451 |
msgid ""
|
452 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "Välj vilken mall som ska användas för <code>[download]</code> shortcodes som standard (detta kan skrivas över av <code>format</code>-argumentet)."
|
455 |
+
|
456 |
+
#: includes/admin/class-dlm-admin.php:104
|
457 |
+
msgid "Default - Title and count"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: includes/admin/class-dlm-admin.php:105
|
461 |
+
msgid "Button - CSS styled button showing title and count"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: includes/admin/class-dlm-admin.php:106
|
465 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: includes/admin/class-dlm-admin.php:107
|
469 |
+
msgid "Filename - Filename and download count"
|
470 |
msgstr ""
|
|
|
|
|
471 |
|
472 |
+
#: includes/admin/class-dlm-admin.php:108
|
473 |
+
msgid "Title - Shows download title only"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/admin/class-dlm-admin.php:109
|
477 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/admin/class-dlm-admin.php:110
|
481 |
+
msgid "Custom template"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/admin/class-dlm-admin.php:116
|
485 |
+
msgid "Custom Template"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/admin/class-dlm-admin.php:117
|
489 |
+
msgid ""
|
490 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/admin/class-dlm-admin.php:122
|
497 |
msgid "Endpoint"
|
498 |
msgstr "Slutpunkt"
|
499 |
|
500 |
+
#: includes/admin/class-dlm-admin.php:127
|
|
|
501 |
msgid "download"
|
502 |
msgstr "ladda-ner"
|
503 |
|
504 |
+
#: includes/admin/class-dlm-admin.php:128
|
|
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "Nedladdningsslutpunkt"
|
507 |
|
508 |
+
#: includes/admin/class-dlm-admin.php:129
|
|
|
|
|
509 |
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
+
msgstr "Definiera vilken slutpunkt nedladdningar ska ha. Som standard kommer detta vara <code>%s</code>."
|
|
|
|
|
513 |
|
514 |
+
#: includes/admin/class-dlm-admin.php:134
|
|
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "Slutpunktsvärde"
|
517 |
|
518 |
+
#: includes/admin/class-dlm-admin.php:135
|
|
|
|
|
519 |
msgid ""
|
520 |
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
+
msgstr "Definiera vilket unikt värde i slutet på din slutpunkt för att identifiera den nedladdningsbara filen. Exempelvis, ID skulle ge dig en länk som<code>%s</code>"
|
|
|
|
|
|
|
524 |
|
525 |
+
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
|
|
527 |
msgid "Download ID"
|
528 |
msgstr "Nedladdnings-ID"
|
529 |
|
530 |
+
#: includes/admin/class-dlm-admin.php:139
|
|
|
531 |
msgid "Download slug"
|
532 |
msgstr "Nedladdningsslug"
|
533 |
|
534 |
+
#: includes/admin/class-dlm-admin.php:145
|
|
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
+
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
541 |
msgid "Enable"
|
542 |
msgstr "Aktivera"
|
543 |
|
544 |
+
#: includes/admin/class-dlm-admin.php:147
|
|
|
545 |
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
|
|
|
|
|
|
|
|
548 |
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "Om det stödjs, kan <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> användas för att hantera nedladdningar istället för PHP (servern behöver då <code>mod_xsendfile</code>)."
|
550 |
+
|
551 |
+
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "Loggar"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
|
|
566 |
msgid "Download Log"
|
567 |
msgstr "Nedladdningslogg"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
|
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "Loggar nedladdningsförsök, IP-adresser med mera."
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
|
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "Svartlista IP"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
|
|
578 |
msgid ""
|
579 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
"wildcard."
|
581 |
+
msgstr "Lista IP-adresser att svartlista, 1 per rad. Använd <code>*</code> för wildcard."
|
|
|
|
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
|
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "Svartlista användarprogram"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
|
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "Lista webbläsarprogram att svartlista, 1 per rad."
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
|
|
592 |
msgid "Logs"
|
593 |
msgstr "Loggar"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
|
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "Inställningar sparade"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
|
|
600 |
msgid "Save Changes"
|
601 |
msgstr "Spara ändringar"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
604 |
msgid "Download Logs"
|
605 |
msgstr "Ladda ner loggar"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
608 |
msgid "Export CSV"
|
609 |
msgstr "Exportera CSV"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
612 |
+
msgid "Delete Logs"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
616 |
msgid "Version ID"
|
617 |
msgstr "ID-version"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
620 |
+
msgid "Filename"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
624 |
msgid "User ID"
|
625 |
msgstr "Användar-ID"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
628 |
+
msgid "User Login"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
632 |
+
msgid "User Email"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
636 |
msgid "User IP"
|
637 |
msgstr "Användar-IP"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
640 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
|
|
641 |
msgid "User Agent"
|
642 |
msgstr "Användarprogram"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
645 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
|
|
646 |
msgid "Date"
|
647 |
msgstr "Datum"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
|
|
650 |
msgid "Status"
|
651 |
msgstr "Status"
|
652 |
|
653 |
+
#: includes/admin/class-dlm-logging-list-table.php:50
|
|
|
654 |
msgid "Download Complete"
|
655 |
msgstr "Nedladdning slutförd"
|
656 |
|
657 |
+
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "%s sedan"
|
660 |
|
661 |
+
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "Nedladdning #%d (finns inte längre)"
|
664 |
|
665 |
+
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
669 |
+
#: includes/admin/class-dlm-logging-list-table.php:92
|
|
|
670 |
msgid "Non-member"
|
671 |
msgstr "Icke-medlem"
|
672 |
|
673 |
+
#: includes/admin/class-dlm-logging-list-table.php:125
|
|
|
674 |
msgid "User"
|
675 |
msgstr "Användare"
|
676 |
|
677 |
+
#: includes/admin/class-dlm-logging-list-table.php:126
|
|
|
678 |
msgid "IP Address"
|
679 |
msgstr "IP-address"
|
680 |
|
681 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
682 |
+
msgid "Any status"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
686 |
+
msgid "Failed"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
690 |
+
msgid "Redirected"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
694 |
+
msgid "Completed"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
698 |
+
msgid "Show all dates"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
702 |
+
msgid "%1$s %2$d"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
706 |
+
msgid "25 per page"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
710 |
+
msgid "50 per page"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
714 |
+
msgid "100 per page"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
718 |
+
msgid "200 per page"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
722 |
+
msgid "Show All"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
726 |
+
msgid "Filter"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
730 |
msgid "Remove"
|
731 |
msgstr "Ta bort"
|
732 |
|
|
|
733 |
#: includes/admin/html-downloadable-file-version.php:4
|
734 |
msgid "Click to toggle"
|
735 |
msgstr "Klicka för att växla"
|
736 |
|
|
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "Version <span class=\"version\">%s</span> (%s)"
|
740 |
|
|
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
743 |
msgid "n/a"
|
744 |
msgstr "Ej applicerbar"
|
745 |
|
|
|
746 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
747 |
msgid "Downloaded %s time"
|
748 |
msgid_plural "Downloaded %s times"
|
749 |
msgstr[0] "Nedladdad %s gånger"
|
750 |
msgstr[1] "Nedladdade %s gånger"
|
751 |
|
752 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
|
|
753 |
msgid "File URL(s)"
|
754 |
msgstr "Fil-URL(er)"
|
755 |
|
756 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
|
|
757 |
msgid ""
|
758 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
759 |
"(chosen at random)."
|
760 |
+
msgstr "Skriv in en sökväg/URL per rad - multipla filer kommer att användas som alternativ/mirrors (valda slumpmässigt)."
|
|
|
|
|
761 |
|
762 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
763 |
+
msgid "Upload file"
|
764 |
+
msgstr "Ladda upp en fil"
|
765 |
+
|
766 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
767 |
msgid "Choose a file"
|
768 |
msgstr "Välj en fil"
|
769 |
|
770 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
|
|
771 |
msgid "Insert file URL"
|
772 |
msgstr "Skriv in URL till fil"
|
773 |
|
774 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
msgid "Browse for file"
|
776 |
msgstr "Sök efter uppladdad fil"
|
777 |
|
778 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
|
|
779 |
msgid "File Date"
|
780 |
msgstr "Filens datum"
|
781 |
|
782 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
783 |
msgid "h"
|
784 |
msgstr "tim"
|
785 |
|
786 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
787 |
msgid "m"
|
788 |
msgstr "min"
|
789 |
|
790 |
+
#: includes/class-dlm-download-handler.php:140
|
791 |
+
msgid "Password Required"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/class-dlm-download-handler.php:150
|
795 |
msgid "Download does not exist."
|
796 |
msgstr "Nedladdning finns ej."
|
797 |
|
798 |
+
#: includes/class-dlm-download-handler.php:150
|
799 |
+
#: includes/class-dlm-download-handler.php:180
|
800 |
+
#: includes/class-dlm-download-handler.php:185
|
801 |
+
#: includes/class-dlm-download-handler.php:194
|
802 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
803 |
msgid "Go to homepage →"
|
804 |
msgstr "Gå till hemsidan →"
|
805 |
|
806 |
+
#: includes/class-dlm-download-handler.php:150
|
807 |
+
#: includes/class-dlm-download-handler.php:180
|
808 |
+
#: includes/class-dlm-download-handler.php:185
|
809 |
+
#: includes/class-dlm-download-handler.php:194
|
810 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
811 |
msgid "Download Error"
|
812 |
msgstr "Nedladdningsfel"
|
813 |
|
814 |
+
#: includes/class-dlm-download-handler.php:180
|
815 |
+
#: includes/class-dlm-download-handler.php:185
|
|
|
816 |
msgid "No file paths defined."
|
817 |
msgstr "Inga sökvägar till fil finns definierade."
|
818 |
|
819 |
+
#: includes/class-dlm-download-handler.php:194
|
|
|
820 |
msgid "You do not have permission to access this download."
|
821 |
msgstr "Du har inte tillräckliga rättigheter för denna nedladdning."
|
822 |
|
823 |
+
#: includes/class-dlm-download-handler.php:212
|
824 |
+
#: includes/class-dlm-download-handler.php:228
|
825 |
+
#: includes/class-dlm-download-handler.php:235
|
826 |
+
#: includes/class-dlm-download-handler.php:242
|
|
|
827 |
msgid "Redirected to file"
|
828 |
msgstr "Omdirigerad till fil"
|
829 |
|
830 |
+
#: includes/class-dlm-download-handler.php:281
|
|
|
831 |
msgid "Redirected to remote file."
|
832 |
msgstr "Omdirigerad till fil på annan plats."
|
833 |
|
834 |
+
#: includes/class-dlm-download-handler.php:286
|
|
|
835 |
msgid "File not found"
|
836 |
msgstr "Fil hittas ej"
|
837 |
|
838 |
+
#: includes/class-dlm-download-handler.php:288
|
|
|
839 |
msgid "File not found."
|
840 |
msgstr "Fil hittas ej."
|
841 |
|
842 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
|
|
843 |
msgid "Download not found"
|
844 |
msgstr "Nedladdning hittas ej"
|
845 |
|
|
|
846 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
847 |
msgid "Display a list of your downloads."
|
848 |
msgstr "Visa en lista med dina nedladdningar."
|
849 |
|
|
|
850 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
851 |
msgid "Downloads List"
|
852 |
msgstr "Nedladdningslista"
|
853 |
|
|
|
854 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
855 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
856 |
msgid "Featured Downloads"
|
857 |
msgstr "Viktiga nedladdningar"
|
858 |
|
|
|
859 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
860 |
msgid "Title:"
|
861 |
msgstr "Titel:"
|
862 |
|
|
|
863 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
864 |
msgid "Limit:"
|
865 |
msgstr "Begränsning:"
|
866 |
|
|
|
867 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
868 |
msgid "Output template:"
|
869 |
msgstr "Outputmall:"
|
870 |
|
|
|
871 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
872 |
msgid "Default template"
|
873 |
msgstr "Standardmall"
|
874 |
|
|
|
875 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
876 |
msgid "Order by:"
|
877 |
msgstr "Sortera på:"
|
878 |
|
|
|
879 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
880 |
msgid "Random"
|
881 |
msgstr "Slumpmässig"
|
882 |
|
|
|
883 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
884 |
msgid "Date added"
|
885 |
msgstr "Datum tillagt"
|
886 |
|
|
|
887 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
888 |
msgid "Date modified"
|
889 |
msgstr "Datum modifierat"
|
890 |
|
|
|
891 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
892 |
msgid "Order:"
|
893 |
msgstr "Sortera:"
|
894 |
|
|
|
895 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
896 |
msgid "ASC"
|
897 |
msgstr "Fallande"
|
898 |
|
|
|
899 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
900 |
msgid "DESC"
|
901 |
msgstr "Stigande"
|
902 |
|
|
|
903 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
904 |
msgid "Show only featured downloads"
|
905 |
msgstr "Visa bara viktiga nedladdningar"
|
906 |
|
|
|
907 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
908 |
msgid "Show only members only downloads"
|
909 |
msgstr "Visa bara medlemstillåtna nedladdningar"
|
910 |
|
|
|
911 |
#: templates/content-download-box.php:12
|
912 |
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
|
|
913 |
msgid "1 download"
|
914 |
msgid_plural "%d downloads"
|
915 |
msgstr[0] "1 nedladdning"
|
916 |
msgstr[1] "%d nedladdningar"
|
917 |
|
|
|
918 |
#: templates/content-download-box.php:20
|
919 |
+
#: templates/content-download-filename.php:8
|
920 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
921 |
msgid "Version %s"
|
922 |
msgstr "Version %s"
|
923 |
|
|
|
924 |
#: templates/content-download-box.php:21
|
925 |
msgid "Download File"
|
926 |
msgstr "Ladda ner fil"
|
927 |
|
|
|
928 |
#: templates/content-download-button.php:9
|
|
|
929 |
msgid "Download “%s”"
|
930 |
msgstr "Ladda ner “%s”"
|
931 |
|
|
|
932 |
#: templates/content-download-button.php:10
|
933 |
+
#: templates/content-download-version-list.php:17
|
934 |
msgid "Downloaded 1 time"
|
935 |
msgid_plural "Downloaded %d times"
|
936 |
msgstr[0] "Nedladdad 1 gång"
|
937 |
msgstr[1] "Nedladdad %d gånger"
|
938 |
+
|
939 |
+
#. Plugin Name of the plugin/theme
|
940 |
+
msgid "Download Monitor"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#. Plugin URI of the plugin/theme
|
944 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#. Description of the plugin/theme
|
948 |
+
msgid ""
|
949 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
950 |
+
"outputting download links and file information on your WordPress powered "
|
951 |
+
"site."
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#. Author of the plugin/theme
|
955 |
+
msgid "Mike Jolley"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#. Author URI of the plugin/theme
|
959 |
+
msgid "http://mikejolley.com"
|
960 |
+
msgstr ""
|
languages/download-monitor-tr_TR.mo
ADDED
Binary file
|
languages/download-monitor-tr_TR.po
ADDED
@@ -0,0 +1,958 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
+
# burakulker <burakulker@gmail.com>, 2014
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Download Monitor\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
9 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
10 |
+
"PO-Revision-Date: 2014-06-28 16:21+0000\n"
|
11 |
+
"Last-Translator: burakulker <burakulker@gmail.com>\n"
|
12 |
+
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/download-monitor/language/tr_TR/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: tr_TR\n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
|
19 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
20 |
+
msgid "Settings"
|
21 |
+
msgstr "Ayarlar"
|
22 |
+
|
23 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
24 |
+
msgid "Add-ons"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: download-monitor.php:94
|
28 |
+
msgid "Docs"
|
29 |
+
msgstr "Dökümanlar"
|
30 |
+
|
31 |
+
#: download-monitor.php:241 download-monitor.php:243
|
32 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
33 |
+
msgid "Categories"
|
34 |
+
msgstr "Kategoriler"
|
35 |
+
|
36 |
+
#: download-monitor.php:244
|
37 |
+
msgid "Download Category"
|
38 |
+
msgstr "Kategori İndir"
|
39 |
+
|
40 |
+
#: download-monitor.php:245
|
41 |
+
msgid "Search Download Categories"
|
42 |
+
msgstr "İndirilen kategorileri ara"
|
43 |
+
|
44 |
+
#: download-monitor.php:246
|
45 |
+
msgid "All Download Categories"
|
46 |
+
msgstr "Bütüm kategorileri indir"
|
47 |
+
|
48 |
+
#: download-monitor.php:247
|
49 |
+
msgid "Parent Download Category"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: download-monitor.php:248
|
53 |
+
msgid "Parent Download Category:"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: download-monitor.php:249
|
57 |
+
msgid "Edit Download Category"
|
58 |
+
msgstr "İndirilen kategori düzenle"
|
59 |
+
|
60 |
+
#: download-monitor.php:250
|
61 |
+
msgid "Update Download Category"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: download-monitor.php:251
|
65 |
+
msgid "Add New Download Category"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: download-monitor.php:252
|
69 |
+
msgid "New Download Category Name"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: download-monitor.php:271 download-monitor.php:273
|
73 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
74 |
+
msgid "Tags"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: download-monitor.php:274
|
78 |
+
msgid "Download Tag"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: download-monitor.php:275
|
82 |
+
msgid "Search Download Tags"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: download-monitor.php:276
|
86 |
+
msgid "All Download Tags"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: download-monitor.php:277
|
90 |
+
msgid "Parent Download Tag"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: download-monitor.php:278
|
94 |
+
msgid "Parent Download Tag:"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: download-monitor.php:279
|
98 |
+
msgid "Edit Download Tag"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: download-monitor.php:280
|
102 |
+
msgid "Update Download Tag"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: download-monitor.php:281
|
106 |
+
msgid "Add New Download Tag"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: download-monitor.php:282
|
110 |
+
msgid "New Download Tag Name"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: download-monitor.php:303
|
114 |
+
msgid "All Downloads"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: download-monitor.php:304
|
118 |
+
msgid "Downloads"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
122 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
123 |
+
msgid "Download"
|
124 |
+
msgstr "İndir"
|
125 |
+
|
126 |
+
#: download-monitor.php:306
|
127 |
+
msgid "Add New"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: download-monitor.php:307
|
131 |
+
msgid "Add Download"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: download-monitor.php:308
|
135 |
+
msgid "Edit"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: download-monitor.php:309
|
139 |
+
msgid "Edit Download"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: download-monitor.php:310
|
143 |
+
msgid "New Download"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: download-monitor.php:311 download-monitor.php:312
|
147 |
+
msgid "View Download"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: download-monitor.php:313
|
151 |
+
msgid "Search Downloads"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: download-monitor.php:314
|
155 |
+
msgid "No Downloads found"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: download-monitor.php:315
|
159 |
+
msgid "No Downloads found in trash"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: download-monitor.php:316
|
163 |
+
msgid "Parent Download"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: download-monitor.php:318
|
167 |
+
msgid "This is where you can create and manage downloads for your site."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/admin/class-dlm-addons.php:50
|
171 |
+
#: includes/admin/class-dlm-admin.php:260
|
172 |
+
msgid "Download Monitor Add-ons"
|
173 |
+
msgstr "Download Monitör Eklentileri"
|
174 |
+
|
175 |
+
#: includes/admin/class-dlm-admin-cpt.php:64
|
176 |
+
msgid "Select a category"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/admin/class-dlm-admin-cpt.php:124
|
180 |
+
msgid "Download title"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/admin/class-dlm-admin-cpt.php:140
|
184 |
+
#: includes/admin/class-dlm-admin-cpt.php:143
|
185 |
+
msgid "Download updated."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/admin/class-dlm-admin-cpt.php:141
|
189 |
+
msgid "Custom field updated."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: includes/admin/class-dlm-admin-cpt.php:142
|
193 |
+
msgid "Custom field deleted."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: includes/admin/class-dlm-admin-cpt.php:144
|
197 |
+
msgid "Download restored to revision from %s"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: includes/admin/class-dlm-admin-cpt.php:145
|
201 |
+
msgid "Download published."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: includes/admin/class-dlm-admin-cpt.php:146
|
205 |
+
msgid "Download saved."
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: includes/admin/class-dlm-admin-cpt.php:147
|
209 |
+
msgid "Download submitted."
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: includes/admin/class-dlm-admin-cpt.php:148
|
213 |
+
msgid "Download scheduled for: <strong>%1$s</strong>."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: includes/admin/class-dlm-admin-cpt.php:149
|
217 |
+
msgid "M j, Y @ G:i"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: includes/admin/class-dlm-admin-cpt.php:150
|
221 |
+
msgid "Download draft updated."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
225 |
+
msgid "Image"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
229 |
+
#: includes/widgets/class-dlm-widget-downloads.php:171
|
230 |
+
msgid "Title"
|
231 |
+
msgstr "Başlık"
|
232 |
+
|
233 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
234 |
+
#: includes/widgets/class-dlm-widget-downloads.php:173
|
235 |
+
msgid "ID"
|
236 |
+
msgstr "ID"
|
237 |
+
|
238 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
239 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
240 |
+
msgid "File"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
244 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
245 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
246 |
+
msgid "Version"
|
247 |
+
msgstr "Versiyon"
|
248 |
+
|
249 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
250 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
251 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
252 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
253 |
+
msgid "Download count"
|
254 |
+
msgstr "İndirme Sayısı"
|
255 |
+
|
256 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
257 |
+
msgid "Featured"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
261 |
+
#: includes/admin/class-dlm-admin-writepanels.php:63
|
262 |
+
msgid "Members only"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
266 |
+
msgid "Redirect only"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
270 |
+
msgid "Date posted"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
274 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
275 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
276 |
+
msgid "Yes"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: includes/admin/class-dlm-admin-dashboard.php:21
|
280 |
+
msgid "Popular Downloads"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: includes/admin/class-dlm-admin-dashboard.php:53
|
284 |
+
msgid "There are no stats available yet!"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: includes/admin/class-dlm-admin-insert.php:32
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
289 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
290 |
+
msgid "Insert Download"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
294 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
295 |
+
msgid "Insert Shortcode"
|
296 |
+
msgstr "KısaKod Ekle"
|
297 |
+
|
298 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
299 |
+
msgid "Quick-add download"
|
300 |
+
msgstr "Hızlı Dosya Ekleme"
|
301 |
+
|
302 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
303 |
+
msgid "Error: File was not created."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
307 |
+
msgid "Download successfully created."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
311 |
+
msgid "Error: Download was not created."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
315 |
+
msgid "Choose a download"
|
316 |
+
msgstr "Dosya seç"
|
317 |
+
|
318 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
319 |
+
msgid "Template"
|
320 |
+
msgstr "şablon"
|
321 |
+
|
322 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
323 |
+
msgid "Template Name"
|
324 |
+
msgstr "Şablon Adı"
|
325 |
+
|
326 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
327 |
+
msgid ""
|
328 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
329 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
330 |
+
">content-download-image.php</code> template will be used instead."
|
331 |
+
msgstr "Bu alanı boş bırakmak varsayılan şablonun kullanılmasına <code>content-download.php</code> neden olacaktır. Mesela <code>image</code> eklerseniz, <code>content-download-image.php</code> şablon dosyası kullanılacaktir. "
|
332 |
+
|
333 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
334 |
+
msgid "Drop file here"
|
335 |
+
msgstr "Dosyayı buraya sürükleyin"
|
336 |
+
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
338 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
339 |
+
msgid "or"
|
340 |
+
msgstr "ya da"
|
341 |
+
|
342 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
343 |
+
msgid "Select File"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
347 |
+
msgid "Enter URL manually"
|
348 |
+
msgstr "URL elle girin"
|
349 |
+
|
350 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
351 |
+
msgid "Download URL"
|
352 |
+
msgstr "İndirme URL"
|
353 |
+
|
354 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
355 |
+
msgid "Required URL"
|
356 |
+
msgstr "Gerekli URL"
|
357 |
+
|
358 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
359 |
+
msgid "Download Title"
|
360 |
+
msgstr "Dosya Başlığı"
|
361 |
+
|
362 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
363 |
+
msgid "Required title"
|
364 |
+
msgstr "Gerekli Başlık"
|
365 |
+
|
366 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
367 |
+
msgid "Optional version number"
|
368 |
+
msgstr "Opsiyonel versiyon numarası"
|
369 |
+
|
370 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
371 |
+
msgid "Save Download"
|
372 |
+
msgstr "Dosyayı Kaydet"
|
373 |
+
|
374 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
375 |
+
msgid "Allowed Files"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
379 |
+
msgid "Please wait..."
|
380 |
+
msgstr "Lütfen bekleyin..."
|
381 |
+
|
382 |
+
#: includes/admin/class-dlm-admin-media-browser.php:31
|
383 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
384 |
+
msgid "Browse for a file"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
388 |
+
msgid "No files found"
|
389 |
+
msgstr "Dosya bulunamadı"
|
390 |
+
|
391 |
+
#: includes/admin/class-dlm-admin-writepanels.php:29
|
392 |
+
msgid "Download Options"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: includes/admin/class-dlm-admin-writepanels.php:30
|
396 |
+
msgid "Downloadable Files/Versions"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: includes/admin/class-dlm-admin-writepanels.php:35
|
400 |
+
msgid "Short Description"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: includes/admin/class-dlm-admin-writepanels.php:57
|
404 |
+
msgid "Featured download"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: includes/admin/class-dlm-admin-writepanels.php:58
|
408 |
+
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: includes/admin/class-dlm-admin-writepanels.php:64
|
412 |
+
msgid ""
|
413 |
+
"Only logged in users will be able to access the file via a download link if "
|
414 |
+
"this is enabled."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
418 |
+
msgid "Redirect to file"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
422 |
+
msgid ""
|
423 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
424 |
+
" may need to move your file."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
428 |
+
msgid "Add file"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
432 |
+
msgid "Close all"
|
433 |
+
msgstr "Hepsini Kapat"
|
434 |
+
|
435 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
436 |
+
msgid "Expand all"
|
437 |
+
msgstr "Hepsini Aç"
|
438 |
+
|
439 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
440 |
+
msgid "Are you sure you want to delete this file?"
|
441 |
+
msgstr "Dosyayı silmek istediğinizden emin misiniz?"
|
442 |
+
|
443 |
+
#: includes/admin/class-dlm-admin.php:95
|
444 |
+
msgid "General"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: includes/admin/class-dlm-admin.php:100
|
448 |
+
msgid "Default Template"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: includes/admin/class-dlm-admin.php:101
|
452 |
+
msgid ""
|
453 |
+
"Choose which template is used for <code>[download]</code> shortcodes by "
|
454 |
+
"default (this can be overridden by the <code>format</code> argument)."
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/admin/class-dlm-admin.php:104
|
458 |
+
msgid "Default - Title and count"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: includes/admin/class-dlm-admin.php:105
|
462 |
+
msgid "Button - CSS styled button showing title and count"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/admin/class-dlm-admin.php:106
|
466 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/admin/class-dlm-admin.php:107
|
470 |
+
msgid "Filename - Filename and download count"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/admin/class-dlm-admin.php:108
|
474 |
+
msgid "Title - Shows download title only"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: includes/admin/class-dlm-admin.php:109
|
478 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: includes/admin/class-dlm-admin.php:110
|
482 |
+
msgid "Custom template"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: includes/admin/class-dlm-admin.php:116
|
486 |
+
msgid "Custom Template"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: includes/admin/class-dlm-admin.php:117
|
490 |
+
msgid ""
|
491 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
492 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
493 |
+
">content-download-image.php</code> template will be used instead. You can "
|
494 |
+
"add custom templates inside your theme folder."
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: includes/admin/class-dlm-admin.php:122
|
498 |
+
msgid "Endpoint"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: includes/admin/class-dlm-admin.php:127
|
502 |
+
msgid "download"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: includes/admin/class-dlm-admin.php:128
|
506 |
+
msgid "Download Endpoint"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: includes/admin/class-dlm-admin.php:129
|
510 |
+
msgid ""
|
511 |
+
"Define what endpoint should be used for download links. By default this will"
|
512 |
+
" be <code>%s</code>."
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: includes/admin/class-dlm-admin.php:134
|
516 |
+
msgid "Endpoint Value"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: includes/admin/class-dlm-admin.php:135
|
520 |
+
msgid ""
|
521 |
+
"Define what unique value should be used on the end of your endpoint to "
|
522 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
523 |
+
"<code>%s</code>"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/admin/class-dlm-admin.php:138
|
527 |
+
#: includes/admin/class-dlm-admin.php:460
|
528 |
+
msgid "Download ID"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/admin/class-dlm-admin.php:139
|
532 |
+
msgid "Download slug"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: includes/admin/class-dlm-admin.php:145
|
536 |
+
msgid "X-Accel-Redirect / X-Sendfile"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: includes/admin/class-dlm-admin.php:146
|
540 |
+
#: includes/admin/class-dlm-admin.php:154
|
541 |
+
#: includes/admin/class-dlm-admin.php:165
|
542 |
+
msgid "Enable"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: includes/admin/class-dlm-admin.php:147
|
546 |
+
msgid ""
|
547 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
548 |
+
" used to serve downloads instead of PHP (server requires "
|
549 |
+
"<code>mod_xsendfile</code>)."
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/admin/class-dlm-admin.php:153
|
553 |
+
msgid "Prevent hotlinking"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: includes/admin/class-dlm-admin.php:155
|
557 |
+
msgid ""
|
558 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
559 |
+
"originated from your site and if not, redirect them to the homepage."
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: includes/admin/class-dlm-admin.php:161
|
563 |
+
msgid "Logging"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: includes/admin/class-dlm-admin.php:167
|
567 |
+
msgid "Download Log"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: includes/admin/class-dlm-admin.php:168
|
571 |
+
msgid "Log download attempts, IP addresses and more."
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: includes/admin/class-dlm-admin.php:174
|
575 |
+
msgid "Blacklist IPs"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: includes/admin/class-dlm-admin.php:175
|
579 |
+
msgid ""
|
580 |
+
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
581 |
+
"wildcard."
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: includes/admin/class-dlm-admin.php:182
|
585 |
+
msgid "Blacklist user agents"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: includes/admin/class-dlm-admin.php:183
|
589 |
+
msgid "List browser user agents to blacklist, 1 per line."
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: includes/admin/class-dlm-admin.php:255
|
593 |
+
msgid "Logs"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/admin/class-dlm-admin.php:299
|
597 |
+
msgid "Settings successfully saved"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: includes/admin/class-dlm-admin.php:366
|
601 |
+
msgid "Save Changes"
|
602 |
+
msgstr "Değişiklikleri Kaydet"
|
603 |
+
|
604 |
+
#: includes/admin/class-dlm-admin.php:410
|
605 |
+
msgid "Download Logs"
|
606 |
+
msgstr "İndirme Kayıtları"
|
607 |
+
|
608 |
+
#: includes/admin/class-dlm-admin.php:410
|
609 |
+
msgid "Export CSV"
|
610 |
+
msgstr "CSV olarak dışa aktar"
|
611 |
+
|
612 |
+
#: includes/admin/class-dlm-admin.php:410
|
613 |
+
msgid "Delete Logs"
|
614 |
+
msgstr "Kayıtları Sil"
|
615 |
+
|
616 |
+
#: includes/admin/class-dlm-admin.php:461
|
617 |
+
msgid "Version ID"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/admin/class-dlm-admin.php:462
|
621 |
+
msgid "Filename"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/admin/class-dlm-admin.php:463
|
625 |
+
msgid "User ID"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/admin/class-dlm-admin.php:464
|
629 |
+
msgid "User Login"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/admin/class-dlm-admin.php:465
|
633 |
+
msgid "User Email"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/admin/class-dlm-admin.php:466
|
637 |
+
msgid "User IP"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: includes/admin/class-dlm-admin.php:467
|
641 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
642 |
+
msgid "User Agent"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/admin/class-dlm-admin.php:468
|
646 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
647 |
+
msgid "Date"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: includes/admin/class-dlm-admin.php:469
|
651 |
+
msgid "Status"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: includes/admin/class-dlm-logging-list-table.php:50
|
655 |
+
msgid "Download Complete"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: includes/admin/class-dlm-logging-list-table.php:57
|
659 |
+
msgid "%s ago"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: includes/admin/class-dlm-logging-list-table.php:64
|
663 |
+
msgid "Download #%d (no longer exists)"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: includes/admin/class-dlm-logging-list-table.php:72
|
667 |
+
msgid "v%s"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: includes/admin/class-dlm-logging-list-table.php:92
|
671 |
+
msgid "Non-member"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: includes/admin/class-dlm-logging-list-table.php:125
|
675 |
+
msgid "User"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: includes/admin/class-dlm-logging-list-table.php:126
|
679 |
+
msgid "IP Address"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
683 |
+
msgid "Any status"
|
684 |
+
msgstr "Durum"
|
685 |
+
|
686 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
687 |
+
msgid "Failed"
|
688 |
+
msgstr "Başarısız"
|
689 |
+
|
690 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
691 |
+
msgid "Redirected"
|
692 |
+
msgstr "Yönlendirildi"
|
693 |
+
|
694 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
695 |
+
msgid "Completed"
|
696 |
+
msgstr "Tamamlandı"
|
697 |
+
|
698 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
699 |
+
msgid "Show all dates"
|
700 |
+
msgstr "Tüm tarihleri göster"
|
701 |
+
|
702 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
703 |
+
msgid "%1$s %2$d"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
707 |
+
msgid "25 per page"
|
708 |
+
msgstr "Sayfa başına 25"
|
709 |
+
|
710 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
711 |
+
msgid "50 per page"
|
712 |
+
msgstr "Sayfa başına 50"
|
713 |
+
|
714 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
715 |
+
msgid "100 per page"
|
716 |
+
msgstr "Sayfa başına 100"
|
717 |
+
|
718 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
719 |
+
msgid "200 per page"
|
720 |
+
msgstr "Sayfa başına 200"
|
721 |
+
|
722 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
723 |
+
msgid "Show All"
|
724 |
+
msgstr "Tümünü Göster"
|
725 |
+
|
726 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
727 |
+
msgid "Filter"
|
728 |
+
msgstr "Filtrele"
|
729 |
+
|
730 |
+
#: includes/admin/html-downloadable-file-version.php:3
|
731 |
+
msgid "Remove"
|
732 |
+
msgstr "Kaldır"
|
733 |
+
|
734 |
+
#: includes/admin/html-downloadable-file-version.php:4
|
735 |
+
msgid "Click to toggle"
|
736 |
+
msgstr "Açmak için tıklayın"
|
737 |
+
|
738 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
739 |
+
msgid "Version <span class=\"version\">%s</span> (%s)"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
743 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
744 |
+
msgid "n/a"
|
745 |
+
msgstr "n/a"
|
746 |
+
|
747 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
748 |
+
msgid "Downloaded %s time"
|
749 |
+
msgid_plural "Downloaded %s times"
|
750 |
+
msgstr[0] ""
|
751 |
+
|
752 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
753 |
+
msgid "File URL(s)"
|
754 |
+
msgstr "Dosya Link(ler)i"
|
755 |
+
|
756 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
757 |
+
msgid ""
|
758 |
+
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
759 |
+
"(chosen at random)."
|
760 |
+
msgstr "Lütfen her satıra bir link/dosya yolu ekleyiniz. Çoklu dosyalar ayna bağlantı olarak kullanılacak (rastgele olarak)"
|
761 |
+
|
762 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
763 |
+
msgid "Upload file"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
767 |
+
msgid "Choose a file"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
771 |
+
msgid "Insert file URL"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
775 |
+
msgid "Browse for file"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
779 |
+
msgid "File Date"
|
780 |
+
msgstr "Dosya Tarihi"
|
781 |
+
|
782 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
783 |
+
msgid "h"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
787 |
+
msgid "m"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: includes/class-dlm-download-handler.php:140
|
791 |
+
msgid "Password Required"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/class-dlm-download-handler.php:150
|
795 |
+
msgid "Download does not exist."
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: includes/class-dlm-download-handler.php:150
|
799 |
+
#: includes/class-dlm-download-handler.php:180
|
800 |
+
#: includes/class-dlm-download-handler.php:185
|
801 |
+
#: includes/class-dlm-download-handler.php:194
|
802 |
+
#: includes/class-dlm-download-handler.php:288
|
803 |
+
msgid "Go to homepage →"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: includes/class-dlm-download-handler.php:150
|
807 |
+
#: includes/class-dlm-download-handler.php:180
|
808 |
+
#: includes/class-dlm-download-handler.php:185
|
809 |
+
#: includes/class-dlm-download-handler.php:194
|
810 |
+
#: includes/class-dlm-download-handler.php:288
|
811 |
+
msgid "Download Error"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: includes/class-dlm-download-handler.php:180
|
815 |
+
#: includes/class-dlm-download-handler.php:185
|
816 |
+
msgid "No file paths defined."
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: includes/class-dlm-download-handler.php:194
|
820 |
+
msgid "You do not have permission to access this download."
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: includes/class-dlm-download-handler.php:212
|
824 |
+
#: includes/class-dlm-download-handler.php:228
|
825 |
+
#: includes/class-dlm-download-handler.php:235
|
826 |
+
#: includes/class-dlm-download-handler.php:242
|
827 |
+
msgid "Redirected to file"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: includes/class-dlm-download-handler.php:281
|
831 |
+
msgid "Redirected to remote file."
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: includes/class-dlm-download-handler.php:286
|
835 |
+
msgid "File not found"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: includes/class-dlm-download-handler.php:288
|
839 |
+
msgid "File not found."
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
843 |
+
msgid "Download not found"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: includes/widgets/class-dlm-widget-downloads.php:27
|
847 |
+
msgid "Display a list of your downloads."
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: includes/widgets/class-dlm-widget-downloads.php:29
|
851 |
+
msgid "Downloads List"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: includes/widgets/class-dlm-widget-downloads.php:52
|
855 |
+
#: includes/widgets/class-dlm-widget-downloads.php:148
|
856 |
+
msgid "Featured Downloads"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/widgets/class-dlm-widget-downloads.php:157
|
860 |
+
msgid "Title:"
|
861 |
+
msgstr "Başlık"
|
862 |
+
|
863 |
+
#: includes/widgets/class-dlm-widget-downloads.php:161
|
864 |
+
msgid "Limit:"
|
865 |
+
msgstr "Limit:"
|
866 |
+
|
867 |
+
#: includes/widgets/class-dlm-widget-downloads.php:165
|
868 |
+
msgid "Output template:"
|
869 |
+
msgstr "Gösterim Şablonu:"
|
870 |
+
|
871 |
+
#: includes/widgets/class-dlm-widget-downloads.php:166
|
872 |
+
msgid "Default template"
|
873 |
+
msgstr "Varsayılan Şablon"
|
874 |
+
|
875 |
+
#: includes/widgets/class-dlm-widget-downloads.php:169
|
876 |
+
msgid "Order by:"
|
877 |
+
msgstr "Sırala: "
|
878 |
+
|
879 |
+
#: includes/widgets/class-dlm-widget-downloads.php:172
|
880 |
+
msgid "Random"
|
881 |
+
msgstr "Rastgele"
|
882 |
+
|
883 |
+
#: includes/widgets/class-dlm-widget-downloads.php:174
|
884 |
+
msgid "Date added"
|
885 |
+
msgstr "Eklenme tarihi"
|
886 |
+
|
887 |
+
#: includes/widgets/class-dlm-widget-downloads.php:175
|
888 |
+
msgid "Date modified"
|
889 |
+
msgstr "Düzenlenme tarihi"
|
890 |
+
|
891 |
+
#: includes/widgets/class-dlm-widget-downloads.php:180
|
892 |
+
msgid "Order:"
|
893 |
+
msgstr "Sorala: "
|
894 |
+
|
895 |
+
#: includes/widgets/class-dlm-widget-downloads.php:182
|
896 |
+
msgid "ASC"
|
897 |
+
msgstr "ASC"
|
898 |
+
|
899 |
+
#: includes/widgets/class-dlm-widget-downloads.php:183
|
900 |
+
msgid "DESC"
|
901 |
+
msgstr "DESC"
|
902 |
+
|
903 |
+
#: includes/widgets/class-dlm-widget-downloads.php:188
|
904 |
+
msgid "Show only featured downloads"
|
905 |
+
msgstr "Sadece öne çıkan dosyaları göster"
|
906 |
+
|
907 |
+
#: includes/widgets/class-dlm-widget-downloads.php:192
|
908 |
+
msgid "Show only members only downloads"
|
909 |
+
msgstr "Sadece üyeler için olan dosyaları göster"
|
910 |
+
|
911 |
+
#: templates/content-download-box.php:12
|
912 |
+
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
913 |
+
msgid "1 download"
|
914 |
+
msgid_plural "%d downloads"
|
915 |
+
msgstr[0] ""
|
916 |
+
|
917 |
+
#: templates/content-download-box.php:20
|
918 |
+
#: templates/content-download-filename.php:8
|
919 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
920 |
+
msgid "Version %s"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: templates/content-download-box.php:21
|
924 |
+
msgid "Download File"
|
925 |
+
msgstr "Dosyayı İndir"
|
926 |
+
|
927 |
+
#: templates/content-download-button.php:9
|
928 |
+
msgid "Download “%s”"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: templates/content-download-button.php:10
|
932 |
+
#: templates/content-download-version-list.php:17
|
933 |
+
msgid "Downloaded 1 time"
|
934 |
+
msgid_plural "Downloaded %d times"
|
935 |
+
msgstr[0] ""
|
936 |
+
|
937 |
+
#. Plugin Name of the plugin/theme
|
938 |
+
msgid "Download Monitor"
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#. Plugin URI of the plugin/theme
|
942 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#. Description of the plugin/theme
|
946 |
+
msgid ""
|
947 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
948 |
+
"outputting download links and file information on your WordPress powered "
|
949 |
+
"site."
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#. Author of the plugin/theme
|
953 |
+
msgid "Mike Jolley"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#. Author URI of the plugin/theme
|
957 |
+
msgid "http://mikejolley.com"
|
958 |
+
msgstr ""
|
languages/{download_monitor-zh_CN.mo → download-monitor-zh_CN.mo}
RENAMED
Binary file
|
languages/{download_monitor-zh_CN.po → download-monitor-zh_CN.po}
RENAMED
@@ -1,1005 +1,840 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"Language: zh_CN\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
-
|
16 |
-
|
17 |
-
"X-Poedit-SearchPath-0: templates\n"
|
18 |
-
"X-Poedit-SearchPath-1: .\n"
|
19 |
-
"X-Poedit-SearchPath-2: includes\n"
|
20 |
-
"X-Poedit-SearchPath-3: includes\\admin\n"
|
21 |
-
"X-Poedit-SearchPath-4: includes\\widgets\n"
|
22 |
-
|
23 |
-
#: download-monitor.php:89 includes/admin/class-dlm-admin.php:249
|
24 |
-
#: includes\admin/class-dlm-admin.php:249
|
25 |
msgid "Settings"
|
26 |
msgstr "设置"
|
27 |
|
28 |
-
#: download-monitor.php:
|
29 |
-
#: includes\admin/class-dlm-admin.php:252
|
30 |
msgid "Add-ons"
|
31 |
msgstr "附加组件"
|
32 |
|
33 |
-
#: download-monitor.php:
|
34 |
msgid "Docs"
|
35 |
msgstr "文档"
|
36 |
|
37 |
-
#: download-monitor.php:
|
38 |
#: includes/admin/class-dlm-admin-cpt.php:172
|
39 |
-
#: includes\admin/class-dlm-admin-cpt.php:172
|
40 |
msgid "Categories"
|
41 |
msgstr "分类"
|
42 |
|
43 |
-
#: download-monitor.php:
|
44 |
msgid "Download Category"
|
45 |
msgstr "下载分类"
|
46 |
|
47 |
-
#: download-monitor.php:
|
48 |
msgid "Search Download Categories"
|
49 |
msgstr "查找下载分类"
|
50 |
|
51 |
-
#: download-monitor.php:
|
52 |
msgid "All Download Categories"
|
53 |
msgstr "所有下载分类"
|
54 |
|
55 |
-
#: download-monitor.php:
|
56 |
msgid "Parent Download Category"
|
57 |
msgstr "父下载分类"
|
58 |
|
59 |
-
#: download-monitor.php:
|
60 |
msgid "Parent Download Category:"
|
61 |
msgstr "父下载分类:"
|
62 |
|
63 |
-
#: download-monitor.php:
|
64 |
msgid "Edit Download Category"
|
65 |
msgstr "编辑下载分类"
|
66 |
|
67 |
-
#: download-monitor.php:
|
68 |
msgid "Update Download Category"
|
69 |
msgstr "更新下载分类"
|
70 |
|
71 |
-
#: download-monitor.php:
|
72 |
msgid "Add New Download Category"
|
73 |
msgstr "添加新下载分类"
|
74 |
|
75 |
-
#: download-monitor.php:
|
76 |
msgid "New Download Category Name"
|
77 |
msgstr "新下载分类名称"
|
78 |
|
79 |
-
#: download-monitor.php:
|
80 |
#: includes/admin/class-dlm-admin-cpt.php:173
|
81 |
-
#: includes\admin/class-dlm-admin-cpt.php:173
|
82 |
msgid "Tags"
|
83 |
msgstr "标签"
|
84 |
|
85 |
-
#: download-monitor.php:
|
86 |
msgid "Download Tag"
|
87 |
msgstr "下载标签"
|
88 |
|
89 |
-
#: download-monitor.php:
|
90 |
msgid "Search Download Tags"
|
91 |
msgstr "查找下载标签"
|
92 |
|
93 |
-
#: download-monitor.php:
|
94 |
msgid "All Download Tags"
|
95 |
msgstr "所有下载标签"
|
96 |
|
97 |
-
#: download-monitor.php:
|
98 |
msgid "Parent Download Tag"
|
99 |
msgstr "父下载标签"
|
100 |
|
101 |
-
#: download-monitor.php:
|
102 |
msgid "Parent Download Tag:"
|
103 |
msgstr "父下载标签:"
|
104 |
|
105 |
-
#: download-monitor.php:
|
106 |
msgid "Edit Download Tag"
|
107 |
msgstr "编辑下载标签"
|
108 |
|
109 |
-
#: download-monitor.php:
|
110 |
msgid "Update Download Tag"
|
111 |
msgstr "更新下载标签"
|
112 |
|
113 |
-
#: download-monitor.php:
|
114 |
msgid "Add New Download Tag"
|
115 |
msgstr "添加新下载标签"
|
116 |
|
117 |
-
#: download-monitor.php:
|
118 |
msgid "New Download Tag Name"
|
119 |
msgstr "新下载标签名称"
|
120 |
|
121 |
-
#: download-monitor.php:
|
122 |
msgid "All Downloads"
|
123 |
msgstr "所有下载"
|
124 |
|
125 |
-
#: download-monitor.php:
|
126 |
msgid "Downloads"
|
127 |
msgstr "下载"
|
128 |
|
129 |
-
#: download-monitor.php:
|
130 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
131 |
-
#: includes\admin/class-dlm-admin-dashboard.php:69
|
132 |
-
#: includes\admin/class-dlm-logging-list-table.php:123
|
133 |
msgid "Download"
|
134 |
msgstr "下载"
|
135 |
|
136 |
-
#: download-monitor.php:
|
137 |
msgid "Add New"
|
138 |
msgstr "新添加"
|
139 |
|
140 |
-
#: download-monitor.php:
|
141 |
msgid "Add Download"
|
142 |
msgstr "添加下载"
|
143 |
|
144 |
-
#: download-monitor.php:
|
145 |
msgid "Edit"
|
146 |
msgstr "编辑"
|
147 |
|
148 |
-
#: download-monitor.php:
|
149 |
msgid "Edit Download"
|
150 |
msgstr "编辑下载"
|
151 |
|
152 |
-
#: download-monitor.php:
|
153 |
msgid "New Download"
|
154 |
msgstr "新建下载"
|
155 |
|
156 |
-
#: download-monitor.php:
|
157 |
msgid "View Download"
|
158 |
msgstr "浏览下载"
|
159 |
|
160 |
-
#: download-monitor.php:
|
161 |
msgid "Search Downloads"
|
162 |
msgstr "查找下载"
|
163 |
|
164 |
-
#: download-monitor.php:
|
165 |
msgid "No Downloads found"
|
166 |
msgstr "没有找到下载"
|
167 |
|
168 |
-
#: download-monitor.php:
|
169 |
msgid "No Downloads found in trash"
|
170 |
msgstr "在垃圾篓没有找到下载"
|
171 |
|
172 |
-
#: download-monitor.php:
|
173 |
msgid "Parent Download"
|
174 |
msgstr "父下载"
|
175 |
|
176 |
-
#: download-monitor.php:
|
177 |
msgid "This is where you can create and manage downloads for your site."
|
178 |
msgstr "在这儿您可以为您的站点创建和管理下载"
|
179 |
|
180 |
#: includes/admin/class-dlm-addons.php:50
|
181 |
-
#: includes/admin/class-dlm-admin.php:
|
182 |
-
#: includes\admin/class-dlm-addons.php:50
|
183 |
-
#: includes\admin/class-dlm-admin.php:252
|
184 |
msgid "Download Monitor Add-ons"
|
185 |
msgstr "Download Monitor 附加组件"
|
186 |
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
188 |
-
#: includes\admin/class-dlm-admin-cpt.php:64
|
189 |
msgid "Select a category"
|
190 |
msgstr "选择一个分类"
|
191 |
|
192 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
193 |
-
#: includes\admin/class-dlm-admin-cpt.php:124
|
194 |
msgid "Download title"
|
195 |
msgstr "下载标题"
|
196 |
|
197 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
198 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
199 |
-
#: includes\admin/class-dlm-admin-cpt.php:140
|
200 |
-
#: includes\admin/class-dlm-admin-cpt.php:143
|
201 |
msgid "Download updated."
|
202 |
msgstr "下载已经更新"
|
203 |
|
204 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
205 |
-
#: includes\admin/class-dlm-admin-cpt.php:141
|
206 |
msgid "Custom field updated."
|
207 |
msgstr "自定义字段已更新"
|
208 |
|
209 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
210 |
-
#: includes\admin/class-dlm-admin-cpt.php:142
|
211 |
msgid "Custom field deleted."
|
212 |
msgstr "自定义字段已删除"
|
213 |
|
214 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
215 |
-
#: includes\admin/class-dlm-admin-cpt.php:144
|
216 |
-
#, php-format
|
217 |
msgid "Download restored to revision from %s"
|
218 |
msgstr " 从%s下载恢复修正"
|
219 |
|
220 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
221 |
-
#: includes\admin/class-dlm-admin-cpt.php:145
|
222 |
msgid "Download published."
|
223 |
msgstr "下载已发布"
|
224 |
|
225 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
226 |
-
#: includes\admin/class-dlm-admin-cpt.php:146
|
227 |
msgid "Download saved."
|
228 |
msgstr "下载已保存"
|
229 |
|
230 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
231 |
-
#: includes\admin/class-dlm-admin-cpt.php:147
|
232 |
msgid "Download submitted."
|
233 |
msgstr "下载已提交"
|
234 |
|
235 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
236 |
-
#: includes\admin/class-dlm-admin-cpt.php:148
|
237 |
-
#, php-format
|
238 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
239 |
msgstr "已经为<strong>%1$s</strong>安排下载。"
|
240 |
|
241 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
242 |
-
#: includes\admin/class-dlm-admin-cpt.php:149
|
243 |
msgid "M j, Y @ G:i"
|
244 |
msgstr "M j, Y @ G:i"
|
245 |
|
246 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
247 |
-
#: includes\admin/class-dlm-admin-cpt.php:150
|
248 |
msgid "Download draft updated."
|
249 |
msgstr "下载草稿已更新"
|
250 |
|
251 |
#: includes/admin/class-dlm-admin-cpt.php:167
|
252 |
-
#: includes\admin/class-dlm-admin-cpt.php:167
|
253 |
msgid "Image"
|
254 |
msgstr "图像"
|
255 |
|
256 |
#: includes/admin/class-dlm-admin-cpt.php:168
|
257 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
258 |
-
#: includes\admin/class-dlm-admin-cpt.php:168
|
259 |
-
#: includes\widgets/class-dlm-widget-downloads.php:171
|
260 |
msgid "Title"
|
261 |
msgstr "标题"
|
262 |
|
263 |
#: includes/admin/class-dlm-admin-cpt.php:169
|
264 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
265 |
-
#: includes\admin/class-dlm-admin-cpt.php:169
|
266 |
-
#: includes\widgets/class-dlm-widget-downloads.php:173
|
267 |
msgid "ID"
|
268 |
msgstr "ID"
|
269 |
|
270 |
#: includes/admin/class-dlm-admin-cpt.php:170
|
271 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
272 |
-
#: includes\admin/class-dlm-admin-cpt.php:170
|
273 |
-
#: includes\admin/class-dlm-logging-list-table.php:124
|
274 |
msgid "File"
|
275 |
msgstr "文件"
|
276 |
|
277 |
#: includes/admin/class-dlm-admin-cpt.php:171
|
278 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
279 |
-
#: includes/admin/html-downloadable-file-version.php:
|
280 |
-
#: includes\admin/class-dlm-admin-cpt.php:171
|
281 |
-
#: includes\admin/class-dlm-admin-insert.php:205
|
282 |
-
#: includes\admin/html-downloadable-file-version.php:13
|
283 |
msgid "Version"
|
284 |
msgstr "版本"
|
285 |
|
286 |
#: includes/admin/class-dlm-admin-cpt.php:174
|
287 |
#: includes/admin/class-dlm-admin-dashboard.php:70
|
288 |
-
#: includes/admin/html-downloadable-file-version.php:
|
289 |
#: includes/widgets/class-dlm-widget-downloads.php:176
|
290 |
-
#: includes\admin/class-dlm-admin-cpt.php:174
|
291 |
-
#: includes\admin/class-dlm-admin-dashboard.php:70
|
292 |
-
#: includes\admin/html-downloadable-file-version.php:49
|
293 |
-
#: includes\widgets/class-dlm-widget-downloads.php:176
|
294 |
msgid "Download count"
|
295 |
msgstr "下载次数"
|
296 |
|
297 |
#: includes/admin/class-dlm-admin-cpt.php:175
|
298 |
-
#: includes\admin/class-dlm-admin-cpt.php:175
|
299 |
msgid "Featured"
|
300 |
msgstr "特色"
|
301 |
|
302 |
#: includes/admin/class-dlm-admin-cpt.php:176
|
303 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
304 |
-
#: includes\admin/class-dlm-admin-cpt.php:176
|
305 |
-
#: includes\admin/class-dlm-admin-writepanels.php:63
|
306 |
msgid "Members only"
|
307 |
msgstr "仅会员"
|
308 |
|
309 |
#: includes/admin/class-dlm-admin-cpt.php:177
|
310 |
-
#: includes\admin/class-dlm-admin-cpt.php:177
|
311 |
msgid "Redirect only"
|
312 |
msgstr "仅重定向"
|
313 |
|
314 |
#: includes/admin/class-dlm-admin-cpt.php:178
|
315 |
-
#: includes\admin/class-dlm-admin-cpt.php:178
|
316 |
msgid "Date posted"
|
317 |
msgstr "发布日期"
|
318 |
|
319 |
#: includes/admin/class-dlm-admin-cpt.php:212
|
320 |
#: includes/admin/class-dlm-admin-cpt.php:220
|
321 |
#: includes/admin/class-dlm-admin-cpt.php:228
|
322 |
-
#: includes\admin/class-dlm-admin-cpt.php:212
|
323 |
-
#: includes\admin/class-dlm-admin-cpt.php:220
|
324 |
-
#: includes\admin/class-dlm-admin-cpt.php:228
|
325 |
msgid "Yes"
|
326 |
msgstr "是"
|
327 |
|
328 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
329 |
-
#: includes\admin/class-dlm-admin-dashboard.php:21
|
330 |
msgid "Popular Downloads"
|
331 |
msgstr "热门下载"
|
332 |
|
333 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
334 |
-
#: includes\admin/class-dlm-admin-dashboard.php:53
|
335 |
msgid "There are no stats available yet!"
|
336 |
msgstr "目前未统计"
|
337 |
|
338 |
#: includes/admin/class-dlm-admin-insert.php:32
|
339 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
340 |
-
#: includes
|
341 |
-
#: includes\admin/class-dlm-admin-insert.php:70
|
342 |
msgid "Insert Download"
|
343 |
msgstr "插入下载"
|
344 |
|
345 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
346 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
347 |
-
#: includes\admin/class-dlm-admin-insert.php:80
|
348 |
-
#: includes\admin/class-dlm-admin-insert.php:176
|
349 |
msgid "Insert Shortcode"
|
350 |
msgstr "插入快捷码"
|
351 |
|
352 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
353 |
-
#: includes\admin/class-dlm-admin-insert.php:80
|
354 |
msgid "Quick-add download"
|
355 |
msgstr "快速添加下载"
|
356 |
|
357 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
358 |
-
#: includes\admin/class-dlm-admin-insert.php:124
|
359 |
msgid "Error: File was not created."
|
360 |
msgstr "错误:未能创建文件。"
|
361 |
|
362 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
363 |
-
#: includes\admin/class-dlm-admin-insert.php:137
|
364 |
msgid "Download successfully created."
|
365 |
msgstr "已成功创建下载。"
|
366 |
|
367 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
368 |
-
#: includes\admin/class-dlm-admin-insert.php:139
|
369 |
msgid "Error: Download was not created."
|
370 |
msgstr "错误: 未能创建下载。"
|
371 |
|
372 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
373 |
-
#: includes\admin/class-dlm-admin-insert.php:157
|
374 |
msgid "Choose a download"
|
375 |
msgstr "选择下载"
|
376 |
|
377 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
378 |
-
#: includes\admin/class-dlm-admin-insert.php:169
|
379 |
msgid "Template"
|
380 |
msgstr "模板"
|
381 |
|
382 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
383 |
-
#: includes\admin/class-dlm-admin-insert.php:170
|
384 |
msgid "Template Name"
|
385 |
msgstr "模板名称"
|
386 |
|
387 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
388 |
-
#: includes\admin/class-dlm-admin-insert.php:172
|
389 |
msgid ""
|
390 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
391 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
392 |
-
"
|
393 |
-
msgstr ""
|
394 |
-
"留空将使用 <code>content-download.php</code>模板文件。如果输入了,例如 "
|
395 |
-
"<code>image</code>,那么将使用 <code>content-download-image.php</code>模板文"
|
396 |
-
"件。"
|
397 |
|
398 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
399 |
-
#: includes\admin/class-dlm-admin-insert.php:187
|
400 |
msgid "Drop file here"
|
401 |
msgstr "把文件拖至这里"
|
402 |
|
403 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
404 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
405 |
-
#: includes\admin/class-dlm-admin-insert.php:188
|
406 |
-
#: includes\admin/class-dlm-admin-insert.php:190
|
407 |
msgid "or"
|
408 |
msgstr "或"
|
409 |
|
410 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
411 |
-
|
|
|
|
|
|
|
412 |
msgid "Enter URL manually"
|
413 |
msgstr "手工输入URL"
|
414 |
|
415 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
416 |
-
#: includes\admin/class-dlm-admin-insert.php:197
|
417 |
msgid "Download URL"
|
418 |
msgstr "下载URL"
|
419 |
|
420 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
421 |
-
#: includes\admin/class-dlm-admin-insert.php:198
|
422 |
msgid "Required URL"
|
423 |
msgstr "必选URL"
|
424 |
|
425 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
426 |
-
#: includes\admin/class-dlm-admin-insert.php:201
|
427 |
msgid "Download Title"
|
428 |
msgstr "下载标题"
|
429 |
|
430 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
431 |
-
#: includes\admin/class-dlm-admin-insert.php:202
|
432 |
msgid "Required title"
|
433 |
msgstr "标题必选"
|
434 |
|
435 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
436 |
-
#: includes\admin/class-dlm-admin-insert.php:206
|
437 |
msgid "Optional version number"
|
438 |
msgstr "可选版本号"
|
439 |
|
440 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
441 |
-
#: includes\admin/class-dlm-admin-insert.php:209
|
442 |
msgid "Save Download"
|
443 |
msgstr "保存下载"
|
444 |
|
445 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
446 |
-
#: includes\admin/class-dlm-admin-insert.php:267
|
447 |
msgid "Allowed Files"
|
448 |
msgstr "允许的文件"
|
449 |
|
450 |
-
#: includes/admin/class-dlm-admin-insert.php:
|
451 |
-
#: includes\admin/class-dlm-admin-insert.php:317
|
452 |
msgid "Please wait..."
|
453 |
msgstr "请稍等 ..."
|
454 |
|
455 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
456 |
-
#: includes
|
457 |
msgid "Browse for a file"
|
458 |
msgstr "浏览文件"
|
459 |
|
460 |
#: includes/admin/class-dlm-admin-media-browser.php:101
|
461 |
-
#: includes\admin/class-dlm-admin-media-browser.php:101
|
462 |
msgid "No files found"
|
463 |
msgstr "未找到文件"
|
464 |
|
465 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
466 |
-
#: includes\admin/class-dlm-admin-writepanels.php:29
|
467 |
msgid "Download Options"
|
468 |
msgstr "下载选项"
|
469 |
|
470 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
471 |
-
#: includes\admin/class-dlm-admin-writepanels.php:30
|
472 |
msgid "Downloadable Files/Versions"
|
473 |
msgstr "可供下载的 文件/版本"
|
474 |
|
475 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
476 |
-
#: includes\admin/class-dlm-admin-writepanels.php:35
|
477 |
msgid "Short Description"
|
478 |
msgstr "简洁描述"
|
479 |
|
480 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
481 |
-
#: includes\admin/class-dlm-admin-writepanels.php:57
|
482 |
msgid "Featured download"
|
483 |
msgstr "特色下载"
|
484 |
|
485 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
486 |
-
#: includes\admin/class-dlm-admin-writepanels.php:58
|
487 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
488 |
msgstr "标记为特色下载。快捷码和小工具可以使用。"
|
489 |
|
490 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
491 |
-
#: includes\admin/class-dlm-admin-writepanels.php:64
|
492 |
msgid ""
|
493 |
"Only logged in users will be able to access the file via a download link if "
|
494 |
"this is enabled."
|
495 |
msgstr "如果启用此选项,仅登录用户可以通过下载链接访问文件。"
|
496 |
|
497 |
#: includes/admin/class-dlm-admin-writepanels.php:69
|
498 |
-
#: includes\admin/class-dlm-admin-writepanels.php:69
|
499 |
msgid "Redirect to file"
|
500 |
msgstr "重定向至文件"
|
501 |
|
502 |
#: includes/admin/class-dlm-admin-writepanels.php:70
|
503 |
-
#: includes\admin/class-dlm-admin-writepanels.php:70
|
504 |
msgid ""
|
505 |
-
"Don't force download. If the <code>dlm_upload</code> folder is protected you
|
506 |
-
"may need to move your file."
|
507 |
-
msgstr ""
|
508 |
-
"不强行下载。如何文件夹<code>dlm_upload</code>被保护,您也许需要移动你的文件。"
|
509 |
|
510 |
#: includes/admin/class-dlm-admin-writepanels.php:94
|
511 |
-
#: includes\admin/class-dlm-admin-writepanels.php:94
|
512 |
msgid "Add file"
|
513 |
msgstr "添加文件"
|
514 |
|
515 |
#: includes/admin/class-dlm-admin-writepanels.php:95
|
516 |
-
#: includes\admin/class-dlm-admin-writepanels.php:95
|
517 |
msgid "Close all"
|
518 |
msgstr "关闭所有 "
|
519 |
|
520 |
#: includes/admin/class-dlm-admin-writepanels.php:95
|
521 |
-
#: includes\admin/class-dlm-admin-writepanels.php:95
|
522 |
msgid "Expand all"
|
523 |
msgstr "展开所有"
|
524 |
|
525 |
-
#: includes/admin/class-dlm-admin-writepanels.php:
|
526 |
-
#: includes\admin/class-dlm-admin-writepanels.php:220
|
527 |
msgid "Are you sure you want to delete this file?"
|
528 |
msgstr "确定删除此文件?"
|
529 |
|
530 |
-
#: includes/admin/class-dlm-admin.php:95
|
531 |
msgid "General"
|
532 |
msgstr "通用"
|
533 |
|
534 |
#: includes/admin/class-dlm-admin.php:100
|
535 |
-
#: includes\admin/class-dlm-admin.php:100
|
536 |
msgid "Default Template"
|
537 |
msgstr "默认模板"
|
538 |
|
539 |
#: includes/admin/class-dlm-admin.php:101
|
540 |
-
#: includes\admin/class-dlm-admin.php:101
|
541 |
msgid ""
|
542 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
543 |
"default (this can be overridden by the <code>format</code> argument)."
|
544 |
-
msgstr ""
|
545 |
-
"为快捷码 <code>[download]</code> 选择默认模板(<code>format</code>参数覆盖可"
|
546 |
-
"以此项)。"
|
547 |
|
548 |
#: includes/admin/class-dlm-admin.php:104
|
549 |
-
#: includes\admin/class-dlm-admin.php:104
|
550 |
msgid "Default - Title and count"
|
551 |
msgstr "默认 - 标题和数目"
|
552 |
|
553 |
#: includes/admin/class-dlm-admin.php:105
|
554 |
-
#: includes\admin/class-dlm-admin.php:105
|
555 |
msgid "Button - CSS styled button showing title and count"
|
556 |
msgstr "按钮 - 显示标题和数目的CSS形式按钮"
|
557 |
|
558 |
#: includes/admin/class-dlm-admin.php:106
|
559 |
-
#: includes\admin/class-dlm-admin.php:106
|
560 |
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
561 |
msgstr "方框 - 显示缩略图,标题,数目,文件名和文件大小的方框"
|
562 |
|
563 |
#: includes/admin/class-dlm-admin.php:107
|
564 |
-
#: includes\admin/class-dlm-admin.php:107
|
565 |
msgid "Filename - Filename and download count"
|
566 |
msgstr "文件名 - 文件名和下载次数"
|
567 |
|
568 |
#: includes/admin/class-dlm-admin.php:108
|
569 |
-
#: includes\admin/class-dlm-admin.php:108
|
570 |
msgid "Title - Shows download title only"
|
571 |
msgstr "标题 - 仅显示下载标题"
|
572 |
|
573 |
#: includes/admin/class-dlm-admin.php:109
|
574 |
-
#: includes\admin/class-dlm-admin.php:109
|
575 |
msgid "Version list - Lists all download versions in an unordered list"
|
576 |
msgstr "版本列表 - 列出所有下载版本的无序列表"
|
577 |
|
578 |
#: includes/admin/class-dlm-admin.php:110
|
579 |
-
#: includes\admin/class-dlm-admin.php:110
|
580 |
msgid "Custom template"
|
581 |
msgstr "自定义模板"
|
582 |
|
583 |
#: includes/admin/class-dlm-admin.php:116
|
584 |
-
#: includes\admin/class-dlm-admin.php:116
|
585 |
msgid "Custom Template"
|
586 |
msgstr "自定义模板"
|
587 |
|
588 |
#: includes/admin/class-dlm-admin.php:117
|
589 |
-
#: includes\admin/class-dlm-admin.php:117
|
590 |
msgid ""
|
591 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
592 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
593 |
-
"
|
594 |
-
"
|
595 |
-
msgstr ""
|
596 |
-
"留空将使用 <code>content-download.php</code>模板文件。如果输入了,例如 "
|
597 |
-
"<code>image</code>,那么将使用 <code>content-download-image.php</code>模板文"
|
598 |
-
"件。您可以在您的主题文件夹添加自己定义模板。"
|
599 |
|
600 |
#: includes/admin/class-dlm-admin.php:122
|
601 |
-
#: includes\admin/class-dlm-admin.php:122
|
602 |
msgid "Endpoint"
|
603 |
msgstr "Endpoint"
|
604 |
|
605 |
#: includes/admin/class-dlm-admin.php:127
|
606 |
-
#: includes\admin/class-dlm-admin.php:127
|
607 |
msgid "download"
|
608 |
msgstr "下载"
|
609 |
|
610 |
#: includes/admin/class-dlm-admin.php:128
|
611 |
-
#: includes\admin/class-dlm-admin.php:128
|
612 |
msgid "Download Endpoint"
|
613 |
msgstr "下载的Endpoint"
|
614 |
|
615 |
#: includes/admin/class-dlm-admin.php:129
|
616 |
-
#: includes\admin/class-dlm-admin.php:129
|
617 |
-
#, php-format
|
618 |
msgid ""
|
619 |
-
"Define what endpoint should be used for download links. By default this will
|
620 |
-
"be <code>%s</code>."
|
621 |
msgstr "定义用于下载链接的endpoint。默认为 <code>%s</code>。"
|
622 |
|
623 |
#: includes/admin/class-dlm-admin.php:134
|
624 |
-
#: includes\admin/class-dlm-admin.php:134
|
625 |
msgid "Endpoint Value"
|
626 |
msgstr "Endpoint值"
|
627 |
|
628 |
#: includes/admin/class-dlm-admin.php:135
|
629 |
-
#: includes\admin/class-dlm-admin.php:135
|
630 |
-
#, php-format
|
631 |
msgid ""
|
632 |
"Define what unique value should be used on the end of your endpoint to "
|
633 |
-
"identify the downloadable file. e.g. ID would give a link like
|
634 |
-
"code>"
|
635 |
-
msgstr ""
|
636 |
-
"定义独一无二值放在endpoint之后用来标识下载文件。例如使用 ID 将给出像<code>"
|
637 |
-
"%s</code>的链接。"
|
638 |
|
639 |
#: includes/admin/class-dlm-admin.php:138
|
640 |
-
#: includes/admin/class-dlm-admin.php:
|
641 |
-
#: includes\admin/class-dlm-admin.php:138
|
642 |
-
#: includes\admin/class-dlm-admin.php:452
|
643 |
msgid "Download ID"
|
644 |
msgstr "下载ID"
|
645 |
|
646 |
#: includes/admin/class-dlm-admin.php:139
|
647 |
-
#: includes\admin/class-dlm-admin.php:139
|
648 |
msgid "Download slug"
|
649 |
msgstr "下载别名"
|
650 |
|
651 |
#: includes/admin/class-dlm-admin.php:145
|
652 |
-
#: includes\admin/class-dlm-admin.php:145
|
653 |
msgid "X-Accel-Redirect / X-Sendfile"
|
654 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
655 |
|
656 |
#: includes/admin/class-dlm-admin.php:146
|
657 |
-
#: includes/admin/class-dlm-admin.php:
|
658 |
-
#: includes
|
659 |
-
#: includes\admin/class-dlm-admin.php:157
|
660 |
msgid "Enable"
|
661 |
msgstr "启用"
|
662 |
|
663 |
#: includes/admin/class-dlm-admin.php:147
|
664 |
-
#: includes\admin/class-dlm-admin.php:147
|
665 |
msgid ""
|
666 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be
|
667 |
-
"used to serve downloads instead of PHP (server requires
|
668 |
-
"code>)."
|
669 |
-
msgstr ""
|
670 |
-
"如果支持, 可以使用<code>X-Accel-Redirect</code> / <code>X-Sendfile</code>供"
|
671 |
-
"下载, 而不是使用PHP (服务器需要启用<code>mod_xsendfile</code>模块)。"
|
672 |
|
673 |
#: includes/admin/class-dlm-admin.php:153
|
674 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
msgid "Logging"
|
676 |
msgstr "记录日志"
|
677 |
|
678 |
-
#: includes/admin/class-dlm-admin.php:
|
679 |
-
#: includes\admin/class-dlm-admin.php:159
|
680 |
msgid "Download Log"
|
681 |
msgstr "下载日志"
|
682 |
|
683 |
-
#: includes/admin/class-dlm-admin.php:
|
684 |
-
#: includes\admin/class-dlm-admin.php:160
|
685 |
msgid "Log download attempts, IP addresses and more."
|
686 |
msgstr "记录下载尝试,IP地址等。"
|
687 |
|
688 |
-
#: includes/admin/class-dlm-admin.php:
|
689 |
-
#: includes\admin/class-dlm-admin.php:166
|
690 |
msgid "Blacklist IPs"
|
691 |
msgstr "IP黑名单"
|
692 |
|
693 |
-
#: includes/admin/class-dlm-admin.php:
|
694 |
-
#: includes\admin/class-dlm-admin.php:167
|
695 |
msgid ""
|
696 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
697 |
"wildcard."
|
698 |
msgstr "IP黑名单列表,每行1个。 使用 <code>*</code>作为通配符。"
|
699 |
|
700 |
-
#: includes/admin/class-dlm-admin.php:
|
701 |
-
#: includes\admin/class-dlm-admin.php:174
|
702 |
msgid "Blacklist user agents"
|
703 |
msgstr "浏览器User-Agent黑名单"
|
704 |
|
705 |
-
#: includes/admin/class-dlm-admin.php:
|
706 |
-
#: includes\admin/class-dlm-admin.php:175
|
707 |
msgid "List browser user agents to blacklist, 1 per line."
|
708 |
msgstr "浏览User-Agent黑名单列表,每行1个。"
|
709 |
|
710 |
-
#: includes/admin/class-dlm-admin.php:
|
711 |
-
#: includes\admin/class-dlm-admin.php:247
|
712 |
msgid "Logs"
|
713 |
msgstr "日志"
|
714 |
|
715 |
-
#: includes/admin/class-dlm-admin.php:
|
716 |
-
#: includes\admin/class-dlm-admin.php:291
|
717 |
msgid "Settings successfully saved"
|
718 |
msgstr "已经成功保存设置"
|
719 |
|
720 |
-
#: includes/admin/class-dlm-admin.php:
|
721 |
-
#: includes\admin/class-dlm-admin.php:358
|
722 |
msgid "Save Changes"
|
723 |
msgstr "保存更改"
|
724 |
|
725 |
-
#: includes/admin/class-dlm-admin.php:
|
726 |
-
#: includes\admin/class-dlm-admin.php:402
|
727 |
msgid "Download Logs"
|
728 |
msgstr "下载日志"
|
729 |
|
730 |
-
#: includes/admin/class-dlm-admin.php:
|
731 |
-
#: includes\admin/class-dlm-admin.php:402
|
732 |
msgid "Export CSV"
|
733 |
msgstr "导出为CSV"
|
734 |
|
735 |
-
#: includes/admin/class-dlm-admin.php:
|
736 |
-
#: includes\admin/class-dlm-admin.php:402
|
737 |
msgid "Delete Logs"
|
738 |
msgstr "删除日志"
|
739 |
|
740 |
-
#: includes/admin/class-dlm-admin.php:
|
741 |
-
#: includes\admin/class-dlm-admin.php:453
|
742 |
msgid "Version ID"
|
743 |
msgstr "版本ID"
|
744 |
|
745 |
-
#: includes/admin/class-dlm-admin.php:
|
746 |
-
#: includes\admin/class-dlm-admin.php:454
|
747 |
msgid "Filename"
|
748 |
msgstr "文件名"
|
749 |
|
750 |
-
#: includes/admin/class-dlm-admin.php:
|
751 |
-
#: includes\admin/class-dlm-admin.php:455
|
752 |
msgid "User ID"
|
753 |
msgstr "用户ID"
|
754 |
|
755 |
-
#: includes/admin/class-dlm-admin.php:
|
756 |
-
#: includes\admin/class-dlm-admin.php:456
|
757 |
msgid "User Login"
|
758 |
msgstr "用户登录名"
|
759 |
|
760 |
-
#: includes/admin/class-dlm-admin.php:
|
761 |
-
#: includes\admin/class-dlm-admin.php:457
|
762 |
msgid "User Email"
|
763 |
msgstr "用户Email"
|
764 |
|
765 |
-
#: includes/admin/class-dlm-admin.php:
|
766 |
-
#: includes\admin/class-dlm-admin.php:458
|
767 |
msgid "User IP"
|
768 |
msgstr "用户IP"
|
769 |
|
770 |
-
#: includes/admin/class-dlm-admin.php:
|
771 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
772 |
-
#: includes\admin/class-dlm-admin.php:459
|
773 |
-
#: includes\admin/class-dlm-logging-list-table.php:127
|
774 |
msgid "User Agent"
|
775 |
msgstr "浏览器User-Agent"
|
776 |
|
777 |
-
#: includes/admin/class-dlm-admin.php:
|
778 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
779 |
-
#: includes\admin/class-dlm-admin.php:460
|
780 |
-
#: includes\admin/class-dlm-logging-list-table.php:128
|
781 |
msgid "Date"
|
782 |
msgstr "日期"
|
783 |
|
784 |
-
#: includes/admin/class-dlm-admin.php:
|
785 |
-
#: includes\admin/class-dlm-admin.php:461
|
786 |
msgid "Status"
|
787 |
msgstr "状态"
|
788 |
|
789 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
790 |
-
#: includes\admin/class-dlm-logging-list-table.php:50
|
791 |
msgid "Download Complete"
|
792 |
msgstr "下载完成"
|
793 |
|
794 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
795 |
-
#: includes\admin/class-dlm-logging-list-table.php:57
|
796 |
-
#, php-format
|
797 |
msgid "%s ago"
|
798 |
msgstr "%s 前"
|
799 |
|
800 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
801 |
-
#: includes\admin/class-dlm-logging-list-table.php:64
|
802 |
-
#, php-format
|
803 |
msgid "Download #%d (no longer exists)"
|
804 |
msgstr "下载 #%d (已经不存在)"
|
805 |
|
806 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
807 |
-
#: includes\admin/class-dlm-logging-list-table.php:72
|
808 |
-
#, php-format
|
809 |
msgid "v%s"
|
810 |
msgstr "v%s"
|
811 |
|
812 |
#: includes/admin/class-dlm-logging-list-table.php:92
|
813 |
-
#: includes\admin/class-dlm-logging-list-table.php:92
|
814 |
msgid "Non-member"
|
815 |
msgstr "非会员"
|
816 |
|
817 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
818 |
-
#: includes\admin/class-dlm-logging-list-table.php:125
|
819 |
msgid "User"
|
820 |
msgstr "用户"
|
821 |
|
822 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
823 |
-
#: includes\admin/class-dlm-logging-list-table.php:126
|
824 |
msgid "IP Address"
|
825 |
msgstr "IP地址"
|
826 |
|
827 |
#: includes/admin/class-dlm-logging-list-table.php:142
|
828 |
-
#: includes\admin/class-dlm-logging-list-table.php:142
|
829 |
msgid "Any status"
|
830 |
msgstr "任何状态"
|
831 |
|
832 |
#: includes/admin/class-dlm-logging-list-table.php:143
|
833 |
-
#: includes\admin/class-dlm-logging-list-table.php:143
|
834 |
msgid "Failed"
|
835 |
msgstr "失败"
|
836 |
|
837 |
#: includes/admin/class-dlm-logging-list-table.php:144
|
838 |
-
#: includes\admin/class-dlm-logging-list-table.php:144
|
839 |
msgid "Redirected"
|
840 |
msgstr "已重定向"
|
841 |
|
842 |
#: includes/admin/class-dlm-logging-list-table.php:145
|
843 |
-
#: includes\admin/class-dlm-logging-list-table.php:145
|
844 |
msgid "Completed"
|
845 |
msgstr "已经完成"
|
846 |
|
847 |
#: includes/admin/class-dlm-logging-list-table.php:164
|
848 |
-
#: includes\admin/class-dlm-logging-list-table.php:164
|
849 |
msgid "Show all dates"
|
850 |
msgstr "显示所有日期"
|
851 |
|
852 |
#: includes/admin/class-dlm-logging-list-table.php:177
|
853 |
-
#: includes\admin/class-dlm-logging-list-table.php:177
|
854 |
-
#, php-format
|
855 |
msgid "%1$s %2$d"
|
856 |
msgstr "%1$s %2$d"
|
857 |
|
858 |
#: includes/admin/class-dlm-logging-list-table.php:185
|
859 |
-
#: includes\admin/class-dlm-logging-list-table.php:185
|
860 |
msgid "25 per page"
|
861 |
msgstr "每页25条"
|
862 |
|
863 |
#: includes/admin/class-dlm-logging-list-table.php:186
|
864 |
-
#: includes\admin/class-dlm-logging-list-table.php:186
|
865 |
msgid "50 per page"
|
866 |
msgstr "每页50条"
|
867 |
|
868 |
#: includes/admin/class-dlm-logging-list-table.php:187
|
869 |
-
#: includes\admin/class-dlm-logging-list-table.php:187
|
870 |
msgid "100 per page"
|
871 |
msgstr "每页100条"
|
872 |
|
873 |
#: includes/admin/class-dlm-logging-list-table.php:188
|
874 |
-
#: includes\admin/class-dlm-logging-list-table.php:188
|
875 |
msgid "200 per page"
|
876 |
msgstr "每页200条"
|
877 |
|
878 |
#: includes/admin/class-dlm-logging-list-table.php:189
|
879 |
-
#: includes\admin/class-dlm-logging-list-table.php:189
|
880 |
msgid "Show All"
|
881 |
msgstr "显示所有"
|
882 |
|
883 |
#: includes/admin/class-dlm-logging-list-table.php:193
|
884 |
-
#: includes\admin/class-dlm-logging-list-table.php:193
|
885 |
msgid "Filter"
|
886 |
msgstr "过滤"
|
887 |
|
888 |
#: includes/admin/html-downloadable-file-version.php:3
|
889 |
-
#: includes\admin/html-downloadable-file-version.php:3
|
890 |
msgid "Remove"
|
891 |
msgstr "移除"
|
892 |
|
893 |
#: includes/admin/html-downloadable-file-version.php:4
|
894 |
-
#: includes\admin/html-downloadable-file-version.php:4
|
895 |
msgid "Click to toggle"
|
896 |
msgstr "单击切换"
|
897 |
|
898 |
#: includes/admin/html-downloadable-file-version.php:5
|
899 |
-
#: includes\admin/html-downloadable-file-version.php:5
|
900 |
-
#, php-format
|
901 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
902 |
msgstr "版本 <span class=\"version\">%s</span> (%s)"
|
903 |
|
904 |
#: includes/admin/html-downloadable-file-version.php:5
|
905 |
-
#: includes/admin/html-downloadable-file-version.php:
|
906 |
-
#: includes\admin/html-downloadable-file-version.php:5
|
907 |
-
#: includes\admin/html-downloadable-file-version.php:14
|
908 |
msgid "n/a"
|
909 |
msgstr "未知"
|
910 |
|
911 |
-
#: includes/admin/html-downloadable-file-version.php:
|
912 |
-
|
|
|
|
|
|
|
|
|
913 |
msgid "File URL(s)"
|
914 |
msgstr "文件URL"
|
915 |
|
916 |
-
#: includes/admin/html-downloadable-file-version.php:
|
917 |
-
#: includes\admin/html-downloadable-file-version.php:19
|
918 |
msgid ""
|
919 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
920 |
"(chosen at random)."
|
921 |
msgstr "每行输入一个文件路径/URL - 多个文件将被作为镜像(随机选择)"
|
922 |
|
923 |
-
#: includes/admin/html-downloadable-file-version.php:
|
924 |
-
#: includes\admin/html-downloadable-file-version.php:24
|
925 |
msgid "Upload file"
|
926 |
msgstr "上传文件"
|
927 |
|
928 |
-
#: includes/admin/html-downloadable-file-version.php:
|
929 |
-
#: includes\admin/html-downloadable-file-version.php:26
|
930 |
msgid "Choose a file"
|
931 |
msgstr "选择文件"
|
932 |
|
933 |
-
#: includes/admin/html-downloadable-file-version.php:
|
934 |
-
#: includes\admin/html-downloadable-file-version.php:27
|
935 |
msgid "Insert file URL"
|
936 |
msgstr "插入文件URL"
|
937 |
|
938 |
-
#: includes/admin/html-downloadable-file-version.php:
|
939 |
-
#: includes\admin/html-downloadable-file-version.php:31
|
940 |
msgid "Browse for file"
|
941 |
msgstr "浏览文件"
|
942 |
|
943 |
-
#: includes/admin/html-downloadable-file-version.php:
|
944 |
-
#: includes\admin/html-downloadable-file-version.php:55
|
945 |
msgid "File Date"
|
946 |
msgstr "文件日期"
|
947 |
|
948 |
-
#: includes/admin/html-downloadable-file-version.php:
|
949 |
-
#: includes\admin/html-downloadable-file-version.php:56
|
950 |
msgid "h"
|
951 |
msgstr "h"
|
952 |
|
953 |
-
#: includes/admin/html-downloadable-file-version.php:
|
954 |
-
#: includes\admin/html-downloadable-file-version.php:56
|
955 |
msgid "m"
|
956 |
msgstr "m"
|
957 |
|
958 |
-
#: includes/class-dlm-download-handler.php:
|
|
|
|
|
|
|
|
|
959 |
msgid "Download does not exist."
|
960 |
msgstr "下载不存在"
|
961 |
|
962 |
-
#: includes/class-dlm-download-handler.php:
|
963 |
-
#: includes/class-dlm-download-handler.php:
|
964 |
-
#: includes/class-dlm-download-handler.php:
|
965 |
-
#: includes/class-dlm-download-handler.php:
|
966 |
-
#: includes/class-dlm-download-handler.php:
|
967 |
msgid "Go to homepage →"
|
968 |
msgstr "转向主页 →"
|
969 |
|
970 |
-
#: includes/class-dlm-download-handler.php:
|
971 |
-
#: includes/class-dlm-download-handler.php:
|
972 |
-
#: includes/class-dlm-download-handler.php:
|
973 |
-
#: includes/class-dlm-download-handler.php:
|
974 |
-
#: includes/class-dlm-download-handler.php:
|
975 |
msgid "Download Error"
|
976 |
msgstr "下载错误"
|
977 |
|
978 |
-
#: includes/class-dlm-download-handler.php:
|
979 |
-
#: includes/class-dlm-download-handler.php:
|
980 |
msgid "No file paths defined."
|
981 |
msgstr "没有定义文件路径"
|
982 |
|
983 |
-
#: includes/class-dlm-download-handler.php:
|
984 |
msgid "You do not have permission to access this download."
|
985 |
msgstr "您无权访问此下载"
|
986 |
|
987 |
-
#: includes/class-dlm-download-handler.php:
|
988 |
-
#: includes/class-dlm-download-handler.php:
|
989 |
-
#: includes/class-dlm-download-handler.php:
|
990 |
-
#: includes/class-dlm-download-handler.php:
|
991 |
msgid "Redirected to file"
|
992 |
msgstr "重定向到文件"
|
993 |
|
994 |
-
#: includes/class-dlm-download-handler.php:
|
995 |
msgid "Redirected to remote file."
|
996 |
msgstr "重定向到远程文件"
|
997 |
|
998 |
-
#: includes/class-dlm-download-handler.php:
|
999 |
msgid "File not found"
|
1000 |
msgstr "文件没有找到"
|
1001 |
|
1002 |
-
#: includes/class-dlm-download-handler.php:
|
1003 |
msgid "File not found."
|
1004 |
msgstr "文件没有找到"
|
1005 |
|
@@ -1008,91 +843,79 @@ msgid "Download not found"
|
|
1008 |
msgstr "下载没有找到"
|
1009 |
|
1010 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
1011 |
-
#: includes\widgets/class-dlm-widget-downloads.php:27
|
1012 |
msgid "Display a list of your downloads."
|
1013 |
msgstr "显示您的下载列表"
|
1014 |
|
1015 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
1016 |
-
#: includes\widgets/class-dlm-widget-downloads.php:29
|
1017 |
msgid "Downloads List"
|
1018 |
msgstr "下载列表"
|
1019 |
|
1020 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
1021 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
1022 |
-
#: includes\widgets/class-dlm-widget-downloads.php:52
|
1023 |
-
#: includes\widgets/class-dlm-widget-downloads.php:148
|
1024 |
msgid "Featured Downloads"
|
1025 |
msgstr "特色下载"
|
1026 |
|
1027 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
1028 |
-
#: includes\widgets/class-dlm-widget-downloads.php:157
|
1029 |
msgid "Title:"
|
1030 |
msgstr "标题:"
|
1031 |
|
1032 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
1033 |
-
#: includes\widgets/class-dlm-widget-downloads.php:161
|
1034 |
msgid "Limit:"
|
1035 |
msgstr "限制:"
|
1036 |
|
1037 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
1038 |
-
#: includes\widgets/class-dlm-widget-downloads.php:165
|
1039 |
msgid "Output template:"
|
1040 |
msgstr "输出模板:"
|
1041 |
|
1042 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
1043 |
-
#: includes\widgets/class-dlm-widget-downloads.php:166
|
1044 |
msgid "Default template"
|
1045 |
msgstr "默认模板"
|
1046 |
|
1047 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
1048 |
-
#: includes\widgets/class-dlm-widget-downloads.php:169
|
1049 |
msgid "Order by:"
|
1050 |
msgstr "排序:"
|
1051 |
|
1052 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
1053 |
-
#: includes\widgets/class-dlm-widget-downloads.php:172
|
1054 |
msgid "Random"
|
1055 |
msgstr "随机"
|
1056 |
|
1057 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
1058 |
-
#: includes\widgets/class-dlm-widget-downloads.php:174
|
1059 |
msgid "Date added"
|
1060 |
msgstr "添加日期"
|
1061 |
|
1062 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
1063 |
-
#: includes\widgets/class-dlm-widget-downloads.php:175
|
1064 |
msgid "Date modified"
|
1065 |
msgstr "修改日期"
|
1066 |
|
1067 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
1068 |
-
#: includes\widgets/class-dlm-widget-downloads.php:180
|
1069 |
msgid "Order:"
|
1070 |
msgstr "排序:"
|
1071 |
|
1072 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
1073 |
-
#: includes\widgets/class-dlm-widget-downloads.php:182
|
1074 |
msgid "ASC"
|
1075 |
msgstr "升序"
|
1076 |
|
1077 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
1078 |
-
#: includes\widgets/class-dlm-widget-downloads.php:183
|
1079 |
msgid "DESC"
|
1080 |
msgstr "降序"
|
1081 |
|
1082 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
1083 |
-
#: includes\widgets/class-dlm-widget-downloads.php:188
|
1084 |
msgid "Show only featured downloads"
|
1085 |
msgstr "仅显示特色下载"
|
1086 |
|
1087 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
1088 |
-
#: includes\widgets/class-dlm-widget-downloads.php:192
|
1089 |
msgid "Show only members only downloads"
|
1090 |
msgstr "仅显示会员下载"
|
1091 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1092 |
#: templates/content-download-box.php:20
|
1093 |
#: templates/content-download-filename.php:8
|
1094 |
#: templates/content-download-title.php:8 templates/content-download.php:8
|
1095 |
-
#, php-format
|
1096 |
msgid "Version %s"
|
1097 |
msgstr "版本 %s"
|
1098 |
|
@@ -1101,6 +924,34 @@ msgid "Download File"
|
|
1101 |
msgstr "下载文件"
|
1102 |
|
1103 |
#: templates/content-download-button.php:9
|
1104 |
-
#, php-format
|
1105 |
msgid "Download “%s”"
|
1106 |
msgstr "下载 “%s”"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: Download Monitor\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
8 |
+
"POT-Creation-Date: 2014-06-28 12:04:37+00:00\n"
|
9 |
+
"PO-Revision-Date: 2014-06-28 12:20+0000\n"
|
10 |
+
"Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
|
11 |
+
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/download-monitor/language/zh_CN/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Language: zh_CN\n"
|
|
|
16 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
17 |
+
|
18 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Settings"
|
20 |
msgstr "设置"
|
21 |
|
22 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:260
|
|
|
23 |
msgid "Add-ons"
|
24 |
msgstr "附加组件"
|
25 |
|
26 |
+
#: download-monitor.php:94
|
27 |
msgid "Docs"
|
28 |
msgstr "文档"
|
29 |
|
30 |
+
#: download-monitor.php:241 download-monitor.php:243
|
31 |
#: includes/admin/class-dlm-admin-cpt.php:172
|
|
|
32 |
msgid "Categories"
|
33 |
msgstr "分类"
|
34 |
|
35 |
+
#: download-monitor.php:244
|
36 |
msgid "Download Category"
|
37 |
msgstr "下载分类"
|
38 |
|
39 |
+
#: download-monitor.php:245
|
40 |
msgid "Search Download Categories"
|
41 |
msgstr "查找下载分类"
|
42 |
|
43 |
+
#: download-monitor.php:246
|
44 |
msgid "All Download Categories"
|
45 |
msgstr "所有下载分类"
|
46 |
|
47 |
+
#: download-monitor.php:247
|
48 |
msgid "Parent Download Category"
|
49 |
msgstr "父下载分类"
|
50 |
|
51 |
+
#: download-monitor.php:248
|
52 |
msgid "Parent Download Category:"
|
53 |
msgstr "父下载分类:"
|
54 |
|
55 |
+
#: download-monitor.php:249
|
56 |
msgid "Edit Download Category"
|
57 |
msgstr "编辑下载分类"
|
58 |
|
59 |
+
#: download-monitor.php:250
|
60 |
msgid "Update Download Category"
|
61 |
msgstr "更新下载分类"
|
62 |
|
63 |
+
#: download-monitor.php:251
|
64 |
msgid "Add New Download Category"
|
65 |
msgstr "添加新下载分类"
|
66 |
|
67 |
+
#: download-monitor.php:252
|
68 |
msgid "New Download Category Name"
|
69 |
msgstr "新下载分类名称"
|
70 |
|
71 |
+
#: download-monitor.php:271 download-monitor.php:273
|
72 |
#: includes/admin/class-dlm-admin-cpt.php:173
|
|
|
73 |
msgid "Tags"
|
74 |
msgstr "标签"
|
75 |
|
76 |
+
#: download-monitor.php:274
|
77 |
msgid "Download Tag"
|
78 |
msgstr "下载标签"
|
79 |
|
80 |
+
#: download-monitor.php:275
|
81 |
msgid "Search Download Tags"
|
82 |
msgstr "查找下载标签"
|
83 |
|
84 |
+
#: download-monitor.php:276
|
85 |
msgid "All Download Tags"
|
86 |
msgstr "所有下载标签"
|
87 |
|
88 |
+
#: download-monitor.php:277
|
89 |
msgid "Parent Download Tag"
|
90 |
msgstr "父下载标签"
|
91 |
|
92 |
+
#: download-monitor.php:278
|
93 |
msgid "Parent Download Tag:"
|
94 |
msgstr "父下载标签:"
|
95 |
|
96 |
+
#: download-monitor.php:279
|
97 |
msgid "Edit Download Tag"
|
98 |
msgstr "编辑下载标签"
|
99 |
|
100 |
+
#: download-monitor.php:280
|
101 |
msgid "Update Download Tag"
|
102 |
msgstr "更新下载标签"
|
103 |
|
104 |
+
#: download-monitor.php:281
|
105 |
msgid "Add New Download Tag"
|
106 |
msgstr "添加新下载标签"
|
107 |
|
108 |
+
#: download-monitor.php:282
|
109 |
msgid "New Download Tag Name"
|
110 |
msgstr "新下载标签名称"
|
111 |
|
112 |
+
#: download-monitor.php:303
|
113 |
msgid "All Downloads"
|
114 |
msgstr "所有下载"
|
115 |
|
116 |
+
#: download-monitor.php:304
|
117 |
msgid "Downloads"
|
118 |
msgstr "下载"
|
119 |
|
120 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
121 |
#: includes/admin/class-dlm-logging-list-table.php:123
|
|
|
|
|
122 |
msgid "Download"
|
123 |
msgstr "下载"
|
124 |
|
125 |
+
#: download-monitor.php:306
|
126 |
msgid "Add New"
|
127 |
msgstr "新添加"
|
128 |
|
129 |
+
#: download-monitor.php:307
|
130 |
msgid "Add Download"
|
131 |
msgstr "添加下载"
|
132 |
|
133 |
+
#: download-monitor.php:308
|
134 |
msgid "Edit"
|
135 |
msgstr "编辑"
|
136 |
|
137 |
+
#: download-monitor.php:309
|
138 |
msgid "Edit Download"
|
139 |
msgstr "编辑下载"
|
140 |
|
141 |
+
#: download-monitor.php:310
|
142 |
msgid "New Download"
|
143 |
msgstr "新建下载"
|
144 |
|
145 |
+
#: download-monitor.php:311 download-monitor.php:312
|
146 |
msgid "View Download"
|
147 |
msgstr "浏览下载"
|
148 |
|
149 |
+
#: download-monitor.php:313
|
150 |
msgid "Search Downloads"
|
151 |
msgstr "查找下载"
|
152 |
|
153 |
+
#: download-monitor.php:314
|
154 |
msgid "No Downloads found"
|
155 |
msgstr "没有找到下载"
|
156 |
|
157 |
+
#: download-monitor.php:315
|
158 |
msgid "No Downloads found in trash"
|
159 |
msgstr "在垃圾篓没有找到下载"
|
160 |
|
161 |
+
#: download-monitor.php:316
|
162 |
msgid "Parent Download"
|
163 |
msgstr "父下载"
|
164 |
|
165 |
+
#: download-monitor.php:318
|
166 |
msgid "This is where you can create and manage downloads for your site."
|
167 |
msgstr "在这儿您可以为您的站点创建和管理下载"
|
168 |
|
169 |
#: includes/admin/class-dlm-addons.php:50
|
170 |
+
#: includes/admin/class-dlm-admin.php:260
|
|
|
|
|
171 |
msgid "Download Monitor Add-ons"
|
172 |
msgstr "Download Monitor 附加组件"
|
173 |
|
174 |
#: includes/admin/class-dlm-admin-cpt.php:64
|
|
|
175 |
msgid "Select a category"
|
176 |
msgstr "选择一个分类"
|
177 |
|
178 |
#: includes/admin/class-dlm-admin-cpt.php:124
|
|
|
179 |
msgid "Download title"
|
180 |
msgstr "下载标题"
|
181 |
|
182 |
#: includes/admin/class-dlm-admin-cpt.php:140
|
183 |
#: includes/admin/class-dlm-admin-cpt.php:143
|
|
|
|
|
184 |
msgid "Download updated."
|
185 |
msgstr "下载已经更新"
|
186 |
|
187 |
#: includes/admin/class-dlm-admin-cpt.php:141
|
|
|
188 |
msgid "Custom field updated."
|
189 |
msgstr "自定义字段已更新"
|
190 |
|
191 |
#: includes/admin/class-dlm-admin-cpt.php:142
|
|
|
192 |
msgid "Custom field deleted."
|
193 |
msgstr "自定义字段已删除"
|
194 |
|
195 |
#: includes/admin/class-dlm-admin-cpt.php:144
|
|
|
|
|
196 |
msgid "Download restored to revision from %s"
|
197 |
msgstr " 从%s下载恢复修正"
|
198 |
|
199 |
#: includes/admin/class-dlm-admin-cpt.php:145
|
|
|
200 |
msgid "Download published."
|
201 |
msgstr "下载已发布"
|
202 |
|
203 |
#: includes/admin/class-dlm-admin-cpt.php:146
|
|
|
204 |
msgid "Download saved."
|
205 |
msgstr "下载已保存"
|
206 |
|
207 |
#: includes/admin/class-dlm-admin-cpt.php:147
|
|
|
208 |
msgid "Download submitted."
|
209 |
msgstr "下载已提交"
|
210 |
|
211 |
#: includes/admin/class-dlm-admin-cpt.php:148
|
|
|
|
|
212 |
msgid "Download scheduled for: <strong>%1$s</strong>."
|
213 |
msgstr "已经为<strong>%1$s</strong>安排下载。"
|
214 |
|
215 |
#: includes/admin/class-dlm-admin-cpt.php:149
|
|
|
216 |
msgid "M j, Y @ G:i"
|
217 |
msgstr "M j, Y @ G:i"
|
218 |
|
219 |
#: includes/admin/class-dlm-admin-cpt.php:150
|
|
|
220 |
msgid "Download draft updated."
|
221 |
msgstr "下载草稿已更新"
|
222 |
|
223 |
#: includes/admin/class-dlm-admin-cpt.php:167
|
|
|
224 |
msgid "Image"
|
225 |
msgstr "图像"
|
226 |
|
227 |
#: includes/admin/class-dlm-admin-cpt.php:168
|
228 |
#: includes/widgets/class-dlm-widget-downloads.php:171
|
|
|
|
|
229 |
msgid "Title"
|
230 |
msgstr "标题"
|
231 |
|
232 |
#: includes/admin/class-dlm-admin-cpt.php:169
|
233 |
#: includes/widgets/class-dlm-widget-downloads.php:173
|
|
|
|
|
234 |
msgid "ID"
|
235 |
msgstr "ID"
|
236 |
|
237 |
#: includes/admin/class-dlm-admin-cpt.php:170
|
238 |
#: includes/admin/class-dlm-logging-list-table.php:124
|
|
|
|
|
239 |
msgid "File"
|
240 |
msgstr "文件"
|
241 |
|
242 |
#: includes/admin/class-dlm-admin-cpt.php:171
|
243 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
244 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
|
|
|
|
|
|
245 |
msgid "Version"
|
246 |
msgstr "版本"
|
247 |
|
248 |
#: includes/admin/class-dlm-admin-cpt.php:174
|
249 |
#: includes/admin/class-dlm-admin-dashboard.php:70
|
250 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
251 |
#: includes/widgets/class-dlm-widget-downloads.php:176
|
|
|
|
|
|
|
|
|
252 |
msgid "Download count"
|
253 |
msgstr "下载次数"
|
254 |
|
255 |
#: includes/admin/class-dlm-admin-cpt.php:175
|
|
|
256 |
msgid "Featured"
|
257 |
msgstr "特色"
|
258 |
|
259 |
#: includes/admin/class-dlm-admin-cpt.php:176
|
260 |
#: includes/admin/class-dlm-admin-writepanels.php:63
|
|
|
|
|
261 |
msgid "Members only"
|
262 |
msgstr "仅会员"
|
263 |
|
264 |
#: includes/admin/class-dlm-admin-cpt.php:177
|
|
|
265 |
msgid "Redirect only"
|
266 |
msgstr "仅重定向"
|
267 |
|
268 |
#: includes/admin/class-dlm-admin-cpt.php:178
|
|
|
269 |
msgid "Date posted"
|
270 |
msgstr "发布日期"
|
271 |
|
272 |
#: includes/admin/class-dlm-admin-cpt.php:212
|
273 |
#: includes/admin/class-dlm-admin-cpt.php:220
|
274 |
#: includes/admin/class-dlm-admin-cpt.php:228
|
|
|
|
|
|
|
275 |
msgid "Yes"
|
276 |
msgstr "是"
|
277 |
|
278 |
#: includes/admin/class-dlm-admin-dashboard.php:21
|
|
|
279 |
msgid "Popular Downloads"
|
280 |
msgstr "热门下载"
|
281 |
|
282 |
#: includes/admin/class-dlm-admin-dashboard.php:53
|
|
|
283 |
msgid "There are no stats available yet!"
|
284 |
msgstr "目前未统计"
|
285 |
|
286 |
#: includes/admin/class-dlm-admin-insert.php:32
|
287 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
288 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
|
|
289 |
msgid "Insert Download"
|
290 |
msgstr "插入下载"
|
291 |
|
292 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
293 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
|
|
|
|
294 |
msgid "Insert Shortcode"
|
295 |
msgstr "插入快捷码"
|
296 |
|
297 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
|
|
298 |
msgid "Quick-add download"
|
299 |
msgstr "快速添加下载"
|
300 |
|
301 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
|
|
302 |
msgid "Error: File was not created."
|
303 |
msgstr "错误:未能创建文件。"
|
304 |
|
305 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
|
|
306 |
msgid "Download successfully created."
|
307 |
msgstr "已成功创建下载。"
|
308 |
|
309 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
|
|
310 |
msgid "Error: Download was not created."
|
311 |
msgstr "错误: 未能创建下载。"
|
312 |
|
313 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
|
|
314 |
msgid "Choose a download"
|
315 |
msgstr "选择下载"
|
316 |
|
317 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
|
|
318 |
msgid "Template"
|
319 |
msgstr "模板"
|
320 |
|
321 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
|
|
322 |
msgid "Template Name"
|
323 |
msgstr "模板名称"
|
324 |
|
325 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
|
|
326 |
msgid ""
|
327 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
328 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
329 |
+
">content-download-image.php</code> template will be used instead."
|
330 |
+
msgstr "留空将使用 <code>content-download.php</code>模板文件。如果输入了,例如 <code>image</code>,那么将使用 <code>content-download-image.php</code>模板文件。"
|
|
|
|
|
|
|
331 |
|
332 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
|
|
333 |
msgid "Drop file here"
|
334 |
msgstr "把文件拖至这里"
|
335 |
|
336 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
337 |
+
#: includes/admin/class-dlm-admin-insert.php:217
|
|
|
|
|
338 |
msgid "or"
|
339 |
msgstr "或"
|
340 |
|
341 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
342 |
+
msgid "Select File"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/admin/class-dlm-admin-insert.php:218
|
346 |
msgid "Enter URL manually"
|
347 |
msgstr "手工输入URL"
|
348 |
|
349 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
|
|
350 |
msgid "Download URL"
|
351 |
msgstr "下载URL"
|
352 |
|
353 |
+
#: includes/admin/class-dlm-admin-insert.php:225
|
|
|
354 |
msgid "Required URL"
|
355 |
msgstr "必选URL"
|
356 |
|
357 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
|
|
358 |
msgid "Download Title"
|
359 |
msgstr "下载标题"
|
360 |
|
361 |
+
#: includes/admin/class-dlm-admin-insert.php:229
|
|
|
362 |
msgid "Required title"
|
363 |
msgstr "标题必选"
|
364 |
|
365 |
+
#: includes/admin/class-dlm-admin-insert.php:233
|
|
|
366 |
msgid "Optional version number"
|
367 |
msgstr "可选版本号"
|
368 |
|
369 |
+
#: includes/admin/class-dlm-admin-insert.php:236
|
|
|
370 |
msgid "Save Download"
|
371 |
msgstr "保存下载"
|
372 |
|
373 |
+
#: includes/admin/class-dlm-admin-insert.php:292
|
|
|
374 |
msgid "Allowed Files"
|
375 |
msgstr "允许的文件"
|
376 |
|
377 |
+
#: includes/admin/class-dlm-admin-insert.php:342
|
|
|
378 |
msgid "Please wait..."
|
379 |
msgstr "请稍等 ..."
|
380 |
|
381 |
#: includes/admin/class-dlm-admin-media-browser.php:31
|
382 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
383 |
msgid "Browse for a file"
|
384 |
msgstr "浏览文件"
|
385 |
|
386 |
#: includes/admin/class-dlm-admin-media-browser.php:101
|
|
|
387 |
msgid "No files found"
|
388 |
msgstr "未找到文件"
|
389 |
|
390 |
#: includes/admin/class-dlm-admin-writepanels.php:29
|
|
|
391 |
msgid "Download Options"
|
392 |
msgstr "下载选项"
|
393 |
|
394 |
#: includes/admin/class-dlm-admin-writepanels.php:30
|
|
|
395 |
msgid "Downloadable Files/Versions"
|
396 |
msgstr "可供下载的 文件/版本"
|
397 |
|
398 |
#: includes/admin/class-dlm-admin-writepanels.php:35
|
|
|
399 |
msgid "Short Description"
|
400 |
msgstr "简洁描述"
|
401 |
|
402 |
#: includes/admin/class-dlm-admin-writepanels.php:57
|
|
|
403 |
msgid "Featured download"
|
404 |
msgstr "特色下载"
|
405 |
|
406 |
#: includes/admin/class-dlm-admin-writepanels.php:58
|
|
|
407 |
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
408 |
msgstr "标记为特色下载。快捷码和小工具可以使用。"
|
409 |
|
410 |
#: includes/admin/class-dlm-admin-writepanels.php:64
|
|
|
411 |
msgid ""
|
412 |
"Only logged in users will be able to access the file via a download link if "
|
413 |
"this is enabled."
|
414 |
msgstr "如果启用此选项,仅登录用户可以通过下载链接访问文件。"
|
415 |
|
416 |
#: includes/admin/class-dlm-admin-writepanels.php:69
|
|
|
417 |
msgid "Redirect to file"
|
418 |
msgstr "重定向至文件"
|
419 |
|
420 |
#: includes/admin/class-dlm-admin-writepanels.php:70
|
|
|
421 |
msgid ""
|
422 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you"
|
423 |
+
" may need to move your file."
|
424 |
+
msgstr "不强行下载。如何文件夹<code>dlm_upload</code>被保护,您也许需要移动你的文件。"
|
|
|
425 |
|
426 |
#: includes/admin/class-dlm-admin-writepanels.php:94
|
|
|
427 |
msgid "Add file"
|
428 |
msgstr "添加文件"
|
429 |
|
430 |
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
431 |
msgid "Close all"
|
432 |
msgstr "关闭所有 "
|
433 |
|
434 |
#: includes/admin/class-dlm-admin-writepanels.php:95
|
|
|
435 |
msgid "Expand all"
|
436 |
msgstr "展开所有"
|
437 |
|
438 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
|
|
439 |
msgid "Are you sure you want to delete this file?"
|
440 |
msgstr "确定删除此文件?"
|
441 |
|
442 |
+
#: includes/admin/class-dlm-admin.php:95
|
443 |
msgid "General"
|
444 |
msgstr "通用"
|
445 |
|
446 |
#: includes/admin/class-dlm-admin.php:100
|
|
|
447 |
msgid "Default Template"
|
448 |
msgstr "默认模板"
|
449 |
|
450 |
#: includes/admin/class-dlm-admin.php:101
|
|
|
451 |
msgid ""
|
452 |
"Choose which template is used for <code>[download]</code> shortcodes by "
|
453 |
"default (this can be overridden by the <code>format</code> argument)."
|
454 |
+
msgstr "为快捷码 <code>[download]</code> 选择默认模板(<code>format</code>参数覆盖可以此项)。"
|
|
|
|
|
455 |
|
456 |
#: includes/admin/class-dlm-admin.php:104
|
|
|
457 |
msgid "Default - Title and count"
|
458 |
msgstr "默认 - 标题和数目"
|
459 |
|
460 |
#: includes/admin/class-dlm-admin.php:105
|
|
|
461 |
msgid "Button - CSS styled button showing title and count"
|
462 |
msgstr "按钮 - 显示标题和数目的CSS形式按钮"
|
463 |
|
464 |
#: includes/admin/class-dlm-admin.php:106
|
|
|
465 |
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
466 |
msgstr "方框 - 显示缩略图,标题,数目,文件名和文件大小的方框"
|
467 |
|
468 |
#: includes/admin/class-dlm-admin.php:107
|
|
|
469 |
msgid "Filename - Filename and download count"
|
470 |
msgstr "文件名 - 文件名和下载次数"
|
471 |
|
472 |
#: includes/admin/class-dlm-admin.php:108
|
|
|
473 |
msgid "Title - Shows download title only"
|
474 |
msgstr "标题 - 仅显示下载标题"
|
475 |
|
476 |
#: includes/admin/class-dlm-admin.php:109
|
|
|
477 |
msgid "Version list - Lists all download versions in an unordered list"
|
478 |
msgstr "版本列表 - 列出所有下载版本的无序列表"
|
479 |
|
480 |
#: includes/admin/class-dlm-admin.php:110
|
|
|
481 |
msgid "Custom template"
|
482 |
msgstr "自定义模板"
|
483 |
|
484 |
#: includes/admin/class-dlm-admin.php:116
|
|
|
485 |
msgid "Custom Template"
|
486 |
msgstr "自定义模板"
|
487 |
|
488 |
#: includes/admin/class-dlm-admin.php:117
|
|
|
489 |
msgid ""
|
490 |
"Leaving this blank will use the default <code>content-download.php</code> "
|
491 |
+
"template file. If you enter, for example, <code>image</code>, the <code"
|
492 |
+
">content-download-image.php</code> template will be used instead. You can "
|
493 |
+
"add custom templates inside your theme folder."
|
494 |
+
msgstr "留空将使用 <code>content-download.php</code>模板文件。如果输入了,例如 <code>image</code>,那么将使用 <code>content-download-image.php</code>模板文件。您可以在您的主题文件夹添加自己定义模板。"
|
|
|
|
|
|
|
495 |
|
496 |
#: includes/admin/class-dlm-admin.php:122
|
|
|
497 |
msgid "Endpoint"
|
498 |
msgstr "Endpoint"
|
499 |
|
500 |
#: includes/admin/class-dlm-admin.php:127
|
|
|
501 |
msgid "download"
|
502 |
msgstr "下载"
|
503 |
|
504 |
#: includes/admin/class-dlm-admin.php:128
|
|
|
505 |
msgid "Download Endpoint"
|
506 |
msgstr "下载的Endpoint"
|
507 |
|
508 |
#: includes/admin/class-dlm-admin.php:129
|
|
|
|
|
509 |
msgid ""
|
510 |
+
"Define what endpoint should be used for download links. By default this will"
|
511 |
+
" be <code>%s</code>."
|
512 |
msgstr "定义用于下载链接的endpoint。默认为 <code>%s</code>。"
|
513 |
|
514 |
#: includes/admin/class-dlm-admin.php:134
|
|
|
515 |
msgid "Endpoint Value"
|
516 |
msgstr "Endpoint值"
|
517 |
|
518 |
#: includes/admin/class-dlm-admin.php:135
|
|
|
|
|
519 |
msgid ""
|
520 |
"Define what unique value should be used on the end of your endpoint to "
|
521 |
+
"identify the downloadable file. e.g. ID would give a link like "
|
522 |
+
"<code>%s</code>"
|
523 |
+
msgstr "定义独一无二值放在endpoint之后用来标识下载文件。例如使用 ID 将给出像<code>%s</code>的链接。"
|
|
|
|
|
524 |
|
525 |
#: includes/admin/class-dlm-admin.php:138
|
526 |
+
#: includes/admin/class-dlm-admin.php:460
|
|
|
|
|
527 |
msgid "Download ID"
|
528 |
msgstr "下载ID"
|
529 |
|
530 |
#: includes/admin/class-dlm-admin.php:139
|
|
|
531 |
msgid "Download slug"
|
532 |
msgstr "下载别名"
|
533 |
|
534 |
#: includes/admin/class-dlm-admin.php:145
|
|
|
535 |
msgid "X-Accel-Redirect / X-Sendfile"
|
536 |
msgstr "X-Accel-Redirect / X-Sendfile"
|
537 |
|
538 |
#: includes/admin/class-dlm-admin.php:146
|
539 |
+
#: includes/admin/class-dlm-admin.php:154
|
540 |
+
#: includes/admin/class-dlm-admin.php:165
|
|
|
541 |
msgid "Enable"
|
542 |
msgstr "启用"
|
543 |
|
544 |
#: includes/admin/class-dlm-admin.php:147
|
|
|
545 |
msgid ""
|
546 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be"
|
547 |
+
" used to serve downloads instead of PHP (server requires "
|
548 |
+
"<code>mod_xsendfile</code>)."
|
549 |
+
msgstr "如果支持, 可以使用<code>X-Accel-Redirect</code> / <code>X-Sendfile</code>供下载, 而不是使用PHP (服务器需要启用<code>mod_xsendfile</code>模块)。"
|
|
|
|
|
550 |
|
551 |
#: includes/admin/class-dlm-admin.php:153
|
552 |
+
msgid "Prevent hotlinking"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/admin/class-dlm-admin.php:155
|
556 |
+
msgid ""
|
557 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
558 |
+
"originated from your site and if not, redirect them to the homepage."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:161
|
562 |
msgid "Logging"
|
563 |
msgstr "记录日志"
|
564 |
|
565 |
+
#: includes/admin/class-dlm-admin.php:167
|
|
|
566 |
msgid "Download Log"
|
567 |
msgstr "下载日志"
|
568 |
|
569 |
+
#: includes/admin/class-dlm-admin.php:168
|
|
|
570 |
msgid "Log download attempts, IP addresses and more."
|
571 |
msgstr "记录下载尝试,IP地址等。"
|
572 |
|
573 |
+
#: includes/admin/class-dlm-admin.php:174
|
|
|
574 |
msgid "Blacklist IPs"
|
575 |
msgstr "IP黑名单"
|
576 |
|
577 |
+
#: includes/admin/class-dlm-admin.php:175
|
|
|
578 |
msgid ""
|
579 |
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
580 |
"wildcard."
|
581 |
msgstr "IP黑名单列表,每行1个。 使用 <code>*</code>作为通配符。"
|
582 |
|
583 |
+
#: includes/admin/class-dlm-admin.php:182
|
|
|
584 |
msgid "Blacklist user agents"
|
585 |
msgstr "浏览器User-Agent黑名单"
|
586 |
|
587 |
+
#: includes/admin/class-dlm-admin.php:183
|
|
|
588 |
msgid "List browser user agents to blacklist, 1 per line."
|
589 |
msgstr "浏览User-Agent黑名单列表,每行1个。"
|
590 |
|
591 |
+
#: includes/admin/class-dlm-admin.php:255
|
|
|
592 |
msgid "Logs"
|
593 |
msgstr "日志"
|
594 |
|
595 |
+
#: includes/admin/class-dlm-admin.php:299
|
|
|
596 |
msgid "Settings successfully saved"
|
597 |
msgstr "已经成功保存设置"
|
598 |
|
599 |
+
#: includes/admin/class-dlm-admin.php:366
|
|
|
600 |
msgid "Save Changes"
|
601 |
msgstr "保存更改"
|
602 |
|
603 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
604 |
msgid "Download Logs"
|
605 |
msgstr "下载日志"
|
606 |
|
607 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
608 |
msgid "Export CSV"
|
609 |
msgstr "导出为CSV"
|
610 |
|
611 |
+
#: includes/admin/class-dlm-admin.php:410
|
|
|
612 |
msgid "Delete Logs"
|
613 |
msgstr "删除日志"
|
614 |
|
615 |
+
#: includes/admin/class-dlm-admin.php:461
|
|
|
616 |
msgid "Version ID"
|
617 |
msgstr "版本ID"
|
618 |
|
619 |
+
#: includes/admin/class-dlm-admin.php:462
|
|
|
620 |
msgid "Filename"
|
621 |
msgstr "文件名"
|
622 |
|
623 |
+
#: includes/admin/class-dlm-admin.php:463
|
|
|
624 |
msgid "User ID"
|
625 |
msgstr "用户ID"
|
626 |
|
627 |
+
#: includes/admin/class-dlm-admin.php:464
|
|
|
628 |
msgid "User Login"
|
629 |
msgstr "用户登录名"
|
630 |
|
631 |
+
#: includes/admin/class-dlm-admin.php:465
|
|
|
632 |
msgid "User Email"
|
633 |
msgstr "用户Email"
|
634 |
|
635 |
+
#: includes/admin/class-dlm-admin.php:466
|
|
|
636 |
msgid "User IP"
|
637 |
msgstr "用户IP"
|
638 |
|
639 |
+
#: includes/admin/class-dlm-admin.php:467
|
640 |
#: includes/admin/class-dlm-logging-list-table.php:127
|
|
|
|
|
641 |
msgid "User Agent"
|
642 |
msgstr "浏览器User-Agent"
|
643 |
|
644 |
+
#: includes/admin/class-dlm-admin.php:468
|
645 |
#: includes/admin/class-dlm-logging-list-table.php:128
|
|
|
|
|
646 |
msgid "Date"
|
647 |
msgstr "日期"
|
648 |
|
649 |
+
#: includes/admin/class-dlm-admin.php:469
|
|
|
650 |
msgid "Status"
|
651 |
msgstr "状态"
|
652 |
|
653 |
#: includes/admin/class-dlm-logging-list-table.php:50
|
|
|
654 |
msgid "Download Complete"
|
655 |
msgstr "下载完成"
|
656 |
|
657 |
#: includes/admin/class-dlm-logging-list-table.php:57
|
|
|
|
|
658 |
msgid "%s ago"
|
659 |
msgstr "%s 前"
|
660 |
|
661 |
#: includes/admin/class-dlm-logging-list-table.php:64
|
|
|
|
|
662 |
msgid "Download #%d (no longer exists)"
|
663 |
msgstr "下载 #%d (已经不存在)"
|
664 |
|
665 |
#: includes/admin/class-dlm-logging-list-table.php:72
|
|
|
|
|
666 |
msgid "v%s"
|
667 |
msgstr "v%s"
|
668 |
|
669 |
#: includes/admin/class-dlm-logging-list-table.php:92
|
|
|
670 |
msgid "Non-member"
|
671 |
msgstr "非会员"
|
672 |
|
673 |
#: includes/admin/class-dlm-logging-list-table.php:125
|
|
|
674 |
msgid "User"
|
675 |
msgstr "用户"
|
676 |
|
677 |
#: includes/admin/class-dlm-logging-list-table.php:126
|
|
|
678 |
msgid "IP Address"
|
679 |
msgstr "IP地址"
|
680 |
|
681 |
#: includes/admin/class-dlm-logging-list-table.php:142
|
|
|
682 |
msgid "Any status"
|
683 |
msgstr "任何状态"
|
684 |
|
685 |
#: includes/admin/class-dlm-logging-list-table.php:143
|
|
|
686 |
msgid "Failed"
|
687 |
msgstr "失败"
|
688 |
|
689 |
#: includes/admin/class-dlm-logging-list-table.php:144
|
|
|
690 |
msgid "Redirected"
|
691 |
msgstr "已重定向"
|
692 |
|
693 |
#: includes/admin/class-dlm-logging-list-table.php:145
|
|
|
694 |
msgid "Completed"
|
695 |
msgstr "已经完成"
|
696 |
|
697 |
#: includes/admin/class-dlm-logging-list-table.php:164
|
|
|
698 |
msgid "Show all dates"
|
699 |
msgstr "显示所有日期"
|
700 |
|
701 |
#: includes/admin/class-dlm-logging-list-table.php:177
|
|
|
|
|
702 |
msgid "%1$s %2$d"
|
703 |
msgstr "%1$s %2$d"
|
704 |
|
705 |
#: includes/admin/class-dlm-logging-list-table.php:185
|
|
|
706 |
msgid "25 per page"
|
707 |
msgstr "每页25条"
|
708 |
|
709 |
#: includes/admin/class-dlm-logging-list-table.php:186
|
|
|
710 |
msgid "50 per page"
|
711 |
msgstr "每页50条"
|
712 |
|
713 |
#: includes/admin/class-dlm-logging-list-table.php:187
|
|
|
714 |
msgid "100 per page"
|
715 |
msgstr "每页100条"
|
716 |
|
717 |
#: includes/admin/class-dlm-logging-list-table.php:188
|
|
|
718 |
msgid "200 per page"
|
719 |
msgstr "每页200条"
|
720 |
|
721 |
#: includes/admin/class-dlm-logging-list-table.php:189
|
|
|
722 |
msgid "Show All"
|
723 |
msgstr "显示所有"
|
724 |
|
725 |
#: includes/admin/class-dlm-logging-list-table.php:193
|
|
|
726 |
msgid "Filter"
|
727 |
msgstr "过滤"
|
728 |
|
729 |
#: includes/admin/html-downloadable-file-version.php:3
|
|
|
730 |
msgid "Remove"
|
731 |
msgstr "移除"
|
732 |
|
733 |
#: includes/admin/html-downloadable-file-version.php:4
|
|
|
734 |
msgid "Click to toggle"
|
735 |
msgstr "单击切换"
|
736 |
|
737 |
#: includes/admin/html-downloadable-file-version.php:5
|
|
|
|
|
738 |
msgid "Version <span class=\"version\">%s</span> (%s)"
|
739 |
msgstr "版本 <span class=\"version\">%s</span> (%s)"
|
740 |
|
741 |
#: includes/admin/html-downloadable-file-version.php:5
|
742 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
|
|
|
|
743 |
msgid "n/a"
|
744 |
msgstr "未知"
|
745 |
|
746 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
747 |
+
msgid "Downloaded %s time"
|
748 |
+
msgid_plural "Downloaded %s times"
|
749 |
+
msgstr[0] ""
|
750 |
+
|
751 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
752 |
msgid "File URL(s)"
|
753 |
msgstr "文件URL"
|
754 |
|
755 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
|
|
756 |
msgid ""
|
757 |
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
758 |
"(chosen at random)."
|
759 |
msgstr "每行输入一个文件路径/URL - 多个文件将被作为镜像(随机选择)"
|
760 |
|
761 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
|
|
762 |
msgid "Upload file"
|
763 |
msgstr "上传文件"
|
764 |
|
765 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
|
|
766 |
msgid "Choose a file"
|
767 |
msgstr "选择文件"
|
768 |
|
769 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
|
|
770 |
msgid "Insert file URL"
|
771 |
msgstr "插入文件URL"
|
772 |
|
773 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
|
|
774 |
msgid "Browse for file"
|
775 |
msgstr "浏览文件"
|
776 |
|
777 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
|
|
778 |
msgid "File Date"
|
779 |
msgstr "文件日期"
|
780 |
|
781 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
782 |
msgid "h"
|
783 |
msgstr "h"
|
784 |
|
785 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
|
|
786 |
msgid "m"
|
787 |
msgstr "m"
|
788 |
|
789 |
+
#: includes/class-dlm-download-handler.php:140
|
790 |
+
msgid "Password Required"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/class-dlm-download-handler.php:150
|
794 |
msgid "Download does not exist."
|
795 |
msgstr "下载不存在"
|
796 |
|
797 |
+
#: includes/class-dlm-download-handler.php:150
|
798 |
+
#: includes/class-dlm-download-handler.php:180
|
799 |
+
#: includes/class-dlm-download-handler.php:185
|
800 |
+
#: includes/class-dlm-download-handler.php:194
|
801 |
+
#: includes/class-dlm-download-handler.php:288
|
802 |
msgid "Go to homepage →"
|
803 |
msgstr "转向主页 →"
|
804 |
|
805 |
+
#: includes/class-dlm-download-handler.php:150
|
806 |
+
#: includes/class-dlm-download-handler.php:180
|
807 |
+
#: includes/class-dlm-download-handler.php:185
|
808 |
+
#: includes/class-dlm-download-handler.php:194
|
809 |
+
#: includes/class-dlm-download-handler.php:288
|
810 |
msgid "Download Error"
|
811 |
msgstr "下载错误"
|
812 |
|
813 |
+
#: includes/class-dlm-download-handler.php:180
|
814 |
+
#: includes/class-dlm-download-handler.php:185
|
815 |
msgid "No file paths defined."
|
816 |
msgstr "没有定义文件路径"
|
817 |
|
818 |
+
#: includes/class-dlm-download-handler.php:194
|
819 |
msgid "You do not have permission to access this download."
|
820 |
msgstr "您无权访问此下载"
|
821 |
|
822 |
+
#: includes/class-dlm-download-handler.php:212
|
823 |
+
#: includes/class-dlm-download-handler.php:228
|
824 |
+
#: includes/class-dlm-download-handler.php:235
|
825 |
+
#: includes/class-dlm-download-handler.php:242
|
826 |
msgid "Redirected to file"
|
827 |
msgstr "重定向到文件"
|
828 |
|
829 |
+
#: includes/class-dlm-download-handler.php:281
|
830 |
msgid "Redirected to remote file."
|
831 |
msgstr "重定向到远程文件"
|
832 |
|
833 |
+
#: includes/class-dlm-download-handler.php:286
|
834 |
msgid "File not found"
|
835 |
msgstr "文件没有找到"
|
836 |
|
837 |
+
#: includes/class-dlm-download-handler.php:288
|
838 |
msgid "File not found."
|
839 |
msgstr "文件没有找到"
|
840 |
|
843 |
msgstr "下载没有找到"
|
844 |
|
845 |
#: includes/widgets/class-dlm-widget-downloads.php:27
|
|
|
846 |
msgid "Display a list of your downloads."
|
847 |
msgstr "显示您的下载列表"
|
848 |
|
849 |
#: includes/widgets/class-dlm-widget-downloads.php:29
|
|
|
850 |
msgid "Downloads List"
|
851 |
msgstr "下载列表"
|
852 |
|
853 |
#: includes/widgets/class-dlm-widget-downloads.php:52
|
854 |
#: includes/widgets/class-dlm-widget-downloads.php:148
|
|
|
|
|
855 |
msgid "Featured Downloads"
|
856 |
msgstr "特色下载"
|
857 |
|
858 |
#: includes/widgets/class-dlm-widget-downloads.php:157
|
|
|
859 |
msgid "Title:"
|
860 |
msgstr "标题:"
|
861 |
|
862 |
#: includes/widgets/class-dlm-widget-downloads.php:161
|
|
|
863 |
msgid "Limit:"
|
864 |
msgstr "限制:"
|
865 |
|
866 |
#: includes/widgets/class-dlm-widget-downloads.php:165
|
|
|
867 |
msgid "Output template:"
|
868 |
msgstr "输出模板:"
|
869 |
|
870 |
#: includes/widgets/class-dlm-widget-downloads.php:166
|
|
|
871 |
msgid "Default template"
|
872 |
msgstr "默认模板"
|
873 |
|
874 |
#: includes/widgets/class-dlm-widget-downloads.php:169
|
|
|
875 |
msgid "Order by:"
|
876 |
msgstr "排序:"
|
877 |
|
878 |
#: includes/widgets/class-dlm-widget-downloads.php:172
|
|
|
879 |
msgid "Random"
|
880 |
msgstr "随机"
|
881 |
|
882 |
#: includes/widgets/class-dlm-widget-downloads.php:174
|
|
|
883 |
msgid "Date added"
|
884 |
msgstr "添加日期"
|
885 |
|
886 |
#: includes/widgets/class-dlm-widget-downloads.php:175
|
|
|
887 |
msgid "Date modified"
|
888 |
msgstr "修改日期"
|
889 |
|
890 |
#: includes/widgets/class-dlm-widget-downloads.php:180
|
|
|
891 |
msgid "Order:"
|
892 |
msgstr "排序:"
|
893 |
|
894 |
#: includes/widgets/class-dlm-widget-downloads.php:182
|
|
|
895 |
msgid "ASC"
|
896 |
msgstr "升序"
|
897 |
|
898 |
#: includes/widgets/class-dlm-widget-downloads.php:183
|
|
|
899 |
msgid "DESC"
|
900 |
msgstr "降序"
|
901 |
|
902 |
#: includes/widgets/class-dlm-widget-downloads.php:188
|
|
|
903 |
msgid "Show only featured downloads"
|
904 |
msgstr "仅显示特色下载"
|
905 |
|
906 |
#: includes/widgets/class-dlm-widget-downloads.php:192
|
|
|
907 |
msgid "Show only members only downloads"
|
908 |
msgstr "仅显示会员下载"
|
909 |
|
910 |
+
#: templates/content-download-box.php:12
|
911 |
+
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
912 |
+
msgid "1 download"
|
913 |
+
msgid_plural "%d downloads"
|
914 |
+
msgstr[0] ""
|
915 |
+
|
916 |
#: templates/content-download-box.php:20
|
917 |
#: templates/content-download-filename.php:8
|
918 |
#: templates/content-download-title.php:8 templates/content-download.php:8
|
|
|
919 |
msgid "Version %s"
|
920 |
msgstr "版本 %s"
|
921 |
|
924 |
msgstr "下载文件"
|
925 |
|
926 |
#: templates/content-download-button.php:9
|
|
|
927 |
msgid "Download “%s”"
|
928 |
msgstr "下载 “%s”"
|
929 |
+
|
930 |
+
#: templates/content-download-button.php:10
|
931 |
+
#: templates/content-download-version-list.php:17
|
932 |
+
msgid "Downloaded 1 time"
|
933 |
+
msgid_plural "Downloaded %d times"
|
934 |
+
msgstr[0] ""
|
935 |
+
|
936 |
+
#. Plugin Name of the plugin/theme
|
937 |
+
msgid "Download Monitor"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#. Plugin URI of the plugin/theme
|
941 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#. Description of the plugin/theme
|
945 |
+
msgid ""
|
946 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
947 |
+
"outputting download links and file information on your WordPress powered "
|
948 |
+
"site."
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#. Author of the plugin/theme
|
952 |
+
msgid "Mike Jolley"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#. Author URI of the plugin/theme
|
956 |
+
msgid "http://mikejolley.com"
|
957 |
+
msgstr ""
|
languages/download-monitor.pot
ADDED
@@ -0,0 +1,987 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 Download Monitor
|
2 |
+
# This file is distributed under the same license as the Download Monitor package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Download Monitor 1.5.0\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
7 |
+
"POT-Creation-Date: 2014-06-28 19:28:54+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
|
15 |
+
#: download-monitor.php:92 includes/admin/class-dlm-admin.php:281
|
16 |
+
msgid "Settings"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: download-monitor.php:93 includes/admin/class-dlm-admin.php:284
|
20 |
+
msgid "Add-ons"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: download-monitor.php:94
|
24 |
+
msgid "Docs"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: download-monitor.php:241 download-monitor.php:243
|
28 |
+
#: includes/admin/class-dlm-admin-cpt.php:172
|
29 |
+
msgid "Categories"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: download-monitor.php:244
|
33 |
+
msgid "Download Category"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: download-monitor.php:245
|
37 |
+
msgid "Search Download Categories"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: download-monitor.php:246
|
41 |
+
msgid "All Download Categories"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: download-monitor.php:247
|
45 |
+
msgid "Parent Download Category"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: download-monitor.php:248
|
49 |
+
msgid "Parent Download Category:"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: download-monitor.php:249
|
53 |
+
msgid "Edit Download Category"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: download-monitor.php:250
|
57 |
+
msgid "Update Download Category"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: download-monitor.php:251
|
61 |
+
msgid "Add New Download Category"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: download-monitor.php:252
|
65 |
+
msgid "New Download Category Name"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: download-monitor.php:271 download-monitor.php:273
|
69 |
+
#: includes/admin/class-dlm-admin-cpt.php:173
|
70 |
+
msgid "Tags"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: download-monitor.php:274
|
74 |
+
msgid "Download Tag"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: download-monitor.php:275
|
78 |
+
msgid "Search Download Tags"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: download-monitor.php:276
|
82 |
+
msgid "All Download Tags"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: download-monitor.php:277
|
86 |
+
msgid "Parent Download Tag"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: download-monitor.php:278
|
90 |
+
msgid "Parent Download Tag:"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: download-monitor.php:279
|
94 |
+
msgid "Edit Download Tag"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: download-monitor.php:280
|
98 |
+
msgid "Update Download Tag"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: download-monitor.php:281
|
102 |
+
msgid "Add New Download Tag"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: download-monitor.php:282
|
106 |
+
msgid "New Download Tag Name"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: download-monitor.php:303
|
110 |
+
msgid "All Downloads"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: download-monitor.php:304
|
114 |
+
msgid "Downloads"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: download-monitor.php:305 includes/admin/class-dlm-admin-dashboard.php:69
|
118 |
+
#: includes/admin/class-dlm-logging-list-table.php:123
|
119 |
+
msgid "Download"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: download-monitor.php:306
|
123 |
+
msgid "Add New"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: download-monitor.php:307
|
127 |
+
msgid "Add Download"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: download-monitor.php:308
|
131 |
+
msgid "Edit"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: download-monitor.php:309
|
135 |
+
msgid "Edit Download"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: download-monitor.php:310
|
139 |
+
msgid "New Download"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: download-monitor.php:311 download-monitor.php:312
|
143 |
+
msgid "View Download"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: download-monitor.php:313
|
147 |
+
msgid "Search Downloads"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: download-monitor.php:314
|
151 |
+
msgid "No Downloads found"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: download-monitor.php:315
|
155 |
+
msgid "No Downloads found in trash"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: download-monitor.php:316
|
159 |
+
msgid "Parent Download"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: download-monitor.php:318
|
163 |
+
msgid "This is where you can create and manage downloads for your site."
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/admin/class-dlm-addons.php:50
|
167 |
+
#: includes/admin/class-dlm-admin.php:284
|
168 |
+
msgid "Download Monitor Add-ons"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: includes/admin/class-dlm-admin-cpt.php:64
|
172 |
+
msgid "Select a category"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/admin/class-dlm-admin-cpt.php:124
|
176 |
+
msgid "Download title"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/admin/class-dlm-admin-cpt.php:140
|
180 |
+
#: includes/admin/class-dlm-admin-cpt.php:143
|
181 |
+
msgid "Download updated."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: includes/admin/class-dlm-admin-cpt.php:141
|
185 |
+
msgid "Custom field updated."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/admin/class-dlm-admin-cpt.php:142
|
189 |
+
msgid "Custom field deleted."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: includes/admin/class-dlm-admin-cpt.php:144
|
193 |
+
msgid "Download restored to revision from %s"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: includes/admin/class-dlm-admin-cpt.php:145
|
197 |
+
msgid "Download published."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: includes/admin/class-dlm-admin-cpt.php:146
|
201 |
+
msgid "Download saved."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: includes/admin/class-dlm-admin-cpt.php:147
|
205 |
+
msgid "Download submitted."
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: includes/admin/class-dlm-admin-cpt.php:148
|
209 |
+
msgid "Download scheduled for: <strong>%1$s</strong>."
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: includes/admin/class-dlm-admin-cpt.php:149
|
213 |
+
msgid "M j, Y @ G:i"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: includes/admin/class-dlm-admin-cpt.php:150
|
217 |
+
msgid "Download draft updated."
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: includes/admin/class-dlm-admin-cpt.php:167
|
221 |
+
msgid "Image"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/admin/class-dlm-admin-cpt.php:168
|
225 |
+
#: includes/widgets/class-dlm-widget-downloads.php:171
|
226 |
+
msgid "Title"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/admin/class-dlm-admin-cpt.php:169
|
230 |
+
#: includes/widgets/class-dlm-widget-downloads.php:173
|
231 |
+
msgid "ID"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/admin/class-dlm-admin-cpt.php:170
|
235 |
+
#: includes/admin/class-dlm-logging-list-table.php:124
|
236 |
+
msgid "File"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: includes/admin/class-dlm-admin-cpt.php:171
|
240 |
+
#: includes/admin/class-dlm-admin-insert.php:231
|
241 |
+
#: includes/admin/html-downloadable-file-version.php:16
|
242 |
+
msgid "Version"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: includes/admin/class-dlm-admin-cpt.php:174
|
246 |
+
#: includes/admin/class-dlm-admin-dashboard.php:70
|
247 |
+
#: includes/admin/html-downloadable-file-version.php:52
|
248 |
+
#: includes/widgets/class-dlm-widget-downloads.php:176
|
249 |
+
msgid "Download count"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: includes/admin/class-dlm-admin-cpt.php:175
|
253 |
+
msgid "Featured"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: includes/admin/class-dlm-admin-cpt.php:176
|
257 |
+
#: includes/admin/class-dlm-admin-writepanels.php:63
|
258 |
+
msgid "Members only"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/admin/class-dlm-admin-cpt.php:177
|
262 |
+
msgid "Redirect only"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/admin/class-dlm-admin-cpt.php:178
|
266 |
+
msgid "Date posted"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: includes/admin/class-dlm-admin-cpt.php:212
|
270 |
+
#: includes/admin/class-dlm-admin-cpt.php:220
|
271 |
+
#: includes/admin/class-dlm-admin-cpt.php:228
|
272 |
+
msgid "Yes"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: includes/admin/class-dlm-admin-dashboard.php:21
|
276 |
+
msgid "Popular Downloads"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: includes/admin/class-dlm-admin-dashboard.php:53
|
280 |
+
msgid "There are no stats available yet!"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: includes/admin/class-dlm-admin-insert.php:32
|
284 |
+
#: includes/admin/class-dlm-admin-insert.php:40
|
285 |
+
#: includes/admin/class-dlm-admin-insert.php:68
|
286 |
+
msgid "Insert Download"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
290 |
+
#: includes/admin/class-dlm-admin-insert.php:203
|
291 |
+
msgid "Insert Shortcode"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/admin/class-dlm-admin-insert.php:78
|
295 |
+
msgid "Quick-add download"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/admin/class-dlm-admin-insert.php:122
|
299 |
+
msgid "Error: File was not created."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/admin/class-dlm-admin-insert.php:140
|
303 |
+
msgid "Download successfully created."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/admin/class-dlm-admin-insert.php:142
|
307 |
+
msgid "Error: Download was not created."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/admin/class-dlm-admin-insert.php:161
|
311 |
+
msgid "Choose a download"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/admin/class-dlm-admin-insert.php:196
|
315 |
+
msgid "Template"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/admin/class-dlm-admin-insert.php:197
|
319 |
+
msgid "Template Name"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/admin/class-dlm-admin-insert.php:199
|
323 |
+
msgid ""
|
324 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
325 |
+
"template file. If you enter, for example, <code>image</code>, the "
|
326 |
+
"<code>content-download-image.php</code> template will be used instead."
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: includes/admin/class-dlm-admin-insert.php:214
|
330 |
+
msgid "Drop file here"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: includes/admin/class-dlm-admin-insert.php:215
|
334 |
+
msgctxt "Drop file here *or* select file"
|
335 |
+
msgid "or"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: includes/admin/class-dlm-admin-insert.php:216
|
339 |
+
msgid "Select File"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: includes/admin/class-dlm-admin-insert.php:219
|
343 |
+
msgid "Enter URL manually"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: includes/admin/class-dlm-admin-insert.php:223
|
347 |
+
msgid "Download URL"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: includes/admin/class-dlm-admin-insert.php:224
|
351 |
+
msgid "Required URL"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: includes/admin/class-dlm-admin-insert.php:227
|
355 |
+
msgid "Download Title"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: includes/admin/class-dlm-admin-insert.php:228
|
359 |
+
msgid "Required title"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: includes/admin/class-dlm-admin-insert.php:232
|
363 |
+
msgid "Optional version number"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: includes/admin/class-dlm-admin-insert.php:235
|
367 |
+
msgid "Save Download"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: includes/admin/class-dlm-admin-insert.php:291
|
371 |
+
msgid "Allowed Files"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: includes/admin/class-dlm-admin-insert.php:341
|
375 |
+
msgid "Please wait..."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: includes/admin/class-dlm-admin-media-browser.php:31
|
379 |
+
#: includes/admin/class-dlm-admin-writepanels.php:263
|
380 |
+
msgid "Browse for a file"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: includes/admin/class-dlm-admin-media-browser.php:101
|
384 |
+
msgid "No files found"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: includes/admin/class-dlm-admin-writepanels.php:29
|
388 |
+
msgid "Download Options"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: includes/admin/class-dlm-admin-writepanels.php:30
|
392 |
+
msgid "Downloadable Files/Versions"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: includes/admin/class-dlm-admin-writepanels.php:35
|
396 |
+
msgid "Short Description"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: includes/admin/class-dlm-admin-writepanels.php:57
|
400 |
+
msgid "Featured download"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: includes/admin/class-dlm-admin-writepanels.php:58
|
404 |
+
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: includes/admin/class-dlm-admin-writepanels.php:64
|
408 |
+
msgid ""
|
409 |
+
"Only logged in users will be able to access the file via a download link if "
|
410 |
+
"this is enabled."
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/admin/class-dlm-admin-writepanels.php:69
|
414 |
+
msgid "Redirect to file"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin/class-dlm-admin-writepanels.php:70
|
418 |
+
msgid ""
|
419 |
+
"Don't force download. If the <code>dlm_upload</code> folder is protected you "
|
420 |
+
"may need to move your file."
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: includes/admin/class-dlm-admin-writepanels.php:94
|
424 |
+
msgid "Add file"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
428 |
+
msgid "Close all"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: includes/admin/class-dlm-admin-writepanels.php:95
|
432 |
+
msgid "Expand all"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: includes/admin/class-dlm-admin-writepanels.php:228
|
436 |
+
msgid "Are you sure you want to delete this file?"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: includes/admin/class-dlm-admin.php:95
|
440 |
+
msgid "General"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: includes/admin/class-dlm-admin.php:100
|
444 |
+
msgid "Default Template"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: includes/admin/class-dlm-admin.php:101
|
448 |
+
msgid ""
|
449 |
+
"Choose which template is used for <code>[download]</code> shortcodes by "
|
450 |
+
"default (this can be overridden by the <code>format</code> argument)."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/admin/class-dlm-admin.php:104
|
454 |
+
msgid "Default - Title and count"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/admin/class-dlm-admin.php:105
|
458 |
+
msgid "Button - CSS styled button showing title and count"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: includes/admin/class-dlm-admin.php:106
|
462 |
+
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/admin/class-dlm-admin.php:107
|
466 |
+
msgid "Filename - Filename and download count"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/admin/class-dlm-admin.php:108
|
470 |
+
msgid "Title - Shows download title only"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/admin/class-dlm-admin.php:109
|
474 |
+
msgid "Version list - Lists all download versions in an unordered list"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: includes/admin/class-dlm-admin.php:110
|
478 |
+
msgid "Custom template"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: includes/admin/class-dlm-admin.php:116
|
482 |
+
msgid "Custom Template"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: includes/admin/class-dlm-admin.php:117
|
486 |
+
msgid ""
|
487 |
+
"Leaving this blank will use the default <code>content-download.php</code> "
|
488 |
+
"template file. If you enter, for example, <code>image</code>, the "
|
489 |
+
"<code>content-download-image.php</code> template will be used instead. You "
|
490 |
+
"can add custom templates inside your theme folder."
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: includes/admin/class-dlm-admin.php:122
|
494 |
+
msgid "MD5 hashes"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: includes/admin/class-dlm-admin.php:123
|
498 |
+
msgid "Generate MD5 hash for uploaded files"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: includes/admin/class-dlm-admin.php:130
|
502 |
+
msgid "SHA1 hashes"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: includes/admin/class-dlm-admin.php:131
|
506 |
+
msgid "Generate SHA1 hash for uploaded files"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: includes/admin/class-dlm-admin.php:138
|
510 |
+
msgid "CRC32B hashes"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: includes/admin/class-dlm-admin.php:139
|
514 |
+
msgid "Generate CRC32B hash for uploaded files"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: includes/admin/class-dlm-admin.php:140
|
518 |
+
msgid ""
|
519 |
+
"Hashes can optionally be output via shortcodes, but may cause performance "
|
520 |
+
"issues with large files."
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/admin/class-dlm-admin.php:146
|
524 |
+
msgid "Endpoint"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: includes/admin/class-dlm-admin.php:151
|
528 |
+
msgid "download"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/admin/class-dlm-admin.php:152
|
532 |
+
msgid "Download Endpoint"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: includes/admin/class-dlm-admin.php:153
|
536 |
+
msgid ""
|
537 |
+
"Define what endpoint should be used for download links. By default this will "
|
538 |
+
"be <code>%s</code>."
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: includes/admin/class-dlm-admin.php:158
|
542 |
+
msgid "Endpoint Value"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: includes/admin/class-dlm-admin.php:159
|
546 |
+
msgid ""
|
547 |
+
"Define what unique value should be used on the end of your endpoint to "
|
548 |
+
"identify the downloadable file. e.g. ID would give a link like <code>%s</"
|
549 |
+
"code>"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/admin/class-dlm-admin.php:162
|
553 |
+
#: includes/admin/class-dlm-admin.php:484
|
554 |
+
msgid "Download ID"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: includes/admin/class-dlm-admin.php:163
|
558 |
+
msgid "Download slug"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/admin/class-dlm-admin.php:169
|
562 |
+
msgid "X-Accel-Redirect / X-Sendfile"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: includes/admin/class-dlm-admin.php:170
|
566 |
+
#: includes/admin/class-dlm-admin.php:178
|
567 |
+
#: includes/admin/class-dlm-admin.php:189
|
568 |
+
msgid "Enable"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: includes/admin/class-dlm-admin.php:171
|
572 |
+
msgid ""
|
573 |
+
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be "
|
574 |
+
"used to serve downloads instead of PHP (server requires <code>mod_xsendfile</"
|
575 |
+
"code>)."
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: includes/admin/class-dlm-admin.php:177
|
579 |
+
msgid "Prevent hotlinking"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: includes/admin/class-dlm-admin.php:179
|
583 |
+
msgid ""
|
584 |
+
"If enabled, the download handler will check the PHP referer to see if it "
|
585 |
+
"originated from your site and if not, redirect them to the homepage."
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: includes/admin/class-dlm-admin.php:185
|
589 |
+
msgid "Logging"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: includes/admin/class-dlm-admin.php:191
|
593 |
+
msgid "Download Log"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/admin/class-dlm-admin.php:192
|
597 |
+
msgid "Log download attempts, IP addresses and more."
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: includes/admin/class-dlm-admin.php:198
|
601 |
+
msgid "Blacklist IPs"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: includes/admin/class-dlm-admin.php:199
|
605 |
+
msgid ""
|
606 |
+
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
607 |
+
"wildcard."
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: includes/admin/class-dlm-admin.php:206
|
611 |
+
msgid "Blacklist user agents"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: includes/admin/class-dlm-admin.php:207
|
615 |
+
msgid "List browser user agents to blacklist, 1 per line."
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: includes/admin/class-dlm-admin.php:279
|
619 |
+
msgid "Logs"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: includes/admin/class-dlm-admin.php:323
|
623 |
+
msgid "Settings successfully saved"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: includes/admin/class-dlm-admin.php:390
|
627 |
+
msgid "Save Changes"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: includes/admin/class-dlm-admin.php:434
|
631 |
+
msgid "Download Logs"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: includes/admin/class-dlm-admin.php:434
|
635 |
+
msgid "Export CSV"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: includes/admin/class-dlm-admin.php:434
|
639 |
+
msgid "Delete Logs"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: includes/admin/class-dlm-admin.php:485
|
643 |
+
msgid "Version ID"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: includes/admin/class-dlm-admin.php:486
|
647 |
+
msgid "Filename"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: includes/admin/class-dlm-admin.php:487
|
651 |
+
msgid "User ID"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: includes/admin/class-dlm-admin.php:488
|
655 |
+
msgid "User Login"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: includes/admin/class-dlm-admin.php:489
|
659 |
+
msgid "User Email"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: includes/admin/class-dlm-admin.php:490
|
663 |
+
msgid "User IP"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: includes/admin/class-dlm-admin.php:491
|
667 |
+
#: includes/admin/class-dlm-logging-list-table.php:127
|
668 |
+
msgid "User Agent"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/admin/class-dlm-admin.php:492
|
672 |
+
#: includes/admin/class-dlm-logging-list-table.php:128
|
673 |
+
msgid "Date"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: includes/admin/class-dlm-admin.php:493
|
677 |
+
msgid "Status"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: includes/admin/class-dlm-logging-list-table.php:50
|
681 |
+
msgid "Download Complete"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: includes/admin/class-dlm-logging-list-table.php:57
|
685 |
+
msgid "%s ago"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: includes/admin/class-dlm-logging-list-table.php:64
|
689 |
+
msgid "Download #%d (no longer exists)"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: includes/admin/class-dlm-logging-list-table.php:72
|
693 |
+
msgid "v%s"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: includes/admin/class-dlm-logging-list-table.php:92
|
697 |
+
msgid "Non-member"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: includes/admin/class-dlm-logging-list-table.php:125
|
701 |
+
msgid "User"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: includes/admin/class-dlm-logging-list-table.php:126
|
705 |
+
msgid "IP Address"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: includes/admin/class-dlm-logging-list-table.php:142
|
709 |
+
msgid "Any status"
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: includes/admin/class-dlm-logging-list-table.php:143
|
713 |
+
msgid "Failed"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: includes/admin/class-dlm-logging-list-table.php:144
|
717 |
+
msgid "Redirected"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: includes/admin/class-dlm-logging-list-table.php:145
|
721 |
+
msgid "Completed"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: includes/admin/class-dlm-logging-list-table.php:164
|
725 |
+
msgid "Show all dates"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: includes/admin/class-dlm-logging-list-table.php:177
|
729 |
+
msgid "%1$s %2$d"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: includes/admin/class-dlm-logging-list-table.php:185
|
733 |
+
msgid "25 per page"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/admin/class-dlm-logging-list-table.php:186
|
737 |
+
msgid "50 per page"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/admin/class-dlm-logging-list-table.php:187
|
741 |
+
msgid "100 per page"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: includes/admin/class-dlm-logging-list-table.php:188
|
745 |
+
msgid "200 per page"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: includes/admin/class-dlm-logging-list-table.php:189
|
749 |
+
msgid "Show All"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: includes/admin/class-dlm-logging-list-table.php:193
|
753 |
+
msgid "Filter"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: includes/admin/html-downloadable-file-version.php:3
|
757 |
+
msgid "Remove"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: includes/admin/html-downloadable-file-version.php:4
|
761 |
+
msgid "Click to toggle"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
765 |
+
msgid "Version <span class=\"version\">%s</span> (%s)"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
769 |
+
#: includes/admin/html-downloadable-file-version.php:17
|
770 |
+
msgid "n/a"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: includes/admin/html-downloadable-file-version.php:5
|
774 |
+
msgid "Downloaded %s time"
|
775 |
+
msgid_plural "Downloaded %s times"
|
776 |
+
msgstr[0] ""
|
777 |
+
msgstr[1] ""
|
778 |
+
|
779 |
+
#: includes/admin/html-downloadable-file-version.php:21
|
780 |
+
msgid "File URL(s)"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: includes/admin/html-downloadable-file-version.php:22
|
784 |
+
msgid ""
|
785 |
+
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
786 |
+
"(chosen at random)."
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: includes/admin/html-downloadable-file-version.php:27
|
790 |
+
msgid "Upload file"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/admin/html-downloadable-file-version.php:29
|
794 |
+
msgid "Choose a file"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: includes/admin/html-downloadable-file-version.php:30
|
798 |
+
msgid "Insert file URL"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: includes/admin/html-downloadable-file-version.php:34
|
802 |
+
msgid "Browse for file"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: includes/admin/html-downloadable-file-version.php:58
|
806 |
+
msgid "File Date"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
810 |
+
msgid "h"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: includes/admin/html-downloadable-file-version.php:59
|
814 |
+
msgid "m"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/class-dlm-download-handler.php:140
|
818 |
+
msgid "Password Required"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/class-dlm-download-handler.php:150
|
822 |
+
msgid "Download does not exist."
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: includes/class-dlm-download-handler.php:150
|
826 |
+
#: includes/class-dlm-download-handler.php:180
|
827 |
+
#: includes/class-dlm-download-handler.php:185
|
828 |
+
#: includes/class-dlm-download-handler.php:194
|
829 |
+
#: includes/class-dlm-download-handler.php:288
|
830 |
+
msgid "Go to homepage →"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: includes/class-dlm-download-handler.php:150
|
834 |
+
#: includes/class-dlm-download-handler.php:180
|
835 |
+
#: includes/class-dlm-download-handler.php:185
|
836 |
+
#: includes/class-dlm-download-handler.php:194
|
837 |
+
#: includes/class-dlm-download-handler.php:288
|
838 |
+
msgid "Download Error"
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
#: includes/class-dlm-download-handler.php:180
|
842 |
+
#: includes/class-dlm-download-handler.php:185
|
843 |
+
msgid "No file paths defined."
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: includes/class-dlm-download-handler.php:194
|
847 |
+
msgid "You do not have permission to access this download."
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: includes/class-dlm-download-handler.php:212
|
851 |
+
#: includes/class-dlm-download-handler.php:228
|
852 |
+
#: includes/class-dlm-download-handler.php:235
|
853 |
+
#: includes/class-dlm-download-handler.php:242
|
854 |
+
msgid "Redirected to file"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: includes/class-dlm-download-handler.php:281
|
858 |
+
msgid "Redirected to remote file."
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: includes/class-dlm-download-handler.php:286
|
862 |
+
msgid "File not found"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: includes/class-dlm-download-handler.php:288
|
866 |
+
msgid "File not found."
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: includes/class-dlm-shortcodes.php:93 includes/class-dlm-shortcodes.php:125
|
870 |
+
msgid "Download not found"
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: includes/widgets/class-dlm-widget-downloads.php:27
|
874 |
+
msgid "Display a list of your downloads."
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: includes/widgets/class-dlm-widget-downloads.php:29
|
878 |
+
msgid "Downloads List"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: includes/widgets/class-dlm-widget-downloads.php:52
|
882 |
+
#: includes/widgets/class-dlm-widget-downloads.php:148
|
883 |
+
msgid "Featured Downloads"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: includes/widgets/class-dlm-widget-downloads.php:157
|
887 |
+
msgid "Title:"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: includes/widgets/class-dlm-widget-downloads.php:161
|
891 |
+
msgid "Limit:"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: includes/widgets/class-dlm-widget-downloads.php:165
|
895 |
+
msgid "Output template:"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: includes/widgets/class-dlm-widget-downloads.php:166
|
899 |
+
msgid "Default template"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: includes/widgets/class-dlm-widget-downloads.php:169
|
903 |
+
msgid "Order by:"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: includes/widgets/class-dlm-widget-downloads.php:172
|
907 |
+
msgid "Random"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: includes/widgets/class-dlm-widget-downloads.php:174
|
911 |
+
msgid "Date added"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: includes/widgets/class-dlm-widget-downloads.php:175
|
915 |
+
msgid "Date modified"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: includes/widgets/class-dlm-widget-downloads.php:180
|
919 |
+
msgid "Order:"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: includes/widgets/class-dlm-widget-downloads.php:182
|
923 |
+
msgid "ASC"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: includes/widgets/class-dlm-widget-downloads.php:183
|
927 |
+
msgid "DESC"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: includes/widgets/class-dlm-widget-downloads.php:188
|
931 |
+
msgid "Show only featured downloads"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/widgets/class-dlm-widget-downloads.php:192
|
935 |
+
msgid "Show only members only downloads"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: templates/content-download-box.php:12
|
939 |
+
#: templates/content-download-filename.php:9 templates/content-download.php:9
|
940 |
+
msgid "1 download"
|
941 |
+
msgid_plural "%d downloads"
|
942 |
+
msgstr[0] ""
|
943 |
+
msgstr[1] ""
|
944 |
+
|
945 |
+
#: templates/content-download-box.php:20
|
946 |
+
#: templates/content-download-filename.php:8
|
947 |
+
#: templates/content-download-title.php:8 templates/content-download.php:8
|
948 |
+
msgid "Version %s"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: templates/content-download-box.php:21
|
952 |
+
msgid "Download File"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: templates/content-download-button.php:9
|
956 |
+
msgid "Download “%s”"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: templates/content-download-button.php:10
|
960 |
+
#: templates/content-download-version-list.php:17
|
961 |
+
msgid "Downloaded 1 time"
|
962 |
+
msgid_plural "Downloaded %d times"
|
963 |
+
msgstr[0] ""
|
964 |
+
msgstr[1] ""
|
965 |
+
|
966 |
+
#. Plugin Name of the plugin/theme
|
967 |
+
msgid "Download Monitor"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#. Plugin URI of the plugin/theme
|
971 |
+
msgid "http://mikejolley.com/projects/download-monitor/"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#. Description of the plugin/theme
|
975 |
+
msgid ""
|
976 |
+
"A full solution for managing downloadable files, monitoring downloads and "
|
977 |
+
"outputting download links and file information on your WordPress powered "
|
978 |
+
"site."
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
#. Author of the plugin/theme
|
982 |
+
msgid "Mike Jolley"
|
983 |
+
msgstr ""
|
984 |
+
|
985 |
+
#. Author URI of the plugin/theme
|
986 |
+
msgid "http://mikejolley.com"
|
987 |
+
msgstr ""
|
languages/download_monitor-de_DE.mo
DELETED
Binary file
|
languages/download_monitor-es_ES.mo
DELETED
Binary file
|
languages/download_monitor-es_ES.po
DELETED
@@ -1,1001 +0,0 @@
|
|
1 |
-
# Copyright (C) 2013 Download Monitor
|
2 |
-
# This file is distributed under the same license as the Download Monitor package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: Download Monitor 1.3.0\n"
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
7 |
-
"POT-Creation-Date: 2013-11-22 16:47+0100\n"
|
8 |
-
"PO-Revision-Date: 2013-11-22 17:01+0100\n"
|
9 |
-
"Last-Translator: Víctor González Fraile <victor.gonfraile@hotmail.es>\n"
|
10 |
-
"Language-Team: \n"
|
11 |
-
"Language: es_ES\n"
|
12 |
-
"MIME-Version: 1.0\n"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Generator: Poedit 1.5.7\n"
|
16 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
18 |
-
"X-Poedit-Basepath: .\n"
|
19 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
-
"X-Poedit-SearchPath-0: download-monitor\n"
|
21 |
-
|
22 |
-
#: download-monitor/download-monitor.php:91
|
23 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:249
|
24 |
-
msgid "Settings"
|
25 |
-
msgstr "Ajustes"
|
26 |
-
|
27 |
-
#: download-monitor/download-monitor.php:92
|
28 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:252
|
29 |
-
msgid "Add-ons"
|
30 |
-
msgstr "Complementos"
|
31 |
-
|
32 |
-
#: download-monitor/download-monitor.php:93
|
33 |
-
msgid "Docs"
|
34 |
-
msgstr "Documentación"
|
35 |
-
|
36 |
-
#: download-monitor/download-monitor.php:240
|
37 |
-
#: download-monitor/download-monitor.php:242
|
38 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:174
|
39 |
-
msgid "Categories"
|
40 |
-
msgstr "Categorías"
|
41 |
-
|
42 |
-
#: download-monitor/download-monitor.php:243
|
43 |
-
msgid "Download Category"
|
44 |
-
msgstr "Categoría de descarga"
|
45 |
-
|
46 |
-
#: download-monitor/download-monitor.php:244
|
47 |
-
msgid "Search Download Categories"
|
48 |
-
msgstr "Buscar categorías de descarga"
|
49 |
-
|
50 |
-
#: download-monitor/download-monitor.php:245
|
51 |
-
msgid "All Download Categories"
|
52 |
-
msgstr "Todas las categorías de descarga"
|
53 |
-
|
54 |
-
#: download-monitor/download-monitor.php:246
|
55 |
-
msgid "Parent Download Category"
|
56 |
-
msgstr "Categoría de descarga superior"
|
57 |
-
|
58 |
-
#: download-monitor/download-monitor.php:247
|
59 |
-
msgid "Parent Download Category:"
|
60 |
-
msgstr "Categoría de descarga superior:"
|
61 |
-
|
62 |
-
#: download-monitor/download-monitor.php:248
|
63 |
-
msgid "Edit Download Category"
|
64 |
-
msgstr "Editar categoría de descarga"
|
65 |
-
|
66 |
-
#: download-monitor/download-monitor.php:249
|
67 |
-
msgid "Update Download Category"
|
68 |
-
msgstr "Actualizar categoría de descarga"
|
69 |
-
|
70 |
-
#: download-monitor/download-monitor.php:250
|
71 |
-
msgid "Add New Download Category"
|
72 |
-
msgstr "Añadir una categoría de descarga nueva"
|
73 |
-
|
74 |
-
#: download-monitor/download-monitor.php:251
|
75 |
-
msgid "New Download Category Name"
|
76 |
-
msgstr "Nombre de la nueva categoría de descarga"
|
77 |
-
|
78 |
-
#: download-monitor/download-monitor.php:270
|
79 |
-
#: download-monitor/download-monitor.php:272
|
80 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:175
|
81 |
-
msgid "Tags"
|
82 |
-
msgstr "Etiquetas"
|
83 |
-
|
84 |
-
#: download-monitor/download-monitor.php:273
|
85 |
-
msgid "Download Tag"
|
86 |
-
msgstr "Etiqueta de descarga"
|
87 |
-
|
88 |
-
#: download-monitor/download-monitor.php:274
|
89 |
-
msgid "Search Download Tags"
|
90 |
-
msgstr "Buscar etiquetas de descarga"
|
91 |
-
|
92 |
-
#: download-monitor/download-monitor.php:275
|
93 |
-
msgid "All Download Tags"
|
94 |
-
msgstr "Todas las etiquetas de descarga"
|
95 |
-
|
96 |
-
#: download-monitor/download-monitor.php:276
|
97 |
-
msgid "Parent Download Tag"
|
98 |
-
msgstr "Etiqueta de descarga superior"
|
99 |
-
|
100 |
-
#: download-monitor/download-monitor.php:277
|
101 |
-
msgid "Parent Download Tag:"
|
102 |
-
msgstr "Etiqueta de descarga superior:"
|
103 |
-
|
104 |
-
#: download-monitor/download-monitor.php:278
|
105 |
-
msgid "Edit Download Tag"
|
106 |
-
msgstr "Editar etiqueta de descarga"
|
107 |
-
|
108 |
-
#: download-monitor/download-monitor.php:279
|
109 |
-
msgid "Update Download Tag"
|
110 |
-
msgstr "Actualizar etiqueta de descarga"
|
111 |
-
|
112 |
-
#: download-monitor/download-monitor.php:280
|
113 |
-
msgid "Add New Download Tag"
|
114 |
-
msgstr "Añadir una etiqueta de descarga nueva"
|
115 |
-
|
116 |
-
#: download-monitor/download-monitor.php:281
|
117 |
-
msgid "New Download Tag Name"
|
118 |
-
msgstr "Nombre de la nueva etiqueta de descarga"
|
119 |
-
|
120 |
-
#: download-monitor/download-monitor.php:302
|
121 |
-
msgid "All Downloads"
|
122 |
-
msgstr "Todas las descargas"
|
123 |
-
|
124 |
-
#: download-monitor/download-monitor.php:303
|
125 |
-
msgid "Downloads"
|
126 |
-
msgstr "Descargas"
|
127 |
-
|
128 |
-
#: download-monitor/download-monitor.php:304
|
129 |
-
#: download-monitor/includes/admin/class-dlm-admin-dashboard.php:69
|
130 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:123
|
131 |
-
msgid "Download"
|
132 |
-
msgstr "Descarga"
|
133 |
-
|
134 |
-
#: download-monitor/download-monitor.php:305
|
135 |
-
msgid "Add New"
|
136 |
-
msgstr "Añadir nueva"
|
137 |
-
|
138 |
-
#: download-monitor/download-monitor.php:306
|
139 |
-
msgid "Add Download"
|
140 |
-
msgstr "Añadir descarga"
|
141 |
-
|
142 |
-
#: download-monitor/download-monitor.php:307
|
143 |
-
msgid "Edit"
|
144 |
-
msgstr "Editar"
|
145 |
-
|
146 |
-
#: download-monitor/download-monitor.php:308
|
147 |
-
msgid "Edit Download"
|
148 |
-
msgstr "Editar descarga"
|
149 |
-
|
150 |
-
#: download-monitor/download-monitor.php:309
|
151 |
-
msgid "New Download"
|
152 |
-
msgstr "Descarga nueva"
|
153 |
-
|
154 |
-
#: download-monitor/download-monitor.php:310
|
155 |
-
#: download-monitor/download-monitor.php:311
|
156 |
-
msgid "View Download"
|
157 |
-
msgstr "Ver descarga"
|
158 |
-
|
159 |
-
#: download-monitor/download-monitor.php:312
|
160 |
-
msgid "Search Downloads"
|
161 |
-
msgstr "Buscar descargas"
|
162 |
-
|
163 |
-
#: download-monitor/download-monitor.php:313
|
164 |
-
msgid "No Downloads found"
|
165 |
-
msgstr "No se han encontrado descargas"
|
166 |
-
|
167 |
-
#: download-monitor/download-monitor.php:314
|
168 |
-
msgid "No Downloads found in trash"
|
169 |
-
msgstr "No se han encontrado descargas en la papelera"
|
170 |
-
|
171 |
-
#: download-monitor/download-monitor.php:315
|
172 |
-
msgid "Parent Download"
|
173 |
-
msgstr "Descarga superior"
|
174 |
-
|
175 |
-
#: download-monitor/download-monitor.php:317
|
176 |
-
msgid "This is where you can create and manage downloads for your site."
|
177 |
-
msgstr "Aquí puedes crear y gestionar las descargas de tu página web."
|
178 |
-
|
179 |
-
#: download-monitor/includes/class-dlm-download-handler.php:124
|
180 |
-
msgid "Download does not exist."
|
181 |
-
msgstr "La descarga no existe."
|
182 |
-
|
183 |
-
#: download-monitor/includes/class-dlm-download-handler.php:124
|
184 |
-
#: download-monitor/includes/class-dlm-download-handler.php:144
|
185 |
-
#: download-monitor/includes/class-dlm-download-handler.php:149
|
186 |
-
#: download-monitor/includes/class-dlm-download-handler.php:158
|
187 |
-
#: download-monitor/includes/class-dlm-download-handler.php:343
|
188 |
-
msgid "Go to homepage →"
|
189 |
-
msgstr "Ir a la página web →"
|
190 |
-
|
191 |
-
#: download-monitor/includes/class-dlm-download-handler.php:124
|
192 |
-
#: download-monitor/includes/class-dlm-download-handler.php:144
|
193 |
-
#: download-monitor/includes/class-dlm-download-handler.php:149
|
194 |
-
#: download-monitor/includes/class-dlm-download-handler.php:158
|
195 |
-
#: download-monitor/includes/class-dlm-download-handler.php:343
|
196 |
-
msgid "Download Error"
|
197 |
-
msgstr "Error en la descarga"
|
198 |
-
|
199 |
-
#: download-monitor/includes/class-dlm-download-handler.php:144
|
200 |
-
#: download-monitor/includes/class-dlm-download-handler.php:149
|
201 |
-
msgid "No file paths defined."
|
202 |
-
msgstr "No hay una dirección de archivo definida."
|
203 |
-
|
204 |
-
#: download-monitor/includes/class-dlm-download-handler.php:158
|
205 |
-
msgid "You do not have permission to access this download."
|
206 |
-
msgstr "No tienes permisos para acceder a esta descarga."
|
207 |
-
|
208 |
-
#: download-monitor/includes/class-dlm-download-handler.php:182
|
209 |
-
#: download-monitor/includes/class-dlm-download-handler.php:280
|
210 |
-
#: download-monitor/includes/class-dlm-download-handler.php:288
|
211 |
-
#: download-monitor/includes/class-dlm-download-handler.php:296
|
212 |
-
msgid "Redirected to file"
|
213 |
-
msgstr "Redirigido al archivo"
|
214 |
-
|
215 |
-
#: download-monitor/includes/class-dlm-download-handler.php:335
|
216 |
-
msgid "Redirected to remote file."
|
217 |
-
msgstr "Redirigido al archivo remoto."
|
218 |
-
|
219 |
-
#: download-monitor/includes/class-dlm-download-handler.php:341
|
220 |
-
msgid "File not found"
|
221 |
-
msgstr "Archivo no encontrado"
|
222 |
-
|
223 |
-
#: download-monitor/includes/class-dlm-download-handler.php:343
|
224 |
-
msgid "File not found."
|
225 |
-
msgstr "Archivo no encontrado."
|
226 |
-
|
227 |
-
#: download-monitor/includes/class-dlm-shortcodes.php:93
|
228 |
-
#: download-monitor/includes/class-dlm-shortcodes.php:125
|
229 |
-
msgid "Download not found"
|
230 |
-
msgstr "Descarga no encontrada"
|
231 |
-
|
232 |
-
#: download-monitor/includes/admin/class-dlm-addons.php:50
|
233 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:252
|
234 |
-
msgid "Download Monitor Add-ons"
|
235 |
-
msgstr "Complementos de Download Monitor"
|
236 |
-
|
237 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:64
|
238 |
-
msgid "Select a category"
|
239 |
-
msgstr "Selecciona una categoría"
|
240 |
-
|
241 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:124
|
242 |
-
msgid "Download title"
|
243 |
-
msgstr "Título de la descarga"
|
244 |
-
|
245 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:140
|
246 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:143
|
247 |
-
msgid "Download updated."
|
248 |
-
msgstr "Descarga actualizada."
|
249 |
-
|
250 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:141
|
251 |
-
msgid "Custom field updated."
|
252 |
-
msgstr "Apartado personalizado actualizado."
|
253 |
-
|
254 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:142
|
255 |
-
msgid "Custom field deleted."
|
256 |
-
msgstr "Apartado personalizado eliminado."
|
257 |
-
|
258 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:144
|
259 |
-
#, php-format
|
260 |
-
msgid "Download restored to revision from %s"
|
261 |
-
msgstr "Descarga recuperada desde la revisión %s"
|
262 |
-
|
263 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:145
|
264 |
-
msgid "Download published."
|
265 |
-
msgstr "Descarga publicada."
|
266 |
-
|
267 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:146
|
268 |
-
msgid "Download saved."
|
269 |
-
msgstr "Descarga guardada."
|
270 |
-
|
271 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:147
|
272 |
-
msgid "Download submitted."
|
273 |
-
msgstr "Descarga enviada."
|
274 |
-
|
275 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:148
|
276 |
-
#, php-format
|
277 |
-
msgid "Download scheduled for: <strong>%1$s</strong>."
|
278 |
-
msgstr "Descarga prevista para: <strong>%1$s</strong>."
|
279 |
-
|
280 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:149
|
281 |
-
msgid "M j, Y @ G:i"
|
282 |
-
msgstr "j \"\"d\"\"e F \"\"d\"\"e Y, G:i"
|
283 |
-
|
284 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:150
|
285 |
-
msgid "Download draft updated."
|
286 |
-
msgstr "Borrador de descarga actualizado."
|
287 |
-
|
288 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:169
|
289 |
-
msgid "Image"
|
290 |
-
msgstr "Imagen"
|
291 |
-
|
292 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:170
|
293 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:171
|
294 |
-
msgid "Title"
|
295 |
-
msgstr "Título"
|
296 |
-
|
297 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:171
|
298 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:173
|
299 |
-
msgid "ID"
|
300 |
-
msgstr "ID"
|
301 |
-
|
302 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:172
|
303 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:124
|
304 |
-
msgid "File"
|
305 |
-
msgstr "Archivo"
|
306 |
-
|
307 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:173
|
308 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:197
|
309 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:13
|
310 |
-
msgid "Version"
|
311 |
-
msgstr "Versión"
|
312 |
-
|
313 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:177
|
314 |
-
msgid "download_count"
|
315 |
-
msgstr "download_count"
|
316 |
-
|
317 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:178
|
318 |
-
msgid "Featured"
|
319 |
-
msgstr "Destacado"
|
320 |
-
|
321 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:179
|
322 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:63
|
323 |
-
msgid "Members only"
|
324 |
-
msgstr "Solo para miembros"
|
325 |
-
|
326 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:180
|
327 |
-
msgid "Redirect only"
|
328 |
-
msgstr "Solo redirigir"
|
329 |
-
|
330 |
-
#: download-monitor/includes/admin/class-dlm-admin-cpt.php:182
|
331 |
-
msgid "Date posted"
|
332 |
-
msgstr "Publicación"
|
333 |
-
|
334 |
-
#: download-monitor/includes/admin/class-dlm-admin-dashboard.php:21
|
335 |
-
msgid "Popular Downloads"
|
336 |
-
msgstr "Descargas más populares"
|
337 |
-
|
338 |
-
#: download-monitor/includes/admin/class-dlm-admin-dashboard.php:53
|
339 |
-
msgid "There are no stats available yet!"
|
340 |
-
msgstr "¡Aún no hay estadísticas disponibles!"
|
341 |
-
|
342 |
-
#: download-monitor/includes/admin/class-dlm-admin-dashboard.php:70
|
343 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:49
|
344 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:176
|
345 |
-
msgid "Download count"
|
346 |
-
msgstr "Cantidad de descargas"
|
347 |
-
|
348 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:29
|
349 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:68
|
350 |
-
msgid "Insert Download"
|
351 |
-
msgstr "Insertar descarga"
|
352 |
-
|
353 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:78
|
354 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:168
|
355 |
-
msgid "Insert Shortcode"
|
356 |
-
msgstr "Insertar código rápido"
|
357 |
-
|
358 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:78
|
359 |
-
msgid "Quick-add download"
|
360 |
-
msgstr "Añadir descarga rápidamente"
|
361 |
-
|
362 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:122
|
363 |
-
msgid "Error: File was not created."
|
364 |
-
msgstr "Error: No se ha creado el archivo."
|
365 |
-
|
366 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:129
|
367 |
-
msgid "Download successfully created."
|
368 |
-
msgstr "Descarga creada correctamente."
|
369 |
-
|
370 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:131
|
371 |
-
msgid "Error: Download was not created."
|
372 |
-
msgstr "Error: No se ha creado la descarga."
|
373 |
-
|
374 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:149
|
375 |
-
msgid "Choose a download"
|
376 |
-
msgstr "Selecciona una descarga"
|
377 |
-
|
378 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:161
|
379 |
-
msgid "Template"
|
380 |
-
msgstr "Plantilla"
|
381 |
-
|
382 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:162
|
383 |
-
msgid "Template Name"
|
384 |
-
msgstr "Nombre de la plantilla"
|
385 |
-
|
386 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:164
|
387 |
-
msgid ""
|
388 |
-
"Leaving this blank will use the default <code>content-download.php</code> "
|
389 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
390 |
-
"<code>content-download-image.php</code> template will be used instead."
|
391 |
-
msgstr ""
|
392 |
-
"Si dejas este cuadro en blanco, se utilizará el archivo de plantilla "
|
393 |
-
"predeterminado <code>content-download.php</code>. Si, por ejemplo, escribes "
|
394 |
-
"<code>image</code>, se utilizará en su lugar la plantilla <code>content-"
|
395 |
-
"download-image.php</code>."
|
396 |
-
|
397 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:179
|
398 |
-
msgid "Drop file here"
|
399 |
-
msgstr "suelta aquí el archivo"
|
400 |
-
|
401 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:180
|
402 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:182
|
403 |
-
msgid "or"
|
404 |
-
msgstr "o"
|
405 |
-
|
406 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:183
|
407 |
-
msgid "Enter URL manually"
|
408 |
-
msgstr "Introducir la dirección URL manualmente"
|
409 |
-
|
410 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:189
|
411 |
-
msgid "Download URL"
|
412 |
-
msgstr "URL de descarga"
|
413 |
-
|
414 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:190
|
415 |
-
msgid "Required URL"
|
416 |
-
msgstr "URL necesaria"
|
417 |
-
|
418 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:193
|
419 |
-
msgid "Download Title"
|
420 |
-
msgstr "Título de la descarga"
|
421 |
-
|
422 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:194
|
423 |
-
msgid "Required title"
|
424 |
-
msgstr "Título necesario"
|
425 |
-
|
426 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:198
|
427 |
-
msgid "Optional version number"
|
428 |
-
msgstr "Número de versión opcional"
|
429 |
-
|
430 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:201
|
431 |
-
msgid "Save Download"
|
432 |
-
msgstr "Guardar descarga"
|
433 |
-
|
434 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:259
|
435 |
-
msgid "Allowed Files"
|
436 |
-
msgstr "Archivos permitidos"
|
437 |
-
|
438 |
-
#: download-monitor/includes/admin/class-dlm-admin-insert.php:309
|
439 |
-
msgid "Please wait..."
|
440 |
-
msgstr "Espera, por favor..."
|
441 |
-
|
442 |
-
#: download-monitor/includes/admin/class-dlm-admin-media-browser.php:31
|
443 |
-
msgid "Browse for a file"
|
444 |
-
msgstr "Buscar un archivo"
|
445 |
-
|
446 |
-
#: download-monitor/includes/admin/class-dlm-admin-media-browser.php:100
|
447 |
-
msgid "No files found"
|
448 |
-
msgstr "No se han encontrado archivos"
|
449 |
-
|
450 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:29
|
451 |
-
msgid "Download Options"
|
452 |
-
msgstr "Opciones de descarga"
|
453 |
-
|
454 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:30
|
455 |
-
msgid "Downloadable File Versions"
|
456 |
-
msgstr "Versiones descargables del archivo"
|
457 |
-
|
458 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:35
|
459 |
-
msgid "Short Description"
|
460 |
-
msgstr "Descripción breve"
|
461 |
-
|
462 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:57
|
463 |
-
msgid "Featured download"
|
464 |
-
msgstr "Descarga destacada"
|
465 |
-
|
466 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:58
|
467 |
-
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
468 |
-
msgstr ""
|
469 |
-
"Marcar esta descarga como destacada. La utilizan los códigos rápidos y los "
|
470 |
-
"widgets."
|
471 |
-
|
472 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:64
|
473 |
-
msgid ""
|
474 |
-
"Only logged in users will be able to access the file via a download link if "
|
475 |
-
"this is enabled."
|
476 |
-
msgstr ""
|
477 |
-
"Al activar esta opción solo podrán acceder al archivo, a través de un enlace "
|
478 |
-
"de descarga, los usuarios conectados."
|
479 |
-
|
480 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:69
|
481 |
-
msgid "Redirect to file"
|
482 |
-
msgstr "Redirigir al archivo"
|
483 |
-
|
484 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:70
|
485 |
-
msgid ""
|
486 |
-
"Don't force download. If the <code>dlm_upload</code> folder is protected you "
|
487 |
-
"may need to move your file."
|
488 |
-
msgstr ""
|
489 |
-
"No forzar la descarga. Si la carpeta <code>dlm_upload</code> está protegida, "
|
490 |
-
"quizá necesites mover tu archivo."
|
491 |
-
|
492 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:94
|
493 |
-
msgid "Add version"
|
494 |
-
msgstr "Añadir versión"
|
495 |
-
|
496 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:95
|
497 |
-
msgid "Close all"
|
498 |
-
msgstr "Cerrar todo"
|
499 |
-
|
500 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:95
|
501 |
-
msgid "Expand all"
|
502 |
-
msgstr "Expandir todo"
|
503 |
-
|
504 |
-
#: download-monitor/includes/admin/class-dlm-admin-writepanels.php:220
|
505 |
-
msgid "Are you sure you want to delete this file?"
|
506 |
-
msgstr "¿Seguro que quieres eliminar este archivo?"
|
507 |
-
|
508 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:95
|
509 |
-
msgid "General"
|
510 |
-
msgstr "General"
|
511 |
-
|
512 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:100
|
513 |
-
msgid "Default Template"
|
514 |
-
msgstr "Plantilla predeterminada"
|
515 |
-
|
516 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:101
|
517 |
-
msgid ""
|
518 |
-
"Choose which template is used for <code>[download]</code> shortcodes by "
|
519 |
-
"default (this can be overridden by the <code>format</code> argument)."
|
520 |
-
msgstr ""
|
521 |
-
"Selecciona que plantilla utilizarán los códigos rápidos <code>[download]</"
|
522 |
-
"code> de forma predeterminada (puede anularse con la cadena <code>format</"
|
523 |
-
"code>)."
|
524 |
-
|
525 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:104
|
526 |
-
msgid "Default - Title and count"
|
527 |
-
msgstr "Predeterminado: Título y cantidad de descargas"
|
528 |
-
|
529 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:105
|
530 |
-
msgid "Button - CSS styled button showing title and count"
|
531 |
-
msgstr ""
|
532 |
-
"Botón: Botón con estilo CSS que muestra el título y la cantidad de descargas."
|
533 |
-
|
534 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:106
|
535 |
-
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
536 |
-
msgstr ""
|
537 |
-
"Caja: Caja que muestra una miniatura, el título, la cantidad de descargas, "
|
538 |
-
"el nombre del archivo y su tamaño."
|
539 |
-
|
540 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:107
|
541 |
-
msgid "Filename - Filename and download count"
|
542 |
-
msgstr "Nombre de archivo: Nombre de archivo y cantidad de descargas."
|
543 |
-
|
544 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:108
|
545 |
-
msgid "Title - Shows download title only"
|
546 |
-
msgstr "Título: Solo muestra el título de la descarga."
|
547 |
-
|
548 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:109
|
549 |
-
msgid "Version list - Lists all download versions in an unordered list"
|
550 |
-
msgstr ""
|
551 |
-
"Lista de versiones: Muestra todas las versiones de descarga en una lista sin "
|
552 |
-
"ordenar."
|
553 |
-
|
554 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:110
|
555 |
-
msgid "Custom template"
|
556 |
-
msgstr "Plantilla personalizada"
|
557 |
-
|
558 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:116
|
559 |
-
msgid "Custom Template"
|
560 |
-
msgstr "Plantilla personalizada"
|
561 |
-
|
562 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:117
|
563 |
-
msgid ""
|
564 |
-
"Leaving this blank will use the default <code>content-download.php</code> "
|
565 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
566 |
-
"<code>content-download-image.php</code> template will be used instead. You "
|
567 |
-
"can add custom templates inside your theme folder."
|
568 |
-
msgstr ""
|
569 |
-
"Si dejas este cuadro en blanco, se utilizará el archivo de plantilla "
|
570 |
-
"predeterminado <code>content-download.php</code>. Si, por ejemplo, escribes "
|
571 |
-
"<code>image</code>, se utilizará en su lugar la plantilla <code>content-"
|
572 |
-
"download-image.php</code>. Puedes añadir plantillas personalizadas dentro de "
|
573 |
-
"la carpeta de tu aspecto."
|
574 |
-
|
575 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:122
|
576 |
-
msgid "Endpoint"
|
577 |
-
msgstr "Término"
|
578 |
-
|
579 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:127
|
580 |
-
msgid "download"
|
581 |
-
msgstr "descarga"
|
582 |
-
|
583 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:128
|
584 |
-
msgid "Download Endpoint"
|
585 |
-
msgstr "Término de la descarga"
|
586 |
-
|
587 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:129
|
588 |
-
#, php-format
|
589 |
-
msgid ""
|
590 |
-
"Define what endpoint should be used for download links. By default this will "
|
591 |
-
"be <code>%s</code>."
|
592 |
-
msgstr ""
|
593 |
-
"Define qué término se utilizará para los enlaces de descarga. Por defecto se "
|
594 |
-
"utilizará <code>%s</code>."
|
595 |
-
|
596 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:134
|
597 |
-
msgid "Endpoint Value"
|
598 |
-
msgstr "Valor del término"
|
599 |
-
|
600 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:135
|
601 |
-
#, php-format
|
602 |
-
msgid ""
|
603 |
-
"Define what unique value should be used on the end of your endpoint to "
|
604 |
-
"identify the downloadable file. e.g. ID would give a link like <code>%s</"
|
605 |
-
"code>"
|
606 |
-
msgstr ""
|
607 |
-
"Define qué valor único debería utilizarse al final de tu término para "
|
608 |
-
"identificar el archivo descargable. Por ejemplo, una ID mostraría un enlace "
|
609 |
-
"similar a <code>%s</code>."
|
610 |
-
|
611 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:138
|
612 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:452
|
613 |
-
msgid "Download ID"
|
614 |
-
msgstr "ID de descarga"
|
615 |
-
|
616 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:139
|
617 |
-
msgid "Download slug"
|
618 |
-
msgstr "Slug de descarga"
|
619 |
-
|
620 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:145
|
621 |
-
msgid "X-Accel-Redirect / X-Sendfile"
|
622 |
-
msgstr "X-Accel-Redirect / X-Sendfile"
|
623 |
-
|
624 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:146
|
625 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:157
|
626 |
-
msgid "Enable"
|
627 |
-
msgstr "Activar"
|
628 |
-
|
629 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:147
|
630 |
-
msgid ""
|
631 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be "
|
632 |
-
"used to serve downloads instead of PHP (server requires <code>mod_xsendfile</"
|
633 |
-
"code>)."
|
634 |
-
msgstr ""
|
635 |
-
"Si está admitido, se pueden utlizar <code>X-Accel-Redirect</code> / <code>X-"
|
636 |
-
"Sendfile</code> para servir las descargas en vez de PHP (el servidor "
|
637 |
-
"necesita <code>mod_xsendfile</code>)."
|
638 |
-
|
639 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:153
|
640 |
-
msgid "Logging"
|
641 |
-
msgstr "Registros"
|
642 |
-
|
643 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:159
|
644 |
-
msgid "Download Log"
|
645 |
-
msgstr "Registro de descargas"
|
646 |
-
|
647 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:160
|
648 |
-
msgid "Log download attempts, IP addresses and more."
|
649 |
-
msgstr "Registrar los intentos de descargas, las direcciones IP y más."
|
650 |
-
|
651 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:166
|
652 |
-
msgid "Blacklist IPs"
|
653 |
-
msgstr "IPs en lista negra"
|
654 |
-
|
655 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:167
|
656 |
-
msgid ""
|
657 |
-
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
658 |
-
"wildcard."
|
659 |
-
msgstr ""
|
660 |
-
"Indica las direcciones IP que están en la lista negra, a 1 IP por línea. Se "
|
661 |
-
"puede utilizar el comodín <code>*</code>."
|
662 |
-
|
663 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:174
|
664 |
-
msgid "Blacklist user agents"
|
665 |
-
msgstr "Agentes de usuario en lista negra"
|
666 |
-
|
667 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:175
|
668 |
-
msgid "List browser user agents to blacklist, 1 per line."
|
669 |
-
msgstr ""
|
670 |
-
"Indica los agentes de usuario de navegadores que están en la lista negra, a "
|
671 |
-
"1 por línea."
|
672 |
-
|
673 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:247
|
674 |
-
msgid "Logs"
|
675 |
-
msgstr "Registros"
|
676 |
-
|
677 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:291
|
678 |
-
msgid "Settings successfully saved"
|
679 |
-
msgstr "Los ajustes se han guardado correctamente"
|
680 |
-
|
681 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:358
|
682 |
-
msgid "Save Changes"
|
683 |
-
msgstr "Guardar cambios"
|
684 |
-
|
685 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:402
|
686 |
-
msgid "Download Logs"
|
687 |
-
msgstr "Registros de descarga"
|
688 |
-
|
689 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:402
|
690 |
-
msgid "Export CSV"
|
691 |
-
msgstr "Exportar CSV"
|
692 |
-
|
693 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:402
|
694 |
-
msgid "Delete Logs"
|
695 |
-
msgstr "Registros de eliminación"
|
696 |
-
|
697 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:453
|
698 |
-
msgid "Version ID"
|
699 |
-
msgstr "ID de la versión"
|
700 |
-
|
701 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:454
|
702 |
-
msgid "Filename"
|
703 |
-
msgstr "Nombre del archivo"
|
704 |
-
|
705 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:455
|
706 |
-
msgid "User ID"
|
707 |
-
msgstr "ID del usuario"
|
708 |
-
|
709 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:456
|
710 |
-
msgid "User Login"
|
711 |
-
msgstr "Nombre del usuario"
|
712 |
-
|
713 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:457
|
714 |
-
msgid "User Email"
|
715 |
-
msgstr "Email del usuario"
|
716 |
-
|
717 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:458
|
718 |
-
msgid "User IP"
|
719 |
-
msgstr "IP del usuario"
|
720 |
-
|
721 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:459
|
722 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:127
|
723 |
-
msgid "User Agent"
|
724 |
-
msgstr "Agente del usuario"
|
725 |
-
|
726 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:460
|
727 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:128
|
728 |
-
msgid "Date"
|
729 |
-
msgstr "Fecha"
|
730 |
-
|
731 |
-
#: download-monitor/includes/admin/class-dlm-admin.php:461
|
732 |
-
msgid "Status"
|
733 |
-
msgstr "Estado"
|
734 |
-
|
735 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:50
|
736 |
-
msgid "Download Complete"
|
737 |
-
msgstr "Descarga completada"
|
738 |
-
|
739 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:57
|
740 |
-
#, php-format
|
741 |
-
msgid "%s ago"
|
742 |
-
msgstr "Hace %s"
|
743 |
-
|
744 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:64
|
745 |
-
#, php-format
|
746 |
-
msgid "Download #%d (no longer exists)"
|
747 |
-
msgstr "Descarga #%d (ya no existe)"
|
748 |
-
|
749 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:72
|
750 |
-
#, php-format
|
751 |
-
msgid "v%s"
|
752 |
-
msgstr "v%s"
|
753 |
-
|
754 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:92
|
755 |
-
msgid "Non-member"
|
756 |
-
msgstr "Externo"
|
757 |
-
|
758 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:125
|
759 |
-
msgid "User"
|
760 |
-
msgstr "Usuario"
|
761 |
-
|
762 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:126
|
763 |
-
msgid "IP Address"
|
764 |
-
msgstr "Dirección IP"
|
765 |
-
|
766 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:142
|
767 |
-
msgid "Any status"
|
768 |
-
msgstr "Cualquier estado"
|
769 |
-
|
770 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:143
|
771 |
-
msgid "Failed"
|
772 |
-
msgstr "Fallido"
|
773 |
-
|
774 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:144
|
775 |
-
msgid "Redirected"
|
776 |
-
msgstr "Redirigido"
|
777 |
-
|
778 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:145
|
779 |
-
msgid "Completed"
|
780 |
-
msgstr "Completada"
|
781 |
-
|
782 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:164
|
783 |
-
msgid "Show all dates"
|
784 |
-
msgstr "Mostrar todas las fechas"
|
785 |
-
|
786 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:177
|
787 |
-
#, php-format
|
788 |
-
msgid "%1$s %2$d"
|
789 |
-
msgstr "%1$s %2$d"
|
790 |
-
|
791 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:185
|
792 |
-
msgid "25 per page"
|
793 |
-
msgstr "25 por página"
|
794 |
-
|
795 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:186
|
796 |
-
msgid "50 per page"
|
797 |
-
msgstr "50 por página"
|
798 |
-
|
799 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:187
|
800 |
-
msgid "100 per page"
|
801 |
-
msgstr "100 por página"
|
802 |
-
|
803 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:188
|
804 |
-
msgid "200 per page"
|
805 |
-
msgstr "200 por página"
|
806 |
-
|
807 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:189
|
808 |
-
msgid "Show All"
|
809 |
-
msgstr "Mostrar todo"
|
810 |
-
|
811 |
-
#: download-monitor/includes/admin/class-dlm-logging-list-table.php:193
|
812 |
-
msgid "Filter"
|
813 |
-
msgstr "Filtro"
|
814 |
-
|
815 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:3
|
816 |
-
msgid "Remove"
|
817 |
-
msgstr "Eliminar"
|
818 |
-
|
819 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:4
|
820 |
-
msgid "Click to toggle"
|
821 |
-
msgstr "Pulsa para alternar"
|
822 |
-
|
823 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:5
|
824 |
-
#, php-format
|
825 |
-
msgid "Version <span class=\"version\">%s</span> (%s)"
|
826 |
-
msgstr "Versión <span class=\"version\">%s</span> (%s)"
|
827 |
-
|
828 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:5
|
829 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:14
|
830 |
-
msgid "n/a"
|
831 |
-
msgstr "No disponible"
|
832 |
-
|
833 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:5
|
834 |
-
#, php-format
|
835 |
-
msgid "Downloaded %s time"
|
836 |
-
msgid_plural "Downloaded %s times"
|
837 |
-
msgstr[0] "Descargado %s vez"
|
838 |
-
msgstr[1] "Descargado %s veces"
|
839 |
-
|
840 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:18
|
841 |
-
msgid "File URL(s)"
|
842 |
-
msgstr "Dirección(es) URL del archivo"
|
843 |
-
|
844 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:19
|
845 |
-
msgid ""
|
846 |
-
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
847 |
-
"(chosen at random)."
|
848 |
-
msgstr ""
|
849 |
-
"Introduce una dirección a archivo/dirección URL por línea; si hay varios "
|
850 |
-
"archivos se utilizarán como descargas alternativas (elegidas al azar)."
|
851 |
-
|
852 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:24
|
853 |
-
msgid "Upload file"
|
854 |
-
msgstr "Subir archivo"
|
855 |
-
|
856 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:26
|
857 |
-
msgid "Choose a file"
|
858 |
-
msgstr "Selecciona un archivo"
|
859 |
-
|
860 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:27
|
861 |
-
msgid "Insert file URL"
|
862 |
-
msgstr "Introduce la dirección URL del archivo"
|
863 |
-
|
864 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:31
|
865 |
-
msgid "Browse for file"
|
866 |
-
msgstr "Buscar archivo"
|
867 |
-
|
868 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:55
|
869 |
-
msgid "File Date"
|
870 |
-
msgstr "Fecha del archivo"
|
871 |
-
|
872 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:56
|
873 |
-
msgid "h"
|
874 |
-
msgstr "h"
|
875 |
-
|
876 |
-
#: download-monitor/includes/admin/html-downloadable-file-version.php:56
|
877 |
-
msgid "m"
|
878 |
-
msgstr "m"
|
879 |
-
|
880 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:27
|
881 |
-
msgid "Display a list of your downloads."
|
882 |
-
msgstr "Muestra una lista de tus descargas."
|
883 |
-
|
884 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:29
|
885 |
-
msgid "Downloads List"
|
886 |
-
msgstr "Lista de descargas"
|
887 |
-
|
888 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:52
|
889 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:148
|
890 |
-
msgid "Featured Downloads"
|
891 |
-
msgstr "Descargas destacadas"
|
892 |
-
|
893 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:157
|
894 |
-
msgid "Title:"
|
895 |
-
msgstr "Título:"
|
896 |
-
|
897 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:161
|
898 |
-
msgid "Limit:"
|
899 |
-
msgstr "Límite:"
|
900 |
-
|
901 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:165
|
902 |
-
msgid "Output template:"
|
903 |
-
msgstr "Plantilla de salida:"
|
904 |
-
|
905 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:166
|
906 |
-
msgid "Default template"
|
907 |
-
msgstr "Plantilla predeterminada"
|
908 |
-
|
909 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:169
|
910 |
-
msgid "Order by:"
|
911 |
-
msgstr "Ordenar por:"
|
912 |
-
|
913 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:172
|
914 |
-
msgid "Random"
|
915 |
-
msgstr "Al azar"
|
916 |
-
|
917 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:174
|
918 |
-
msgid "Date added"
|
919 |
-
msgstr "Fecha de creación"
|
920 |
-
|
921 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:175
|
922 |
-
msgid "Date modified"
|
923 |
-
msgstr "Fecha de modificación"
|
924 |
-
|
925 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:180
|
926 |
-
msgid "Order:"
|
927 |
-
msgstr "Orden:"
|
928 |
-
|
929 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:182
|
930 |
-
msgid "ASC"
|
931 |
-
msgstr "ASCENDENTE"
|
932 |
-
|
933 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:183
|
934 |
-
msgid "DESC"
|
935 |
-
msgstr "DESCENDENTE"
|
936 |
-
|
937 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:188
|
938 |
-
msgid "Show only featured downloads"
|
939 |
-
msgstr "Solo mostrar las descargas destacadas"
|
940 |
-
|
941 |
-
#: download-monitor/includes/widgets/class-dlm-widget-downloads.php:192
|
942 |
-
msgid "Show only members only downloads"
|
943 |
-
msgstr "Solo mostrar las descargas a los miembros"
|
944 |
-
|
945 |
-
#: download-monitor/templates/content-download-box.php:12
|
946 |
-
#: download-monitor/templates/content-download-filename.php:9
|
947 |
-
#: download-monitor/templates/content-download.php:9
|
948 |
-
#, php-format
|
949 |
-
msgid "1 download"
|
950 |
-
msgid_plural "%d downloads"
|
951 |
-
msgstr[0] "1 descarga"
|
952 |
-
msgstr[1] "%d descargas"
|
953 |
-
|
954 |
-
#: download-monitor/templates/content-download-box.php:20
|
955 |
-
#: download-monitor/templates/content-download-filename.php:8
|
956 |
-
#: download-monitor/templates/content-download-title.php:8
|
957 |
-
#: download-monitor/templates/content-download.php:8
|
958 |
-
#, php-format
|
959 |
-
msgid "Version %s"
|
960 |
-
msgstr "Versión %s"
|
961 |
-
|
962 |
-
#: download-monitor/templates/content-download-box.php:21
|
963 |
-
msgid "Download File"
|
964 |
-
msgstr "Descargar archivo"
|
965 |
-
|
966 |
-
#: download-monitor/templates/content-download-button.php:9
|
967 |
-
#, php-format
|
968 |
-
msgid "Download “%s”"
|
969 |
-
msgstr "Descargar “%s”"
|
970 |
-
|
971 |
-
#: download-monitor/templates/content-download-button.php:10
|
972 |
-
#: download-monitor/templates/content-download-version-list.php:17
|
973 |
-
#, php-format
|
974 |
-
msgid "Downloaded 1 time"
|
975 |
-
msgid_plural "Downloaded %d times"
|
976 |
-
msgstr[0] "Descargado 1 vez"
|
977 |
-
msgstr[1] "Descargado %d veces"
|
978 |
-
|
979 |
-
#~ msgid "Select File"
|
980 |
-
#~ msgstr "Selecciona un archivo"
|
981 |
-
|
982 |
-
#~ msgid "Any month"
|
983 |
-
#~ msgstr "Cualquier mes"
|
984 |
-
|
985 |
-
#~ msgid "http://mikejolley.com/projects/download-monitor/"
|
986 |
-
#~ msgstr "http://mikejolley.com/projects/download-monitor/"
|
987 |
-
|
988 |
-
#~ msgid ""
|
989 |
-
#~ "A full solution for managing downloadable files, monitoring downloads and "
|
990 |
-
#~ "outputting download links and file information on your WordPress powered "
|
991 |
-
#~ "site."
|
992 |
-
#~ msgstr ""
|
993 |
-
#~ "Una solución completa para gestionar archivos descargables, controlar las "
|
994 |
-
#~ "descargas y exportar los enlaces de descarga y la información de archivos "
|
995 |
-
#~ "a tu web basada en WordPress."
|
996 |
-
|
997 |
-
#~ msgid "Mike Jolley"
|
998 |
-
#~ msgstr "Mike Jolley"
|
999 |
-
|
1000 |
-
#~ msgid "http://mikejolley.com"
|
1001 |
-
#~ msgstr "http://mikejolley.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/download_monitor-fa_IR.mo
DELETED
Binary file
|
languages/download_monitor-fr_FR.mo
DELETED
Binary file
|
languages/download_monitor-hu_HU.mo
DELETED
Binary file
|
languages/download_monitor-it_IT.mo
DELETED
Binary file
|
languages/download_monitor-ja.mo
DELETED
Binary file
|
languages/download_monitor-pl_PL.mo
DELETED
Binary file
|
languages/download_monitor-pl_PL.po
DELETED
@@ -1,983 +0,0 @@
|
|
1 |
-
# Copyright (C) 2013 Download Monitor
|
2 |
-
# This file is distributed under the same license as the Download Monitor package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: Download Monitor 1.3.2\n"
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/download-monitor\n"
|
7 |
-
"POT-Creation-Date: 2013-12-02 13:56+0100\n"
|
8 |
-
"PO-Revision-Date: 2013-12-02 14:01+0100\n"
|
9 |
-
"Last-Translator: Krzysztof Machocki <halibutt@gmail.com>\n"
|
10 |
-
"Language-Team: Halibutt <halibutt@gmail.com>\n"
|
11 |
-
"Language: pl_PL\n"
|
12 |
-
"MIME-Version: 1.0\n"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Generator: Poedit 1.5.7\n"
|
16 |
-
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
17 |
-
"|| n%100>=20) ? 1 : 2);\n"
|
18 |
-
"X-Poedit-KeywordsList: __;_e;_ngettext\n"
|
19 |
-
"X-Poedit-Basepath: .\n"
|
20 |
-
"X-Poedit-SearchPath-0: ..\n"
|
21 |
-
|
22 |
-
#: ../download-monitor.php:91 ../includes/admin/class-dlm-admin.php:249
|
23 |
-
msgid "Settings"
|
24 |
-
msgstr "Ustawienia"
|
25 |
-
|
26 |
-
#: ../download-monitor.php:92 ../includes/admin/class-dlm-admin.php:252
|
27 |
-
msgid "Add-ons"
|
28 |
-
msgstr "Dodatki"
|
29 |
-
|
30 |
-
#: ../download-monitor.php:93
|
31 |
-
msgid "Docs"
|
32 |
-
msgstr "Dokumentacja"
|
33 |
-
|
34 |
-
#: ../download-monitor.php:240 ../download-monitor.php:242
|
35 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:174
|
36 |
-
msgid "Categories"
|
37 |
-
msgstr "Kategorie"
|
38 |
-
|
39 |
-
#: ../download-monitor.php:243
|
40 |
-
msgid "Download Category"
|
41 |
-
msgstr "Kategoria plików"
|
42 |
-
|
43 |
-
#: ../download-monitor.php:244
|
44 |
-
msgid "Search Download Categories"
|
45 |
-
msgstr "Przeszukaj kategorie plików"
|
46 |
-
|
47 |
-
#: ../download-monitor.php:245
|
48 |
-
msgid "All Download Categories"
|
49 |
-
msgstr "Wszystkie kategorie plików"
|
50 |
-
|
51 |
-
#: ../download-monitor.php:246
|
52 |
-
msgid "Parent Download Category"
|
53 |
-
msgstr "Nadrzędna kategoria plików"
|
54 |
-
|
55 |
-
#: ../download-monitor.php:247
|
56 |
-
msgid "Parent Download Category:"
|
57 |
-
msgstr "Nadrzędna kategoria plików:"
|
58 |
-
|
59 |
-
#: ../download-monitor.php:248
|
60 |
-
msgid "Edit Download Category"
|
61 |
-
msgstr "Edytuj kategorię plików"
|
62 |
-
|
63 |
-
#: ../download-monitor.php:249
|
64 |
-
msgid "Update Download Category"
|
65 |
-
msgstr "Aktualizuj kategorię plików"
|
66 |
-
|
67 |
-
#: ../download-monitor.php:250
|
68 |
-
msgid "Add New Download Category"
|
69 |
-
msgstr "Dodaj nową kategorię"
|
70 |
-
|
71 |
-
#: ../download-monitor.php:251
|
72 |
-
msgid "New Download Category Name"
|
73 |
-
msgstr "Nazwa nowej kategorii"
|
74 |
-
|
75 |
-
#: ../download-monitor.php:270 ../download-monitor.php:272
|
76 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:175
|
77 |
-
msgid "Tags"
|
78 |
-
msgstr "Etykiety"
|
79 |
-
|
80 |
-
#: ../download-monitor.php:273
|
81 |
-
msgid "Download Tag"
|
82 |
-
msgstr "Etykieta pliku"
|
83 |
-
|
84 |
-
#: ../download-monitor.php:274
|
85 |
-
msgid "Search Download Tags"
|
86 |
-
msgstr "Przeszukaj etykiety"
|
87 |
-
|
88 |
-
#: ../download-monitor.php:275
|
89 |
-
msgid "All Download Tags"
|
90 |
-
msgstr "Wszystkie etykiety"
|
91 |
-
|
92 |
-
#: ../download-monitor.php:276
|
93 |
-
msgid "Parent Download Tag"
|
94 |
-
msgstr "Etykieta nadrzędna"
|
95 |
-
|
96 |
-
#: ../download-monitor.php:277
|
97 |
-
msgid "Parent Download Tag:"
|
98 |
-
msgstr "Etykieta nadrzędna:"
|
99 |
-
|
100 |
-
#: ../download-monitor.php:278
|
101 |
-
msgid "Edit Download Tag"
|
102 |
-
msgstr "Edytuj etykietę"
|
103 |
-
|
104 |
-
#: ../download-monitor.php:279
|
105 |
-
msgid "Update Download Tag"
|
106 |
-
msgstr "Aktualizuj etykietę"
|
107 |
-
|
108 |
-
#: ../download-monitor.php:280
|
109 |
-
msgid "Add New Download Tag"
|
110 |
-
msgstr "Dodaj nową etykietę"
|
111 |
-
|
112 |
-
#: ../download-monitor.php:281
|
113 |
-
msgid "New Download Tag Name"
|
114 |
-
msgstr "Nazwa nowej etykiety"
|
115 |
-
|
116 |
-
#: ../download-monitor.php:302
|
117 |
-
msgid "All Downloads"
|
118 |
-
msgstr "Wszystkie pliki do pobrania"
|
119 |
-
|
120 |
-
#: ../download-monitor.php:303
|
121 |
-
msgid "Downloads"
|
122 |
-
msgstr "Pliki"
|
123 |
-
|
124 |
-
#: ../download-monitor.php:304
|
125 |
-
#: ../includes/admin/class-dlm-admin-dashboard.php:69
|
126 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:123
|
127 |
-
msgid "Download"
|
128 |
-
msgstr "Plik"
|
129 |
-
|
130 |
-
#: ../download-monitor.php:305
|
131 |
-
msgid "Add New"
|
132 |
-
msgstr "Dodaj nowy"
|
133 |
-
|
134 |
-
#: ../download-monitor.php:306
|
135 |
-
msgid "Add Download"
|
136 |
-
msgstr "Dodaj plik"
|
137 |
-
|
138 |
-
#: ../download-monitor.php:307
|
139 |
-
msgid "Edit"
|
140 |
-
msgstr "Edytuj"
|
141 |
-
|
142 |
-
#: ../download-monitor.php:308
|
143 |
-
msgid "Edit Download"
|
144 |
-
msgstr "Edytuj plik"
|
145 |
-
|
146 |
-
#: ../download-monitor.php:309
|
147 |
-
msgid "New Download"
|
148 |
-
msgstr "Nowe plik"
|
149 |
-
|
150 |
-
#: ../download-monitor.php:310 ../download-monitor.php:311
|
151 |
-
msgid "View Download"
|
152 |
-
msgstr "Obejrzyj plik"
|
153 |
-
|
154 |
-
#: ../download-monitor.php:312
|
155 |
-
msgid "Search Downloads"
|
156 |
-
msgstr "Szukaj plików"
|
157 |
-
|
158 |
-
#: ../download-monitor.php:313
|
159 |
-
msgid "No Downloads found"
|
160 |
-
msgstr "Nie znaleziono plików"
|
161 |
-
|
162 |
-
#: ../download-monitor.php:314
|
163 |
-
msgid "No Downloads found in trash"
|
164 |
-
msgstr "W koszu też nie znalazłem plików"
|
165 |
-
|
166 |
-
#: ../download-monitor.php:315
|
167 |
-
msgid "Parent Download"
|
168 |
-
msgstr "Pobranie nadrzędne"
|
169 |
-
|
170 |
-
#: ../download-monitor.php:317
|
171 |
-
msgid "This is where you can create and manage downloads for your site."
|
172 |
-
msgstr "Tu możesz tworzyć i zarządzać plikami do pliku dla swojej strony."
|
173 |
-
|
174 |
-
#: ../includes/class-dlm-download-handler.php:124
|
175 |
-
msgid "Download does not exist."
|
176 |
-
msgstr "Plik nie istnieje."
|
177 |
-
|
178 |
-
#: ../includes/class-dlm-download-handler.php:124
|
179 |
-
#: ../includes/class-dlm-download-handler.php:144
|
180 |
-
#: ../includes/class-dlm-download-handler.php:149
|
181 |
-
#: ../includes/class-dlm-download-handler.php:158
|
182 |
-
#: ../includes/class-dlm-download-handler.php:343
|
183 |
-
msgid "Go to homepage →"
|
184 |
-
msgstr "Przejdź na stronę główną →"
|
185 |
-
|
186 |
-
#: ../includes/class-dlm-download-handler.php:124
|
187 |
-
#: ../includes/class-dlm-download-handler.php:144
|
188 |
-
#: ../includes/class-dlm-download-handler.php:149
|
189 |
-
#: ../includes/class-dlm-download-handler.php:158
|
190 |
-
#: ../includes/class-dlm-download-handler.php:343
|
191 |
-
msgid "Download Error"
|
192 |
-
msgstr "Błąd pobierania"
|
193 |
-
|
194 |
-
#: ../includes/class-dlm-download-handler.php:144
|
195 |
-
#: ../includes/class-dlm-download-handler.php:149
|
196 |
-
msgid "No file paths defined."
|
197 |
-
msgstr "Nie ustawiono ścieżek."
|
198 |
-
|
199 |
-
#: ../includes/class-dlm-download-handler.php:158
|
200 |
-
msgid "You do not have permission to access this download."
|
201 |
-
msgstr "Nie masz uprawnień dostępu do tego pliku."
|
202 |
-
|
203 |
-
#: ../includes/class-dlm-download-handler.php:182
|
204 |
-
#: ../includes/class-dlm-download-handler.php:280
|
205 |
-
#: ../includes/class-dlm-download-handler.php:288
|
206 |
-
#: ../includes/class-dlm-download-handler.php:296
|
207 |
-
msgid "Redirected to file"
|
208 |
-
msgstr "Przekierowano do pliku"
|
209 |
-
|
210 |
-
#: ../includes/class-dlm-download-handler.php:335
|
211 |
-
msgid "Redirected to remote file."
|
212 |
-
msgstr "Przekierowano do zdalnego pliku."
|
213 |
-
|
214 |
-
#: ../includes/class-dlm-download-handler.php:341
|
215 |
-
msgid "File not found"
|
216 |
-
msgstr "Nie znaleziono pliku"
|
217 |
-
|
218 |
-
#: ../includes/class-dlm-download-handler.php:343
|
219 |
-
msgid "File not found."
|
220 |
-
msgstr "Nie znaleziono pliku."
|
221 |
-
|
222 |
-
#: ../includes/class-dlm-shortcodes.php:93
|
223 |
-
#: ../includes/class-dlm-shortcodes.php:125
|
224 |
-
msgid "Download not found"
|
225 |
-
msgstr "Nie znaleziono pliku"
|
226 |
-
|
227 |
-
#: ../includes/admin/class-dlm-addons.php:50
|
228 |
-
#: ../includes/admin/class-dlm-admin.php:252
|
229 |
-
msgid "Download Monitor Add-ons"
|
230 |
-
msgstr "Dodatki do Download Monitora"
|
231 |
-
|
232 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:64
|
233 |
-
msgid "Select a category"
|
234 |
-
msgstr "Wybierz kategorię"
|
235 |
-
|
236 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:124
|
237 |
-
msgid "Download title"
|
238 |
-
msgstr "Tytuł pliku"
|
239 |
-
|
240 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:140
|
241 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:143
|
242 |
-
msgid "Download updated."
|
243 |
-
msgstr "Pobranie zaktualizowano."
|
244 |
-
|
245 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:141
|
246 |
-
msgid "Custom field updated."
|
247 |
-
msgstr "Pole spersonalizowane zostało zaktualizowane."
|
248 |
-
|
249 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:142
|
250 |
-
msgid "Custom field deleted."
|
251 |
-
msgstr "Pole spersonalizowane zostało skasowane."
|
252 |
-
|
253 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:144
|
254 |
-
#, php-format
|
255 |
-
msgid "Download restored to revision from %s"
|
256 |
-
msgstr "Strona pobierania przywrócona do wesji z %s"
|
257 |
-
|
258 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:145
|
259 |
-
msgid "Download published."
|
260 |
-
msgstr "Strona pobierania została opublikowana."
|
261 |
-
|
262 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:146
|
263 |
-
msgid "Download saved."
|
264 |
-
msgstr "Strona pobierania zapisana."
|
265 |
-
|
266 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:147
|
267 |
-
msgid "Download submitted."
|
268 |
-
msgstr "Strona pobierania wysłana."
|
269 |
-
|
270 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:148
|
271 |
-
#, php-format
|
272 |
-
msgid "Download scheduled for: <strong>%1$s</strong>."
|
273 |
-
msgstr "Zaplanowano na: <strong>%1$s</strong>."
|
274 |
-
|
275 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:149
|
276 |
-
msgid "M j, Y @ G:i"
|
277 |
-
msgstr "d–n–Y o H:i"
|
278 |
-
|
279 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:150
|
280 |
-
msgid "Download draft updated."
|
281 |
-
msgstr "Szkic strony pobierania zaktualizowany."
|
282 |
-
|
283 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:169
|
284 |
-
msgid "Image"
|
285 |
-
msgstr "Obraz"
|
286 |
-
|
287 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:170
|
288 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:171
|
289 |
-
msgid "Title"
|
290 |
-
msgstr "Tytuł"
|
291 |
-
|
292 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:171
|
293 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:173
|
294 |
-
msgid "ID"
|
295 |
-
msgstr "ID"
|
296 |
-
|
297 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:172
|
298 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:124
|
299 |
-
msgid "File"
|
300 |
-
msgstr "Plik"
|
301 |
-
|
302 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:173
|
303 |
-
#: ../includes/admin/class-dlm-admin-insert.php:197
|
304 |
-
#: ../includes/admin/html-downloadable-file-version.php:13
|
305 |
-
msgid "Version"
|
306 |
-
msgstr "Wersja"
|
307 |
-
|
308 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:177
|
309 |
-
msgid "download_count"
|
310 |
-
msgstr "download_count"
|
311 |
-
|
312 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:178
|
313 |
-
msgid "Featured"
|
314 |
-
msgstr "Wyróżnione"
|
315 |
-
|
316 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:179
|
317 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:63
|
318 |
-
msgid "Members only"
|
319 |
-
msgstr "Tylko dla zarejestrowanych"
|
320 |
-
|
321 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:180
|
322 |
-
msgid "Redirect only"
|
323 |
-
msgstr "Tylko przekierowanie"
|
324 |
-
|
325 |
-
#: ../includes/admin/class-dlm-admin-cpt.php:182
|
326 |
-
msgid "Date posted"
|
327 |
-
msgstr "Data publikacji"
|
328 |
-
|
329 |
-
#: ../includes/admin/class-dlm-admin-dashboard.php:21
|
330 |
-
msgid "Popular Downloads"
|
331 |
-
msgstr "Najpopularniejsze pliku"
|
332 |
-
|
333 |
-
#: ../includes/admin/class-dlm-admin-dashboard.php:53
|
334 |
-
msgid "There are no stats available yet!"
|
335 |
-
msgstr "Nie ma jeszcze żadnych statystyk."
|
336 |
-
|
337 |
-
#: ../includes/admin/class-dlm-admin-dashboard.php:70
|
338 |
-
#: ../includes/admin/html-downloadable-file-version.php:49
|
339 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:176
|
340 |
-
msgid "Download count"
|
341 |
-
msgstr "Licznik plików"
|
342 |
-
|
343 |
-
#: ../includes/admin/class-dlm-admin-insert.php:29
|
344 |
-
#: ../includes/admin/class-dlm-admin-insert.php:68
|
345 |
-
msgid "Insert Download"
|
346 |
-
msgstr "Wstaw plik"
|
347 |
-
|
348 |
-
#: ../includes/admin/class-dlm-admin-insert.php:78
|
349 |
-
#: ../includes/admin/class-dlm-admin-insert.php:168
|
350 |
-
msgid "Insert Shortcode"
|
351 |
-
msgstr "Wstaw shortcode"
|
352 |
-
|
353 |
-
#: ../includes/admin/class-dlm-admin-insert.php:78
|
354 |
-
msgid "Quick-add download"
|
355 |
-
msgstr "Szybkie dodawanie plików"
|
356 |
-
|
357 |
-
#: ../includes/admin/class-dlm-admin-insert.php:122
|
358 |
-
msgid "Error: File was not created."
|
359 |
-
msgstr "Błąd: plik nie został utworzony."
|
360 |
-
|
361 |
-
#: ../includes/admin/class-dlm-admin-insert.php:129
|
362 |
-
msgid "Download successfully created."
|
363 |
-
msgstr "Pobranie udało się utworzyć."
|
364 |
-
|
365 |
-
#: ../includes/admin/class-dlm-admin-insert.php:131
|
366 |
-
msgid "Error: Download was not created."
|
367 |
-
msgstr "Błąd: nie udało się utworzyć pliku."
|
368 |
-
|
369 |
-
#: ../includes/admin/class-dlm-admin-insert.php:149
|
370 |
-
msgid "Choose a download"
|
371 |
-
msgstr "Wybierz plik"
|
372 |
-
|
373 |
-
#: ../includes/admin/class-dlm-admin-insert.php:161
|
374 |
-
msgid "Template"
|
375 |
-
msgstr "Szablon"
|
376 |
-
|
377 |
-
#: ../includes/admin/class-dlm-admin-insert.php:162
|
378 |
-
msgid "Template Name"
|
379 |
-
msgstr "Nazwa szablonu"
|
380 |
-
|
381 |
-
#: ../includes/admin/class-dlm-admin-insert.php:164
|
382 |
-
msgid ""
|
383 |
-
"Leaving this blank will use the default <code>content-download.php</code> "
|
384 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
385 |
-
"<code>content-download-image.php</code> template will be used instead."
|
386 |
-
msgstr ""
|
387 |
-
"Jeśli pole pozostanie puste, wtyczka użyje domyślnego szablonu <code>content-"
|
388 |
-
"download.php</code>. Jeśli wpiszesz na przykład <code>image</code>, wtyczka "
|
389 |
-
"użyje zamiast tego szablonu <code>content-download-image.php</code>."
|
390 |
-
|
391 |
-
#: ../includes/admin/class-dlm-admin-insert.php:179
|
392 |
-
msgid "Drop file here"
|
393 |
-
msgstr "Upuść plik tutaj"
|
394 |
-
|
395 |
-
#: ../includes/admin/class-dlm-admin-insert.php:180
|
396 |
-
#: ../includes/admin/class-dlm-admin-insert.php:182
|
397 |
-
msgid "or"
|
398 |
-
msgstr "albo"
|
399 |
-
|
400 |
-
#: ../includes/admin/class-dlm-admin-insert.php:183
|
401 |
-
msgid "Enter URL manually"
|
402 |
-
msgstr "Wybierz URL ręcznie"
|
403 |
-
|
404 |
-
#: ../includes/admin/class-dlm-admin-insert.php:189
|
405 |
-
msgid "Download URL"
|
406 |
-
msgstr "URL pliku"
|
407 |
-
|
408 |
-
#: ../includes/admin/class-dlm-admin-insert.php:190
|
409 |
-
msgid "Required URL"
|
410 |
-
msgstr "URL jest wymagany"
|
411 |
-
|
412 |
-
#: ../includes/admin/class-dlm-admin-insert.php:193
|
413 |
-
msgid "Download Title"
|
414 |
-
msgstr "Tytuł pliku"
|
415 |
-
|
416 |
-
#: ../includes/admin/class-dlm-admin-insert.php:194
|
417 |
-
msgid "Required title"
|
418 |
-
msgstr "Tytuł jest wymagany"
|
419 |
-
|
420 |
-
#: ../includes/admin/class-dlm-admin-insert.php:198
|
421 |
-
msgid "Optional version number"
|
422 |
-
msgstr "Opcjonalny numer wersji"
|
423 |
-
|
424 |
-
#: ../includes/admin/class-dlm-admin-insert.php:201
|
425 |
-
msgid "Save Download"
|
426 |
-
msgstr "Zapisz plik"
|
427 |
-
|
428 |
-
#: ../includes/admin/class-dlm-admin-insert.php:259
|
429 |
-
msgid "Allowed Files"
|
430 |
-
msgstr "Dozwolone typy plików"
|
431 |
-
|
432 |
-
#: ../includes/admin/class-dlm-admin-insert.php:309
|
433 |
-
msgid "Please wait..."
|
434 |
-
msgstr "Proszę czekać..."
|
435 |
-
|
436 |
-
#: ../includes/admin/class-dlm-admin-media-browser.php:31
|
437 |
-
msgid "Browse for a file"
|
438 |
-
msgstr "Wyszukaj plik"
|
439 |
-
|
440 |
-
#: ../includes/admin/class-dlm-admin-media-browser.php:100
|
441 |
-
msgid "No files found"
|
442 |
-
msgstr "Nic nie znaleziono"
|
443 |
-
|
444 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:29
|
445 |
-
msgid "Download Options"
|
446 |
-
msgstr "Opcje pobierania"
|
447 |
-
|
448 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:30
|
449 |
-
msgid "Downloadable File Versions"
|
450 |
-
msgstr "Pobieralne wersje pliku"
|
451 |
-
|
452 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:35
|
453 |
-
msgid "Short Description"
|
454 |
-
msgstr "Krótki opis"
|
455 |
-
|
456 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:57
|
457 |
-
msgid "Featured download"
|
458 |
-
msgstr "Plik wyróżniony"
|
459 |
-
|
460 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:58
|
461 |
-
msgid "Mark this download as featured. Used by shortcodes and widgets."
|
462 |
-
msgstr ""
|
463 |
-
"Oznacz ten plik jako wyróżniony. Wykorzystują to kody shortcode i widgety."
|
464 |
-
|
465 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:64
|
466 |
-
msgid ""
|
467 |
-
"Only logged in users will be able to access the file via a download link if "
|
468 |
-
"this is enabled."
|
469 |
-
msgstr "Tylko zalogowani użytkownicy będą mogli pobrać ten plik."
|
470 |
-
|
471 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:69
|
472 |
-
msgid "Redirect to file"
|
473 |
-
msgstr "Przekieruj do pliku"
|
474 |
-
|
475 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:70
|
476 |
-
msgid ""
|
477 |
-
"Don't force download. If the <code>dlm_upload</code> folder is protected you "
|
478 |
-
"may need to move your file."
|
479 |
-
msgstr ""
|
480 |
-
"Nie wymuszaj pobierania. Jeśli folder <code>dlm_upload</code> jest "
|
481 |
-
"chroniony, być może będziesz misiał przenieść plik gdzie indziej."
|
482 |
-
|
483 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:94
|
484 |
-
msgid "Add version"
|
485 |
-
msgstr "Dodaj wersję"
|
486 |
-
|
487 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:95
|
488 |
-
msgid "Close all"
|
489 |
-
msgstr "Zamknij wszystko"
|
490 |
-
|
491 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:95
|
492 |
-
msgid "Expand all"
|
493 |
-
msgstr "Rozszerz wszystko"
|
494 |
-
|
495 |
-
#: ../includes/admin/class-dlm-admin-writepanels.php:220
|
496 |
-
msgid "Are you sure you want to delete this file?"
|
497 |
-
msgstr "Na serio chcesz skasować ten plik?"
|
498 |
-
|
499 |
-
#: ../includes/admin/class-dlm-admin.php:95
|
500 |
-
msgid "General"
|
501 |
-
msgstr "Ogólne"
|
502 |
-
|
503 |
-
#: ../includes/admin/class-dlm-admin.php:100
|
504 |
-
msgid "Default Template"
|
505 |
-
msgstr "Szablon domyślny"
|
506 |
-
|
507 |
-
#: ../includes/admin/class-dlm-admin.php:101
|
508 |
-
msgid ""
|
509 |
-
"Choose which template is used for <code>[download]</code> shortcodes by "
|
510 |
-
"default (this can be overridden by the <code>format</code> argument)."
|
511 |
-
msgstr ""
|
512 |
-
"Wybierz który szablon ma być użyty do wyświetlania kodów <code>[download]</"
|
513 |
-
"code> (ustawienie można zmienić również poprzez użycie argumentu "
|
514 |
-
"<code>format</code>)."
|
515 |
-
|
516 |
-
#: ../includes/admin/class-dlm-admin.php:104
|
517 |
-
msgid "Default - Title and count"
|
518 |
-
msgstr "Domyślne - Tytuł i licznik"
|
519 |
-
|
520 |
-
#: ../includes/admin/class-dlm-admin.php:105
|
521 |
-
msgid "Button - CSS styled button showing title and count"
|
522 |
-
msgstr "Przycisk - CSS button pokazujący tytuł i licznik"
|
523 |
-
|
524 |
-
#: ../includes/admin/class-dlm-admin.php:106
|
525 |
-
msgid "Box - Box showing thumbnail, title, count, filename and filesize."
|
526 |
-
msgstr ""
|
527 |
-
"Pudełko - ramka pokazująca miniaturkę, tytuł, licznik, nazwę pliku i jego "
|
528 |
-
"rozmiar."
|
529 |
-
|
530 |
-
#: ../includes/admin/class-dlm-admin.php:107
|
531 |
-
msgid "Filename - Filename and download count"
|
532 |
-
msgstr "Nazwa pliku - Nazwa i licznik plików"
|
533 |
-
|
534 |
-
#: ../includes/admin/class-dlm-admin.php:108
|
535 |
-
msgid "Title - Shows download title only"
|
536 |
-
msgstr "Tytuł - Pokazuje jedynie nazwę pliku do pliku"
|
537 |
-
|
538 |
-
#: ../includes/admin/class-dlm-admin.php:109
|
539 |
-
msgid "Version list - Lists all download versions in an unordered list"
|
540 |
-
msgstr ""
|
541 |
-
"Lista wersji - Wylicza wszystkie wersje pliku do pliku w postaci "
|
542 |
-
"nieuporządkowanej listy"
|
543 |
-
|
544 |
-
#: ../includes/admin/class-dlm-admin.php:110
|
545 |
-
msgid "Custom template"
|
546 |
-
msgstr "Własny szablon"
|
547 |
-
|
548 |
-
#: ../includes/admin/class-dlm-admin.php:116
|
549 |
-
msgid "Custom Template"
|
550 |
-
msgstr "Własny szablon"
|
551 |
-
|
552 |
-
#: ../includes/admin/class-dlm-admin.php:117
|
553 |
-
msgid ""
|
554 |
-
"Leaving this blank will use the default <code>content-download.php</code> "
|
555 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
556 |
-
"<code>content-download-image.php</code> template will be used instead. You "
|
557 |
-
"can add custom templates inside your theme folder."
|
558 |
-
msgstr ""
|
559 |
-
"Jeśli to pole pozostanie puste, wtyczka użyje domyślnego szablonu "
|
560 |
-
"<code>content-download.php</code>. Jeśli wpiszesz na przykład <code>image</"
|
561 |
-
"code>, użyje zamiast tego szablonu <code>content-download-image.php</code>. "
|
562 |
-
"Możesz dodać więcej własnych szablonów w katalogu używanej przez Ciebie "
|
563 |
-
"skórki WP."
|
564 |
-
|
565 |
-
#: ../includes/admin/class-dlm-admin.php:122
|
566 |
-
msgid "Endpoint"
|
567 |
-
msgstr "Miejsce docelowe"
|
568 |
-
|
569 |
-
#: ../includes/admin/class-dlm-admin.php:127
|
570 |
-
msgid "download"
|
571 |
-
msgstr "plik"
|
572 |
-
|
573 |
-
#: ../includes/admin/class-dlm-admin.php:128
|
574 |
-
msgid "Download Endpoint"
|
575 |
-
msgstr "Miejsce docelowe plików"
|
576 |
-
|
577 |
-
#: ../includes/admin/class-dlm-admin.php:129
|
578 |
-
#, php-format
|
579 |
-
msgid ""
|
580 |
-
"Define what endpoint should be used for download links. By default this will "
|
581 |
-
"be <code>%s</code>."
|
582 |
-
msgstr ""
|
583 |
-
"Zdefiniuj dokąd docelowo będą prowadzić linki do plików. Domyślnie jest to "
|
584 |
-
"strona <code>%s</code>."
|
585 |
-
|
586 |
-
#: ../includes/admin/class-dlm-admin.php:134
|
587 |
-
msgid "Endpoint Value"
|
588 |
-
msgstr "Wartość miejsca docelowego"
|
589 |
-
|
590 |
-
#: ../includes/admin/class-dlm-admin.php:135
|
591 |
-
#, php-format
|
592 |
-
msgid ""
|
593 |
-
"Define what unique value should be used on the end of your endpoint to "
|
594 |
-
"identify the downloadable file. e.g. ID would give a link like <code>%s</"
|
595 |
-
"code>"
|
596 |
-
msgstr ""
|
597 |
-
"Zdefiniuj jaka wartość ma zostać użyta na końcu drogi pliku by "
|
598 |
-
"zidentyfikować pobieralny plik. Na przykład ID stworzy link wyglądający tak: "
|
599 |
-
"<code>%s</code>"
|
600 |
-
|
601 |
-
#: ../includes/admin/class-dlm-admin.php:138
|
602 |
-
#: ../includes/admin/class-dlm-admin.php:452
|
603 |
-
msgid "Download ID"
|
604 |
-
msgstr "ID pliku"
|
605 |
-
|
606 |
-
#: ../includes/admin/class-dlm-admin.php:139
|
607 |
-
msgid "Download slug"
|
608 |
-
msgstr "Krótki opis pliku"
|
609 |
-
|
610 |
-
#: ../includes/admin/class-dlm-admin.php:145
|
611 |
-
msgid "X-Accel-Redirect / X-Sendfile"
|
612 |
-
msgstr "X-Accel-Redirect / X-Sendfile"
|
613 |
-
|
614 |
-
#: ../includes/admin/class-dlm-admin.php:146
|
615 |
-
#: ../includes/admin/class-dlm-admin.php:157
|
616 |
-
msgid "Enable"
|
617 |
-
msgstr "Włącz"
|
618 |
-
|
619 |
-
#: ../includes/admin/class-dlm-admin.php:147
|
620 |
-
msgid ""
|
621 |
-
"If supported, <code>X-Accel-Redirect</code> / <code>X-Sendfile</code> can be "
|
622 |
-
"used to serve downloads instead of PHP (server requires <code>mod_xsendfile</"
|
623 |
-
"code>)."
|
624 |
-
msgstr ""
|
625 |
-
"Jeśli ta opcja jest wspierana, <code>X-Accel-Redirect</code> / <code>X-"
|
626 |
-
"Sendfile</code> mogą napędzać pobieranie plików zamiast zwykłego PHP (server "
|
627 |
-
"musi mieć zainstalowany <code>mod_xsendfile</code>)."
|
628 |
-
|
629 |
-
#: ../includes/admin/class-dlm-admin.php:153
|
630 |
-
msgid "Logging"
|
631 |
-
msgstr "Rejestrowanie"
|
632 |
-
|
633 |
-
#: ../includes/admin/class-dlm-admin.php:159
|
634 |
-
msgid "Download Log"
|
635 |
-
msgstr "Rejestr plików"
|
636 |
-
|
637 |
-
#: ../includes/admin/class-dlm-admin.php:160
|
638 |
-
msgid "Log download attempts, IP addresses and more."
|
639 |
-
msgstr "Rejestruj próby pobrania plików, adresy IP i więcej."
|
640 |
-
|
641 |
-
#: ../includes/admin/class-dlm-admin.php:166
|
642 |
-
msgid "Blacklist IPs"
|
643 |
-
msgstr "Czarna lista IP"
|
644 |
-
|
645 |
-
#: ../includes/admin/class-dlm-admin.php:167
|
646 |
-
msgid ""
|
647 |
-
"List IP Addresses to blacklist, 1 per line. Use <code>*</code> for a "
|
648 |
-
"wildcard."
|
649 |
-
msgstr ""
|
650 |
-
"Dodaj adresy IP do czarnej listy, po jednym w linii. Kod <code>*</code> "
|
651 |
-
"zastępuje inne znaki."
|
652 |
-
|
653 |
-
#: ../includes/admin/class-dlm-admin.php:174
|
654 |
-
msgid "Blacklist user agents"
|
655 |
-
msgstr "Roboty na czarnej liście"
|
656 |
-
|
657 |
-
#: ../includes/admin/class-dlm-admin.php:175
|
658 |
-
msgid "List browser user agents to blacklist, 1 per line."
|
659 |
-
msgstr "Dodaj roboty przeglądarkowe do czarnej listy, po jednym na linię."
|
660 |
-
|
661 |
-
#: ../includes/admin/class-dlm-admin.php:247
|
662 |
-
msgid "Logs"
|
663 |
-
msgstr "Rejestry"
|
664 |
-
|
665 |
-
#: ../includes/admin/class-dlm-admin.php:291
|
666 |
-
msgid "Settings successfully saved"
|
667 |
-
msgstr "Ustawienia zostały zapisane"
|
668 |
-
|
669 |
-
#: ../includes/admin/class-dlm-admin.php:358
|
670 |
-
msgid "Save Changes"
|
671 |
-
msgstr "Zapisz zmiany"
|
672 |
-
|
673 |
-
#: ../includes/admin/class-dlm-admin.php:402
|
674 |
-
msgid "Download Logs"
|
675 |
-
msgstr "Rejestry pobierań"
|
676 |
-
|
677 |
-
#: ../includes/admin/class-dlm-admin.php:402
|
678 |
-
msgid "Export CSV"
|
679 |
-
msgstr "Eksportuj CSV"
|
680 |
-
|
681 |
-
#: ../includes/admin/class-dlm-admin.php:402
|
682 |
-
msgid "Delete Logs"
|
683 |
-
msgstr "Skasuj rejestry"
|
684 |
-
|
685 |
-
#: ../includes/admin/class-dlm-admin.php:453
|
686 |
-
msgid "Version ID"
|
687 |
-
msgstr "ID wersji"
|
688 |
-
|
689 |
-
#: ../includes/admin/class-dlm-admin.php:454
|
690 |
-
msgid "Filename"
|
691 |
-
msgstr "Nazwa pliku"
|
692 |
-
|
693 |
-
#: ../includes/admin/class-dlm-admin.php:455
|
694 |
-
msgid "User ID"
|
695 |
-
msgstr "ID użytkownika"
|
696 |
-
|
697 |
-
#: ../includes/admin/class-dlm-admin.php:456
|
698 |
-
msgid "User Login"
|
699 |
-
msgstr "Login użytkownika"
|
700 |
-
|
701 |
-
#: ../includes/admin/class-dlm-admin.php:457
|
702 |
-
msgid "User Email"
|
703 |
-
msgstr "E-mail użytkownika"
|
704 |
-
|
705 |
-
#: ../includes/admin/class-dlm-admin.php:458
|
706 |
-
msgid "User IP"
|
707 |
-
msgstr "IP użytkownika"
|
708 |
-
|
709 |
-
#: ../includes/admin/class-dlm-admin.php:459
|
710 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:127
|
711 |
-
msgid "User Agent"
|
712 |
-
msgstr "Agent użytkownika"
|
713 |
-
|
714 |
-
#: ../includes/admin/class-dlm-admin.php:460
|
715 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:128
|
716 |
-
msgid "Date"
|
717 |
-
msgstr "Data"
|
718 |
-
|
719 |
-
#: ../includes/admin/class-dlm-admin.php:461
|
720 |
-
msgid "Status"
|
721 |
-
msgstr "Status"
|
722 |
-
|
723 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:50
|
724 |
-
msgid "Download Complete"
|
725 |
-
msgstr "Pobieranie zakończone"
|
726 |
-
|
727 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:57
|
728 |
-
#, php-format
|
729 |
-
msgid "%s ago"
|
730 |
-
msgstr "%s temu"
|
731 |
-
|
732 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:64
|
733 |
-
#, php-format
|
734 |
-
msgid "Download #%d (no longer exists)"
|
735 |
-
msgstr "Plik #%d (już nie istnieje)"
|
736 |
-
|
737 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:72
|
738 |
-
#, php-format
|
739 |
-
msgid "v%s"
|
740 |
-
msgstr "v%s"
|
741 |
-
|
742 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:92
|
743 |
-
msgid "Non-member"
|
744 |
-
msgstr "Zewnętrzny"
|
745 |
-
|
746 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:125
|
747 |
-
msgid "User"
|
748 |
-
msgstr "Użytkownik"
|
749 |
-
|
750 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:126
|
751 |
-
msgid "IP Address"
|
752 |
-
msgstr "Adres IP"
|
753 |
-
|
754 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:142
|
755 |
-
msgid "Any status"
|
756 |
-
msgstr "Dowolny status"
|
757 |
-
|
758 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:143
|
759 |
-
msgid "Failed"
|
760 |
-
msgstr "Nieudany"
|
761 |
-
|
762 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:144
|
763 |
-
msgid "Redirected"
|
764 |
-
msgstr "Przekierowany"
|
765 |
-
|
766 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:145
|
767 |
-
msgid "Completed"
|
768 |
-
msgstr "Zakończony"
|
769 |
-
|
770 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:164
|
771 |
-
msgid "Show all dates"
|
772 |
-
msgstr "Pokaż wszystkie"
|
773 |
-
|
774 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:177
|
775 |
-
#, php-format
|
776 |
-
msgid "%1$s %2$d"
|
777 |
-
msgstr "%1$s %2$d"
|
778 |
-
|
779 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:185
|
780 |
-
msgid "25 per page"
|
781 |
-
msgstr "25 na stronę"
|
782 |
-
|
783 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:186
|
784 |
-
msgid "50 per page"
|
785 |
-
msgstr "50 na stronę"
|
786 |
-
|
787 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:187
|
788 |
-
msgid "100 per page"
|
789 |
-
msgstr "100 na stronę"
|
790 |
-
|
791 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:188
|
792 |
-
msgid "200 per page"
|
793 |
-
msgstr "200 na stronę"
|
794 |
-
|
795 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:189
|
796 |
-
msgid "Show All"
|
797 |
-
msgstr "Pokaż wszystkie"
|
798 |
-
|
799 |
-
#: ../includes/admin/class-dlm-logging-list-table.php:193
|
800 |
-
msgid "Filter"
|
801 |
-
msgstr "Filtr"
|
802 |
-
|
803 |
-
#: ../includes/admin/html-downloadable-file-version.php:3
|
804 |
-
msgid "Remove"
|
805 |
-
msgstr "Usuń"
|
806 |
-
|
807 |
-
#: ../includes/admin/html-downloadable-file-version.php:4
|
808 |
-
msgid "Click to toggle"
|
809 |
-
msgstr "Kliknij by zmienić"
|
810 |
-
|
811 |
-
#: ../includes/admin/html-downloadable-file-version.php:5
|
812 |
-
#, php-format
|
813 |
-
msgid "Version <span class=\"version\">%s</span> (%s)"
|
814 |
-
msgstr "Wersja <span class=\"version\">%s</span> (%s)"
|
815 |
-
|
816 |
-
#: ../includes/admin/html-downloadable-file-version.php:5
|
817 |
-
#: ../includes/admin/html-downloadable-file-version.php:14
|
818 |
-
msgid "n/a"
|
819 |
-
msgstr "Nie dotyczy"
|
820 |
-
|
821 |
-
#: ../includes/admin/html-downloadable-file-version.php:18
|
822 |
-
msgid "File URL(s)"
|
823 |
-
msgstr "URL pliku lub plików"
|
824 |
-
|
825 |
-
#: ../includes/admin/html-downloadable-file-version.php:19
|
826 |
-
msgid ""
|
827 |
-
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
828 |
-
"(chosen at random)."
|
829 |
-
msgstr ""
|
830 |
-
"Podaj jedną ścieżkę/URL na linię. Więcej linii będzie traktowane jako tzw. "
|
831 |
-
"lustra, alternatywne źródła (będą wybierane losowo)."
|
832 |
-
|
833 |
-
#: ../includes/admin/html-downloadable-file-version.php:24
|
834 |
-
msgid "Upload file"
|
835 |
-
msgstr "Wgraj plik"
|
836 |
-
|
837 |
-
#: ../includes/admin/html-downloadable-file-version.php:26
|
838 |
-
msgid "Choose a file"
|
839 |
-
msgstr "Wybierz plik"
|
840 |
-
|
841 |
-
#: ../includes/admin/html-downloadable-file-version.php:27
|
842 |
-
msgid "Insert file URL"
|
843 |
-
msgstr "Wklej tutaj URL do pliku"
|
844 |
-
|
845 |
-
#: ../includes/admin/html-downloadable-file-version.php:31
|
846 |
-
msgid "Browse for file"
|
847 |
-
msgstr "Przeglądaj w poszukiwaniu pliku"
|
848 |
-
|
849 |
-
#: ../includes/admin/html-downloadable-file-version.php:55
|
850 |
-
msgid "File Date"
|
851 |
-
msgstr "Data pliku"
|
852 |
-
|
853 |
-
#: ../includes/admin/html-downloadable-file-version.php:56
|
854 |
-
msgid "h"
|
855 |
-
msgstr "h"
|
856 |
-
|
857 |
-
#: ../includes/admin/html-downloadable-file-version.php:56
|
858 |
-
msgid "m"
|
859 |
-
msgstr "m"
|
860 |
-
|
861 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:27
|
862 |
-
msgid "Display a list of your downloads."
|
863 |
-
msgstr "Wyświetl listę plików do pliku."
|
864 |
-
|
865 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:29
|
866 |
-
msgid "Downloads List"
|
867 |
-
msgstr "Listy pobierania"
|
868 |
-
|
869 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:52
|
870 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:148
|
871 |
-
msgid "Featured Downloads"
|
872 |
-
msgstr "Wyróżnione pliki"
|
873 |
-
|
874 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:157
|
875 |
-
msgid "Title:"
|
876 |
-
msgstr "Tytuł:"
|
877 |
-
|
878 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:161
|
879 |
-
msgid "Limit:"
|
880 |
-
msgstr "Limit:"
|
881 |
-
|
882 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:165
|
883 |
-
msgid "Output template:"
|
884 |
-
msgstr "Szablon docelowy:"
|
885 |
-
|
886 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:166
|
887 |
-
msgid "Default template"
|
888 |
-
msgstr "Szablon domyślny:"
|
889 |
-
|
890 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:169
|
891 |
-
msgid "Order by:"
|
892 |
-
msgstr "Uporządkuj wedle:"
|
893 |
-
|
894 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:172
|
895 |
-
msgid "Random"
|
896 |
-
msgstr "Losowo"
|
897 |
-
|
898 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:174
|
899 |
-
msgid "Date added"
|
900 |
-
msgstr "Daty dodania"
|
901 |
-
|
902 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:175
|
903 |
-
msgid "Date modified"
|
904 |
-
msgstr "Daty modyfikacji"
|
905 |
-
|
906 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:180
|
907 |
-
msgid "Order:"
|
908 |
-
msgstr "Porządek:"
|
909 |
-
|
910 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:182
|
911 |
-
msgid "ASC"
|
912 |
-
msgstr "wstępująco"
|
913 |
-
|
914 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:183
|
915 |
-
msgid "DESC"
|
916 |
-
msgstr "zstępująco"
|
917 |
-
|
918 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:188
|
919 |
-
msgid "Show only featured downloads"
|
920 |
-
msgstr "Pokaż jedynie wyróżnione pliki"
|
921 |
-
|
922 |
-
#: ../includes/widgets/class-dlm-widget-downloads.php:192
|
923 |
-
msgid "Show only members only downloads"
|
924 |
-
msgstr "Pokaż jedynie pliki do pliku przez zalogowanych"
|
925 |
-
|
926 |
-
#: ../templates/content-download-box.php:20
|
927 |
-
#: ../templates/content-download-filename.php:8
|
928 |
-
#: ../templates/content-download-title.php:8
|
929 |
-
#: ../templates/content-download.php:8
|
930 |
-
#, php-format
|
931 |
-
msgid "Version %s"
|
932 |
-
msgstr "Wersja %s"
|
933 |
-
|
934 |
-
#: ../templates/content-download-box.php:21
|
935 |
-
msgid "Download File"
|
936 |
-
msgstr "Pobierz plik"
|
937 |
-
|
938 |
-
#: ../templates/content-download-button.php:9
|
939 |
-
#, php-format
|
940 |
-
msgid "Download “%s”"
|
941 |
-
msgstr "Pobierz “%s”"
|
942 |
-
|
943 |
-
#~ msgid "Select File"
|
944 |
-
#~ msgstr "Wybierz plik"
|
945 |
-
|
946 |
-
#~ msgid "Any month"
|
947 |
-
#~ msgstr "Dowolny miesiąc"
|
948 |
-
|
949 |
-
#~ msgid "Downloaded %s time"
|
950 |
-
#~ msgid_plural "Downloaded %s times"
|
951 |
-
#~ msgstr[0] "Pobrano %s raz"
|
952 |
-
#~ msgstr[1] "Pobrano %s razy"
|
953 |
-
#~ msgstr[2] "Pobrano %s razy"
|
954 |
-
|
955 |
-
#~ msgid "1 download"
|
956 |
-
#~ msgid_plural "%d downloads"
|
957 |
-
#~ msgstr[0] "%d plik"
|
958 |
-
#~ msgstr[1] "%d pliki"
|
959 |
-
#~ msgstr[2] "%d plików"
|
960 |
-
|
961 |
-
#~ msgid "Downloaded 1 time"
|
962 |
-
#~ msgid_plural "Downloaded %d times"
|
963 |
-
#~ msgstr[0] "Pobrano %d raz"
|
964 |
-
#~ msgstr[1] "Pobrano %d razy"
|
965 |
-
#~ msgstr[2] "Pobrano %d razy"
|
966 |
-
|
967 |
-
#~ msgid "http://mikejolley.com/projects/download-monitor/"
|
968 |
-
#~ msgstr "http://mikejolley.com/projects/download-monitor/"
|
969 |
-
|
970 |
-
#~ msgid ""
|
971 |
-
#~ "A full solution for managing downloadable files, monitoring downloads and "
|
972 |
-
#~ "outputting download links and file information on your WordPress powered "
|
973 |
-
#~ "site."
|
974 |
-
#~ msgstr ""
|
975 |
-
#~ "Kompletne rozwiązanie do zarządzania pobieraniem plików, monitorowaniem "
|
976 |
-
#~ "plików i informacją o plikach znajdujących się na stronie napędzaniej "
|
977 |
-
#~ "przez WordPress."
|
978 |
-
|
979 |
-
#~ msgid "Mike Jolley"
|
980 |
-
#~ msgstr "Mike Jolley"
|
981 |
-
|
982 |
-
#~ msgid "http://mikejolley.com"
|
983 |
-
#~ msgstr "http://mikejolley.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/download_monitor-sr_RS.mo
DELETED
Binary file
|
languages/download_monitor-sv_SE.mo
DELETED
Binary file
|
languages/download_monitor-tr_TR.mo
DELETED
Binary file
|
languages/download_monitor-tr_TR.po
DELETED
@@ -1,350 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Download Monitor\n"
|
4 |
-
"POT-Creation-Date: 2013-11-26 10:32+0200\n"
|
5 |
-
"PO-Revision-Date: 2013-11-26 10:41+0200\n"
|
6 |
-
"Last-Translator: Serkan Algur <info@wpadami.com>\n"
|
7 |
-
"Language-Team: Serkan Algur <info@wpadami.com>\n"
|
8 |
-
"Language: tr_TR\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 1.5.7\n"
|
13 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;_e\n"
|
14 |
-
"X-Poedit-Basepath: .\n"
|
15 |
-
"X-Poedit-SearchPath-0: C:\\Users\\Ferhan Arman\\Desktop\\download-monitor\n"
|
16 |
-
|
17 |
-
#: C:\Users\Ferhan
|
18 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-addons.php:50
|
19 |
-
msgid "Download Monitor Add-ons"
|
20 |
-
msgstr "Download Monitör Eklentileri"
|
21 |
-
|
22 |
-
#: C:\Users\Ferhan
|
23 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-dashboard.php:69
|
24 |
-
msgid "Download"
|
25 |
-
msgstr "İndir"
|
26 |
-
|
27 |
-
#: C:\Users\Ferhan
|
28 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-dashboard.php:70
|
29 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:49
|
30 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:176
|
31 |
-
msgid "Download count"
|
32 |
-
msgstr "İndirme Sayısı"
|
33 |
-
|
34 |
-
#: C:\Users\Ferhan
|
35 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:78
|
36 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:168
|
37 |
-
msgid "Insert Shortcode"
|
38 |
-
msgstr "KısaKod Ekle"
|
39 |
-
|
40 |
-
#: C:\Users\Ferhan
|
41 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:78
|
42 |
-
msgid "Quick-add download"
|
43 |
-
msgstr "Hızlı Dosya Ekleme"
|
44 |
-
|
45 |
-
#: C:\Users\Ferhan
|
46 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:149
|
47 |
-
msgid "Choose a download"
|
48 |
-
msgstr "Dosya seç"
|
49 |
-
|
50 |
-
#: C:\Users\Ferhan
|
51 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:161
|
52 |
-
msgid "Template"
|
53 |
-
msgstr "şablon"
|
54 |
-
|
55 |
-
#: C:\Users\Ferhan
|
56 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:162
|
57 |
-
msgid "Template Name"
|
58 |
-
msgstr "Şablon Adı"
|
59 |
-
|
60 |
-
#: C:\Users\Ferhan
|
61 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:164
|
62 |
-
msgid ""
|
63 |
-
"Leaving this blank will use the default <code>content-download.php</code> "
|
64 |
-
"template file. If you enter, for example, <code>image</code>, the "
|
65 |
-
"<code>content-download-image.php</code> template will be used instead."
|
66 |
-
msgstr ""
|
67 |
-
"Bu alanı boş bırakmak varsayılan şablonun kullanılmasına <code>content-"
|
68 |
-
"download.php</code> neden olacaktır. Mesela <code>image</code> eklerseniz, "
|
69 |
-
"<code>content-download-image.php</code> şablon dosyası kullanılacaktir. "
|
70 |
-
|
71 |
-
#: C:\Users\Ferhan
|
72 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:179
|
73 |
-
msgid "Drop file here"
|
74 |
-
msgstr "Dosyayı buraya sürükleyin"
|
75 |
-
|
76 |
-
#: C:\Users\Ferhan
|
77 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:180
|
78 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:182
|
79 |
-
msgid "or"
|
80 |
-
msgstr "ya da"
|
81 |
-
|
82 |
-
#: C:\Users\Ferhan
|
83 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:183
|
84 |
-
msgid "Enter URL manually"
|
85 |
-
msgstr "URL elle girin"
|
86 |
-
|
87 |
-
#: C:\Users\Ferhan
|
88 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:189
|
89 |
-
msgid "Download URL"
|
90 |
-
msgstr "İndirme URL"
|
91 |
-
|
92 |
-
#: C:\Users\Ferhan
|
93 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:190
|
94 |
-
msgid "Required URL"
|
95 |
-
msgstr "Gerekli URL"
|
96 |
-
|
97 |
-
#: C:\Users\Ferhan
|
98 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:193
|
99 |
-
msgid "Download Title"
|
100 |
-
msgstr "Dosya Başlığı"
|
101 |
-
|
102 |
-
#: C:\Users\Ferhan
|
103 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:194
|
104 |
-
msgid "Required title"
|
105 |
-
msgstr "Gerekli Başlık"
|
106 |
-
|
107 |
-
#: C:\Users\Ferhan
|
108 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:197
|
109 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:13
|
110 |
-
msgid "Version"
|
111 |
-
msgstr "Versiyon"
|
112 |
-
|
113 |
-
#: C:\Users\Ferhan
|
114 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:198
|
115 |
-
msgid "Optional version number"
|
116 |
-
msgstr "Opsiyonel versiyon numarası"
|
117 |
-
|
118 |
-
#: C:\Users\Ferhan
|
119 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:201
|
120 |
-
msgid "Save Download"
|
121 |
-
msgstr "Dosyayı Kaydet"
|
122 |
-
|
123 |
-
#: C:\Users\Ferhan
|
124 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-insert.php:309
|
125 |
-
msgid "Please wait..."
|
126 |
-
msgstr "Lütfen bekleyin..."
|
127 |
-
|
128 |
-
#: C:\Users\Ferhan
|
129 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-media-browser.php:100
|
130 |
-
msgid "No files found"
|
131 |
-
msgstr "Dosya bulunamadı"
|
132 |
-
|
133 |
-
#: C:\Users\Ferhan
|
134 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-writepanels.php:94
|
135 |
-
msgid "Add version"
|
136 |
-
msgstr "Versiyon Ekle"
|
137 |
-
|
138 |
-
#: C:\Users\Ferhan
|
139 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-writepanels.php:95
|
140 |
-
msgid "Close all"
|
141 |
-
msgstr "Hepsini Kapat"
|
142 |
-
|
143 |
-
#: C:\Users\Ferhan
|
144 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-writepanels.php:95
|
145 |
-
msgid "Expand all"
|
146 |
-
msgstr "Hepsini Aç"
|
147 |
-
|
148 |
-
#: C:\Users\Ferhan
|
149 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin-writepanels.php:220
|
150 |
-
msgid "Are you sure you want to delete this file?"
|
151 |
-
msgstr "Dosyayı silmek istediğinizden emin misiniz?"
|
152 |
-
|
153 |
-
#: C:\Users\Ferhan
|
154 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin.php:358
|
155 |
-
msgid "Save Changes"
|
156 |
-
msgstr "Değişiklikleri Kaydet"
|
157 |
-
|
158 |
-
#: C:\Users\Ferhan
|
159 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin.php:402
|
160 |
-
msgid "Download Logs"
|
161 |
-
msgstr "İndirme Kayıtları"
|
162 |
-
|
163 |
-
#: C:\Users\Ferhan
|
164 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin.php:402
|
165 |
-
msgid "Export CSV"
|
166 |
-
msgstr "CSV olarak dışa aktar"
|
167 |
-
|
168 |
-
#: C:\Users\Ferhan
|
169 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-admin.php:402
|
170 |
-
msgid "Delete Logs"
|
171 |
-
msgstr "Kayıtları Sil"
|
172 |
-
|
173 |
-
#: C:\Users\Ferhan
|
174 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:142
|
175 |
-
msgid "Any status"
|
176 |
-
msgstr "Durum"
|
177 |
-
|
178 |
-
#: C:\Users\Ferhan
|
179 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:143
|
180 |
-
msgid "Failed"
|
181 |
-
msgstr "Başarısız"
|
182 |
-
|
183 |
-
#: C:\Users\Ferhan
|
184 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:144
|
185 |
-
msgid "Redirected"
|
186 |
-
msgstr "Yönlendirildi"
|
187 |
-
|
188 |
-
#: C:\Users\Ferhan
|
189 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:145
|
190 |
-
msgid "Completed"
|
191 |
-
msgstr "Tamamlandı"
|
192 |
-
|
193 |
-
#: C:\Users\Ferhan
|
194 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:164
|
195 |
-
msgid "Show all dates"
|
196 |
-
msgstr "Tüm tarihleri göster"
|
197 |
-
|
198 |
-
#: C:\Users\Ferhan
|
199 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:185
|
200 |
-
msgid "25 per page"
|
201 |
-
msgstr "Sayfa başına 25"
|
202 |
-
|
203 |
-
#: C:\Users\Ferhan
|
204 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:186
|
205 |
-
msgid "50 per page"
|
206 |
-
msgstr "Sayfa başına 50"
|
207 |
-
|
208 |
-
#: C:\Users\Ferhan
|
209 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:187
|
210 |
-
msgid "100 per page"
|
211 |
-
msgstr "Sayfa başına 100"
|
212 |
-
|
213 |
-
#: C:\Users\Ferhan
|
214 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:188
|
215 |
-
msgid "200 per page"
|
216 |
-
msgstr "Sayfa başına 200"
|
217 |
-
|
218 |
-
#: C:\Users\Ferhan
|
219 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:189
|
220 |
-
msgid "Show All"
|
221 |
-
msgstr "Tümünü Göster"
|
222 |
-
|
223 |
-
#: C:\Users\Ferhan
|
224 |
-
#: Arman\Desktop\download-monitor/includes/admin/class-dlm-logging-list-table.php:193
|
225 |
-
msgid "Filter"
|
226 |
-
msgstr "Filtrele"
|
227 |
-
|
228 |
-
#: C:\Users\Ferhan
|
229 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:3
|
230 |
-
msgid "Remove"
|
231 |
-
msgstr "Kaldır"
|
232 |
-
|
233 |
-
#: C:\Users\Ferhan
|
234 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:4
|
235 |
-
msgid "Click to toggle"
|
236 |
-
msgstr "Açmak için tıklayın"
|
237 |
-
|
238 |
-
#: C:\Users\Ferhan
|
239 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:14
|
240 |
-
msgid "n/a"
|
241 |
-
msgstr "n/a"
|
242 |
-
|
243 |
-
#: C:\Users\Ferhan
|
244 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:18
|
245 |
-
msgid "File URL(s)"
|
246 |
-
msgstr "Dosya Link(ler)i"
|
247 |
-
|
248 |
-
#: C:\Users\Ferhan
|
249 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:19
|
250 |
-
msgid ""
|
251 |
-
"Enter one file path/URL per line - multiple files will be used as mirrors "
|
252 |
-
"(chosen at random)."
|
253 |
-
msgstr ""
|
254 |
-
"Lütfen her satıra bir link/dosya yolu ekleyiniz. Çoklu dosyalar ayna "
|
255 |
-
"bağlantı olarak kullanılacak (rastgele olarak)"
|
256 |
-
|
257 |
-
#: C:\Users\Ferhan
|
258 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:55
|
259 |
-
msgid "File Date"
|
260 |
-
msgstr "Dosya Tarihi"
|
261 |
-
|
262 |
-
#: C:\Users\Ferhan
|
263 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:56
|
264 |
-
msgid "h"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: C:\Users\Ferhan
|
268 |
-
#: Arman\Desktop\download-monitor/includes/admin/html-downloadable-file-version.php:56
|
269 |
-
msgid "m"
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: C:\Users\Ferhan
|
273 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:157
|
274 |
-
msgid "Title:"
|
275 |
-
msgstr "Başlık"
|
276 |
-
|
277 |
-
#: C:\Users\Ferhan
|
278 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:161
|
279 |
-
msgid "Limit:"
|
280 |
-
msgstr "Limit:"
|
281 |
-
|
282 |
-
#: C:\Users\Ferhan
|
283 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:165
|
284 |
-
msgid "Output template:"
|
285 |
-
msgstr "Gösterim Şablonu:"
|
286 |
-
|
287 |
-
#: C:\Users\Ferhan
|
288 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:166
|
289 |
-
msgid "Default template"
|
290 |
-
msgstr "Varsayılan Şablon"
|
291 |
-
|
292 |
-
#: C:\Users\Ferhan
|
293 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:169
|
294 |
-
msgid "Order by:"
|
295 |
-
msgstr "Sırala: "
|
296 |
-
|
297 |
-
#: C:\Users\Ferhan
|
298 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:171
|
299 |
-
msgid "Title"
|
300 |
-
msgstr "Başlık"
|
301 |
-
|
302 |
-
#: C:\Users\Ferhan
|
303 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:172
|
304 |
-
msgid "Random"
|
305 |
-
msgstr "Rastgele"
|
306 |
-
|
307 |
-
#: C:\Users\Ferhan
|
308 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:173
|
309 |
-
msgid "ID"
|
310 |
-
msgstr "ID"
|
311 |
-
|
312 |
-
#: C:\Users\Ferhan
|
313 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:174
|
314 |
-
msgid "Date added"
|
315 |
-
msgstr "Eklenme tarihi"
|
316 |
-
|
317 |
-
#: C:\Users\Ferhan
|
318 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:175
|
319 |
-
msgid "Date modified"
|
320 |
-
msgstr "Düzenlenme tarihi"
|
321 |
-
|
322 |
-
#: C:\Users\Ferhan
|
323 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:180
|
324 |
-
msgid "Order:"
|
325 |
-
msgstr "Sorala: "
|
326 |
-
|
327 |
-
#: C:\Users\Ferhan
|
328 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:182
|
329 |
-
msgid "ASC"
|
330 |
-
msgstr "ASC"
|
331 |
-
|
332 |
-
#: C:\Users\Ferhan
|
333 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:183
|
334 |
-
msgid "DESC"
|
335 |
-
msgstr "DESC"
|
336 |
-
|
337 |
-
#: C:\Users\Ferhan
|
338 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:188
|
339 |
-
msgid "Show only featured downloads"
|
340 |
-
msgstr "Sadece öne çıkan dosyaları göster"
|
341 |
-
|
342 |
-
#: C:\Users\Ferhan
|
343 |
-
#: Arman\Desktop\download-monitor/includes/widgets/class-dlm-widget-downloads.php:192
|
344 |
-
msgid "Show only members only downloads"
|
345 |
-
msgstr "Sadece üyeler için olan dosyaları göster"
|
346 |
-
|
347 |
-
#: C:\Users\Ferhan
|
348 |
-
#: Arman\Desktop\download-monitor/templates/content-download-box.php:21
|
349 |
-
msgid "Download File"
|
350 |
-
msgstr "Dosyayı İndir"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "download-monitor",
|
3 |
+
"title": "Download Monitor",
|
4 |
+
"version": "",
|
5 |
+
"homepage": "",
|
6 |
+
"main": "Gruntfile.js",
|
7 |
+
"devDependencies": {
|
8 |
+
"grunt": "~0.4.4",
|
9 |
+
"grunt-contrib-uglify": "~0.4.0",
|
10 |
+
"grunt-contrib-less": "~0.11.0",
|
11 |
+
"grunt-contrib-cssmin": "~0.7.0",
|
12 |
+
"grunt-shell": "~0.6.4",
|
13 |
+
"grunt-contrib-watch": "~0.5.3"
|
14 |
+
},
|
15 |
+
"engines": {
|
16 |
+
"node": ">=0.8.0",
|
17 |
+
"npm": ">=1.1.0"
|
18 |
+
}
|
19 |
+
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: mikejolley
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mike.jolley@me.com&item_name=Donation+for+Download+Monitor
|
4 |
Tags: download, downloads, monitor, hits, download monitor, tracking, admin, count, counter, files, versions, download count, logging
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3
|
9 |
|
10 |
Download Monitor is a plugin for uploading and managing downloads, tracking downloads, and displaying links.
|
@@ -38,7 +38,9 @@ Add-ons, such as the __legacy importer__ and __page addon__ can be [found here](
|
|
38 |
|
39 |
= Contributing and reporting bugs =
|
40 |
|
41 |
-
You can contribute code
|
|
|
|
|
42 |
|
43 |
= Support =
|
44 |
|
@@ -108,6 +110,22 @@ Admin hits are not counted, log out and try!
|
|
108 |
|
109 |
== Changelog ==
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
= 1.4.3 =
|
112 |
* Add password form to download page when required
|
113 |
* Run shortcodes in excerpt/short desc
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mike.jolley@me.com&item_name=Donation+for+Download+Monitor
|
4 |
Tags: download, downloads, monitor, hits, download monitor, tracking, admin, count, counter, files, versions, download count, logging
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 3.9
|
7 |
+
Stable tag: 1.5.0
|
8 |
License: GPLv3
|
9 |
|
10 |
Download Monitor is a plugin for uploading and managing downloads, tracking downloads, and displaying links.
|
38 |
|
39 |
= Contributing and reporting bugs =
|
40 |
|
41 |
+
You can contribute code to this plugin via GitHub: [https://github.com/mikejolley/download-monitor](https://github.com/mikejolley/download-monitor)
|
42 |
+
|
43 |
+
You can contribute localizations via Transifex [https://www.transifex.com/projects/p/download-monitor/](https://www.transifex.com/projects/p/download-monitor/)
|
44 |
|
45 |
= Support =
|
46 |
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= 1.5.0 =
|
114 |
+
* JSON_UNESCAPED_UNICODE for files to fix unicode chars when json encoded. Fix needs PHP 5.4+ to work, but won't break lower versions.
|
115 |
+
* Style filetype-docx
|
116 |
+
* Update get_version_id to work with non-numeric versions.
|
117 |
+
* Fix shortcode arg booleans.
|
118 |
+
* Add transient cache for get_file_version_ids.
|
119 |
+
* Moved all translations to Transifex - https://www.transifex.com/projects/p/download-monitor/
|
120 |
+
* Changed text domain from download_monitor to download-monitor.
|
121 |
+
* Added Grunt.
|
122 |
+
* Added options to generate file hashes DISABLED BY DEFAULT as they can cause performance issues with large files.
|
123 |
+
|
124 |
+
= 1.4.4 =
|
125 |
+
* Use home_dir instead of site_dir - fixes hot-linking protections against own site (when not in root dir)
|
126 |
+
* Replace hardcoded WP_CONTENT_DIR and WP_CONTENT_URL with wp_upload_dir to work when UPLOADS and UPLOADS_URL constants are set.
|
127 |
+
* Added some filters for hotlink protection customisation.
|
128 |
+
|
129 |
= 1.4.3 =
|
130 |
* Add password form to download page when required
|
131 |
* Run shortcodes in excerpt/short desc
|
templates/content-download-box.php
CHANGED
@@ -9,7 +9,7 @@ global $dlm_download;
|
|
9 |
|
10 |
<?php $dlm_download->the_image(); ?>
|
11 |
|
12 |
-
<div class="download-count"><?php printf( _n( '1 download', '%d downloads', $dlm_download->get_the_download_count(), '
|
13 |
|
14 |
<div class="download-box-content">
|
15 |
|
@@ -17,8 +17,8 @@ global $dlm_download;
|
|
17 |
|
18 |
<?php $dlm_download->the_short_description(); ?>
|
19 |
|
20 |
-
<a class="download-button" title="<?php if ( $dlm_download->has_version_number() ) printf( __( 'Version %s', '
|
21 |
-
<?php _e( 'Download File', '
|
22 |
<small><?php $dlm_download->the_filename(); ?> – <?php $dlm_download->the_filesize(); ?></small>
|
23 |
</a>
|
24 |
|
9 |
|
10 |
<?php $dlm_download->the_image(); ?>
|
11 |
|
12 |
+
<div class="download-count"><?php printf( _n( '1 download', '%d downloads', $dlm_download->get_the_download_count(), 'download-monitor' ), $dlm_download->get_the_download_count() ) ?></div>
|
13 |
|
14 |
<div class="download-box-content">
|
15 |
|
17 |
|
18 |
<?php $dlm_download->the_short_description(); ?>
|
19 |
|
20 |
+
<a class="download-button" title="<?php if ( $dlm_download->has_version_number() ) printf( __( 'Version %s', 'download-monitor' ), $dlm_download->get_the_version_number() ); ?>" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow">
|
21 |
+
<?php _e( 'Download File', 'download-monitor' ); ?>
|
22 |
<small><?php $dlm_download->the_filename(); ?> – <?php $dlm_download->the_filesize(); ?></small>
|
23 |
</a>
|
24 |
|
templates/content-download-button.php
CHANGED
@@ -6,6 +6,6 @@
|
|
6 |
global $dlm_download, $download_monitor;
|
7 |
?>
|
8 |
<p><a class="aligncenter download-button" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow">
|
9 |
-
<?php printf( __( 'Download “%s”', '
|
10 |
-
<small><?php $dlm_download->the_filename(); ?> – <?php printf( _n( 'Downloaded 1 time', 'Downloaded %d times', $dlm_download->get_the_download_count(), '
|
11 |
</a></p>
|
6 |
global $dlm_download, $download_monitor;
|
7 |
?>
|
8 |
<p><a class="aligncenter download-button" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow">
|
9 |
+
<?php printf( __( 'Download “%s”', 'download-monitor' ), $dlm_download->get_the_title() ); ?>
|
10 |
+
<small><?php $dlm_download->the_filename(); ?> – <?php printf( _n( 'Downloaded 1 time', 'Downloaded %d times', $dlm_download->get_the_download_count(), 'download-monitor' ), $dlm_download->get_the_download_count() ) ?> – <?php $dlm_download->the_filesize(); ?></small>
|
11 |
</a></p>
|
templates/content-download-filename.php
CHANGED
@@ -5,6 +5,6 @@
|
|
5 |
|
6 |
global $dlm_download;
|
7 |
?>
|
8 |
-
<a class="download-link filetype-icon <?php echo 'filetype-' . $dlm_download->get_the_filetype(); ?>" title="<?php if ( $dlm_download->has_version_number() ) printf( __( 'Version %s', '
|
9 |
-
<?php $dlm_download->the_filename(); ?> (<?php printf( _n( '1 download', '%d downloads', $dlm_download->get_the_download_count(), '
|
10 |
</a>
|
5 |
|
6 |
global $dlm_download;
|
7 |
?>
|
8 |
+
<a class="download-link filetype-icon <?php echo 'filetype-' . $dlm_download->get_the_filetype(); ?>" title="<?php if ( $dlm_download->has_version_number() ) printf( __( 'Version %s', 'download-monitor' ), $dlm_download->get_the_version_number() ); ?>" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow">
|
9 |
+
<?php $dlm_download->the_filename(); ?> (<?php printf( _n( '1 download', '%d downloads', $dlm_download->get_the_download_count(), 'download-monitor' ), $dlm_download->get_the_download_count() ) ?>)
|
10 |
</a>
|
templates/content-download-title.php
CHANGED
@@ -5,6 +5,6 @@
|
|
5 |
|
6 |
global $dlm_download;
|
7 |
?>
|
8 |
-
<a class="download-link" title="<?php if ( $dlm_download->has_version_number() ) printf( __( 'Version %s', '
|
9 |
<?php $dlm_download->the_title(); ?>
|
10 |
</a>
|
5 |
|
6 |
global $dlm_download;
|
7 |
?>
|
8 |
+
<a class="download-link" title="<?php if ( $dlm_download->has_version_number() ) printf( __( 'Version %s', 'download-monitor' ), $dlm_download->get_the_version_number() ); ?>" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow">
|
9 |
<?php $dlm_download->the_title(); ?>
|
10 |
</a>
|
templates/content-download-version-list.php
CHANGED
@@ -14,7 +14,7 @@ if ( $versions ) : ?>
|
|
14 |
$dlm_download->set_version( $version->id );
|
15 |
$version_post = get_post( $version->id );
|
16 |
?>
|
17 |
-
<li><a class="download-link" title="<?php printf( _n( 'Downloaded 1 time', 'Downloaded %d times', $dlm_download->get_the_download_count(), '
|
18 |
<?php $dlm_download->the_filename(); ?> <?php if ( $dlm_download->has_version_number() ) echo '- ' . $dlm_download->get_the_version_number(); ?>
|
19 |
</a></li>
|
20 |
<?php
|
14 |
$dlm_download->set_version( $version->id );
|
15 |
$version_post = get_post( $version->id );
|
16 |
?>
|
17 |
+
<li><a class="download-link" title="<?php printf( _n( 'Downloaded 1 time', 'Downloaded %d times', $dlm_download->get_the_download_count(), 'download-monitor' ), $dlm_download->get_the_download_count() ) ?>" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow">
|
18 |
<?php $dlm_download->the_filename(); ?> <?php if ( $dlm_download->has_version_number() ) echo '- ' . $dlm_download->get_the_version_number(); ?>
|
19 |
</a></li>
|
20 |
<?php
|
templates/content-download.php
CHANGED
@@ -5,6 +5,6 @@
|
|
5 |
|
6 |
global $dlm_download;
|
7 |
?>
|
8 |
-
<a class="download-link" title="<?php if ( $dlm_download->has_version_number() ) printf( __( 'Version %s', '
|
9 |
-
<?php $dlm_download->the_title(); ?> (<?php printf( _n( '1 download', '%d downloads', $dlm_download->get_the_download_count(), '
|
10 |
</a>
|
5 |
|
6 |
global $dlm_download;
|
7 |
?>
|
8 |
+
<a class="download-link" title="<?php if ( $dlm_download->has_version_number() ) printf( __( 'Version %s', 'download-monitor' ), $dlm_download->get_the_version_number() ); ?>" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow">
|
9 |
+
<?php $dlm_download->the_title(); ?> (<?php printf( _n( '1 download', '%d downloads', $dlm_download->get_the_download_count(), 'download-monitor' ), $dlm_download->get_the_download_count() ) ?>)
|
10 |
</a>
|