Version Description
Download this release
Release Info
Developer | qqworld |
Plugin | QQWorld Auto Save Images |
Version | 1.7.13.9 |
Comparing to | |
See all releases |
Code changes from version 1.7.13.8 to 1.7.13.9
- css/style.css +24 -8
- js/admin.js +0 -149
- lang/qqworld_auto_save_images-zh_CN.mo +0 -0
- lang/qqworld_auto_save_images-zh_CN.po +598 -652
- lang/qqworld_auto_save_images-zh_TW.mo +0 -0
- lang/qqworld_auto_save_images-zh_TW.po +589 -636
- qqworld-auto-save-images.php +113 -747
css/style.css
CHANGED
@@ -107,33 +107,49 @@
|
|
107 |
#post_types_list, #exclude_domain_list {
|
108 |
margin: 0;
|
109 |
}
|
110 |
-
#scan_old_post_list
|
|
|
111 |
border-collapse: collapse;
|
112 |
-
width: 100%;
|
113 |
border: 1px solid #e4e4e4;
|
114 |
border-bottom: 3px solid #e4e4e4;
|
115 |
text-align: left;
|
116 |
background: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
}
|
118 |
-
#scan_old_post_list tbody tr:nth-child(odd)
|
|
|
119 |
background: #fafafa;
|
120 |
}
|
121 |
-
#scan_old_post_list tbody tr:hover
|
|
|
122 |
background: #fcfcb7;
|
123 |
}
|
124 |
-
#scan_old_post_list tbody tr a
|
|
|
125 |
text-decoration: none;
|
126 |
}
|
127 |
-
#scan_old_post_list thead tr
|
|
|
128 |
background: #2ea2cc;
|
129 |
border-bottom: 2px solid #0074a2;
|
130 |
color: #fff;
|
131 |
}
|
132 |
-
#scan_old_post_list td, #scan_old_post_list th
|
|
|
133 |
padding: 5px 20px;
|
134 |
border-bottom: 1px solid #e4e4e4;
|
135 |
}
|
136 |
-
#
|
|
|
|
|
|
|
|
|
137 |
padding: 1px 0 0 0;
|
138 |
}
|
139 |
#scan_old_post_list .green {
|
107 |
#post_types_list, #exclude_domain_list {
|
108 |
margin: 0;
|
109 |
}
|
110 |
+
#scan_old_post_list,
|
111 |
+
#comparison-table {
|
112 |
border-collapse: collapse;
|
|
|
113 |
border: 1px solid #e4e4e4;
|
114 |
border-bottom: 3px solid #e4e4e4;
|
115 |
text-align: left;
|
116 |
background: #fff;
|
117 |
+
width: 100%;
|
118 |
+
}
|
119 |
+
#comparison-table thead th {
|
120 |
+
color: #fff;
|
121 |
+
}
|
122 |
+
#comparison-table .comparison-cell {
|
123 |
+
width: 70px;
|
124 |
}
|
125 |
+
#scan_old_post_list tbody tr:nth-child(odd),
|
126 |
+
#comparison-table tbody tr:nth-child(odd) {
|
127 |
background: #fafafa;
|
128 |
}
|
129 |
+
#scan_old_post_list tbody tr:hover,
|
130 |
+
#comparison-table tbody tr:hover {
|
131 |
background: #fcfcb7;
|
132 |
}
|
133 |
+
#scan_old_post_list tbody tr a,
|
134 |
+
#comparison-table tbody tr a {
|
135 |
text-decoration: none;
|
136 |
}
|
137 |
+
#scan_old_post_list thead tr,
|
138 |
+
#comparison-table thead tr {
|
139 |
background: #2ea2cc;
|
140 |
border-bottom: 2px solid #0074a2;
|
141 |
color: #fff;
|
142 |
}
|
143 |
+
#scan_old_post_list td, #scan_old_post_list th,
|
144 |
+
#comparison-table td, #comparison-table th {
|
145 |
padding: 5px 20px;
|
146 |
border-bottom: 1px solid #e4e4e4;
|
147 |
}
|
148 |
+
#comparison-table td, #comparison-table th {
|
149 |
+
padding: 15px 20px;
|
150 |
+
}
|
151 |
+
#scan_old_post_list td.hr,
|
152 |
+
#comparison-table td.hr {
|
153 |
padding: 1px 0 0 0;
|
154 |
}
|
155 |
#scan_old_post_list .green {
|
js/admin.js
CHANGED
@@ -69,21 +69,6 @@ QQWorld_auto_save_images.scan_posts = function() {
|
|
69 |
|
70 |
this.action = {};
|
71 |
|
72 |
-
this.action.set_watermark_opacity = function() {
|
73 |
-
var opacity = $('#watermark-opacity').val();
|
74 |
-
$('#watermark-test').fadeTo('normal', opacity/100);
|
75 |
-
};
|
76 |
-
this.action.get_watermark_size = function() {
|
77 |
-
_this.watermark.width = $('#watermark-test').width();
|
78 |
-
_this.watermark.height = $('#watermark-test').height();
|
79 |
-
_this.image.width = $('#photo-test').width();
|
80 |
-
_this.image.height = $('#photo-test').height();
|
81 |
-
_this.offset.top.full = parseInt(_this.image.height - _this.watermark.height);
|
82 |
-
_this.offset.left.full = parseInt(_this.image.width - _this.watermark.width);
|
83 |
-
_this.offset.top.half = parseInt(_this.offset.top.full/2);
|
84 |
-
_this.offset.left.half = parseInt(_this.offset.left.full/2);
|
85 |
-
};
|
86 |
-
|
87 |
this.action.catch_errors = function(XMLHttpRequest, textStatus, errorThrown) {
|
88 |
var error='', args=new Array;
|
89 |
error += '<div style="text-align: left;">';
|
@@ -291,11 +276,9 @@ QQWorld_auto_save_images.scan_posts = function() {
|
|
291 |
});
|
292 |
$('#auto').on('click', function() {
|
293 |
$('#second_level').fadeIn('fast');
|
294 |
-
$('#manual-demo').fadeOut('fast');
|
295 |
});
|
296 |
$('#manual').on('click', function() {
|
297 |
$('#second_level').fadeOut('fast');
|
298 |
-
$('#manual-demo').fadeIn('fast');
|
299 |
});
|
300 |
$('#scan_old_posts').on('click', function() {
|
301 |
if (jQuery('input[name="qqworld_auto_save_images_post_types[]"]:checked').length) {
|
@@ -481,141 +464,9 @@ QQWorld_auto_save_images.scan_posts = function() {
|
|
481 |
}
|
482 |
});
|
483 |
|
484 |
-
$(document).on('change', '#optimize-mode', function() {
|
485 |
-
var index = $(this).get(0).selectedIndex;
|
486 |
-
var optimize_table = $('.optimize-table');
|
487 |
-
optimize_table.not(optimize_table.eq(index)).slideUp('normal');
|
488 |
-
optimize_table.eq(index).slideDown('normal');
|
489 |
-
});
|
490 |
-
|
491 |
-
$(document).on('click', '#test-ftp', function() {
|
492 |
-
var button = $(this);
|
493 |
-
button.attr('disabled', true);
|
494 |
-
$('body').data('noty', noty({
|
495 |
-
text: wait_img,
|
496 |
-
type: 'notification',
|
497 |
-
layout: 'center',
|
498 |
-
theme: noty_theme
|
499 |
-
}) );
|
500 |
-
$.ajax({
|
501 |
-
type: 'POST',
|
502 |
-
url: ajaxurl,
|
503 |
-
data: {
|
504 |
-
action: 'auto_save_images_test_ftp'
|
505 |
-
},
|
506 |
-
dataType: 'json',
|
507 |
-
success: function(respond) {
|
508 |
-
$('body').data('noty').close();
|
509 |
-
var options = {
|
510 |
-
text: respond.msg,
|
511 |
-
layout: 'center',
|
512 |
-
timeout: 3000,
|
513 |
-
theme: noty_theme
|
514 |
-
};
|
515 |
-
options.type = respond.success ? 'success' : 'error';
|
516 |
-
var n = noty(options);
|
517 |
-
button.removeAttr('disabled');
|
518 |
-
},
|
519 |
-
error: _this.action.catch_errors
|
520 |
-
});
|
521 |
-
});
|
522 |
-
|
523 |
-
$(document).on('change', '#watermark-opacity', _this.action.set_watermark_opacity).on('keyup', '#watermark-opacity', _this.action.set_watermark_opacity);
|
524 |
-
|
525 |
-
$(document).on('click', '#for-watermark-image', function() {
|
526 |
-
$('#upload-watermark-image').click();
|
527 |
-
});
|
528 |
-
|
529 |
-
// watermark postion
|
530 |
-
$(document).on('click', 'input[name="qqworld-auto-save-images-watermark-align-to"]', function() {
|
531 |
-
var id = $(this).attr('id'),
|
532 |
-
top, right, bottom, left,
|
533 |
-
default_offset = 20,
|
534 |
-
offset = {};
|
535 |
-
switch (id) {
|
536 |
-
case 'lt': offset.x = offset.y = default_offset; top = default_offset; left = default_offset; break;
|
537 |
-
case 'ct': offset.x = 0; offset.y = default_offset; top = default_offset; left = _this.offset.left.half; break;
|
538 |
-
case 'rt': offset.x = -default_offset; offset.y = default_offset; top = default_offset; left = _this.offset.left.full-default_offset; break;
|
539 |
-
case 'lc': offset.x = default_offset; offset.y = 0; top = _this.offset.top.half; left = default_offset; break;
|
540 |
-
case 'cc': offset.x = 0; offset.y = 0; top = _this.offset.top.half; left = _this.offset.left.half; break;
|
541 |
-
case 'rc': offset.x = -default_offset; offset.y = 0; top = _this.offset.top.half; left = _this.offset.left.full-default_offset; break;
|
542 |
-
case 'lb': offset.x = default_offset; offset.y = -default_offset; top = _this.offset.top.full-default_offset; left = default_offset; break;
|
543 |
-
case 'cb': offset.x = 0; offset.y = -default_offset; top = _this.offset.top.full-default_offset; left = _this.offset.left.half; break;
|
544 |
-
case 'rb': offset.x = -default_offset; offset.y = -default_offset; top = _this.offset.top.full-default_offset; left = _this.offset.left.full-default_offset; break;
|
545 |
-
};
|
546 |
-
$('#watermark-test').animate({
|
547 |
-
top : top,
|
548 |
-
left: left
|
549 |
-
}, 'fast');
|
550 |
-
$('#offset-x').val(offset.x);
|
551 |
-
$('#offset-y').val(offset.y);
|
552 |
-
});
|
553 |
-
|
554 |
-
$(document).on('click', '#upload-watermark-image', function(event) {
|
555 |
-
event.preventDefault();
|
556 |
-
var title = $(this).attr('title'),
|
557 |
-
id = $(this).attr('id');
|
558 |
-
if ( typeof _this.file_frame == 'object' ) {
|
559 |
-
_this.file_frame.open();
|
560 |
-
return;
|
561 |
-
}
|
562 |
-
_this.file_frame = wp.media.frames.file_frame = wp.media({
|
563 |
-
title: title,
|
564 |
-
button: {
|
565 |
-
text: title,
|
566 |
-
},
|
567 |
-
multiple: false
|
568 |
-
});
|
569 |
-
_this.file_frame.on( 'open', function() {
|
570 |
-
var selection = _this.file_frame.state().get('selection');
|
571 |
-
var attachment_id = $('input[name="qqworld-auto-save-images-watermark-image"]').val();
|
572 |
-
if (attachment_id) {
|
573 |
-
var attachment = wp.media.attachment(attachment_id);
|
574 |
-
attachment.fetch();
|
575 |
-
selection.add( attachment ? [ attachment ] : [] );
|
576 |
-
}
|
577 |
-
});
|
578 |
-
_this.file_frame.on('select', function() {
|
579 |
-
var attachment = _this.file_frame.state().get('selection').first().toJSON();
|
580 |
-
var id = attachment.id;
|
581 |
-
$('input[name="qqworld-auto-save-images-watermark-image"]').val(id);
|
582 |
-
var url = attachment.url;
|
583 |
-
$('#upload-watermark-image img').attr('src', url);
|
584 |
-
$('#watermark-test').attr({
|
585 |
-
src: url,
|
586 |
-
width: attachment.sizes.full.width,
|
587 |
-
height: attachment.sizes.full.height
|
588 |
-
});
|
589 |
-
$('#lt').click();
|
590 |
-
_this.action.get_watermark_size();
|
591 |
-
$('#default-watermark').fadeIn();
|
592 |
-
});
|
593 |
-
_this.file_frame.open();
|
594 |
-
});
|
595 |
-
|
596 |
-
$(document).on('click', '#default-watermark', function() {
|
597 |
-
var src = QASI.default_watermark.src;
|
598 |
-
$('#upload-watermark-image img').attr('src', src);
|
599 |
-
$('#watermark-test').attr({
|
600 |
-
src: src,
|
601 |
-
width: QASI.default_watermark.width,
|
602 |
-
height: QASI.default_watermark.height
|
603 |
-
});
|
604 |
-
$('input[name="qqworld-auto-save-images-watermark-image"]').val('');
|
605 |
-
$('#lt').click();
|
606 |
-
_this.action.get_watermark_size();
|
607 |
-
});
|
608 |
-
|
609 |
-
$(document).on('click', '#Preview Watermark', function() {
|
610 |
-
tb_show($(this).attr('title'), $(this).attr('href'));
|
611 |
-
});
|
612 |
$(document).on('change', '#qqworld_auto_save_images_minimum_picture_size_width', function() {
|
613 |
$('#qqworld_auto_save_images_minimum_picture_size_height').val($(this).val());
|
614 |
});
|
615 |
-
|
616 |
-
$(document).on('click', '#cron_scan_posts', function() {
|
617 |
-
$('#cron-tab').click();
|
618 |
-
});
|
619 |
};
|
620 |
|
621 |
this.create.watermark_init = function() {
|
69 |
|
70 |
this.action = {};
|
71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
this.action.catch_errors = function(XMLHttpRequest, textStatus, errorThrown) {
|
73 |
var error='', args=new Array;
|
74 |
error += '<div style="text-align: left;">';
|
276 |
});
|
277 |
$('#auto').on('click', function() {
|
278 |
$('#second_level').fadeIn('fast');
|
|
|
279 |
});
|
280 |
$('#manual').on('click', function() {
|
281 |
$('#second_level').fadeOut('fast');
|
|
|
282 |
});
|
283 |
$('#scan_old_posts').on('click', function() {
|
284 |
if (jQuery('input[name="qqworld_auto_save_images_post_types[]"]:checked').length) {
|
464 |
}
|
465 |
});
|
466 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
$(document).on('change', '#qqworld_auto_save_images_minimum_picture_size_width', function() {
|
468 |
$('#qqworld_auto_save_images_minimum_picture_size_height').val($(this).val());
|
469 |
});
|
|
|
|
|
|
|
|
|
470 |
};
|
471 |
|
472 |
this.create.watermark_init = function() {
|
lang/qqworld_auto_save_images-zh_CN.mo
CHANGED
Binary file
|
lang/qqworld_auto_save_images-zh_CN.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: QQworld Auto Save Images\n"
|
4 |
"Report-Msgid-Bugs-To: http://www.qqworld.org\n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Michael Wang <admin@qqworld.org>\n"
|
8 |
"Language-Team: QQWorld <admin@qqworld.org>\n"
|
9 |
"Language: zh_CN\n"
|
@@ -19,244 +19,226 @@ msgstr ""
|
|
19 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#: qqworld-auto-save-images.php:
|
23 |
msgid "Michael Wang"
|
24 |
msgstr "王晓骞"
|
25 |
|
26 |
-
#: qqworld-auto-save-images.php:
|
27 |
msgid " (In Development)"
|
28 |
msgstr "(开发中)"
|
29 |
|
30 |
-
#: qqworld-auto-save-images.php:
|
31 |
msgid ""
|
32 |
"Your server PHP does not support cUrl, please remove ';' from in front of "
|
33 |
"extension=php_curl.dll in the php.ini."
|
34 |
msgstr ""
|
35 |
"你的服务器PHP不支持cUrl,请在php.ini中移除extension=php_curl.dll前面的‘;’。"
|
36 |
|
37 |
-
#: qqworld-auto-save-images.php:
|
38 |
msgid ""
|
39 |
"Your server PHP does not support GD2, please remove ';' from in front of "
|
40 |
"extension=php_gd2.dll in the <strong>php.ini</strong>."
|
41 |
msgstr ""
|
42 |
"你的服務器PHP不支持GD2,請在php.ini中移除extension=php_gd2.dll前面的‘;’。"
|
43 |
|
44 |
-
#: qqworld-auto-save-images.php:
|
45 |
msgid ""
|
46 |
"Your server PHP does not support fopen, please set allow_url_fopen=1 in the "
|
47 |
"php.ini."
|
48 |
msgstr "你的服务器PHP不支持fopen,请在php.ini中设置allow_url_fopen=1。"
|
49 |
|
50 |
-
#: qqworld-auto-save-images.php:
|
51 |
msgid "No taxonomies found."
|
52 |
msgstr "没有相关分类方法。"
|
53 |
|
54 |
-
#: qqworld-auto-save-images.php:
|
55 |
-
#: qqworld-auto-save-images.php:
|
56 |
msgid "All remote images have been saved."
|
57 |
msgstr "已保存所有远程图像。"
|
58 |
|
59 |
-
#: qqworld-auto-save-images.php:
|
60 |
#, php-format
|
61 |
msgid " <a href=\"%s\">View</a>"
|
62 |
msgstr " <a href=\"%s\">查看</a>"
|
63 |
|
64 |
-
#: qqworld-auto-save-images.php:
|
65 |
msgid "Has missing images or image which could not download."
|
66 |
msgstr "内容包含 不存在/无法下载 的图像。"
|
67 |
|
68 |
-
#: qqworld-auto-save-images.php:
|
69 |
msgid "In Process..."
|
70 |
msgstr "正在保存……"
|
71 |
|
72 |
-
#: qqworld-auto-save-images.php:
|
73 |
msgid "Something error, please check."
|
74 |
msgstr "出错了,请检查。"
|
75 |
|
76 |
-
#: qqworld-auto-save-images.php:
|
77 |
msgid ""
|
78 |
"Are you sure?<br />Before you click the yes button, I recommend backup site "
|
79 |
"database."
|
80 |
msgstr "你确定吗?<br />在点击确定按钮之前,我建议你备份网站的数据库。"
|
81 |
|
82 |
-
#: qqworld-auto-save-images.php:
|
83 |
msgid "Please select post types."
|
84 |
msgstr "请选择文章类型。"
|
85 |
|
86 |
-
#: qqworld-auto-save-images.php:
|
87 |
msgid "May be a problem with some posts: "
|
88 |
msgstr "也许一些文章有问题:"
|
89 |
|
90 |
-
#: qqworld-auto-save-images.php:
|
91 |
#, php-format
|
92 |
msgid "No need enter \"%s\"."
|
93 |
msgstr "不需要输入“%s”。"
|
94 |
|
95 |
-
#: qqworld-auto-save-images.php:
|
96 |
#, php-format
|
97 |
msgid "%d post has been scanned."
|
98 |
msgstr "已扫描%d篇文章。"
|
99 |
|
100 |
-
#: qqworld-auto-save-images.php:
|
101 |
#, php-format
|
102 |
msgid "%d posts have been scanned."
|
103 |
msgstr "已扫描%d篇文章。"
|
104 |
|
105 |
-
#: qqworld-auto-save-images.php:
|
106 |
#, php-format
|
107 |
msgid "%d post included remote images processed."
|
108 |
msgstr "已处理%d篇包含远程图像的文章。"
|
109 |
|
110 |
-
#: qqworld-auto-save-images.php:
|
111 |
#, php-format
|
112 |
msgid "%d posts included remote images processed."
|
113 |
msgstr "已处理%d篇包含远程图像的文章。"
|
114 |
|
115 |
-
#: qqworld-auto-save-images.php:
|
116 |
#, php-format
|
117 |
msgid "%d post has missing images couldn't be processed."
|
118 |
msgstr "%d篇包含不存在的远程图像的文章无法处理。"
|
119 |
|
120 |
-
#: qqworld-auto-save-images.php:
|
121 |
#, php-format
|
122 |
msgid "%d posts have missing images couldn't be processed."
|
123 |
msgstr "%d篇包含不存在的远程图像的文章无法处理。"
|
124 |
|
125 |
-
#: qqworld-auto-save-images.php:
|
126 |
#, php-format
|
127 |
msgid "found %d post including remote images."
|
128 |
msgstr "找到%d篇包含远程图像的文章。"
|
129 |
|
130 |
-
#: qqworld-auto-save-images.php:
|
131 |
#, php-format
|
132 |
msgid "found %d posts including remote images."
|
133 |
msgstr "找到%d篇包含远程图像的文章。"
|
134 |
|
135 |
-
#: qqworld-auto-save-images.php:
|
136 |
#, php-format
|
137 |
msgid "And with %d post has missing images."
|
138 |
msgstr "其中有%d篇文章包含不存在的远程图像。"
|
139 |
|
140 |
-
#: qqworld-auto-save-images.php:
|
141 |
#, php-format
|
142 |
msgid "And with %d posts have missing images."
|
143 |
msgstr "其中有%d篇文章包含不存在的远程图像。"
|
144 |
|
145 |
-
#: qqworld-auto-save-images.php:
|
146 |
msgid "No posts processed."
|
147 |
msgstr "未处理任何文章。"
|
148 |
|
149 |
-
#: qqworld-auto-save-images.php:
|
150 |
msgid "No post has remote images found."
|
151 |
msgstr "没有文章包含远程图像。"
|
152 |
|
153 |
-
#: qqworld-auto-save-images.php:
|
154 |
msgid "No posts found."
|
155 |
msgstr "未找到任何文章。"
|
156 |
|
157 |
-
#: qqworld-auto-save-images.php:
|
158 |
msgid "All done."
|
159 |
msgstr "全部完成。"
|
160 |
|
161 |
-
#: qqworld-auto-save-images.php:
|
162 |
#, fuzzy
|
163 |
msgid "Yes"
|
164 |
msgstr "是"
|
165 |
|
166 |
-
#: qqworld-auto-save-images.php:
|
167 |
msgid "No"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: qqworld-auto-save-images.php:
|
171 |
msgid "Scanning..."
|
172 |
msgstr "扫描中……"
|
173 |
|
174 |
-
#: qqworld-auto-save-images.php:
|
175 |
msgid "Listing..."
|
176 |
msgstr "显示列表中……"
|
177 |
|
178 |
-
#: qqworld-auto-save-images.php:
|
179 |
#, fuzzy
|
180 |
msgid "ID"
|
181 |
msgstr "博客ID"
|
182 |
|
183 |
-
#: qqworld-auto-save-images.php:
|
184 |
msgid "Post Type"
|
185 |
msgstr "文章类型"
|
186 |
|
187 |
-
#: qqworld-auto-save-images.php:
|
188 |
msgid "Title"
|
189 |
msgstr "标题"
|
190 |
|
191 |
-
#: qqworld-auto-save-images.php:
|
192 |
-
#: qqworld-auto-save-images.php:1505
|
193 |
msgid "Status"
|
194 |
msgstr "状态"
|
195 |
|
196 |
-
#: qqworld-auto-save-images.php:
|
197 |
msgid "Control"
|
198 |
msgstr "控制"
|
199 |
|
200 |
-
#: qqworld-auto-save-images.php:
|
201 |
#, fuzzy
|
202 |
msgid "Done"
|
203 |
msgstr "全部完成。"
|
204 |
|
205 |
-
#: qqworld-auto-save-images.php:
|
206 |
-
#: qqworld-auto-save-images.php:1510
|
207 |
#, fuzzy
|
208 |
msgid "Delete"
|
209 |
msgstr "刪除"
|
210 |
|
211 |
-
#: qqworld-auto-save-images.php:
|
212 |
-
msgid "Congratulation! FTP successfully connected."
|
213 |
-
msgstr "恭喜!成功连接FTP。"
|
214 |
-
|
215 |
-
#: qqworld-auto-save-images.php:343
|
216 |
-
msgid "Failed to change ftp directory, Did dirctory not exist?"
|
217 |
-
msgstr "切换FTP目录失败,目录不存在?"
|
218 |
-
|
219 |
-
#: qqworld-auto-save-images.php:346
|
220 |
-
msgid "Whoops, FTP logon has failed!"
|
221 |
-
msgstr "哎呀,登录FTP失败。"
|
222 |
-
|
223 |
-
#: qqworld-auto-save-images.php:349
|
224 |
-
msgid "Whoops, FTP connection has failed!"
|
225 |
-
msgstr "哎呀,连接FTP失败。"
|
226 |
-
|
227 |
-
#: qqworld-auto-save-images.php:444 qqworld-auto-save-images.php:478
|
228 |
msgid "Has missing images."
|
229 |
msgstr "有不存在的远程图像。"
|
230 |
|
231 |
-
#: qqworld-auto-save-images.php:
|
232 |
msgid "Normal"
|
233 |
msgstr "正常"
|
234 |
|
235 |
-
#: qqworld-auto-save-images.php:
|
236 |
msgid "Fetch"
|
237 |
msgstr "抓取"
|
238 |
|
239 |
-
#: qqworld-auto-save-images.php:
|
240 |
msgid "Save Remote Images"
|
241 |
msgstr "保存远程图片"
|
242 |
|
243 |
-
#: qqworld-auto-save-images.php:
|
244 |
msgid "Settings"
|
245 |
msgstr "设置"
|
246 |
|
247 |
-
#: qqworld-auto-save-images.php:
|
248 |
msgid "Auto Save Images"
|
249 |
msgstr "自动保存图片"
|
250 |
|
251 |
-
#: qqworld-auto-save-images.php:
|
252 |
msgid "QQWorld Auto Save Images"
|
253 |
msgstr "QQWorld自动保存图片"
|
254 |
|
255 |
-
#: qqworld-auto-save-images.php:
|
256 |
msgid "Installation"
|
257 |
msgstr "安装说明"
|
258 |
|
259 |
-
#: qqworld-auto-save-images.php:
|
260 |
msgid ""
|
261 |
"<ol><li>Make sure the server configuration <strong>allow_url_fopen=1</"
|
262 |
"strong> in php.ini.</li><li>Warning: If your website domain has been "
|
@@ -267,11 +249,11 @@ msgstr ""
|
|
267 |
"告:如果你的网站域名更改了,必须在数据库中将所有的图片链接更新到新域名,否则"
|
268 |
"插件会把未更改的图片再保存一次。</li></ol>"
|
269 |
|
270 |
-
#: qqworld-auto-save-images.php:
|
271 |
msgid "Notice"
|
272 |
msgstr "注意"
|
273 |
|
274 |
-
#: qqworld-auto-save-images.php:
|
275 |
msgid ""
|
276 |
"<ul><li>This plugin has a little problem that is all the image url must be "
|
277 |
"full url, it means must included \"http(s)://\", for example:<ul><li><img "
|
@@ -300,11 +282,11 @@ msgstr ""
|
|
300 |
"让图片的URL完整。<br />所以,如果你碰到这样的代码,请手动将图片地址改成完整"
|
301 |
"的,或者使用采集工具自动补完图片的URL然后从外部提交给Wordpress。"
|
302 |
|
303 |
-
#: qqworld-auto-save-images.php:
|
304 |
msgid "About"
|
305 |
msgstr "关于"
|
306 |
|
307 |
-
#: qqworld-auto-save-images.php:
|
308 |
msgid ""
|
309 |
"<p>Hi everyone, My name is Michael Wang from china.</p><p>I made this plugin "
|
310 |
"just for play in the first place, after 1 year, oneday someone sent an email "
|
@@ -318,159 +300,128 @@ msgstr ""
|
|
318 |
"后随着越来越多的人向我寻求帮助,我的插件也变得越来越强大。这就是我的插件,我"
|
319 |
"希望你们能喜欢它,谢谢。</p>"
|
320 |
|
321 |
-
#: qqworld-auto-save-images.php:
|
322 |
msgid ""
|
323 |
"Automatically keep the all remote picture to the local, and automatically "
|
324 |
"set featured image."
|
325 |
msgstr ""
|
326 |
"自动保存远程图片到本地,自动设置特色图片,并且支持机器人采集软件从外部提交。"
|
327 |
|
328 |
-
#: qqworld-auto-save-images.php:
|
329 |
-
msgid "
|
330 |
-
msgstr "
|
331 |
|
332 |
-
#: qqworld-auto-save-images.php:
|
333 |
-
|
334 |
-
|
335 |
-
msgstr "预览"
|
336 |
-
|
337 |
-
#: qqworld-auto-save-images.php:577
|
338 |
-
msgid "Watermark"
|
339 |
-
msgstr "水印"
|
340 |
|
341 |
-
#: qqworld-auto-save-images.php:
|
342 |
-
msgid "
|
343 |
-
msgstr "
|
344 |
|
345 |
-
#: qqworld-auto-save-images.php:
|
346 |
msgid "Scan Posts"
|
347 |
msgstr "扫描文章"
|
348 |
|
349 |
-
#: qqworld-auto-save-images.php:
|
350 |
-
msgid "
|
351 |
-
msgstr "
|
352 |
|
353 |
-
#: qqworld-auto-save-images.php:
|
354 |
-
msgid "General Options"
|
355 |
-
msgstr "常规设置"
|
356 |
-
|
357 |
-
#: qqworld-auto-save-images.php:587 qqworld-auto-save-images.php:589
|
358 |
-
#: qqworld-auto-save-images.php:846 qqworld-auto-save-images.php:848
|
359 |
msgid "Mode"
|
360 |
msgstr "模式"
|
361 |
|
362 |
-
#: qqworld-auto-save-images.php:
|
363 |
msgid "Automatic"
|
364 |
msgstr "自动"
|
365 |
|
366 |
-
#: qqworld-auto-save-images.php:
|
367 |
msgid ""
|
368 |
"Automatically save all remote images to local media libary when you save or "
|
369 |
"publish post."
|
370 |
msgstr "在保存或发布文章时,自动将所有远程图像保存到本地媒体库。"
|
371 |
|
372 |
-
#: qqworld-auto-save-images.php:
|
373 |
msgid "Manual"
|
374 |
msgstr "手动"
|
375 |
|
376 |
-
#: qqworld-auto-save-images.php:
|
377 |
msgid ""
|
378 |
"Manually save all remote images to local media libary when you click the "
|
379 |
"button on the top of editor."
|
380 |
msgstr "当单击编辑器顶部的按钮时,手动将所有远程图像保存到本地媒体库。"
|
381 |
|
382 |
-
#: qqworld-auto-save-images.php:
|
383 |
msgid "When"
|
384 |
msgstr "什么时候"
|
385 |
|
386 |
-
#: qqworld-auto-save-images.php:
|
387 |
msgid "Save post (Publish, save draft or pedding review)."
|
388 |
msgstr "保存文章时(发布文章,保存草稿或提交审核)。"
|
389 |
|
390 |
-
#: qqworld-auto-save-images.php:
|
391 |
msgid "Publish post only."
|
392 |
msgstr "仅发布文章时。"
|
393 |
|
394 |
-
#: qqworld-auto-save-images.php:
|
395 |
msgid "Remote Publishing"
|
396 |
msgstr "远程发布"
|
397 |
|
398 |
-
#: qqworld-auto-save-images.php:
|
399 |
msgid ""
|
400 |
"Save remote images via remote publishing from IFTTT or other way using "
|
401 |
"XMLRPC. Only supports publish post."
|
402 |
msgstr "保存通过IFTTT或其他使用XMLRPC方法远程发布的远程图片。仅支持发布文章。"
|
403 |
|
404 |
-
#: qqworld-auto-save-images.php:
|
405 |
-
#: qqworld-auto-save-images.php:
|
406 |
msgid "Set Featured Image"
|
407 |
msgstr "设置特色图片"
|
408 |
|
409 |
-
#: qqworld-auto-save-images.php:
|
410 |
msgid "Set first one of the remote images as featured image."
|
411 |
msgstr "设置远程图片中的第1个为特色图片。"
|
412 |
|
413 |
-
#: qqworld-auto-save-images.php:
|
414 |
-
msgid "Demo of Pro Edition"
|
415 |
-
msgstr "专业版的演示"
|
416 |
-
|
417 |
-
#: qqworld-auto-save-images.php:639
|
418 |
-
msgid ""
|
419 |
-
"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/-"
|
420 |
-
"KImHNbPA-o\" frameborder=\"0\" allowfullscreen></iframe>"
|
421 |
-
msgstr ""
|
422 |
-
"<embed src=\"http://player.youku.com/player.php/sid/XOTE3NDk0OTUy/v.swf\" "
|
423 |
-
"allowFullScreen=\"true\" quality=\"high\" width=\"480\" height=\"400\" align="
|
424 |
-
"\"middle\" allowScriptAccess=\"always\" type=\"application/x-shockwave-flash"
|
425 |
-
"\"></embed>"
|
426 |
-
|
427 |
-
#: qqworld-auto-save-images.php:644
|
428 |
-
msgid "Filter Options"
|
429 |
-
msgstr "过滤选项"
|
430 |
-
|
431 |
-
#: qqworld-auto-save-images.php:648 qqworld-auto-save-images.php:650
|
432 |
msgid "Grabbing from Each Posts"
|
433 |
msgstr "从每篇文章抓取"
|
434 |
|
435 |
-
#: qqworld-auto-save-images.php:
|
436 |
msgid "All Images"
|
437 |
msgstr "全部图片"
|
438 |
|
439 |
-
#: qqworld-auto-save-images.php:
|
440 |
#, php-format
|
441 |
msgid "First %d image only"
|
442 |
msgid_plural "First %d images only"
|
443 |
msgstr[0] "前 %d 幅图像"
|
444 |
|
445 |
-
#: qqworld-auto-save-images.php:
|
446 |
msgid "Minimum Picture Size"
|
447 |
msgstr "最小图像尺寸"
|
448 |
|
449 |
-
#: qqworld-auto-save-images.php:
|
450 |
msgid "Ignore smaller than this size picture."
|
451 |
msgstr "忽略比这个尺寸更小的图像。"
|
452 |
|
453 |
-
#: qqworld-auto-save-images.php:
|
454 |
-
#: qqworld-auto-save-images.php:1215
|
455 |
msgid "Width:"
|
456 |
msgstr "宽度:"
|
457 |
|
458 |
-
#: qqworld-auto-save-images.php:
|
459 |
-
#: qqworld-auto-save-images.php:
|
460 |
-
#: qqworld-auto-save-images.php:1215 qqworld-auto-save-images.php:1218
|
461 |
msgid "(px)"
|
462 |
msgstr "(像素)"
|
463 |
|
464 |
-
#: qqworld-auto-save-images.php:
|
465 |
-
#: qqworld-auto-save-images.php:1218
|
466 |
msgid "Height:"
|
467 |
msgstr "高度:"
|
468 |
|
469 |
-
#: qqworld-auto-save-images.php:
|
470 |
msgid "Maximum Picture Size"
|
471 |
msgstr "最大图像尺寸"
|
472 |
|
473 |
-
#: qqworld-auto-save-images.php:
|
474 |
msgid ""
|
475 |
"Automatic reduction is greater than the size of the picture. if you want "
|
476 |
"image width less than 800px with any size height, please set width 800 and "
|
@@ -479,599 +430,189 @@ msgstr ""
|
|
479 |
"自动缩小大于该尺寸的图像。如果你想要宽度不超过800px和任意高度图片,请设置宽度"
|
480 |
"800,并设置高度为空。"
|
481 |
|
482 |
-
#: qqworld-auto-save-images.php:
|
483 |
msgid "Exclude Domain/Keyword"
|
484 |
msgstr "排除域名/关键词"
|
485 |
|
486 |
-
#: qqworld-auto-save-images.php:
|
487 |
msgid "Images will not be saved, if that url contains Exclude-Domain/Keyword."
|
488 |
msgstr "如果图片地址包含排除域名/关键词,则不会保存该图片。"
|
489 |
|
490 |
-
#: qqworld-auto-save-images.php:
|
491 |
msgid "Add a Domain/Keyword"
|
492 |
msgstr "添加域名/关键词"
|
493 |
|
494 |
-
#: qqworld-auto-save-images.php:
|
495 |
-
msgid "Format Options"
|
496 |
-
msgstr "格式化选项"
|
497 |
-
|
498 |
-
#: qqworld-auto-save-images.php:708 qqworld-auto-save-images.php:711
|
499 |
msgid "Change Image Filename"
|
500 |
msgstr "更改图片文件名"
|
501 |
|
502 |
-
#: qqworld-auto-save-images.php:
|
503 |
msgid ""
|
504 |
"Only change remote images filename that have Non-ASCii characters (for "
|
505 |
"Windows Server)"
|
506 |
msgstr "仅修改包含非ASCii字符的远程图片文件名(用于Windows服务器)"
|
507 |
|
508 |
-
#: qqworld-auto-save-images.php:
|
509 |
msgid ""
|
510 |
"Change all remote images Filename and Alt as post name (for Linux Server)"
|
511 |
msgstr "改变所有远程图片文件名为文章名(Post Name)(用于Linux服务器)"
|
512 |
|
513 |
-
#: qqworld-auto-save-images.php:
|
514 |
msgid "Custom Filename Structure"
|
515 |
msgstr "自定文件名结构"
|
516 |
|
517 |
-
#: qqworld-auto-save-images.php:
|
518 |
msgid "Original filename or automatic changed filename."
|
519 |
msgstr "原文件名或自动更改的文件名。"
|
520 |
|
521 |
-
#: qqworld-auto-save-images.php:
|
522 |
msgid "Full date, e.g. 20150209."
|
523 |
msgstr "完整的日期,例如:20150209。"
|
524 |
|
525 |
-
#: qqworld-auto-save-images.php:
|
526 |
msgid "YYYY, e.g. 2015."
|
527 |
msgstr "YYYY,例如:2015。"
|
528 |
|
529 |
-
#: qqworld-auto-save-images.php:
|
530 |
msgid "MM, e.g. 02."
|
531 |
msgstr "MM,例如:02。"
|
532 |
|
533 |
-
#: qqworld-auto-save-images.php:
|
534 |
msgid "DD, e.g. 15."
|
535 |
msgstr "DD,例如:15。"
|
536 |
|
537 |
-
#: qqworld-auto-save-images.php:
|
538 |
msgid "HHMMSS, e.g. 182547."
|
539 |
msgstr "HHMMSS,例如:182547。"
|
540 |
|
541 |
-
#: qqworld-auto-save-images.php:
|
542 |
#, php-format
|
543 |
msgid "Unix timestamp, e.g. %s."
|
544 |
msgstr "Unix时间戳,例如:%s。"
|
545 |
|
546 |
-
#: qqworld-auto-save-images.php:
|
547 |
msgid "Change Title & Alt"
|
548 |
msgstr "更改标题和替代文本"
|
549 |
|
550 |
-
#: qqworld-auto-save-images.php:
|
551 |
msgid "Automatically add title & alt of image as post title."
|
552 |
msgstr "自动依照文章标题添加图片的标题和替代文本。"
|
553 |
|
554 |
-
#: qqworld-auto-save-images.php:
|
555 |
msgid "Keep Outside Links"
|
556 |
msgstr "保留外链"
|
557 |
|
558 |
-
#: qqworld-auto-save-images.php:
|
559 |
msgid "Keep the outside links of remote images if exist."
|
560 |
msgstr "保留远程图片的链接,如果有的话。"
|
561 |
|
562 |
-
#: qqworld-auto-save-images.php:
|
563 |
msgid "Save Outside Links"
|
564 |
msgstr "保存外链"
|
565 |
|
566 |
-
#: qqworld-auto-save-images.php:
|
567 |
msgid "Save the outside links to description of attachments."
|
568 |
msgstr "保存外部链接到附件的描述。"
|
569 |
|
570 |
-
#: qqworld-auto-save-images.php:
|
571 |
msgid ""
|
572 |
"To custom the content, add codes into <strong>functions.php</strong> like "
|
573 |
"this below:"
|
574 |
msgstr ""
|
575 |
"如果想自定义该内容,加入类似以下代码到 <strong>functions.php</strong> 中:"
|
576 |
|
577 |
-
#: qqworld-auto-save-images.php:
|
578 |
msgid "Image Size"
|
579 |
msgstr "图像尺寸"
|
580 |
|
581 |
-
#: qqworld-auto-save-images.php:
|
582 |
msgid "Replace images you want size to display."
|
583 |
msgstr "替换成你想要显示的尺寸的图像。"
|
584 |
|
585 |
-
#: qqworld-auto-save-images.php:
|
586 |
#, fuzzy
|
587 |
msgid "Thumbnail"
|
588 |
msgstr ""
|
589 |
"一個數組,可以包含數個函數,每個函數返回可能的縮略圖圖片對象相對于時間對象的"
|
590 |
"jQuery路徑。"
|
591 |
|
592 |
-
#: qqworld-auto-save-images.php:
|
593 |
msgid "Medium"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: qqworld-auto-save-images.php:
|
597 |
msgid "Large"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: qqworld-auto-save-images.php:
|
601 |
msgid "Full Size"
|
602 |
msgstr "完整尺寸"
|
603 |
|
604 |
-
#: qqworld-auto-save-images.php:
|
605 |
msgid "Link To"
|
606 |
msgstr "链接到"
|
607 |
|
608 |
-
#: qqworld-auto-save-images.php:
|
609 |
msgid "If you checked Keep-Outside-Links, this option will not works."
|
610 |
msgstr "如果你勾选了保留外链,本项将不起作用。"
|
611 |
|
612 |
-
#: qqworld-auto-save-images.php:
|
613 |
#, fuzzy
|
614 |
msgid "Media File"
|
615 |
msgstr "添加文件"
|
616 |
|
617 |
-
#: qqworld-auto-save-images.php:
|
618 |
#, fuzzy
|
619 |
msgid "Attachment Page"
|
620 |
msgstr "(附件)"
|
621 |
|
622 |
-
#: qqworld-auto-save-images.php:
|
623 |
msgid "None"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: qqworld-auto-save-images.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
627 |
msgid "Auto Caption"
|
628 |
msgstr "自动图说"
|
629 |
|
630 |
-
#: qqworld-auto-save-images.php:
|
631 |
msgid "Automatically add caption shortcode."
|
632 |
msgstr "自动添加图说短代码。"
|
633 |
|
634 |
-
#: qqworld-auto-save-images.php:
|
635 |
msgid "Additional Content"
|
636 |
msgstr "额外的内容"
|
637 |
|
638 |
-
#: qqworld-auto-save-images.php:
|
639 |
msgid ""
|
640 |
"This content will be displayed after the each remote images code. you can "
|
641 |
"use [Attachment ID] indicate current attachment ID."
|
642 |
msgstr "此内容将在每个远程图像编码后显示。您可以使用[附件ID]指示当前连接ID。"
|
643 |
|
644 |
-
#: qqworld-auto-save-images.php:
|
645 |
msgid "For example: [Gbuy id='[Attachment ID]']"
|
646 |
msgstr "例如:[Gbuy id='[Attachment ID]']"
|
647 |
|
648 |
-
#: qqworld-auto-save-images.php:
|
649 |
-
#: qqworld-auto-save-images.php:1316 qqworld-auto-save-images.php:1498
|
650 |
-
msgid "Just for preview, The complete feature will on the Pro version."
|
651 |
-
msgstr "仅仅用于预览,专业版将提供完整的功能。"
|
652 |
-
|
653 |
-
#: qqworld-auto-save-images.php:833
|
654 |
-
msgid "Optimization Options"
|
655 |
-
msgstr "优化选项"
|
656 |
-
|
657 |
-
#: qqworld-auto-save-images.php:837 qqworld-auto-save-images.php:839
|
658 |
-
#: qqworld-auto-save-images.php:1106 qqworld-auto-save-images.php:1108
|
659 |
-
#: qqworld-auto-save-images.php:1138 qqworld-auto-save-images.php:1140
|
660 |
-
msgid "Enabled"
|
661 |
-
msgstr "启用"
|
662 |
-
|
663 |
-
#: qqworld-auto-save-images.php:837
|
664 |
-
msgid "Use Cookie-Free Domains to display images."
|
665 |
-
msgstr "使用免Cookie域名(Cookie-Free Domains)来显示图片。"
|
666 |
-
|
667 |
-
#: qqworld-auto-save-images.php:846
|
668 |
-
msgid ""
|
669 |
-
"If you don't want using local media library, please select Use-FTP-Remote-"
|
670 |
-
"Server."
|
671 |
-
msgstr "如果你不想使用本地媒体库,请选择使用FTP远程服务器。"
|
672 |
-
|
673 |
-
#: qqworld-auto-save-images.php:852
|
674 |
-
msgid "Use local server"
|
675 |
-
msgstr "使用本地服务器"
|
676 |
-
|
677 |
-
#: qqworld-auto-save-images.php:853
|
678 |
-
msgid "Use QiNiu Cloud Storage"
|
679 |
-
msgstr "使用七牛云存储"
|
680 |
-
|
681 |
-
#: qqworld-auto-save-images.php:854
|
682 |
-
msgid "Use FTP remote server"
|
683 |
-
msgstr "使用FTP远程服务器"
|
684 |
-
|
685 |
-
#: qqworld-auto-save-images.php:855
|
686 |
-
msgid "Use AliYun Open Storage Service (OSS)"
|
687 |
-
msgstr "使用阿里云开放存储服务OSS"
|
688 |
-
|
689 |
-
#: qqworld-auto-save-images.php:856
|
690 |
-
msgid "Use UpYun Storage Service"
|
691 |
-
msgstr "使用又拍云存储"
|
692 |
-
|
693 |
-
#: qqworld-auto-save-images.php:869 qqworld-auto-save-images.php:871
|
694 |
-
#: qqworld-auto-save-images.php:889 qqworld-auto-save-images.php:891
|
695 |
-
#: qqworld-auto-save-images.php:907 qqworld-auto-save-images.php:909
|
696 |
-
#: qqworld-auto-save-images.php:959 qqworld-auto-save-images.php:961
|
697 |
-
#: qqworld-auto-save-images.php:1035 qqworld-auto-save-images.php:1037
|
698 |
-
msgid "Domain & Folder"
|
699 |
-
msgstr "域名 & 目录"
|
700 |
-
|
701 |
-
#: qqworld-auto-save-images.php:869 qqworld-auto-save-images.php:889
|
702 |
-
#: qqworld-auto-save-images.php:907 qqworld-auto-save-images.php:959
|
703 |
-
#: qqworld-auto-save-images.php:1035
|
704 |
-
msgid ""
|
705 |
-
"Set new url structure, Do not end with '/'. The folder string must front "
|
706 |
-
"with '/'."
|
707 |
-
msgstr "设置新的URL结构,不要以 '/' 结尾,目录字符串必须以 '/' 开头。"
|
708 |
-
|
709 |
-
#: qqworld-auto-save-images.php:873 qqworld-auto-save-images.php:894
|
710 |
-
#: qqworld-auto-save-images.php:915 qqworld-auto-save-images.php:967
|
711 |
-
#: qqworld-auto-save-images.php:1043
|
712 |
-
msgid "Host"
|
713 |
-
msgstr "主机"
|
714 |
-
|
715 |
-
#: qqworld-auto-save-images.php:875
|
716 |
-
msgid "You need add this code below into wp-config.php:"
|
717 |
-
msgstr "妳需要在 wp-config.php 中加入以下代碼:"
|
718 |
-
|
719 |
-
#: qqworld-auto-save-images.php:897
|
720 |
-
#, php-format
|
721 |
-
msgid ""
|
722 |
-
"Needs <a href=\"%s\" target=\"_blank\">plugin of QiNiu Cloud Storage</a>."
|
723 |
-
msgstr "需要 <a href=\"%s\" target=\"_blank\">七牛云存储插件</a>。"
|
724 |
-
|
725 |
-
#: qqworld-auto-save-images.php:916 qqworld-auto-save-images.php:968
|
726 |
-
#: qqworld-auto-save-images.php:1044
|
727 |
-
msgid "Folder (Can be empty)"
|
728 |
-
msgstr "目录(可以为空)"
|
729 |
-
|
730 |
-
#: qqworld-auto-save-images.php:922 qqworld-auto-save-images.php:924
|
731 |
-
msgid "FTP Settings"
|
732 |
-
msgstr "FTP设置"
|
733 |
-
|
734 |
-
#: qqworld-auto-save-images.php:927
|
735 |
-
msgid "IP Address"
|
736 |
-
msgstr "IP地址"
|
737 |
-
|
738 |
-
#: qqworld-auto-save-images.php:931
|
739 |
-
msgid "Port"
|
740 |
-
msgstr "端口"
|
741 |
-
|
742 |
-
#: qqworld-auto-save-images.php:935 qqworld-auto-save-images.php:1057
|
743 |
-
#: qqworld-auto-save-images.php:1059 qqworld-auto-save-images.php:1061
|
744 |
-
msgid "Username"
|
745 |
-
msgstr "用户名"
|
746 |
-
|
747 |
-
#: qqworld-auto-save-images.php:939 qqworld-auto-save-images.php:1066
|
748 |
-
#: qqworld-auto-save-images.php:1068 qqworld-auto-save-images.php:1069
|
749 |
-
msgid "Password"
|
750 |
-
msgstr "密码"
|
751 |
-
|
752 |
-
#: qqworld-auto-save-images.php:943
|
753 |
-
msgid "Directory"
|
754 |
-
msgstr "目录"
|
755 |
-
|
756 |
-
#: qqworld-auto-save-images.php:947
|
757 |
-
msgid "Test FTP"
|
758 |
-
msgstr "测试FTP"
|
759 |
-
|
760 |
-
#: qqworld-auto-save-images.php:974 qqworld-auto-save-images.php:976
|
761 |
-
msgid "Access Key ID"
|
762 |
-
msgstr ""
|
763 |
-
|
764 |
-
#: qqworld-auto-save-images.php:983 qqworld-auto-save-images.php:985
|
765 |
-
msgid "Access Key Secret"
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: qqworld-auto-save-images.php:988
|
769 |
-
msgid "Test Access OSS"
|
770 |
-
msgstr "测试连接OSS"
|
771 |
-
|
772 |
-
#: qqworld-auto-save-images.php:993 qqworld-auto-save-images.php:995
|
773 |
-
msgid "Buckets"
|
774 |
-
msgstr ""
|
775 |
-
|
776 |
-
#: qqworld-auto-save-images.php:993
|
777 |
-
msgid "Only the authority Public-Read can be used."
|
778 |
-
msgstr "只有公共读权限可用。"
|
779 |
-
|
780 |
-
#: qqworld-auto-save-images.php:993
|
781 |
-
msgid "Bucket Naming conventions:"
|
782 |
-
msgstr "Bucket命名规范:"
|
783 |
-
|
784 |
-
#: qqworld-auto-save-images.php:993
|
785 |
-
msgid "Can only contain lowercase letters, numbers, and dashes"
|
786 |
-
msgstr "只能包含小写字母,数字和短横线"
|
787 |
-
|
788 |
-
#: qqworld-auto-save-images.php:993
|
789 |
-
msgid "You must start and end with lowercase letters and numbers"
|
790 |
-
msgstr "必须以小写字母和数字开头和结尾"
|
791 |
-
|
792 |
-
#: qqworld-auto-save-images.php:993
|
793 |
-
msgid "BucketName length limits between 3-63"
|
794 |
-
msgstr "bucketName的长度限制在3-63之间"
|
795 |
-
|
796 |
-
#: qqworld-auto-save-images.php:998
|
797 |
-
msgid "Delete Bucket"
|
798 |
-
msgstr "刪除Bucket"
|
799 |
-
|
800 |
-
#: qqworld-auto-save-images.php:999
|
801 |
-
msgid "New Bucket Name"
|
802 |
-
msgstr "新Bucket名"
|
803 |
-
|
804 |
-
#: qqworld-auto-save-images.php:999
|
805 |
-
msgid "Create a New Bucket"
|
806 |
-
msgstr "新建Bucket"
|
807 |
-
|
808 |
-
#: qqworld-auto-save-images.php:1003 qqworld-auto-save-images.php:1005
|
809 |
-
#: qqworld-auto-save-images.php:1074 qqworld-auto-save-images.php:1076
|
810 |
-
msgid "Scan & Sync"
|
811 |
-
msgstr "扫描 & 同步"
|
812 |
-
|
813 |
-
#: qqworld-auto-save-images.php:1003
|
814 |
-
msgid "Automatically scan media library and sync to AliYun OSS."
|
815 |
-
msgstr "自動掃描媒體庫並同步到阿裡雲OSS。"
|
816 |
-
|
817 |
-
#: qqworld-auto-save-images.php:1006 qqworld-auto-save-images.php:1077
|
818 |
-
msgid "Fast Scan"
|
819 |
-
msgstr "快速扫描"
|
820 |
-
|
821 |
-
#: qqworld-auto-save-images.php:1007 qqworld-auto-save-images.php:1078
|
822 |
-
msgid "Smart Scan"
|
823 |
-
msgstr "智能扫描"
|
824 |
-
|
825 |
-
#: qqworld-auto-save-images.php:1011 qqworld-auto-save-images.php:1013
|
826 |
-
#: qqworld-auto-save-images.php:1082 qqworld-auto-save-images.php:1084
|
827 |
-
msgid "Sync Delete"
|
828 |
-
msgstr "同步刪除"
|
829 |
-
|
830 |
-
#: qqworld-auto-save-images.php:1011
|
831 |
-
msgid ""
|
832 |
-
"When you delete a local attachment file, delete the OSS file synchronization."
|
833 |
-
msgstr "当你删除本地附件文件时,同时删除OSS上的文件。"
|
834 |
-
|
835 |
-
#: qqworld-auto-save-images.php:1020 qqworld-auto-save-images.php:1022
|
836 |
-
#: qqworld-auto-save-images.php:1091 qqworld-auto-save-images.php:1093
|
837 |
-
msgid "Auto Replace"
|
838 |
-
msgstr "自动替换"
|
839 |
-
|
840 |
-
#: qqworld-auto-save-images.php:1020
|
841 |
-
msgid ""
|
842 |
-
"Automatically replaces post content's local url as OSS's url when syncing."
|
843 |
-
msgstr "当同步时自动将文章内容中的本地URL替换为OSS上的URL。"
|
844 |
-
|
845 |
-
#: qqworld-auto-save-images.php:1050 qqworld-auto-save-images.php:1052
|
846 |
-
#: qqworld-auto-save-images.php:1053
|
847 |
-
msgctxt "upyun"
|
848 |
-
msgid "Bucket"
|
849 |
-
msgstr "空间名"
|
850 |
-
|
851 |
-
#: qqworld-auto-save-images.php:1070
|
852 |
-
msgctxt "upyun"
|
853 |
-
msgid "Test Access UpYun"
|
854 |
-
msgstr "测试连接又拍云"
|
855 |
-
|
856 |
-
#: qqworld-auto-save-images.php:1074
|
857 |
-
msgid ""
|
858 |
-
"Automatically scan media library and sync to UpYun.<br /><strong>Fast Scan</"
|
859 |
-
"strong>: Determines whether the synchronization with local marks.<br /"
|
860 |
-
"><strong>Smart Scan</strong>: Determines whether the synchronization with "
|
861 |
-
"UpYun file exists."
|
862 |
-
msgstr ""
|
863 |
-
"自动扫描媒体库并同步到又拍云。<br /><strong>快速扫描</strong>:通过本地记号来"
|
864 |
-
"判断是否已同步。<br /><strong>智能扫描</strong>:通过又拍云上的文件是否存在判"
|
865 |
-
"断是否已同步。"
|
866 |
-
|
867 |
-
#: qqworld-auto-save-images.php:1082
|
868 |
-
msgid ""
|
869 |
-
"When you delete a local attachment file, delete the UpYun file "
|
870 |
-
"synchronization."
|
871 |
-
msgstr "当你删除本地附件文件时,同时删除又拍云上的文件。"
|
872 |
-
|
873 |
-
#: qqworld-auto-save-images.php:1091
|
874 |
-
msgid ""
|
875 |
-
"Automatically replaces post content's local url as UpYun's url when syncing."
|
876 |
-
msgstr "当同步时自动将文章内容中的本地URL替换为又拍云上的URL。"
|
877 |
-
|
878 |
-
#: qqworld-auto-save-images.php:1102
|
879 |
-
msgid "Proxy Settings"
|
880 |
-
msgstr "代理设置"
|
881 |
-
|
882 |
-
#: qqworld-auto-save-images.php:1106
|
883 |
-
msgid "Use proxy server to download images."
|
884 |
-
msgstr "使用代理服务器下载图片。"
|
885 |
-
|
886 |
-
#: qqworld-auto-save-images.php:1115 qqworld-auto-save-images.php:1117
|
887 |
-
msgid "Timeout"
|
888 |
-
msgstr "超时"
|
889 |
-
|
890 |
-
#: qqworld-auto-save-images.php:1115
|
891 |
-
msgid "Set timeout period on proxy."
|
892 |
-
msgstr "设置代理超时时间。"
|
893 |
-
|
894 |
-
#: qqworld-auto-save-images.php:1119
|
895 |
-
msgid "Second(s)"
|
896 |
-
msgstr "秒"
|
897 |
-
|
898 |
-
#: qqworld-auto-save-images.php:1124 qqworld-auto-save-images.php:1126
|
899 |
-
msgid "Proxy Address"
|
900 |
-
msgstr "代理地址"
|
901 |
-
|
902 |
-
#: qqworld-auto-save-images.php:1124
|
903 |
-
msgid "For example: 127.0.0.1:8087"
|
904 |
-
msgstr "示例:127.0.0.1:8087"
|
905 |
-
|
906 |
-
#: qqworld-auto-save-images.php:1134
|
907 |
-
msgid "Images Compression Options"
|
908 |
-
msgstr "图片压缩选项"
|
909 |
-
|
910 |
-
#: qqworld-auto-save-images.php:1138
|
911 |
-
msgid "Enable compress images when uploading."
|
912 |
-
msgstr "启用上传时压缩图像。"
|
913 |
-
|
914 |
-
#: qqworld-auto-save-images.php:1147 qqworld-auto-save-images.php:1149
|
915 |
-
msgid "Quality"
|
916 |
-
msgstr "品质"
|
917 |
-
|
918 |
-
#: qqworld-auto-save-images.php:1147
|
919 |
-
msgid ""
|
920 |
-
"Compression level, ranges from 0 (worst quality, smaller file) to 100 (best "
|
921 |
-
"quality, biggest file)."
|
922 |
-
msgstr "压缩级别,范围从0(最低品质,文件较小)到100(最高品质,文件较大)。"
|
923 |
-
|
924 |
-
#: qqworld-auto-save-images.php:1152
|
925 |
-
msgid " (Recommend)"
|
926 |
-
msgstr "(推荐)"
|
927 |
-
|
928 |
-
#: qqworld-auto-save-images.php:1159
|
929 |
-
msgid "Smart Options"
|
930 |
-
msgstr "智能选项"
|
931 |
-
|
932 |
-
#: qqworld-auto-save-images.php:1163 qqworld-auto-save-images.php:1165
|
933 |
-
msgid "Smart Grabbing"
|
934 |
-
msgstr "智能抓取"
|
935 |
-
|
936 |
-
#: qqworld-auto-save-images.php:1163
|
937 |
-
msgid ""
|
938 |
-
"Automatically detect 2 images url from href/src of remote image with outside "
|
939 |
-
"link, and grab the bigger one."
|
940 |
-
msgstr ""
|
941 |
-
"自动从带外部链接的远程图片的href和src中检测2幅图片并抓取其中较大的一个。"
|
942 |
-
|
943 |
-
#: qqworld-auto-save-images.php:1176 qqworld-auto-save-images.php:1305
|
944 |
-
#: qqworld-auto-save-images.php:1370 qqworld-auto-save-images.php:1524
|
945 |
-
msgid "Buy"
|
946 |
-
msgstr "购买"
|
947 |
-
|
948 |
-
#: qqworld-auto-save-images.php:1177 qqworld-auto-save-images.php:1306
|
949 |
-
#: qqworld-auto-save-images.php:1371 qqworld-auto-save-images.php:1525
|
950 |
-
msgid "QQWorld Collector"
|
951 |
-
msgstr "QQWorld收藏家"
|
952 |
-
|
953 |
-
#: qqworld-auto-save-images.php:1191 qqworld-auto-save-images.php:1193
|
954 |
-
msgid "Enabled Watermark"
|
955 |
-
msgstr "启用水印"
|
956 |
-
|
957 |
-
#: qqworld-auto-save-images.php:1191
|
958 |
-
msgid "Use for both of remote images and the local upload."
|
959 |
-
msgstr "同时用于远程图片和本地上传。"
|
960 |
-
|
961 |
-
#: qqworld-auto-save-images.php:1201 qqworld-auto-save-images.php:1203
|
962 |
-
msgid "Ignore animated GIF"
|
963 |
-
msgstr "忽略GIF动画"
|
964 |
-
|
965 |
-
#: qqworld-auto-save-images.php:1211 qqworld-auto-save-images.php:1213
|
966 |
-
msgid "Filter"
|
967 |
-
msgstr "过滤"
|
968 |
-
|
969 |
-
#: qqworld-auto-save-images.php:1211
|
970 |
-
msgid "Skip images that smaller than this size."
|
971 |
-
msgstr "跳过比这个尺寸更小的图像。"
|
972 |
-
|
973 |
-
#: qqworld-auto-save-images.php:1224
|
974 |
-
msgid "Align To"
|
975 |
-
msgstr "对齐方式"
|
976 |
-
|
977 |
-
#: qqworld-auto-save-images.php:1246
|
978 |
-
msgid "Position"
|
979 |
-
msgstr "位置"
|
980 |
-
|
981 |
-
#: qqworld-auto-save-images.php:1246
|
982 |
-
msgid "You can try to drag the watermark image."
|
983 |
-
msgstr "你可以试着拖动水印图片。"
|
984 |
-
|
985 |
-
#: qqworld-auto-save-images.php:1263 qqworld-auto-save-images.php:1265
|
986 |
-
#: qqworld-auto-save-images.php:1409 qqworld-auto-save-images.php:1504
|
987 |
-
msgid "Offset"
|
988 |
-
msgstr "偏移"
|
989 |
-
|
990 |
-
#: qqworld-auto-save-images.php:1276 qqworld-auto-save-images.php:1278
|
991 |
-
msgid "Opacity"
|
992 |
-
msgstr "不透明度"
|
993 |
-
|
994 |
-
#: qqworld-auto-save-images.php:1286 qqworld-auto-save-images.php:1288
|
995 |
-
msgid "Upload Watermark Image"
|
996 |
-
msgstr "上传水印图片"
|
997 |
-
|
998 |
-
#: qqworld-auto-save-images.php:1290
|
999 |
-
msgid "Insert a Watermark Image"
|
1000 |
-
msgstr "插入水印图片"
|
1001 |
-
|
1002 |
-
#: qqworld-auto-save-images.php:1301
|
1003 |
-
msgid "Default Watermark"
|
1004 |
-
msgstr "默认水印"
|
1005 |
-
|
1006 |
-
#: qqworld-auto-save-images.php:1317
|
1007 |
-
msgid "Content Replacement"
|
1008 |
-
msgstr "内容替换"
|
1009 |
-
|
1010 |
-
#: qqworld-auto-save-images.php:1321 qqworld-auto-save-images.php:1323
|
1011 |
-
msgctxt "database"
|
1012 |
-
msgid "Table"
|
1013 |
-
msgstr "表"
|
1014 |
-
|
1015 |
-
#: qqworld-auto-save-images.php:1326 qqworld-auto-save-images.php:1417
|
1016 |
-
#, fuzzy
|
1017 |
-
msgid "Posts"
|
1018 |
-
msgstr "熱門文章"
|
1019 |
-
|
1020 |
-
#: qqworld-auto-save-images.php:1327
|
1021 |
-
msgid "Comments"
|
1022 |
-
msgstr "评论"
|
1023 |
-
|
1024 |
-
#: qqworld-auto-save-images.php:1333 qqworld-auto-save-images.php:1335
|
1025 |
-
msgctxt "database"
|
1026 |
-
msgid "Field"
|
1027 |
-
msgstr "字段"
|
1028 |
-
|
1029 |
-
#: qqworld-auto-save-images.php:1338
|
1030 |
-
msgctxt "database"
|
1031 |
-
msgid "Post Content"
|
1032 |
-
msgstr "文章內容"
|
1033 |
-
|
1034 |
-
#: qqworld-auto-save-images.php:1339
|
1035 |
-
msgctxt "database"
|
1036 |
-
msgid "Post Title"
|
1037 |
-
msgstr "文章标题"
|
1038 |
-
|
1039 |
-
#: qqworld-auto-save-images.php:1340
|
1040 |
-
msgctxt "database"
|
1041 |
-
msgid "Post Excerpt"
|
1042 |
-
msgstr "文章摘要"
|
1043 |
-
|
1044 |
-
#: qqworld-auto-save-images.php:1346 qqworld-auto-save-images.php:1348
|
1045 |
-
#: qqworld-auto-save-images.php:1350
|
1046 |
-
msgctxt "database"
|
1047 |
-
msgid "Source Text"
|
1048 |
-
msgstr "来源文本"
|
1049 |
-
|
1050 |
-
#: qqworld-auto-save-images.php:1346 qqworld-auto-save-images.php:1356
|
1051 |
-
msgid "For example: "
|
1052 |
-
msgstr "范例:"
|
1053 |
-
|
1054 |
-
#: qqworld-auto-save-images.php:1356 qqworld-auto-save-images.php:1358
|
1055 |
-
#: qqworld-auto-save-images.php:1360
|
1056 |
-
msgctxt "database"
|
1057 |
-
msgid "Replacement Text"
|
1058 |
-
msgstr "替换文本"
|
1059 |
-
|
1060 |
-
#: qqworld-auto-save-images.php:1375
|
1061 |
-
msgid "Replace Now"
|
1062 |
-
msgstr "立即替换"
|
1063 |
-
|
1064 |
-
#: qqworld-auto-save-images.php:1375
|
1065 |
-
msgid ""
|
1066 |
-
"Be careful, before you click the Replace-Now button, i recommend backup the "
|
1067 |
-
"website database."
|
1068 |
-
msgstr "小心,在你点立即替换之前,我建议先备份网站数据库。"
|
1069 |
-
|
1070 |
-
#: qqworld-auto-save-images.php:1385
|
1071 |
msgid "Select post types"
|
1072 |
msgstr "选择文章类型"
|
1073 |
|
1074 |
-
#: qqworld-auto-save-images.php:
|
1075 |
msgid ""
|
1076 |
"If you have too many posts to be scan, sometimes in process looks like "
|
1077 |
"stopping, but it may be fake. please be patient."
|
@@ -1079,20 +620,20 @@ msgstr ""
|
|
1079 |
"如果有太多文章需要扫描,有时候在扫描过程中看起来像是停止了,但可能是假停止,"
|
1080 |
"请耐心等待。"
|
1081 |
|
1082 |
-
#: qqworld-auto-save-images.php:
|
1083 |
#, fuzzy
|
1084 |
msgid "Categories"
|
1085 |
msgstr "%s分類"
|
1086 |
|
1087 |
-
#: qqworld-auto-save-images.php:
|
1088 |
msgid "Default empty to scan all categories."
|
1089 |
msgstr "默认留空扫描所有分类。"
|
1090 |
|
1091 |
-
#: qqworld-auto-save-images.php:
|
1092 |
msgid "Scope of Post ID"
|
1093 |
msgstr "文章ID范围"
|
1094 |
|
1095 |
-
#: qqworld-auto-save-images.php:
|
1096 |
msgid ""
|
1097 |
"Default empty for scan all posts ID. If you want to scan posts ID from 50 to "
|
1098 |
"100. please type '50' and '100' or '100' and '50', The order in which two "
|
@@ -1103,12 +644,16 @@ msgstr ""
|
|
1103 |
"者'100'和'50',两个数字的顺序可以颠倒。如果你只输入了1个数字,则系统只会扫描"
|
1104 |
"该ID。"
|
1105 |
|
1106 |
-
#: qqworld-auto-save-images.php:
|
1107 |
#, php-format
|
1108 |
msgid "From %1$s to %2$s"
|
1109 |
msgstr "从 %1$s 到 %2$s"
|
1110 |
|
1111 |
-
#: qqworld-auto-save-images.php:
|
|
|
|
|
|
|
|
|
1112 |
msgid ""
|
1113 |
"Default scan all posts. If you want to scan 50-150 posts, please type '50' "
|
1114 |
"in the textfield and select '100'."
|
@@ -1116,62 +661,67 @@ msgstr ""
|
|
1116 |
"默认扫秒全部文章,如果想扫描50-150篇文章,请在文本框中输入“50”并在下拉菜单中"
|
1117 |
"选择“100”。"
|
1118 |
|
1119 |
-
#: qqworld-auto-save-images.php:
|
1120 |
#, php-format
|
1121 |
msgid "Start from %s to Scan"
|
1122 |
msgstr "从 %s 开始扫描"
|
1123 |
|
1124 |
-
#: qqworld-auto-save-images.php:
|
1125 |
#, fuzzy
|
1126 |
msgid "All"
|
1127 |
msgstr "所有"
|
1128 |
|
1129 |
-
#: qqworld-auto-save-images.php:
|
|
|
|
|
|
|
|
|
|
|
1130 |
msgid "Any"
|
1131 |
msgstr "任意"
|
1132 |
|
1133 |
-
#: qqworld-auto-save-images.php:
|
1134 |
msgid "Order By"
|
1135 |
msgstr "排序依据"
|
1136 |
|
1137 |
-
#: qqworld-auto-save-images.php:
|
1138 |
msgid "Author"
|
1139 |
msgstr "作者"
|
1140 |
|
1141 |
-
#: qqworld-auto-save-images.php:
|
1142 |
#, fuzzy
|
1143 |
msgid "Date"
|
1144 |
msgstr "日期"
|
1145 |
|
1146 |
-
#: qqworld-auto-save-images.php:
|
1147 |
#, fuzzy
|
1148 |
msgid "Last Modified"
|
1149 |
msgstr "最後回複"
|
1150 |
|
1151 |
-
#: qqworld-auto-save-images.php:
|
1152 |
msgid "Comment Count"
|
1153 |
msgstr "评论"
|
1154 |
|
1155 |
-
#: qqworld-auto-save-images.php:
|
1156 |
#, fuzzy
|
1157 |
msgid "Order"
|
1158 |
msgstr "順序"
|
1159 |
|
1160 |
-
#: qqworld-auto-save-images.php:
|
1161 |
msgid "Speed"
|
1162 |
msgstr "速度"
|
1163 |
|
1164 |
-
#: qqworld-auto-save-images.php:
|
1165 |
msgid "If the server is too much stress may be appropriately reduced speed."
|
1166 |
msgstr "如果服务器压力过大,可以适当调低速度。"
|
1167 |
|
1168 |
-
#: qqworld-auto-save-images.php:
|
1169 |
msgid ""
|
1170 |
"Scan posts and keep remote images in all posts to local media library. Maybe "
|
1171 |
"take a long time."
|
1172 |
msgstr "扫描所有的文章,将所有远程图片保存到本地,可能需要很长时间。"
|
1173 |
|
1174 |
-
#: qqworld-auto-save-images.php:
|
1175 |
msgid ""
|
1176 |
"The list displayed will show you which posts including remote images, then "
|
1177 |
"you can keep them to local manually via click \"Fetch\" button."
|
@@ -1179,48 +729,444 @@ msgstr ""
|
|
1179 |
"显示的列表中将告诉你哪些文章包含远程图片,然后你可以通过点击“抓取”按钮手动保"
|
1180 |
"存。"
|
1181 |
|
1182 |
-
#: qqworld-auto-save-images.php:
|
|
|
|
|
|
|
|
|
1183 |
msgid ""
|
1184 |
-
"
|
1185 |
-
"
|
1186 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1187 |
|
1188 |
-
#: qqworld-auto-save-images.php:
|
1189 |
-
msgid "
|
1190 |
-
msgstr "
|
1191 |
|
1192 |
-
#: qqworld-auto-save-images.php:
|
1193 |
-
msgid "
|
1194 |
-
msgstr "
|
1195 |
|
1196 |
-
#: qqworld-auto-save-images.php:
|
1197 |
-
msgid "
|
1198 |
-
msgstr "
|
1199 |
|
1200 |
-
#: qqworld-auto-save-images.php:
|
1201 |
-
msgid "
|
1202 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1203 |
|
1204 |
-
#: qqworld-auto-save-images.php:
|
1205 |
-
msgid "
|
1206 |
-
msgstr "
|
1207 |
|
1208 |
-
#: qqworld-auto-save-images.php:
|
1209 |
-
msgid "
|
1210 |
-
msgstr "
|
1211 |
|
1212 |
-
#: qqworld-auto-save-images.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1213 |
msgid "Has Missing/Undownloadable images."
|
1214 |
msgstr "有 不存在/不可下载 的远程图像。"
|
1215 |
|
1216 |
-
#: qqworld-auto-save-images.php:
|
1217 |
msgid "No remote images found."
|
1218 |
msgstr "没有远程图像。"
|
1219 |
|
1220 |
-
#: qqworld-auto-save-images.php:
|
1221 |
msgid "Original Link"
|
1222 |
msgstr "原始链接"
|
1223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
#~ msgid "Demo"
|
1225 |
#~ msgstr "演示"
|
1226 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: QQworld Auto Save Images\n"
|
4 |
"Report-Msgid-Bugs-To: http://www.qqworld.org\n"
|
5 |
+
"POT-Creation-Date: 2015-06-07 20:16+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-06-07 20:18+0800\n"
|
7 |
"Last-Translator: Michael Wang <admin@qqworld.org>\n"
|
8 |
"Language-Team: QQWorld <admin@qqworld.org>\n"
|
9 |
"Language: zh_CN\n"
|
19 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: qqworld-auto-save-images.php:94
|
23 |
msgid "Michael Wang"
|
24 |
msgstr "王晓骞"
|
25 |
|
26 |
+
#: qqworld-auto-save-images.php:95
|
27 |
msgid " (In Development)"
|
28 |
msgstr "(开发中)"
|
29 |
|
30 |
+
#: qqworld-auto-save-images.php:102
|
31 |
msgid ""
|
32 |
"Your server PHP does not support cUrl, please remove ';' from in front of "
|
33 |
"extension=php_curl.dll in the php.ini."
|
34 |
msgstr ""
|
35 |
"你的服务器PHP不支持cUrl,请在php.ini中移除extension=php_curl.dll前面的‘;’。"
|
36 |
|
37 |
+
#: qqworld-auto-save-images.php:103
|
38 |
msgid ""
|
39 |
"Your server PHP does not support GD2, please remove ';' from in front of "
|
40 |
"extension=php_gd2.dll in the <strong>php.ini</strong>."
|
41 |
msgstr ""
|
42 |
"你的服務器PHP不支持GD2,請在php.ini中移除extension=php_gd2.dll前面的‘;’。"
|
43 |
|
44 |
+
#: qqworld-auto-save-images.php:104
|
45 |
msgid ""
|
46 |
"Your server PHP does not support fopen, please set allow_url_fopen=1 in the "
|
47 |
"php.ini."
|
48 |
msgstr "你的服务器PHP不支持fopen,请在php.ini中设置allow_url_fopen=1。"
|
49 |
|
50 |
+
#: qqworld-auto-save-images.php:140
|
51 |
msgid "No taxonomies found."
|
52 |
msgstr "没有相关分类方法。"
|
53 |
|
54 |
+
#: qqworld-auto-save-images.php:148 qqworld-auto-save-images.php:316
|
55 |
+
#: qqworld-auto-save-images.php:1007
|
56 |
msgid "All remote images have been saved."
|
57 |
msgstr "已保存所有远程图像。"
|
58 |
|
59 |
+
#: qqworld-auto-save-images.php:148 qqworld-auto-save-images.php:149
|
60 |
#, php-format
|
61 |
msgid " <a href=\"%s\">View</a>"
|
62 |
msgstr " <a href=\"%s\">查看</a>"
|
63 |
|
64 |
+
#: qqworld-auto-save-images.php:149
|
65 |
msgid "Has missing images or image which could not download."
|
66 |
msgstr "内容包含 不存在/无法下载 的图像。"
|
67 |
|
68 |
+
#: qqworld-auto-save-images.php:170
|
69 |
msgid "In Process..."
|
70 |
msgstr "正在保存……"
|
71 |
|
72 |
+
#: qqworld-auto-save-images.php:171
|
73 |
msgid "Something error, please check."
|
74 |
msgstr "出错了,请检查。"
|
75 |
|
76 |
+
#: qqworld-auto-save-images.php:193
|
77 |
msgid ""
|
78 |
"Are you sure?<br />Before you click the yes button, I recommend backup site "
|
79 |
"database."
|
80 |
msgstr "你确定吗?<br />在点击确定按钮之前,我建议你备份网站的数据库。"
|
81 |
|
82 |
+
#: qqworld-auto-save-images.php:194 qqworld-auto-save-images.php:740
|
83 |
msgid "Please select post types."
|
84 |
msgstr "请选择文章类型。"
|
85 |
|
86 |
+
#: qqworld-auto-save-images.php:195
|
87 |
msgid "May be a problem with some posts: "
|
88 |
msgstr "也许一些文章有问题:"
|
89 |
|
90 |
+
#: qqworld-auto-save-images.php:196
|
91 |
#, php-format
|
92 |
msgid "No need enter \"%s\"."
|
93 |
msgstr "不需要输入“%s”。"
|
94 |
|
95 |
+
#: qqworld-auto-save-images.php:197
|
96 |
#, php-format
|
97 |
msgid "%d post has been scanned."
|
98 |
msgstr "已扫描%d篇文章。"
|
99 |
|
100 |
+
#: qqworld-auto-save-images.php:198
|
101 |
#, php-format
|
102 |
msgid "%d posts have been scanned."
|
103 |
msgstr "已扫描%d篇文章。"
|
104 |
|
105 |
+
#: qqworld-auto-save-images.php:199
|
106 |
#, php-format
|
107 |
msgid "%d post included remote images processed."
|
108 |
msgstr "已处理%d篇包含远程图像的文章。"
|
109 |
|
110 |
+
#: qqworld-auto-save-images.php:200
|
111 |
#, php-format
|
112 |
msgid "%d posts included remote images processed."
|
113 |
msgstr "已处理%d篇包含远程图像的文章。"
|
114 |
|
115 |
+
#: qqworld-auto-save-images.php:201
|
116 |
#, php-format
|
117 |
msgid "%d post has missing images couldn't be processed."
|
118 |
msgstr "%d篇包含不存在的远程图像的文章无法处理。"
|
119 |
|
120 |
+
#: qqworld-auto-save-images.php:202
|
121 |
#, php-format
|
122 |
msgid "%d posts have missing images couldn't be processed."
|
123 |
msgstr "%d篇包含不存在的远程图像的文章无法处理。"
|
124 |
|
125 |
+
#: qqworld-auto-save-images.php:203
|
126 |
#, php-format
|
127 |
msgid "found %d post including remote images."
|
128 |
msgstr "找到%d篇包含远程图像的文章。"
|
129 |
|
130 |
+
#: qqworld-auto-save-images.php:204
|
131 |
#, php-format
|
132 |
msgid "found %d posts including remote images."
|
133 |
msgstr "找到%d篇包含远程图像的文章。"
|
134 |
|
135 |
+
#: qqworld-auto-save-images.php:205
|
136 |
#, php-format
|
137 |
msgid "And with %d post has missing images."
|
138 |
msgstr "其中有%d篇文章包含不存在的远程图像。"
|
139 |
|
140 |
+
#: qqworld-auto-save-images.php:206
|
141 |
#, php-format
|
142 |
msgid "And with %d posts have missing images."
|
143 |
msgstr "其中有%d篇文章包含不存在的远程图像。"
|
144 |
|
145 |
+
#: qqworld-auto-save-images.php:207
|
146 |
msgid "No posts processed."
|
147 |
msgstr "未处理任何文章。"
|
148 |
|
149 |
+
#: qqworld-auto-save-images.php:208
|
150 |
msgid "No post has remote images found."
|
151 |
msgstr "没有文章包含远程图像。"
|
152 |
|
153 |
+
#: qqworld-auto-save-images.php:209
|
154 |
msgid "No posts found."
|
155 |
msgstr "未找到任何文章。"
|
156 |
|
157 |
+
#: qqworld-auto-save-images.php:210
|
158 |
msgid "All done."
|
159 |
msgstr "全部完成。"
|
160 |
|
161 |
+
#: qqworld-auto-save-images.php:211
|
162 |
#, fuzzy
|
163 |
msgid "Yes"
|
164 |
msgstr "是"
|
165 |
|
166 |
+
#: qqworld-auto-save-images.php:212 qqworld-auto-save-images.php:580
|
167 |
msgid "No"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: qqworld-auto-save-images.php:213
|
171 |
msgid "Scanning..."
|
172 |
msgstr "扫描中……"
|
173 |
|
174 |
+
#: qqworld-auto-save-images.php:214
|
175 |
msgid "Listing..."
|
176 |
msgstr "显示列表中……"
|
177 |
|
178 |
+
#: qqworld-auto-save-images.php:215 qqworld-auto-save-images.php:782
|
179 |
#, fuzzy
|
180 |
msgid "ID"
|
181 |
msgstr "博客ID"
|
182 |
|
183 |
+
#: qqworld-auto-save-images.php:216
|
184 |
msgid "Post Type"
|
185 |
msgstr "文章类型"
|
186 |
|
187 |
+
#: qqworld-auto-save-images.php:217 qqworld-auto-save-images.php:784
|
188 |
msgid "Title"
|
189 |
msgstr "标题"
|
190 |
|
191 |
+
#: qqworld-auto-save-images.php:218 qqworld-auto-save-images.php:762
|
|
|
192 |
msgid "Status"
|
193 |
msgstr "状态"
|
194 |
|
195 |
+
#: qqworld-auto-save-images.php:219
|
196 |
msgid "Control"
|
197 |
msgstr "控制"
|
198 |
|
199 |
+
#: qqworld-auto-save-images.php:220
|
200 |
#, fuzzy
|
201 |
msgid "Done"
|
202 |
msgstr "全部完成。"
|
203 |
|
204 |
+
#: qqworld-auto-save-images.php:221 qqworld-auto-save-images.php:560
|
|
|
205 |
#, fuzzy
|
206 |
msgid "Delete"
|
207 |
msgstr "刪除"
|
208 |
|
209 |
+
#: qqworld-auto-save-images.php:316 qqworld-auto-save-images.php:350
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
msgid "Has missing images."
|
211 |
msgstr "有不存在的远程图像。"
|
212 |
|
213 |
+
#: qqworld-auto-save-images.php:350
|
214 |
msgid "Normal"
|
215 |
msgstr "正常"
|
216 |
|
217 |
+
#: qqworld-auto-save-images.php:351
|
218 |
msgid "Fetch"
|
219 |
msgstr "抓取"
|
220 |
|
221 |
+
#: qqworld-auto-save-images.php:393
|
222 |
msgid "Save Remote Images"
|
223 |
msgstr "保存远程图片"
|
224 |
|
225 |
+
#: qqworld-auto-save-images.php:404
|
226 |
msgid "Settings"
|
227 |
msgstr "设置"
|
228 |
|
229 |
+
#: qqworld-auto-save-images.php:412
|
230 |
msgid "Auto Save Images"
|
231 |
msgstr "自动保存图片"
|
232 |
|
233 |
+
#: qqworld-auto-save-images.php:414 qqworld-auto-save-images.php:441
|
234 |
msgid "QQWorld Auto Save Images"
|
235 |
msgstr "QQWorld自动保存图片"
|
236 |
|
237 |
+
#: qqworld-auto-save-images.php:423
|
238 |
msgid "Installation"
|
239 |
msgstr "安装说明"
|
240 |
|
241 |
+
#: qqworld-auto-save-images.php:424
|
242 |
msgid ""
|
243 |
"<ol><li>Make sure the server configuration <strong>allow_url_fopen=1</"
|
244 |
"strong> in php.ini.</li><li>Warning: If your website domain has been "
|
249 |
"告:如果你的网站域名更改了,必须在数据库中将所有的图片链接更新到新域名,否则"
|
250 |
"插件会把未更改的图片再保存一次。</li></ol>"
|
251 |
|
252 |
+
#: qqworld-auto-save-images.php:428
|
253 |
msgid "Notice"
|
254 |
msgstr "注意"
|
255 |
|
256 |
+
#: qqworld-auto-save-images.php:429
|
257 |
msgid ""
|
258 |
"<ul><li>This plugin has a little problem that is all the image url must be "
|
259 |
"full url, it means must included \"http(s)://\", for example:<ul><li><img "
|
282 |
"让图片的URL完整。<br />所以,如果你碰到这样的代码,请手动将图片地址改成完整"
|
283 |
"的,或者使用采集工具自动补完图片的URL然后从外部提交给Wordpress。"
|
284 |
|
285 |
+
#: qqworld-auto-save-images.php:433
|
286 |
msgid "About"
|
287 |
msgstr "关于"
|
288 |
|
289 |
+
#: qqworld-auto-save-images.php:434
|
290 |
msgid ""
|
291 |
"<p>Hi everyone, My name is Michael Wang from china.</p><p>I made this plugin "
|
292 |
"just for play in the first place, after 1 year, oneday someone sent an email "
|
300 |
"后随着越来越多的人向我寻求帮助,我的插件也变得越来越强大。这就是我的插件,我"
|
301 |
"希望你们能喜欢它,谢谢。</p>"
|
302 |
|
303 |
+
#: qqworld-auto-save-images.php:442
|
304 |
msgid ""
|
305 |
"Automatically keep the all remote picture to the local, and automatically "
|
306 |
"set featured image."
|
307 |
msgstr ""
|
308 |
"自动保存远程图片到本地,自动设置特色图片,并且支持机器人采集软件从外部提交。"
|
309 |
|
310 |
+
#: qqworld-auto-save-images.php:447
|
311 |
+
msgid "General"
|
312 |
+
msgstr "常规"
|
313 |
|
314 |
+
#: qqworld-auto-save-images.php:448
|
315 |
+
msgid "Filter"
|
316 |
+
msgstr "过滤"
|
|
|
|
|
|
|
|
|
|
|
317 |
|
318 |
+
#: qqworld-auto-save-images.php:449
|
319 |
+
msgid "Format"
|
320 |
+
msgstr "格式化"
|
321 |
|
322 |
+
#: qqworld-auto-save-images.php:450
|
323 |
msgid "Scan Posts"
|
324 |
msgstr "扫描文章"
|
325 |
|
326 |
+
#: qqworld-auto-save-images.php:451 qqworld-auto-save-images.php:846
|
327 |
+
msgid "Pro Edition"
|
328 |
+
msgstr "专业版"
|
329 |
|
330 |
+
#: qqworld-auto-save-images.php:457 qqworld-auto-save-images.php:459
|
|
|
|
|
|
|
|
|
|
|
331 |
msgid "Mode"
|
332 |
msgstr "模式"
|
333 |
|
334 |
+
#: qqworld-auto-save-images.php:462 qqworld-auto-save-images.php:820
|
335 |
msgid "Automatic"
|
336 |
msgstr "自动"
|
337 |
|
338 |
+
#: qqworld-auto-save-images.php:463
|
339 |
msgid ""
|
340 |
"Automatically save all remote images to local media libary when you save or "
|
341 |
"publish post."
|
342 |
msgstr "在保存或发布文章时,自动将所有远程图像保存到本地媒体库。"
|
343 |
|
344 |
+
#: qqworld-auto-save-images.php:466 qqworld-auto-save-images.php:821
|
345 |
msgid "Manual"
|
346 |
msgstr "手动"
|
347 |
|
348 |
+
#: qqworld-auto-save-images.php:467
|
349 |
msgid ""
|
350 |
"Manually save all remote images to local media libary when you click the "
|
351 |
"button on the top of editor."
|
352 |
msgstr "当单击编辑器顶部的按钮时,手动将所有远程图像保存到本地媒体库。"
|
353 |
|
354 |
+
#: qqworld-auto-save-images.php:472 qqworld-auto-save-images.php:474
|
355 |
msgid "When"
|
356 |
msgstr "什么时候"
|
357 |
|
358 |
+
#: qqworld-auto-save-images.php:477
|
359 |
msgid "Save post (Publish, save draft or pedding review)."
|
360 |
msgstr "保存文章时(发布文章,保存草稿或提交审核)。"
|
361 |
|
362 |
+
#: qqworld-auto-save-images.php:481
|
363 |
msgid "Publish post only."
|
364 |
msgstr "仅发布文章时。"
|
365 |
|
366 |
+
#: qqworld-auto-save-images.php:487 qqworld-auto-save-images.php:489
|
367 |
msgid "Remote Publishing"
|
368 |
msgstr "远程发布"
|
369 |
|
370 |
+
#: qqworld-auto-save-images.php:487
|
371 |
msgid ""
|
372 |
"Save remote images via remote publishing from IFTTT or other way using "
|
373 |
"XMLRPC. Only supports publish post."
|
374 |
msgstr "保存通过IFTTT或其他使用XMLRPC方法远程发布的远程图片。仅支持发布文章。"
|
375 |
|
376 |
+
#: qqworld-auto-save-images.php:497 qqworld-auto-save-images.php:499
|
377 |
+
#: qqworld-auto-save-images.php:834
|
378 |
msgid "Set Featured Image"
|
379 |
msgstr "设置特色图片"
|
380 |
|
381 |
+
#: qqworld-auto-save-images.php:497
|
382 |
msgid "Set first one of the remote images as featured image."
|
383 |
msgstr "设置远程图片中的第1个为特色图片。"
|
384 |
|
385 |
+
#: qqworld-auto-save-images.php:513 qqworld-auto-save-images.php:515
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
msgid "Grabbing from Each Posts"
|
387 |
msgstr "从每篇文章抓取"
|
388 |
|
389 |
+
#: qqworld-auto-save-images.php:517
|
390 |
msgid "All Images"
|
391 |
msgstr "全部图片"
|
392 |
|
393 |
+
#: qqworld-auto-save-images.php:521
|
394 |
#, php-format
|
395 |
msgid "First %d image only"
|
396 |
msgid_plural "First %d images only"
|
397 |
msgstr[0] "前 %d 幅图像"
|
398 |
|
399 |
+
#: qqworld-auto-save-images.php:528 qqworld-auto-save-images.php:530
|
400 |
msgid "Minimum Picture Size"
|
401 |
msgstr "最小图像尺寸"
|
402 |
|
403 |
+
#: qqworld-auto-save-images.php:528
|
404 |
msgid "Ignore smaller than this size picture."
|
405 |
msgstr "忽略比这个尺寸更小的图像。"
|
406 |
|
407 |
+
#: qqworld-auto-save-images.php:532 qqworld-auto-save-images.php:544
|
|
|
408 |
msgid "Width:"
|
409 |
msgstr "宽度:"
|
410 |
|
411 |
+
#: qqworld-auto-save-images.php:532 qqworld-auto-save-images.php:535
|
412 |
+
#: qqworld-auto-save-images.php:544 qqworld-auto-save-images.php:547
|
|
|
413 |
msgid "(px)"
|
414 |
msgstr "(像素)"
|
415 |
|
416 |
+
#: qqworld-auto-save-images.php:535 qqworld-auto-save-images.php:547
|
|
|
417 |
msgid "Height:"
|
418 |
msgstr "高度:"
|
419 |
|
420 |
+
#: qqworld-auto-save-images.php:540 qqworld-auto-save-images.php:542
|
421 |
msgid "Maximum Picture Size"
|
422 |
msgstr "最大图像尺寸"
|
423 |
|
424 |
+
#: qqworld-auto-save-images.php:540
|
425 |
msgid ""
|
426 |
"Automatic reduction is greater than the size of the picture. if you want "
|
427 |
"image width less than 800px with any size height, please set width 800 and "
|
430 |
"自动缩小大于该尺寸的图像。如果你想要宽度不超过800px和任意高度图片,请设置宽度"
|
431 |
"800,并设置高度为空。"
|
432 |
|
433 |
+
#: qqworld-auto-save-images.php:552 qqworld-auto-save-images.php:554
|
434 |
msgid "Exclude Domain/Keyword"
|
435 |
msgstr "排除域名/关键词"
|
436 |
|
437 |
+
#: qqworld-auto-save-images.php:552
|
438 |
msgid "Images will not be saved, if that url contains Exclude-Domain/Keyword."
|
439 |
msgstr "如果图片地址包含排除域名/关键词,则不会保存该图片。"
|
440 |
|
441 |
+
#: qqworld-auto-save-images.php:564
|
442 |
msgid "Add a Domain/Keyword"
|
443 |
msgstr "添加域名/关键词"
|
444 |
|
445 |
+
#: qqworld-auto-save-images.php:575 qqworld-auto-save-images.php:578
|
|
|
|
|
|
|
|
|
446 |
msgid "Change Image Filename"
|
447 |
msgstr "更改图片文件名"
|
448 |
|
449 |
+
#: qqworld-auto-save-images.php:581
|
450 |
msgid ""
|
451 |
"Only change remote images filename that have Non-ASCii characters (for "
|
452 |
"Windows Server)"
|
453 |
msgstr "仅修改包含非ASCii字符的远程图片文件名(用于Windows服务器)"
|
454 |
|
455 |
+
#: qqworld-auto-save-images.php:582
|
456 |
msgid ""
|
457 |
"Change all remote images Filename and Alt as post name (for Linux Server)"
|
458 |
msgstr "改变所有远程图片文件名为文章名(Post Name)(用于Linux服务器)"
|
459 |
|
460 |
+
#: qqworld-auto-save-images.php:587 qqworld-auto-save-images.php:589
|
461 |
msgid "Custom Filename Structure"
|
462 |
msgstr "自定文件名结构"
|
463 |
|
464 |
+
#: qqworld-auto-save-images.php:594
|
465 |
msgid "Original filename or automatic changed filename."
|
466 |
msgstr "原文件名或自动更改的文件名。"
|
467 |
|
468 |
+
#: qqworld-auto-save-images.php:595
|
469 |
msgid "Full date, e.g. 20150209."
|
470 |
msgstr "完整的日期,例如:20150209。"
|
471 |
|
472 |
+
#: qqworld-auto-save-images.php:596
|
473 |
msgid "YYYY, e.g. 2015."
|
474 |
msgstr "YYYY,例如:2015。"
|
475 |
|
476 |
+
#: qqworld-auto-save-images.php:597
|
477 |
msgid "MM, e.g. 02."
|
478 |
msgstr "MM,例如:02。"
|
479 |
|
480 |
+
#: qqworld-auto-save-images.php:598
|
481 |
msgid "DD, e.g. 15."
|
482 |
msgstr "DD,例如:15。"
|
483 |
|
484 |
+
#: qqworld-auto-save-images.php:599
|
485 |
msgid "HHMMSS, e.g. 182547."
|
486 |
msgstr "HHMMSS,例如:182547。"
|
487 |
|
488 |
+
#: qqworld-auto-save-images.php:600
|
489 |
#, php-format
|
490 |
msgid "Unix timestamp, e.g. %s."
|
491 |
msgstr "Unix时间戳,例如:%s。"
|
492 |
|
493 |
+
#: qqworld-auto-save-images.php:605 qqworld-auto-save-images.php:607
|
494 |
msgid "Change Title & Alt"
|
495 |
msgstr "更改标题和替代文本"
|
496 |
|
497 |
+
#: qqworld-auto-save-images.php:605
|
498 |
msgid "Automatically add title & alt of image as post title."
|
499 |
msgstr "自动依照文章标题添加图片的标题和替代文本。"
|
500 |
|
501 |
+
#: qqworld-auto-save-images.php:614 qqworld-auto-save-images.php:616
|
502 |
msgid "Keep Outside Links"
|
503 |
msgstr "保留外链"
|
504 |
|
505 |
+
#: qqworld-auto-save-images.php:614
|
506 |
msgid "Keep the outside links of remote images if exist."
|
507 |
msgstr "保留远程图片的链接,如果有的话。"
|
508 |
|
509 |
+
#: qqworld-auto-save-images.php:623 qqworld-auto-save-images.php:625
|
510 |
msgid "Save Outside Links"
|
511 |
msgstr "保存外链"
|
512 |
|
513 |
+
#: qqworld-auto-save-images.php:623
|
514 |
msgid "Save the outside links to description of attachments."
|
515 |
msgstr "保存外部链接到附件的描述。"
|
516 |
|
517 |
+
#: qqworld-auto-save-images.php:629
|
518 |
msgid ""
|
519 |
"To custom the content, add codes into <strong>functions.php</strong> like "
|
520 |
"this below:"
|
521 |
msgstr ""
|
522 |
"如果想自定义该内容,加入类似以下代码到 <strong>functions.php</strong> 中:"
|
523 |
|
524 |
+
#: qqworld-auto-save-images.php:638 qqworld-auto-save-images.php:640
|
525 |
msgid "Image Size"
|
526 |
msgstr "图像尺寸"
|
527 |
|
528 |
+
#: qqworld-auto-save-images.php:638
|
529 |
msgid "Replace images you want size to display."
|
530 |
msgstr "替换成你想要显示的尺寸的图像。"
|
531 |
|
532 |
+
#: qqworld-auto-save-images.php:645
|
533 |
#, fuzzy
|
534 |
msgid "Thumbnail"
|
535 |
msgstr ""
|
536 |
"一個數組,可以包含數個函數,每個函數返回可能的縮略圖圖片對象相對于時間對象的"
|
537 |
"jQuery路徑。"
|
538 |
|
539 |
+
#: qqworld-auto-save-images.php:646
|
540 |
msgid "Medium"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: qqworld-auto-save-images.php:647
|
544 |
msgid "Large"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: qqworld-auto-save-images.php:648
|
548 |
msgid "Full Size"
|
549 |
msgstr "完整尺寸"
|
550 |
|
551 |
+
#: qqworld-auto-save-images.php:657 qqworld-auto-save-images.php:659
|
552 |
msgid "Link To"
|
553 |
msgstr "链接到"
|
554 |
|
555 |
+
#: qqworld-auto-save-images.php:657
|
556 |
msgid "If you checked Keep-Outside-Links, this option will not works."
|
557 |
msgstr "如果你勾选了保留外链,本项将不起作用。"
|
558 |
|
559 |
+
#: qqworld-auto-save-images.php:664
|
560 |
#, fuzzy
|
561 |
msgid "Media File"
|
562 |
msgstr "添加文件"
|
563 |
|
564 |
+
#: qqworld-auto-save-images.php:665
|
565 |
#, fuzzy
|
566 |
msgid "Attachment Page"
|
567 |
msgstr "(附件)"
|
568 |
|
569 |
+
#: qqworld-auto-save-images.php:666 qqworld-auto-save-images.php:685
|
570 |
msgid "None"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: qqworld-auto-save-images.php:675 qqworld-auto-save-images.php:677
|
574 |
+
msgid "Align To"
|
575 |
+
msgstr "对齐方式"
|
576 |
+
|
577 |
+
#: qqworld-auto-save-images.php:682
|
578 |
+
msgid "Left"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: qqworld-auto-save-images.php:683
|
582 |
+
msgid "Center"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: qqworld-auto-save-images.php:684
|
586 |
+
msgid "Right"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: qqworld-auto-save-images.php:694 qqworld-auto-save-images.php:696
|
590 |
msgid "Auto Caption"
|
591 |
msgstr "自动图说"
|
592 |
|
593 |
+
#: qqworld-auto-save-images.php:694
|
594 |
msgid "Automatically add caption shortcode."
|
595 |
msgstr "自动添加图说短代码。"
|
596 |
|
597 |
+
#: qqworld-auto-save-images.php:703 qqworld-auto-save-images.php:705
|
598 |
msgid "Additional Content"
|
599 |
msgstr "额外的内容"
|
600 |
|
601 |
+
#: qqworld-auto-save-images.php:703
|
602 |
msgid ""
|
603 |
"This content will be displayed after the each remote images code. you can "
|
604 |
"use [Attachment ID] indicate current attachment ID."
|
605 |
msgstr "此内容将在每个远程图像编码后显示。您可以使用[附件ID]指示当前连接ID。"
|
606 |
|
607 |
+
#: qqworld-auto-save-images.php:708
|
608 |
msgid "For example: [Gbuy id='[Attachment ID]']"
|
609 |
msgstr "例如:[Gbuy id='[Attachment ID]']"
|
610 |
|
611 |
+
#: qqworld-auto-save-images.php:725
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
612 |
msgid "Select post types"
|
613 |
msgstr "选择文章类型"
|
614 |
|
615 |
+
#: qqworld-auto-save-images.php:725
|
616 |
msgid ""
|
617 |
"If you have too many posts to be scan, sometimes in process looks like "
|
618 |
"stopping, but it may be fake. please be patient."
|
620 |
"如果有太多文章需要扫描,有时候在扫描过程中看起来像是停止了,但可能是假停止,"
|
621 |
"请耐心等待。"
|
622 |
|
623 |
+
#: qqworld-auto-save-images.php:739
|
624 |
#, fuzzy
|
625 |
msgid "Categories"
|
626 |
msgstr "%s分類"
|
627 |
|
628 |
+
#: qqworld-auto-save-images.php:739
|
629 |
msgid "Default empty to scan all categories."
|
630 |
msgstr "默认留空扫描所有分类。"
|
631 |
|
632 |
+
#: qqworld-auto-save-images.php:744
|
633 |
msgid "Scope of Post ID"
|
634 |
msgstr "文章ID范围"
|
635 |
|
636 |
+
#: qqworld-auto-save-images.php:744
|
637 |
msgid ""
|
638 |
"Default empty for scan all posts ID. If you want to scan posts ID from 50 to "
|
639 |
"100. please type '50' and '100' or '100' and '50', The order in which two "
|
644 |
"者'100'和'50',两个数字的顺序可以颠倒。如果你只输入了1个数字,则系统只会扫描"
|
645 |
"该ID。"
|
646 |
|
647 |
+
#: qqworld-auto-save-images.php:745
|
648 |
#, php-format
|
649 |
msgid "From %1$s to %2$s"
|
650 |
msgstr "从 %1$s 到 %2$s"
|
651 |
|
652 |
+
#: qqworld-auto-save-images.php:749
|
653 |
+
msgid "Offset"
|
654 |
+
msgstr "偏移"
|
655 |
+
|
656 |
+
#: qqworld-auto-save-images.php:749
|
657 |
msgid ""
|
658 |
"Default scan all posts. If you want to scan 50-150 posts, please type '50' "
|
659 |
"in the textfield and select '100'."
|
661 |
"默认扫秒全部文章,如果想扫描50-150篇文章,请在文本框中输入“50”并在下拉菜单中"
|
662 |
"选择“100”。"
|
663 |
|
664 |
+
#: qqworld-auto-save-images.php:751
|
665 |
#, php-format
|
666 |
msgid "Start from %s to Scan"
|
667 |
msgstr "从 %s 开始扫描"
|
668 |
|
669 |
+
#: qqworld-auto-save-images.php:753
|
670 |
#, fuzzy
|
671 |
msgid "All"
|
672 |
msgstr "所有"
|
673 |
|
674 |
+
#: qqworld-auto-save-images.php:757
|
675 |
+
#, fuzzy
|
676 |
+
msgid "Posts"
|
677 |
+
msgstr "熱門文章"
|
678 |
+
|
679 |
+
#: qqworld-auto-save-images.php:767
|
680 |
msgid "Any"
|
681 |
msgstr "任意"
|
682 |
|
683 |
+
#: qqworld-auto-save-images.php:777
|
684 |
msgid "Order By"
|
685 |
msgstr "排序依据"
|
686 |
|
687 |
+
#: qqworld-auto-save-images.php:783
|
688 |
msgid "Author"
|
689 |
msgstr "作者"
|
690 |
|
691 |
+
#: qqworld-auto-save-images.php:785
|
692 |
#, fuzzy
|
693 |
msgid "Date"
|
694 |
msgstr "日期"
|
695 |
|
696 |
+
#: qqworld-auto-save-images.php:786
|
697 |
#, fuzzy
|
698 |
msgid "Last Modified"
|
699 |
msgstr "最後回複"
|
700 |
|
701 |
+
#: qqworld-auto-save-images.php:787
|
702 |
msgid "Comment Count"
|
703 |
msgstr "评论"
|
704 |
|
705 |
+
#: qqworld-auto-save-images.php:797
|
706 |
#, fuzzy
|
707 |
msgid "Order"
|
708 |
msgstr "順序"
|
709 |
|
710 |
+
#: qqworld-auto-save-images.php:807
|
711 |
msgid "Speed"
|
712 |
msgstr "速度"
|
713 |
|
714 |
+
#: qqworld-auto-save-images.php:807
|
715 |
msgid "If the server is too much stress may be appropriately reduced speed."
|
716 |
msgstr "如果服务器压力过大,可以适当调低速度。"
|
717 |
|
718 |
+
#: qqworld-auto-save-images.php:820
|
719 |
msgid ""
|
720 |
"Scan posts and keep remote images in all posts to local media library. Maybe "
|
721 |
"take a long time."
|
722 |
msgstr "扫描所有的文章,将所有远程图片保存到本地,可能需要很长时间。"
|
723 |
|
724 |
+
#: qqworld-auto-save-images.php:821
|
725 |
msgid ""
|
726 |
"The list displayed will show you which posts including remote images, then "
|
727 |
"you can keep them to local manually via click \"Fetch\" button."
|
729 |
"显示的列表中将告诉你哪些文章包含远程图片,然后你可以通过点击“抓取”按钮手动保"
|
730 |
"存。"
|
731 |
|
732 |
+
#: qqworld-auto-save-images.php:832
|
733 |
+
msgid "Demo of Manual Mode"
|
734 |
+
msgstr "手动模式的演示"
|
735 |
+
|
736 |
+
#: qqworld-auto-save-images.php:835
|
737 |
msgid ""
|
738 |
+
"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/-"
|
739 |
+
"KImHNbPA-o\" frameborder=\"0\" allowfullscreen></iframe>"
|
740 |
+
msgstr ""
|
741 |
+
"<embed src=\"http://player.youku.com/player.php/sid/XOTE3NDk0OTUy/v.swf\" "
|
742 |
+
"allowFullScreen=\"true\" quality=\"high\" width=\"480\" height=\"400\" align="
|
743 |
+
"\"middle\" allowScriptAccess=\"always\" type=\"application/x-shockwave-flash"
|
744 |
+
"\"></embed>"
|
745 |
|
746 |
+
#: qqworld-auto-save-images.php:839
|
747 |
+
msgid "Comparison"
|
748 |
+
msgstr "对比"
|
749 |
|
750 |
+
#: qqworld-auto-save-images.php:845
|
751 |
+
msgid "Items"
|
752 |
+
msgstr "对比项目"
|
753 |
|
754 |
+
#: qqworld-auto-save-images.php:847
|
755 |
+
msgid "Free Edition"
|
756 |
+
msgstr "免费版"
|
757 |
|
758 |
+
#: qqworld-auto-save-images.php:852
|
759 |
+
msgid ""
|
760 |
+
"New manual mode with multi-thread (Faster than automatic mode and modify "
|
761 |
+
"Title & Alt in realtime)"
|
762 |
+
msgstr "支持多线程的手动模式(比自动模式更快,且可以即时修改Title和Alt)"
|
763 |
+
|
764 |
+
#: qqworld-auto-save-images.php:859
|
765 |
+
msgid "Download Images from WeChat"
|
766 |
+
msgstr "下载微信图片"
|
767 |
|
768 |
+
#: qqworld-auto-save-images.php:864
|
769 |
+
msgid "Cron Scan Posts"
|
770 |
+
msgstr "定时扫描文章"
|
771 |
|
772 |
+
#: qqworld-auto-save-images.php:869
|
773 |
+
msgid "Watermark"
|
774 |
+
msgstr "水印"
|
775 |
|
776 |
+
#: qqworld-auto-save-images.php:874
|
777 |
+
msgid "Images Compression (JPG Only)"
|
778 |
+
msgstr "图片压缩(仅JPEG)"
|
779 |
+
|
780 |
+
#: qqworld-auto-save-images.php:879
|
781 |
+
msgid "Use Proxy"
|
782 |
+
msgstr "使用代理服务器(可下载需要翻墙的图片)"
|
783 |
+
|
784 |
+
#: qqworld-auto-save-images.php:884
|
785 |
+
msgid ""
|
786 |
+
"Smart Grabbing, Automatically detect 2 images url from href/src of remote "
|
787 |
+
"image with outside link, and grab the bigger one."
|
788 |
+
msgstr "智能抓取(从图片src和链接href中提取图片地址,并抓取较大的一个)"
|
789 |
+
|
790 |
+
#: qqworld-auto-save-images.php:889
|
791 |
+
msgid "Use Cookie-Free Domain & CDN Servive (AliYun OSS, UpYun, QiNiu)"
|
792 |
+
msgstr "使用Cookie-Free域名和CDN服务(阿里云OSS、七牛云存储、又拍云存储等)"
|
793 |
+
|
794 |
+
#: qqworld-auto-save-images.php:894
|
795 |
+
msgid ""
|
796 |
+
"Collect webpage manually: Easy reprint articles, and get all the images to "
|
797 |
+
"choose from web pages."
|
798 |
+
msgstr "手动采集功能:轻松转载文章、从网页中获取所有图片供选择"
|
799 |
+
|
800 |
+
#: qqworld-auto-save-images.php:904
|
801 |
+
msgid "Buy"
|
802 |
+
msgstr "购买"
|
803 |
+
|
804 |
+
#: qqworld-auto-save-images.php:905
|
805 |
+
msgid "QQWorld Collector"
|
806 |
+
msgstr "QQWorld收藏家"
|
807 |
+
|
808 |
+
#: qqworld-auto-save-images.php:1004
|
809 |
msgid "Has Missing/Undownloadable images."
|
810 |
msgstr "有 不存在/不可下载 的远程图像。"
|
811 |
|
812 |
+
#: qqworld-auto-save-images.php:1011
|
813 |
msgid "No remote images found."
|
814 |
msgstr "没有远程图像。"
|
815 |
|
816 |
+
#: qqworld-auto-save-images.php:1161
|
817 |
msgid "Original Link"
|
818 |
msgstr "原始链接"
|
819 |
|
820 |
+
#~ msgid "Congratulation! FTP successfully connected."
|
821 |
+
#~ msgstr "恭喜!成功连接FTP。"
|
822 |
+
|
823 |
+
#~ msgid "Failed to change ftp directory, Did dirctory not exist?"
|
824 |
+
#~ msgstr "切换FTP目录失败,目录不存在?"
|
825 |
+
|
826 |
+
#~ msgid "Whoops, FTP logon has failed!"
|
827 |
+
#~ msgstr "哎呀,登录FTP失败。"
|
828 |
+
|
829 |
+
#~ msgid "Whoops, FTP connection has failed!"
|
830 |
+
#~ msgstr "哎呀,连接FTP失败。"
|
831 |
+
|
832 |
+
#~ msgid ""
|
833 |
+
#~ "New manual mode with multi-thread (Faster than automatic mode with more "
|
834 |
+
#~ "server resource consumption)"
|
835 |
+
#~ msgstr "多线程的手动模式(下载速度是自动模式的N倍,但更加耗费服务器资源)"
|
836 |
+
|
837 |
+
#~ msgid "Images Compression"
|
838 |
+
#~ msgstr "图片压缩"
|
839 |
+
|
840 |
+
#~ msgid "Demo of Pro Edition"
|
841 |
+
#~ msgstr "专业版的演示"
|
842 |
+
|
843 |
+
#~ msgid "Cron"
|
844 |
+
#~ msgstr "计划任务"
|
845 |
+
|
846 |
+
#~ msgid ""
|
847 |
+
#~ "Set cron for automatically scan posts.<br />I recommend set the option "
|
848 |
+
#~ "Offset from 0 to scan 100 posts."
|
849 |
+
#~ msgstr ""
|
850 |
+
#~ "设置计划任务自动扫描文章。<br />我建议设置偏移从0开始扫描100篇文章。"
|
851 |
+
|
852 |
+
#~ msgid "Optimization"
|
853 |
+
#~ msgstr "优化"
|
854 |
+
|
855 |
+
#~ msgid "Preview"
|
856 |
+
#~ msgstr "预览"
|
857 |
+
|
858 |
+
#~ msgid "Database"
|
859 |
+
#~ msgstr "数据库"
|
860 |
+
|
861 |
+
#~ msgid "General Options"
|
862 |
+
#~ msgstr "常规设置"
|
863 |
+
|
864 |
+
#~ msgid "Filter Options"
|
865 |
+
#~ msgstr "过滤选项"
|
866 |
+
|
867 |
+
#~ msgid "Format Options"
|
868 |
+
#~ msgstr "格式化选项"
|
869 |
+
|
870 |
+
#~ msgid "Just for preview, The complete feature will on the Pro version."
|
871 |
+
#~ msgstr "仅仅用于预览,专业版将提供完整的功能。"
|
872 |
+
|
873 |
+
#~ msgid "Optimization Options"
|
874 |
+
#~ msgstr "优化选项"
|
875 |
+
|
876 |
+
#~ msgid "Enabled"
|
877 |
+
#~ msgstr "启用"
|
878 |
+
|
879 |
+
#~ msgid "Use Cookie-Free Domains to display images."
|
880 |
+
#~ msgstr "使用免Cookie域名(Cookie-Free Domains)来显示图片。"
|
881 |
+
|
882 |
+
#~ msgid ""
|
883 |
+
#~ "If you don't want using local media library, please select Use-FTP-Remote-"
|
884 |
+
#~ "Server."
|
885 |
+
#~ msgstr "如果你不想使用本地媒体库,请选择使用FTP远程服务器。"
|
886 |
+
|
887 |
+
#~ msgid "Use local server"
|
888 |
+
#~ msgstr "使用本地服务器"
|
889 |
+
|
890 |
+
#~ msgid "Use QiNiu Cloud Storage"
|
891 |
+
#~ msgstr "使用七牛云存储"
|
892 |
+
|
893 |
+
#~ msgid "Use FTP remote server"
|
894 |
+
#~ msgstr "使用FTP远程服务器"
|
895 |
+
|
896 |
+
#~ msgid "Use AliYun Open Storage Service (OSS)"
|
897 |
+
#~ msgstr "使用阿里云开放存储服务OSS"
|
898 |
+
|
899 |
+
#~ msgid "Use UpYun Storage Service"
|
900 |
+
#~ msgstr "使用又拍云存储"
|
901 |
+
|
902 |
+
#~ msgid "Domain & Folder"
|
903 |
+
#~ msgstr "域名 & 目录"
|
904 |
+
|
905 |
+
#~ msgid ""
|
906 |
+
#~ "Set new url structure, Do not end with '/'. The folder string must front "
|
907 |
+
#~ "with '/'."
|
908 |
+
#~ msgstr "设置新的URL结构,不要以 '/' 结尾,目录字符串必须以 '/' 开头。"
|
909 |
+
|
910 |
+
#~ msgid "Host"
|
911 |
+
#~ msgstr "主机"
|
912 |
+
|
913 |
+
#~ msgid "You need add this code below into wp-config.php:"
|
914 |
+
#~ msgstr "妳需要在 wp-config.php 中加入以下代碼:"
|
915 |
+
|
916 |
+
#~ msgid ""
|
917 |
+
#~ "Needs <a href=\"%s\" target=\"_blank\">plugin of QiNiu Cloud Storage</a>."
|
918 |
+
#~ msgstr "需要 <a href=\"%s\" target=\"_blank\">七牛云存储插件</a>。"
|
919 |
+
|
920 |
+
#~ msgid "Folder (Can be empty)"
|
921 |
+
#~ msgstr "目录(可以为空)"
|
922 |
+
|
923 |
+
#~ msgid "FTP Settings"
|
924 |
+
#~ msgstr "FTP设置"
|
925 |
+
|
926 |
+
#~ msgid "IP Address"
|
927 |
+
#~ msgstr "IP地址"
|
928 |
+
|
929 |
+
#~ msgid "Port"
|
930 |
+
#~ msgstr "端口"
|
931 |
+
|
932 |
+
#~ msgid "Username"
|
933 |
+
#~ msgstr "用户名"
|
934 |
+
|
935 |
+
#~ msgid "Password"
|
936 |
+
#~ msgstr "密码"
|
937 |
+
|
938 |
+
#~ msgid "Directory"
|
939 |
+
#~ msgstr "目录"
|
940 |
+
|
941 |
+
#~ msgid "Test FTP"
|
942 |
+
#~ msgstr "测试FTP"
|
943 |
+
|
944 |
+
#~ msgid "Test Access OSS"
|
945 |
+
#~ msgstr "测试连接OSS"
|
946 |
+
|
947 |
+
#~ msgid "Only the authority Public-Read can be used."
|
948 |
+
#~ msgstr "只有公共读权限可用。"
|
949 |
+
|
950 |
+
#~ msgid "Bucket Naming conventions:"
|
951 |
+
#~ msgstr "Bucket命名规范:"
|
952 |
+
|
953 |
+
#~ msgid "Can only contain lowercase letters, numbers, and dashes"
|
954 |
+
#~ msgstr "只能包含小写字母,数字和短横线"
|
955 |
+
|
956 |
+
#~ msgid "You must start and end with lowercase letters and numbers"
|
957 |
+
#~ msgstr "必须以小写字母和数字开头和结尾"
|
958 |
+
|
959 |
+
#~ msgid "BucketName length limits between 3-63"
|
960 |
+
#~ msgstr "bucketName的长度限制在3-63之间"
|
961 |
+
|
962 |
+
#~ msgid "Delete Bucket"
|
963 |
+
#~ msgstr "刪除Bucket"
|
964 |
+
|
965 |
+
#~ msgid "New Bucket Name"
|
966 |
+
#~ msgstr "新Bucket名"
|
967 |
+
|
968 |
+
#~ msgid "Create a New Bucket"
|
969 |
+
#~ msgstr "新建Bucket"
|
970 |
+
|
971 |
+
#~ msgid "Scan & Sync"
|
972 |
+
#~ msgstr "扫描 & 同步"
|
973 |
+
|
974 |
+
#~ msgid "Automatically scan media library and sync to AliYun OSS."
|
975 |
+
#~ msgstr "自動掃描媒體庫並同步到阿裡雲OSS。"
|
976 |
+
|
977 |
+
#~ msgid "Fast Scan"
|
978 |
+
#~ msgstr "快速扫描"
|
979 |
+
|
980 |
+
#~ msgid "Smart Scan"
|
981 |
+
#~ msgstr "智能扫描"
|
982 |
+
|
983 |
+
#~ msgid "Sync Delete"
|
984 |
+
#~ msgstr "同步刪除"
|
985 |
+
|
986 |
+
#~ msgid ""
|
987 |
+
#~ "When you delete a local attachment file, delete the OSS file "
|
988 |
+
#~ "synchronization."
|
989 |
+
#~ msgstr "当你删除本地附件文件时,同时删除OSS上的文件。"
|
990 |
+
|
991 |
+
#~ msgid "Auto Replace"
|
992 |
+
#~ msgstr "自动替换"
|
993 |
+
|
994 |
+
#~ msgid ""
|
995 |
+
#~ "Automatically replaces post content's local url as OSS's url when syncing."
|
996 |
+
#~ msgstr "当同步时自动将文章内容中的本地URL替换为OSS上的URL。"
|
997 |
+
|
998 |
+
#~ msgctxt "upyun"
|
999 |
+
#~ msgid "Bucket"
|
1000 |
+
#~ msgstr "空间名"
|
1001 |
+
|
1002 |
+
#~ msgctxt "upyun"
|
1003 |
+
#~ msgid "Test Access UpYun"
|
1004 |
+
#~ msgstr "测试连接又拍云"
|
1005 |
+
|
1006 |
+
#~ msgid ""
|
1007 |
+
#~ "Automatically scan media library and sync to UpYun.<br /><strong>Fast "
|
1008 |
+
#~ "Scan</strong>: Determines whether the synchronization with local marks."
|
1009 |
+
#~ "<br /><strong>Smart Scan</strong>: Determines whether the synchronization "
|
1010 |
+
#~ "with UpYun file exists."
|
1011 |
+
#~ msgstr ""
|
1012 |
+
#~ "自动扫描媒体库并同步到又拍云。<br /><strong>快速扫描</strong>:通过本地记"
|
1013 |
+
#~ "号来判断是否已同步。<br /><strong>智能扫描</strong>:通过又拍云上的文件是"
|
1014 |
+
#~ "否存在判断是否已同步。"
|
1015 |
+
|
1016 |
+
#~ msgid ""
|
1017 |
+
#~ "When you delete a local attachment file, delete the UpYun file "
|
1018 |
+
#~ "synchronization."
|
1019 |
+
#~ msgstr "当你删除本地附件文件时,同时删除又拍云上的文件。"
|
1020 |
+
|
1021 |
+
#~ msgid ""
|
1022 |
+
#~ "Automatically replaces post content's local url as UpYun's url when "
|
1023 |
+
#~ "syncing."
|
1024 |
+
#~ msgstr "当同步时自动将文章内容中的本地URL替换为又拍云上的URL。"
|
1025 |
+
|
1026 |
+
#~ msgid "Proxy Settings"
|
1027 |
+
#~ msgstr "代理设置"
|
1028 |
+
|
1029 |
+
#~ msgid "Use proxy server to download images."
|
1030 |
+
#~ msgstr "使用代理服务器下载图片。"
|
1031 |
+
|
1032 |
+
#~ msgid "Timeout"
|
1033 |
+
#~ msgstr "超时"
|
1034 |
+
|
1035 |
+
#~ msgid "Set timeout period on proxy."
|
1036 |
+
#~ msgstr "设置代理超时时间。"
|
1037 |
+
|
1038 |
+
#~ msgid "Second(s)"
|
1039 |
+
#~ msgstr "秒"
|
1040 |
+
|
1041 |
+
#~ msgid "Proxy Address"
|
1042 |
+
#~ msgstr "代理地址"
|
1043 |
+
|
1044 |
+
#~ msgid "For example: 127.0.0.1:8087"
|
1045 |
+
#~ msgstr "示例:127.0.0.1:8087"
|
1046 |
+
|
1047 |
+
#~ msgid "Images Compression Options"
|
1048 |
+
#~ msgstr "图片压缩选项"
|
1049 |
+
|
1050 |
+
#~ msgid "Enable compress images when uploading."
|
1051 |
+
#~ msgstr "启用上传时压缩图像。"
|
1052 |
+
|
1053 |
+
#~ msgid "Quality"
|
1054 |
+
#~ msgstr "品质"
|
1055 |
+
|
1056 |
+
#~ msgid ""
|
1057 |
+
#~ "Compression level, ranges from 0 (worst quality, smaller file) to 100 "
|
1058 |
+
#~ "(best quality, biggest file)."
|
1059 |
+
#~ msgstr ""
|
1060 |
+
#~ "压缩级别,范围从0(最低品质,文件较小)到100(最高品质,文件较大)。"
|
1061 |
+
|
1062 |
+
#~ msgid " (Recommend)"
|
1063 |
+
#~ msgstr "(推荐)"
|
1064 |
+
|
1065 |
+
#~ msgid "Smart Options"
|
1066 |
+
#~ msgstr "智能选项"
|
1067 |
+
|
1068 |
+
#~ msgid "Smart Grabbing"
|
1069 |
+
#~ msgstr "智能抓取"
|
1070 |
+
|
1071 |
+
#~ msgid ""
|
1072 |
+
#~ "Automatically detect 2 images url from href/src of remote image with "
|
1073 |
+
#~ "outside link, and grab the bigger one."
|
1074 |
+
#~ msgstr ""
|
1075 |
+
#~ "自动从带外部链接的远程图片的href和src中检测2幅图片并抓取其中较大的一个。"
|
1076 |
+
|
1077 |
+
#~ msgid "Enabled Watermark"
|
1078 |
+
#~ msgstr "启用水印"
|
1079 |
+
|
1080 |
+
#~ msgid "Use for both of remote images and the local upload."
|
1081 |
+
#~ msgstr "同时用于远程图片和本地上传。"
|
1082 |
+
|
1083 |
+
#~ msgid "Ignore animated GIF"
|
1084 |
+
#~ msgstr "忽略GIF动画"
|
1085 |
+
|
1086 |
+
#~ msgid "Skip images that smaller than this size."
|
1087 |
+
#~ msgstr "跳过比这个尺寸更小的图像。"
|
1088 |
+
|
1089 |
+
#~ msgid "Position"
|
1090 |
+
#~ msgstr "位置"
|
1091 |
+
|
1092 |
+
#~ msgid "You can try to drag the watermark image."
|
1093 |
+
#~ msgstr "你可以试着拖动水印图片。"
|
1094 |
+
|
1095 |
+
#~ msgid "Opacity"
|
1096 |
+
#~ msgstr "不透明度"
|
1097 |
+
|
1098 |
+
#~ msgid "Upload Watermark Image"
|
1099 |
+
#~ msgstr "上传水印图片"
|
1100 |
+
|
1101 |
+
#~ msgid "Insert a Watermark Image"
|
1102 |
+
#~ msgstr "插入水印图片"
|
1103 |
+
|
1104 |
+
#~ msgid "Default Watermark"
|
1105 |
+
#~ msgstr "默认水印"
|
1106 |
+
|
1107 |
+
#~ msgid "Content Replacement"
|
1108 |
+
#~ msgstr "内容替换"
|
1109 |
+
|
1110 |
+
#~ msgctxt "database"
|
1111 |
+
#~ msgid "Table"
|
1112 |
+
#~ msgstr "表"
|
1113 |
+
|
1114 |
+
#~ msgid "Comments"
|
1115 |
+
#~ msgstr "评论"
|
1116 |
+
|
1117 |
+
#~ msgctxt "database"
|
1118 |
+
#~ msgid "Field"
|
1119 |
+
#~ msgstr "字段"
|
1120 |
+
|
1121 |
+
#~ msgctxt "database"
|
1122 |
+
#~ msgid "Post Content"
|
1123 |
+
#~ msgstr "文章內容"
|
1124 |
+
|
1125 |
+
#~ msgctxt "database"
|
1126 |
+
#~ msgid "Post Title"
|
1127 |
+
#~ msgstr "文章标题"
|
1128 |
+
|
1129 |
+
#~ msgctxt "database"
|
1130 |
+
#~ msgid "Post Excerpt"
|
1131 |
+
#~ msgstr "文章摘要"
|
1132 |
+
|
1133 |
+
#~ msgctxt "database"
|
1134 |
+
#~ msgid "Source Text"
|
1135 |
+
#~ msgstr "来源文本"
|
1136 |
+
|
1137 |
+
#~ msgid "For example: "
|
1138 |
+
#~ msgstr "范例:"
|
1139 |
+
|
1140 |
+
#~ msgctxt "database"
|
1141 |
+
#~ msgid "Replacement Text"
|
1142 |
+
#~ msgstr "替换文本"
|
1143 |
+
|
1144 |
+
#~ msgid "Replace Now"
|
1145 |
+
#~ msgstr "立即替换"
|
1146 |
+
|
1147 |
+
#~ msgid ""
|
1148 |
+
#~ "Be careful, before you click the Replace-Now button, i recommend backup "
|
1149 |
+
#~ "the website database."
|
1150 |
+
#~ msgstr "小心,在你点立即替换之前,我建议先备份网站数据库。"
|
1151 |
+
|
1152 |
+
#~ msgid "Cron of Scan Posts"
|
1153 |
+
#~ msgstr "扫描文章计划任务"
|
1154 |
+
|
1155 |
+
#~ msgid "Post Types"
|
1156 |
+
#~ msgstr "文章类型"
|
1157 |
+
|
1158 |
+
#~ msgid "Recurrence"
|
1159 |
+
#~ msgstr "循环运行间隔"
|
1160 |
+
|
1161 |
+
#~ msgid "Will Run On"
|
1162 |
+
#~ msgstr "将运行于"
|
1163 |
+
|
1164 |
+
#~ msgid "No Cron yet."
|
1165 |
+
#~ msgstr "还没有计划任务。"
|
1166 |
+
|
1167 |
+
#~ msgid "Clear All Crons"
|
1168 |
+
#~ msgstr "清除所有计划任务"
|
1169 |
+
|
1170 |
#~ msgid "Demo"
|
1171 |
#~ msgstr "演示"
|
1172 |
|
lang/qqworld_auto_save_images-zh_TW.mo
CHANGED
Binary file
|
lang/qqworld_auto_save_images-zh_TW.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: QQworld Auto Save Images\n"
|
4 |
"Report-Msgid-Bugs-To: http://www.qqworld.org\n"
|
5 |
-
"POT-Creation-Date: 2015-05
|
6 |
-
"PO-Revision-Date: 2015-05
|
7 |
"Last-Translator: Michael Wang <admin@qqworld.org>\n"
|
8 |
"Language-Team: QQWorld <admin@qqworld.org>\n"
|
9 |
"Language: zh_CN\n"
|
@@ -19,244 +19,242 @@ msgstr ""
|
|
19 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#: qqworld-auto-save-images.php:
|
23 |
msgid "Michael Wang"
|
24 |
msgstr "王曉骞"
|
25 |
|
26 |
-
#: qqworld-auto-save-images.php:
|
27 |
msgid " (In Development)"
|
28 |
msgstr "(開發中)"
|
29 |
|
30 |
-
#: qqworld-auto-save-images.php:
|
31 |
msgid ""
|
32 |
"Your server PHP does not support cUrl, please remove ';' from in front of "
|
33 |
"extension=php_curl.dll in the php.ini."
|
34 |
msgstr ""
|
35 |
"你的服務器PHP不支持cUrl,請在php.ini中移除extension=php_curl.dll前面的‘;’。"
|
36 |
|
37 |
-
#: qqworld-auto-save-images.php:
|
38 |
msgid ""
|
39 |
"Your server PHP does not support GD2, please remove ';' from in front of "
|
40 |
"extension=php_gd2.dll in the <strong>php.ini</strong>."
|
41 |
msgstr ""
|
42 |
"你的服務器PHP不支持GD2,請在php.ini中移除extension=php_gd2.dll前面的‘;’。"
|
43 |
|
44 |
-
#: qqworld-auto-save-images.php:
|
45 |
msgid ""
|
46 |
"Your server PHP does not support fopen, please set allow_url_fopen=1 in the "
|
47 |
"php.ini."
|
48 |
msgstr "你的服務器PHP不支持fopen,請在php.ini中設置allow_url_fopen=1。"
|
49 |
|
50 |
-
#: qqworld-auto-save-images.php:
|
51 |
msgid "No taxonomies found."
|
52 |
msgstr "沒有相關分類方法。"
|
53 |
|
54 |
-
#: qqworld-auto-save-images.php:
|
55 |
-
#: qqworld-auto-save-images.php:
|
56 |
msgid "All remote images have been saved."
|
57 |
msgstr "已保存所有遠程圖像。"
|
58 |
|
59 |
-
#: qqworld-auto-save-images.php:
|
60 |
#, php-format
|
61 |
msgid " <a href=\"%s\">View</a>"
|
62 |
msgstr " <a href=\"%s\">查看</a>"
|
63 |
|
64 |
-
#: qqworld-auto-save-images.php:
|
65 |
msgid "Has missing images or image which could not download."
|
66 |
msgstr "內容包含 不存在/無法下載 的圖像。"
|
67 |
|
68 |
-
#: qqworld-auto-save-images.php:
|
69 |
msgid "In Process..."
|
70 |
msgstr "正在保存……"
|
71 |
|
72 |
-
#: qqworld-auto-save-images.php:
|
73 |
msgid "Something error, please check."
|
74 |
msgstr "出錯了,請檢查。"
|
75 |
|
76 |
-
#: qqworld-auto-save-images.php:
|
77 |
msgid ""
|
78 |
"Are you sure?<br />Before you click the yes button, I recommend backup site "
|
79 |
"database."
|
80 |
msgstr "你確定嗎?<br />在點擊確定按鈕之前,我建議你備份網站的數據庫。"
|
81 |
|
82 |
-
#: qqworld-auto-save-images.php:
|
83 |
msgid "Please select post types."
|
84 |
msgstr "請選擇文章類型。"
|
85 |
|
86 |
-
#: qqworld-auto-save-images.php:
|
87 |
msgid "May be a problem with some posts: "
|
88 |
msgstr "也許一些文章有問題:"
|
89 |
|
90 |
-
#: qqworld-auto-save-images.php:
|
91 |
#, php-format
|
92 |
msgid "No need enter \"%s\"."
|
93 |
msgstr "不需要輸入“%s”。"
|
94 |
|
95 |
-
#: qqworld-auto-save-images.php:
|
96 |
#, php-format
|
97 |
msgid "%d post has been scanned."
|
98 |
msgstr "已掃描%d篇文章。"
|
99 |
|
100 |
-
#: qqworld-auto-save-images.php:
|
101 |
#, php-format
|
102 |
msgid "%d posts have been scanned."
|
103 |
msgstr "已掃描%d篇文章。"
|
104 |
|
105 |
-
#: qqworld-auto-save-images.php:
|
106 |
#, php-format
|
107 |
msgid "%d post included remote images processed."
|
108 |
msgstr "已處理%d篇包含遠程圖像的文章。"
|
109 |
|
110 |
-
#: qqworld-auto-save-images.php:
|
111 |
#, php-format
|
112 |
msgid "%d posts included remote images processed."
|
113 |
msgstr "已處理%d篇包含遠程圖像的文章。"
|
114 |
|
115 |
-
#: qqworld-auto-save-images.php:
|
116 |
#, php-format
|
117 |
msgid "%d post has missing images couldn't be processed."
|
118 |
msgstr "%d篇包含不存在的遠程圖像的文章無法處理。"
|
119 |
|
120 |
-
#: qqworld-auto-save-images.php:
|
121 |
#, php-format
|
122 |
msgid "%d posts have missing images couldn't be processed."
|
123 |
msgstr "%d篇包含不存在的遠程圖像的文章無法處理。"
|
124 |
|
125 |
-
#: qqworld-auto-save-images.php:
|
126 |
#, php-format
|
127 |
msgid "found %d post including remote images."
|
128 |
msgstr "找到%d篇包含遠程圖像的文章。"
|
129 |
|
130 |
-
#: qqworld-auto-save-images.php:
|
131 |
#, php-format
|
132 |
msgid "found %d posts including remote images."
|
133 |
msgstr "找到%d篇包含遠程圖像的文章。"
|
134 |
|
135 |
-
#: qqworld-auto-save-images.php:
|
136 |
#, php-format
|
137 |
msgid "And with %d post has missing images."
|
138 |
msgstr "其中有%d篇文章包含不存在的遠程圖像。"
|
139 |
|
140 |
-
#: qqworld-auto-save-images.php:
|
141 |
#, php-format
|
142 |
msgid "And with %d posts have missing images."
|
143 |
msgstr "其中有%d篇文章包含不存在的遠程圖像。"
|
144 |
|
145 |
-
#: qqworld-auto-save-images.php:
|
146 |
msgid "No posts processed."
|
147 |
msgstr "未處理任何文章。"
|
148 |
|
149 |
-
#: qqworld-auto-save-images.php:
|
150 |
msgid "No post has remote images found."
|
151 |
msgstr "沒有文章包含遠程圖像。"
|
152 |
|
153 |
-
#: qqworld-auto-save-images.php:
|
154 |
msgid "No posts found."
|
155 |
msgstr "未找到任何文章。"
|
156 |
|
157 |
-
#: qqworld-auto-save-images.php:
|
158 |
msgid "All done."
|
159 |
msgstr "全部完成。"
|
160 |
|
161 |
-
#: qqworld-auto-save-images.php:
|
162 |
#, fuzzy
|
163 |
msgid "Yes"
|
164 |
msgstr "是"
|
165 |
|
166 |
-
#: qqworld-auto-save-images.php:
|
167 |
msgid "No"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: qqworld-auto-save-images.php:
|
171 |
msgid "Scanning..."
|
172 |
msgstr "掃描中……"
|
173 |
|
174 |
-
#: qqworld-auto-save-images.php:
|
175 |
msgid "Listing..."
|
176 |
msgstr "顯示列表中……"
|
177 |
|
178 |
-
#: qqworld-auto-save-images.php:
|
179 |
#, fuzzy
|
180 |
msgid "ID"
|
181 |
msgstr "博客ID"
|
182 |
|
183 |
-
#: qqworld-auto-save-images.php:
|
184 |
msgid "Post Type"
|
185 |
msgstr "文章類型"
|
186 |
|
187 |
-
#: qqworld-auto-save-images.php:
|
188 |
msgid "Title"
|
189 |
msgstr "標題"
|
190 |
|
191 |
-
#: qqworld-auto-save-images.php:
|
192 |
-
#: qqworld-auto-save-images.php:1494
|
193 |
msgid "Status"
|
194 |
msgstr "狀態"
|
195 |
|
196 |
-
#: qqworld-auto-save-images.php:
|
197 |
msgid "Control"
|
198 |
msgstr "控制"
|
199 |
|
200 |
-
#: qqworld-auto-save-images.php:
|
201 |
#, fuzzy
|
202 |
msgid "Done"
|
203 |
msgstr "全部完成。"
|
204 |
|
205 |
-
#: qqworld-auto-save-images.php:
|
206 |
-
#: qqworld-auto-save-images.php:1499
|
207 |
#, fuzzy
|
208 |
msgid "Delete"
|
209 |
msgstr "刪除"
|
210 |
|
211 |
-
#: qqworld-auto-save-images.php:
|
212 |
msgid "Congratulation! FTP successfully connected."
|
213 |
msgstr "恭喜!成功連接FTP。"
|
214 |
|
215 |
-
#: qqworld-auto-save-images.php:
|
216 |
msgid "Failed to change ftp directory, Did dirctory not exist?"
|
217 |
msgstr "切換FTP目錄失敗,目錄不存在?"
|
218 |
|
219 |
-
#: qqworld-auto-save-images.php:
|
220 |
msgid "Whoops, FTP logon has failed!"
|
221 |
msgstr "哎呀,登錄FTP失敗。"
|
222 |
|
223 |
-
#: qqworld-auto-save-images.php:
|
224 |
msgid "Whoops, FTP connection has failed!"
|
225 |
msgstr "哎呀,連接FTP失敗。"
|
226 |
|
227 |
-
#: qqworld-auto-save-images.php:
|
228 |
msgid "Has missing images."
|
229 |
msgstr "有不存在的遠程圖像。"
|
230 |
|
231 |
-
#: qqworld-auto-save-images.php:
|
232 |
msgid "Normal"
|
233 |
msgstr "正常"
|
234 |
|
235 |
-
#: qqworld-auto-save-images.php:
|
236 |
msgid "Fetch"
|
237 |
msgstr "抓取"
|
238 |
|
239 |
-
#: qqworld-auto-save-images.php:
|
240 |
msgid "Save Remote Images"
|
241 |
msgstr "保存遠程圖片"
|
242 |
|
243 |
-
#: qqworld-auto-save-images.php:
|
244 |
msgid "Settings"
|
245 |
msgstr "設置"
|
246 |
|
247 |
-
#: qqworld-auto-save-images.php:
|
248 |
msgid "Auto Save Images"
|
249 |
msgstr "自動保存圖片"
|
250 |
|
251 |
-
#: qqworld-auto-save-images.php:
|
252 |
msgid "QQWorld Auto Save Images"
|
253 |
msgstr "QQWorld自動保存圖片"
|
254 |
|
255 |
-
#: qqworld-auto-save-images.php:
|
256 |
msgid "Installation"
|
257 |
msgstr "安裝說明"
|
258 |
|
259 |
-
#: qqworld-auto-save-images.php:
|
260 |
msgid ""
|
261 |
"<ol><li>Make sure the server configuration <strong>allow_url_fopen=1</"
|
262 |
"strong> in php.ini.</li><li>Warning: If your website domain has been "
|
@@ -267,11 +265,11 @@ msgstr ""
|
|
267 |
"告:如果你的網站域名更改了,必須在數據庫中將所有的圖片鏈接更新到新域名,否則"
|
268 |
"插件會把未更改的圖片再保存一次。</li></ol>"
|
269 |
|
270 |
-
#: qqworld-auto-save-images.php:
|
271 |
msgid "Notice"
|
272 |
msgstr "注意"
|
273 |
|
274 |
-
#: qqworld-auto-save-images.php:
|
275 |
msgid ""
|
276 |
"<ul><li>This plugin has a little problem that is all the image url must be "
|
277 |
"full url, it means must included \"http(s)://\", for example:<ul><li><img "
|
@@ -300,11 +298,11 @@ msgstr ""
|
|
300 |
"讓圖片的URL完整。<br />所以,如果你碰到這樣的代碼,請手動將圖片地址改成完整"
|
301 |
"的,或者使用采集工具自動補完圖片的URL然後從外部提交給Wordpress。"
|
302 |
|
303 |
-
#: qqworld-auto-save-images.php:
|
304 |
msgid "About"
|
305 |
msgstr "關于"
|
306 |
|
307 |
-
#: qqworld-auto-save-images.php:
|
308 |
msgid ""
|
309 |
"<p>Hi everyone, My name is Michael Wang from china.</p><p>I made this plugin "
|
310 |
"just for play in the first place, after 1 year, oneday someone sent an email "
|
@@ -318,159 +316,128 @@ msgstr ""
|
|
318 |
"後隨著越來越多的人向我尋求幫助,我的插件也變得越來越強大。這就是我的插件,我"
|
319 |
"希望你們能喜歡它,謝謝。</p>"
|
320 |
|
321 |
-
#: qqworld-auto-save-images.php:
|
322 |
msgid ""
|
323 |
"Automatically keep the all remote picture to the local, and automatically "
|
324 |
"set featured image."
|
325 |
msgstr ""
|
326 |
"自動保存遠程圖片到本地,自動設置特色圖片,並且支持機器人采集軟件從外部提交。"
|
327 |
|
328 |
-
#: qqworld-auto-save-images.php:
|
329 |
-
msgid "
|
330 |
-
msgstr "
|
331 |
|
332 |
-
#: qqworld-auto-save-images.php:
|
333 |
-
|
334 |
-
|
335 |
-
msgstr "預覽"
|
336 |
-
|
337 |
-
#: qqworld-auto-save-images.php:575
|
338 |
-
msgid "Watermark"
|
339 |
-
msgstr "水印"
|
340 |
|
341 |
-
#: qqworld-auto-save-images.php:
|
342 |
-
msgid "
|
343 |
-
msgstr "
|
344 |
|
345 |
-
#: qqworld-auto-save-images.php:
|
346 |
msgid "Scan Posts"
|
347 |
msgstr "掃描文章"
|
348 |
|
349 |
-
#: qqworld-auto-save-images.php:
|
350 |
-
msgid "
|
351 |
-
msgstr "
|
352 |
-
|
353 |
-
#: qqworld-auto-save-images.php:581
|
354 |
-
msgid "General Options"
|
355 |
-
msgstr "常規設置"
|
356 |
|
357 |
-
#: qqworld-auto-save-images.php:
|
358 |
-
#: qqworld-auto-save-images.php:835 qqworld-auto-save-images.php:837
|
359 |
msgid "Mode"
|
360 |
msgstr "模式"
|
361 |
|
362 |
-
#: qqworld-auto-save-images.php:
|
363 |
msgid "Automatic"
|
364 |
msgstr "自動"
|
365 |
|
366 |
-
#: qqworld-auto-save-images.php:
|
367 |
msgid ""
|
368 |
"Automatically save all remote images to local media libary when you save or "
|
369 |
"publish post."
|
370 |
msgstr "在保存或發布文章時,自動將所有遠程圖像保存到本地媒體庫。"
|
371 |
|
372 |
-
#: qqworld-auto-save-images.php:
|
373 |
msgid "Manual"
|
374 |
msgstr "手動"
|
375 |
|
376 |
-
#: qqworld-auto-save-images.php:
|
377 |
msgid ""
|
378 |
"Manually save all remote images to local media libary when you click the "
|
379 |
"button on the top of editor."
|
380 |
msgstr "當單擊編輯器頂部的按鈕時,手動將所有遠程圖像保存到本地媒體庫。"
|
381 |
|
382 |
-
#: qqworld-auto-save-images.php:
|
383 |
msgid "When"
|
384 |
msgstr "什麽時候"
|
385 |
|
386 |
-
#: qqworld-auto-save-images.php:
|
387 |
msgid "Save post (Publish, save draft or pedding review)."
|
388 |
msgstr "保存文章時(發布文章,保存草稿或提交審核)。"
|
389 |
|
390 |
-
#: qqworld-auto-save-images.php:
|
391 |
msgid "Publish post only."
|
392 |
msgstr "僅發布文章時。"
|
393 |
|
394 |
-
#: qqworld-auto-save-images.php:
|
395 |
msgid "Remote Publishing"
|
396 |
msgstr "遠程發布"
|
397 |
|
398 |
-
#: qqworld-auto-save-images.php:
|
399 |
msgid ""
|
400 |
"Save remote images via remote publishing from IFTTT or other way using "
|
401 |
"XMLRPC. Only supports publish post."
|
402 |
msgstr "保存通過IFTTT或其他使用XMLRPC方法遠程發布的遠程圖片。僅支持發布文章。"
|
403 |
|
404 |
-
#: qqworld-auto-save-images.php:
|
405 |
-
#: qqworld-auto-save-images.php:
|
406 |
msgid "Set Featured Image"
|
407 |
msgstr "設置特色圖片"
|
408 |
|
409 |
-
#: qqworld-auto-save-images.php:
|
410 |
msgid "Set first one of the remote images as featured image."
|
411 |
msgstr "設置遠程圖片中的第1個爲特色圖片。"
|
412 |
|
413 |
-
#: qqworld-auto-save-images.php:
|
414 |
-
msgid "Demo of Pro Edition"
|
415 |
-
msgstr "專業版的演示"
|
416 |
-
|
417 |
-
#: qqworld-auto-save-images.php:637
|
418 |
-
msgid ""
|
419 |
-
"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/-"
|
420 |
-
"KImHNbPA-o\" frameborder=\"0\" allowfullscreen></iframe>"
|
421 |
-
msgstr ""
|
422 |
-
"<embed src=\"http://player.youku.com/player.php/sid/XOTE3NDk0OTUy/v.swf\" "
|
423 |
-
"allowFullScreen=\"true\" quality=\"high\" width=\"480\" height=\"400\" align="
|
424 |
-
"\"middle\" allowScriptAccess=\"always\" type=\"application/x-shockwave-flash"
|
425 |
-
"\"></embed>"
|
426 |
-
|
427 |
-
#: qqworld-auto-save-images.php:642
|
428 |
-
msgid "Filter Options"
|
429 |
-
msgstr "過濾選項"
|
430 |
-
|
431 |
-
#: qqworld-auto-save-images.php:646 qqworld-auto-save-images.php:648
|
432 |
msgid "Grabbing from Each Posts"
|
433 |
msgstr "從每篇文章抓取"
|
434 |
|
435 |
-
#: qqworld-auto-save-images.php:
|
436 |
msgid "All Images"
|
437 |
msgstr "全部圖片"
|
438 |
|
439 |
-
#: qqworld-auto-save-images.php:
|
440 |
#, php-format
|
441 |
msgid "First %d image only"
|
442 |
msgid_plural "First %d images only"
|
443 |
msgstr[0] "前 %d 幅圖像"
|
444 |
|
445 |
-
#: qqworld-auto-save-images.php:
|
446 |
msgid "Minimum Picture Size"
|
447 |
msgstr "最小圖像尺寸"
|
448 |
|
449 |
-
#: qqworld-auto-save-images.php:
|
450 |
msgid "Ignore smaller than this size picture."
|
451 |
msgstr "忽略比這個尺寸更小的圖像。"
|
452 |
|
453 |
-
#: qqworld-auto-save-images.php:
|
454 |
-
#: qqworld-auto-save-images.php:1204
|
455 |
msgid "Width:"
|
456 |
msgstr "寬度:"
|
457 |
|
458 |
-
#: qqworld-auto-save-images.php:
|
459 |
-
#: qqworld-auto-save-images.php:
|
460 |
-
#: qqworld-auto-save-images.php:1204 qqworld-auto-save-images.php:1207
|
461 |
msgid "(px)"
|
462 |
msgstr "(像素)"
|
463 |
|
464 |
-
#: qqworld-auto-save-images.php:
|
465 |
-
#: qqworld-auto-save-images.php:1207
|
466 |
msgid "Height:"
|
467 |
msgstr "高度:"
|
468 |
|
469 |
-
#: qqworld-auto-save-images.php:
|
470 |
msgid "Maximum Picture Size"
|
471 |
msgstr "最大圖像尺寸"
|
472 |
|
473 |
-
#: qqworld-auto-save-images.php:
|
474 |
msgid ""
|
475 |
"Automatic reduction is greater than the size of the picture. if you want "
|
476 |
"image width less than 800px with any size height, please set width 800 and "
|
@@ -479,591 +446,189 @@ msgstr ""
|
|
479 |
"自動縮小大于該尺寸的圖像。如果你想要寬度不超過800px和任意高度圖片,請設置寬度"
|
480 |
"800,並設置高度爲空。"
|
481 |
|
482 |
-
#: qqworld-auto-save-images.php:
|
483 |
msgid "Exclude Domain/Keyword"
|
484 |
msgstr "排除域名/關鍵詞"
|
485 |
|
486 |
-
#: qqworld-auto-save-images.php:
|
487 |
msgid "Images will not be saved, if that url contains Exclude-Domain/Keyword."
|
488 |
msgstr "如果圖片地址包含排除域名/關鍵詞,則不會保存該圖片。"
|
489 |
|
490 |
-
#: qqworld-auto-save-images.php:
|
491 |
msgid "Add a Domain/Keyword"
|
492 |
msgstr "添加域名/關鍵詞"
|
493 |
|
494 |
-
#: qqworld-auto-save-images.php:
|
495 |
-
msgid "Format Options"
|
496 |
-
msgstr "格式化選項"
|
497 |
-
|
498 |
-
#: qqworld-auto-save-images.php:706 qqworld-auto-save-images.php:709
|
499 |
msgid "Change Image Filename"
|
500 |
msgstr "更改圖片文件名"
|
501 |
|
502 |
-
#: qqworld-auto-save-images.php:
|
503 |
msgid ""
|
504 |
"Only change remote images filename that have Non-ASCii characters (for "
|
505 |
"Windows Server)"
|
506 |
msgstr "僅修改包含非ASCii字符的遠程圖片文件名(用于Windows服務器)"
|
507 |
|
508 |
-
#: qqworld-auto-save-images.php:
|
509 |
msgid ""
|
510 |
"Change all remote images Filename and Alt as post name (for Linux Server)"
|
511 |
msgstr "改變所有遠程圖片文件名爲文章名(Post Name)(用于Linux服務器)"
|
512 |
|
513 |
-
#: qqworld-auto-save-images.php:
|
514 |
msgid "Custom Filename Structure"
|
515 |
msgstr "自定文件名結構"
|
516 |
|
517 |
-
#: qqworld-auto-save-images.php:
|
518 |
msgid "Original filename or automatic changed filename."
|
519 |
msgstr "原文件名或自動更改的文件名。"
|
520 |
|
521 |
-
#: qqworld-auto-save-images.php:
|
522 |
msgid "Full date, e.g. 20150209."
|
523 |
msgstr "完整的日期,例如:20150209。"
|
524 |
|
525 |
-
#: qqworld-auto-save-images.php:
|
526 |
msgid "YYYY, e.g. 2015."
|
527 |
msgstr "YYYY,例如:2015。"
|
528 |
|
529 |
-
#: qqworld-auto-save-images.php:
|
530 |
msgid "MM, e.g. 02."
|
531 |
msgstr "MM,例如:02。"
|
532 |
|
533 |
-
#: qqworld-auto-save-images.php:
|
534 |
msgid "DD, e.g. 15."
|
535 |
msgstr "DD,例如:15。"
|
536 |
|
537 |
-
#: qqworld-auto-save-images.php:
|
538 |
msgid "HHMMSS, e.g. 182547."
|
539 |
msgstr "HHMMSS,例如:182547。"
|
540 |
|
541 |
-
#: qqworld-auto-save-images.php:
|
542 |
#, php-format
|
543 |
msgid "Unix timestamp, e.g. %s."
|
544 |
msgstr "Unix時間戳,例如:%s。"
|
545 |
|
546 |
-
#: qqworld-auto-save-images.php:
|
547 |
msgid "Change Title & Alt"
|
548 |
msgstr "更改標題和替代文本"
|
549 |
|
550 |
-
#: qqworld-auto-save-images.php:
|
551 |
msgid "Automatically add title & alt of image as post title."
|
552 |
msgstr "自動依照文章標題添加圖片的標題和替代文本。"
|
553 |
|
554 |
-
#: qqworld-auto-save-images.php:
|
555 |
msgid "Keep Outside Links"
|
556 |
msgstr "保留外鏈"
|
557 |
|
558 |
-
#: qqworld-auto-save-images.php:
|
559 |
msgid "Keep the outside links of remote images if exist."
|
560 |
msgstr "保留遠程圖片的鏈接,如果有的話。"
|
561 |
|
562 |
-
#: qqworld-auto-save-images.php:
|
563 |
msgid "Save Outside Links"
|
564 |
msgstr "保存外鏈"
|
565 |
|
566 |
-
#: qqworld-auto-save-images.php:
|
567 |
msgid "Save the outside links to description of attachments."
|
568 |
msgstr "保存外部鏈接到附件的描述。"
|
569 |
|
570 |
-
#: qqworld-auto-save-images.php:
|
571 |
msgid ""
|
572 |
"To custom the content, add codes into <strong>functions.php</strong> like "
|
573 |
"this below:"
|
574 |
msgstr ""
|
575 |
"如果想自定義該內容,加入類似以下代碼到 <strong>functions.php</strong> 中:"
|
576 |
|
577 |
-
#: qqworld-auto-save-images.php:
|
578 |
msgid "Image Size"
|
579 |
msgstr "圖像尺寸"
|
580 |
|
581 |
-
#: qqworld-auto-save-images.php:
|
582 |
msgid "Replace images you want size to display."
|
583 |
msgstr "替換成你想要顯示的尺寸的圖像。"
|
584 |
|
585 |
-
#: qqworld-auto-save-images.php:
|
586 |
#, fuzzy
|
587 |
msgid "Thumbnail"
|
588 |
msgstr ""
|
589 |
"一個數組,可以包含數個函數,每個函數返回可能的縮略圖圖片對象相對于時間對象的"
|
590 |
"jQuery路徑。"
|
591 |
|
592 |
-
#: qqworld-auto-save-images.php:
|
593 |
msgid "Medium"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: qqworld-auto-save-images.php:
|
597 |
msgid "Large"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: qqworld-auto-save-images.php:
|
601 |
msgid "Full Size"
|
602 |
msgstr "完整尺寸"
|
603 |
|
604 |
-
#: qqworld-auto-save-images.php:
|
605 |
msgid "Link To"
|
606 |
msgstr "鏈接到"
|
607 |
|
608 |
-
#: qqworld-auto-save-images.php:
|
609 |
msgid "If you checked Keep-Outside-Links, this option will not works."
|
610 |
msgstr "如果你勾選了保留外鏈,本項將不起作用。"
|
611 |
|
612 |
-
#: qqworld-auto-save-images.php:
|
613 |
#, fuzzy
|
614 |
msgid "Media File"
|
615 |
msgstr "添加文件"
|
616 |
|
617 |
-
#: qqworld-auto-save-images.php:
|
618 |
#, fuzzy
|
619 |
msgid "Attachment Page"
|
620 |
msgstr "(附件)"
|
621 |
|
622 |
-
#: qqworld-auto-save-images.php:
|
623 |
msgid "None"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: qqworld-auto-save-images.php:
|
627 |
-
msgid "
|
628 |
-
msgstr "
|
629 |
-
|
630 |
-
#: qqworld-auto-save-images.php:806
|
631 |
-
msgid ""
|
632 |
-
"This content will be displayed after the each remote images code. you can "
|
633 |
-
"use [Attachment ID] indicate current attachment ID."
|
634 |
-
msgstr "此內容將在每個遠程圖像編碼後顯示。您可以使用[附件ID]指示當前連接ID。"
|
635 |
-
|
636 |
-
#: qqworld-auto-save-images.php:811
|
637 |
-
msgid "For example: [Gbuy id='[Attachment ID]']"
|
638 |
-
msgstr "例如:[Gbuy id='[Attachment ID]']"
|
639 |
-
|
640 |
-
#: qqworld-auto-save-images.php:821 qqworld-auto-save-images.php:1176
|
641 |
-
#: qqworld-auto-save-images.php:1305 qqworld-auto-save-images.php:1487
|
642 |
-
msgid "Just for preview, The complete feature will on the Pro version."
|
643 |
-
msgstr "僅僅用于預覽,專業版將提供完整的功能。"
|
644 |
-
|
645 |
-
#: qqworld-auto-save-images.php:822
|
646 |
-
msgid "Optimization Options"
|
647 |
-
msgstr "優化選項"
|
648 |
-
|
649 |
-
#: qqworld-auto-save-images.php:826 qqworld-auto-save-images.php:828
|
650 |
-
#: qqworld-auto-save-images.php:1095 qqworld-auto-save-images.php:1097
|
651 |
-
#: qqworld-auto-save-images.php:1127 qqworld-auto-save-images.php:1129
|
652 |
-
msgid "Enabled"
|
653 |
-
msgstr "啓用"
|
654 |
-
|
655 |
-
#: qqworld-auto-save-images.php:826
|
656 |
-
msgid "Use Cookie-Free Domains to display images."
|
657 |
-
msgstr "使用免Cookie域名(Cookie-Free Domains)來顯示圖片。"
|
658 |
-
|
659 |
-
#: qqworld-auto-save-images.php:835
|
660 |
-
msgid ""
|
661 |
-
"If you don't want using local media library, please select Use-FTP-Remote-"
|
662 |
-
"Server."
|
663 |
-
msgstr "如果你不想使用本地媒體庫,請選擇使用FTP遠程服務器。"
|
664 |
-
|
665 |
-
#: qqworld-auto-save-images.php:841
|
666 |
-
msgid "Use local server"
|
667 |
-
msgstr "使用本地服務器"
|
668 |
-
|
669 |
-
#: qqworld-auto-save-images.php:842
|
670 |
-
msgid "Use QiNiu Cloud Storage"
|
671 |
-
msgstr "使用七牛雲存儲"
|
672 |
-
|
673 |
-
#: qqworld-auto-save-images.php:843
|
674 |
-
msgid "Use FTP remote server"
|
675 |
-
msgstr "使用FTP遠程服務器"
|
676 |
-
|
677 |
-
#: qqworld-auto-save-images.php:844
|
678 |
-
msgid "Use AliYun Open Storage Service (OSS)"
|
679 |
-
msgstr "使用阿裏雲開放存儲服務OSS"
|
680 |
-
|
681 |
-
#: qqworld-auto-save-images.php:845
|
682 |
-
msgid "Use UpYun Storage Service"
|
683 |
-
msgstr "使用又拍雲存儲"
|
684 |
-
|
685 |
-
#: qqworld-auto-save-images.php:858 qqworld-auto-save-images.php:860
|
686 |
-
#: qqworld-auto-save-images.php:878 qqworld-auto-save-images.php:880
|
687 |
-
#: qqworld-auto-save-images.php:896 qqworld-auto-save-images.php:898
|
688 |
-
#: qqworld-auto-save-images.php:948 qqworld-auto-save-images.php:950
|
689 |
-
#: qqworld-auto-save-images.php:1024 qqworld-auto-save-images.php:1026
|
690 |
-
msgid "Domain & Folder"
|
691 |
-
msgstr "域名 & 目錄"
|
692 |
-
|
693 |
-
#: qqworld-auto-save-images.php:858 qqworld-auto-save-images.php:878
|
694 |
-
#: qqworld-auto-save-images.php:896 qqworld-auto-save-images.php:948
|
695 |
-
#: qqworld-auto-save-images.php:1024
|
696 |
-
msgid ""
|
697 |
-
"Set new url structure, Do not end with '/'. The folder string must front "
|
698 |
-
"with '/'."
|
699 |
-
msgstr "設置新的URL結構,不要以 '/' 結尾,目錄字符串必須以 '/' 開頭。"
|
700 |
-
|
701 |
-
#: qqworld-auto-save-images.php:862 qqworld-auto-save-images.php:883
|
702 |
-
#: qqworld-auto-save-images.php:904 qqworld-auto-save-images.php:956
|
703 |
-
#: qqworld-auto-save-images.php:1032
|
704 |
-
msgid "Host"
|
705 |
-
msgstr "主機"
|
706 |
-
|
707 |
-
#: qqworld-auto-save-images.php:864
|
708 |
-
msgid "You need add this code below into wp-config.php:"
|
709 |
-
msgstr "妳需要在 wp-config.php 中加入以下代碼:"
|
710 |
-
|
711 |
-
#: qqworld-auto-save-images.php:886
|
712 |
-
#, php-format
|
713 |
-
msgid ""
|
714 |
-
"Needs <a href=\"%s\" target=\"_blank\">plugin of QiNiu Cloud Storage</a>."
|
715 |
-
msgstr "需要 <a href=\"%s\" target=\"_blank\">七牛雲存儲插件</a>。"
|
716 |
-
|
717 |
-
#: qqworld-auto-save-images.php:905 qqworld-auto-save-images.php:957
|
718 |
-
#: qqworld-auto-save-images.php:1033
|
719 |
-
msgid "Folder (Can be empty)"
|
720 |
-
msgstr "目錄(可以爲空)"
|
721 |
-
|
722 |
-
#: qqworld-auto-save-images.php:911 qqworld-auto-save-images.php:913
|
723 |
-
msgid "FTP Settings"
|
724 |
-
msgstr "FTP設置"
|
725 |
-
|
726 |
-
#: qqworld-auto-save-images.php:916
|
727 |
-
msgid "IP Address"
|
728 |
-
msgstr "IP地址"
|
729 |
-
|
730 |
-
#: qqworld-auto-save-images.php:920
|
731 |
-
msgid "Port"
|
732 |
-
msgstr "端口"
|
733 |
-
|
734 |
-
#: qqworld-auto-save-images.php:924 qqworld-auto-save-images.php:1046
|
735 |
-
#: qqworld-auto-save-images.php:1048 qqworld-auto-save-images.php:1050
|
736 |
-
msgid "Username"
|
737 |
-
msgstr "用戶名"
|
738 |
-
|
739 |
-
#: qqworld-auto-save-images.php:928 qqworld-auto-save-images.php:1055
|
740 |
-
#: qqworld-auto-save-images.php:1057 qqworld-auto-save-images.php:1058
|
741 |
-
msgid "Password"
|
742 |
-
msgstr "密碼"
|
743 |
-
|
744 |
-
#: qqworld-auto-save-images.php:932
|
745 |
-
msgid "Directory"
|
746 |
-
msgstr "目錄"
|
747 |
-
|
748 |
-
#: qqworld-auto-save-images.php:936
|
749 |
-
msgid "Test FTP"
|
750 |
-
msgstr "測試FTP"
|
751 |
-
|
752 |
-
#: qqworld-auto-save-images.php:963 qqworld-auto-save-images.php:965
|
753 |
-
msgid "Access Key ID"
|
754 |
-
msgstr ""
|
755 |
|
756 |
-
#: qqworld-auto-save-images.php:
|
757 |
-
msgid "
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: qqworld-auto-save-images.php:
|
761 |
-
msgid "
|
762 |
-
msgstr "測試連接OSS"
|
763 |
-
|
764 |
-
#: qqworld-auto-save-images.php:982 qqworld-auto-save-images.php:984
|
765 |
-
msgid "Buckets"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: qqworld-auto-save-images.php:
|
769 |
-
msgid "
|
770 |
-
msgstr "只有公共讀權限可用。"
|
771 |
-
|
772 |
-
#: qqworld-auto-save-images.php:982
|
773 |
-
msgid "Bucket Naming conventions:"
|
774 |
-
msgstr "Bucket命名規範:"
|
775 |
-
|
776 |
-
#: qqworld-auto-save-images.php:982
|
777 |
-
msgid "Can only contain lowercase letters, numbers, and dashes"
|
778 |
-
msgstr "只能包含小寫字母,數字和短橫線"
|
779 |
-
|
780 |
-
#: qqworld-auto-save-images.php:982
|
781 |
-
msgid "You must start and end with lowercase letters and numbers"
|
782 |
-
msgstr "必須以小寫字母和數字開頭和結尾"
|
783 |
-
|
784 |
-
#: qqworld-auto-save-images.php:982
|
785 |
-
msgid "BucketName length limits between 3-63"
|
786 |
-
msgstr "bucketName的長度限制在3-63之間"
|
787 |
-
|
788 |
-
#: qqworld-auto-save-images.php:987
|
789 |
-
msgid "Delete Bucket"
|
790 |
-
msgstr "刪除Bucket"
|
791 |
-
|
792 |
-
#: qqworld-auto-save-images.php:988
|
793 |
-
msgid "New Bucket Name"
|
794 |
-
msgstr "新Bucket名"
|
795 |
-
|
796 |
-
#: qqworld-auto-save-images.php:988
|
797 |
-
msgid "Create a New Bucket"
|
798 |
-
msgstr "新建Bucket"
|
799 |
-
|
800 |
-
#: qqworld-auto-save-images.php:992 qqworld-auto-save-images.php:994
|
801 |
-
#: qqworld-auto-save-images.php:1063 qqworld-auto-save-images.php:1065
|
802 |
-
msgid "Scan & Sync"
|
803 |
-
msgstr "掃描 & 同步"
|
804 |
-
|
805 |
-
#: qqworld-auto-save-images.php:992
|
806 |
-
msgid "Automatically scan media library and sync to AliYun OSS."
|
807 |
-
msgstr "自動掃描媒體庫並同步到阿裡雲OSS。"
|
808 |
-
|
809 |
-
#: qqworld-auto-save-images.php:995 qqworld-auto-save-images.php:1066
|
810 |
-
msgid "Fast Scan"
|
811 |
-
msgstr "快速掃描"
|
812 |
-
|
813 |
-
#: qqworld-auto-save-images.php:996 qqworld-auto-save-images.php:1067
|
814 |
-
msgid "Smart Scan"
|
815 |
-
msgstr "智能掃描"
|
816 |
-
|
817 |
-
#: qqworld-auto-save-images.php:1000 qqworld-auto-save-images.php:1002
|
818 |
-
#: qqworld-auto-save-images.php:1071 qqworld-auto-save-images.php:1073
|
819 |
-
msgid "Sync Delete"
|
820 |
-
msgstr "同步刪除"
|
821 |
-
|
822 |
-
#: qqworld-auto-save-images.php:1000
|
823 |
-
msgid ""
|
824 |
-
"When you delete a local attachment file, delete the OSS file synchronization."
|
825 |
-
msgstr "當你刪除本地附件文件時,同時刪除OSS上的文件。"
|
826 |
-
|
827 |
-
#: qqworld-auto-save-images.php:1009 qqworld-auto-save-images.php:1011
|
828 |
-
#: qqworld-auto-save-images.php:1080 qqworld-auto-save-images.php:1082
|
829 |
-
msgid "Auto Replace"
|
830 |
-
msgstr "自動替換"
|
831 |
-
|
832 |
-
#: qqworld-auto-save-images.php:1009
|
833 |
-
msgid ""
|
834 |
-
"Automatically replaces post content's local url as OSS's url when syncing."
|
835 |
-
msgstr "當同步時自動將文章內容中的本地URL替換爲OSS上的URL。"
|
836 |
-
|
837 |
-
#: qqworld-auto-save-images.php:1039 qqworld-auto-save-images.php:1041
|
838 |
-
#: qqworld-auto-save-images.php:1042
|
839 |
-
msgctxt "upyun"
|
840 |
-
msgid "Bucket"
|
841 |
-
msgstr "空間名"
|
842 |
-
|
843 |
-
#: qqworld-auto-save-images.php:1059
|
844 |
-
msgctxt "upyun"
|
845 |
-
msgid "Test Access UpYun"
|
846 |
-
msgstr "測試連接又拍雲"
|
847 |
-
|
848 |
-
#: qqworld-auto-save-images.php:1063
|
849 |
-
msgid ""
|
850 |
-
"Automatically scan media library and sync to UpYun.<br /><strong>Fast Scan</"
|
851 |
-
"strong>: Determines whether the synchronization with local marks.<br /"
|
852 |
-
"><strong>Smart Scan</strong>: Determines whether the synchronization with "
|
853 |
-
"UpYun file exists."
|
854 |
msgstr ""
|
855 |
-
"自動掃描媒體庫並同步到又拍雲。<br /><strong>快速掃描</strong>:通過本地記號來"
|
856 |
-
"判斷是否已同步。<br /><strong>智能掃描</strong>:通過又拍雲上的文件是否存在判"
|
857 |
-
"斷是否已同步。"
|
858 |
-
|
859 |
-
#: qqworld-auto-save-images.php:1071
|
860 |
-
msgid ""
|
861 |
-
"When you delete a local attachment file, delete the UpYun file "
|
862 |
-
"synchronization."
|
863 |
-
msgstr "當你刪除本地附件文件時,同時刪除又拍雲上的文件。"
|
864 |
-
|
865 |
-
#: qqworld-auto-save-images.php:1080
|
866 |
-
msgid ""
|
867 |
-
"Automatically replaces post content's local url as UpYun's url when syncing."
|
868 |
-
msgstr "當同步時自動將文章內容中的本地URL替換爲又拍雲上的URL。"
|
869 |
-
|
870 |
-
#: qqworld-auto-save-images.php:1091
|
871 |
-
msgid "Proxy Settings"
|
872 |
-
msgstr "代理設置"
|
873 |
-
|
874 |
-
#: qqworld-auto-save-images.php:1095
|
875 |
-
msgid "Use proxy server to download images."
|
876 |
-
msgstr "使用代理服務器下載圖片。"
|
877 |
-
|
878 |
-
#: qqworld-auto-save-images.php:1104 qqworld-auto-save-images.php:1106
|
879 |
-
msgid "Timeout"
|
880 |
-
msgstr "超時"
|
881 |
-
|
882 |
-
#: qqworld-auto-save-images.php:1104
|
883 |
-
msgid "Set timeout period on proxy."
|
884 |
-
msgstr "設置代理超時時間。"
|
885 |
-
|
886 |
-
#: qqworld-auto-save-images.php:1108
|
887 |
-
msgid "Second(s)"
|
888 |
-
msgstr "秒"
|
889 |
-
|
890 |
-
#: qqworld-auto-save-images.php:1113 qqworld-auto-save-images.php:1115
|
891 |
-
msgid "Proxy Address"
|
892 |
-
msgstr "代理地址"
|
893 |
-
|
894 |
-
#: qqworld-auto-save-images.php:1113
|
895 |
-
msgid "For example: 127.0.0.1:8087"
|
896 |
-
msgstr "示例:127.0.0.1:8087"
|
897 |
-
|
898 |
-
#: qqworld-auto-save-images.php:1123
|
899 |
-
msgid "Images Compression Options"
|
900 |
-
msgstr "圖片壓縮選項"
|
901 |
-
|
902 |
-
#: qqworld-auto-save-images.php:1127
|
903 |
-
msgid "Enable compress images when uploading."
|
904 |
-
msgstr "啓用上傳時壓縮圖像。"
|
905 |
-
|
906 |
-
#: qqworld-auto-save-images.php:1136 qqworld-auto-save-images.php:1138
|
907 |
-
msgid "Quality"
|
908 |
-
msgstr "品質"
|
909 |
|
910 |
-
#: qqworld-auto-save-images.php:
|
911 |
-
msgid ""
|
912 |
-
|
913 |
-
"quality, biggest file)."
|
914 |
-
msgstr "壓縮級別,範圍從0(最低品質,文件較小)到100(最高品質,文件較大)。"
|
915 |
-
|
916 |
-
#: qqworld-auto-save-images.php:1141
|
917 |
-
msgid " (Recommend)"
|
918 |
-
msgstr "(推薦)"
|
919 |
|
920 |
-
#: qqworld-auto-save-images.php:
|
921 |
-
msgid "
|
922 |
-
msgstr "
|
923 |
|
924 |
-
#: qqworld-auto-save-images.php:
|
925 |
-
msgid "
|
926 |
-
msgstr "
|
927 |
|
928 |
-
#: qqworld-auto-save-images.php:
|
929 |
msgid ""
|
930 |
-
"
|
931 |
-
"
|
932 |
-
msgstr ""
|
933 |
-
"自動從帶外部鏈接的遠程圖片的href和src中檢測2幅圖片並抓取其中較大的一個。"
|
934 |
-
|
935 |
-
#: qqworld-auto-save-images.php:1165 qqworld-auto-save-images.php:1294
|
936 |
-
#: qqworld-auto-save-images.php:1359 qqworld-auto-save-images.php:1513
|
937 |
-
msgid "Buy"
|
938 |
-
msgstr "購買"
|
939 |
-
|
940 |
-
#: qqworld-auto-save-images.php:1166 qqworld-auto-save-images.php:1295
|
941 |
-
#: qqworld-auto-save-images.php:1360 qqworld-auto-save-images.php:1514
|
942 |
-
msgid "QQWorld Collector"
|
943 |
-
msgstr "QQWorld收藏家"
|
944 |
-
|
945 |
-
#: qqworld-auto-save-images.php:1180 qqworld-auto-save-images.php:1182
|
946 |
-
msgid "Enabled Watermark"
|
947 |
-
msgstr "啓用水印"
|
948 |
-
|
949 |
-
#: qqworld-auto-save-images.php:1180
|
950 |
-
msgid "Use for both of remote images and the local upload."
|
951 |
-
msgstr "同時用于遠程圖片和本地上傳。"
|
952 |
-
|
953 |
-
#: qqworld-auto-save-images.php:1190 qqworld-auto-save-images.php:1192
|
954 |
-
msgid "Ignore animated GIF"
|
955 |
-
msgstr "忽略GIF動畫"
|
956 |
-
|
957 |
-
#: qqworld-auto-save-images.php:1200 qqworld-auto-save-images.php:1202
|
958 |
-
msgid "Filter"
|
959 |
-
msgstr "過濾"
|
960 |
-
|
961 |
-
#: qqworld-auto-save-images.php:1200
|
962 |
-
msgid "Skip images that smaller than this size."
|
963 |
-
msgstr "跳過比這個尺寸更小的圖像。"
|
964 |
-
|
965 |
-
#: qqworld-auto-save-images.php:1213
|
966 |
-
msgid "Align To"
|
967 |
-
msgstr "對齊方式"
|
968 |
-
|
969 |
-
#: qqworld-auto-save-images.php:1235
|
970 |
-
msgid "Position"
|
971 |
-
msgstr "位置"
|
972 |
-
|
973 |
-
#: qqworld-auto-save-images.php:1235
|
974 |
-
msgid "You can try to drag the watermark image."
|
975 |
-
msgstr "你可以試著拖動水印圖片。"
|
976 |
-
|
977 |
-
#: qqworld-auto-save-images.php:1252 qqworld-auto-save-images.php:1254
|
978 |
-
#: qqworld-auto-save-images.php:1398 qqworld-auto-save-images.php:1493
|
979 |
-
msgid "Offset"
|
980 |
-
msgstr "偏移"
|
981 |
-
|
982 |
-
#: qqworld-auto-save-images.php:1265 qqworld-auto-save-images.php:1267
|
983 |
-
msgid "Opacity"
|
984 |
-
msgstr "不透明度"
|
985 |
-
|
986 |
-
#: qqworld-auto-save-images.php:1275 qqworld-auto-save-images.php:1277
|
987 |
-
msgid "Upload Watermark Image"
|
988 |
-
msgstr "上傳水印圖片"
|
989 |
-
|
990 |
-
#: qqworld-auto-save-images.php:1279
|
991 |
-
msgid "Insert a Watermark Image"
|
992 |
-
msgstr "插入水印圖片"
|
993 |
-
|
994 |
-
#: qqworld-auto-save-images.php:1290
|
995 |
-
msgid "Default Watermark"
|
996 |
-
msgstr "默認水印"
|
997 |
-
|
998 |
-
#: qqworld-auto-save-images.php:1306
|
999 |
-
msgid "Content Replacement"
|
1000 |
-
msgstr "內容替換"
|
1001 |
-
|
1002 |
-
#: qqworld-auto-save-images.php:1310 qqworld-auto-save-images.php:1312
|
1003 |
-
msgctxt "database"
|
1004 |
-
msgid "Table"
|
1005 |
-
msgstr "表"
|
1006 |
-
|
1007 |
-
#: qqworld-auto-save-images.php:1315 qqworld-auto-save-images.php:1406
|
1008 |
-
#, fuzzy
|
1009 |
-
msgid "Posts"
|
1010 |
-
msgstr "熱門文章"
|
1011 |
-
|
1012 |
-
#: qqworld-auto-save-images.php:1316
|
1013 |
-
msgid "Comments"
|
1014 |
-
msgstr "評論"
|
1015 |
|
1016 |
-
#: qqworld-auto-save-images.php:
|
1017 |
-
|
1018 |
-
|
1019 |
-
msgstr "字段"
|
1020 |
-
|
1021 |
-
#: qqworld-auto-save-images.php:1327
|
1022 |
-
msgctxt "database"
|
1023 |
-
msgid "Post Content"
|
1024 |
-
msgstr "文章內容"
|
1025 |
-
|
1026 |
-
#: qqworld-auto-save-images.php:1328
|
1027 |
-
msgctxt "database"
|
1028 |
-
msgid "Post Title"
|
1029 |
-
msgstr "文章標題"
|
1030 |
-
|
1031 |
-
#: qqworld-auto-save-images.php:1329
|
1032 |
-
msgctxt "database"
|
1033 |
-
msgid "Post Excerpt"
|
1034 |
-
msgstr "文章摘要"
|
1035 |
-
|
1036 |
-
#: qqworld-auto-save-images.php:1335 qqworld-auto-save-images.php:1337
|
1037 |
-
#: qqworld-auto-save-images.php:1339
|
1038 |
-
msgctxt "database"
|
1039 |
-
msgid "Source Text"
|
1040 |
-
msgstr "來源文本"
|
1041 |
-
|
1042 |
-
#: qqworld-auto-save-images.php:1335 qqworld-auto-save-images.php:1345
|
1043 |
-
msgid "For example: "
|
1044 |
-
msgstr "範例:"
|
1045 |
-
|
1046 |
-
#: qqworld-auto-save-images.php:1345 qqworld-auto-save-images.php:1347
|
1047 |
-
#: qqworld-auto-save-images.php:1349
|
1048 |
-
msgctxt "database"
|
1049 |
-
msgid "Replacement Text"
|
1050 |
-
msgstr "替換文本"
|
1051 |
-
|
1052 |
-
#: qqworld-auto-save-images.php:1364
|
1053 |
-
msgid "Replace Now"
|
1054 |
-
msgstr "立即替換"
|
1055 |
-
|
1056 |
-
#: qqworld-auto-save-images.php:1364
|
1057 |
-
msgid ""
|
1058 |
-
"Be careful, before you click the Replace-Now button, i recommend backup the "
|
1059 |
-
"website database."
|
1060 |
-
msgstr "小心,在你點立即替換之前,我建議先備份網站數據庫。"
|
1061 |
|
1062 |
-
#: qqworld-auto-save-images.php:
|
1063 |
msgid "Select post types"
|
1064 |
msgstr "選擇文章類型"
|
1065 |
|
1066 |
-
#: qqworld-auto-save-images.php:
|
1067 |
msgid ""
|
1068 |
"If you have too many posts to be scan, sometimes in process looks like "
|
1069 |
"stopping, but it may be fake. please be patient."
|
@@ -1071,20 +636,20 @@ msgstr ""
|
|
1071 |
"如果有太多文章需要掃描,有時候在掃描過程中看起來像是停止了,但可能是假停止,"
|
1072 |
"請耐心等待。"
|
1073 |
|
1074 |
-
#: qqworld-auto-save-images.php:
|
1075 |
#, fuzzy
|
1076 |
msgid "Categories"
|
1077 |
msgstr "%s分類"
|
1078 |
|
1079 |
-
#: qqworld-auto-save-images.php:
|
1080 |
msgid "Default empty to scan all categories."
|
1081 |
msgstr "默認留空掃描所有分類。"
|
1082 |
|
1083 |
-
#: qqworld-auto-save-images.php:
|
1084 |
msgid "Scope of Post ID"
|
1085 |
msgstr "文章ID範圍"
|
1086 |
|
1087 |
-
#: qqworld-auto-save-images.php:
|
1088 |
msgid ""
|
1089 |
"Default empty for scan all posts ID. If you want to scan posts ID from 50 to "
|
1090 |
"100. please type '50' and '100' or '100' and '50', The order in which two "
|
@@ -1095,12 +660,16 @@ msgstr ""
|
|
1095 |
"者'100'和'50',兩個數字的順序可以顛倒。如果你只輸入了1個數字,則系統只會掃描"
|
1096 |
"該ID。"
|
1097 |
|
1098 |
-
#: qqworld-auto-save-images.php:
|
1099 |
#, php-format
|
1100 |
msgid "From %1$s to %2$s"
|
1101 |
msgstr "從 %1$s 到 %2$s"
|
1102 |
|
1103 |
-
#: qqworld-auto-save-images.php:
|
|
|
|
|
|
|
|
|
1104 |
msgid ""
|
1105 |
"Default scan all posts. If you want to scan 50-150 posts, please type '50' "
|
1106 |
"in the textfield and select '100'."
|
@@ -1108,62 +677,67 @@ msgstr ""
|
|
1108 |
"默認掃秒全部文章,如果想掃描50-150篇文章,請在文本框中輸入“50”並在下拉菜單中"
|
1109 |
"選擇“100”。"
|
1110 |
|
1111 |
-
#: qqworld-auto-save-images.php:
|
1112 |
#, php-format
|
1113 |
msgid "Start from %s to Scan"
|
1114 |
msgstr "從 %s 開始掃描"
|
1115 |
|
1116 |
-
#: qqworld-auto-save-images.php:
|
1117 |
#, fuzzy
|
1118 |
msgid "All"
|
1119 |
msgstr "所有"
|
1120 |
|
1121 |
-
#: qqworld-auto-save-images.php:
|
|
|
|
|
|
|
|
|
|
|
1122 |
msgid "Any"
|
1123 |
msgstr "任意"
|
1124 |
|
1125 |
-
#: qqworld-auto-save-images.php:
|
1126 |
msgid "Order By"
|
1127 |
msgstr "排序依據"
|
1128 |
|
1129 |
-
#: qqworld-auto-save-images.php:
|
1130 |
msgid "Author"
|
1131 |
msgstr "作者"
|
1132 |
|
1133 |
-
#: qqworld-auto-save-images.php:
|
1134 |
#, fuzzy
|
1135 |
msgid "Date"
|
1136 |
msgstr "日期"
|
1137 |
|
1138 |
-
#: qqworld-auto-save-images.php:
|
1139 |
#, fuzzy
|
1140 |
msgid "Last Modified"
|
1141 |
msgstr "最後回複"
|
1142 |
|
1143 |
-
#: qqworld-auto-save-images.php:
|
1144 |
msgid "Comment Count"
|
1145 |
msgstr "評論"
|
1146 |
|
1147 |
-
#: qqworld-auto-save-images.php:
|
1148 |
#, fuzzy
|
1149 |
msgid "Order"
|
1150 |
msgstr "順序"
|
1151 |
|
1152 |
-
#: qqworld-auto-save-images.php:
|
1153 |
msgid "Speed"
|
1154 |
msgstr "速度"
|
1155 |
|
1156 |
-
#: qqworld-auto-save-images.php:
|
1157 |
msgid "If the server is too much stress may be appropriately reduced speed."
|
1158 |
msgstr "如果服務器壓力過大,可以適當調低速度。"
|
1159 |
|
1160 |
-
#: qqworld-auto-save-images.php:
|
1161 |
msgid ""
|
1162 |
"Scan posts and keep remote images in all posts to local media library. Maybe "
|
1163 |
"take a long time."
|
1164 |
msgstr "掃描所有的文章,將所有遠程圖片保存到本地,可能需要很長時間。"
|
1165 |
|
1166 |
-
#: qqworld-auto-save-images.php:
|
1167 |
msgid ""
|
1168 |
"The list displayed will show you which posts including remote images, then "
|
1169 |
"you can keep them to local manually via click \"Fetch\" button."
|
@@ -1171,48 +745,427 @@ msgstr ""
|
|
1171 |
"顯示的列表中將告訴你哪些文章包含遠程圖片,然後你可以通過點擊“抓取”按鈕手動保"
|
1172 |
"存。"
|
1173 |
|
1174 |
-
#: qqworld-auto-save-images.php:
|
|
|
|
|
|
|
|
|
1175 |
msgid ""
|
1176 |
-
"
|
1177 |
-
"
|
1178 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1179 |
|
1180 |
-
#: qqworld-auto-save-images.php:
|
1181 |
-
msgid "
|
1182 |
-
msgstr "
|
1183 |
|
1184 |
-
#: qqworld-auto-save-images.php:
|
1185 |
-
msgid "
|
1186 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1187 |
|
1188 |
-
#: qqworld-auto-save-images.php:
|
1189 |
-
msgid "
|
1190 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1191 |
|
1192 |
-
#: qqworld-auto-save-images.php:
|
1193 |
-
msgid "
|
1194 |
-
|
|
|
|
|
1195 |
|
1196 |
-
#: qqworld-auto-save-images.php:
|
1197 |
-
msgid "
|
1198 |
-
msgstr "
|
1199 |
|
1200 |
-
#: qqworld-auto-save-images.php:
|
1201 |
-
msgid "
|
1202 |
-
msgstr "
|
1203 |
|
1204 |
-
#: qqworld-auto-save-images.php:
|
1205 |
msgid "Has Missing/Undownloadable images."
|
1206 |
msgstr "有 不存在/不可下載 的遠程圖像。"
|
1207 |
|
1208 |
-
#: qqworld-auto-save-images.php:
|
1209 |
msgid "No remote images found."
|
1210 |
msgstr "沒有遠程圖像。"
|
1211 |
|
1212 |
-
#: qqworld-auto-save-images.php:
|
1213 |
msgid "Original Link"
|
1214 |
msgstr "原始鏈接"
|
1215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1216 |
#~ msgid "Demo"
|
1217 |
#~ msgstr "演示"
|
1218 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: QQworld Auto Save Images\n"
|
4 |
"Report-Msgid-Bugs-To: http://www.qqworld.org\n"
|
5 |
+
"POT-Creation-Date: 2015-06-05 14:06+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-06-05 15:57+0800\n"
|
7 |
"Last-Translator: Michael Wang <admin@qqworld.org>\n"
|
8 |
"Language-Team: QQWorld <admin@qqworld.org>\n"
|
9 |
"Language: zh_CN\n"
|
19 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: qqworld-auto-save-images.php:195
|
23 |
msgid "Michael Wang"
|
24 |
msgstr "王曉骞"
|
25 |
|
26 |
+
#: qqworld-auto-save-images.php:196
|
27 |
msgid " (In Development)"
|
28 |
msgstr "(開發中)"
|
29 |
|
30 |
+
#: qqworld-auto-save-images.php:203
|
31 |
msgid ""
|
32 |
"Your server PHP does not support cUrl, please remove ';' from in front of "
|
33 |
"extension=php_curl.dll in the php.ini."
|
34 |
msgstr ""
|
35 |
"你的服務器PHP不支持cUrl,請在php.ini中移除extension=php_curl.dll前面的‘;’。"
|
36 |
|
37 |
+
#: qqworld-auto-save-images.php:204
|
38 |
msgid ""
|
39 |
"Your server PHP does not support GD2, please remove ';' from in front of "
|
40 |
"extension=php_gd2.dll in the <strong>php.ini</strong>."
|
41 |
msgstr ""
|
42 |
"你的服務器PHP不支持GD2,請在php.ini中移除extension=php_gd2.dll前面的‘;’。"
|
43 |
|
44 |
+
#: qqworld-auto-save-images.php:205
|
45 |
msgid ""
|
46 |
"Your server PHP does not support fopen, please set allow_url_fopen=1 in the "
|
47 |
"php.ini."
|
48 |
msgstr "你的服務器PHP不支持fopen,請在php.ini中設置allow_url_fopen=1。"
|
49 |
|
50 |
+
#: qqworld-auto-save-images.php:241
|
51 |
msgid "No taxonomies found."
|
52 |
msgstr "沒有相關分類方法。"
|
53 |
|
54 |
+
#: qqworld-auto-save-images.php:249 qqworld-auto-save-images.php:448
|
55 |
+
#: qqworld-auto-save-images.php:1154
|
56 |
msgid "All remote images have been saved."
|
57 |
msgstr "已保存所有遠程圖像。"
|
58 |
|
59 |
+
#: qqworld-auto-save-images.php:249 qqworld-auto-save-images.php:250
|
60 |
#, php-format
|
61 |
msgid " <a href=\"%s\">View</a>"
|
62 |
msgstr " <a href=\"%s\">查看</a>"
|
63 |
|
64 |
+
#: qqworld-auto-save-images.php:250
|
65 |
msgid "Has missing images or image which could not download."
|
66 |
msgstr "內容包含 不存在/無法下載 的圖像。"
|
67 |
|
68 |
+
#: qqworld-auto-save-images.php:271
|
69 |
msgid "In Process..."
|
70 |
msgstr "正在保存……"
|
71 |
|
72 |
+
#: qqworld-auto-save-images.php:272
|
73 |
msgid "Something error, please check."
|
74 |
msgstr "出錯了,請檢查。"
|
75 |
|
76 |
+
#: qqworld-auto-save-images.php:294
|
77 |
msgid ""
|
78 |
"Are you sure?<br />Before you click the yes button, I recommend backup site "
|
79 |
"database."
|
80 |
msgstr "你確定嗎?<br />在點擊確定按鈕之前,我建議你備份網站的數據庫。"
|
81 |
|
82 |
+
#: qqworld-auto-save-images.php:295 qqworld-auto-save-images.php:872
|
83 |
msgid "Please select post types."
|
84 |
msgstr "請選擇文章類型。"
|
85 |
|
86 |
+
#: qqworld-auto-save-images.php:296
|
87 |
msgid "May be a problem with some posts: "
|
88 |
msgstr "也許一些文章有問題:"
|
89 |
|
90 |
+
#: qqworld-auto-save-images.php:297
|
91 |
#, php-format
|
92 |
msgid "No need enter \"%s\"."
|
93 |
msgstr "不需要輸入“%s”。"
|
94 |
|
95 |
+
#: qqworld-auto-save-images.php:298
|
96 |
#, php-format
|
97 |
msgid "%d post has been scanned."
|
98 |
msgstr "已掃描%d篇文章。"
|
99 |
|
100 |
+
#: qqworld-auto-save-images.php:299
|
101 |
#, php-format
|
102 |
msgid "%d posts have been scanned."
|
103 |
msgstr "已掃描%d篇文章。"
|
104 |
|
105 |
+
#: qqworld-auto-save-images.php:300
|
106 |
#, php-format
|
107 |
msgid "%d post included remote images processed."
|
108 |
msgstr "已處理%d篇包含遠程圖像的文章。"
|
109 |
|
110 |
+
#: qqworld-auto-save-images.php:301
|
111 |
#, php-format
|
112 |
msgid "%d posts included remote images processed."
|
113 |
msgstr "已處理%d篇包含遠程圖像的文章。"
|
114 |
|
115 |
+
#: qqworld-auto-save-images.php:302
|
116 |
#, php-format
|
117 |
msgid "%d post has missing images couldn't be processed."
|
118 |
msgstr "%d篇包含不存在的遠程圖像的文章無法處理。"
|
119 |
|
120 |
+
#: qqworld-auto-save-images.php:303
|
121 |
#, php-format
|
122 |
msgid "%d posts have missing images couldn't be processed."
|
123 |
msgstr "%d篇包含不存在的遠程圖像的文章無法處理。"
|
124 |
|
125 |
+
#: qqworld-auto-save-images.php:304
|
126 |
#, php-format
|
127 |
msgid "found %d post including remote images."
|
128 |
msgstr "找到%d篇包含遠程圖像的文章。"
|
129 |
|
130 |
+
#: qqworld-auto-save-images.php:305
|
131 |
#, php-format
|
132 |
msgid "found %d posts including remote images."
|
133 |
msgstr "找到%d篇包含遠程圖像的文章。"
|
134 |
|
135 |
+
#: qqworld-auto-save-images.php:306
|
136 |
#, php-format
|
137 |
msgid "And with %d post has missing images."
|
138 |
msgstr "其中有%d篇文章包含不存在的遠程圖像。"
|
139 |
|
140 |
+
#: qqworld-auto-save-images.php:307
|
141 |
#, php-format
|
142 |
msgid "And with %d posts have missing images."
|
143 |
msgstr "其中有%d篇文章包含不存在的遠程圖像。"
|
144 |
|
145 |
+
#: qqworld-auto-save-images.php:308
|
146 |
msgid "No posts processed."
|
147 |
msgstr "未處理任何文章。"
|
148 |
|
149 |
+
#: qqworld-auto-save-images.php:309
|
150 |
msgid "No post has remote images found."
|
151 |
msgstr "沒有文章包含遠程圖像。"
|
152 |
|
153 |
+
#: qqworld-auto-save-images.php:310
|
154 |
msgid "No posts found."
|
155 |
msgstr "未找到任何文章。"
|
156 |
|
157 |
+
#: qqworld-auto-save-images.php:311
|
158 |
msgid "All done."
|
159 |
msgstr "全部完成。"
|
160 |
|
161 |
+
#: qqworld-auto-save-images.php:312
|
162 |
#, fuzzy
|
163 |
msgid "Yes"
|
164 |
msgstr "是"
|
165 |
|
166 |
+
#: qqworld-auto-save-images.php:313 qqworld-auto-save-images.php:712
|
167 |
msgid "No"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: qqworld-auto-save-images.php:314
|
171 |
msgid "Scanning..."
|
172 |
msgstr "掃描中……"
|
173 |
|
174 |
+
#: qqworld-auto-save-images.php:315
|
175 |
msgid "Listing..."
|
176 |
msgstr "顯示列表中……"
|
177 |
|
178 |
+
#: qqworld-auto-save-images.php:316 qqworld-auto-save-images.php:914
|
179 |
#, fuzzy
|
180 |
msgid "ID"
|
181 |
msgstr "博客ID"
|
182 |
|
183 |
+
#: qqworld-auto-save-images.php:317
|
184 |
msgid "Post Type"
|
185 |
msgstr "文章類型"
|
186 |
|
187 |
+
#: qqworld-auto-save-images.php:318 qqworld-auto-save-images.php:916
|
188 |
msgid "Title"
|
189 |
msgstr "標題"
|
190 |
|
191 |
+
#: qqworld-auto-save-images.php:319 qqworld-auto-save-images.php:894
|
|
|
192 |
msgid "Status"
|
193 |
msgstr "狀態"
|
194 |
|
195 |
+
#: qqworld-auto-save-images.php:320
|
196 |
msgid "Control"
|
197 |
msgstr "控制"
|
198 |
|
199 |
+
#: qqworld-auto-save-images.php:321
|
200 |
#, fuzzy
|
201 |
msgid "Done"
|
202 |
msgstr "全部完成。"
|
203 |
|
204 |
+
#: qqworld-auto-save-images.php:322 qqworld-auto-save-images.php:692
|
|
|
205 |
#, fuzzy
|
206 |
msgid "Delete"
|
207 |
msgstr "刪除"
|
208 |
|
209 |
+
#: qqworld-auto-save-images.php:345
|
210 |
msgid "Congratulation! FTP successfully connected."
|
211 |
msgstr "恭喜!成功連接FTP。"
|
212 |
|
213 |
+
#: qqworld-auto-save-images.php:347
|
214 |
msgid "Failed to change ftp directory, Did dirctory not exist?"
|
215 |
msgstr "切換FTP目錄失敗,目錄不存在?"
|
216 |
|
217 |
+
#: qqworld-auto-save-images.php:350
|
218 |
msgid "Whoops, FTP logon has failed!"
|
219 |
msgstr "哎呀,登錄FTP失敗。"
|
220 |
|
221 |
+
#: qqworld-auto-save-images.php:353
|
222 |
msgid "Whoops, FTP connection has failed!"
|
223 |
msgstr "哎呀,連接FTP失敗。"
|
224 |
|
225 |
+
#: qqworld-auto-save-images.php:448 qqworld-auto-save-images.php:482
|
226 |
msgid "Has missing images."
|
227 |
msgstr "有不存在的遠程圖像。"
|
228 |
|
229 |
+
#: qqworld-auto-save-images.php:482
|
230 |
msgid "Normal"
|
231 |
msgstr "正常"
|
232 |
|
233 |
+
#: qqworld-auto-save-images.php:483
|
234 |
msgid "Fetch"
|
235 |
msgstr "抓取"
|
236 |
|
237 |
+
#: qqworld-auto-save-images.php:525
|
238 |
msgid "Save Remote Images"
|
239 |
msgstr "保存遠程圖片"
|
240 |
|
241 |
+
#: qqworld-auto-save-images.php:536
|
242 |
msgid "Settings"
|
243 |
msgstr "設置"
|
244 |
|
245 |
+
#: qqworld-auto-save-images.php:544
|
246 |
msgid "Auto Save Images"
|
247 |
msgstr "自動保存圖片"
|
248 |
|
249 |
+
#: qqworld-auto-save-images.php:546 qqworld-auto-save-images.php:573
|
250 |
msgid "QQWorld Auto Save Images"
|
251 |
msgstr "QQWorld自動保存圖片"
|
252 |
|
253 |
+
#: qqworld-auto-save-images.php:555
|
254 |
msgid "Installation"
|
255 |
msgstr "安裝說明"
|
256 |
|
257 |
+
#: qqworld-auto-save-images.php:556
|
258 |
msgid ""
|
259 |
"<ol><li>Make sure the server configuration <strong>allow_url_fopen=1</"
|
260 |
"strong> in php.ini.</li><li>Warning: If your website domain has been "
|
265 |
"告:如果你的網站域名更改了,必須在數據庫中將所有的圖片鏈接更新到新域名,否則"
|
266 |
"插件會把未更改的圖片再保存一次。</li></ol>"
|
267 |
|
268 |
+
#: qqworld-auto-save-images.php:560
|
269 |
msgid "Notice"
|
270 |
msgstr "注意"
|
271 |
|
272 |
+
#: qqworld-auto-save-images.php:561
|
273 |
msgid ""
|
274 |
"<ul><li>This plugin has a little problem that is all the image url must be "
|
275 |
"full url, it means must included \"http(s)://\", for example:<ul><li><img "
|
298 |
"讓圖片的URL完整。<br />所以,如果你碰到這樣的代碼,請手動將圖片地址改成完整"
|
299 |
"的,或者使用采集工具自動補完圖片的URL然後從外部提交給Wordpress。"
|
300 |
|
301 |
+
#: qqworld-auto-save-images.php:565
|
302 |
msgid "About"
|
303 |
msgstr "關于"
|
304 |
|
305 |
+
#: qqworld-auto-save-images.php:566
|
306 |
msgid ""
|
307 |
"<p>Hi everyone, My name is Michael Wang from china.</p><p>I made this plugin "
|
308 |
"just for play in the first place, after 1 year, oneday someone sent an email "
|
316 |
"後隨著越來越多的人向我尋求幫助,我的插件也變得越來越強大。這就是我的插件,我"
|
317 |
"希望你們能喜歡它,謝謝。</p>"
|
318 |
|
319 |
+
#: qqworld-auto-save-images.php:574
|
320 |
msgid ""
|
321 |
"Automatically keep the all remote picture to the local, and automatically "
|
322 |
"set featured image."
|
323 |
msgstr ""
|
324 |
"自動保存遠程圖片到本地,自動設置特色圖片,並且支持機器人采集軟件從外部提交。"
|
325 |
|
326 |
+
#: qqworld-auto-save-images.php:579
|
327 |
+
msgid "General"
|
328 |
+
msgstr "常規"
|
329 |
|
330 |
+
#: qqworld-auto-save-images.php:580
|
331 |
+
msgid "Filter"
|
332 |
+
msgstr "過濾"
|
|
|
|
|
|
|
|
|
|
|
333 |
|
334 |
+
#: qqworld-auto-save-images.php:581
|
335 |
+
msgid "Format"
|
336 |
+
msgstr "格式化"
|
337 |
|
338 |
+
#: qqworld-auto-save-images.php:582
|
339 |
msgid "Scan Posts"
|
340 |
msgstr "掃描文章"
|
341 |
|
342 |
+
#: qqworld-auto-save-images.php:583 qqworld-auto-save-images.php:978
|
343 |
+
msgid "Pro Edition"
|
344 |
+
msgstr "專業版"
|
|
|
|
|
|
|
|
|
345 |
|
346 |
+
#: qqworld-auto-save-images.php:589 qqworld-auto-save-images.php:591
|
|
|
347 |
msgid "Mode"
|
348 |
msgstr "模式"
|
349 |
|
350 |
+
#: qqworld-auto-save-images.php:594 qqworld-auto-save-images.php:952
|
351 |
msgid "Automatic"
|
352 |
msgstr "自動"
|
353 |
|
354 |
+
#: qqworld-auto-save-images.php:595
|
355 |
msgid ""
|
356 |
"Automatically save all remote images to local media libary when you save or "
|
357 |
"publish post."
|
358 |
msgstr "在保存或發布文章時,自動將所有遠程圖像保存到本地媒體庫。"
|
359 |
|
360 |
+
#: qqworld-auto-save-images.php:598 qqworld-auto-save-images.php:953
|
361 |
msgid "Manual"
|
362 |
msgstr "手動"
|
363 |
|
364 |
+
#: qqworld-auto-save-images.php:599
|
365 |
msgid ""
|
366 |
"Manually save all remote images to local media libary when you click the "
|
367 |
"button on the top of editor."
|
368 |
msgstr "當單擊編輯器頂部的按鈕時,手動將所有遠程圖像保存到本地媒體庫。"
|
369 |
|
370 |
+
#: qqworld-auto-save-images.php:604 qqworld-auto-save-images.php:606
|
371 |
msgid "When"
|
372 |
msgstr "什麽時候"
|
373 |
|
374 |
+
#: qqworld-auto-save-images.php:609
|
375 |
msgid "Save post (Publish, save draft or pedding review)."
|
376 |
msgstr "保存文章時(發布文章,保存草稿或提交審核)。"
|
377 |
|
378 |
+
#: qqworld-auto-save-images.php:613
|
379 |
msgid "Publish post only."
|
380 |
msgstr "僅發布文章時。"
|
381 |
|
382 |
+
#: qqworld-auto-save-images.php:619 qqworld-auto-save-images.php:621
|
383 |
msgid "Remote Publishing"
|
384 |
msgstr "遠程發布"
|
385 |
|
386 |
+
#: qqworld-auto-save-images.php:619
|
387 |
msgid ""
|
388 |
"Save remote images via remote publishing from IFTTT or other way using "
|
389 |
"XMLRPC. Only supports publish post."
|
390 |
msgstr "保存通過IFTTT或其他使用XMLRPC方法遠程發布的遠程圖片。僅支持發布文章。"
|
391 |
|
392 |
+
#: qqworld-auto-save-images.php:629 qqworld-auto-save-images.php:631
|
393 |
+
#: qqworld-auto-save-images.php:966
|
394 |
msgid "Set Featured Image"
|
395 |
msgstr "設置特色圖片"
|
396 |
|
397 |
+
#: qqworld-auto-save-images.php:629
|
398 |
msgid "Set first one of the remote images as featured image."
|
399 |
msgstr "設置遠程圖片中的第1個爲特色圖片。"
|
400 |
|
401 |
+
#: qqworld-auto-save-images.php:645 qqworld-auto-save-images.php:647
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
msgid "Grabbing from Each Posts"
|
403 |
msgstr "從每篇文章抓取"
|
404 |
|
405 |
+
#: qqworld-auto-save-images.php:649
|
406 |
msgid "All Images"
|
407 |
msgstr "全部圖片"
|
408 |
|
409 |
+
#: qqworld-auto-save-images.php:653
|
410 |
#, php-format
|
411 |
msgid "First %d image only"
|
412 |
msgid_plural "First %d images only"
|
413 |
msgstr[0] "前 %d 幅圖像"
|
414 |
|
415 |
+
#: qqworld-auto-save-images.php:660 qqworld-auto-save-images.php:662
|
416 |
msgid "Minimum Picture Size"
|
417 |
msgstr "最小圖像尺寸"
|
418 |
|
419 |
+
#: qqworld-auto-save-images.php:660
|
420 |
msgid "Ignore smaller than this size picture."
|
421 |
msgstr "忽略比這個尺寸更小的圖像。"
|
422 |
|
423 |
+
#: qqworld-auto-save-images.php:664 qqworld-auto-save-images.php:676
|
|
|
424 |
msgid "Width:"
|
425 |
msgstr "寬度:"
|
426 |
|
427 |
+
#: qqworld-auto-save-images.php:664 qqworld-auto-save-images.php:667
|
428 |
+
#: qqworld-auto-save-images.php:676 qqworld-auto-save-images.php:679
|
|
|
429 |
msgid "(px)"
|
430 |
msgstr "(像素)"
|
431 |
|
432 |
+
#: qqworld-auto-save-images.php:667 qqworld-auto-save-images.php:679
|
|
|
433 |
msgid "Height:"
|
434 |
msgstr "高度:"
|
435 |
|
436 |
+
#: qqworld-auto-save-images.php:672 qqworld-auto-save-images.php:674
|
437 |
msgid "Maximum Picture Size"
|
438 |
msgstr "最大圖像尺寸"
|
439 |
|
440 |
+
#: qqworld-auto-save-images.php:672
|
441 |
msgid ""
|
442 |
"Automatic reduction is greater than the size of the picture. if you want "
|
443 |
"image width less than 800px with any size height, please set width 800 and "
|
446 |
"自動縮小大于該尺寸的圖像。如果你想要寬度不超過800px和任意高度圖片,請設置寬度"
|
447 |
"800,並設置高度爲空。"
|
448 |
|
449 |
+
#: qqworld-auto-save-images.php:684 qqworld-auto-save-images.php:686
|
450 |
msgid "Exclude Domain/Keyword"
|
451 |
msgstr "排除域名/關鍵詞"
|
452 |
|
453 |
+
#: qqworld-auto-save-images.php:684
|
454 |
msgid "Images will not be saved, if that url contains Exclude-Domain/Keyword."
|
455 |
msgstr "如果圖片地址包含排除域名/關鍵詞,則不會保存該圖片。"
|
456 |
|
457 |
+
#: qqworld-auto-save-images.php:696
|
458 |
msgid "Add a Domain/Keyword"
|
459 |
msgstr "添加域名/關鍵詞"
|
460 |
|
461 |
+
#: qqworld-auto-save-images.php:707 qqworld-auto-save-images.php:710
|
|
|
|
|
|
|
|
|
462 |
msgid "Change Image Filename"
|
463 |
msgstr "更改圖片文件名"
|
464 |
|
465 |
+
#: qqworld-auto-save-images.php:713
|
466 |
msgid ""
|
467 |
"Only change remote images filename that have Non-ASCii characters (for "
|
468 |
"Windows Server)"
|
469 |
msgstr "僅修改包含非ASCii字符的遠程圖片文件名(用于Windows服務器)"
|
470 |
|
471 |
+
#: qqworld-auto-save-images.php:714
|
472 |
msgid ""
|
473 |
"Change all remote images Filename and Alt as post name (for Linux Server)"
|
474 |
msgstr "改變所有遠程圖片文件名爲文章名(Post Name)(用于Linux服務器)"
|
475 |
|
476 |
+
#: qqworld-auto-save-images.php:719 qqworld-auto-save-images.php:721
|
477 |
msgid "Custom Filename Structure"
|
478 |
msgstr "自定文件名結構"
|
479 |
|
480 |
+
#: qqworld-auto-save-images.php:726
|
481 |
msgid "Original filename or automatic changed filename."
|
482 |
msgstr "原文件名或自動更改的文件名。"
|
483 |
|
484 |
+
#: qqworld-auto-save-images.php:727
|
485 |
msgid "Full date, e.g. 20150209."
|
486 |
msgstr "完整的日期,例如:20150209。"
|
487 |
|
488 |
+
#: qqworld-auto-save-images.php:728
|
489 |
msgid "YYYY, e.g. 2015."
|
490 |
msgstr "YYYY,例如:2015。"
|
491 |
|
492 |
+
#: qqworld-auto-save-images.php:729
|
493 |
msgid "MM, e.g. 02."
|
494 |
msgstr "MM,例如:02。"
|
495 |
|
496 |
+
#: qqworld-auto-save-images.php:730
|
497 |
msgid "DD, e.g. 15."
|
498 |
msgstr "DD,例如:15。"
|
499 |
|
500 |
+
#: qqworld-auto-save-images.php:731
|
501 |
msgid "HHMMSS, e.g. 182547."
|
502 |
msgstr "HHMMSS,例如:182547。"
|
503 |
|
504 |
+
#: qqworld-auto-save-images.php:732
|
505 |
#, php-format
|
506 |
msgid "Unix timestamp, e.g. %s."
|
507 |
msgstr "Unix時間戳,例如:%s。"
|
508 |
|
509 |
+
#: qqworld-auto-save-images.php:737 qqworld-auto-save-images.php:739
|
510 |
msgid "Change Title & Alt"
|
511 |
msgstr "更改標題和替代文本"
|
512 |
|
513 |
+
#: qqworld-auto-save-images.php:737
|
514 |
msgid "Automatically add title & alt of image as post title."
|
515 |
msgstr "自動依照文章標題添加圖片的標題和替代文本。"
|
516 |
|
517 |
+
#: qqworld-auto-save-images.php:746 qqworld-auto-save-images.php:748
|
518 |
msgid "Keep Outside Links"
|
519 |
msgstr "保留外鏈"
|
520 |
|
521 |
+
#: qqworld-auto-save-images.php:746
|
522 |
msgid "Keep the outside links of remote images if exist."
|
523 |
msgstr "保留遠程圖片的鏈接,如果有的話。"
|
524 |
|
525 |
+
#: qqworld-auto-save-images.php:755 qqworld-auto-save-images.php:757
|
526 |
msgid "Save Outside Links"
|
527 |
msgstr "保存外鏈"
|
528 |
|
529 |
+
#: qqworld-auto-save-images.php:755
|
530 |
msgid "Save the outside links to description of attachments."
|
531 |
msgstr "保存外部鏈接到附件的描述。"
|
532 |
|
533 |
+
#: qqworld-auto-save-images.php:761
|
534 |
msgid ""
|
535 |
"To custom the content, add codes into <strong>functions.php</strong> like "
|
536 |
"this below:"
|
537 |
msgstr ""
|
538 |
"如果想自定義該內容,加入類似以下代碼到 <strong>functions.php</strong> 中:"
|
539 |
|
540 |
+
#: qqworld-auto-save-images.php:770 qqworld-auto-save-images.php:772
|
541 |
msgid "Image Size"
|
542 |
msgstr "圖像尺寸"
|
543 |
|
544 |
+
#: qqworld-auto-save-images.php:770
|
545 |
msgid "Replace images you want size to display."
|
546 |
msgstr "替換成你想要顯示的尺寸的圖像。"
|
547 |
|
548 |
+
#: qqworld-auto-save-images.php:777
|
549 |
#, fuzzy
|
550 |
msgid "Thumbnail"
|
551 |
msgstr ""
|
552 |
"一個數組,可以包含數個函數,每個函數返回可能的縮略圖圖片對象相對于時間對象的"
|
553 |
"jQuery路徑。"
|
554 |
|
555 |
+
#: qqworld-auto-save-images.php:778
|
556 |
msgid "Medium"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: qqworld-auto-save-images.php:779
|
560 |
msgid "Large"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: qqworld-auto-save-images.php:780
|
564 |
msgid "Full Size"
|
565 |
msgstr "完整尺寸"
|
566 |
|
567 |
+
#: qqworld-auto-save-images.php:789 qqworld-auto-save-images.php:791
|
568 |
msgid "Link To"
|
569 |
msgstr "鏈接到"
|
570 |
|
571 |
+
#: qqworld-auto-save-images.php:789
|
572 |
msgid "If you checked Keep-Outside-Links, this option will not works."
|
573 |
msgstr "如果你勾選了保留外鏈,本項將不起作用。"
|
574 |
|
575 |
+
#: qqworld-auto-save-images.php:796
|
576 |
#, fuzzy
|
577 |
msgid "Media File"
|
578 |
msgstr "添加文件"
|
579 |
|
580 |
+
#: qqworld-auto-save-images.php:797
|
581 |
#, fuzzy
|
582 |
msgid "Attachment Page"
|
583 |
msgstr "(附件)"
|
584 |
|
585 |
+
#: qqworld-auto-save-images.php:798 qqworld-auto-save-images.php:817
|
586 |
msgid "None"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: qqworld-auto-save-images.php:807 qqworld-auto-save-images.php:809
|
590 |
+
msgid "Align To"
|
591 |
+
msgstr "對齊方式"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
|
593 |
+
#: qqworld-auto-save-images.php:814
|
594 |
+
msgid "Left"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: qqworld-auto-save-images.php:815
|
598 |
+
msgid "Center"
|
|
|
|
|
|
|
|
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: qqworld-auto-save-images.php:816
|
602 |
+
msgid "Right"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
603 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
604 |
|
605 |
+
#: qqworld-auto-save-images.php:826 qqworld-auto-save-images.php:828
|
606 |
+
msgid "Auto Caption"
|
607 |
+
msgstr "自動圖說"
|
|
|
|
|
|
|
|
|
|
|
|
|
608 |
|
609 |
+
#: qqworld-auto-save-images.php:826
|
610 |
+
msgid "Automatically add caption shortcode."
|
611 |
+
msgstr "自動添加圖說短代碼。"
|
612 |
|
613 |
+
#: qqworld-auto-save-images.php:835 qqworld-auto-save-images.php:837
|
614 |
+
msgid "Additional Content"
|
615 |
+
msgstr "額外的內容"
|
616 |
|
617 |
+
#: qqworld-auto-save-images.php:835
|
618 |
msgid ""
|
619 |
+
"This content will be displayed after the each remote images code. you can "
|
620 |
+
"use [Attachment ID] indicate current attachment ID."
|
621 |
+
msgstr "此內容將在每個遠程圖像編碼後顯示。您可以使用[附件ID]指示當前連接ID。"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
622 |
|
623 |
+
#: qqworld-auto-save-images.php:840
|
624 |
+
msgid "For example: [Gbuy id='[Attachment ID]']"
|
625 |
+
msgstr "例如:[Gbuy id='[Attachment ID]']"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
|
627 |
+
#: qqworld-auto-save-images.php:857
|
628 |
msgid "Select post types"
|
629 |
msgstr "選擇文章類型"
|
630 |
|
631 |
+
#: qqworld-auto-save-images.php:857
|
632 |
msgid ""
|
633 |
"If you have too many posts to be scan, sometimes in process looks like "
|
634 |
"stopping, but it may be fake. please be patient."
|
636 |
"如果有太多文章需要掃描,有時候在掃描過程中看起來像是停止了,但可能是假停止,"
|
637 |
"請耐心等待。"
|
638 |
|
639 |
+
#: qqworld-auto-save-images.php:871
|
640 |
#, fuzzy
|
641 |
msgid "Categories"
|
642 |
msgstr "%s分類"
|
643 |
|
644 |
+
#: qqworld-auto-save-images.php:871
|
645 |
msgid "Default empty to scan all categories."
|
646 |
msgstr "默認留空掃描所有分類。"
|
647 |
|
648 |
+
#: qqworld-auto-save-images.php:876
|
649 |
msgid "Scope of Post ID"
|
650 |
msgstr "文章ID範圍"
|
651 |
|
652 |
+
#: qqworld-auto-save-images.php:876
|
653 |
msgid ""
|
654 |
"Default empty for scan all posts ID. If you want to scan posts ID from 50 to "
|
655 |
"100. please type '50' and '100' or '100' and '50', The order in which two "
|
660 |
"者'100'和'50',兩個數字的順序可以顛倒。如果你只輸入了1個數字,則系統只會掃描"
|
661 |
"該ID。"
|
662 |
|
663 |
+
#: qqworld-auto-save-images.php:877
|
664 |
#, php-format
|
665 |
msgid "From %1$s to %2$s"
|
666 |
msgstr "從 %1$s 到 %2$s"
|
667 |
|
668 |
+
#: qqworld-auto-save-images.php:881
|
669 |
+
msgid "Offset"
|
670 |
+
msgstr "偏移"
|
671 |
+
|
672 |
+
#: qqworld-auto-save-images.php:881
|
673 |
msgid ""
|
674 |
"Default scan all posts. If you want to scan 50-150 posts, please type '50' "
|
675 |
"in the textfield and select '100'."
|
677 |
"默認掃秒全部文章,如果想掃描50-150篇文章,請在文本框中輸入“50”並在下拉菜單中"
|
678 |
"選擇“100”。"
|
679 |
|
680 |
+
#: qqworld-auto-save-images.php:883
|
681 |
#, php-format
|
682 |
msgid "Start from %s to Scan"
|
683 |
msgstr "從 %s 開始掃描"
|
684 |
|
685 |
+
#: qqworld-auto-save-images.php:885
|
686 |
#, fuzzy
|
687 |
msgid "All"
|
688 |
msgstr "所有"
|
689 |
|
690 |
+
#: qqworld-auto-save-images.php:889
|
691 |
+
#, fuzzy
|
692 |
+
msgid "Posts"
|
693 |
+
msgstr "熱門文章"
|
694 |
+
|
695 |
+
#: qqworld-auto-save-images.php:899
|
696 |
msgid "Any"
|
697 |
msgstr "任意"
|
698 |
|
699 |
+
#: qqworld-auto-save-images.php:909
|
700 |
msgid "Order By"
|
701 |
msgstr "排序依據"
|
702 |
|
703 |
+
#: qqworld-auto-save-images.php:915
|
704 |
msgid "Author"
|
705 |
msgstr "作者"
|
706 |
|
707 |
+
#: qqworld-auto-save-images.php:917
|
708 |
#, fuzzy
|
709 |
msgid "Date"
|
710 |
msgstr "日期"
|
711 |
|
712 |
+
#: qqworld-auto-save-images.php:918
|
713 |
#, fuzzy
|
714 |
msgid "Last Modified"
|
715 |
msgstr "最後回複"
|
716 |
|
717 |
+
#: qqworld-auto-save-images.php:919
|
718 |
msgid "Comment Count"
|
719 |
msgstr "評論"
|
720 |
|
721 |
+
#: qqworld-auto-save-images.php:929
|
722 |
#, fuzzy
|
723 |
msgid "Order"
|
724 |
msgstr "順序"
|
725 |
|
726 |
+
#: qqworld-auto-save-images.php:939
|
727 |
msgid "Speed"
|
728 |
msgstr "速度"
|
729 |
|
730 |
+
#: qqworld-auto-save-images.php:939
|
731 |
msgid "If the server is too much stress may be appropriately reduced speed."
|
732 |
msgstr "如果服務器壓力過大,可以適當調低速度。"
|
733 |
|
734 |
+
#: qqworld-auto-save-images.php:952
|
735 |
msgid ""
|
736 |
"Scan posts and keep remote images in all posts to local media library. Maybe "
|
737 |
"take a long time."
|
738 |
msgstr "掃描所有的文章,將所有遠程圖片保存到本地,可能需要很長時間。"
|
739 |
|
740 |
+
#: qqworld-auto-save-images.php:953
|
741 |
msgid ""
|
742 |
"The list displayed will show you which posts including remote images, then "
|
743 |
"you can keep them to local manually via click \"Fetch\" button."
|
745 |
"顯示的列表中將告訴你哪些文章包含遠程圖片,然後你可以通過點擊“抓取”按鈕手動保"
|
746 |
"存。"
|
747 |
|
748 |
+
#: qqworld-auto-save-images.php:964
|
749 |
+
msgid "Demo of Manual Mode"
|
750 |
+
msgstr "手動模式的演示"
|
751 |
+
|
752 |
+
#: qqworld-auto-save-images.php:967
|
753 |
msgid ""
|
754 |
+
"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/-"
|
755 |
+
"KImHNbPA-o\" frameborder=\"0\" allowfullscreen></iframe>"
|
756 |
+
msgstr ""
|
757 |
+
"<embed src=\"http://player.youku.com/player.php/sid/XOTE3NDk0OTUy/v.swf\" "
|
758 |
+
"allowFullScreen=\"true\" quality=\"high\" width=\"480\" height=\"400\" align="
|
759 |
+
"\"middle\" allowScriptAccess=\"always\" type=\"application/x-shockwave-flash"
|
760 |
+
"\"></embed>"
|
761 |
|
762 |
+
#: qqworld-auto-save-images.php:971
|
763 |
+
msgid "Comparison"
|
764 |
+
msgstr "對比"
|
765 |
|
766 |
+
#: qqworld-auto-save-images.php:977
|
767 |
+
msgid "Items"
|
768 |
+
msgstr "對比項目"
|
769 |
+
|
770 |
+
#: qqworld-auto-save-images.php:979
|
771 |
+
msgid "Free Edition"
|
772 |
+
msgstr "免費版"
|
773 |
|
774 |
+
#: qqworld-auto-save-images.php:984
|
775 |
+
msgid ""
|
776 |
+
"New manual mode with multi-thread (Faster than automatic mode with more "
|
777 |
+
"server resource consumption)"
|
778 |
+
msgstr "多線程的手動模式(下載速度是自動模式的N倍,但更加耗費服務器資源)"
|
779 |
+
|
780 |
+
#: qqworld-auto-save-images.php:991
|
781 |
+
msgid "Download Images from WeChat"
|
782 |
+
msgstr "下載微信圖片"
|
783 |
+
|
784 |
+
#: qqworld-auto-save-images.php:996
|
785 |
+
msgid "Cron Scan Posts"
|
786 |
+
msgstr "定時掃描文章"
|
787 |
+
|
788 |
+
#: qqworld-auto-save-images.php:1001
|
789 |
+
msgid "Watermark"
|
790 |
+
msgstr "水印"
|
791 |
+
|
792 |
+
#: qqworld-auto-save-images.php:1006
|
793 |
+
msgid "Images Compression (JPG Only)"
|
794 |
+
msgstr "圖片壓縮(僅JPEG)"
|
795 |
+
|
796 |
+
#: qqworld-auto-save-images.php:1011
|
797 |
+
msgid "Use Proxy"
|
798 |
+
msgstr "使用代理服務器(可下載需要翻牆的圖片)"
|
799 |
+
|
800 |
+
#: qqworld-auto-save-images.php:1016
|
801 |
+
msgid ""
|
802 |
+
"Smart Grabbing, Automatically detect 2 images url from href/src of remote "
|
803 |
+
"image with outside link, and grab the bigger one."
|
804 |
+
msgstr "智能抓取(從圖片src和鏈接href中提取圖片地址,並抓取較大的一個)"
|
805 |
+
|
806 |
+
#: qqworld-auto-save-images.php:1021
|
807 |
+
msgid "Use Cookie-Free Domain & CDN Servive (AliYun OSS, UpYun, QiNiu)"
|
808 |
+
msgstr "使用Cookie-Free域名和CDN服務(阿裏雲OSS、七牛雲存儲、又拍雲存儲等)"
|
809 |
|
810 |
+
#: qqworld-auto-save-images.php:1026
|
811 |
+
msgid ""
|
812 |
+
"Collect webpage manually: Easy reprint articles, and get all the images to "
|
813 |
+
"choose from web pages."
|
814 |
+
msgstr "手動采集功能:輕松轉載文章、從網頁中獲取所有圖片供選擇"
|
815 |
|
816 |
+
#: qqworld-auto-save-images.php:1036
|
817 |
+
msgid "Buy"
|
818 |
+
msgstr "購買"
|
819 |
|
820 |
+
#: qqworld-auto-save-images.php:1037
|
821 |
+
msgid "QQWorld Collector"
|
822 |
+
msgstr "QQWorld收藏家"
|
823 |
|
824 |
+
#: qqworld-auto-save-images.php:1151
|
825 |
msgid "Has Missing/Undownloadable images."
|
826 |
msgstr "有 不存在/不可下載 的遠程圖像。"
|
827 |
|
828 |
+
#: qqworld-auto-save-images.php:1158
|
829 |
msgid "No remote images found."
|
830 |
msgstr "沒有遠程圖像。"
|
831 |
|
832 |
+
#: qqworld-auto-save-images.php:1308
|
833 |
msgid "Original Link"
|
834 |
msgstr "原始鏈接"
|
835 |
|
836 |
+
#~ msgid "Images Compression"
|
837 |
+
#~ msgstr "圖片壓縮"
|
838 |
+
|
839 |
+
#~ msgid "Demo of Pro Edition"
|
840 |
+
#~ msgstr "專業版的演示"
|
841 |
+
|
842 |
+
#~ msgid "Cron"
|
843 |
+
#~ msgstr "計劃任務"
|
844 |
+
|
845 |
+
#~ msgid ""
|
846 |
+
#~ "Set cron for automatically scan posts.<br />I recommend set the option "
|
847 |
+
#~ "Offset from 0 to scan 100 posts."
|
848 |
+
#~ msgstr ""
|
849 |
+
#~ "設置計劃任務自動掃描文章。<br />我建議設置偏移從0開始掃描100篇文章。"
|
850 |
+
|
851 |
+
#~ msgid "Optimization"
|
852 |
+
#~ msgstr "優化"
|
853 |
+
|
854 |
+
#~ msgid "Preview"
|
855 |
+
#~ msgstr "預覽"
|
856 |
+
|
857 |
+
#~ msgid "Database"
|
858 |
+
#~ msgstr "數據庫"
|
859 |
+
|
860 |
+
#~ msgid "General Options"
|
861 |
+
#~ msgstr "常規設置"
|
862 |
+
|
863 |
+
#~ msgid "Filter Options"
|
864 |
+
#~ msgstr "過濾選項"
|
865 |
+
|
866 |
+
#~ msgid "Format Options"
|
867 |
+
#~ msgstr "格式化選項"
|
868 |
+
|
869 |
+
#~ msgid "Just for preview, The complete feature will on the Pro version."
|
870 |
+
#~ msgstr "僅僅用于預覽,專業版將提供完整的功能。"
|
871 |
+
|
872 |
+
#~ msgid "Optimization Options"
|
873 |
+
#~ msgstr "優化選項"
|
874 |
+
|
875 |
+
#~ msgid "Enabled"
|
876 |
+
#~ msgstr "啓用"
|
877 |
+
|
878 |
+
#~ msgid "Use Cookie-Free Domains to display images."
|
879 |
+
#~ msgstr "使用免Cookie域名(Cookie-Free Domains)來顯示圖片。"
|
880 |
+
|
881 |
+
#~ msgid ""
|
882 |
+
#~ "If you don't want using local media library, please select Use-FTP-Remote-"
|
883 |
+
#~ "Server."
|
884 |
+
#~ msgstr "如果你不想使用本地媒體庫,請選擇使用FTP遠程服務器。"
|
885 |
+
|
886 |
+
#~ msgid "Use local server"
|
887 |
+
#~ msgstr "使用本地服務器"
|
888 |
+
|
889 |
+
#~ msgid "Use QiNiu Cloud Storage"
|
890 |
+
#~ msgstr "使用七牛雲存儲"
|
891 |
+
|
892 |
+
#~ msgid "Use FTP remote server"
|
893 |
+
#~ msgstr "使用FTP遠程服務器"
|
894 |
+
|
895 |
+
#~ msgid "Use AliYun Open Storage Service (OSS)"
|
896 |
+
#~ msgstr "使用阿裏雲開放存儲服務OSS"
|
897 |
+
|
898 |
+
#~ msgid "Use UpYun Storage Service"
|
899 |
+
#~ msgstr "使用又拍雲存儲"
|
900 |
+
|
901 |
+
#~ msgid "Domain & Folder"
|
902 |
+
#~ msgstr "域名 & 目錄"
|
903 |
+
|
904 |
+
#~ msgid ""
|
905 |
+
#~ "Set new url structure, Do not end with '/'. The folder string must front "
|
906 |
+
#~ "with '/'."
|
907 |
+
#~ msgstr "設置新的URL結構,不要以 '/' 結尾,目錄字符串必須以 '/' 開頭。"
|
908 |
+
|
909 |
+
#~ msgid "Host"
|
910 |
+
#~ msgstr "主機"
|
911 |
+
|
912 |
+
#~ msgid "You need add this code below into wp-config.php:"
|
913 |
+
#~ msgstr "妳需要在 wp-config.php 中加入以下代碼:"
|
914 |
+
|
915 |
+
#~ msgid ""
|
916 |
+
#~ "Needs <a href=\"%s\" target=\"_blank\">plugin of QiNiu Cloud Storage</a>."
|
917 |
+
#~ msgstr "需要 <a href=\"%s\" target=\"_blank\">七牛雲存儲插件</a>。"
|
918 |
+
|
919 |
+
#~ msgid "Folder (Can be empty)"
|
920 |
+
#~ msgstr "目錄(可以爲空)"
|
921 |
+
|
922 |
+
#~ msgid "FTP Settings"
|
923 |
+
#~ msgstr "FTP設置"
|
924 |
+
|
925 |
+
#~ msgid "IP Address"
|
926 |
+
#~ msgstr "IP地址"
|
927 |
+
|
928 |
+
#~ msgid "Port"
|
929 |
+
#~ msgstr "端口"
|
930 |
+
|
931 |
+
#~ msgid "Username"
|
932 |
+
#~ msgstr "用戶名"
|
933 |
+
|
934 |
+
#~ msgid "Password"
|
935 |
+
#~ msgstr "密碼"
|
936 |
+
|
937 |
+
#~ msgid "Directory"
|
938 |
+
#~ msgstr "目錄"
|
939 |
+
|
940 |
+
#~ msgid "Test FTP"
|
941 |
+
#~ msgstr "測試FTP"
|
942 |
+
|
943 |
+
#~ msgid "Test Access OSS"
|
944 |
+
#~ msgstr "測試連接OSS"
|
945 |
+
|
946 |
+
#~ msgid "Only the authority Public-Read can be used."
|
947 |
+
#~ msgstr "只有公共讀權限可用。"
|
948 |
+
|
949 |
+
#~ msgid "Bucket Naming conventions:"
|
950 |
+
#~ msgstr "Bucket命名規範:"
|
951 |
+
|
952 |
+
#~ msgid "Can only contain lowercase letters, numbers, and dashes"
|
953 |
+
#~ msgstr "只能包含小寫字母,數字和短橫線"
|
954 |
+
|
955 |
+
#~ msgid "You must start and end with lowercase letters and numbers"
|
956 |
+
#~ msgstr "必須以小寫字母和數字開頭和結尾"
|
957 |
+
|
958 |
+
#~ msgid "BucketName length limits between 3-63"
|
959 |
+
#~ msgstr "bucketName的長度限制在3-63之間"
|
960 |
+
|
961 |
+
#~ msgid "Delete Bucket"
|
962 |
+
#~ msgstr "刪除Bucket"
|
963 |
+
|
964 |
+
#~ msgid "New Bucket Name"
|
965 |
+
#~ msgstr "新Bucket名"
|
966 |
+
|
967 |
+
#~ msgid "Create a New Bucket"
|
968 |
+
#~ msgstr "新建Bucket"
|
969 |
+
|
970 |
+
#~ msgid "Scan & Sync"
|
971 |
+
#~ msgstr "掃描 & 同步"
|
972 |
+
|
973 |
+
#~ msgid "Automatically scan media library and sync to AliYun OSS."
|
974 |
+
#~ msgstr "自動掃描媒體庫並同步到阿裡雲OSS。"
|
975 |
+
|
976 |
+
#~ msgid "Fast Scan"
|
977 |
+
#~ msgstr "快速掃描"
|
978 |
+
|
979 |
+
#~ msgid "Smart Scan"
|
980 |
+
#~ msgstr "智能掃描"
|
981 |
+
|
982 |
+
#~ msgid "Sync Delete"
|
983 |
+
#~ msgstr "同步刪除"
|
984 |
+
|
985 |
+
#~ msgid ""
|
986 |
+
#~ "When you delete a local attachment file, delete the OSS file "
|
987 |
+
#~ "synchronization."
|
988 |
+
#~ msgstr "當你刪除本地附件文件時,同時刪除OSS上的文件。"
|
989 |
+
|
990 |
+
#~ msgid "Auto Replace"
|
991 |
+
#~ msgstr "自動替換"
|
992 |
+
|
993 |
+
#~ msgid ""
|
994 |
+
#~ "Automatically replaces post content's local url as OSS's url when syncing."
|
995 |
+
#~ msgstr "當同步時自動將文章內容中的本地URL替換爲OSS上的URL。"
|
996 |
+
|
997 |
+
#~ msgctxt "upyun"
|
998 |
+
#~ msgid "Bucket"
|
999 |
+
#~ msgstr "空間名"
|
1000 |
+
|
1001 |
+
#~ msgctxt "upyun"
|
1002 |
+
#~ msgid "Test Access UpYun"
|
1003 |
+
#~ msgstr "測試連接又拍雲"
|
1004 |
+
|
1005 |
+
#~ msgid ""
|
1006 |
+
#~ "Automatically scan media library and sync to UpYun.<br /><strong>Fast "
|
1007 |
+
#~ "Scan</strong>: Determines whether the synchronization with local marks."
|
1008 |
+
#~ "<br /><strong>Smart Scan</strong>: Determines whether the synchronization "
|
1009 |
+
#~ "with UpYun file exists."
|
1010 |
+
#~ msgstr ""
|
1011 |
+
#~ "自動掃描媒體庫並同步到又拍雲。<br /><strong>快速掃描</strong>:通過本地記"
|
1012 |
+
#~ "號來判斷是否已同步。<br /><strong>智能掃描</strong>:通過又拍雲上的文件是"
|
1013 |
+
#~ "否存在判斷是否已同步。"
|
1014 |
+
|
1015 |
+
#~ msgid ""
|
1016 |
+
#~ "When you delete a local attachment file, delete the UpYun file "
|
1017 |
+
#~ "synchronization."
|
1018 |
+
#~ msgstr "當你刪除本地附件文件時,同時刪除又拍雲上的文件。"
|
1019 |
+
|
1020 |
+
#~ msgid ""
|
1021 |
+
#~ "Automatically replaces post content's local url as UpYun's url when "
|
1022 |
+
#~ "syncing."
|
1023 |
+
#~ msgstr "當同步時自動將文章內容中的本地URL替換爲又拍雲上的URL。"
|
1024 |
+
|
1025 |
+
#~ msgid "Proxy Settings"
|
1026 |
+
#~ msgstr "代理設置"
|
1027 |
+
|
1028 |
+
#~ msgid "Use proxy server to download images."
|
1029 |
+
#~ msgstr "使用代理服務器下載圖片。"
|
1030 |
+
|
1031 |
+
#~ msgid "Timeout"
|
1032 |
+
#~ msgstr "超時"
|
1033 |
+
|
1034 |
+
#~ msgid "Set timeout period on proxy."
|
1035 |
+
#~ msgstr "設置代理超時時間。"
|
1036 |
+
|
1037 |
+
#~ msgid "Second(s)"
|
1038 |
+
#~ msgstr "秒"
|
1039 |
+
|
1040 |
+
#~ msgid "Proxy Address"
|
1041 |
+
#~ msgstr "代理地址"
|
1042 |
+
|
1043 |
+
#~ msgid "For example: 127.0.0.1:8087"
|
1044 |
+
#~ msgstr "示例:127.0.0.1:8087"
|
1045 |
+
|
1046 |
+
#~ msgid "Images Compression Options"
|
1047 |
+
#~ msgstr "圖片壓縮選項"
|
1048 |
+
|
1049 |
+
#~ msgid "Enable compress images when uploading."
|
1050 |
+
#~ msgstr "啓用上傳時壓縮圖像。"
|
1051 |
+
|
1052 |
+
#~ msgid "Quality"
|
1053 |
+
#~ msgstr "品質"
|
1054 |
+
|
1055 |
+
#~ msgid ""
|
1056 |
+
#~ "Compression level, ranges from 0 (worst quality, smaller file) to 100 "
|
1057 |
+
#~ "(best quality, biggest file)."
|
1058 |
+
#~ msgstr ""
|
1059 |
+
#~ "壓縮級別,範圍從0(最低品質,文件較小)到100(最高品質,文件較大)。"
|
1060 |
+
|
1061 |
+
#~ msgid " (Recommend)"
|
1062 |
+
#~ msgstr "(推薦)"
|
1063 |
+
|
1064 |
+
#~ msgid "Smart Options"
|
1065 |
+
#~ msgstr "智能選項"
|
1066 |
+
|
1067 |
+
#~ msgid "Smart Grabbing"
|
1068 |
+
#~ msgstr "智能抓取"
|
1069 |
+
|
1070 |
+
#~ msgid ""
|
1071 |
+
#~ "Automatically detect 2 images url from href/src of remote image with "
|
1072 |
+
#~ "outside link, and grab the bigger one."
|
1073 |
+
#~ msgstr ""
|
1074 |
+
#~ "自動從帶外部鏈接的遠程圖片的href和src中檢測2幅圖片並抓取其中較大的一個。"
|
1075 |
+
|
1076 |
+
#~ msgid "Enabled Watermark"
|
1077 |
+
#~ msgstr "啓用水印"
|
1078 |
+
|
1079 |
+
#~ msgid "Use for both of remote images and the local upload."
|
1080 |
+
#~ msgstr "同時用于遠程圖片和本地上傳。"
|
1081 |
+
|
1082 |
+
#~ msgid "Ignore animated GIF"
|
1083 |
+
#~ msgstr "忽略GIF動畫"
|
1084 |
+
|
1085 |
+
#~ msgid "Skip images that smaller than this size."
|
1086 |
+
#~ msgstr "跳過比這個尺寸更小的圖像。"
|
1087 |
+
|
1088 |
+
#~ msgid "Position"
|
1089 |
+
#~ msgstr "位置"
|
1090 |
+
|
1091 |
+
#~ msgid "You can try to drag the watermark image."
|
1092 |
+
#~ msgstr "你可以試著拖動水印圖片。"
|
1093 |
+
|
1094 |
+
#~ msgid "Opacity"
|
1095 |
+
#~ msgstr "不透明度"
|
1096 |
+
|
1097 |
+
#~ msgid "Upload Watermark Image"
|
1098 |
+
#~ msgstr "上傳水印圖片"
|
1099 |
+
|
1100 |
+
#~ msgid "Insert a Watermark Image"
|
1101 |
+
#~ msgstr "插入水印圖片"
|
1102 |
+
|
1103 |
+
#~ msgid "Default Watermark"
|
1104 |
+
#~ msgstr "默認水印"
|
1105 |
+
|
1106 |
+
#~ msgid "Content Replacement"
|
1107 |
+
#~ msgstr "內容替換"
|
1108 |
+
|
1109 |
+
#~ msgctxt "database"
|
1110 |
+
#~ msgid "Table"
|
1111 |
+
#~ msgstr "表"
|
1112 |
+
|
1113 |
+
#~ msgid "Comments"
|
1114 |
+
#~ msgstr "評論"
|
1115 |
+
|
1116 |
+
#~ msgctxt "database"
|
1117 |
+
#~ msgid "Field"
|
1118 |
+
#~ msgstr "字段"
|
1119 |
+
|
1120 |
+
#~ msgctxt "database"
|
1121 |
+
#~ msgid "Post Content"
|
1122 |
+
#~ msgstr "文章內容"
|
1123 |
+
|
1124 |
+
#~ msgctxt "database"
|
1125 |
+
#~ msgid "Post Title"
|
1126 |
+
#~ msgstr "文章標題"
|
1127 |
+
|
1128 |
+
#~ msgctxt "database"
|
1129 |
+
#~ msgid "Post Excerpt"
|
1130 |
+
#~ msgstr "文章摘要"
|
1131 |
+
|
1132 |
+
#~ msgctxt "database"
|
1133 |
+
#~ msgid "Source Text"
|
1134 |
+
#~ msgstr "來源文本"
|
1135 |
+
|
1136 |
+
#~ msgid "For example: "
|
1137 |
+
#~ msgstr "範例:"
|
1138 |
+
|
1139 |
+
#~ msgctxt "database"
|
1140 |
+
#~ msgid "Replacement Text"
|
1141 |
+
#~ msgstr "替換文本"
|
1142 |
+
|
1143 |
+
#~ msgid "Replace Now"
|
1144 |
+
#~ msgstr "立即替換"
|
1145 |
+
|
1146 |
+
#~ msgid ""
|
1147 |
+
#~ "Be careful, before you click the Replace-Now button, i recommend backup "
|
1148 |
+
#~ "the website database."
|
1149 |
+
#~ msgstr "小心,在你點立即替換之前,我建議先備份網站數據庫。"
|
1150 |
+
|
1151 |
+
#~ msgid "Cron of Scan Posts"
|
1152 |
+
#~ msgstr "掃描文章計劃任務"
|
1153 |
+
|
1154 |
+
#~ msgid "Post Types"
|
1155 |
+
#~ msgstr "文章類型"
|
1156 |
+
|
1157 |
+
#~ msgid "Recurrence"
|
1158 |
+
#~ msgstr "循環運行間隔"
|
1159 |
+
|
1160 |
+
#~ msgid "Will Run On"
|
1161 |
+
#~ msgstr "將運行于"
|
1162 |
+
|
1163 |
+
#~ msgid "No Cron yet."
|
1164 |
+
#~ msgstr "還沒有計劃任務。"
|
1165 |
+
|
1166 |
+
#~ msgid "Clear All Crons"
|
1167 |
+
#~ msgstr "清除所有計劃任務"
|
1168 |
+
|
1169 |
#~ msgid "Demo"
|
1170 |
#~ msgstr "演示"
|
1171 |
|
qqworld-auto-save-images.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: QQWorld Auto Save Images
|
4 |
Plugin URI: https://wordpress.org/plugins/qqworld-auto-save-images/
|
5 |
Description: Automatically keep the all remote picture to the local, and automatically set featured image.
|
6 |
-
Version: 1.7.13.
|
7 |
Author: Michael Wang
|
8 |
Author URI: http://www.qqworld.org
|
9 |
Text Domain: qqworld_auto_save_images
|
@@ -29,45 +29,10 @@ class QQWorld_auto_save_images {
|
|
29 |
var $change_title_alt;
|
30 |
var $save_outside_links;
|
31 |
var $auto_caption;
|
|
|
|
|
32 |
var $additional_content;
|
33 |
|
34 |
-
var $optimize;
|
35 |
-
var $optimize_enabled;
|
36 |
-
var $optimize_mode;
|
37 |
-
var $optimize_url;
|
38 |
-
var $optimize_protocol;
|
39 |
-
var $optimize_host;
|
40 |
-
var $optimize_folder;
|
41 |
-
var $ftp;
|
42 |
-
var $ftp_connection;
|
43 |
-
var $ftp_protocol;
|
44 |
-
var $ftp_host;
|
45 |
-
var $ftp_folder;
|
46 |
-
|
47 |
-
var $aliyun_oss;
|
48 |
-
var $access_key_id;
|
49 |
-
var $access_key_secret;
|
50 |
-
var $bucket;
|
51 |
-
var $endpoint;
|
52 |
-
var $aliyun_oss_sync_delete;
|
53 |
-
var $aliyun_oss_auto_replace;
|
54 |
-
|
55 |
-
var $compression;
|
56 |
-
|
57 |
-
var $smart;
|
58 |
-
var $enabled_smart_grabbing;
|
59 |
-
|
60 |
-
var $proxy;
|
61 |
-
var $proxy_enabled;
|
62 |
-
var $proxy_timeout;
|
63 |
-
var $proxy_address;
|
64 |
-
|
65 |
-
var $watermark_enabled;
|
66 |
-
var $ignore_animated_gif;
|
67 |
-
var $filter_size;
|
68 |
-
var $align_to;
|
69 |
-
var $offset;
|
70 |
-
var $watermark_opacity;
|
71 |
function __construct() {
|
72 |
$this->mode = get_option('qqworld_auto_save_images_mode', 'auto');
|
73 |
$this->when = get_option('qqworld_auto_save_images_when', 'publish');
|
@@ -88,68 +53,8 @@ class QQWorld_auto_save_images {
|
|
88 |
$this->save_outside_links = isset($this->format['save-outside-links']) ? $this->format['save-outside-links'] : 'no';
|
89 |
$this->additional_content = isset($this->format['additional-content']) ? $this->format['additional-content'] : array('before'=>'', 'after'=>'');
|
90 |
$this->auto_caption = isset($this->format['auto-caption']) ? $this->format['auto-caption'] : 'no';
|
91 |
-
|
92 |
-
$this->
|
93 |
-
$this->optimize_enabled = isset($this->optimize['enabled']) ? $this->optimize['enabled'] : '';
|
94 |
-
$this->optimize_mode = isset($this->optimize['mode']) ? $this->optimize['mode'] : 'local';
|
95 |
-
$this->optimize_url = get_option('qqworld-auto-save-images-optimize-url');
|
96 |
-
$this->optimize_protocol = isset($this->optimize_url['protocol']) ? $this->optimize_url['protocol'] : 'http';
|
97 |
-
$this->optimize_host = isset($this->optimize_url['host']) ? $this->optimize_url['host'] : '';
|
98 |
-
$this->optimize_folder = isset($this->optimize_url['folder']) ? $this->optimize_url['folder'] : '';
|
99 |
-
$this->ftp = get_option('qqworld-auto-save-images-ftp', array('ip' => '','port' => '21','username' => '','password' => '', 'directory' => '/'));
|
100 |
-
$this->ftp_protocol = isset($this->ftp['protocol']) ? $this->ftp['protocol'] : 'http';
|
101 |
-
$this->ftp_host = isset($this->ftp['host']) ? $this->ftp['host'] : '';
|
102 |
-
$this->ftp_folder = isset($this->ftp['folder']) ? $this->ftp['folder'] : '';
|
103 |
-
|
104 |
-
$this->qiniu = get_option('qqworld-auto-save-images-qiniu', array() );
|
105 |
-
$this->qiniu_host = isset($this->qiniu['host']) ? $this->qiniu['host'] : '';
|
106 |
-
|
107 |
-
$this->aliyun_oss = get_option('qqworld-auto-save-images-aliyun-oss', array('endpoint' => 'oss.aliyuncs.com', 'sync-delete' => 'yes', 'auto-replace' => 'yes'));
|
108 |
-
$this->endpoint = isset($this->aliyun_oss['endpoint']) ? $this->aliyun_oss['endpoint'] : 'oss.aliyuncs.com';
|
109 |
-
$this->access_key_id = isset($this->aliyun_oss['access-key-id']) ? $this->aliyun_oss['access-key-id'] : '';
|
110 |
-
$this->access_key_secret = isset($this->aliyun_oss['access-key-secret']) ? $this->aliyun_oss['access-key-secret'] : '';
|
111 |
-
$this->aliyun_oss_sync_delete = isset($this->aliyun_oss['sync-delete']) ? $this->aliyun_oss['sync-delete'] : 'no';
|
112 |
-
$this->aliyun_oss_auto_replace = isset($this->aliyun_oss['auto-replace']) ? $this->aliyun_oss['auto-replace'] : 'no';
|
113 |
-
|
114 |
-
$this->aliyun_oss_protocol = isset($this->aliyun_oss['protocol']) ? $this->aliyun_oss['protocol'] : 'http';
|
115 |
-
$this->aliyun_oss_host = isset($this->aliyun_oss['host']) ? $this->aliyun_oss['host'] : '';
|
116 |
-
$this->aliyun_oss_folder = isset($this->aliyun_oss['folder']) ? $this->aliyun_oss['folder'] : '';
|
117 |
-
|
118 |
-
$this->aliyun_oss = get_option('qqworld-auto-save-images-aliyun-oss', array('sync-delete' => 'yes'));
|
119 |
-
$this->access_key_id = isset($this->aliyun_oss['access-key-id']) ? $this->aliyun_oss['access-key-id'] : '';
|
120 |
-
$this->access_key_secret = isset($this->aliyun_oss['access-key-secret']) ? $this->aliyun_oss['access-key-secret'] : '';
|
121 |
-
$this->bucket = isset($this->aliyun_oss['bucket']) ? $this->aliyun_oss['bucket'] : '';
|
122 |
-
$this->sync_delete = isset($this->aliyun_oss['sync-delete']) ? $this->aliyun_oss['sync-delete'] : '';
|
123 |
-
|
124 |
-
$this->upyun = get_option('qqworld-auto-save-images-upyun', array('sync-delete' => 'yes', 'auto-replace' => 'yes'));
|
125 |
-
$this->upyun_username = isset($this->upyun['username']) ? $this->upyun['username'] : '';
|
126 |
-
$this->upyun_password = isset($this->upyun['password']) ? $this->upyun['password'] : '';
|
127 |
-
$this->upyun_bucket = isset($this->upyun['bucket']) ? $this->upyun['bucket'] : '';
|
128 |
-
$this->upyun_sync_delete = isset($this->upyun['sync-delete']) ? $this->upyun['sync-delete'] : 'no';
|
129 |
-
$this->upyun_auto_replace = isset($this->upyun['auto-replace']) ? $this->upyun['auto-replace'] : 'no';
|
130 |
-
$this->upyun_protocol = isset($this->upyun['protocol']) ? $this->upyun['protocol'] : 'http';
|
131 |
-
$this->upyun_host = isset($this->upyun['host']) ? $this->upyun['host'] : '';
|
132 |
-
$this->upyun_folder = isset($this->upyun['folder']) ? $this->upyun['folder'] : '';
|
133 |
-
|
134 |
-
$this->proxy = get_option('qqworld-auto-save-images-proxy', array("timeout" => 5, "address" => "127.0.0.1:8087"));
|
135 |
-
$this->proxy_enabled = isset($this->proxy['enabled']) ? $this->proxy['enabled'] : '';
|
136 |
-
$this->proxy_timeout = isset($this->proxy['timeout']) ? $this->proxy['timeout'] : '5';
|
137 |
-
$this->proxy_address = isset($this->proxy['address']) ? $this->proxy['address'] : '127.0.0.1:8087';
|
138 |
-
|
139 |
-
$this->compression = get_option('qqworld-auto-save-images-compression', array('quality' => 75));
|
140 |
-
$this->compression_enabled = isset($this->compression['enabled']) ? $this->compression['enabled'] : '';
|
141 |
-
$this->compression_level = isset($this->compression['quality']) ? $this->compression['quality'] : '';
|
142 |
-
|
143 |
-
$this->smart = get_option('qqworld-auto-save-images-smart', array());
|
144 |
-
$this->enabled_smart_grabbing = isset($this->smart['enabled_smart_grabbing']) ? $this->smart['enabled_smart_grabbing'] : 'no';
|
145 |
-
|
146 |
-
$this->watermark_enabled = get_option('qqworld-auto-save-images-watermark-enabled', 'no');
|
147 |
-
$this->ignore_animated_gif = get_option('qqworld-auto-save-images-watermark-ignore-animated-gif', 'yes');
|
148 |
-
$this->filter_size = get_option('qqworld-auto-save-images-watermark-filter-size', array('width'=>300, 'height'=>300));
|
149 |
-
$this->align_to = get_option('qqworld-auto-save-images-watermark-align-to', 'lt');
|
150 |
-
$this->offset = get_option('qqworld-auto-save-images-watermark-offset', array('x'=>0, 'y'=>0));
|
151 |
-
$this->watermark_opacity = get_option('qqworld-auto-save-images-watermark-opacity', 100);
|
152 |
-
$this->watermark_image = get_option('qqworld-auto-save-images-watermark-image');
|
153 |
|
154 |
switch ($this->mode) {
|
155 |
case 'auto':
|
@@ -163,8 +68,6 @@ class QQWorld_auto_save_images {
|
|
163 |
}
|
164 |
if ($this->remote_publishing) add_action('xmlrpc_publish_post', array($this, 'fetch_images') );
|
165 |
|
166 |
-
add_action( 'wp_ajax_auto_save_images_test_ftp', array($this, 'test_ftp') );
|
167 |
-
add_action( 'wp_ajax_nopriv_auto_save_images_test_ftp', array($this, 'test_ftp') );
|
168 |
add_action( 'wp_ajax_get_scan_list', array($this, 'get_scan_list') );
|
169 |
add_action( 'wp_ajax_nopriv_get_scan_list', array($this, 'get_scan_list') );
|
170 |
add_action( 'wp_ajax_save_remote_images_get_categories_list', array($this, 'save_remote_images_get_categories_list') );
|
@@ -315,43 +218,12 @@ class QQWorld_auto_save_images {
|
|
315 |
'status' => __('Status'),
|
316 |
'control' => __('Control', 'qqworld_auto_save_images'),
|
317 |
'done' => __('Done'),
|
318 |
-
'delete' => __('Delete')
|
319 |
-
'watermark_offset' => $this->offset,
|
320 |
-
'default_watermark' => array(
|
321 |
-
'src' => QQWORLD_AUTO_SAVE_IMAGES_URL . 'images/watermark.png',
|
322 |
-
'width' => 205,
|
323 |
-
'height' => 61
|
324 |
-
)
|
325 |
);
|
326 |
wp_localize_script('qqworld-auto-save-images-script', 'QASI', $translation_array, '3.0.0');
|
327 |
}
|
328 |
}
|
329 |
|
330 |
-
public function test_ftp() {
|
331 |
-
$ip = $this->ftp['ip'];
|
332 |
-
$port = $this->ftp['port'];
|
333 |
-
$username = $this->ftp['username'];
|
334 |
-
$password = $this->ftp['password'];
|
335 |
-
$directory = $this->ftp['directory'];
|
336 |
-
$this->ftp_connection = ftp_connect($ip, $port);
|
337 |
-
if ($this->ftp_connection) {
|
338 |
-
if (ftp_login($this->ftp_connection, $username, $password)) {
|
339 |
-
$this->ftp_mksubdirs($this->ftp_connection, '/', $directory);
|
340 |
-
if (ftp_chdir($this->ftp_connection, $directory) ) {
|
341 |
-
$result = array( 'success' => 1, 'msg' => sprintf('<span class="green">%s</span>', __('Congratulation! FTP successfully connected.', 'qqworld_auto_save_images')) );
|
342 |
-
} else {
|
343 |
-
$result = array( 'success' => 0, 'msg' => __('Failed to change ftp directory, Did dirctory not exist?', 'qqworld_auto_save_images') );
|
344 |
-
}
|
345 |
-
} else {
|
346 |
-
$result = array( 'success' => 0, 'msg' => _e('Whoops, FTP logon has failed!', 'qqworld_auto_save_images') );
|
347 |
-
}
|
348 |
-
} else {
|
349 |
-
$result = array( 'success' => 0, 'msg' => __('Whoops, FTP connection has failed!', 'qqworld_auto_save_images') );
|
350 |
-
}
|
351 |
-
echo json_encode($result);
|
352 |
-
exit;
|
353 |
-
}
|
354 |
-
|
355 |
public function get_scan_list() {
|
356 |
if ( !current_user_can( 'manage_options' ) ) return;
|
357 |
$args = array();
|
@@ -572,15 +444,13 @@ class QQWorld_auto_save_images {
|
|
572 |
<?php settings_fields('qqworld_auto_save_images_settings'); ?>
|
573 |
<img src="<?php echo QQWORLD_AUTO_SAVE_IMAGES_URL; ?>images/banner-772x250.png" width="772" height="250" id="banner" />
|
574 |
<ul id="qqworld-auto-save-images-tabs">
|
575 |
-
<li class="current"><?php _e('
|
576 |
-
<li><?php _e('
|
577 |
-
<li><?php _e('
|
578 |
-
<li><?php _e('Database', 'qqworld_auto_save_images'); ?> (<?php _e('Preview', 'qqworld_auto_save_images')?>)</li>
|
579 |
<li><?php _e('Scan Posts', 'qqworld_auto_save_images'); ?></li>
|
580 |
-
<li
|
581 |
</ul>
|
582 |
<div class="tab-content">
|
583 |
-
<h2><?php _e('General Options', 'qqworld_auto_save_images'); ?></h2>
|
584 |
<table class="form-table">
|
585 |
<tbody>
|
586 |
<tr valign="top">
|
@@ -632,16 +502,11 @@ class QQWorld_auto_save_images {
|
|
632 |
</label>
|
633 |
</fieldset></td>
|
634 |
</tr>
|
635 |
-
<tr valign="top" id="manual-demo"<?php if ($this->mode != 'manual') echo ' style="display: none;"'; ?>>
|
636 |
-
<th scope="row"><label><?php _e('Demo of Pro Edition', 'qqworld_auto_save_images'); ?></label></th>
|
637 |
-
<td><fieldset>
|
638 |
-
<legend class="screen-reader-text"><span><?php _e('Set Featured Image', 'qqworld_auto_save_images'); ?></span></legend>
|
639 |
-
<?php _e("<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/-KImHNbPA-o\" frameborder=\"0\" allowfullscreen></iframe>", 'qqworld_auto_save_images'); ?>
|
640 |
-
</fieldset></td>
|
641 |
-
</tr>
|
642 |
</tbody>
|
643 |
</table>
|
644 |
-
|
|
|
|
|
645 |
<table class="form-table">
|
646 |
<tbody>
|
647 |
<tr valign="top">
|
@@ -701,7 +566,9 @@ class QQWorld_auto_save_images {
|
|
701 |
</tr>
|
702 |
</tbody>
|
703 |
</table>
|
704 |
-
|
|
|
|
|
705 |
<table class="form-table">
|
706 |
<tbody>
|
707 |
<tr valign="top">
|
@@ -798,7 +665,26 @@ function save_outside_link($content, $link) {
|
|
798 |
'post' => __('Attachment Page'),
|
799 |
'none' => __('None')
|
800 |
);
|
801 |
-
foreach ($linkTo as $value => $title) echo '<option value="'.$value.'"'.selected($value, $this->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
?>
|
803 |
</select>
|
804 |
</label>
|
@@ -828,552 +714,6 @@ function save_outside_link($content, $link) {
|
|
828 |
<?php do_action('qqworld-auto-save-images-general-options-form'); ?>
|
829 |
<?php submit_button(); ?>
|
830 |
</div>
|
831 |
-
<div class="tab-content hidden">
|
832 |
-
<div class="readme"><p><strong><?php _e("Just for preview, The complete feature will on the Pro version.", 'qqworld_auto_save_images') ?></strong></p></div>
|
833 |
-
<h2><?php _e('Optimization Options', 'qqworld_auto_save_images'); ?></h2>
|
834 |
-
<table class="form-table">
|
835 |
-
<tbody>
|
836 |
-
<tr valign="top">
|
837 |
-
<th scope="row"><label for="enabled_cookie_free_domain"><?php _e('Enabled', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('Use Cookie-Free Domains to display images.', 'qqworld_auto_save_images'); ?>"></span></th>
|
838 |
-
<td><fieldset>
|
839 |
-
<legend class="screen-reader-text"><span><?php _e('Enabled', 'qqworld_auto_save_images'); ?></span></legend>
|
840 |
-
<label>
|
841 |
-
<input name="qqworld-auto-save-images-optimize[enabled]" type="checkbox" id="enabled_cookie_free_domain" value="yes" <?php checked('yes', $this->optimize_enabled); ?> />
|
842 |
-
</label>
|
843 |
-
</fieldset></td>
|
844 |
-
</tr>
|
845 |
-
<tr valign="top">
|
846 |
-
<th scope="row"><label for="optimize-mode"><?php _e('Mode', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("If you don't want using local media library, please select Use-FTP-Remote-Server.", 'qqworld_auto_save_images'); ?>"></span></th>
|
847 |
-
<td><fieldset>
|
848 |
-
<legend class="screen-reader-text"><span><?php _e('Mode', 'qqworld_auto_save_images'); ?></span></legend>
|
849 |
-
<select name="qqworld-auto-save-images-optimize[mode]" id="optimize-mode">
|
850 |
-
<?php
|
851 |
-
$linkTo = array(
|
852 |
-
'local' => __('Use local server', 'qqworld_auto_save_images'),
|
853 |
-
'qiniu' => __('Use QiNiu Cloud Storage', 'qqworld_auto_save_images'),
|
854 |
-
'ftp' => __('Use FTP remote server', 'qqworld_auto_save_images'),
|
855 |
-
'aliyun_oss' => __('Use AliYun Open Storage Service (OSS)', 'qqworld_auto_save_images'),
|
856 |
-
'upyun' => __('Use UpYun Storage Service', 'qqworld_auto_save_images')
|
857 |
-
);
|
858 |
-
foreach ($linkTo as $value => $title) echo '<option value="'.$value.'"'.selected($value, $this->optimize_mode, false).'>'.$title.'</option>';
|
859 |
-
?>
|
860 |
-
</select>
|
861 |
-
</fieldset></td>
|
862 |
-
</tr>
|
863 |
-
</tbody>
|
864 |
-
</table>
|
865 |
-
<div class="optimize-table"<?php if ($this->optimize_mode!='local') echo ' style="display: none;"'; ?>>
|
866 |
-
<table class="form-table">
|
867 |
-
<tbody>
|
868 |
-
<tr valign="top" id="url-settings">
|
869 |
-
<th scope="row"><label for="host"><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></label> <span class="icon help" data-header="<?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?>" data-content="<?php _e("Set new url structure, Do not end with '/'. The folder string must front with '/'.", 'qqworld_auto_save_images'); ?>"></span></th>
|
870 |
-
<td><fieldset>
|
871 |
-
<legend class="screen-reader-text"><span><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></span></legend>
|
872 |
-
<label>
|
873 |
-
<span>http(s)://</span> <input type="text" name="qqworld-auto-save-images-optimize-url[host]" class="regular-text" placeholder="<?php _e('Host', 'qqworld_auto_save_images'); ?>" id="host" value="<?php echo $this->optimize_host; ?>" /> <span>/wp-contents/uploads/2014/11/example.jpg</span>
|
874 |
-
<?php if (!empty($this->optimize_host)) : ?>
|
875 |
-
<p><strong><?php _e('You need add this code below into wp-config.php:', 'qqworld_auto_save_images'); ?></strong></p>
|
876 |
-
<p>define( 'WP_CONTENT_URL', "http://<?php echo $this->optimize_host; ?>/wp-content" );<br />
|
877 |
-
define( 'COOKIE_DOMAIN', '<?php $url = parse_url(site_url()); echo $url['host']; ?>' );
|
878 |
-
</p><?php endif; ?>
|
879 |
-
</label>
|
880 |
-
</fieldset></td>
|
881 |
-
</tr>
|
882 |
-
<tbody>
|
883 |
-
</table>
|
884 |
-
</div>
|
885 |
-
<div class="optimize-table"<?php if ($this->optimize_mode!='qiniu') echo ' style="display: none;"'; ?>>
|
886 |
-
<table class="form-table" id="upyun-settings">
|
887 |
-
<tbody>
|
888 |
-
<tr valign="top" id="url-settings">
|
889 |
-
<th scope="row"><label for="upyun-host"><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("Set new url structure, Do not end with '/'. The folder string must front with '/'.", 'qqworld_auto_save_images'); ?>"></span></th>
|
890 |
-
<td><fieldset>
|
891 |
-
<legend class="screen-reader-text"><span><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></span></legend>
|
892 |
-
<label>
|
893 |
-
http(s)://
|
894 |
-
<input type="text" name="qqworld-auto-save-images-qiniu[host]" class="regular-text" placeholder="<?php _e('Host', 'qqworld_auto_save_images'); ?>" id="upyun-host" value="<?php echo $this->qiniu_host; ?>" />
|
895 |
-
<span>/wp-content/2014/11/example.jpg</span>
|
896 |
-
</label>
|
897 |
-
<p class="descrpition"><?php printf(__("Needs <a href=\"%s\" target=\"_blank\">plugin of QiNiu Cloud Storage</a>.", 'qqworld_auto_save_images') ,'http://blog.wpjam.com/project/wpjam-qiniutek/'); ?></p>
|
898 |
-
</fieldset></td>
|
899 |
-
</tr>
|
900 |
-
</tbody>
|
901 |
-
</table>
|
902 |
-
</div>
|
903 |
-
<div class="optimize-table"<?php if ($this->optimize_mode!='ftp') echo ' style="display: none;"'; ?>>
|
904 |
-
<table class="form-table">
|
905 |
-
<tbody>
|
906 |
-
<tr valign="top" id="url-settings">
|
907 |
-
<th scope="row"><label for="ftp-host"><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></label> <span class="icon help" data-header="<?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?>" data-content="<?php _e("Set new url structure, Do not end with '/'. The folder string must front with '/'.", 'qqworld_auto_save_images'); ?>"></span></th>
|
908 |
-
<td><fieldset>
|
909 |
-
<legend class="screen-reader-text"><span><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></span></legend>
|
910 |
-
<label>
|
911 |
-
<select id="protocol" name="qqworld-auto-save-images-ftp[protocol]">
|
912 |
-
<option value="http"<?php selected($this->ftp_protocol, 'http'); ?>>http://</option>
|
913 |
-
<option value="https"<?php selected($this->ftp_protocol, 'https'); ?>>https://</option>
|
914 |
-
</select>
|
915 |
-
<input type="text" name="qqworld-auto-save-images-ftp[host]" class="regular-text" placeholder="<?php _e('Host', 'qqworld_auto_save_images'); ?>" id="ftp-host" value="<?php echo $this->ftp_host; ?>" />
|
916 |
-
<input type="text" id="folder" name="qqworld-auto-save-images-ftp[folder]" placeholder="<?php _e('Folder (Can be empty)', 'qqworld_auto_save_images'); ?>" value="<?php echo $this->ftp_folder; ?>" />
|
917 |
-
<span>/2014/11/example.jpg</span>
|
918 |
-
</label>
|
919 |
-
</fieldset></td>
|
920 |
-
</tr>
|
921 |
-
<tr valign="top" id="ftp-settings">
|
922 |
-
<th scope="row"><label for="ftp-ip"><?php _e('FTP Settings', 'qqworld_auto_save_images'); ?></label></th>
|
923 |
-
<td><fieldset>
|
924 |
-
<legend class="screen-reader-text"><span><?php _e('FTP Settings', 'qqworld_auto_save_images'); ?></span></legend>
|
925 |
-
<table id="ftp-table">
|
926 |
-
<tr>
|
927 |
-
<td><label for="ftp-ip"><?php _e('IP Address', 'qqworld_auto_save_images'); ?></label></td>
|
928 |
-
<td><input type="text" name="qqworld-auto-save-images-ftp[ip]" id="ftp-ip" value="<?php echo $this->ftp['ip']; ?>" /></td>
|
929 |
-
</tr>
|
930 |
-
<tr>
|
931 |
-
<td><label for="ftp-port"><?php _e('Port', 'qqworld_auto_save_images'); ?></label></td>
|
932 |
-
<td><input type="text" name="qqworld-auto-save-images-ftp[port]" id="ftp-port" size="5" value="<?php echo $this->ftp['port']; ?>" /></td>
|
933 |
-
</tr>
|
934 |
-
<tr>
|
935 |
-
<td><label for="ftp-username"><?php _e('Username', 'qqworld_auto_save_images'); ?></label></td>
|
936 |
-
<td><input type="text" name="qqworld-auto-save-images-ftp[username]" id="ftp-username" value="<?php echo $this->ftp['username']; ?>" /></td>
|
937 |
-
</tr>
|
938 |
-
<tr>
|
939 |
-
<td><label for="ftp-password"><?php _e('Password', 'qqworld_auto_save_images'); ?></label></td>
|
940 |
-
<td><input type="password" name="qqworld-auto-save-images-ftp[password]" id="ftp-password" value="<?php echo $this->ftp['password']; ?>" /></td>
|
941 |
-
</tr>
|
942 |
-
<tr>
|
943 |
-
<td><label for="ftp-directory"><?php _e('Directory', 'qqworld_auto_save_images'); ?></label></td>
|
944 |
-
<td><input type="text" name="qqworld-auto-save-images-ftp[directory]" id="ftp-directory" value="<?php echo $this->ftp['directory']; ?>" /></td>
|
945 |
-
</tr>
|
946 |
-
<tr>
|
947 |
-
<td colspan="2"><input type="button" id="test-ftp" class="button" value="<?php _e('Test FTP', 'qqworld_auto_save_images'); ?>" /></td>
|
948 |
-
</tr>
|
949 |
-
</table>
|
950 |
-
</fieldset></td>
|
951 |
-
</tr>
|
952 |
-
</tbody>
|
953 |
-
</table>
|
954 |
-
</div>
|
955 |
-
<div class="optimize-table"<?php if ($this->optimize_mode!='aliyun_oss') echo ' style="display: none;"'; ?>>
|
956 |
-
<table class="form-table" id="aliyun-oss-settings">
|
957 |
-
<tbody>
|
958 |
-
<tr valign="top" id="url-settings">
|
959 |
-
<th scope="row"><label for="aliyun-oss-host"><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></label> <span class="icon help" data-header="<?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?>" data-content="<?php _e("Set new url structure, Do not end with '/'. The folder string must front with '/'.", 'qqworld_auto_save_images'); ?>"></span></th>
|
960 |
-
<td><fieldset>
|
961 |
-
<legend class="screen-reader-text"><span><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></span></legend>
|
962 |
-
<label>
|
963 |
-
<select id="protocol" name="qqworld-auto-save-images-aliyun-oss[protocol]">
|
964 |
-
<option value="http"<?php selected($this->aliyun_oss_protocol, 'http'); ?>>http://</option>
|
965 |
-
<option value="https"<?php selected($this->aliyun_oss_protocol, 'https'); ?>>https://</option>
|
966 |
-
</select>
|
967 |
-
<input type="text" name="qqworld-auto-save-images-aliyun-oss[host]" class="regular-text" placeholder="<?php _e('Host', 'qqworld_auto_save_images'); ?>" id="aliyun-oss-host" value="<?php echo $this->aliyun_oss_host; ?>" />
|
968 |
-
<input type="text" id="folder" name="qqworld-auto-save-images-aliyun-oss[folder]" placeholder="<?php _e('Folder (Can be empty)', 'qqworld_auto_save_images'); ?>" value="<?php echo $this->aliyun_oss_folder; ?>" />
|
969 |
-
<span>/2014/11/example.jpg</span>
|
970 |
-
</label>
|
971 |
-
</fieldset></td>
|
972 |
-
</tr>
|
973 |
-
<tr valign="top">
|
974 |
-
<th scope="row"><label for="access-key-id"><?php _e('Access Key ID', 'qqworld_auto_save_images'); ?></label></th>
|
975 |
-
<td><fieldset>
|
976 |
-
<legend class="screen-reader-text"><span><?php _e('Access Key ID', 'qqworld_auto_save_images'); ?></span></legend>
|
977 |
-
<label>
|
978 |
-
<input type="text" name="qqworld-auto-save-images-aliyun-oss[access-key-id]" class="regular-text" id="access-key-id" value="<?php echo $this->access_key_id; ?>" />
|
979 |
-
</label>
|
980 |
-
</fieldset></td>
|
981 |
-
</tr>
|
982 |
-
<tr valign="top">
|
983 |
-
<th scope="row"><label for="access-key-secret"><?php _e('Access Key Secret', 'qqworld_auto_save_images'); ?></label></th>
|
984 |
-
<td><fieldset>
|
985 |
-
<legend class="screen-reader-text"><span><?php _e('Access Key Secret', 'qqworld_auto_save_images'); ?></span></legend>
|
986 |
-
<label>
|
987 |
-
<input type="password" name="qqworld-auto-save-images-aliyun-oss[access-key-secret]" class="regular-text" id="access-key-secret" value="<?php echo $this->access_key_secret; ?>" />
|
988 |
-
<input type="button" class="button" id="test-aliyun-oss" value="<?php _e('Test Access OSS', 'qqworld_auto_save_images'); ?>" />
|
989 |
-
</label>
|
990 |
-
</fieldset></td>
|
991 |
-
</tr>
|
992 |
-
<tr valign="top">
|
993 |
-
<th scope="row"><label for="aliyun-oss-buckets"><?php _e('Buckets', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('Only the authority Public-Read can be used.', 'qqworld_auto_save_images'); ?><p><?php _e('Bucket Naming conventions:', 'qqworld_auto_save_images'); ?><?php _e('Can only contain lowercase letters, numbers, and dashes', 'qqworld_auto_save_images'); ?>; <?php _e('You must start and end with lowercase letters and numbers', 'qqworld_auto_save_images'); ?>; <?php _e('BucketName length limits between 3-63', 'qqworld_auto_save_images'); ?>"></span></th>
|
994 |
-
<td><fieldset>
|
995 |
-
<legend class="screen-reader-text"><span><?php _e('Buckets', 'qqworld_auto_save_images'); ?></span></legend>
|
996 |
-
<select id="aliyun-oss-buckets" name="qqworld-auto-save-images-aliyun-oss[bucket]">
|
997 |
-
<option value=""><?php _e('None'); ?></option>
|
998 |
-
</select> <input type="button" class="button" id="delete-bucket" value="<?php _e('Delete Bucket', 'qqworld_auto_save_images'); ?>" />
|
999 |
-
<p><input type="text" id="new-bucket-name" placeholder="<?php _e('New Bucket Name', 'qqworld_auto_save_images'); ?>" /> <input type="button" class="button" id="create-new-bucket" value="<?php _e('Create a New Bucket', 'qqworld_auto_save_images'); ?>" /></p>
|
1000 |
-
</fieldset></td>
|
1001 |
-
</tr>
|
1002 |
-
<tr valign="top">
|
1003 |
-
<th scope="row"><label for="scan_sync_to_aliyun_oss"><?php _e('Scan & Sync', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('Automatically scan media library and sync to AliYun OSS.', 'qqworld_auto_save_images'); ?>"></span></th>
|
1004 |
-
<td><fieldset>
|
1005 |
-
<legend class="screen-reader-text"><span><?php _e('Scan & Sync', 'qqworld_auto_save_images'); ?></span></legend>
|
1006 |
-
<input type="button" class="button" id="fast_scan_sync_to_aliyun_oss" value="<?php _e('Fast Scan', 'qqworld_auto_save_images'); ?> ⇛" />
|
1007 |
-
<input type="button" class="button" id="smart_scan_sync_to_aliyun_oss" value="<?php _e('Smart Scan', 'qqworld_auto_save_images'); ?> ⇛" />
|
1008 |
-
</fieldset></td>
|
1009 |
-
</tr>
|
1010 |
-
<tr valign="top">
|
1011 |
-
<th scope="row"><label for="sync_delete_aliyun_oss"><?php _e('Sync Delete', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('When you delete a local attachment file, delete the OSS file synchronization.', 'qqworld_auto_save_images'); ?>"></span></th>
|
1012 |
-
<td><fieldset>
|
1013 |
-
<legend class="screen-reader-text"><span><?php _e('Sync Delete', 'qqworld_auto_save_images'); ?></span></legend>
|
1014 |
-
<label>
|
1015 |
-
<input name="qqworld-auto-save-images-aliyun-oss[sync-delete]" type="checkbox" id="sync_delete_aliyun_oss" value="yes" <?php checked($this->aliyun_oss_sync_delete, 'yes'); ?> />
|
1016 |
-
</label>
|
1017 |
-
</fieldset></td>
|
1018 |
-
</tr>
|
1019 |
-
<tr valign="top">
|
1020 |
-
<th scope="row"><label for="auto_replace_aliyun_oss"><?php _e('Auto Replace', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("Automatically replaces post content's local url as OSS's url when syncing.", 'qqworld_auto_save_images'); ?>"></span></th>
|
1021 |
-
<td><fieldset>
|
1022 |
-
<legend class="screen-reader-text"><span><?php _e('Auto Replace', 'qqworld_auto_save_images'); ?></span></legend>
|
1023 |
-
<label>
|
1024 |
-
<input name="qqworld-auto-save-images-aliyun-oss[auto-replace]" type="checkbox" id="auto_replace_aliyun_oss" value="yes" <?php checked($this->aliyun_oss_auto_replace, 'yes'); ?> />
|
1025 |
-
</label>
|
1026 |
-
</fieldset></td>
|
1027 |
-
</tr>
|
1028 |
-
</tbody>
|
1029 |
-
</table>
|
1030 |
-
</div>
|
1031 |
-
<div class="optimize-table"<?php if ($this->optimize_mode!='upyun') echo ' style="display: none;"'; ?>>
|
1032 |
-
<table class="form-table" id="upyun-settings">
|
1033 |
-
<tbody>
|
1034 |
-
<tr valign="top" id="url-settings">
|
1035 |
-
<th scope="row"><label for="upyun-host"><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("Set new url structure, Do not end with '/'. The folder string must front with '/'.", 'qqworld_auto_save_images'); ?>"></span></th>
|
1036 |
-
<td><fieldset>
|
1037 |
-
<legend class="screen-reader-text"><span><?php _e('Domain & Folder', 'qqworld_auto_save_images'); ?></span></legend>
|
1038 |
-
<label>
|
1039 |
-
<select id="protocol" name="qqworld-auto-save-images-upyun[protocol]">
|
1040 |
-
<option value="http"<?php selected('http', $this->upyun_protocol); ?>>http://</option>
|
1041 |
-
<option value="https"<?php selected('https', $this->upyun_protocol); ?>>https://</option>
|
1042 |
-
</select>
|
1043 |
-
<input type="text" name="qqworld-auto-save-images-upyun[host]" class="regular-text" placeholder="<?php _e('Host', 'qqworld_auto_save_images'); ?>" id="upyun-host" value="<?php echo $this->upyun_host; ?>" />
|
1044 |
-
<input type="text" id="folder" name="qqworld-auto-save-images-upyun[folder]" placeholder="<?php _e('Folder (Can be empty)', 'qqworld_auto_save_images'); ?>" value="<?php echo $this->upyun_folder; ?>" />
|
1045 |
-
<span>/2014/11/example.jpg</span>
|
1046 |
-
</label>
|
1047 |
-
</fieldset></td>
|
1048 |
-
</tr>
|
1049 |
-
<tr valign="top">
|
1050 |
-
<th scope="row"><label for="upyun-bucket"><?php _ex('Bucket', 'upyun', 'qqworld_auto_save_images'); ?></label></th>
|
1051 |
-
<td><fieldset>
|
1052 |
-
<legend class="screen-reader-text"><span><?php _ex('Bucket', 'upyun', 'qqworld_auto_save_images'); ?></span></legend>
|
1053 |
-
<input type="text" name="qqworld-auto-save-images-upyun[bucket]" placeholder="<?php _ex('Bucket', 'upyun', 'qqworld_auto_save_images'); ?>" id="upyun-bucket" value="<?php echo $this->upyun_bucket; ?>" />
|
1054 |
-
</fieldset></td>
|
1055 |
-
</tr>
|
1056 |
-
<tr valign="top">
|
1057 |
-
<th scope="row"><label for="upyun-username"><?php _e('Username', 'qqworld_auto_save_images'); ?></label></th>
|
1058 |
-
<td><fieldset>
|
1059 |
-
<legend class="screen-reader-text"><span><?php _e('Username', 'qqworld_auto_save_images'); ?></span></legend>
|
1060 |
-
<label>
|
1061 |
-
<input type="text" name="qqworld-auto-save-images-upyun[username]" placeholder="<?php _e('Username', 'qqworld_auto_save_images'); ?>" id="upyun-username" value="<?php echo $this->upyun_username; ?>" />
|
1062 |
-
</label>
|
1063 |
-
</fieldset></td>
|
1064 |
-
</tr>
|
1065 |
-
<tr valign="top">
|
1066 |
-
<th scope="row"><label for="upyun-password"><?php _e('Password', 'qqworld_auto_save_images'); ?></label></th>
|
1067 |
-
<td><fieldset>
|
1068 |
-
<legend class="screen-reader-text"><span><?php _e('Password', 'qqworld_auto_save_images'); ?></span></legend>
|
1069 |
-
<input type="password" name="qqworld-auto-save-images-upyun[password]" placeholder="<?php _e('Password', 'qqworld_auto_save_images'); ?>" id="upyun-password" value="<?php echo $this->upyun_password; ?>" />
|
1070 |
-
<input type="button" class="button" id="test-access-upyun" value="<?php _ex('Test Access UpYun', 'upyun', 'qqworld_auto_save_images'); ?>" />
|
1071 |
-
</fieldset></td>
|
1072 |
-
</tr>
|
1073 |
-
<tr valign="top">
|
1074 |
-
<th scope="row"><label for="scan_sync_to_upyun"><?php _e('Scan & Sync', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('Automatically scan media library and sync to UpYun.<br /><strong>Fast Scan</strong>: Determines whether the synchronization with local marks.<br /><strong>Smart Scan</strong>: Determines whether the synchronization with UpYun file exists.', 'qqworld_auto_save_images'); ?>"></span></th>
|
1075 |
-
<td><fieldset>
|
1076 |
-
<legend class="screen-reader-text"><span><?php _e('Scan & Sync', 'qqworld_auto_save_images'); ?></span></legend>
|
1077 |
-
<input type="button" class="button" id="fast_scan_sync_to_upyun" value="<?php _e('Fast Scan', 'qqworld_auto_save_images'); ?> ⇛" />
|
1078 |
-
<input type="button" class="button" id="smart_scan_sync_to_upyun" value="<?php _e('Smart Scan', 'qqworld_auto_save_images'); ?> ⇛" />
|
1079 |
-
</fieldset></td>
|
1080 |
-
</tr>
|
1081 |
-
<tr valign="top">
|
1082 |
-
<th scope="row"><label for="sync_delete_upyun"><?php _e('Sync Delete', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('When you delete a local attachment file, delete the UpYun file synchronization.', 'qqworld_auto_save_images'); ?>"></span></th>
|
1083 |
-
<td><fieldset>
|
1084 |
-
<legend class="screen-reader-text"><span><?php _e('Sync Delete', 'qqworld_auto_save_images'); ?></span></legend>
|
1085 |
-
<label>
|
1086 |
-
<input name="qqworld-auto-save-images-upyun[sync-delete]" type="checkbox" id="sync_delete_upyun" value="yes" <?php checked('yes', $this->upyun_sync_delete); ?> />
|
1087 |
-
</label>
|
1088 |
-
</fieldset></td>
|
1089 |
-
</tr>
|
1090 |
-
<tr valign="top">
|
1091 |
-
<th scope="row"><label for="auto_replace_upyun"><?php _e('Auto Replace', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("Automatically replaces post content's local url as UpYun's url when syncing.", 'qqworld_auto_save_images'); ?>"></span></th>
|
1092 |
-
<td><fieldset>
|
1093 |
-
<legend class="screen-reader-text"><span><?php _e('Auto Replace', 'qqworld_auto_save_images'); ?></span></legend>
|
1094 |
-
<label>
|
1095 |
-
<input name="qqworld-auto-save-images-upyun[auto-replace]" type="checkbox" id="auto_replace_upyun" value="yes" <?php checked('yes', $this->upyun_auto_replace); ?> />
|
1096 |
-
</label>
|
1097 |
-
</fieldset></td>
|
1098 |
-
</tr>
|
1099 |
-
</tbody>
|
1100 |
-
</table>
|
1101 |
-
</div>
|
1102 |
-
<h2><?php _e('Proxy Settings', 'qqworld_auto_save_images'); ?></h2>
|
1103 |
-
<table class="form-table">
|
1104 |
-
<tbody>
|
1105 |
-
<tr valign="top">
|
1106 |
-
<th scope="row"><label for="enabled_proxy"><?php _e('Enabled', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('Use proxy server to download images.', 'qqworld_auto_save_images'); ?>"></span></th>
|
1107 |
-
<td><fieldset>
|
1108 |
-
<legend class="screen-reader-text"><span><?php _e('Enabled', 'qqworld_auto_save_images'); ?></span></legend>
|
1109 |
-
<label>
|
1110 |
-
<input name="qqworld-auto-save-images-proxy[enabled]" type="checkbox" id="enabled_proxy" value="yes" <?php checked('yes', $this->proxy_enabled); ?> />
|
1111 |
-
</label>
|
1112 |
-
</fieldset></td>
|
1113 |
-
</tr>
|
1114 |
-
<tr valign="top">
|
1115 |
-
<th scope="row"><label for="proxy_timeout"><?php _e('Timeout', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("Set timeout period on proxy.", 'qqworld_auto_save_images'); ?>"></span></th>
|
1116 |
-
<td><fieldset>
|
1117 |
-
<legend class="screen-reader-text"><span><?php _e('Timeout', 'qqworld_auto_save_images'); ?></span></legend>
|
1118 |
-
<label for="proxy_timeout">
|
1119 |
-
<input name="qqworld-auto-save-images-proxy[timeout]" type="text" class="small-text" id="proxy_timeout" value="<?php echo $this->proxy_timeout; ?>" /> <?php _e("Second(s)", 'qqworld_auto_save_images'); ?>
|
1120 |
-
</label>
|
1121 |
-
</fieldset></td>
|
1122 |
-
</tr>
|
1123 |
-
<tr valign="top">
|
1124 |
-
<th scope="row"><label for="proxy_address"><?php _e('Proxy Address', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("For example: 127.0.0.1:8087", 'qqworld_auto_save_images'); ?>"></span></th>
|
1125 |
-
<td><fieldset>
|
1126 |
-
<legend class="screen-reader-text"><span><?php _e('Proxy Address', 'qqworld_auto_save_images'); ?></span></legend>
|
1127 |
-
<label for="proxy_address">
|
1128 |
-
<input name="qqworld-auto-save-images-proxy[address]" type="text" id="proxy_address" value="<?php echo $this->proxy_address; ?>" />
|
1129 |
-
</label>
|
1130 |
-
</fieldset></td>
|
1131 |
-
</tr>
|
1132 |
-
</tbody>
|
1133 |
-
</table>
|
1134 |
-
<h2><?php _e('Images Compression Options', 'qqworld_auto_save_images'); ?></h2>
|
1135 |
-
<table class="form-table">
|
1136 |
-
<tbody>
|
1137 |
-
<tr valign="top">
|
1138 |
-
<th scope="row"><label for="enabled_compression"><?php _e('Enabled', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('Enable compress images when uploading.', 'qqworld_auto_save_images'); ?>"></span></th>
|
1139 |
-
<td><fieldset>
|
1140 |
-
<legend class="screen-reader-text"><span><?php _e('Enabled', 'qqworld_auto_save_images'); ?></span></legend>
|
1141 |
-
<label>
|
1142 |
-
<input name="qqworld-auto-save-images-compression[enabled]" type="checkbox" id="enabled_compression" value="yes" <?php checked('yes', $this->compression_enabled); ?> />
|
1143 |
-
</label>
|
1144 |
-
</fieldset></td>
|
1145 |
-
</tr>
|
1146 |
-
<tr valign="top">
|
1147 |
-
<th scope="row"><label for="enabled_compression"><?php _e('Quality', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('Compression level, ranges from 0 (worst quality, smaller file) to 100 (best quality, biggest file).', 'qqworld_auto_save_images'); ?>"></span></th>
|
1148 |
-
<td><fieldset>
|
1149 |
-
<legend class="screen-reader-text"><span><?php _e('Quality', 'qqworld_auto_save_images'); ?></span></legend>
|
1150 |
-
<select id="protocol" name="qqworld-auto-save-images-compression[quality]">
|
1151 |
-
<?php for ($q=100; $q>=0; $q-=5) : ?>
|
1152 |
-
<option value="<?php echo $q; ?>"<?php selected($q, $this->compression_level); ?>><?php echo $q; ?><?php if ($q==75) _e(' (Recommend)', 'qqworld_auto_save_images'); ?></option>
|
1153 |
-
<?php endfor; ?>
|
1154 |
-
</select>
|
1155 |
-
</fieldset></td>
|
1156 |
-
</tr>
|
1157 |
-
</tbody>
|
1158 |
-
</table>
|
1159 |
-
<h2><?php _e('Smart Options', 'qqworld_auto_save_images'); ?></h2>
|
1160 |
-
<table class="form-table">
|
1161 |
-
<tbody>
|
1162 |
-
<tr valign="top">
|
1163 |
-
<th scope="row"><label for="enabled_smart_grabbing"><?php _e('Smart Grabbing', 'qqworld_auto_save_images'); ?></label> <span class="icon help" data-header="<?php _e('Smart Grabbing', 'qqworld_auto_save_images'); ?>" data-content="<?php _e('Automatically detect 2 images url from href/src of remote image with outside link, and grab the bigger one.', 'qqworld_auto_save_images'); ?>"></span></th>
|
1164 |
-
<td><fieldset>
|
1165 |
-
<legend class="screen-reader-text"><span><?php _e('Smart Grabbing', 'qqworld_auto_save_images'); ?></span></legend>
|
1166 |
-
<label>
|
1167 |
-
<input name="qqworld-auto-save-images-smart[enabled_smart_grabbing]" type="checkbox" id="enabled_smart_grabbing" value="yes" <?php checked('yes', $this->enabled_smart_grabbing); ?> />
|
1168 |
-
</label>
|
1169 |
-
</fieldset></td>
|
1170 |
-
</tr>
|
1171 |
-
</tbody>
|
1172 |
-
</table>
|
1173 |
-
<table class="form-table">
|
1174 |
-
<tbody>
|
1175 |
-
<tr valign="top">
|
1176 |
-
<th scope="row"><label><?php _e('Buy', 'qqworld_auto_save_images'); ?></label></th>
|
1177 |
-
<td><a href="http://www.qqworld.org/products/qqworld-collector" target="_blank"><?php _e('QQWorld Collector', 'qqworld_auto_save_images'); ?></a></td>
|
1178 |
-
</tr>
|
1179 |
-
</tbody>
|
1180 |
-
</table>
|
1181 |
-
<?php submit_button(); ?>
|
1182 |
-
</div>
|
1183 |
-
</form>
|
1184 |
-
<form action="options.php" method="post" id="watermark-form">
|
1185 |
-
<?php settings_fields('qqworld_auto_save_images_watermark'); ?>
|
1186 |
-
<div class="tab-content hidden">
|
1187 |
-
<div class="readme"><p><strong><?php _e("Just for preview, The complete feature will on the Pro version.", 'qqworld_auto_save_images') ?></strong></p></div>
|
1188 |
-
<table class="form-table">
|
1189 |
-
<tbody>
|
1190 |
-
<tr valign="top">
|
1191 |
-
<th scope="row"><label><?php _e('Enabled Watermark', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("Use for both of remote images and the local upload.", 'qqworld_auto_save_images'); ?>"></span></th>
|
1192 |
-
<td><fieldset>
|
1193 |
-
<legend class="screen-reader-text"><span><?php _e('Enabled Watermark', 'qqworld_auto_save_images'); ?></span></legend>
|
1194 |
-
<label for="qqworld-auto-save-images-watermark-enable">
|
1195 |
-
<input name="qqworld-auto-save-images-watermark-enabled" type="checkbox" id="qqworld-auto-save-images-watermark-enabled" value="yes" <?php checked('yes', $this->watermark_enabled); ?> />
|
1196 |
-
</label>
|
1197 |
-
</fieldset>
|
1198 |
-
</td>
|
1199 |
-
</tr>
|
1200 |
-
<tr valign="top">
|
1201 |
-
<th scope="row"><label><?php _e('Ignore animated GIF', 'qqworld_auto_save_images'); ?></label></th>
|
1202 |
-
<td><fieldset>
|
1203 |
-
<legend class="screen-reader-text"><span><?php _e('Ignore animated GIF', 'qqworld_auto_save_images'); ?></span></legend>
|
1204 |
-
<label for="ignore-animated-gif">
|
1205 |
-
<input name="qqworld-auto-save-images-watermark-ignore-animated-gif" type="checkbox" id="ignore-animated-gif" value="yes" <?php checked('yes', $this->ignore_animated_gif); ?> />
|
1206 |
-
</label>
|
1207 |
-
</fieldset>
|
1208 |
-
</td>
|
1209 |
-
</tr>
|
1210 |
-
<tr valign="top">
|
1211 |
-
<th scope="row"><label><?php _e('Filter', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("Skip images that smaller than this size.", 'qqworld_auto_save_images'); ?>"></span></th>
|
1212 |
-
<td><fieldset>
|
1213 |
-
<legend class="screen-reader-text"><span><?php _e('Filter', 'qqworld_auto_save_images'); ?></span></legend>
|
1214 |
-
<label for="filter-size-width">
|
1215 |
-
<?php _e('Width:', 'qqworld_auto_save_images'); ?> <input name="qqworld-auto-save-images-watermark-filter-size[width]" type="number" id="filter-size-width" value="<?php echo $this->filter_size['width']; ?>" class="small-text" /> <?php _e('(px)', 'qqworld_auto_save_images'); ?>
|
1216 |
-
</label><br />
|
1217 |
-
<label for="filter-size-height">
|
1218 |
-
<?php _e('Height:', 'qqworld_auto_save_images'); ?> <input name="qqworld-auto-save-images-watermark-filter-size[height]" type="number" id="filter-size-height" value="<?php echo $this->filter_size['height']; ?>" class="small-text" /> <?php _e('(px)', 'qqworld_auto_save_images'); ?>
|
1219 |
-
</label>
|
1220 |
-
</fieldset>
|
1221 |
-
</td>
|
1222 |
-
</tr>
|
1223 |
-
<tr valign="top">
|
1224 |
-
<th scope="row"><label><?php _e('Align To', 'qqworld_auto_save_images'); ?></label></th>
|
1225 |
-
<td>
|
1226 |
-
<table id="watermark-align-to">
|
1227 |
-
<tr>
|
1228 |
-
<td><label><input type="radio" value="lt" id="lt" name="qqworld-auto-save-images-watermark-align-to" <?php checked('lt', $this->align_to)?> /></label></td>
|
1229 |
-
<td><label><input type="radio" value="ct" id="ct" name="qqworld-auto-save-images-watermark-align-to" <?php checked('ct', $this->align_to)?> /></label></td>
|
1230 |
-
<td><label><input type="radio" value="rt" id="rt" name="qqworld-auto-save-images-watermark-align-to" <?php checked('rt', $this->align_to)?> /></label></td>
|
1231 |
-
</tr>
|
1232 |
-
<tr>
|
1233 |
-
<td><label><input type="radio" value="lc" id="lc" name="qqworld-auto-save-images-watermark-align-to" <?php checked('lc', $this->align_to)?> /></label></td>
|
1234 |
-
<td><label><input type="radio" value="cc" id="cc" name="qqworld-auto-save-images-watermark-align-to" <?php checked('cc', $this->align_to)?> /></label></td>
|
1235 |
-
<td><label><input type="radio" value="rc" id="rc" name="qqworld-auto-save-images-watermark-align-to" <?php checked('rc', $this->align_to)?> /></label></td>
|
1236 |
-
</tr>
|
1237 |
-
<tr>
|
1238 |
-
<td><label><input type="radio" value="lb" id="lb" name="qqworld-auto-save-images-watermark-align-to" <?php checked('lb', $this->align_to)?> /></label></td>
|
1239 |
-
<td><label><input type="radio" value="cb" id="cb" name="qqworld-auto-save-images-watermark-align-to" <?php checked('cb', $this->align_to)?> /></label></td>
|
1240 |
-
<td><label><input type="radio" value="rb" id="rb" name="qqworld-auto-save-images-watermark-align-to" <?php checked('rb', $this->align_to)?> /></label></td>
|
1241 |
-
</tr>
|
1242 |
-
</table>
|
1243 |
-
</td>
|
1244 |
-
</tr>
|
1245 |
-
<tr valign="top">
|
1246 |
-
<th scope="row"><label><?php _e('Position', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e("You can try to drag the watermark image.", 'qqworld_auto_save_images'); ?>"></span></th>
|
1247 |
-
<td>
|
1248 |
-
<div id="watermark-position">
|
1249 |
-
<?php
|
1250 |
-
if ($this->watermark_image) :
|
1251 |
-
$attr = array(
|
1252 |
-
'id' => 'watermark-test'
|
1253 |
-
);
|
1254 |
-
echo wp_get_attachment_image($this->watermark_image, 'full', null, $attr);
|
1255 |
-
else : ?>
|
1256 |
-
<img id="watermark-test" src="<?php echo QQWORLD_AUTO_SAVE_IMAGES_URL; ?>images/watermark.png" width="205" height="61" />
|
1257 |
-
<?php endif; ?>
|
1258 |
-
<img id="photo-test" src="<?php echo QQWORLD_AUTO_SAVE_IMAGES_URL; ?>images/photo.jpg" width="800" height="450" />
|
1259 |
-
</div>
|
1260 |
-
</td>
|
1261 |
-
</tr>
|
1262 |
-
<tr valign="top">
|
1263 |
-
<th scope="row"><label><?php _e('Offset', 'qqworld_auto_save_images'); ?></label></th>
|
1264 |
-
<td><fieldset>
|
1265 |
-
<legend class="screen-reader-text"><span><?php _e('Offset', 'qqworld_auto_save_images'); ?></span></legend>
|
1266 |
-
<label for="offset-x">
|
1267 |
-
X: <input name="qqworld-auto-save-images-watermark-offset[x]" type="text" id="offset-x" value="<?php echo $this->offset['x']; ?>" class="small-text" readonly />
|
1268 |
-
</label>
|
1269 |
-
<label for="offset-y">
|
1270 |
-
Y: <input name="qqworld-auto-save-images-watermark-offset[y]" type="text" id="offset-y" value="<?php echo $this->offset['y']; ?>" class="small-text" readonly />
|
1271 |
-
</label>
|
1272 |
-
</fieldset>
|
1273 |
-
</td>
|
1274 |
-
</tr>
|
1275 |
-
<tr valign="top">
|
1276 |
-
<th scope="row"><label><?php _e('Opacity', 'qqworld_auto_save_images'); ?></label></th>
|
1277 |
-
<td><fieldset>
|
1278 |
-
<legend class="screen-reader-text"><span><?php _e('Opacity', 'qqworld_auto_save_images'); ?></span></legend>
|
1279 |
-
<label for="qqworld-auto-save-images-watermark-opacity">
|
1280 |
-
<input name="qqworld-auto-save-images-watermark-opacity" type="number" id="watermark-opacity" value="<?php echo $this->watermark_opacity; ?>" class="small-text" /> (0-100)
|
1281 |
-
</label>
|
1282 |
-
</fieldset>
|
1283 |
-
</td>
|
1284 |
-
</tr>
|
1285 |
-
<tr valign="top">
|
1286 |
-
<th scope="row"><label id="for-watermark-image" for="watermark-image"><?php _e('Upload Watermark Image', 'qqworld_auto_save_images'); ?></label></th>
|
1287 |
-
<td><fieldset>
|
1288 |
-
<legend class="screen-reader-text"><span><?php _e('Upload Watermark Image', 'qqworld_auto_save_images'); ?></span></legend>
|
1289 |
-
<label for="watermark-image">
|
1290 |
-
<a href="javascript:" id="upload-watermark-image" title="<?php _e('Insert a Watermark Image', 'qqworld_auto_save_images'); ?>">
|
1291 |
-
<?php
|
1292 |
-
if ($this->watermark_image) :
|
1293 |
-
echo wp_get_attachment_image($this->watermark_image, 'full');
|
1294 |
-
else : ?>
|
1295 |
-
<img src="<?php echo QQWORLD_AUTO_SAVE_IMAGES_URL; ?>images/watermark.png" width="205" height="61" />
|
1296 |
-
<?php endif; ?>
|
1297 |
-
</a>
|
1298 |
-
<input name="qqworld-auto-save-images-watermark-image" id="watermark-image" type="hidden" title="" value="<?php echo $this->watermark_image; ?>" />
|
1299 |
-
</label>
|
1300 |
-
</fieldset>
|
1301 |
-
<input type="button" class="button<?php if (!$this->watermark_image) echo ' hidden'; ?>" id="default-watermark" value="<?php _e('Default Watermark', 'qqworld_auto_save_images'); ?>">
|
1302 |
-
</td>
|
1303 |
-
</tr>
|
1304 |
-
<tr valign="top">
|
1305 |
-
<th scope="row"><label><?php _e('Buy', 'qqworld_auto_save_images'); ?></label></th>
|
1306 |
-
<td><a href="http://www.qqworld.org/products/qqworld-collector" target="_blank"><?php _e('QQWorld Collector', 'qqworld_auto_save_images'); ?></a></td>
|
1307 |
-
</tr>
|
1308 |
-
</tbody>
|
1309 |
-
</table>
|
1310 |
-
<?php submit_button(); ?>
|
1311 |
-
</div>
|
1312 |
-
</form>
|
1313 |
-
<form action="" method="posst">
|
1314 |
-
<div class="tab-content hidden">
|
1315 |
-
<?php global $wpdb; ?>
|
1316 |
-
<div class="readme"><p><strong><?php _e("Just for preview, The complete feature will on the Pro version.", 'qqworld_auto_save_images') ?></strong></p></div>
|
1317 |
-
<h2><?php _e('Content Replacement', 'qqworld_auto_save_images'); ?></h2>
|
1318 |
-
<table class="form-table">
|
1319 |
-
<tbody>
|
1320 |
-
<tr valign="top">
|
1321 |
-
<th scope="row"><label for="db-tables"><?php _ex('Table', 'database', 'qqworld_auto_save_images'); ?></label></th>
|
1322 |
-
<td><fieldset>
|
1323 |
-
<legend class="screen-reader-text"><span><?php _ex('Table', 'database', 'qqworld_auto_save_images'); ?></span></legend>
|
1324 |
-
<label>
|
1325 |
-
<select name="db-table" id="db-tables">
|
1326 |
-
<option value="<?php echo $wpdb->posts; ?>"><?php _e('Posts'); ?> (<?php echo $wpdb->posts; ?>)</option>
|
1327 |
-
<option value="<?php echo $wpdb->comments; ?>" disabled="disabled"><?php _e('Comments'); ?> (<?php echo $wpdb->comments; ?>)</option>
|
1328 |
-
</select>
|
1329 |
-
</label>
|
1330 |
-
</fieldset></td>
|
1331 |
-
</tr>
|
1332 |
-
<tr valign="top">
|
1333 |
-
<th scope="row"><label for="db-table-fields"><?php _ex('Field', 'database', 'qqworld_auto_save_images'); ?></label></th>
|
1334 |
-
<td><fieldset>
|
1335 |
-
<legend class="screen-reader-text"><span><?php _ex('Field', 'database', 'qqworld_auto_save_images'); ?></span></legend>
|
1336 |
-
<label>
|
1337 |
-
<select name="db-table-field" id="db-table-fields">
|
1338 |
-
<option value="post_content"><?php _ex('Post Content', 'database', 'qqworld_auto_save_images'); ?> (post_content)</option>
|
1339 |
-
<option value="post_title"><?php _ex('Post Title', 'database', 'qqworld_auto_save_images'); ?> (post_title)</option>
|
1340 |
-
<option value="post_excerpt"><?php _ex('Post Excerpt', 'database', 'qqworld_auto_save_images'); ?> (post_excerpt)</option>
|
1341 |
-
</select>
|
1342 |
-
</label>
|
1343 |
-
</fieldset></td>
|
1344 |
-
</tr>
|
1345 |
-
<tr valign="top">
|
1346 |
-
<th scope="row"><label for="db-table-field-source"><?php _ex('Source Text', 'database', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('For example: ', 'qqworld_auto_save_images'); ?><?php echo site_url('/wp-contents/uploads'); ?>"></span></th>
|
1347 |
-
<td><fieldset>
|
1348 |
-
<legend class="screen-reader-text"><span><?php _ex('Source Text', 'database', 'qqworld_auto_save_images'); ?></span></legend>
|
1349 |
-
<label for="offset-x">
|
1350 |
-
<input name="db-table-field-source" type="text" placeholder="<?php _ex('Source Text', 'database', 'qqworld_auto_save_images'); ?>" class="regular-text" id="db-table-field-source" value="" />
|
1351 |
-
</label>
|
1352 |
-
</fieldset>
|
1353 |
-
</td>
|
1354 |
-
</tr>
|
1355 |
-
<tr valign="top">
|
1356 |
-
<th scope="row"><label for="db-table-field-replacement"><?php _ex('Replacement Text', 'database', 'qqworld_auto_save_images'); ?></label> <span class="icon help" title="<?php _e('For example: ', 'qqworld_auto_save_images'); ?>http://www.example.com/uploads"</span></th>
|
1357 |
-
<td><fieldset>
|
1358 |
-
<legend class="screen-reader-text"><span><?php _ex('Replacement Text', 'database', 'qqworld_auto_save_images'); ?></span></legend>
|
1359 |
-
<label for="offset-x">
|
1360 |
-
<input name="db-table-field-replacement" type="text" placeholder="<?php _ex('Replacement Text', 'database', 'qqworld_auto_save_images'); ?>" class="regular-text" id="db-table-field-replacement" value="" />
|
1361 |
-
</label>
|
1362 |
-
</fieldset>
|
1363 |
-
</td>
|
1364 |
-
</tr>
|
1365 |
-
</tbody>
|
1366 |
-
</table>
|
1367 |
-
<table class="form-table">
|
1368 |
-
<tbody>
|
1369 |
-
<tr valign="top">
|
1370 |
-
<th scope="row"><label><?php _e('Buy', 'qqworld_auto_save_images'); ?></label></th>
|
1371 |
-
<td><a href="http://www.qqworld.org/products/qqworld-collector" target="_blank"><?php _e('QQWorld Collector', 'qqworld_auto_save_images'); ?></a></td>
|
1372 |
-
</tr>
|
1373 |
-
</tbody>
|
1374 |
-
</table>
|
1375 |
-
<p class="submit"><?php submit_button(__('Replace Now', 'qqworld_auto_save_images'), 'primary', 'database-replace-now', false, 'disabled="disabled"'); ?> <span class="icon help" title="<?php _e('Be careful, before you click the Replace-Now button, i recommend backup the website database.', 'qqworld_auto_save_images'); ?>"></span></p>
|
1376 |
-
</div>
|
1377 |
</form>
|
1378 |
<form action="" method="post" id="scan">
|
1379 |
<div class="tab-content hidden">
|
@@ -1479,14 +819,6 @@ function save_outside_link($content, $link) {
|
|
1479 |
<p class="submit">
|
1480 |
<input name="scan_old_posts" type="button" class="button-primary" id="scan_old_posts" value="<?php _e('Automatic', 'qqworld_auto_save_images'); ?> ⇛" /> <span class="icon help" title="<?php _e('Scan posts and keep remote images in all posts to local media library. Maybe take a long time.', 'qqworld_auto_save_images'); ?>"></span>
|
1481 |
<input name="list_all_posts" type="button" class="button-primary" id="list_all_posts" value="<?php _e('Manual', 'qqworld_auto_save_images'); ?> ☰" /> <span class="icon help" title="<?php _e("The list displayed will show you which posts including remote images, then you can keep them to local manually via click \"Fetch\" button.", 'qqworld_auto_save_images'); ?>"></span>
|
1482 |
-
|
1483 |
-
<select name="schedule" id="scan-schedules">
|
1484 |
-
<?php
|
1485 |
-
foreach (wp_get_schedules() as $recurrence => $detail) {
|
1486 |
-
echo '<option value="'.$recurrence.'">'.$detail['display'].'</option>';
|
1487 |
-
} ?>
|
1488 |
-
</select>
|
1489 |
-
<input name="cron_scan_posts" type="button" class="button-primary" id="cron_scan_posts" value="<?php _e('Cron', 'qqworld_auto_save_images'); ?> ⇛" /> <span class="icon help" title="<?php _e("Set cron for automatically scan posts.<br />I recommend set the option Offset from 0 to scan 100 posts.", 'qqworld_auto_save_images'); ?>"></span>
|
1490 |
</p>
|
1491 |
</div>
|
1492 |
</div>
|
@@ -1494,35 +826,83 @@ function save_outside_link($content, $link) {
|
|
1494 |
<form action="" method="post" id="scan-cron">
|
1495 |
<div class="tab-content hidden">
|
1496 |
<div id="cron-list-container">
|
1497 |
-
<h3><?php _e('Cron of Scan Posts', 'qqworld_auto_save_images'); ?></h3>
|
1498 |
-
<div class="readme"><p><strong><?php _e("Just for preview, The complete feature will on the Pro version.", 'qqworld_auto_save_images') ?></strong></p></div>
|
1499 |
-
<table id="cron-list-table" class="common-list-table">
|
1500 |
-
<thead>
|
1501 |
-
<th><?php _e('Post Types', 'qqworld_auto_save_images'); ?></th>
|
1502 |
-
<th><?php _e('Categories'); ?></th>
|
1503 |
-
<th><?php _e('Scope of Post ID', 'qqworld_auto_save_images'); ?></th>
|
1504 |
-
<th><?php _e('Offset', 'qqworld_auto_save_images'); ?></th>
|
1505 |
-
<th><?php _e('Status'); ?></th>
|
1506 |
-
<th><?php _e('Order By', 'qqworld_auto_save_images'); ?></th>
|
1507 |
-
<th><?php _e('Order'); ?></th>
|
1508 |
-
<th><?php _e('Recurrence', 'qqworld_auto_save_images'); ?></th>
|
1509 |
-
<th><?php _e('Will Run On', 'qqworld_auto_save_images'); ?></th>
|
1510 |
-
<th><?php _e('Delete'); ?></th>
|
1511 |
-
</thead>
|
1512 |
-
<tbody id="cron-list">
|
1513 |
-
</tbody>
|
1514 |
-
<tfoot>
|
1515 |
-
<tr><td colspan="10" align="center"><?php _e('No Cron yet.', 'qqworld_auto_save_images'); ?></td></tr>
|
1516 |
-
</tfoot>
|
1517 |
-
</table>
|
1518 |
-
<p class="submit">
|
1519 |
-
<input type="button" class="button button-primary" id="clear-all-crons" value="<?php _e('Clear All Crons', 'qqworld_auto_save_images'); ?>" />
|
1520 |
-
</p>
|
1521 |
<table class="form-table">
|
1522 |
<tbody>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1523 |
<tr valign="top">
|
1524 |
<th scope="row"><label><?php _e('Buy', 'qqworld_auto_save_images'); ?></label></th>
|
1525 |
-
<td><a href="http://www.qqworld.org/products/qqworld-collector" target="_blank"><?php _e('QQWorld Collector', 'qqworld_auto_save_images'); ?></a></td>
|
1526 |
</tr>
|
1527 |
</tbody>
|
1528 |
</table>
|
@@ -1544,22 +924,7 @@ function save_outside_link($content, $link) {
|
|
1544 |
'qqworld_auto_save_images_maximum_picture_size',
|
1545 |
'qqworld_auto_save_images_minimum_picture_size',
|
1546 |
'qqworld-auto-save-images-exclude-domain',
|
1547 |
-
'qqworld-auto-save-images-format'
|
1548 |
-
'qqworld-auto-save-images-optimize',
|
1549 |
-
'qqworld-auto-save-images-qiniu',
|
1550 |
-
'qqworld-auto-save-images-ftp',
|
1551 |
-
'qqworld-auto-save-images-aliyun-oss',
|
1552 |
-
'qqworld-auto-save-images-upyun',
|
1553 |
-
'qqworld-auto-save-images-proxy'
|
1554 |
-
),
|
1555 |
-
'watermark' => array(
|
1556 |
-
'qqworld-auto-save-images-watermark-enabled',
|
1557 |
-
'qqworld-auto-save-images-watermark-ignore-animated-gif',
|
1558 |
-
'qqworld-auto-save-images-watermark-filter-size',
|
1559 |
-
'qqworld-auto-save-images-watermark-align-to',
|
1560 |
-
'qqworld-auto-save-images-watermark-offset',
|
1561 |
-
'qqworld-auto-save-images-watermark-opacity',
|
1562 |
-
'qqworld-auto-save-images-watermark-image'
|
1563 |
)
|
1564 |
);
|
1565 |
foreach ( $settings_fields as $field => $settings )
|
@@ -1816,7 +1181,8 @@ function save_outside_link($content, $link) {
|
|
1816 |
}
|
1817 |
$alt = isset($args['alt']) ? ' alt="'.$args['alt'].'"' : '';
|
1818 |
$title = isset($args['title']) ? ' title="'.$args['title'].'"' : '';
|
1819 |
-
$
|
|
|
1820 |
$link_to = $this->keep_outside_links=='no' ? $this->format['link-to'] : 'none';
|
1821 |
switch ($link_to) {
|
1822 |
case 'none':
|
@@ -1829,7 +1195,7 @@ function save_outside_link($content, $link) {
|
|
1829 |
break;
|
1830 |
}
|
1831 |
if ($no_match) $replace = $res['url'];
|
1832 |
-
else if ($this->auto_caption == 'yes') $replace = '[caption id="attachment_'.$attachment_id.'" align="
|
1833 |
$replace .= str_replace( '[Attachment ID]', $res['id'], $this->additional_content['after'] );
|
1834 |
|
1835 |
if ( $this->keep_outside_links=='yes' ) {
|
3 |
Plugin Name: QQWorld Auto Save Images
|
4 |
Plugin URI: https://wordpress.org/plugins/qqworld-auto-save-images/
|
5 |
Description: Automatically keep the all remote picture to the local, and automatically set featured image.
|
6 |
+
Version: 1.7.13.9
|
7 |
Author: Michael Wang
|
8 |
Author URI: http://www.qqworld.org
|
9 |
Text Domain: qqworld_auto_save_images
|
29 |
var $change_title_alt;
|
30 |
var $save_outside_links;
|
31 |
var $auto_caption;
|
32 |
+
var $format_align_to;
|
33 |
+
var $link_to;
|
34 |
var $additional_content;
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
function __construct() {
|
37 |
$this->mode = get_option('qqworld_auto_save_images_mode', 'auto');
|
38 |
$this->when = get_option('qqworld_auto_save_images_when', 'publish');
|
53 |
$this->save_outside_links = isset($this->format['save-outside-links']) ? $this->format['save-outside-links'] : 'no';
|
54 |
$this->additional_content = isset($this->format['additional-content']) ? $this->format['additional-content'] : array('before'=>'', 'after'=>'');
|
55 |
$this->auto_caption = isset($this->format['auto-caption']) ? $this->format['auto-caption'] : 'no';
|
56 |
+
$this->format_link_to = isset($this->format['link-to']) ? $this->format['link-to'] : 'none';
|
57 |
+
$this->format_align_to = isset($this->format['align-to']) ? $this->format['align-to'] : 'none';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
switch ($this->mode) {
|
60 |
case 'auto':
|
68 |
}
|
69 |
if ($this->remote_publishing) add_action('xmlrpc_publish_post', array($this, 'fetch_images') );
|
70 |
|
|
|
|
|
71 |
add_action( 'wp_ajax_get_scan_list', array($this, 'get_scan_list') );
|
72 |
add_action( 'wp_ajax_nopriv_get_scan_list', array($this, 'get_scan_list') );
|
73 |
add_action( 'wp_ajax_save_remote_images_get_categories_list', array($this, 'save_remote_images_get_categories_list') );
|
218 |
'status' => __('Status'),
|
219 |
'control' => __('Control', 'qqworld_auto_save_images'),
|
220 |
'done' => __('Done'),
|
221 |
+
'delete' => __('Delete')
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
);
|
223 |
wp_localize_script('qqworld-auto-save-images-script', 'QASI', $translation_array, '3.0.0');
|
224 |
}
|
225 |
}
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
public function get_scan_list() {
|
228 |
if ( !current_user_can( 'manage_options' ) ) return;
|
229 |
$args = array();
|
444 |
<?php settings_fields('qqworld_auto_save_images_settings'); ?>
|
445 |
<img src="<?php echo QQWORLD_AUTO_SAVE_IMAGES_URL; ?>images/banner-772x250.png" width="772" height="250" id="banner" />
|
446 |
<ul id="qqworld-auto-save-images-tabs">
|
447 |
+
<li class="current"><?php _e('General'); ?></li>
|
448 |
+
<li><?php _e('Filter', 'qqworld_auto_save_images'); ?></li>
|
449 |
+
<li><?php _e('Format', 'qqworld_auto_save_images'); ?></li>
|
|
|
450 |
<li><?php _e('Scan Posts', 'qqworld_auto_save_images'); ?></li>
|
451 |
+
<li><?php _e('Pro Edition', 'qqworld_auto_save_images'); ?></li>
|
452 |
</ul>
|
453 |
<div class="tab-content">
|
|
|
454 |
<table class="form-table">
|
455 |
<tbody>
|
456 |
<tr valign="top">
|
502 |
</label>
|
503 |
</fieldset></td>
|
504 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
</tbody>
|
506 |
</table>
|
507 |
+
<?php submit_button(); ?>
|
508 |
+
</div>
|
509 |
+
<div class="tab-content" style="display: none;">
|
510 |
<table class="form-table">
|
511 |
<tbody>
|
512 |
<tr valign="top">
|
566 |
</tr>
|
567 |
</tbody>
|
568 |
</table>
|
569 |
+
<?php submit_button(); ?>
|
570 |
+
</div>
|
571 |
+
<div class="tab-content" style="display: none;">
|
572 |
<table class="form-table">
|
573 |
<tbody>
|
574 |
<tr valign="top">
|
665 |
'post' => __('Attachment Page'),
|
666 |
'none' => __('None')
|
667 |
);
|
668 |
+
foreach ($linkTo as $value => $title) echo '<option value="'.$value.'"'.selected($value, $this->format_link_to, false).'>'.$title.'</option>';
|
669 |
+
?>
|
670 |
+
</select>
|
671 |
+
</label>
|
672 |
+
</fieldset></td>
|
673 |
+
</tr>
|
674 |
+
<tr valign="top">
|
675 |
+
<th scope="row"><label for="format-align-to"><?php _e('Align To', 'qqworld_auto_save_images'); ?></label></th>
|
676 |
+
<td><fieldset>
|
677 |
+
<legend class="screen-reader-text"><span><?php _e('Align To', 'qqworld_auto_save_images'); ?></span></legend>
|
678 |
+
<label>
|
679 |
+
<select name="qqworld-auto-save-images-format[align-to]" id="format-align-to">
|
680 |
+
<?php
|
681 |
+
$linkTo = array(
|
682 |
+
'left' => __('Left'),
|
683 |
+
'center' => __('Center'),
|
684 |
+
'right' => __('Right'),
|
685 |
+
'none' => __('None')
|
686 |
+
);
|
687 |
+
foreach ($linkTo as $value => $title) echo '<option value="'.$value.'"'.selected($value, $this->format_align_to, false).'>'.$title.'</option>';
|
688 |
?>
|
689 |
</select>
|
690 |
</label>
|
714 |
<?php do_action('qqworld-auto-save-images-general-options-form'); ?>
|
715 |
<?php submit_button(); ?>
|
716 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
717 |
</form>
|
718 |
<form action="" method="post" id="scan">
|
719 |
<div class="tab-content hidden">
|
819 |
<p class="submit">
|
820 |
<input name="scan_old_posts" type="button" class="button-primary" id="scan_old_posts" value="<?php _e('Automatic', 'qqworld_auto_save_images'); ?> ⇛" /> <span class="icon help" title="<?php _e('Scan posts and keep remote images in all posts to local media library. Maybe take a long time.', 'qqworld_auto_save_images'); ?>"></span>
|
821 |
<input name="list_all_posts" type="button" class="button-primary" id="list_all_posts" value="<?php _e('Manual', 'qqworld_auto_save_images'); ?> ☰" /> <span class="icon help" title="<?php _e("The list displayed will show you which posts including remote images, then you can keep them to local manually via click \"Fetch\" button.", 'qqworld_auto_save_images'); ?>"></span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
</p>
|
823 |
</div>
|
824 |
</div>
|
826 |
<form action="" method="post" id="scan-cron">
|
827 |
<div class="tab-content hidden">
|
828 |
<div id="cron-list-container">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
829 |
<table class="form-table">
|
830 |
<tbody>
|
831 |
+
<tr valign="top" id="manual-demo">
|
832 |
+
<th scope="row"><label><?php _e('Demo of Manual Mode', 'qqworld_auto_save_images'); ?></label></th>
|
833 |
+
<td><fieldset>
|
834 |
+
<legend class="screen-reader-text"><span><?php _e('Set Featured Image', 'qqworld_auto_save_images'); ?></span></legend>
|
835 |
+
<?php _e("<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/-KImHNbPA-o\" frameborder=\"0\" allowfullscreen></iframe>", 'qqworld_auto_save_images'); ?>
|
836 |
+
</fieldset></td>
|
837 |
+
</tr>
|
838 |
+
<tr>
|
839 |
+
<th><?php _e('Comparison', 'qqworld_auto_save_images'); ?></th>
|
840 |
+
<td>
|
841 |
+
|
842 |
+
<table id="comparison-table">
|
843 |
+
<thead>
|
844 |
+
<tr>
|
845 |
+
<th><?php _e('Items', 'qqworld_auto_save_images'); ?></th>
|
846 |
+
<th class="comparison-cell"><?php _e('Pro Edition', 'qqworld_auto_save_images'); ?></th>
|
847 |
+
<th class="comparison-cell"><?php _e('Free Edition', 'qqworld_auto_save_images'); ?></th>
|
848 |
+
</tr>
|
849 |
+
</thead>
|
850 |
+
<tbody>
|
851 |
+
<tr>
|
852 |
+
<td><?php _e('New manual mode with multi-thread (Faster than automatic mode and modify Title & Alt in realtime)', 'qqworld_auto_save_images'); ?></td>
|
853 |
+
<td>√</td>
|
854 |
+
<td>╳</td>
|
855 |
+
</tr>
|
856 |
+
<tr>
|
857 |
+
</tr>
|
858 |
+
<tr>
|
859 |
+
<td><?php _e('Download Images from WeChat', 'qqworld_auto_save_images'); ?></td>
|
860 |
+
<td>√</td>
|
861 |
+
<td>╳</td>
|
862 |
+
</tr>
|
863 |
+
<tr>
|
864 |
+
<td><?php _e('Cron Scan Posts', 'qqworld_auto_save_images'); ?></td>
|
865 |
+
<td>√</td>
|
866 |
+
<td>╳</td>
|
867 |
+
</tr>
|
868 |
+
<tr>
|
869 |
+
<td><?php _e('Watermark', 'qqworld_auto_save_images'); ?></td>
|
870 |
+
<td>√</td>
|
871 |
+
<td>╳</td>
|
872 |
+
</tr>
|
873 |
+
<tr>
|
874 |
+
<td><?php _e('Images Compression (JPG Only)', 'qqworld_auto_save_images'); ?></td>
|
875 |
+
<td>√</td>
|
876 |
+
<td>╳</td>
|
877 |
+
</tr>
|
878 |
+
<tr>
|
879 |
+
<td><?php _e('Use Proxy', 'qqworld_auto_save_images'); ?></td>
|
880 |
+
<td>√</td>
|
881 |
+
<td>╳</td>
|
882 |
+
</tr>
|
883 |
+
<tr>
|
884 |
+
<td><?php _e('Smart Grabbing, Automatically detect 2 images url from href/src of remote image with outside link, and grab the bigger one.', 'qqworld_auto_save_images'); ?></td>
|
885 |
+
<td>√</td>
|
886 |
+
<td>╳</td>
|
887 |
+
</tr>
|
888 |
+
<tr>
|
889 |
+
<td><?php _e('Use Cookie-Free Domain & CDN Servive (AliYun OSS, UpYun, QiNiu)', 'qqworld_auto_save_images'); ?></td>
|
890 |
+
<td>√</td>
|
891 |
+
<td>╳</td>
|
892 |
+
</tr>
|
893 |
+
<tr>
|
894 |
+
<td><?php _e('Collect webpage manually: Easy reprint articles, and get all the images to choose from web pages.', 'qqworld_auto_save_images'); ?></td>
|
895 |
+
<td>√</td>
|
896 |
+
<td>╳</td>
|
897 |
+
</tr>
|
898 |
+
</tbody>
|
899 |
+
</table>
|
900 |
+
|
901 |
+
</td>
|
902 |
+
</tr>
|
903 |
<tr valign="top">
|
904 |
<th scope="row"><label><?php _e('Buy', 'qqworld_auto_save_images'); ?></label></th>
|
905 |
+
<td><a href="http://www.qqworld.org/products/qqworld-collector" target="_blank" class="button button-primary"><?php _e('QQWorld Collector', 'qqworld_auto_save_images'); ?></a></td>
|
906 |
</tr>
|
907 |
</tbody>
|
908 |
</table>
|
924 |
'qqworld_auto_save_images_maximum_picture_size',
|
925 |
'qqworld_auto_save_images_minimum_picture_size',
|
926 |
'qqworld-auto-save-images-exclude-domain',
|
927 |
+
'qqworld-auto-save-images-format'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
)
|
929 |
);
|
930 |
foreach ( $settings_fields as $field => $settings )
|
1181 |
}
|
1182 |
$alt = isset($args['alt']) ? ' alt="'.$args['alt'].'"' : '';
|
1183 |
$title = isset($args['title']) ? ' title="'.$args['title'].'"' : '';
|
1184 |
+
$align = $this->auto_caption == 'yes' ? '' : 'align'.$this->format_align_to.' ';
|
1185 |
+
$img = '<img class="'.$align.'size-'.$size.' wp-image-'.$attachment_id.'" src="'.$src.'" width="'.$width.'" height="'.$height.'"'.$alt.$title.' />';
|
1186 |
$link_to = $this->keep_outside_links=='no' ? $this->format['link-to'] : 'none';
|
1187 |
switch ($link_to) {
|
1188 |
case 'none':
|
1195 |
break;
|
1196 |
}
|
1197 |
if ($no_match) $replace = $res['url'];
|
1198 |
+
else if ($this->auto_caption == 'yes') $replace = '[caption id="attachment_'.$attachment_id.'" align="align'.$this->format_align_to.'" width="'.$width.'"]' . $replace . ' ' . (isset($args['alt']) ? $args['alt'] : '') . '[/caption]';
|
1199 |
$replace .= str_replace( '[Attachment ID]', $res['id'], $this->additional_content['after'] );
|
1200 |
|
1201 |
if ( $this->keep_outside_links=='yes' ) {
|