Photo Gallery by Supsystic - Version 1.12.1

Version Description

Download this release

Release Info

Developer supsystic.com
Plugin Icon 128x128 Photo Gallery by Supsystic
Version 1.12.1
Comparing to
See all releases

Code changes from version 1.11.3 to 1.12.1

app/assets/js/buttons.js CHANGED
@@ -1,103 +1,124 @@
1
  (function($) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- var dialogClass = '.gallery-select-dialog',
4
- initDialog = function() {
5
- var $container = $('body');
 
 
 
 
 
 
 
 
 
 
 
6
 
7
- $container.append(
8
- '<div class="gallery-select-dialog" hidden>' +
9
- '<h3>Select gallery to insert</h3>' +
10
- '<select></select>' +
11
- '<button class="button button-primary">Select</button>' +
12
- '</div>');
 
 
 
13
 
14
- $.post(wp.ajax.settings.url, {
15
- action: 'grid-gallery',
16
- _wpnonce: SupsysticGallery.nonce,
17
- route: {
18
- module: 'galleries',
19
- action: 'list'
20
- }
21
- }, function(response) {
22
- $.each(response.galleries, function(index, value) {
23
- $container.find(dialogClass + ' select').append(
24
- '<option value="' + value.id + '">' + value.title + '</option>'
25
- );
26
- });
27
- }
28
- );
29
- },
30
- dialogIsInit = false;
31
 
32
- tinymce.create('tinymce.plugins.addShortcode', {
33
- /**
34
- * Initializes the plugin, this will be executed after the plugin has been created.
35
- * This call is done before the editor instance has finished it's initialization so use the onInit event
36
- * of the editor instance to intercept that event.
37
- *
38
- * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
39
- * @param {string} url Absolute URL to where the plugin is located.
40
- */
41
- init : function(ed, url) {
42
- ed.addButton('addShortcode', {
43
- title : 'Add Gallery',
44
- cmd : 'addShortcode',
45
- image : url + '/img/logo_gallery.png'
46
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
- ed.addCommand('addShortcode', function() {
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
- if (!dialogIsInit) {
51
- initDialog();
52
- dialogIsInit = true;
53
- }
 
 
 
 
 
 
 
 
 
 
 
54
 
55
- var $dialog = $(dialogClass).bPopup({
56
- onClose: function() {
57
- $(dialogClass + ' button').off('click');
58
- }
59
- }, function() {
60
- $(dialogClass + ' button').on('click', function() {
61
- var selected = $(dialogClass).find('select').val(),
62
- text = '[supsystic-gallery id=' + selected + ' position=center]';
63
- ed.execCommand('mceInsertContent', 0, text);
64
- $dialog.close();
65
- });
66
- });
67
- });
68
- },
69
-
70
- /**
71
- * Creates control instances based in the incomming name. This method is normally not
72
- * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
73
- * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
74
- * method can be used to create those.
75
- *
76
- * @param {String} n Name of the control to create.
77
- * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
78
- * @return {tinymce.ui.Control} New control instance or null if no control was created.
79
- */
80
- createControl : function(n, cm) {
81
- return null;
82
- },
83
-
84
- /**
85
- * Returns information about the plugin as a name/value array.
86
- * The current keys are longname, author, authorurl, infourl and version.
87
- *
88
- * @return {Object} Name/value array containing information about the plugin.
89
- */
90
- getInfo : function() {
91
- return {
92
- longname : 'Gallery by Supsystic buttons',
93
- author : 'Dmitriy Smus',
94
- infourl : 'http://supsystic.com',
95
- version : "0.1"
96
- };
97
- }
98
- });
99
-
100
- // Register plugin
101
- tinymce.PluginManager.add( 'addShortcode', tinymce.plugins.addShortcode );
102
 
103
  })(jQuery);
1
  (function($) {
2
+ var btnCreateObj = {
3
+ container: 'body',
4
+ dialogClass: '.gallery-select-dialog',
5
+ dataList: null,
6
+ initDialog: function() {
7
+ $(this.container).append(
8
+ '<div class="gallery-select-dialog" hidden>' +
9
+ '<h1 style="text-align: center;">Select Gallery</h1>' +
10
+ '<select></select>' +
11
+ '<button class="button button-primary">Insert</button>' +
12
+ '</div>');
13
+ btnCreateObj.setSelectboxOpts();
14
+ },
15
+ setSelectboxOpts: function() {
16
+ var self = this,
17
+ $container = $(self.container),
18
+ select = $container.find(self.dialogClass + ' select');
19
 
20
+ if(self.dataList === null) {
21
+ self.setDataList();
22
+ } else if(self.dataList.length) {
23
+ $.each(self.dataList, function(index, value) {
24
+ select.append('<option value="' + value.id + '">' + value.title + '</option>');
25
+ });
26
+ } else {
27
+ select.append('<option value="0">No galleries for now...</option>');
28
+ select.attr('disabled', 'disabled');
29
+ }
30
+ },
31
+ setDataList: function() {
32
+ var self = this,
33
+ url = wp.ajax.settings.url;
34
 
35
+ $.post(url, {
36
+ action: 'grid-gallery',
37
+ _wpnonce: SupsysticGallery.nonce,
38
+ route: {
39
+ module: 'galleries',
40
+ action: 'list'
41
+ }
42
+ }, function(response) {
43
+ self.dataList = [];
44
 
45
+ if(response.galleries.length) {
46
+ $.each(response.galleries, function(index, value) {
47
+ self.dataList.push({id: value.id, title: value.title});
48
+ });
49
+ }
50
+ self.setSelectboxOpts();
51
+ }
52
+ );
53
+ }
54
+ },
55
+ dialogIsInit = false;
 
 
 
 
 
 
56
 
57
+ tinymce.create('tinymce.plugins.addShortcode', {
58
+ /**
59
+ * Initializes the plugin, this will be executed after the plugin has been created.
60
+ * This call is done before the editor instance has finished it's initialization so use the onInit event
61
+ * of the editor instance to intercept that event.
62
+ *
63
+ * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
64
+ * @param {string} url Absolute URL to where the plugin is located.
65
+ */
66
+ init : function(ed, url) {
67
+ ed.addButton('addShortcode', {
68
+ title : 'Add Gallery',
69
+ cmd : 'addShortcode',
70
+ image : url + '/img/logo_gallery.png'
71
+ });
72
+ ed.addCommand('addShortcode', function() {
73
+ if (!dialogIsInit) {
74
+ btnCreateObj.initDialog();
75
+ dialogIsInit = true;
76
+ }
77
+ var $dialog = $(btnCreateObj.dialogClass).bPopup({
78
+ onClose: function() {
79
+ $(btnCreateObj.dialogClass + ' button').off('click');
80
+ }
81
+ }, function() {
82
+ $(btnCreateObj.dialogClass + ' button').on('click', function() {
83
+ var selected = $(btnCreateObj.dialogClass).find('select').val();
84
+ ed.execCommand('mceInsertContent', 0, '[supsystic-gallery id=' + selected + ' position=center]');
85
+ $dialog.close();
86
+ });
87
+ });
88
+ });
89
+ },
90
 
91
+ /**
92
+ * Creates control instances based in the incomming name. This method is normally not
93
+ * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
94
+ * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
95
+ * method can be used to create those.
96
+ *
97
+ * @param {String} n Name of the control to create.
98
+ * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
99
+ * @return {tinymce.ui.Control} New control instance or null if no control was created.
100
+ */
101
+ createControl : function(n, cm) {
102
+ return null;
103
+ },
104
 
105
+ /**
106
+ * Returns information about the plugin as a name/value array.
107
+ * The current keys are longname, author, authorurl, infourl and version.
108
+ *
109
+ * @return {Object} Name/value array containing information about the plugin.
110
+ */
111
+ getInfo : function() {
112
+ return {
113
+ longname : 'Gallery by Supsystic buttons',
114
+ author : 'Dmitriy Smus',
115
+ infourl : 'http://supsystic.com',
116
+ version : "0.1"
117
+ };
118
+ }
119
+ });
120
 
121
+ // Register plugin
122
+ tinymce.PluginManager.add( 'addShortcode', tinymce.plugins.addShortcode );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
 
124
  })(jQuery);
app/assets/js/jquery.lazyload.js CHANGED
@@ -115,6 +115,8 @@
115
  $self[settings.effect](settings.effect_speed);
116
 
117
  self.loaded = true;
 
 
118
 
119
  /* Remove image from array so it is not looped next time. */
120
  var temp = $.grep(elements, function(element) {
115
  $self[settings.effect](settings.effect_speed);
116
 
117
  self.loaded = true;
118
+ /* for user can reinit LazyLoad */
119
+ $self.removeClass('ggLazyImg');
120
 
121
  /* Remove image from array so it is not looped next time. */
122
  var temp = $.grep(elements, function(element) {
app/assets/js/jquery.lazyload.min.js CHANGED
@@ -1,2 +1 @@
1
- /*! Lazy Load 1.9.7 - MIT license - Copyright 2010-2015 Mika Tuupola */
2
- !function(a,b,c,d){var e=a(b);a.fn.ggLazyLoad=function(f){function g(){var b=0;i.each(function(){var c=a(this);if(!j.skip_invisible||c.is(":visible"))if(a.abovethetop(this,j)||a.leftofbegin(this,j));else if(a.belowthefold(this,j)||a.rightoffold(this,j)){if(++b>j.failure_limit)return!1}else c.trigger("appear"),b=0})}var h,i=this,j={threshold:0,failure_limit:0,event:"scroll",effect:"show",container:b,data_attribute:"original",skip_invisible:!1,appear:null,load:null,placeholder:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC"};return f&&(d!==f.failurelimit&&(f.failure_limit=f.failurelimit,delete f.failurelimit),d!==f.effectspeed&&(f.effect_speed=f.effectspeed,delete f.effectspeed),a.extend(j,f)),h=j.container===d||j.container===b?e:a(j.container),0===j.event.indexOf("scroll")&&h.bind(j.event,function(){return g()}),this.each(function(){var b=this,c=a(b);b.loaded=!1,(c.attr("src")===d||c.attr("src")===!1)&&c.is("img")&&c.attr("src",j.placeholder),c.one("appear",function(){if(!this.loaded){if(j.appear){var d=i.length;j.appear.call(b,d,j)}a("<img />").bind("load",function(){var d=c.attr("data-"+j.data_attribute);c.hide(),c.is("img")?c.attr("src",d):c.css("background-image","url('"+d+"')"),c[j.effect](j.effect_speed),b.loaded=!0;var e=a.grep(i,function(a){return!a.loaded});if(i=a(e),j.load){var f=i.length;j.load.call(b,f,j)}}).attr("src",c.attr("data-"+j.data_attribute))}}),0!==j.event.indexOf("scroll")&&c.bind(j.event,function(){b.loaded||c.trigger("appear")})}),e.bind("resize",function(){g()}),/(?:iphone|ipod|ipad).*os 5/gi.test(navigator.appVersion)&&e.bind("pageshow",function(b){b.originalEvent&&b.originalEvent.persisted&&i.each(function(){a(this).trigger("appear")})}),a(c).ready(function(){g()}),this},a.belowthefold=function(c,f){var g;return g=f.container===d||f.container===b?(b.innerHeight?b.innerHeight:e.height())+e.scrollTop():a(f.container).offset().top+a(f.container).height(),g<=a(c).offset().top-f.threshold},a.rightoffold=function(c,f){var g;return g=f.container===d||f.container===b?e.width()+e.scrollLeft():a(f.container).offset().left+a(f.container).width(),g<=a(c).offset().left-f.threshold},a.abovethetop=function(c,f){var g;return g=f.container===d||f.container===b?e.scrollTop():a(f.container).offset().top,g>=a(c).offset().top+f.threshold+a(c).height()},a.leftofbegin=function(c,f){var g;return g=f.container===d||f.container===b?e.scrollLeft():a(f.container).offset().left,g>=a(c).offset().left+f.threshold+a(c).width()},a.inviewport=function(b,c){return!(a.rightoffold(b,c)||a.leftofbegin(b,c)||a.belowthefold(b,c)||a.abovethetop(b,c))},a.extend(a.expr[":"],{"below-the-fold":function(b){return a.belowthefold(b,{threshold:0})},"above-the-top":function(b){return!a.belowthefold(b,{threshold:0})},"right-of-screen":function(b){return a.rightoffold(b,{threshold:0})},"left-of-screen":function(b){return!a.rightoffold(b,{threshold:0})},"in-viewport":function(b){return a.inviewport(b,{threshold:0})},"above-the-fold":function(b){return!a.belowthefold(b,{threshold:0})},"right-of-fold":function(b){return a.rightoffold(b,{threshold:0})},"left-of-fold":function(b){return!a.rightoffold(b,{threshold:0})}})}(jQuery,window,document);
1
+ !function(e,t,i,o){var n=e(t);e.fn.ggLazyLoad=function(r){var f,l=this,a={threshold:0,failure_limit:0,event:"scroll",effect:"show",container:t,data_attribute:"original",skip_invisible:!1,appear:null,load:null,placeholder:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC"};function h(){var t=0;l.each(function(){var i=e(this);if(!a.skip_invisible||i.is(":visible"))if(e.abovethetop(this,a)||e.leftofbegin(this,a));else if(e.belowthefold(this,a)||e.rightoffold(this,a)){if(++t>a.failure_limit)return!1}else i.trigger("appear"),t=0})}return r&&(o!==r.failurelimit&&(r.failure_limit=r.failurelimit,delete r.failurelimit),o!==r.effectspeed&&(r.effect_speed=r.effectspeed,delete r.effectspeed),e.extend(a,r)),f=a.container===o||a.container===t?n:e(a.container),0===a.event.indexOf("scroll")&&f.bind(a.event,function(){return h()}),this.each(function(){var t=this,i=e(t);t.loaded=!1,i.attr("src")!==o&&!1!==i.attr("src")||i.is("img")&&i.attr("src",a.placeholder),i.one("appear",function(){if(!this.loaded){if(a.appear){var o=l.length;a.appear.call(t,o,a)}e("<img />").bind("load",function(){var o=i.attr("data-"+a.data_attribute);i.hide(),i.is("img")?i.attr("src",o):i.css("background-image","url('"+o+"')"),i[a.effect](a.effect_speed),t.loaded=!0,i.removeClass("ggLazyImg");var n=e.grep(l,function(e){return!e.loaded});if(l=e(n),a.load){var r=l.length;a.load.call(t,r,a)}}).attr("src",i.attr("data-"+a.data_attribute))}}),0!==a.event.indexOf("scroll")&&i.bind(a.event,function(){t.loaded||i.trigger("appear")})}),n.bind("resize",function(){h()}),/(?:iphone|ipod|ipad).*os 5/gi.test(navigator.appVersion)&&n.bind("pageshow",function(t){t.originalEvent&&t.originalEvent.persisted&&l.each(function(){e(this).trigger("appear")})}),e(i).ready(function(){h()}),this},e.belowthefold=function(i,r){return(r.container===o||r.container===t?(t.innerHeight?t.innerHeight:n.height())+n.scrollTop():e(r.container).offset().top+e(r.container).height())<=e(i).offset().top-r.threshold},e.rightoffold=function(i,r){return(r.container===o||r.container===t?n.width()+n.scrollLeft():e(r.container).offset().left+e(r.container).width())<=e(i).offset().left-r.threshold},e.abovethetop=function(i,r){return(r.container===o||r.container===t?n.scrollTop():e(r.container).offset().top)>=e(i).offset().top+r.threshold+e(i).height()},e.leftofbegin=function(i,r){return(r.container===o||r.container===t?n.scrollLeft():e(r.container).offset().left)>=e(i).offset().left+r.threshold+e(i).width()},e.inviewport=function(t,i){return!(e.rightoffold(t,i)||e.leftofbegin(t,i)||e.belowthefold(t,i)||e.abovethetop(t,i))},e.extend(e.expr[":"],{"below-the-fold":function(t){return e.belowthefold(t,{threshold:0})},"above-the-top":function(t){return!e.belowthefold(t,{threshold:0})},"right-of-screen":function(t){return e.rightoffold(t,{threshold:0})},"left-of-screen":function(t){return!e.rightoffold(t,{threshold:0})},"in-viewport":function(t){return e.inviewport(t,{threshold:0})},"above-the-fold":function(t){return!e.belowthefold(t,{threshold:0})},"right-of-fold":function(t){return e.rightoffold(t,{threshold:0})},"left-of-fold":function(t){return!e.rightoffold(t,{threshold:0})}})}(jQuery,window,document);
 
app/langs/sgg-zh_CN.mo CHANGED
Binary file
app/langs/sgg-zh_CN.po CHANGED
@@ -9,1862 +9,2518 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.1\n"
13
 
14
- msgid "An error has occurred"
15
- msgstr "发生错误"
16
-
17
- msgid "Overview"
18
- msgstr "概述"
19
 
20
- msgid "New Gallery"
21
- msgstr "新相册"
22
 
23
- msgid "Galleries"
24
- msgstr "相册"
25
 
26
- msgid "Image Optimize"
27
- msgstr ""
28
 
29
- msgid "Settings"
30
- msgstr "设置"
31
 
32
- msgid "License"
33
- msgstr "许可证"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
- msgid "Featured Plugins"
 
 
36
  msgstr ""
 
37
 
38
- msgid "Images"
39
- msgstr "图片"
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
- msgid "Instagram"
42
- msgstr "Instagram"
 
 
 
 
 
 
 
 
 
43
 
44
- msgid "Flickr"
45
- msgstr "Flickr"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
- msgid "Tumblr"
48
- msgstr "Tumblr"
 
49
 
50
- msgid "Facebook"
51
- msgstr "Facebook"
 
 
 
52
 
53
- msgid "Get PRO"
54
- msgstr "获取PRO"
 
 
55
 
56
- msgid "Loading"
57
- msgstr "载入中"
58
 
59
- msgid "Authorization code is not specified."
60
- msgstr "不指定授权码。"
61
 
62
- msgid "Gallery by Supsystic"
63
- msgstr "Gallery by Supsystic"
64
 
65
- msgid "Import images"
66
- msgstr "导入图像"
67
 
68
- msgid "Facebook authorization"
69
- msgstr "Facebook 授权"
70
 
71
- msgid "Upload your images from the Facebook Media Library"
72
- msgstr "上传您的图片从 Facebook 媒体库"
73
 
74
- msgid "Login with Facebook"
75
- msgstr "用Facebook账号登入"
76
 
77
- msgid "Return to the gallery"
78
- msgstr "返回相册"
79
 
80
- msgid "Upload new images"
81
- msgstr "上传新图片"
82
 
83
- msgid "Logout"
84
- msgstr "退出"
85
 
86
- msgid "Select/unselect all photos"
87
- msgstr "选择/取消选择所有照片"
88
 
89
- msgid ""
90
- "Here you can specify your business pages and images will load from those pages. "
91
- "You can set several pages, just separate ID of pages by \",\". To get the ID of "
92
- "your page you need to switch to the wanted page, then click on \"About\" link "
93
- "right below page cover, and at the bottom of \"About\" page you will find "
94
- "Facebook Page ID."
95
- msgstr ""
96
- "您可以在这里指定商业页面并且从这些页面里加载图片。您可以设置多个页面,只需要使"
97
- "用“,”隔开ID即可。您需要开关目标页面以获取页面ID,然后点击页面封面右下角的“关"
98
- "于”链接,并且页面上的“关于”按钮您可以找到Facebook页面ID。"
99
 
100
- msgid "Save"
101
- msgstr "保存"
102
 
103
- msgid "Empty user data."
104
- msgstr "空的用户数据。"
105
 
106
- msgid "Flickr authorization"
107
- msgstr "Flickr 授权"
108
 
109
- msgid "Upload your images from the Flickr Media Library"
110
- msgstr "上传您的图片从 Flickr 媒体库"
111
 
112
- msgid "Upload from Flickr"
113
- msgstr "从 Flickr 上传"
114
 
115
- msgid "Images not in albums"
116
- msgstr "图片不在相册中"
117
 
118
- msgid "Albums"
119
- msgstr "专辑"
120
 
121
- msgid "Fullscreen"
122
- msgstr "全屏显示"
123
 
124
- msgid "Load More Button"
125
- msgstr "加载更多按钮"
126
 
127
- msgid "Enable"
128
- msgstr "启用"
129
 
130
- msgid "Disable"
131
- msgstr "禁用"
132
 
133
- msgid "Load with scroll"
134
- msgstr "加载更多滚动"
135
 
136
- msgid "No"
137
- msgstr "No"
138
 
139
- msgid "Yes"
140
- msgstr "Yes"
141
 
142
- msgid "Load more button text"
143
- msgstr "载入更多按鈕文字。"
144
 
145
- msgid "Loading text"
146
- msgstr "加载文本"
147
 
148
- msgid "Loading..."
149
- msgstr "正在加载..."
150
 
151
- msgid "Images amount"
152
- msgstr "图像数量"
153
 
154
- msgid "Load more amount"
155
- msgstr "加载更多"
156
 
157
- msgid "Custom Buttons"
158
- msgstr "自定义按钮"
159
 
160
- msgid "Gallery Loader"
161
- msgstr "相册加载"
 
 
 
 
162
 
163
- msgid "Background color"
164
- msgstr "背景颜色"
165
 
166
- msgid "Choose Icon"
167
- msgstr "选择图标"
168
 
169
- msgid "Open by link in popup"
170
- msgstr "在新的窗口打开链接"
171
 
172
- msgid "Gallery link"
173
- msgstr "相册链接"
174
 
175
- msgid "Disable right click"
176
- msgstr "禁用右键"
177
 
178
- msgid "Video size"
179
- msgstr "视频大小"
180
 
181
- msgid "Autoplay video"
182
- msgstr "自动播放视频"
183
 
184
- msgid "When video ends"
185
- msgstr "视频结束时"
186
 
187
- msgid "Do nothing"
188
- msgstr "什么都不做"
189
 
190
- msgid "Open next slide"
191
- msgstr "下一张幻灯片"
192
 
193
- msgid "Close popup"
194
- msgstr "关闭弹窗"
195
 
196
- msgid "Posts layout"
197
- msgstr "帖子布局"
198
 
199
- msgid "Posts layout style"
200
- msgstr "文章布局方式"
201
 
202
- msgid "Auto posts"
203
- msgstr "自动滚动文章"
204
 
205
- msgid "Number of posts"
206
- msgstr "文章数"
207
 
208
- msgid "Auto Posts Categories"
209
- msgstr "自动帖子类别"
210
 
211
- msgid "Select categories"
212
- msgstr "选择类别"
 
 
213
 
214
- msgid "All"
215
- msgstr "全部"
216
 
217
- msgid "Posts"
218
- msgstr "文章"
219
 
220
- msgid "Pages"
221
- msgstr "页面"
222
 
223
- msgid "Show author"
224
- msgstr "显示作者"
225
 
226
- msgid "Show date"
227
- msgstr "显示日期"
228
 
229
- msgid "Show contents"
230
- msgstr "显示内容"
231
 
232
- msgid "Show categories"
233
- msgstr "显示类别"
234
 
235
- msgid "Hide \"All\" category"
236
- msgstr "隐藏\"All\"类别"
237
 
238
- msgid "Enable shuffling animation"
239
- msgstr "启用随机播放动画"
240
 
241
- msgid "Animation duration"
242
- msgstr "动画时间"
 
 
 
 
243
 
244
- msgid "Position"
245
- msgstr "位置"
 
 
 
 
 
246
 
247
- msgid "Over the gallery"
248
- msgstr "选择画廊"
249
 
250
- msgid "Under the gallery"
251
- msgstr "下库"
252
 
253
- msgid "Align"
254
- msgstr "对齐"
255
 
256
- msgid "Left"
257
- msgstr ""
258
 
259
- msgid "Center"
260
- msgstr "居中"
261
 
262
- msgid "Right"
263
- msgstr ""
264
 
265
- msgid "Presets"
266
- msgstr "预设"
267
 
268
- msgid "Choose preset"
269
- msgstr "选择一个预置"
270
 
271
- msgid "Preset Editor"
272
- msgstr "预设的编辑"
273
 
274
- msgid "Categories order"
275
- msgstr "分类顺序"
276
 
277
- msgid "Enable pagination"
278
- msgstr "启用分页"
279
 
280
- msgid "Pagination"
281
- msgstr "分页"
282
 
283
- msgid "Images per page"
284
- msgstr "每页图片数"
 
 
 
 
 
 
285
 
286
  msgid "Buttons position"
287
  msgstr "按钮位置"
288
 
289
- msgid "Top"
290
- msgstr "顶部"
291
 
292
- msgid "Bottom"
293
- msgstr "底部"
294
 
295
- msgid "Container background"
296
- msgstr "容器背景"
297
 
298
- msgid "Hide container background."
299
- msgstr "隐藏容器背景。"
300
 
301
- msgid "Text background"
302
- msgstr "文本背景"
303
 
304
- msgid "Hide text background."
305
- msgstr "隐藏文本背景。"
306
 
307
- msgid "Text color"
308
- msgstr "文字颜色"
309
 
310
- msgid "Use color, based on my theme."
311
- msgstr "使用颜色,基于我的主题。"
312
 
313
- msgid "Vertical padding"
314
- msgstr "垂直填充"
315
 
316
- msgid "Horizontal padding"
317
- msgstr "水平填充"
318
 
319
- msgid "Font weight"
320
- msgstr "字体式样"
321
 
322
- msgid "Font size"
323
- msgstr "字体大小"
324
 
325
- msgid "Border width"
326
- msgstr "边框宽度"
327
 
328
- msgid "Border type"
329
- msgstr "边框类型"
330
 
331
- msgid "Border color"
332
- msgstr "边框颜色"
333
 
334
- msgid "Border radius"
335
- msgstr "边框半径"
336
 
337
- msgid "Buttons preset editor for Paginations, Categories and Load More buttons"
338
- msgstr "Paginations、 类别和负载更多按钮按钮预设的编辑器"
339
 
340
- msgid "Custom class"
341
- msgstr "自定义class"
342
 
343
- msgid "Font family"
344
- msgstr "字体库"
345
 
346
- msgid "Border style"
347
- msgstr "边框样式"
348
 
349
- msgid "Choose icon"
350
- msgstr "选择图标"
351
 
352
- msgid "Page "
353
- msgstr "页面"
354
 
355
- msgid "Activate License"
356
- msgstr "激活许可证"
357
 
358
- msgid "Renew License"
359
- msgstr "续订许可"
360
 
361
- msgid "Slider by Supsystic"
362
- msgstr "Slider by Supsystic"
363
 
364
- msgid ""
365
- "Congratulations! You have successfully installed and activated PRO version of ' "
366
- "~ environment.getMenu().getMenuTitle() ~ ' plugin."
367
- msgstr ""
368
- "祝贺你 !您已成功安装并激活 PRO 版本的 ‘~ environment.getMenu().getMenuTitle() "
369
- "~’ 插件。"
370
 
371
- msgid "Your premium support is expired in ' ~ days ~ ' days"
372
- msgstr "您享受技术支持还剩 ‘ ~ days ~ ‘ 天"
373
 
374
- msgid "You will not be able to update your pro version with expired license"
375
- msgstr "你不能用来更新您的专业版已过期的许可证"
376
 
377
- msgid "Activate"
378
- msgstr "激活"
379
 
380
- msgid "Authorization oauth_verifier is not specified."
381
- msgstr "未指定授权 oauth_verifier。"
382
 
383
- msgid "Tumblr authorization"
384
- msgstr "Tumblr 授权"
385
 
386
- msgid "Upload your images from the Tumblr Media Library"
387
- msgstr "上传您的图片从 Tumblr 媒体库"
388
 
389
- msgid "Upload from Tumblr"
390
- msgstr "从Tumblr上传"
391
 
392
- msgid "FTP"
393
- msgstr "FTP"
394
 
395
- msgid "Upload your images from the FTP Server"
396
- msgstr "从FTP上传您的图片"
397
 
398
- msgid "Enter images folder name, e.g. my-images"
399
- msgstr "输入图像文件夹名称,例如我图像"
400
 
401
- msgid "Upload"
402
- msgstr ""
403
 
404
- msgid "Note: images folder must be in wp-content/uploads/directory"
405
- msgstr "请确保/ wp-content/uploads目录有写权限来使用此功能。"
406
 
407
- msgid "Host"
408
- msgstr "主机名"
409
 
410
- msgid "Username"
411
- msgstr "用户名"
 
 
 
 
 
 
 
 
412
 
413
- msgid "Password"
414
- msgstr "密码"
415
 
416
- msgid "Port"
417
- msgstr "端口"
418
 
419
- msgid "Enter the full path to images folder"
420
- msgstr "输入图像文件夹的完整路径"
421
 
422
- msgid "Note: you need to specify the full path to images folder"
423
- msgstr "注意︰ 您需要指定图像的文件夹的完整路径"
424
 
425
- msgid "Please fill all fields"
426
- msgstr "请填写所有字段"
427
 
428
- msgid "Popup Linked Image Text"
 
 
 
 
 
 
 
429
  msgstr ""
 
 
430
 
431
- msgid "Title"
432
- msgstr "标题"
433
 
434
- msgid "Alt text"
435
- msgstr "替代文本"
436
 
437
- msgid "Description"
438
- msgstr "描述"
439
 
440
- msgid "Disable source image for Linked Images"
441
- msgstr ""
442
 
443
- msgid "Disable title optimize"
444
- msgstr ""
 
 
445
 
446
- msgid "Show Watermark"
447
- msgstr ""
448
 
449
- msgid "Show Watermark for"
450
- msgstr ""
451
 
452
- msgid "Thumbnails"
453
- msgstr ""
454
 
455
- msgid "Popup Images"
 
 
456
  msgstr ""
 
457
 
458
- msgid "Thumbnail and Popup Images"
459
- msgstr ""
460
 
461
- msgid "Apply to all images"
462
- msgstr ""
463
 
464
- msgid "Save source images"
 
 
 
465
  msgstr ""
 
 
466
 
467
- msgid "Type"
468
- msgstr ""
469
 
470
- msgid "Image"
471
- msgstr "图像"
472
 
473
- msgid "Text"
474
- msgstr ""
475
 
476
- msgid "Watermark Image"
477
- msgstr ""
478
 
479
- msgid "Margin"
480
- msgstr ""
481
 
482
- msgid "Left Top"
483
- msgstr ""
484
 
485
- msgid "Left Center"
486
- msgstr ""
487
 
488
- msgid "Left Bottom"
489
- msgstr ""
490
 
491
- msgid "Top Center"
492
- msgstr ""
493
 
494
- msgid "Center Center"
495
- msgstr ""
496
 
497
- msgid "Bottom Center"
498
- msgstr ""
499
 
500
- msgid "Right Top"
501
- msgstr ""
502
 
503
- msgid "Right Center"
504
- msgstr ""
505
 
506
- msgid "Right Bottom"
507
- msgstr ""
508
 
509
- msgid "Transparency"
510
- msgstr "透明度"
511
 
512
  msgid ""
513
- "To use this option, you must install php-extension GD. The list of functions "
514
- "that are used in the plugin can be seen in readme.txt file."
515
  msgstr ""
 
516
 
517
- msgid "Image on hover"
518
- msgstr ""
519
 
520
- msgid "Select image on hover"
521
- msgstr ""
522
 
523
- msgid "Upload Image"
524
- msgstr ""
525
 
526
- msgid "Google Drive authorization"
527
- msgstr "Google Drive 授权"
528
 
529
- msgid "Upload your images from Google Drive CDN"
530
- msgstr "从Google Drive CDN上传图片"
531
 
532
- msgid "Upload from Google Drive"
533
- msgstr "从Google Drive上传"
534
 
535
- msgid "Google Drive"
536
- msgstr "Google Drive"
537
 
538
- msgid "Popup Plugin"
539
- msgstr ""
540
 
541
  msgid ""
542
- "The Best WordPress PopUp option plugin to help you gain more subscribers, "
543
- "social followers or advertisement. Responsive pop-ups with friendly options."
544
- msgstr ""
545
-
546
- msgid "Slider Plugin"
547
  msgstr ""
 
 
548
 
549
- msgid ""
550
- "Creating slideshows with Slider plugin is fast and easy. Simply select images "
551
- "from your WordPress Media Library, Flickr, Instagram or Facebook, set slide "
552
- "captions, links and SEO fields all from one page."
553
- msgstr ""
554
 
555
- msgid "Photo Gallery Plugin"
556
- msgstr ""
557
 
558
- msgid ""
559
- "Photo Gallery Plugin with a great number of layouts will help you to create "
560
- "quality respectable portfolios and image galleries."
561
- msgstr ""
562
 
563
- msgid "Data Tables Generator"
564
- msgstr ""
565
 
566
  msgid ""
567
- "Create and manage beautiful data tables with custom design. No HTML knowledge "
568
- "is required."
569
- msgstr ""
570
 
571
- msgid "Social Share Buttons"
572
- msgstr ""
573
 
574
- msgid ""
575
- "Social share buttons to increase social traffic and popularity. Social sharing "
576
- "to Facebook, Twitter and other social networks."
577
- msgstr ""
578
 
579
- msgid "Live Chat Plugin"
580
- msgstr ""
581
 
582
- msgid ""
583
- "Be closer to your visitors and customers with Live Chat Support by Supsystic. "
584
- "Help you visitors, support them in real-time with exceptional Live Chat "
585
- "WordPress plugin by Supsystic."
586
- msgstr ""
587
 
588
- msgid "Pricing Table"
589
- msgstr ""
590
 
591
- msgid ""
592
- "It’s never been so easy to create and manage pricing and comparison tables with "
593
- "table builder. Any element of the table can be customise with mouse click."
594
- msgstr ""
595
 
596
- msgid "Coming Soon Plugin"
597
- msgstr ""
598
 
599
- msgid ""
600
- "Coming soon page with drag-and-drop builder or under construction | maintenance "
601
- "mode to notify visitors and collects emails."
602
- msgstr ""
603
 
604
- msgid "Backup Plugin"
605
- msgstr ""
606
 
607
- msgid ""
608
- "Backup and Restore WordPress Plugin by Supsystic provides quick and unhitched "
609
- "DropBox, FTP, Amazon S3, Google Drive backup for your WordPress website."
610
- msgstr ""
611
 
612
- msgid "Google Maps Easy"
613
- msgstr ""
614
 
615
- msgid ""
616
- "Display custom Google Maps. Set markers and locations with text, images, "
617
- "categories and links. Customize google map in a simple and intuitive way."
618
- msgstr ""
619
 
620
- msgid "Digital Publication Plugin"
621
- msgstr ""
622
 
623
- msgid ""
624
- "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, "
625
- "Portfolios. Convert images, posts, PDF to the page flip book."
626
- msgstr ""
627
 
628
- msgid "Contact Form Plugin"
629
- msgstr ""
630
 
631
- msgid ""
632
- "One of the best plugin for creating Contact Forms on your WordPress site. "
633
- "Changeable fonts, backgrounds, an option for adding fields etc."
634
- msgstr ""
635
 
636
- msgid "Newsletter Plugin"
637
- msgstr ""
638
 
639
- msgid ""
640
- "Supsystic Newsletter plugin for automatic mailing of your letters. You will "
641
- "have no need to control it or send them manually. No coding, hard skills or "
642
- "long hours of customizing are required."
643
- msgstr ""
644
 
645
- msgid "Membership by Supsystic"
646
- msgstr ""
 
 
 
647
 
648
  msgid ""
649
- "Create online membership community with custom user profiles, roles, FrontEnd "
650
- "registration and login. Members Directory, activity, groups, messages."
 
651
  msgstr ""
 
 
 
652
 
653
- msgid "New gallery successfully created"
654
- msgstr "新图册创建成功"
655
 
656
- msgid "Title successfully updated"
657
- msgstr "标题更新成功"
658
 
659
- msgid "Not enough data."
660
- msgstr "没有足够的数据"
661
 
662
- msgid "Preset successfully saved."
663
- msgstr "保存成功!"
664
 
665
- msgid "The preset ID is not specified."
666
- msgstr "未指定的预设的 ID。"
667
 
668
- msgid "Preset successfully removed."
669
- msgstr "已成功移除"
670
 
671
- msgid "Failed to find the preset."
672
- msgstr "未能找到文件"
673
 
674
- msgid "Preset successfully applied to the gallery."
675
- msgstr "添加图片到该相册"
676
 
677
- msgid "Unnamed gallery"
678
- msgstr "未命名相册"
679
 
680
- msgid "The identifier of the gallery is invalid"
681
- msgstr "无效的相册"
682
 
683
- msgid "Title is empty"
684
- msgstr "标题为空"
685
 
686
- msgid "Failed to rename the gallery"
687
- msgstr "重命名失败"
688
 
689
- msgid "Invalid gallery identifier specified"
690
- msgstr "所选的库类型无效"
691
 
692
- msgid "Failed to delete the gallery"
693
- msgstr "删除失败!"
694
 
695
- msgid "Resources are does not exists"
696
- msgstr "文件不存在。"
697
 
698
- msgid "The identifier of the Gallery is not specified"
699
- msgstr "无效的相册"
700
 
701
- msgid "New gallery"
702
- msgstr "新相册"
703
 
704
- msgid "Add Images"
705
- msgstr "添加图像"
706
 
707
- msgid "Add selected items"
708
- msgstr "添加所选的项目"
709
 
710
- msgid "Cancel"
711
- msgstr "取消"
712
 
713
- msgid ""
714
- "You need to import images to your gallery before you can start using galleries"
715
- msgstr "在您保存前需要向您的模板添加一个标题。"
716
 
717
- msgid "Selected"
718
- msgstr "选择"
719
 
720
- msgid "Create new gallery"
721
- msgstr "创建新相册"
722
 
723
- msgid ""
724
- "Choose Gallery Template. You can change template and settings on the next step."
725
- msgstr ""
726
 
727
- msgid "Gallery Name:"
728
- msgstr "相册名称:"
729
 
730
- msgid "Choose Gallery Template."
731
- msgstr "选择库模板。"
732
 
733
- msgid "Remove selected"
734
- msgstr "移除选定"
735
 
736
- msgid "Select/unselect all posts"
737
- msgstr "选择/取消 所有文章"
738
 
739
- msgid "Images: "
740
- msgstr ""
741
 
742
- msgid "There are %s photos in the gallery %s"
743
- msgstr "在库 %s 中有 %s 照片"
744
 
745
- msgid " Size: "
746
- msgstr ""
747
 
748
- msgid " Mb "
749
- msgstr ""
750
 
751
- msgid "Images list"
752
- msgstr "相册列表"
753
 
754
- msgid "Preview"
755
- msgstr "预览"
756
 
757
- msgid "Images Optimization"
758
- msgstr ""
759
 
760
- msgid "Are you sure you want to delete this gallery?"
761
- msgstr "确实要删除此库吗?"
762
 
763
- msgid "Delete gallery"
764
- msgstr "删除相册"
765
 
766
- msgid "Shortcode:"
767
- msgstr "短代码:"
768
 
769
- msgid "PHPCode:"
770
- msgstr "PHPCode:"
771
 
772
- msgid "You have no galleries"
773
- msgstr "尚无相册"
774
 
775
- msgid "You don't have any galleries yet."
776
- msgstr "您还没有任何的相册。"
777
 
778
- msgid "Want to create one right now?"
779
- msgstr "想要现在创建一个吗?"
780
 
781
- msgid "What is a gallery"
782
- msgstr "gallery是什么"
783
 
784
- msgid ""
785
- "<strong>Gallery</strong> &mdash; the highest type of entity in the Gallery by "
786
- "Supsystic."
787
- msgstr "<strong>Gallery</strong> &mdash; Gallery by Supsystic 最高的实体类型。"
788
 
789
- msgid ""
790
- "You can have an unlimited number of galleries, to which you can attach the "
791
- "preloaded pictures."
792
- msgstr "你可以有无限的多个相册,预加载的图片可以重视。"
793
 
794
- msgid ""
795
- "Each gallery has a number of display settings and behaviors that you can save "
796
- "to presets and apply to other galleries."
797
- msgstr "每个库有大量的显示设置和行为,你可以保存到预置并应用到其他画廊。"
798
 
799
- msgid "Gallery title can't be empty!"
800
- msgstr "图集标题不能为空!"
801
 
802
- msgid "Gallery title:"
803
- msgstr "相册标题"
804
 
805
- msgid "Select source to import from"
806
- msgstr "选择导入"
807
-
808
- msgid "Back to the gallery"
809
- msgstr "返回图库"
810
 
811
- msgid "Main"
812
- msgstr "主菜单"
813
 
814
- msgid "Captions"
815
- msgstr "说明"
816
 
817
- msgid "Categories"
818
- msgstr "分类目录"
819
 
820
- msgid "Watermark"
821
- msgstr ""
822
 
823
- msgid "Add images"
824
- msgstr "添加图片"
825
 
826
- msgid "Import settings"
827
- msgstr "导入设置"
 
 
828
 
829
- msgid "Social"
830
- msgstr ""
831
 
832
- msgid "Load More"
833
- msgstr ""
834
 
835
- msgid "Buttons"
836
- msgstr ""
837
 
838
- msgid "Scroll"
839
- msgstr ""
840
 
841
- msgid "Border"
842
- msgstr "边框"
843
 
844
- msgid "Shadow"
845
- msgstr "阴影"
846
 
847
- msgid "Lightbox"
848
- msgstr ""
849
 
850
- msgid "Loader"
851
- msgstr ""
852
 
853
- msgid "Your changes not saved. You really want to leave without saving?"
854
- msgstr "您确定要离开而不保存吗?"
855
 
856
- msgid "Gallery Type"
857
- msgstr "相册类型"
858
 
859
- msgid "Number of Columns"
860
- msgstr "列数"
861
 
862
- msgid "Responsive columns"
863
- msgstr "响应列"
864
 
865
- msgid "Gallery Position"
866
- msgstr "相册位置"
867
 
868
- msgid "Images distance"
869
- msgstr "图像的距离"
870
 
871
- msgid "Gallery width"
872
- msgstr "图库宽度"
873
 
874
- msgid "Full screen width"
875
- msgstr "屏幕宽度"
876
 
877
- msgid "Gallery padding"
878
- msgstr "图像填充"
 
 
 
 
879
 
880
- msgid "Gallery height"
881
- msgstr "图像高度"
 
 
 
882
 
883
- msgid "Image width"
884
- msgstr "图片宽度"
 
 
 
 
 
 
 
885
 
886
- msgid "Image height"
887
- msgstr "图像高度"
888
 
889
- msgid "Image radius"
890
- msgstr "图像半径"
891
 
892
- msgid "Image crop quality"
893
- msgstr "图像质量"
894
 
895
- msgid "Display only first image"
896
- msgstr "显示仅第一个图片"
897
 
898
- msgid "Social Sharing"
899
- msgstr "社交分享"
900
 
901
- msgid "Social Buttons Project"
902
- msgstr "社交分享按钮"
903
 
904
- msgid "Gallery Sharing"
905
- msgstr "图集分享"
906
 
907
- msgid "Image Sharing"
908
- msgstr "图像分享"
909
 
910
- msgid "Buttons align"
911
- msgstr "按钮对齐"
912
 
913
- msgid "Popup Image Sharing"
914
- msgstr "弹出图片分享"
915
 
916
- msgid "You have no Social Sharing projects for now."
917
- msgstr "你现在有没有社交共享的项目。"
918
 
919
- msgid "Create your first project"
920
- msgstr "创建一个项目。"
921
 
922
- msgid ""
923
- "then just reload page with your Gallery settings, and you will see list with "
924
- "available Social Projects for your Gallery."
925
- msgstr "然后只需要重载图集设置页面,并且您将看到图集允许的社交项目列表。"
926
 
927
- msgid "You need to install Social Share Buttons by Supsystic to use this feature."
928
- msgstr "您需要从Supsystic安装社交分享按钮来使用这个功能。"
929
 
930
- msgid "Install plugin"
931
- msgstr "安装插件"
932
 
933
- msgid "here."
934
- msgstr "这里。"
935
 
936
- msgid "Horizontal Scroll"
937
- msgstr "横向滚动条"
938
 
939
- msgid "Scroll Bar Color"
940
- msgstr "滚动条颜色"
941
 
942
- msgid "Scroll Bar Transparency"
943
- msgstr "滚动条透明度"
944
 
945
- msgid "Available"
946
- msgstr "可用"
947
 
948
- msgid "Border Type"
949
- msgstr "边框类型"
950
 
951
- msgid "Shadow preset"
952
- msgstr "阴影预设"
953
 
954
- msgid "When mouse is over"
955
- msgstr "鼠标悬停时"
956
 
957
- msgid "Off"
958
- msgstr "关闭"
959
 
960
- msgid "Show mouse on"
961
- msgstr "显示鼠标"
962
 
963
- msgid "Hide mouse on"
964
- msgstr "隐藏鼠标"
965
 
966
- msgid "Overlay image with shadow"
967
- msgstr "阴影覆盖图像"
 
968
 
969
- msgid "Shadow color"
970
- msgstr "阴影颜色"
 
 
 
971
 
972
- msgid "Shadow blur"
973
- msgstr "模糊阴影"
974
 
975
- msgid "Shadow X"
976
- msgstr "阴影间隔 X"
977
 
978
- msgid "Shadow Y"
979
- msgstr "阴影间隔 Y"
980
 
981
- msgid "Pop-up Image"
982
- msgstr "弹出图像"
983
 
984
- msgid "Popup box theme"
985
- msgstr "弹出对话框主题"
986
 
987
- msgid "Choose theme"
988
- msgstr "选择主题"
989
 
990
- msgid "Disable on mobile"
991
- msgstr "在移动设备上停用"
992
 
993
- msgid "Popup Image Text"
994
- msgstr "弹出图像文本"
995
 
996
- msgid "Caption"
997
- msgstr "字幕"
998
 
999
- msgid "Hide Popup Captions"
1000
- msgstr "隐藏弹出窗口标题"
1001
 
1002
- msgid "Hide long titles"
1003
- msgstr ""
1004
 
1005
- msgid "Slideshow"
1006
- msgstr "幻灯片"
1007
 
1008
- msgid "Slideshow speed"
1009
- msgstr "幻灯片速度"
1010
 
1011
- msgid "Slideshow pause on hover"
1012
- msgstr "鼠标悬停时幻灯片显示暂停"
1013
 
1014
- msgid "Slideshow autostart"
1015
- msgstr "幻灯片自动启动"
1016
 
1017
- msgid "Popup Image size"
1018
- msgstr "弹出图像大小"
1019
 
1020
- msgid "Disable browser history"
1021
- msgstr ""
1022
 
1023
- msgid "Effect"
1024
- msgstr "效果"
1025
 
1026
- msgid "Choose effect"
1027
- msgstr "选择效果"
1028
 
1029
- msgid "Personal captions"
1030
- msgstr "个人字幕"
1031
 
1032
- msgid "Polaroid Style"
1033
- msgstr "宝丽来样式"
1034
 
1035
- msgid "Polaroid Image Animation"
1036
- msgstr "宝丽来形象动画"
1037
 
1038
- msgid "Polaroid Image Scattering "
1039
- msgstr "宝丽来图像散射"
1040
 
1041
- msgid "Polaroid Frame Width"
1042
- msgstr "宝丽来帧宽度"
1043
 
1044
- msgid "Text size"
1045
- msgstr "字体大小"
1046
 
1047
- msgid "Text horizontal align"
1048
- msgstr "文字水平对齐"
1049
 
1050
- msgid "Text vertical align"
1051
- msgstr "文字垂直对齐"
1052
 
1053
- msgid "Hide image title tooltip"
1054
- msgstr "隐藏图像标题工具提示"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1055
 
1056
  msgid "Mobile - show always caption"
1057
  msgstr "移动设备-总显示标题"
1058
 
1059
- msgid "Disable captions on mobile"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1060
  msgstr ""
 
 
1061
 
1062
- msgid "Show icons"
1063
- msgstr "显示图标"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1064
 
1065
- msgid "Select effect"
1066
- msgstr "选择效果"
1067
 
1068
- msgid "Animation"
1069
- msgstr "动画"
1070
 
1071
- msgid "Icons color"
1072
- msgstr "图标颜色"
1073
 
1074
- msgid "Icons hover color"
1075
- msgstr "图标悬停颜色"
1076
 
1077
- msgid "Background hover color"
1078
- msgstr "背景悬停颜色"
1079
 
1080
- msgid "Icons size"
1081
- msgstr "图标大小"
1082
 
1083
- msgid "Distance between icons"
1084
- msgstr "图标之间的距离"
1085
 
1086
- msgid "Show overlay"
1087
- msgstr "显示叠加"
1088
 
1089
- msgid "Overlay color"
1090
- msgstr "叠加颜色"
1091
 
1092
- msgid "Overlay transparency"
1093
- msgstr "叠加透明度"
1094
 
1095
- msgid "Categorize images in the gallery"
1096
- msgstr "对相册中的图像进行分类"
1097
 
1098
- msgid "Let user switch gallery pages"
1099
- msgstr "让用户切换相册页面"
1100
 
1101
- msgid "Add watermarks to your photos"
1102
- msgstr ""
1103
 
1104
  msgid "Save settings as preset"
1105
  msgstr "将设置保存为预设"
1106
 
1107
- msgid "Preset title:"
1108
- msgstr "预设标题:"
1109
-
1110
- msgid "Delete preset"
1111
- msgstr "删除该预设"
1112
 
1113
- msgid "Are you really want to delete preset \"%s\"?"
1114
- msgstr "您确定要删除”%s”预设?"
1115
 
1116
- msgid "Load settings from presets"
1117
- msgstr "从预设加载设置"
1118
 
1119
- msgid "Select preset:"
1120
- msgstr "选择预设︰"
1121
 
1122
- msgid "Failed to load the presets."
1123
- msgstr "预设加载失败"
1124
 
1125
- msgid "Currently you have no presets."
1126
- msgstr "目前你没有预设。"
1127
 
1128
  msgid "Select \"Big image\" theme"
1129
  msgstr "选择\"大图像\"主题"
1130
 
 
 
 
1131
  msgid "Select a theme"
1132
  msgstr "选择主题"
1133
 
1134
- msgid "Select"
1135
- msgstr "选择"
1136
-
1137
- msgid "Select overlay effect"
1138
- msgstr "选择叠加效应"
1139
-
1140
- msgid "This effect requires icons be enabled. Enable Icons?"
1141
- msgstr "此效果需要图标启用。使图标?"
1142
-
1143
- msgid "Select shadow preset"
1144
- msgstr "选择阴影预设"
1145
-
1146
- msgid "Select shadow"
1147
- msgstr "选择阴影"
1148
 
1149
- msgid "Import settings from gallery"
1150
- msgstr "导入设置"
1151
 
1152
- msgid ""
1153
- "Here you can import settings from other galleries, but right now, you have only "
1154
- "one gallery, create more - and see how it works"
1155
- msgstr ""
1156
- "在这里你可以从导入设置其他相册,但现在,你只有一个相册,创建更多-并看到它是如何"
1157
- "工作"
1158
 
1159
- msgid "Improve free version"
1160
- msgstr "免费版本"
1161
 
1162
  msgid "Select icons effects"
1163
  msgstr "选择效果图标"
1164
 
1165
- msgid "Click on the icon to select effect"
1166
- msgstr "单击该图标,选择效果"
1167
 
1168
- msgid "close"
1169
- msgstr "关闭"
1170
 
1171
- msgid "next"
1172
- msgstr "下一个"
1173
 
1174
- msgid "previous"
1175
- msgstr "上一个"
1176
 
1177
- msgid "start slideshow"
1178
- msgstr "启动幻灯片"
1179
 
1180
- msgid "stop slideshow"
1181
- msgstr "停止幻灯片"
1182
 
1183
- msgid "image"
1184
- msgstr "图片"
1185
 
1186
- msgid "of"
1187
- msgstr "of"
1188
 
1189
- msgid "Choose source"
1190
- msgstr "选择数据源"
1191
 
1192
- msgid "Import from WordPress Media Library"
1193
- msgstr "从WordPress的媒体库导入"
1194
 
1195
- msgid "Import from social networks"
1196
- msgstr "从社交网络导入"
1197
 
1198
- msgid "Import from your Instagram account"
1199
- msgstr "从您的 Instagram 帐户导入"
1200
 
1201
- msgid "Import from your Flickr account"
1202
- msgstr "从您的 Flickr 帐户中导入"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1203
 
1204
- msgid "Import from your Tumblr account"
1205
- msgstr "从您的 Tumblr 帐户导入"
1206
 
1207
- msgid "Import from your Facebook account"
1208
- msgstr "从您的 Facebook 帐户导入"
1209
 
1210
- msgid "Import from cloud services"
1211
- msgstr "从云服务中导入"
1212
 
1213
- msgid "Import from your FTP server"
1214
- msgstr "从 FTP 服务器导入"
1215
 
1216
- msgid "Import from your Google Drive account"
1217
- msgstr "从您的 Google Drive 帐户导入"
1218
 
1219
- msgid "Get Pro to enable import"
1220
- msgstr "获得 Pro版本 开启导入"
1221
 
1222
- msgid "Properties"
1223
- msgstr "属性"
1224
 
1225
- msgid "Delete Image"
1226
- msgstr "删除图片"
1227
 
1228
- msgid "Search"
1229
- msgstr "搜索"
1230
 
1231
- msgid "Sort By: "
1232
- msgstr "排序方式:"
1233
 
1234
- msgid "Sort To: "
1235
- msgstr "排序到︰"
1236
 
1237
- msgid "Apply"
1238
- msgstr "应用"
1239
 
1240
- msgid "The gallery is does not exists"
1241
- msgstr "这个相册不存在"
1242
 
1243
- msgid "Currently this gallery has no images"
1244
- msgstr "目前此相册有没有图像"
1245
 
1246
- msgid "Linked Images"
1247
- msgstr "图像连接"
1248
 
1249
- msgid "Instagram authorization"
1250
- msgstr "Instagram 授权"
1251
 
1252
- msgid "Upload your images from the Instagram Media Library"
1253
- msgstr "从Instagram媒体库 上传您的图片"
1254
 
1255
- msgid "Upload from Instagram"
1256
- msgstr "从 Instagram 上传"
1257
 
1258
- msgid "Error occurred"
1259
- msgstr ""
1260
 
1261
- msgid "Auth key saved!"
1262
- msgstr ""
1263
 
1264
- msgid "Service data was saved!"
1265
- msgstr ""
1266
 
1267
- msgid "Error! Incorrect service params!"
1268
- msgstr ""
1269
 
1270
- msgid "Error! Incorrect selected service!"
1271
- msgstr ""
1272
 
1273
- msgid "Error! Incorrect params!"
1274
- msgstr ""
1275
 
1276
- msgid "Table ' . $this->table. ' not exists! Please reactivate this plugin!"
1277
- msgstr ""
1278
 
1279
- msgid "Minimal version of php = 5.3.0"
1280
- msgstr ""
1281
 
1282
- msgid "Enable cUrl extension"
1283
- msgstr ""
1284
 
1285
- msgid "Can't check current version of cUrl extension"
1286
- msgstr ""
1287
 
1288
- msgid "Minimal cUrl extension version 7.20.0"
1289
- msgstr ""
1290
 
1291
- msgid "Optimization"
1292
- msgstr ""
1293
 
1294
- msgid "Image Optimization"
1295
- msgstr ""
1296
 
1297
- msgid "Your host does not support the minimum requirements:"
1298
- msgstr ""
1299
 
1300
- msgid "Transfer to CDN"
1301
- msgstr ""
1302
 
1303
- msgid "KeyCDN"
1304
- msgstr ""
1305
 
1306
- msgid "Change Details"
1307
- msgstr ""
1308
 
1309
- msgid "Setup"
1310
- msgstr ""
1311
 
1312
- msgid "Transfer selected"
1313
- msgstr ""
1314
 
1315
- msgid "Gallery Name"
1316
- msgstr ""
1317
 
1318
- msgid "Total Images"
1319
- msgstr ""
 
 
 
1320
 
1321
- msgid "Total Size"
1322
- msgstr ""
1323
 
1324
- msgid "Location"
1325
- msgstr ""
1326
 
1327
- msgid "Mb"
1328
- msgstr ""
1329
 
1330
- msgid "website"
1331
- msgstr ""
1332
 
1333
- msgid "Transfer to"
1334
- msgstr ""
1335
 
1336
- msgid "Transfer Gallery to"
1337
- msgstr ""
1338
 
1339
- msgid "Servicename"
1340
- msgstr ""
1341
 
1342
- msgid "Total images"
1343
- msgstr ""
 
 
1344
 
1345
- msgid "Total size"
1346
- msgstr ""
 
 
1347
 
1348
- msgid "Delete source image after transfer"
1349
- msgstr ""
1350
 
1351
- msgid "Start Transfer"
1352
- msgstr ""
1353
 
1354
- msgid "Connected to"
1355
- msgstr ""
1356
 
1357
- msgid "service"
1358
- msgstr ""
1359
 
1360
- msgid "Transfer information:"
1361
- msgstr ""
1362
 
1363
- msgid "galleries"
1364
- msgstr ""
1365
 
1366
- msgid "images"
1367
- msgstr ""
1368
 
1369
- msgid "Transfer ending with errors!"
1370
- msgstr ""
1371
 
1372
- msgid "Transfer completed successfully!"
1373
- msgstr ""
1374
 
1375
- msgid "Image optimization"
1376
- msgstr ""
1377
 
1378
- msgid "Start Optimization"
 
 
 
1379
  msgstr ""
 
 
1380
 
1381
- msgid "Service"
1382
- msgstr ""
1383
 
1384
- msgid "Setup Service"
1385
- msgstr ""
1386
 
1387
- msgid "Backup Images Source"
1388
- msgstr ""
1389
 
1390
- msgid "Optimize Preview images"
1391
- msgstr ""
1392
 
1393
- msgid "Optimization in process..."
1394
- msgstr ""
1395
 
1396
- msgid "Optimize:"
1397
- msgstr ""
1398
 
1399
- msgid "images (preview and original images)"
1400
- msgstr ""
1401
 
1402
- msgid "Error ocured. Optimize process stopped!"
1403
- msgstr ""
1404
 
1405
- msgid "Optimization complete"
1406
- msgstr ""
1407
 
1408
- msgid "Images size before:"
1409
- msgstr ""
1410
 
1411
- msgid "Images size after:"
1412
- msgstr ""
1413
 
1414
- msgid "Total Saving:"
1415
- msgstr ""
1416
 
1417
- msgid "Optimize one more time"
1418
- msgstr ""
1419
 
1420
- msgid "Show image comparision"
1421
- msgstr ""
1422
 
1423
- msgid "TinyPNG"
 
 
1424
  msgstr ""
 
 
1425
 
1426
- msgid "Another Service"
 
 
1427
  msgstr ""
 
 
1428
 
1429
- msgid "Optimize selected"
1430
- msgstr ""
1431
 
1432
- msgid "optimize"
1433
- msgstr ""
1434
 
1435
- msgid "Restore Source Images"
1436
- msgstr ""
1437
 
1438
- msgid "Optimize"
1439
- msgstr ""
1440
 
1441
- msgid "Optimize Now"
1442
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1443
 
1444
- msgid "Enter your TinyPNG API key"
1445
- msgstr ""
1446
 
1447
- msgid "Enter your Site name"
1448
- msgstr ""
1449
 
1450
- msgid "Enter your username"
1451
- msgstr ""
1452
 
1453
- msgid "Enter your password"
1454
- msgstr ""
1455
 
1456
- msgid "Enter your ftp base path"
 
 
 
1457
  msgstr ""
 
 
1458
 
1459
- msgid "Incorrect service Code"
1460
- msgstr ""
1461
 
1462
- msgid "Last 24 hours"
1463
- msgstr ""
1464
 
1465
- msgid "Week"
1466
- msgstr ""
1467
 
1468
- msgid "Month"
1469
- msgstr ""
1470
 
1471
- msgid "Number of images"
1472
- msgstr ""
1473
 
1474
- msgid "Total size before"
1475
- msgstr ""
1476
 
1477
- msgid "Total size after"
1478
- msgstr ""
1479
 
1480
- msgid "Save in Mb"
1481
- msgstr ""
1482
 
1483
- msgid "Save in %"
 
 
 
 
1484
  msgstr ""
 
 
 
1485
 
1486
- msgid "Your message successfully send. We contact you soon."
1487
- msgstr "您的邮件成功发送。我们尽快与您联系。"
1488
-
1489
- msgid "Start step-by-step tutorial"
1490
  msgstr ""
 
 
1491
 
1492
- msgid "Name"
1493
- msgstr "名称"
1494
 
1495
- msgid "Email"
1496
- msgstr "电子邮件"
1497
 
1498
- msgid "Website"
1499
- msgstr "网站"
1500
 
1501
- msgid "Subject"
1502
- msgstr "主题"
1503
 
1504
  msgid "Topic"
1505
  msgstr "话题"
1506
 
1507
- msgid "Plugin options"
1508
- msgstr "插件选项"
1509
 
1510
- msgid "Report a bug"
1511
- msgstr "报告错误"
1512
 
1513
- msgid "Require a new functionallity"
1514
- msgstr "需要新的开发"
1515
 
1516
- msgid "Other"
1517
- msgstr "其他"
1518
 
1519
- msgid "Message"
1520
- msgstr "信息"
1521
 
1522
- msgid "Hello Supsystic Team!"
1523
- msgstr "Hello Supsystic Team!"
1524
 
1525
- msgid ""
1526
- "Some errors occurred while sending mail please send your message trough this "
1527
- "contact form:"
1528
- msgstr "在发送邮件的副本时发生错误。但是,管理员也可以接收它。"
1529
 
1530
- msgid "Unable to save chosen photo %s: %s"
1531
- msgstr "无法储存照片 %s: %s"
1532
 
1533
- msgid "New Folder"
1534
- msgstr "新文件夹"
1535
 
1536
- msgid "The title can't be empty"
1537
- msgstr "标题不能为空"
1538
 
1539
- msgid "Failed to update position."
1540
- msgstr "更新的位置出错。"
1541
 
1542
- msgid "Position updated successfully!"
1543
- msgstr "已成功更新位置 !"
1544
 
1545
- msgid "Rename folder"
1546
- msgstr "重命名目录"
1547
 
1548
- msgid "Folder name:"
1549
- msgstr "文件夹名:"
1550
 
1551
- msgid "Add images to the gallery"
1552
- msgstr "添加图片到该画册"
1553
 
1554
- msgid "Please wait while the plugin to get the list of galleries..."
1555
- msgstr "请稍候插件正在加载相册列表..."
1556
 
1557
- msgid "Select the gallery:"
1558
- msgstr "选择相册:"
1559
 
1560
- msgid "New folder"
1561
- msgstr "新文件夾"
1562
 
1563
- msgid "Add images to the new gallery"
1564
- msgstr "添加图片到该相册"
1565
 
1566
- msgid "Create new folder"
1567
- msgstr "创建新文件夹"
1568
 
1569
- msgid "Edit selected item"
1570
- msgstr "编辑已选项"
1571
 
1572
- msgid "Delete selected items"
1573
- msgstr "删除已选项"
1574
 
1575
- msgid "Create new gallery from the selected items"
1576
- msgstr "创建新选项"
1577
 
1578
- msgid "New gallery from selected"
1579
- msgstr "新相册从选项"
1580
 
1581
- msgid "Add the selected items to the existing gallery"
1582
- msgstr "将选定的项目添加到现有相册"
1583
 
1584
- msgid "Add selected to the gallery"
1585
- msgstr "添加所选到相册"
1586
 
1587
- msgid "Switch to the list view"
1588
- msgstr "切换到列表"
1589
 
1590
- msgid "Switch to the block view"
1591
- msgstr "切换到视图"
1592
 
1593
- msgid "Upload your images from the WordPress Media Library"
1594
- msgstr "上传您的图片从 WordPress 媒体库"
1595
 
1596
- msgid "All photos"
1597
- msgstr "所有照片"
1598
 
1599
- msgid "Drop photos here to move them from the folder"
1600
- msgstr "拖放照片到该文件夹这里"
1601
 
1602
- msgid "Next"
1603
- msgstr "下一个"
1604
 
1605
- msgid "Close Tutorial"
1606
- msgstr "关闭教程"
1607
 
1608
- msgid "Welcome to Photo Gallery plugin by Supsystic!"
1609
- msgstr "欢迎来到 Supsystic 的图集插件 !"
1610
 
1611
- msgid ""
1612
- "Thank you for choosing our Gallery plugin. Just click here to start using it - "
1613
- "and we will show you it's possibilities and powerfull features."
1614
- msgstr ""
1615
- "非常感谢您选择我们的库插件。请点击这里,开始使用它-,我们将向您展示它的可能性和"
1616
- "强大的功能。"
1617
 
1618
- msgid "Hello! This is the Gallery by Supsystic Overview."
1619
- msgstr "你好 !这是由 Supsystic 概述相册。"
1620
 
1621
- msgid ""
1622
- "Here you can get help: watch the video tutorial or read FAQ and Documentation, "
1623
- "make use of contact form. Also here requirements for server - Server Settings."
1624
- msgstr ""
1625
- "在这里你可以得到帮助︰ 观看视频教程或阅读常见问题和文档,使使用的联系人窗体。这"
1626
- "里还要求服务器-服务器设置。"
1627
 
1628
- msgid "Create your first Gallery"
1629
- msgstr "创建您的第一个图集"
1630
 
1631
- msgid ""
1632
- "To Create New Gallery select gallery template. You can change template and "
1633
- "settings later. Now here are four different templates. With PRO version you’ll "
1634
- "get more features like Categories, Load More button, Post Feed (Content) "
1635
- "gallery, Polaroid gallery and more. Enter name of the gallery and click “Save”."
1636
- msgstr ""
1637
 
1638
- msgid "Add images to your Gallery"
1639
- msgstr "添加图片到该相册"
1640
 
1641
- msgid ""
1642
- "Now you are in the edit menu of your gallery. And the first thing you need to "
1643
- "do are add media to the gallery. Click \"Add Images\" button."
1644
- msgstr ""
1645
- "你现在在你的相册的编辑菜单中。你需要做的第一件事,向库中添加媒体。单击\"添加图像"
1646
- "\"按钮。"
1647
 
1648
- msgid "Images Import Options"
1649
- msgstr "图像导入选项"
1650
 
1651
- msgid ""
1652
- "<p>Import images in several ways:</p><p>Import from Wordpress Media Library/"
1653
- "Upload files from your computer</p><p>Import from social networks</"
1654
- "p><p>Instagram (in the Free version)</p><p>With PRO-version also will be "
1655
- "available import from Flickr, Tumblr and Facebook.</p><p>Besides with Gallery "
1656
- "PRO version you can import images from such cloud services - FTP server, Google "
1657
- "Drive.</p>"
1658
- msgstr ""
1659
- "<p>导入图片的几种方法︰</p><p>从 Wordpress 媒体库/上传文件,从您的计算机中导入</"
1660
- "p><p>从社交网络导入</p><p>Instagram (免费版本)</p><p>PRO版本也可以允许从 "
1661
- "Flickr,Tumblr 和 Facebook 导入。</p><p>此外与图集插件 PRO 版本您可以从云服务 "
1662
- "— — FTP 服务器,Google Drive导入图片。</p>"
1663
 
1664
- msgid "Image List"
1665
- msgstr "图像列表"
1666
 
1667
- msgid ""
1668
- "<p>Now you can see your image list. Here you can:</p><p>Change the order of "
1669
- "images – simply by dragging them manually.</p><p>Delete images.</p><p>Add new "
1670
- "images from different sources to the grid gallery – click “Add Images” button "
1671
- "and select the source to import from.</p><p><b>Caption tab</b> – add caption to "
1672
- "image – it will be displayed on the caption effect of the gallery. Also here "
1673
- "included the support of html-elements inside caption effect</p><p><b>SEO tab</"
1674
- "b> – manage image title and description</p><p><b>Link tab</b> – attach links to "
1675
- "image – it will go to the link when you click the image.</p><p><b>Video tab</b> "
1676
- "– attach video url – it will be displayed in a pop-up image when you click on "
1677
- "the image.</p><p><b>Categories tab</b> – add tags for image categories.</"
1678
- "p><p><b>Linked images tab</b> – add linked images to the chosen image.</"
1679
- "p><p><b>Crop tab</b> – choose image crop position.</p><p><b>Replace image tab</"
1680
- "b> – replace image without losing image settings.</p><p>Now follow to the "
1681
- "gallery settings – сlick “Properties” button.</p>"
1682
- msgstr ""
1683
 
1684
- msgid "Preview of Gallery settings"
1685
- msgstr "预览图库设置"
1686
 
1687
- msgid ""
1688
- "At the left side of the monitor you see a preview image in which will be seen "
1689
- "changes made to the settings. This window for the settings of your gallery."
1690
- msgstr ""
1691
- "图集属性:在监视器的左边,你看到一个预览图像,将被视为对设置的更改。在这个窗口设"
1692
- "置您的图集。"
1693
 
1694
- msgid "Main Settings"
1695
- msgstr "主要设置"
1696
 
1697
- msgid ""
1698
- "<p>Here you can set main settings of gallery - choose Gallery Type, for more "
1699
- "information check this <a href=\"//supsystic.com/gallery-order-types/\" target="
1700
- "\"_blank\">article</a>.</p><p>Social Sharing: add social share buttons to your "
1701
- "gallery. Or showcase images in a Horizontal Scroll view.</p><p>Load More: adds "
1702
- "\"load more\" button to your gallery. And with Custom Buttons: you can make "
1703
- "your button better.</p><p>Add to images border and shadow with Border Type and "
1704
- "Shadow settings.</p><p>In the Pop-up Image section customize lightbox of your "
1705
- "gallery.</p>"
1706
- msgstr ""
1707
- "<p>Here you can set main settings of gallery - choose Gallery Type, for more "
1708
- "information check this <a href=\"//supsystic.com/gallery-order-types/\" target="
1709
- "\"_blank\">article</a>.</p><p>Social Sharing: add social share buttons to your "
1710
- "gallery. Or showcase images in a Horizontal Scroll view.</p><p>Load More: adds "
1711
- "\"load more\" button to your gallery. And with Custom Buttons: you can make "
1712
- "your button better.</p><p>Add to images border and shadow with Border Type and "
1713
- "Shadow settings.</p><p>In the Pop-up Image section customize lightbox of your "
1714
- "gallery.</p>"
1715
 
1716
- msgid "Captions and Icons"
1717
- msgstr "字幕和图标"
1718
 
1719
- msgid ""
1720
- "<p>On Captions tab you can manage the Captions and Icons, and make them your "
1721
- "style.</p>"
1722
- msgstr "<p>标题: 在这个标签您可以管理标题并且可以变成您喜欢的风格。</p>"
1723
 
1724
- msgid "Categories and Pagination"
1725
- msgstr "分类和分页"
1726
 
1727
- msgid ""
1728
- "<p>Categories tab: here you can enable Categories and Pagination options.</"
1729
- "p><p>To this tab become available you need to buy PRO version."
1730
- msgstr ""
1731
- "<p>分类标签:您可以在这里允许分类和分页选项。</p><p>您需要PRO版本来允许这个标"
1732
- "签。"
1733
 
1734
  msgid ""
1735
- "<p>Posts tab: here you can add posts and pages to your gallery and also manage "
1736
- "them. Posts of gallery included in the PRO version of Gallery by Supsystic.</p>"
 
 
 
1737
  msgstr ""
1738
- "<p>文章标签:您可以在这里添加文章和页面并且管理他们。图册文章功能包含在PRO版本"
1739
- "中。</p>"
 
 
1740
 
1741
- msgid "Well done!"
1742
- msgstr "太棒了!"
1743
 
1744
- msgid ""
1745
- "<p><b>Upgrading</b></p><p>Once you have purchased Premium version of plugin - "
1746
- "you’ll have to enter license key (you can find it in your personal account on "
1747
- "our site). Go to the License tab and enter your email and license key. Once you "
1748
- "have activated your PRO license - you can use all its advanced options.</"
1749
- "p><p>That’s all. From this moment you can use your Gallery without any doubt. "
1750
- "But if you still have some question - do not hesitate to contact us through our "
1751
- "<a href=\"https://supsystic.com/contact-us/\">internal support</a> or on our <a "
1752
- "href=\"http://supsystic.com/forum/photo-gallery-plugin/\">Supsystic Forum.</a> "
1753
- "Besides you can always describe your questions on <a href=\"https://wordpress."
1754
- "org/support/plugin/gallery-by-supsystic\">WordPress Ultimate Forum.</a></"
1755
- "p><p><b>Enjoy this plugin?</b></p><p>It will be nice if you`ll help us and "
1756
- "boost plugin with <a href=\"https://wordpress.org/support/view/plugin-reviews/"
1757
- "gallery-by-supsystic?rate=5#postform/\">Five Stars rating on WordPress.org.</"
1758
- "a></p><p>We hope that you like this plugin and wish you all the best! Good luck!"
1759
- "</p>"
1760
- msgstr ""
1761
 
1762
  msgid "Welcome to the"
1763
  msgstr "欢迎来到"
1764
 
1765
- msgid ""
1766
- "Photo Gallery plugin is created for people who would like to show their photos "
1767
- "in a marvelous way. Perform your best ideas, making delightful presentations or "
1768
- "galleries from videos and photos."
1769
- msgstr ""
1770
- "图片图册插件是为那些想以一种奇妙的方式展示他们的照片的人创造的。执行你的最好的想"
1771
- "法,从图片或视频中建立令人愉悦的幻灯片或或图集。"
1772
 
1773
- msgid "Step-by-step tutorial"
1774
- msgstr "开始起步教程"
1775
 
1776
- msgid ""
1777
- "There’re really many options of photo gallery plugin customization. So as soon "
1778
- "as you close that page, I’ll show you step-by-step tutorial of how to use "
1779
- "plugin. Hope it will be usefull for you :)"
1780
- msgstr ""
1781
 
1782
- msgid "Support"
1783
- msgstr "支持"
 
 
 
 
 
 
1784
 
1785
  msgid ""
1786
- "We love our plugin and do the best to improve all features you want and fix all "
1787
- "issues. But sometimes some issues happened or you can’t find feature you "
1788
- "want :) Don’t worry, just <a href=\"//supsystic.com/plugins/photo-gallery?"
1789
- "utm_source=plugin&utm_medium=welcomepage&utm_campaign=photo-gallery#contact\" "
1790
- "target=\"_blank\"> contact us </a> . We’ll answer in an hour and fix all issues."
1791
- msgstr ""
1792
 
1793
- msgid "Video Tutorial"
1794
- msgstr "视频教程"
1795
 
1796
- msgid "Frequently Asked Questions"
1797
- msgstr "常见问题"
1798
 
1799
- msgid ""
1800
- "Gallery doesn’t load on the front end. If the loading gallery icon just keeps "
1801
- "playing but never loads the gallery."
1802
- msgstr ""
1803
 
1804
- msgid "How to change the position of photos in gallery?"
1805
- msgstr "如何更改图集中的位置?"
1806
 
1807
- msgid "How to insert gallery into widget?"
1808
- msgstr "如何将图集插件添加到WordPress小工具?"
1809
 
1810
- msgid "Go to Appearance -> Widgets."
1811
- msgstr "转到外观->小工具。"
1812
 
1813
- msgid ""
1814
- "You’ll see Gallery by Supsystic Widget on the left. Drag it to the area, where "
1815
- "you want it to appear."
1816
- msgstr ""
1817
 
1818
- msgid "Then choose what gallery you want to display. And press save."
1819
- msgstr "然后选择哪个图集是您想要显示的,点击保存。"
1820
 
1821
- msgid "Check all other FAQs"
1822
- msgstr "查看全部其它问题"
1823
 
1824
- msgid "Image Editor"
1825
- msgstr ""
1826
 
1827
- msgid "Roles"
1828
- msgstr "角色"
1829
 
1830
- msgid "PRO option"
1831
- msgstr "PRO 选项"
1832
 
1833
- msgid "Edit image"
1834
- msgstr "编辑图片"
 
 
1835
 
1836
- msgid "SEO"
1837
- msgstr "SEO"
1838
 
1839
- msgid "Alternative text"
1840
- msgstr "可选文字"
1841
 
1842
- msgid "External link"
1843
- msgstr "外部链接"
1844
 
1845
- msgid "Available in PRO version."
1846
- msgstr "升级到专业版"
1847
 
1848
- msgid "Link"
1849
- msgstr "链接"
1850
 
1851
- msgid "Open in new window"
1852
- msgstr "在新窗口中打开"
1853
 
1854
- msgid "Embeded video"
1855
- msgstr "嵌入式视频"
1856
 
1857
- msgid "Video URL"
1858
- msgstr "视频URL"
1859
 
1860
- msgid "Supports Youtube and Vimeo. URL will be converted to embed automatically."
1861
- msgstr "支持 Youtube 和 Vimeo。URL 将被转换为自动嵌入。"
1862
 
1863
- msgid "Date"
1864
- msgstr "日期"
1865
 
1866
- msgid "Select %s"
1867
- msgstr "选择 %s"
1868
 
1869
  msgid "photo"
1870
  msgstr "照片"
@@ -1872,39 +2528,35 @@ msgstr "照片"
1872
  msgid "photos"
1873
  msgstr "相册"
1874
 
1875
- msgid "Caption effect"
1876
- msgstr "字幕特效"
1877
-
1878
- msgid "Video"
1879
- msgstr "视频"
1880
-
1881
- msgid "Linked images"
1882
- msgstr "图像连接"
1883
 
1884
- msgid "Crop"
1885
- msgstr "裁切"
1886
 
1887
- msgid "Replace image"
1888
- msgstr "替换图片"
1889
 
1890
- msgid "http://example.com/"
1891
- msgstr "http://example.com/"
1892
 
1893
- msgid "Add nofollow attribute"
1894
- msgstr "添加nofollow属性"
1895
 
1896
- msgid "Choose images"
1897
- msgstr "选择图像"
 
 
1898
 
1899
- msgid "Choose image"
1900
- msgstr ""
1901
 
1902
  #~ msgid "Parse"
1903
  #~ msgstr "解析"
1904
 
1905
- #~ msgid ""
1906
- #~ "Choose Gallery Template.You can change template and settings on the next "
1907
- #~ "step."
1908
  #~ msgstr "选择库 Template.You 可以更改模板和设置下, 一步。"
1909
 
1910
  #~ msgid "Total Images: "
@@ -1917,111 +2569,102 @@ msgstr ""
1917
  #~ msgstr "开始起步教程"
1918
 
1919
  #~ msgid ""
1920
- #~ "To Create New Gallery select gallery template. You can change template and "
1921
- #~ "settings later. Now here are four different templates. With PRO version "
1922
- #~ "you’ll get more features like Categories, Load More button, Post Feed "
1923
- #~ "(Content) gallery, Polaroid gallery and more. Enter name of the gallery and "
1924
- #~ "click “Save”."
1925
  #~ msgstr ""
1926
- #~ "向选择库模板创建新库。您可以在以后更改模板和设置。现在这里有四个不同的模板。"
1927
- #~ "与 PRO 版中,你会得到更多的功能,如类别,负载更多按钮、 邮政饲料 (内容) "
1928
- #~ "画廊、 宝丽来画廊和更多。输入库的名称并单击\"保存\"。"
1929
 
1930
  #~ msgid ""
1931
- #~ "<p>Now you can see your image list. Here you can:</p><p>Change the order of "
1932
- #~ "images – simply by dragging them manually.</p><p>Delete images.</p><p>Add "
1933
- #~ "new images from different sources to the grid gallery – click “Add Images” "
1934
- #~ "button and select the source to import from.</p><p><b>Caption tab</b> – add "
1935
- #~ "caption to image – it will be displayed on the caption effect of the "
1936
- #~ "gallery. Also here included the support of html-elements inside caption "
1937
- #~ "effect</p><p><b>SEO tab</b> – manage image title and description</"
1938
- #~ "p><p><b>Link tab</b> – attach links to image – it will go to the link when "
1939
- #~ "you click the image.</p><p><b>Video tab</b> – attach video url – it will be "
1940
- #~ "displayed in a pop-up image when you click on the image.</p><p><b>Categories "
1941
- #~ "tab</b> – add tags for image categories.</p><p><b>Linked images tab</b> – "
1942
- #~ "add linked images to the chosen image.</p><p><b>Crop tab</b> – choose image "
1943
- #~ "crop position.</p><p><b>Replace image tab</b> – replace image without losing "
1944
- #~ "image settings.</p><p>Now follow to the gallery settings – сlick "
1945
- #~ "“Properties” button.</p>"
1946
  #~ msgstr ""
1947
- #~ "<p>Now you can see your image list. Here you can:</p><p>Change the order of "
1948
- #~ "images – simply by dragging them manually.</p><p>Delete images.</p><p>Add "
1949
- #~ "new images from different sources to the grid gallery – click “Add Images” "
1950
- #~ "button and select the source to import from.</p><p><b>Caption tab</b> – add "
1951
- #~ "caption to image – it will be displayed on the caption effect of the "
1952
- #~ "gallery. Also here included the support of html-elements inside caption "
1953
- #~ "effect</p><p><b>SEO tab</b> – manage image title and description</"
1954
- #~ "p><p><b>Link tab</b> – attach links to image – it will go to the link when "
1955
- #~ "you click the image.</p><p><b>Video tab</b> – attach video url – it will be "
1956
- #~ "displayed in a pop-up image when you click on the image.</p><p><b>Categories "
1957
- #~ "tab</b> – add tags for image categories.</p><p><b>Linked images tab</b> – "
1958
- #~ "add linked images to the chosen image.</p><p><b>Crop tab</b> – choose image "
1959
- #~ "crop position.</p><p><b>Replace image tab</b> – replace image without losing "
1960
- #~ "image settings.</p><p>Now follow to the gallery settings – сlick "
1961
- #~ "“Properties” button.</p>"
1962
 
1963
  #~ msgid ""
1964
- #~ "<p><b>Upgrading</b></p><p>Once you have purchased Premium version of plugin "
1965
- #~ "- you’ll have to enter license key (you can find it in your personal account "
1966
- #~ "on our site). Go to the License tab and enter your email and license key. "
1967
- #~ "Once you have activated your PRO license - you can use all its advanced "
1968
- #~ "options.</p><p>That’s all. From this moment you can use your Gallery without "
1969
- #~ "any doubt. But if you still have some question - do not hesitate to contact "
1970
- #~ "us through our <a href=\"https://supsystic.com/contact-us/\">internal "
1971
- #~ "support</a> or on our <a href=\"http://supsystic.com/forum/photo-gallery-"
1972
- #~ "plugin/\">Supsystic Forum.</a> Besides you can always describe your "
1973
- #~ "questions on <a href=\"https://wordpress.org/support/plugin/gallery-by-"
1974
- #~ "supsystic\">WordPress Ultimate Forum.</a></p><p><b>Enjoy this plugin?</b></"
1975
- #~ "p><p>It will be nice if you`ll help us and boost plugin with <a href="
1976
- #~ "\"https://wordpress.org/support/view/plugin-reviews/gallery-by-supsystic?"
1977
- #~ "rate=5#postform/\">Five Stars rating on WordPress.org.</a></p><p>We hope "
1978
- #~ "that you like this plugin and wish you all the best! Good luck!</p>"
1979
  #~ msgstr ""
1980
- #~ "<p><b>Upgrading</b></p><p>Once you have purchased Premium version of plugin "
1981
- #~ "- you’ll have to enter license key (you can find it in your personal account "
1982
- #~ "on our site). Go to the License tab and enter your email and license key. "
1983
- #~ "Once you have activated your PRO license - you can use all its advanced "
1984
- #~ "options.</p><p>That’s all. From this moment you can use your Gallery without "
1985
- #~ "any doubt. But if you still have some question - do not hesitate to contact "
1986
- #~ "us through our <a href=\"https://supsystic.com/contact-us/\">internal "
1987
- #~ "support</a> or on our <a href=\"http://supsystic.com/forum/photo-gallery-"
1988
- #~ "plugin/\">Supsystic Forum.</a> Besides you can always describe your "
1989
- #~ "questions on <a href=\"https://wordpress.org/support/plugin/gallery-by-"
1990
- #~ "supsystic\">WordPress Ultimate Forum.</a></p><p><b>Enjoy this plugin?</b></"
1991
- #~ "p><p>It will be nice if you`ll help us and boost plugin with <a href="
1992
- #~ "\"https://wordpress.org/support/view/plugin-reviews/gallery-by-supsystic?"
1993
- #~ "rate=5#postform/\">Five Stars rating on WordPress.org.</a></p><p>We hope "
1994
- #~ "that you like this plugin and wish you all the best! Good luck!</p>"
1995
 
1996
  #~ msgid ""
1997
- #~ "There’re really many options of photo gallery plugin customization. So as "
1998
- #~ "soon as you close that page, I’ll show you step-by-step tutorial of how to "
1999
- #~ "use plugin. Hope it will be usefull for you :)"
2000
  #~ msgstr ""
2001
- #~ "这里真的有许多关于图片图集插件的个性化操作。所以当您关闭那个页面,我将为您显"
2002
- #~ "示分步骤引导介绍如何使用插件。希望它将对您有用哦:)"
2003
 
2004
  #~ msgid ""
2005
- #~ "We love our plugin and do the best to improve all features you want and fix "
2006
- #~ "all issues. But sometimes some issues happened or you can’t find feature you "
2007
- #~ "want :) Don’t worry, just <a href=\"//supsystic.com/plugins/photo-gallery?"
2008
- #~ "utm_source=plugin&utm_medium=welcomepage&utm_campaign=photo-gallery#contact"
2009
- #~ "\" target=\"_blank\"> contact us </a> . We’ll answer in an hour and fix all "
2010
- #~ "issues."
2011
  #~ msgstr ""
2012
- #~ "我们爱我们的插件,并尽最大努力改善所有的功能和您要解决所有问题。但有时会发生"
2013
- #~ "一些问题,或者您找不到你想要的功能 :) 别担心,只需要 <a href=“//supsystic."
2014
- #~ "com/plugins/photo-gallery?"
2015
- #~ "utm_source=plugin&utm_medium=welcomepage&utm_campaign=photo-gallery#contact” "
2016
- #~ "target=“_blank”> 联系我们 </a> 。我们将在一小时内回答并修正所有问题。"
2017
 
2018
  #~ msgid ""
2019
- #~ "Gallery doesn’t load on the front end. If the loading gallery icon just "
2020
- #~ "keeps playing but never loads the gallery."
2021
  #~ msgstr "图集不加载在前端,如果载入图集图标一直显示载入状态,但是从没载入图集。"
2022
 
2023
  #~ msgid ""
2024
- #~ "You’ll see Gallery by Supsystic Widget on the left. Drag it to the area, "
2025
- #~ "where you want it to appear."
2026
- #~ msgstr ""
2027
- #~ "您将在左侧看到Gallery by Supsystic小工具,拖拽它到您想要出现的指定区域。"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.7\n"
13
 
14
+ msgid " Mb "
15
+ msgstr "Mb"
 
 
 
16
 
17
+ msgid " Size: "
18
+ msgstr "大小:"
19
 
20
+ msgid " image "
21
+ msgstr " 图片 "
22
 
23
+ msgid " of "
24
+ msgstr ""
25
 
26
+ msgid " plugin from your admin area, or visit it's official page on Wordpress.org "
27
+ msgstr "管理面板插件,或访问其Wordpress.org官方页面"
28
 
29
+ msgid ""
30
+ "<p><b>Upgrading</b></p><p>Once you have purchased Premium version of plugin - you’ll "
31
+ "have to enter license key (you can find it in your personal account on our site). Go "
32
+ "to the License tab and enter your email and license key. Once you have activated your "
33
+ "PRO license - you can use all its advanced options.</p><p>That’s all. From this moment "
34
+ "you can use your Gallery without any doubt. But if you still have some question - do "
35
+ "not hesitate to contact us through our <a href=\"https://supsystic.com/contact-us/"
36
+ "\">internal support</a> or on our <a href=\"http://supsystic.com/forum/photo-gallery-"
37
+ "plugin/\">Supsystic Forum.</a> Besides you can always describe your questions on <a "
38
+ "href=\"https://wordpress.org/support/plugin/gallery-by-supsystic\">WordPress Ultimate "
39
+ "Forum.</a></p><p><b>Enjoy this plugin?</b></p><p>It will be nice if you`ll help us and "
40
+ "boost plugin with <a href=\"https://wordpress.org/support/view/plugin-reviews/gallery-"
41
+ "by-supsystic?rate=5#postform/\">Five Stars rating on WordPress.org.</a></p><p>We hope "
42
+ "that you like this plugin and wish you all the best! Good luck!</p>"
43
+ msgstr ""
44
+ "<p><b>升级中</b></p><p>如果你已购买高级版插件 - 你需要输入许可秘钥 (你可以在我们网站的"
45
+ "个人账户中找到该秘钥). 访问许可标签然后输入你的邮箱和许可秘钥. 如果你已激活 PRO版许可 "
46
+ "- 你可以开始使用各项高级功能.</p><p> 这样就可以了. 从现在起,你可以开始完整使用gallery"
47
+ "了. 如果你还有任何问题 - 可以通过以下方式联系我们 <a href=\"https://supsystic.com/"
48
+ "contact-us/\">内部支持</a> 或 <a href=\"http://supsystic.com/forum/photo-gallery-"
49
+ "plugin/\">Supsystic论坛.</a> 另外,你也可以在这里咨询<a href=\"https://wordpress.org/"
50
+ "support/plugin/gallery-by-supsystic\">WordPress Ultimate Forum.</a></p><p><b>喜欢本插"
51
+ "件?</b></p><p>如果你在 <a href=\"https://wordpress.org/support/view/plugin-reviews/"
52
+ "gallery-by-supsystic?rate=5#postform/\">WordPress.org给与我们五星评价</a> 将是一件很棒"
53
+ "的事.</p><p>我们希望你能喜欢本插件,祝你好运!</p>"
54
 
55
+ msgid ""
56
+ "<p>Categories tab: here you can enable Categories and Pagination options.</p><p>To "
57
+ "this tab become available you need to buy PRO version."
58
  msgstr ""
59
+ "<p>分类标签:您可以在这里开启分类和分页选项。</p><p>您需要PRO版本来使用这个标签。"
60
 
61
+ msgid ""
62
+ "<p>Here you can set main settings of gallery - choose Gallery Type, for more "
63
+ "information check this <a href=\"//supsystic.com/gallery-order-types/\" target=\"_blank"
64
+ "\">article</a>.</p><p>Social Sharing: add social share buttons to your gallery. Or "
65
+ "showcase images in a Horizontal Scroll view.</p><p>Load More: adds \"load more\" "
66
+ "button to your gallery. And with Custom Buttons: you can make your button better.</"
67
+ "p><p>Add to images border and shadow with Border Type and Shadow settings.</p><p>In "
68
+ "the Pop-up Image section customize lightbox of your gallery.</p>"
69
+ msgstr ""
70
+ "<p>这里你可以设置相册的主要设置选项 - 选择相册类型, 更多信息请访问: <a href=\"//"
71
+ "supsystic.com/gallery-order-types/\" target=\"_blank\">文章</a>.</p><p>社交分享: 在相册"
72
+ "中添加社交分享按钮. 或在水平滚动视图中展示图片.</p><p>加载更多: 在相册中添加 \"加载更多"
73
+ "\"按钮 . 和自定义按钮: 能够让你的按钮更加美观.</p><p>给图片添加多类型的边框和可设置的阴"
74
+ "影.</p><p>在弹出图片部分设置相册的lightbox效果.</p>"
75
 
76
+ msgid ""
77
+ "<p>Import images in several ways:</p><p>Import from Wordpress Media Library/Upload "
78
+ "files from your computer</p><p>Import from social networks</p><p>Instagram (in the "
79
+ "Free version)</p><p>With PRO-version also will be available import from Flickr, Tumblr "
80
+ "and Facebook.</p><p>Besides with Gallery PRO version you can import images from such "
81
+ "cloud services - FTP server, Google Drive.</p>"
82
+ msgstr ""
83
+ "<p>导入图片的几种方法︰</p><p>从 Wordpress 媒体库/上传文件,从您的计算机中导入</p><p>从"
84
+ "社交网络导入</p><p>Instagram (免费版本)</p><p>PRO版本也可以允许从 Flickr,Tumblr 和 "
85
+ "Facebook 导入。</p><p>此外与图集插件 PRO 版本您可以从云服务 — — FTP 服务器,Google "
86
+ "Drive导入图片。</p>"
87
 
88
+ msgid ""
89
+ "<p>Now you can see your image list. Here you can:</p><p>Change the order of images – "
90
+ "simply by dragging them manually.</p><p>Delete images.</p><p>Add new images from "
91
+ "different sources to the grid gallery – click “Add Images” button and select the "
92
+ "source to import from.</p><p><b>Caption tab</b> – add caption to image – it will be "
93
+ "displayed on the caption effect of the gallery. Also here included the support of html-"
94
+ "elements inside caption effect</p><p><b>SEO tab</b> – manage image title and "
95
+ "description</p><p><b>Link tab</b> – attach links to image – it will go to the link "
96
+ "when you click the image.</p><p><b>Video tab</b> – attach video url – it will be "
97
+ "displayed in a pop-up image when you click on the image.</p><p><b>Categories tab</b> – "
98
+ "add tags for image categories.</p><p><b>Linked images tab</b> – add linked images to "
99
+ "the chosen image.</p><p><b>Crop tab</b> – choose image crop position.</p><p><b>Replace "
100
+ "image tab</b> – replace image without losing image settings.</p><p>Now follow to the "
101
+ "gallery settings – сlick “Properties” button.</p>"
102
+ msgstr ""
103
+ "<p>现在你可以看到图片列表. 这里,你可以:</p><p>更改图片顺序 – 手动拖动图片即可.</p><p>"
104
+ "删除图片.</p><p>从不同来源向网格相册中添加图片 –点击 “添加图片” 按钮并选择添加来源.</"
105
+ "p><p><b>说明文字标签</b> – 给图片添加说明文字 – 将会展示在相册说明文字效果中. 在文字说"
106
+ "明效果中也包含了HTML元素支持</p><p><b>SEO标签</b> – 管理图片标题和描述</p><p><b>链接标"
107
+ "签</b> – 给图片添加链接 – 点击该图片可以访问对应链接.</p><p><b>视频标签</b> –添加视频链"
108
+ "接 –点击该图片会弹出播放窗口.</p><p><b>分类标签</b> – 给图片分类添加标签.</p><p><b>链接"
109
+ "到的图片标签</b> – 给选择的图片添加链接到的图片.</p><p><b>裁切标签</b> – 选择图片剪切位"
110
+ "置.</p><p><b>替换标签</b> –替换图片并保持图片设置不变.</p><p>现在来跟着我设置相册吧– 点"
111
+ "击 “属性” 按钮.</p>"
112
 
113
+ msgid ""
114
+ "<p>On Captions tab you can manage the Captions and Icons, and make them your style.</p>"
115
+ msgstr "<p>在说明文字标签您可以管理说明文字并且可以变成您喜欢的风格。</p>"
116
 
117
+ msgid ""
118
+ "<p>Posts tab: here you can add posts and pages to your gallery and also manage them. "
119
+ "Posts of gallery included in the PRO version of Gallery by Supsystic.</p>"
120
+ msgstr ""
121
+ "<p>文章标签:您可以在这里添加文章和页面并且管理他们。图册文章功能包含在PRO版本中。</p>"
122
 
123
+ msgid ""
124
+ "<strong>Gallery</strong> &mdash; the highest type of entity in the Gallery by "
125
+ "Supsystic."
126
+ msgstr "<strong>相册</strong> &mdash; Supsystic 诚意出品."
127
 
128
+ msgid "Activate"
129
+ msgstr "激活"
130
 
131
+ msgid "Activate License"
132
+ msgstr "激活许可证"
133
 
134
+ msgid "Add Images"
135
+ msgstr "添加图像"
136
 
137
+ msgid "Add images"
138
+ msgstr "添加图片"
139
 
140
+ msgid "Add images to the gallery"
141
+ msgstr "添加图片到该画册"
142
 
143
+ msgid "Add images to the new gallery"
144
+ msgstr "添加图片到该相册"
145
 
146
+ msgid "Add images to your Gallery"
147
+ msgstr "添加图片到该相册"
148
 
149
+ msgid "Add nofollow attribute"
150
+ msgstr "添加nofollow属性"
151
 
152
+ msgid "Add selected items"
153
+ msgstr "添加所选的项目"
154
 
155
+ msgid "Add selected to the gallery"
156
+ msgstr "添加所选到相册"
157
 
158
+ msgid "Add the selected items to the existing gallery"
159
+ msgstr "将选定的项目添加到现有相册"
160
 
161
+ msgid "Add watermarks to your photos"
162
+ msgstr "给照片添加水印"
 
 
 
 
 
 
 
 
163
 
164
+ msgid "After"
165
+ msgstr "之后"
166
 
167
+ msgid "Albums"
168
+ msgstr "专辑"
169
 
170
+ msgid "Align"
171
+ msgstr "对齐"
172
 
173
+ msgid "All"
174
+ msgstr "全部"
175
 
176
+ msgid "All photos"
177
+ msgstr "所有照片"
178
 
179
+ msgid "Alt text"
180
+ msgstr "替代文本"
181
 
182
+ msgid "Alternative text"
183
+ msgstr "可选文字"
184
 
185
+ msgid "An error has occurred"
186
+ msgstr "发生错误"
187
 
188
+ msgid "Animation"
189
+ msgstr "动画"
190
 
191
+ msgid "Animation Effect"
192
+ msgstr "动画效果"
193
 
194
+ msgid "Animation Effects"
195
+ msgstr "动画效果"
196
 
197
+ msgid "Animation duration"
198
+ msgstr "动画时间"
199
 
200
+ msgid "Animation start"
201
+ msgstr "动画开始"
202
 
203
+ msgid "Another Service"
204
+ msgstr "另一项服务"
205
 
206
+ msgid "Another Service Settgins"
207
+ msgstr "另一项服务设置"
208
 
209
+ msgid "Aperture"
210
+ msgstr "光圈"
211
 
212
+ msgid "Apply"
213
+ msgstr "应用"
214
 
215
+ msgid "Apply to all images"
216
+ msgstr "应用于所有图片"
217
 
218
+ msgid "Are you really want to delete preset \"%s\"?"
219
+ msgstr "您确定要删除”%s”预设?"
220
 
221
+ msgid "Are you sure you want to delete this gallery?"
222
+ msgstr "确实要删除此库吗?"
223
 
224
+ msgid ""
225
+ "At the left side of the monitor you see a preview image in which will be seen changes "
226
+ "made to the settings. This window for the settings of your gallery."
227
+ msgstr ""
228
+ "图集属性:在监视器的左边,你看到一个预览图像,将被视为对设置的更改。在这个窗口设置您的"
229
+ "图集。"
230
 
231
+ msgid "Auth key saved!"
232
+ msgstr "授权秘钥已保存!"
233
 
234
+ msgid "Authorization code is not specified."
235
+ msgstr "不指定授权码。"
236
 
237
+ msgid "Authorization oauth_verifier is not specified."
238
+ msgstr "未指定授权 oauth_verifier。"
239
 
240
+ msgid "Auto Posts Categories"
241
+ msgstr "自动帖子类别"
242
 
243
+ msgid "Auto posts"
244
+ msgstr "自动滚动文章"
245
 
246
+ msgid "Auto, Did not fire"
247
+ msgstr "自动,无闪光灯"
248
 
249
+ msgid "Auto, Did not fire, Red-eye reduction"
250
+ msgstr "自动,无闪光灯,减少红眼"
251
 
252
+ msgid "Auto, Fired"
253
+ msgstr "自动,闪光灯开启"
254
 
255
+ msgid "Auto, Fired, Red-eye reduction"
256
+ msgstr "自动,闪光灯开启,减少红眼"
257
 
258
+ msgid "Auto, Fired, Red-eye reduction, Return detected"
259
+ msgstr "自动,闪光灯开启,减少红眼,检测到反射光"
260
 
261
+ msgid "Auto, Fired, Red-eye reduction, Return not detected"
262
+ msgstr "自动,闪光灯开启,减少红眼,未检测到反射光"
263
 
264
+ msgid "Auto, Fired, Return detected"
265
+ msgstr "自动,闪光灯开启,检测到反射光"
266
 
267
+ msgid "Auto, Fired, Return not detected"
268
+ msgstr "自动,闪光灯开启,减少红眼,未检测到反射光"
269
 
270
+ msgid "Autoplay video"
271
+ msgstr "自动播放视频"
272
 
273
+ msgid "Available"
274
+ msgstr "可用"
275
 
276
+ msgid "Available in PRO version."
277
+ msgstr "升级到专业版."
278
 
279
+ #, fuzzy
280
+ #| msgid "Available in PRO version."
281
+ msgid "Available in Pro"
282
+ msgstr "升级到专业版"
283
 
284
+ msgid "Back to the gallery"
285
+ msgstr "返回图库"
286
 
287
+ msgid "Background"
288
+ msgstr "背景"
289
 
290
+ msgid "Background Transparency"
291
+ msgstr "背景透明度"
292
 
293
+ msgid "Background color"
294
+ msgstr "背景颜色"
295
 
296
+ msgid "Background color for \"Show on hover\""
297
+ msgstr "鼠标悬浮时显示的背景颜色"
298
 
299
+ msgid "Background hover color"
300
+ msgstr "背景悬停颜色"
301
 
302
+ msgid "Background transparency"
303
+ msgstr "背景透明度"
304
 
305
+ msgid "Backup Images Source"
306
+ msgstr "备份图片源"
307
 
308
+ msgid "Backup Plugin"
309
+ msgstr "备份插件"
310
 
311
+ msgid ""
312
+ "Backup and Restore WordPress Plugin by Supsystic provides quick and unhitched DropBox, "
313
+ "FTP, Amazon S3, Google Drive backup for your WordPress website."
314
+ msgstr ""
315
+ "Supsystic 备份/恢复WordPress插件为你的WordPress站点提供快速无捆绑的DropBox, FTP, "
316
+ "Amazon S3, Google Drive备份方案."
317
 
318
+ msgid ""
319
+ "Be closer to your visitors and customers with Live Chat Support by Supsystic. Help you "
320
+ "visitors, support them in real-time with exceptional Live Chat WordPress plugin by "
321
+ "Supsystic."
322
+ msgstr ""
323
+ "通过Supsystic的在线聊天支持更加贴近你的访客和客户. 通过Supsystic 强大的WordPress实时在"
324
+ "线聊天插件支持和帮助他们."
325
 
326
+ msgid "Before"
327
+ msgstr "前于"
328
 
329
+ msgid "Bold"
330
+ msgstr "粗体"
331
 
332
+ msgid "Border"
333
+ msgstr "边框"
334
 
335
+ msgid "Border Type"
336
+ msgstr "边框类型"
337
 
338
+ msgid "Border color"
339
+ msgstr "边框颜色"
340
 
341
+ msgid "Border radius"
342
+ msgstr "边框半径"
343
 
344
+ msgid "Border style"
345
+ msgstr "边框样式"
346
 
347
+ msgid "Border type"
348
+ msgstr "边框类型"
349
 
350
+ msgid "Border width"
351
+ msgstr "边框宽度"
352
 
353
+ msgid "Bottom"
354
+ msgstr "底部"
355
 
356
+ msgid "Bottom Center"
357
+ msgstr "底部居中"
358
 
359
+ msgid "Bottom Left"
360
+ msgstr "底部居左"
361
 
362
+ msgid "Bottom Right"
363
+ msgstr "底部居右"
364
+
365
+ msgid "Buttons"
366
+ msgstr "按钮"
367
+
368
+ msgid "Buttons align"
369
+ msgstr "按钮对齐"
370
 
371
  msgid "Buttons position"
372
  msgstr "按钮位置"
373
 
374
+ msgid "Buttons preset editor for Paginations, Categories and Load More buttons"
375
+ msgstr "分页符, 分类,加载更多的按钮预设编辑器"
376
 
377
+ msgid "Camera"
378
+ msgstr "相机"
379
 
380
+ msgid "Camera model"
381
+ msgstr "相机模式"
382
 
383
+ msgid "Can't create restore directory!"
384
+ msgstr "无法创建回复目录!"
385
 
386
+ msgid "Can't create restore file!"
387
+ msgstr "无法创建恢复文件!"
388
 
389
+ msgid "Can't check current version of cUrl extension"
390
+ msgstr "无法获取目前cUrl扩展的版本"
391
 
392
+ msgid "Can't create image position for gallery!"
393
+ msgstr "无法为相册创建图片位置!"
394
 
395
+ msgid "Can't create membership params for gallery!"
396
+ msgstr "无法为相册创建会员参数!"
397
 
398
+ msgid "Can't create resources for gallery!"
399
+ msgstr "无法为相册创建资源!"
400
 
401
+ msgid "Can't create settings for gallery!"
402
+ msgstr "无法为相册创建设置!"
403
 
404
+ msgid "Cancel"
405
+ msgstr "取消"
406
 
407
+ msgid "Caption"
408
+ msgstr "字幕"
409
 
410
+ msgid "Captions"
411
+ msgstr "说明"
412
 
413
+ msgid "Captions and Icons"
414
+ msgstr "字幕和图标"
415
 
416
+ msgid "Categories"
417
+ msgstr "分类目录"
418
 
419
+ msgid "Categories and Pagination"
420
+ msgstr "分类和分页"
421
 
422
+ msgid "Categories order"
423
+ msgstr "分类顺序"
424
 
425
+ msgid "Categorize images in the gallery"
426
+ msgstr "对相册中的图像进行分类"
427
 
428
+ msgid "Center"
429
+ msgstr "中心对齐"
430
 
431
+ msgid "Center Center"
432
+ msgstr "中心居中"
433
 
434
+ msgid "Change Details"
435
+ msgstr "更改详细信息"
436
 
437
+ msgid "Check all other FAQs"
438
+ msgstr "查看全部其它问题"
439
 
440
+ msgid "Choose"
441
+ msgstr "选择"
442
 
443
+ msgid "Choose Gallery Template."
444
+ msgstr "选择相册模板."
445
 
446
+ msgid "Choose Gallery Template. You can change template and settings on the next step."
447
+ msgstr "选择相册模板. 你可以在下一步更改模板和设置."
448
 
449
+ msgid "Choose Icon"
450
+ msgstr "选择图标"
 
 
 
 
451
 
452
+ msgid "Choose effect"
453
+ msgstr "选择效果"
454
 
455
+ msgid "Choose icon"
456
+ msgstr "选择图标"
457
 
458
+ msgid "Choose image"
459
+ msgstr "选择图片"
460
 
461
+ msgid "Choose images"
462
+ msgstr "选择图像"
463
 
464
+ msgid "Choose preset"
465
+ msgstr "选择一个预设"
466
 
467
+ msgid "Choose source"
468
+ msgstr "选择数据源"
469
 
470
+ msgid "Choose theme"
471
+ msgstr "选择主题"
472
 
473
+ msgid "Click on the icon to select effect"
474
+ msgstr "单击该图标,选择效果"
475
 
476
+ msgid "Clone"
477
+ msgstr "克隆"
478
 
479
+ msgid "Clone type parameter is incorrect"
480
+ msgstr "克隆类型参数错误"
481
 
482
+ msgid "Clone with images"
483
+ msgstr "带图片克隆"
484
 
485
+ msgid "Clone without images"
486
+ msgstr "无图片克隆"
487
 
488
+ msgid "Cloned "
489
+ msgstr "克隆成功"
490
 
491
+ msgid ""
492
+ "Cloned gallery ' . $galleryId);\n"
493
+ "\t\t\t}\n"
494
+ "\t\t\tif(!$this->add($ggTitle)) {\n"
495
+ "\t\t\t\t$message = $language->translate('Can't create new gallery!"
496
+ msgstr ""
497
+ "已克隆相册 ' . $galleryId);\n"
498
+ "\t\t\t}\n"
499
+ "\t\t\tif(!$this->add($ggTitle)) {\n"
500
+ "\t\t\t\t$message = $language->translate('Can't create new gallery!"
501
 
502
+ msgid "Cloning gallery..."
503
+ msgstr "克隆相册中……"
504
 
505
+ msgid "Close Tutorial"
506
+ msgstr "关闭教程"
507
 
508
+ msgid "Close popup"
509
+ msgstr "关闭弹窗"
510
 
511
+ msgid "Color"
512
+ msgstr "颜色"
513
 
514
+ msgid "Coming Soon Plugin"
515
+ msgstr "即将上线插件"
516
 
517
+ msgid ""
518
+ "Coming soon page with drag-and-drop builder or under construction | maintenance mode "
519
+ "to notify visitors and collects emails."
520
+ msgstr "带有拖放编辑器的即将上线页面或建设中 | 维护中模式页面来通知访客并收集邮件. "
521
+
522
+ msgid ""
523
+ "Congratulations! You have successfully installed and activated PRO version of ' ~ "
524
+ "environment.getMenu().getMenuTitle() ~ ' plugin."
525
  msgstr ""
526
+ "祝贺你 !您已成功安装并激活 PRO 版本的 ‘~ environment.getMenu().getMenuTitle() ~’ 插"
527
+ "件。"
528
 
529
+ msgid "Connected to"
530
+ msgstr "连接到"
531
 
532
+ msgid "Contact Form Plugin"
533
+ msgstr "联系表单插件"
534
 
535
+ msgid "Container background"
536
+ msgstr "容器背景"
537
 
538
+ msgid "Couldn't get the plugin to work"
539
+ msgstr "插件无法工作"
540
 
541
+ msgid ""
542
+ "Create and manage beautiful data tables with custom design. No HTML knowledge is "
543
+ "required."
544
+ msgstr "创建并管理可自定义的美观的数据表格. 且不需要任何HTML知识."
545
 
546
+ msgid "Create new folder"
547
+ msgstr "创建新文件夹"
548
 
549
+ msgid "Create new gallery"
550
+ msgstr "创建新相册"
551
 
552
+ msgid "Create new gallery from the selected items"
553
+ msgstr "创建新选项"
554
 
555
+ msgid ""
556
+ "Create online membership community with custom user profiles, roles, FrontEnd "
557
+ "registration and login. Members Directory, activity, groups, messages."
558
  msgstr ""
559
+ "创建带有用户档案, 角色,前端注册和登录, 会员目录,活动,组,信息等功能的在线会员社区."
560
 
561
+ msgid "Create your first Gallery"
562
+ msgstr "创建您的第一个图集"
563
 
564
+ msgid "Create your first project"
565
+ msgstr "创建你的第一个项目"
566
 
567
+ msgid ""
568
+ "Creating slideshows with Slider plugin is fast and easy. Simply select images from "
569
+ "your WordPress Media Library, Flickr, Instagram or Facebook, set slide captions, links "
570
+ "and SEO fields all from one page."
571
  msgstr ""
572
+ "应用轮播图插件可以快速轻松的创建轮播图. 只要在同一页从你的WorePress媒体库, Flickr,"
573
+ "Instagram或Facebook中选择图片,然后设置轮播文字说明,链接和SEO字段即可."
574
 
575
+ msgid "Crop"
576
+ msgstr "裁切"
577
 
578
+ msgid "Currently this gallery has no images"
579
+ msgstr "目前此相册有没有图像"
580
 
581
+ msgid "Currently you have no presets."
582
+ msgstr "目前你没有预设。"
583
 
584
+ msgid "Custom Buttons"
585
+ msgstr "自定义按钮"
586
 
587
+ msgid "Custom class"
588
+ msgstr "自定义class"
589
 
590
+ msgid "Data Tables Generator"
591
+ msgstr "数据表格生成器"
592
 
593
+ msgid "Date"
594
+ msgstr "日期"
595
 
596
+ msgid "Delay for"
597
+ msgstr "延迟了"
598
 
599
+ msgid "Delete Image"
600
+ msgstr "删除图片"
601
 
602
+ msgid "Delete gallery"
603
+ msgstr "删除相册"
604
 
605
+ msgid "Delete preset"
606
+ msgstr "删除该预设"
607
 
608
+ msgid "Delete selected items"
609
+ msgstr "删除已选项"
610
 
611
+ msgid "Delete source image after transfer"
612
+ msgstr "传输完毕后删除源图"
613
 
614
+ msgid "Description"
615
+ msgstr "描述"
616
 
617
+ msgid "Digital Publication Plugin"
618
+ msgstr "数字出版插件"
619
 
620
  msgid ""
621
+ "Digital Publication WordPress Plugin by Supsystic for Magazines, Catalogs, Portfolios. "
622
+ "Convert images, posts, PDF to the page flip book."
623
  msgstr ""
624
+ "Supsystic WordPress数字出版插件为杂志,目录,作品集把图片、文章、PDF文件转换成翻页图书."
625
 
626
+ msgid "Disable"
627
+ msgstr "停用"
628
 
629
+ msgid "Disable browser history"
630
+ msgstr "停用浏览历史"
631
 
632
+ msgid "Disable captions on mobile"
633
+ msgstr "在移动设备上停用说明文字"
634
 
635
+ msgid "Disable on mobile"
636
+ msgstr "在移动设备上停用"
637
 
638
+ msgid "Disable right click"
639
+ msgstr "禁用右键"
640
 
641
+ msgid "Disable source image for Linked Images"
642
+ msgstr "对于带有链接的图禁止访问源图"
643
 
644
+ msgid "Disable title optimize"
645
+ msgstr "停止标题优化"
646
 
647
+ msgid "Display all images"
648
+ msgstr "显示所有图片"
649
 
650
  msgid ""
651
+ "Display custom Google Maps. Set markers and locations with text, images, categories "
652
+ "and links. Customize google map in a simple and intuitive way."
 
 
 
653
  msgstr ""
654
+ "显示定制google地图. 使用文本,图片,分类和链接设置标记和地点. 用简洁直观的方式定制"
655
+ "google地图."
656
 
657
+ msgid "Display only first image"
658
+ msgstr "显示仅第一个图片"
 
 
 
659
 
660
+ msgid "Distance between icons"
661
+ msgstr "图标之间的距离"
662
 
663
+ msgid "Do nothing"
664
+ msgstr "什么都不做"
 
 
665
 
666
+ msgid "Drop photos here to move them from the folder"
667
+ msgstr "拖放照片到该文件夹这里"
668
 
669
  msgid ""
670
+ "Each gallery has a number of display settings and behaviors that you can save to "
671
+ "presets and apply to other galleries."
672
+ msgstr "每个库有大量的显示设置和行为,你可以保存到预置并应用到其他画廊。"
673
 
674
+ msgid "Edit image"
675
+ msgstr "编辑图片"
676
 
677
+ msgid "Edit selected item"
678
+ msgstr "编辑已选项"
 
 
679
 
680
+ msgid "Effect"
681
+ msgstr "效果"
682
 
683
+ msgid "Email"
684
+ msgstr "电子邮件"
 
 
 
685
 
686
+ msgid "Embeded video"
687
+ msgstr "嵌入式视频"
688
 
689
+ msgid "Empty user data."
690
+ msgstr "空的用户数据。"
 
 
691
 
692
+ msgid "Enable"
693
+ msgstr "启用"
694
 
695
+ msgid "Enable cUrl extension"
696
+ msgstr "启用cUrl扩展"
 
 
697
 
698
+ msgid "Enable for Membership:"
699
+ msgstr "为会员启用:"
700
 
701
+ msgid "Enable pagination"
702
+ msgstr "启用分页"
 
 
703
 
704
+ msgid "Enable shuffling animation"
705
+ msgstr "启用随机播放动画"
706
 
707
+ msgid "Enter images folder name, e.g. my-images"
708
+ msgstr "输入图像文件夹名称,例如我图像"
 
 
709
 
710
+ msgid "Enter the full path to images folder"
711
+ msgstr "输入图像文件夹的完整路径"
712
 
713
+ msgid "Enter your KeyCdn Zone name (for example: pz-6f09.kxcdn.com)"
714
+ msgstr "输入你的KeyCdn域名(例如:pz-6f09.kxcdn.com)"
 
 
715
 
716
+ msgid "Enter your KeyCdn ftp base path (for example: /pz)"
717
+ msgstr "输入你的KeyCdn ftp根目录(例如:/pz)"
718
 
719
+ msgid "Enter your KeyCdn password"
720
+ msgstr "输入你的KeyCdn密码"
 
 
721
 
722
+ msgid "Enter your KeyCdn username"
723
+ msgstr "输入你的KeyCdn用户名"
724
 
725
+ msgid "Enter your Site name"
726
+ msgstr "输入你的站点名称"
 
 
 
727
 
728
+ msgid "Enter your TinyPNG API key"
729
+ msgstr "输入你的TinyPNG API 秘钥"
730
+
731
+ msgid "Enter your ftp base path"
732
+ msgstr "输入你的ftp根目录"
733
 
734
  msgid ""
735
+ "Enter your name and email address on this <a target='_blank' href='https://tinypng.com/"
736
+ "developers'>page</a> to retrieve your API key. On your email will be sent a link to "
737
+ "your API key. Follow the link from email and grab your API key."
738
  msgstr ""
739
+ "在这个 <a target='_blank' href='https://tinypng.com/developers'>页面</a>输入你的姓名和"
740
+ "邮箱地址来获取你的API秘钥. 你的邮箱将收到包含API秘钥链接的邮件. 点击该链接获取你的API秘"
741
+ "钥."
742
 
743
+ msgid "Enter your password"
744
+ msgstr "输入密码"
745
 
746
+ msgid "Enter your username"
747
+ msgstr "输入用户名"
748
 
749
+ msgid "Error occurred"
750
+ msgstr "发生错误"
751
 
752
+ msgid "Error occurred!"
753
+ msgstr "发生错误!"
754
 
755
+ msgid "Error ocured. Optimize process stopped!"
756
+ msgstr "发生错误. 优化中止!"
757
 
758
+ msgid "Error! Incorrect auth params!"
759
+ msgstr "错误的授权参数!"
760
 
761
+ msgid "Error! Incorrect params!"
762
+ msgstr "错误的参数!"
763
 
764
+ msgid "Error! Incorrect selected service!"
765
+ msgstr "服务选择错误!"
766
 
767
+ msgid "Error! Incorrect service params!"
768
+ msgstr "服务参数错误!"
769
 
770
+ msgid "Expand"
771
+ msgstr "展开"
772
 
773
+ msgid "Expand the image"
774
+ msgstr "展开图片"
775
 
776
+ msgid "Exposure Bias"
777
+ msgstr "曝光偏差"
778
 
779
+ msgid "External link"
780
+ msgstr "外部链接"
781
 
782
+ msgid "FTP"
783
+ msgstr "FTP"
784
 
785
+ msgid "Facebook"
786
+ msgstr "Facebook"
787
 
788
+ msgid "Facebook authorization"
789
+ msgstr "Facebook 授权"
790
 
791
+ msgid "Failed to delete the gallery"
792
+ msgstr "删除相册失败"
793
 
794
+ msgid "Failed to find the preset."
795
+ msgstr "未能找到预设值参数."
796
 
797
+ msgid "Failed to load the presets."
798
+ msgstr "预设值参数加载失败."
799
 
800
+ msgid "Failed to rename the gallery"
801
+ msgstr "重命名失败"
802
 
803
+ msgid "Failed to update position."
804
+ msgstr "更新的位置出错。"
 
805
 
806
+ msgid "Featured Plugins"
807
+ msgstr "推荐插件"
808
 
809
+ msgid "Fired"
810
+ msgstr "闪光灯开启"
811
 
812
+ msgid "Fired, Red-eye reduction"
813
+ msgstr "闪光灯开启, 降低红眼"
 
814
 
815
+ msgid "Fired, Red-eye reduction, Return detected"
816
+ msgstr "闪光灯开启, 降低红眼, 检测到反光"
817
 
818
+ msgid "Fired, Red-eye reduction, Return not detected"
819
+ msgstr "闪光灯开启, 降低红眼, 未检测到反光"
820
 
821
+ msgid "Fired, Return detected"
822
+ msgstr "闪光灯开启, 检测到反光"
823
 
824
+ msgid "Fired, Return not detected"
825
+ msgstr "闪光灯开启, 未检测到反光"
826
 
827
+ msgid "First"
828
+ msgstr "第一"
829
 
830
+ msgid "Fit To Screen"
831
+ msgstr "适应屏幕"
832
 
833
+ msgid "Fit Width"
834
+ msgstr "适应宽度"
835
 
836
+ msgid "Flash"
837
+ msgstr "Flash"
838
 
839
+ msgid "Flickr"
840
+ msgstr "Flickr"
841
 
842
+ msgid "Flickr authorization"
843
+ msgstr "Flickr 授权"
844
 
845
+ msgid "Focal Length"
846
+ msgstr "焦距"
847
 
848
+ msgid "Folder name:"
849
+ msgstr "文件夹名:"
850
 
851
+ msgid "Font"
852
+ msgstr "字体"
853
 
854
+ msgid "Font family"
855
+ msgstr "字体库"
856
 
857
+ msgid "Font size"
858
+ msgstr "字体大小"
859
 
860
+ msgid "Font style"
861
+ msgstr "字体类型"
862
 
863
+ msgid "Font weight"
864
+ msgstr "字体式样"
865
 
866
+ msgid "Frequently Asked Questions"
867
+ msgstr "常见问题"
868
 
869
+ msgid "Full screen width"
870
+ msgstr "屏幕宽度"
871
 
872
+ msgid "Fullscreen"
873
+ msgstr "全屏显示"
 
 
874
 
875
+ msgid "Galleries"
876
+ msgstr "相册"
 
 
877
 
878
+ msgid "Gallery Image optimizing..."
879
+ msgstr "相册图片优化中……"
 
 
880
 
881
+ msgid "Gallery Loader"
882
+ msgstr "相册加载器"
883
 
884
+ msgid "Gallery Name"
885
+ msgstr "相册名称"
886
 
887
+ msgid "Gallery Name:"
888
+ msgstr "相册名称:"
 
 
 
889
 
890
+ msgid "Gallery Position"
891
+ msgstr "相册位置"
892
 
893
+ msgid "Gallery Sharing"
894
+ msgstr "图集分享"
895
 
896
+ msgid "Gallery Type"
897
+ msgstr "相册类型"
898
 
899
+ msgid "Gallery by Supsystic"
900
+ msgstr "Supsystic相册"
901
 
902
+ msgid "Gallery clone error"
903
+ msgstr "克隆相册出错"
904
 
905
+ msgid ""
906
+ "Gallery doesn’t load on the front end. If the loading gallery icon just keeps playing "
907
+ "but never loads the gallery."
908
+ msgstr "如果加载相册图标一直转动但是没有读取相册的话,表明相册并未在前端加载. "
909
 
910
+ msgid "Gallery height"
911
+ msgstr "图像高度"
912
 
913
+ msgid "Gallery image optimization error ocured."
914
+ msgstr "相册图片优化出错."
915
 
916
+ msgid "Gallery link"
917
+ msgstr "相册链接"
918
 
919
+ msgid "Gallery padding"
920
+ msgstr "图像填充"
921
 
922
+ msgid "Gallery title can't be empty!"
923
+ msgstr "图集标题不能为空!"
924
 
925
+ msgid "Gallery title:"
926
+ msgstr "相册标题:"
927
 
928
+ msgid "Gallery width"
929
+ msgstr "图库宽度"
930
 
931
+ msgid "Get PRO"
932
+ msgstr "获取PRO"
933
 
934
+ msgid "Get Pro to enable import"
935
+ msgstr "获得 Pro版本 开启导入"
936
 
937
+ msgid "GetPRO for 29$"
938
+ msgstr "29刀购买PRO版本"
939
 
940
+ msgid "Go to Appearance -> Widgets."
941
+ msgstr "转到外观->小工具。"
942
 
943
+ msgid "Google Drive"
944
+ msgstr "Google Drive"
945
 
946
+ msgid "Google Drive authorization"
947
+ msgstr "Google Drive 授权"
948
 
949
+ msgid "Google Maps Easy"
950
+ msgstr "Google Maps Easy"
951
 
952
+ msgid "Hello Supsystic Team!"
953
+ msgstr "你好! Supsystic 团队!"
954
 
955
+ msgid "Hello! This is the Gallery by Supsystic Overview."
956
+ msgstr "你好 !这是由 Supsystic 概述相册。"
957
 
958
+ msgid ""
959
+ "Here you can get help: watch the video tutorial or read FAQ and Documentation, make "
960
+ "use of contact form. Also here requirements for server - Server Settings."
961
+ msgstr ""
962
+ "在这里你可以得到帮助︰ 观看视频教程或阅读常见问题和文档,使使用的联系人窗体。这里还要求"
963
+ "服务器-服务器设置。"
964
 
965
+ msgid ""
966
+ "Here you can import settings from other galleries, but right now, you have only one "
967
+ "gallery, create more - and see how it works"
968
+ msgstr ""
969
+ "在这里你可以从导入设置其他相册,但现在,你只有一个相册,创建更多-并看到它是如何工作"
970
 
971
+ msgid ""
972
+ "Here you can specify your business pages and images will load from those pages. You "
973
+ "can set several pages, just separate ID of pages by \",\". To get the ID of your page "
974
+ "you need to switch to the wanted page, then click on \"About\" link right below page "
975
+ "cover, and at the bottom of \"About\" page you will find Facebook Page ID."
976
+ msgstr ""
977
+ "您可以在这里指定商业页面并且从这些页面里加载图片。您可以设置多个页面,只需要使用“,”隔开"
978
+ "ID即可。您需要开关目标页面以获取页面ID,然后点击页面封面右下角的“关于”链接,并且页面上"
979
+ "的“关于”按钮您可以找到Facebook页面ID。"
980
 
981
+ msgid "Hide \"All\" category"
982
+ msgstr "隐藏\"All\"类别"
983
 
984
+ msgid "Hide Popup Captions"
985
+ msgstr "隐藏弹出窗口标题"
986
 
987
+ msgid "Hide browser url tooltip on image hover"
988
+ msgstr "鼠标悬停在图片上时隐藏浏览器链接提示"
989
 
990
+ msgid "Hide container background."
991
+ msgstr "隐藏容器背景。"
992
 
993
+ msgid "Hide image title tooltip"
994
+ msgstr "隐藏图像标题工具提示"
995
 
996
+ msgid "Hide long titles"
997
+ msgstr "隐藏长标题"
998
 
999
+ msgid "Hide mouse on"
1000
+ msgstr "隐藏鼠标"
1001
 
1002
+ msgid "Hide text background."
1003
+ msgstr "隐藏文本背景。"
1004
 
1005
+ msgid "Hope you will come back!"
1006
+ msgstr "期待你回来!"
1007
 
1008
+ msgid "Horizontal (normal)"
1009
+ msgstr "横向滚动条(普通)"
1010
 
1011
+ msgid "Horizontal Scroll"
1012
+ msgstr "横向滚动条"
1013
 
1014
+ msgid "Horizontal padding"
1015
+ msgstr "水平填充"
1016
 
1017
+ msgid "Host"
1018
+ msgstr "主机名"
 
 
1019
 
1020
+ msgid "How to change the position of photos in gallery?"
1021
+ msgstr "如何更改图集中的位置?"
1022
 
1023
+ msgid "How to fit image in lightbox"
1024
+ msgstr "图片如何在lightbox中自适应大小"
1025
 
1026
+ msgid "How to insert gallery into widget?"
1027
+ msgstr "如何将图集插件添加到WordPress小工具?"
1028
 
1029
+ msgid "I found a better plugin"
1030
+ msgstr "我找到了更好的插件"
1031
 
1032
+ msgid "I no longer need the plugin"
1033
+ msgstr "我不再需要本插件."
1034
 
1035
+ msgid "ISO"
1036
+ msgstr "ISO"
1037
 
1038
+ msgid "Icon entry type"
1039
+ msgstr "图标入口类型"
1040
 
1041
+ msgid "Icons"
1042
+ msgstr "图标"
1043
 
1044
+ msgid "Icons Transparency"
1045
+ msgstr "图标透明度"
1046
 
1047
+ msgid "Icons color"
1048
+ msgstr "图标颜色"
1049
 
1050
+ msgid "Icons hover color"
1051
+ msgstr "图标悬停颜色"
1052
 
1053
+ msgid "Icons size"
1054
+ msgstr "图标大小"
1055
 
1056
+ msgid "If it's possible, specify plugin name"
1057
+ msgstr "如果可能, 请具体提供一下插件名称."
1058
 
1059
+ msgid ""
1060
+ "If you have a moment, please share why you are deactivating Photo Gallery by Supsystic"
1061
+ msgstr "如果你有时间,请给我们分享一下你停用Supsystic照片相册插件的原因。"
1062
 
1063
+ msgid ""
1064
+ "If you have a question, <a href=\"%s\" target=\"_blank\">contact us</a> and will do "
1065
+ "our best to help you"
1066
+ msgstr ""
1067
+ "如果你有问题, <a href=\"%s\" target=\"_blank\">联系我们</a> , 我们将尽力给你提供帮助."
1068
 
1069
+ msgid "Image"
1070
+ msgstr "图像"
1071
 
1072
+ msgid "Image Count"
1073
+ msgstr "图像计数"
1074
 
1075
+ msgid "Image Count Text"
1076
+ msgstr "图像计数文本"
1077
 
1078
+ msgid "Image Editor"
1079
+ msgstr "图片编辑器"
1080
 
1081
+ msgid "Image List"
1082
+ msgstr "图片列表"
1083
 
1084
+ msgid "Image Load"
1085
+ msgstr "加载图片"
1086
 
1087
+ msgid "Image Optimization"
1088
+ msgstr "图片优化"
1089
 
1090
+ msgid "Image Optimize"
1091
+ msgstr "图片优化"
1092
 
1093
+ msgid "Image Sharing"
1094
+ msgstr "图像分享"
1095
 
1096
+ msgid "Image crop quality"
1097
+ msgstr "图像质量"
1098
 
1099
+ msgid "Image height"
1100
+ msgstr "图像高度"
1101
 
1102
+ msgid "Image on hover"
1103
+ msgstr "鼠标悬停图片"
1104
 
1105
+ msgid "Image optimization"
1106
+ msgstr "图片优化"
1107
 
1108
+ msgid "Image radius"
1109
+ msgstr "图像半径"
1110
 
1111
+ msgid "Image reccollected successfully. Processed "
1112
+ msgstr "图片已成功获取。 处理完成 "
1113
 
1114
+ msgid "Image width"
1115
+ msgstr "图片宽度"
1116
 
1117
+ msgid "Images"
1118
+ msgstr "图片"
1119
 
1120
+ msgid "Images Import Options"
1121
+ msgstr "图像导入选项"
1122
 
1123
+ msgid "Images Optimization"
1124
+ msgstr "图片优化"
1125
 
1126
+ msgid "Images amount"
1127
+ msgstr "图像数量"
1128
 
1129
+ msgid "Images count"
1130
+ msgstr "图像计数"
1131
 
1132
+ msgid "Images distance"
1133
+ msgstr "图像的距离"
1134
 
1135
+ msgid "Images list"
1136
+ msgstr "相册列表"
1137
 
1138
+ msgid "Images not in albums"
1139
+ msgstr "图片不在相册中"
1140
 
1141
+ msgid "Images per page"
1142
+ msgstr "每页图片数"
1143
 
1144
+ msgid "Images size after:"
1145
+ msgstr "在其之后的图片大小:"
1146
 
1147
+ msgid "Images size before:"
1148
+ msgstr "在其之前的图片大小:"
1149
 
1150
+ msgid "Images: "
1151
+ msgstr "图片"
1152
+
1153
+ msgid "Import EXIF data"
1154
+ msgstr "导入EXIF数据"
1155
+
1156
+ msgid "Import from WordPress Media Library"
1157
+ msgstr "从WordPress的媒体库导入"
1158
+
1159
+ msgid "Import from cloud services"
1160
+ msgstr "从云服务中导入"
1161
+
1162
+ msgid "Import from social networks"
1163
+ msgstr "从社交网络导入"
1164
+
1165
+ msgid "Import from your FTP server"
1166
+ msgstr "从 FTP 服务器导入"
1167
+
1168
+ msgid "Import from your Facebook account"
1169
+ msgstr "从您的 Facebook 帐户导入"
1170
+
1171
+ msgid "Import from your Flickr account"
1172
+ msgstr "从您的 Flickr 帐户中导入"
1173
+
1174
+ msgid "Import from your Google Drive account"
1175
+ msgstr "从您的 Google Drive 帐户导入"
1176
+
1177
+ msgid "Import from your Instagram account"
1178
+ msgstr "从您的 Instagram 帐户导入"
1179
+
1180
+ msgid "Import from your Tumblr account"
1181
+ msgstr "从您的 Tumblr 帐户导入"
1182
+
1183
+ msgid "Import images"
1184
+ msgstr "导入图像"
1185
+
1186
+ msgid "Import settings"
1187
+ msgstr "导入设置"
1188
+
1189
+ msgid "Import settings from gallery"
1190
+ msgstr "导入设置"
1191
+
1192
+ msgid "Improve free version"
1193
+ msgstr "免费版本"
1194
+
1195
+ msgid "Incorrect service Code"
1196
+ msgstr "错误的服务码"
1197
+
1198
+ msgid "Instagram"
1199
+ msgstr "Instagram"
1200
+
1201
+ msgid "Instagram authorization"
1202
+ msgstr "Instagram 授权"
1203
+
1204
+ msgid "Install plugin"
1205
+ msgstr "安装插件"
1206
+
1207
+ msgid "Invalid gallery identifier specified"
1208
+ msgstr "所选的库类型无效"
1209
+
1210
+ msgid "It's a temporary deactivation"
1211
+ msgstr "这是暂时失活"
1212
+
1213
+ msgid "Italic"
1214
+ msgstr "斜体"
1215
+
1216
+ msgid ""
1217
+ "It’s never been so easy to create and manage pricing and comparison tables with table "
1218
+ "builder. Any element of the table can be customise with mouse click."
1219
+ msgstr ""
1220
+ "表格编辑器使得创建和管理价格表和对比表变得从未如此简单. 表格的任何元素均可通过鼠标点击"
1221
+ "来自定义."
1222
+
1223
+ msgid "KeyCDN"
1224
+ msgstr "KeyCDN"
1225
+
1226
+ msgid "KeyCDN Settings"
1227
+ msgstr "KeyCDN设置"
1228
+
1229
+ msgid "Last"
1230
+ msgstr "过去"
1231
+
1232
+ msgid "Last 24 hours"
1233
+ msgstr "过去24小时"
1234
+
1235
+ msgid "Lazy Load"
1236
+ msgstr "Lazy Load"
1237
+
1238
+ msgid "LazyLoad"
1239
+ msgstr "LazyLoad"
1240
+
1241
+ msgid "Left"
1242
+ msgstr "左侧"
1243
+
1244
+ msgid "Left Bottom"
1245
+ msgstr "左侧底部"
1246
+
1247
+ msgid "Left Center"
1248
+ msgstr "左侧居中"
1249
+
1250
+ msgid "Left Top"
1251
+ msgstr "左侧顶部"
1252
+
1253
+ msgid "Let user switch gallery pages"
1254
+ msgstr "让用户切换相册页面"
1255
+
1256
+ msgid "Let's Start!"
1257
+ msgstr "开始吧!"
1258
+
1259
+ msgid "License"
1260
+ msgstr "许可证"
1261
+
1262
+ msgid "Lightbox"
1263
+ msgstr "Lightbox"
1264
+
1265
+ msgid "Line"
1266
+ msgstr "线型"
1267
+
1268
+ msgid "Link"
1269
+ msgstr "链接"
1270
+
1271
+ msgid "Link icon"
1272
+ msgstr "链接图标"
1273
+
1274
+ msgid "Linked Images"
1275
+ msgstr "图像连接"
1276
+
1277
+ msgid "Linked images"
1278
+ msgstr "图像连接"
1279
+
1280
+ msgid "Live Chat Plugin"
1281
+ msgstr "在线聊天插件"
1282
+
1283
+ msgid "Load More"
1284
+ msgstr "加载更多"
1285
+
1286
+ msgid "Load More Button"
1287
+ msgstr "加载更多按钮"
1288
+
1289
+ msgid "Load more amount"
1290
+ msgstr "加载更多"
1291
+
1292
+ msgid "Load more button text"
1293
+ msgstr "载入更多按钮文字"
1294
+
1295
+ msgid "Load more gallery images with scroll or button"
1296
+ msgstr "通过滚动或按钮加载更多相册图片"
1297
+
1298
+ msgid "Load settings from presets"
1299
+ msgstr "从预设加载设置"
1300
+
1301
+ msgid "Load with scroll"
1302
+ msgstr "加载更多滚动"
1303
+
1304
+ msgid "Loader"
1305
+ msgstr "加载器"
1306
+
1307
+ msgid "Loading"
1308
+ msgstr "载入中"
1309
+
1310
+ msgid "Loading text"
1311
+ msgstr "加载文本"
1312
+
1313
+ msgid "Loading..."
1314
+ msgstr "正在加载..."
1315
+
1316
+ msgid "Location"
1317
+ msgstr "位置"
1318
+
1319
+ msgid "Login with Facebook"
1320
+ msgstr "用Facebook账号登入"
1321
+
1322
+ msgid "Logout"
1323
+ msgstr "退出"
1324
+
1325
+ msgid "Main"
1326
+ msgstr "主菜单"
1327
+
1328
+ msgid "Main Settings"
1329
+ msgstr "主要设置"
1330
+
1331
+ msgid "Make this settings - default"
1332
+ msgstr "将此设置设为默认"
1333
+
1334
+ msgid "Margin"
1335
+ msgstr "边框"
1336
+
1337
+ msgid "Mb"
1338
+ msgstr "Mb"
1339
+
1340
+ msgid "Membership by Supsystic"
1341
+ msgstr "Supsystic会员"
1342
+
1343
+ msgid "Message"
1344
+ msgstr "信息"
1345
+
1346
+ msgid "Middle Center"
1347
+ msgstr "居中中心"
1348
+
1349
+ msgid "Middle Left"
1350
+ msgstr "居中靠左"
1351
+
1352
+ msgid "Middle Right"
1353
+ msgstr "居中靠右"
1354
+
1355
+ msgid "Minimal cUrl extension version 7.20.0"
1356
+ msgstr "最低cUrl扩展版本7.20.0"
1357
+
1358
+ msgid "Minimal version of php = 5.3.0"
1359
+ msgstr "最低php版本5.3.0"
1360
+
1361
+ msgid "Mirror horizontal"
1362
+ msgstr "水平镜面翻转"
1363
+
1364
+ msgid "Mirror horizontal and rotate 270 CW"
1365
+ msgstr "水平镜面翻转并顺时针旋转270度"
1366
+
1367
+ msgid "Mirror horizontal and rotate 90 CW"
1368
+ msgstr "水平镜面翻转并顺时针旋转90度"
1369
+
1370
+ msgid "Mirror vertical"
1371
+ msgstr "垂直镜面翻转"
1372
 
1373
  msgid "Mobile - show always caption"
1374
  msgstr "移动设备-总显示标题"
1375
 
1376
+ msgid "Month"
1377
+ msgstr "月"
1378
+
1379
+ msgid "Mouse Wheel Scroll Step"
1380
+ msgstr "鼠标滚轮滚动步进"
1381
+
1382
+ msgid "Mouser Over"
1383
+ msgstr "鼠标经过"
1384
+
1385
+ msgid "Name"
1386
+ msgstr "名称"
1387
+
1388
+ msgid "New Folder"
1389
+ msgstr "新文件夹"
1390
+
1391
+ msgid "New Gallery"
1392
+ msgstr "新相册"
1393
+
1394
+ msgid "New folder"
1395
+ msgstr "新文件夾"
1396
+
1397
+ msgid "New gallery"
1398
+ msgstr "新相册"
1399
+
1400
+ msgid "New gallery from selected"
1401
+ msgstr "新相册从选项"
1402
+
1403
+ msgid "New gallery successfully created"
1404
+ msgstr "新图册创建成功"
1405
+
1406
+ msgid "Newsletter Plugin"
1407
+ msgstr "Newsletter插件"
1408
+
1409
+ msgid "Next"
1410
+ msgstr "下一个"
1411
+
1412
+ msgid "No"
1413
+ msgstr "无"
1414
+
1415
+ msgid "No Flash"
1416
+ msgstr "无闪光"
1417
+
1418
+ msgid "No flash function"
1419
+ msgstr "无闪光功能"
1420
+
1421
+ msgid "None"
1422
+ msgstr "无"
1423
+
1424
+ msgid "Not enough data."
1425
+ msgstr "没有足够的数据."
1426
+
1427
+ msgid "Note: images folder must be in wp-content/uploads/directory"
1428
+ msgstr "注意:图片文件夹必须在 /wp-content/uploads/directory目录中"
1429
+
1430
+ msgid "Note: you need to specify the full path to images folder"
1431
+ msgstr "注意︰ 您需要指定图像的文件夹的完整路径"
1432
+
1433
+ msgid ""
1434
+ "Now you are in the edit menu of your gallery. And the first thing you need to do are "
1435
+ "add media to the gallery. Click \"Add Images\" button."
1436
  msgstr ""
1437
+ "你现在在你的相册的编辑菜单中。你需要做的第一件事,向库中添加媒体。单击\"添加图像\"按"
1438
+ "钮。"
1439
 
1440
+ msgid "Number of Columns"
1441
+ msgstr "列数"
1442
+
1443
+ msgid "Number of images"
1444
+ msgstr "图片数量"
1445
+
1446
+ msgid "Number of posts"
1447
+ msgstr "文章数"
1448
+
1449
+ msgid "Off"
1450
+ msgstr "关闭"
1451
+
1452
+ msgid "Off, Did not fire"
1453
+ msgstr "闪光灯关闭, 未闪光"
1454
+
1455
+ msgid "Off, Did not fire, Return not detected"
1456
+ msgstr "闪光灯关闭, 未闪光, 反光未检测到"
1457
+
1458
+ msgid "Off, No flash function"
1459
+ msgstr "闪光灯关闭, 无闪光功能"
1460
+
1461
+ msgid "Off, Red-eye reduction"
1462
+ msgstr "闪光灯关闭, 降低红眼"
1463
+
1464
+ msgid "On, Did not fire"
1465
+ msgstr "闪光灯开启, 未闪光"
1466
+
1467
+ msgid "On, Fired"
1468
+ msgstr "闪光灯开启"
1469
+
1470
+ msgid "On, Red-eye reduction"
1471
+ msgstr "闪光灯开启, 减少红眼,"
1472
+
1473
+ msgid "On, Red-eye reduction, Return detected"
1474
+ msgstr "闪光灯开启, 减少红眼, 检测到反光"
1475
+
1476
+ msgid "On, Red-eye reduction, Return not detected"
1477
+ msgstr "闪光灯开启, 减少红眼, 未检测到反光"
1478
+
1479
+ msgid "On, Return detected"
1480
+ msgstr "闪光灯开启, 检测到反光"
1481
+
1482
+ msgid "On, Return not detected"
1483
+ msgstr "闪光灯开启, 未检测到反光"
1484
+
1485
+ msgid "One by One"
1486
+ msgstr "逐个"
1487
+
1488
+ msgid ""
1489
+ "One of the best plugin for creating Contact Forms on your WordPress site. Changeable "
1490
+ "fonts, backgrounds, an option for adding fields etc."
1491
+ msgstr "WordPress站点最好的联系表单插件之一. 可变的字体, 背景, 添加字段的选项等等."
1492
+
1493
+ msgid "Open by link in popup"
1494
+ msgstr "在新的窗口打开链接"
1495
+
1496
+ msgid "Open in new window"
1497
+ msgstr "在新窗口中打开"
1498
+
1499
+ msgid "Open next slide"
1500
+ msgstr "下一张幻灯片"
1501
+
1502
+ msgid "Optimization"
1503
+ msgstr "优化"
1504
+
1505
+ msgid "Optimization complete"
1506
+ msgstr "优化完成"
1507
+
1508
+ msgid "Optimization in process..."
1509
+ msgstr "优化中……"
1510
+
1511
+ msgid "Optimize"
1512
+ msgstr "优化"
1513
+
1514
+ msgid "Optimize Now"
1515
+ msgstr "现在优化"
1516
+
1517
+ msgid "Optimize Preview images"
1518
+ msgstr "优化预览图片"
1519
+
1520
+ msgid "Optimize one more time"
1521
+ msgstr "再次优化"
1522
+
1523
+ msgid "Optimize selected"
1524
+ msgstr "优化已选"
1525
+
1526
+ msgid "Optimize:"
1527
+ msgstr "优化:"
1528
+
1529
+ msgid "Optimized"
1530
+ msgstr "已优化"
1531
+
1532
+ msgid "Other"
1533
+ msgstr "其他"
1534
+
1535
+ msgid "Over the gallery"
1536
+ msgstr "选择画廊"
1537
+
1538
+ msgid "Overlay color"
1539
+ msgstr "叠加颜色"
1540
+
1541
+ msgid "Overlay image with shadow"
1542
+ msgstr "阴影覆盖图像"
1543
+
1544
+ msgid "Overlay transparency"
1545
+ msgstr "叠加透明度"
1546
+
1547
+ msgid "Overview"
1548
+ msgstr "概述"
1549
+
1550
+ msgid "PHPCode:"
1551
+ msgstr "PHPCode:"
1552
+
1553
+ msgid "PRO option"
1554
+ msgstr "PRO 选项"
1555
+
1556
+ msgid "Paddings"
1557
+ msgstr "宽度"
1558
+
1559
+ msgid "Page "
1560
+ msgstr "页面"
1561
+
1562
+ msgid "Pages"
1563
+ msgstr "页面"
1564
+
1565
+ msgid "Pagination"
1566
+ msgstr "分页"
1567
+
1568
+ msgid "Password"
1569
+ msgstr "密码"
1570
+
1571
+ msgid "Personal captions"
1572
+ msgstr "个人字幕"
1573
+
1574
+ msgid "Photo Gallery Plugin"
1575
+ msgstr "照片相册插件"
1576
+
1577
+ msgid ""
1578
+ "Photo Gallery Plugin with a great number of layouts will help you to create quality "
1579
+ "respectable portfolios and image galleries."
1580
+ msgstr "拥有大量设计排版的照片相册插件将会帮你高质量的备受喜爱的作品集和图片相册."
1581
+
1582
+ msgid ""
1583
+ "Photo Gallery plugin is created for people who would like to show their photos in a "
1584
+ "marvelous way. Perform your best ideas, making delightful presentations or galleries "
1585
+ "from videos and photos."
1586
+ msgstr ""
1587
+ "图片图册插件是为那些想以一种奇妙的方式展示他们的照片的人创造的。执行你的最好的想法,从"
1588
+ "图片或视频中建立令人愉悦的幻灯片或或图集。"
1589
+
1590
+ msgid "Please fill all fields"
1591
+ msgstr "请填写所有字段"
1592
+
1593
+ msgid "Please wait until Exif data has been recollected"
1594
+ msgstr "EXIF数据恢复中, 请稍后……"
1595
+
1596
+ msgid "Please wait while the plugin to get the list of galleries..."
1597
+ msgstr "请稍候插件正在加载相册列表..."
1598
+
1599
+ msgid "Please, wait while reading images info..."
1600
+ msgstr "读取图片信息中, 请稍后……"
1601
+
1602
+ msgid "Plugin options"
1603
+ msgstr "插件选项"
1604
+
1605
+ msgid "Polaroid Frame Width"
1606
+ msgstr "宝丽来帧宽度"
1607
+
1608
+ msgid "Polaroid Image Animation"
1609
+ msgstr "宝丽来形象动画"
1610
+
1611
+ msgid "Polaroid Image Scattering "
1612
+ msgstr "宝丽来图像散射"
1613
+
1614
+ msgid "Polaroid Style"
1615
+ msgstr "宝丽来样式"
1616
+
1617
+ msgid "Pop-up Image"
1618
+ msgstr "弹窗图片"
1619
+
1620
+ msgid "Popup Image Sharing"
1621
+ msgstr "弹窗图片分享"
1622
+
1623
+ msgid "Popup Image Text"
1624
+ msgstr "弹窗图片文本"
1625
+
1626
+ msgid "Popup Image size"
1627
+ msgstr "弹窗图片大小"
1628
+
1629
+ msgid "Popup Images"
1630
+ msgstr "弹窗图片"
1631
+
1632
+ msgid "Popup Linked Image Text"
1633
+ msgstr "弹窗链接图片文本"
1634
+
1635
+ msgid "Popup Plugin"
1636
+ msgstr "弹窗插件"
1637
+
1638
+ msgid "Popup box theme"
1639
+ msgstr "弹出对话框主题"
1640
+
1641
+ msgid "Popup image icon"
1642
+ msgstr "弹出图像图标"
1643
+
1644
+ msgid "Port"
1645
+ msgstr "端口"
1646
+
1647
+ msgid "Position"
1648
+ msgstr "位置"
1649
+
1650
+ msgid "Position updated successfully!"
1651
+ msgstr "已成功更新位置 !"
1652
+
1653
+ msgid "Posts"
1654
+ msgstr "文章"
1655
+
1656
+ msgid "Posts layout"
1657
+ msgstr "帖子布局"
1658
+
1659
+ msgid "Posts layout style"
1660
+ msgstr "文章布局方式"
1661
+
1662
+ msgid "Preset Editor"
1663
+ msgstr "预设的编辑"
1664
+
1665
+ msgid "Preset successfully applied to the gallery."
1666
+ msgstr "预设已成功应用到该相册."
1667
+
1668
+ msgid "Preset successfully removed."
1669
+ msgstr "预设已成功移除."
1670
+
1671
+ msgid "Preset successfully saved."
1672
+ msgstr "预设保存成功."
1673
+
1674
+ msgid "Preset title:"
1675
+ msgstr "预设标题:"
1676
+
1677
+ msgid "Presets"
1678
+ msgstr "预设"
1679
+
1680
+ msgid "Preview"
1681
+ msgstr "预览"
1682
+
1683
+ msgid "Preview of Gallery settings"
1684
+ msgstr "预览图库设置"
1685
+
1686
+ #, fuzzy
1687
+ #| msgid "previous"
1688
+ msgid "Previous"
1689
+ msgstr "上一个"
1690
+
1691
+ msgid "Pricing Table"
1692
+ msgstr "价格表"
1693
+
1694
+ msgid "Pro Feature"
1695
+ msgstr "Pro功能"
1696
+
1697
+ msgid "Pro plugin params Error!"
1698
+ msgstr "Pro插件参数错误!"
1699
+
1700
+ msgid "Properties"
1701
+ msgstr "属性"
1702
+
1703
+ msgid "Recollect EXIF"
1704
+ msgstr "恢复EXIF信息"
1705
+
1706
+ msgid "Recollect image error!. Processed "
1707
+ msgstr "恢复图片出错! 已处理"
1708
+
1709
+ msgid "Remove selected"
1710
+ msgstr "移除选定"
1711
+
1712
+ msgid "Rename folder"
1713
+ msgstr "重命名目录"
1714
+
1715
+ msgid "Renew License"
1716
+ msgstr "续订许可"
1717
+
1718
+ msgid "Replace image"
1719
+ msgstr "替换图片"
1720
+
1721
+ msgid "Report a bug"
1722
+ msgstr "报告错误"
1723
+
1724
+ msgid "Require a new functionallity"
1725
+ msgstr "需要新的开发"
1726
+
1727
+ msgid "Resources are does not exists"
1728
+ msgstr "资源不存在"
1729
+
1730
+ msgid "Responsive Mode"
1731
+ msgstr "自适应模式"
1732
+
1733
+ msgid "Responsive columns"
1734
+ msgstr "自适应列"
1735
+
1736
+ msgid "Restore Source Images"
1737
+ msgstr "恢复源图片"
1738
+
1739
+ msgid "Return to the gallery"
1740
+ msgstr "返回相册"
1741
 
1742
+ msgid "Right"
1743
+ msgstr ""
1744
 
1745
+ msgid "Right Bottom"
1746
+ msgstr "右侧底部"
1747
 
1748
+ msgid "Right Center"
1749
+ msgstr "右侧中心"
1750
 
1751
+ msgid "Right Top"
1752
+ msgstr "右侧顶部"
1753
 
1754
+ msgid "Roles"
1755
+ msgstr "角色"
1756
 
1757
+ msgid "Rotate"
1758
+ msgstr "旋转"
1759
 
1760
+ msgid "Rotate 180"
1761
+ msgstr "旋转180度"
1762
 
1763
+ msgid "Rotate 270 CW"
1764
+ msgstr "顺时针旋转270度"
1765
 
1766
+ msgid "Rotate 90 CW"
1767
+ msgstr "顺时针旋转90度"
1768
 
1769
+ msgid "SEO"
1770
+ msgstr "SEO"
1771
 
1772
+ msgid "Save"
1773
+ msgstr "保存"
1774
 
1775
+ msgid "Save in %"
1776
+ msgstr "节省%"
1777
 
1778
+ msgid "Save in Mb"
1779
+ msgstr "节省Mb"
1780
 
1781
  msgid "Save settings as preset"
1782
  msgstr "将设置保存为预设"
1783
 
1784
+ msgid "Save source images"
1785
+ msgstr "保存源图片"
 
 
 
1786
 
1787
+ msgid "Scroll"
1788
+ msgstr "滚动"
1789
 
1790
+ msgid "Scroll Bar Color"
1791
+ msgstr "滚动条颜色"
1792
 
1793
+ msgid "Scroll Bar Transparency"
1794
+ msgstr "滚动条透明度"
1795
 
1796
+ msgid "Search"
1797
+ msgstr "搜索"
1798
 
1799
+ msgid "Select"
1800
+ msgstr "选择"
1801
 
1802
  msgid "Select \"Big image\" theme"
1803
  msgstr "选择\"大图像\"主题"
1804
 
1805
+ msgid "Select %s"
1806
+ msgstr "选择 %s"
1807
+
1808
  msgid "Select a theme"
1809
  msgstr "选择主题"
1810
 
1811
+ msgid "Select categories"
1812
+ msgstr "选择类别"
 
 
 
 
 
 
 
 
 
 
 
 
1813
 
1814
+ msgid "Select clone type"
1815
+ msgstr "选择克隆类型"
1816
 
1817
+ msgid "Select clone type:"
1818
+ msgstr "选择克隆类型:"
 
 
 
 
1819
 
1820
+ msgid "Select effect"
1821
+ msgstr "选择效果"
1822
 
1823
  msgid "Select icons effects"
1824
  msgstr "选择效果图标"
1825
 
1826
+ msgid "Select image on hover"
1827
+ msgstr "选择鼠标悬停时图片"
1828
 
1829
+ msgid "Select images per page"
1830
+ msgstr "选择每页图片数量"
1831
 
1832
+ msgid "Select one icon"
1833
+ msgstr "选择一个图标"
1834
 
1835
+ msgid "Select overlay effect"
1836
+ msgstr "选择叠加效应"
1837
 
1838
+ msgid "Select preset:"
1839
+ msgstr "选择预设:"
1840
 
1841
+ msgid "Select shadow"
1842
+ msgstr "选择阴影"
1843
 
1844
+ msgid "Select shadow preset"
1845
+ msgstr "选择阴影预设"
1846
 
1847
+ msgid "Select source to import from"
1848
+ msgstr "选择导入"
1849
 
1850
+ msgid "Select the gallery:"
1851
+ msgstr "选择相册:"
1852
 
1853
+ msgid "Select/unselect all photos"
1854
+ msgstr "选择/取消选择所有照片"
1855
 
1856
+ msgid "Select/unselect all posts"
1857
+ msgstr "选择/取消 所有文章"
1858
 
1859
+ msgid "Selected"
1860
+ msgstr "选择"
1861
 
1862
+ msgid ""
1863
+ "Selected ' ~ name) }}</div>\n"
1864
+ "\t\t\t\t\t\t</div>\n"
1865
+ " </div>\n"
1866
+ " {% endfor %}\n"
1867
+ "\n"
1868
+ " </div>\n"
1869
+ " </div>\n"
1870
+ "\n"
1871
+ " <div id=\"effectDialog\" title=\"{{ translate('Select overlay effect"
1872
+ msgstr ""
1873
+ "已选 ' ~ name) }}</div>\n"
1874
+ "\t\t\t\t\t\t</div>\n"
1875
+ " </div>\n"
1876
+ " {% endfor %}\n"
1877
+ "\n"
1878
+ " </div>\n"
1879
+ " </div>\n"
1880
+ "\n"
1881
+ " <div id=\"effectDialog\" title=\"{{ translate('Select overlay effect"
1882
+
1883
+ msgid "Send usage statistics"
1884
+ msgstr "发送使用统计"
1885
+
1886
+ msgid "Server internal error"
1887
+ msgstr "服务器内部错误"
1888
 
1889
+ msgid "Service"
1890
+ msgstr "服务"
1891
 
1892
+ msgid "Service data was saved!"
1893
+ msgstr "服务数据已保存!"
1894
 
1895
+ msgid "Servicename"
1896
+ msgstr "服务名称"
1897
 
1898
+ msgid "Settings"
1899
+ msgstr "设置"
1900
 
1901
+ msgid "Setup"
1902
+ msgstr "设置"
1903
 
1904
+ msgid "Setup Service"
1905
+ msgstr "设置服务"
1906
 
1907
+ msgid "Shadow"
1908
+ msgstr "阴影"
1909
 
1910
+ msgid "Shadow X"
1911
+ msgstr "阴影间隔 X"
1912
 
1913
+ msgid "Shadow Y"
1914
+ msgstr "阴影间隔 Y"
1915
 
1916
+ msgid "Shadow blur"
1917
+ msgstr "模糊阴影"
1918
 
1919
+ msgid "Shadow color"
1920
+ msgstr "阴影颜色"
1921
 
1922
+ msgid "Shadow preset"
1923
+ msgstr "阴影预设"
1924
 
1925
+ msgid "Shortcode:"
1926
+ msgstr "短代码:"
1927
 
1928
+ msgid "Show EXIF as caption"
1929
+ msgstr "按照说明文字显示EXIF信息"
1930
 
1931
+ msgid "Show EXIF as description"
1932
+ msgstr "按照描述显示EXIF信息"
1933
 
1934
+ msgid "Show EXIF data"
1935
+ msgstr "显示EXIF数据"
1936
 
1937
+ msgid "Show EXIF on Lightbox image"
1938
+ msgstr "在LightBox中显示EXIF信息"
1939
 
1940
+ msgid "Show Original"
1941
+ msgstr "显示原始"
1942
 
1943
+ msgid "Show Posts and Pages"
1944
+ msgstr "显示文章和页面"
1945
 
1946
+ msgid "Show Previous/Next Arrows"
1947
+ msgstr "显示前一个/后一个箭头"
1948
 
1949
+ msgid "Show Watermark"
1950
+ msgstr "显示水印"
1951
 
1952
+ msgid "Show Watermark for"
1953
+ msgstr "为其显示水印"
1954
 
1955
+ msgid "Show author"
1956
+ msgstr "显示作者"
1957
 
1958
+ msgid "Show categories"
1959
+ msgstr "显示类别"
1960
 
1961
+ msgid "Show contents"
1962
+ msgstr "显示内容"
1963
 
1964
+ msgid "Show date"
1965
+ msgstr "显示日期"
1966
 
1967
+ msgid "Show hidden images by click"
1968
+ msgstr "点击显示隐藏图片"
1969
 
1970
+ msgid "Show icons"
1971
+ msgstr "显示图标"
1972
 
1973
+ msgid "Show image comparision"
1974
+ msgstr "显示图片对比度"
1975
 
1976
+ msgid "Show mouse on"
1977
+ msgstr "显示鼠标"
1978
 
1979
+ msgid "Show options"
1980
+ msgstr "显示选项"
1981
 
1982
+ msgid "Show overlay"
1983
+ msgstr "显示轮廓"
1984
 
1985
+ msgid "Show the next page of the grid"
1986
+ msgstr "展示网格后一页"
1987
 
1988
+ msgid "Show the previous page of the grid"
1989
+ msgstr "展示网格前一页"
1990
 
1991
+ msgid "Shutter Speed"
1992
+ msgstr "快门速度"
1993
 
1994
+ msgid "Skip & Deactivate"
1995
+ msgstr "略过并失活"
1996
 
1997
+ msgid "Slider Plugin"
1998
+ msgstr "轮播图插件"
1999
 
2000
+ msgid "Slider by Supsystic"
2001
+ msgstr "Slider by Supsystic"
2002
 
2003
+ msgid "Slideshow"
2004
+ msgstr "幻灯片"
2005
+
2006
+ msgid "Slideshow autostart"
2007
+ msgstr "幻灯片自动启动"
2008
 
2009
+ msgid "Slideshow pause on hover"
2010
+ msgstr "鼠标悬停时幻灯片显示暂停"
2011
 
2012
+ msgid "Slideshow speed"
2013
+ msgstr "幻灯片速度"
2014
 
2015
+ msgid "Social"
2016
+ msgstr "社交"
2017
 
2018
+ msgid "Social Buttons Project"
2019
+ msgstr "社交分享按钮"
2020
 
2021
+ msgid "Social Share Buttons"
2022
+ msgstr "社交分享按钮"
2023
 
2024
+ msgid "Social Sharing"
2025
+ msgstr "社交分享"
2026
 
2027
+ msgid "Social setup"
2028
+ msgstr "社交设置"
2029
 
2030
+ msgid ""
2031
+ "Social share buttons to increase social traffic and popularity. Social sharing to "
2032
+ "Facebook, Twitter and other social networks."
2033
+ msgstr "社交分享按钮可以增加社交流量和关注度. 分享到Facebook, Twitter和其他社交网络."
2034
 
2035
+ msgid ""
2036
+ "Some errors occurred while sending mail please send your message trough this contact "
2037
+ "form:"
2038
+ msgstr "发送邮件时发生错误,请通过此联系表单发送你的信息:"
2039
 
2040
+ msgid "Sort By: "
2041
+ msgstr "排序方式:"
2042
 
2043
+ msgid "Sort To: "
2044
+ msgstr "排序到:"
2045
 
2046
+ msgid "Source gallery incorrect id"
2047
+ msgstr "源相册id错误"
2048
 
2049
+ msgid "Start Optimization"
2050
+ msgstr "开始优化"
2051
 
2052
+ msgid "Start Transfer"
2053
+ msgstr "开始传输"
2054
 
2055
+ msgid "Start step-by-step tutorial"
2056
+ msgstr "开始手把手教程"
2057
 
2058
+ msgid "Step-by-step tutorial"
2059
+ msgstr "手把手教程"
2060
 
2061
+ msgid "Subject"
2062
+ msgstr "主题"
2063
 
2064
+ msgid "Support"
2065
+ msgstr "支持"
2066
 
2067
+ msgid "Supports Youtube and Vimeo. URL will be converted to embed automatically."
2068
+ msgstr "支持 Youtube 和 Vimeo。URL 将被转换为自动嵌入。"
2069
 
2070
+ msgid ""
2071
+ "Supsystic Newsletter plugin for automatic mailing of your letters. You will have no "
2072
+ "need to control it or send them manually. No coding, hard skills or long hours of "
2073
+ "customizing are required."
2074
  msgstr ""
2075
+ "Supsystic Newsletter插件自动发送你的信件. 你完全没有必要去手动发送或控制. 编程, 高难度"
2076
+ "技巧或长时间的优化都不需要. "
2077
 
2078
+ msgid "Switch to the block view"
2079
+ msgstr "切换到区块视图"
2080
 
2081
+ msgid "Switch to the list view"
2082
+ msgstr "切换到列表视图"
2083
 
2084
+ msgid "Table ' . $this->table. ' not exists! Please reactivate this plugin!"
2085
+ msgstr "表格 ' . $this->table. ' 不存在! 请重新激活插件!"
2086
 
2087
+ msgid "Template: SuperMega"
2088
+ msgstr "模板: SuperMega"
2089
 
2090
+ msgid "Text"
2091
+ msgstr "文本"
2092
 
2093
+ msgid "Text Highlight Color"
2094
+ msgstr "文本高亮色"
2095
 
2096
+ msgid "Text Highlight Color Transparency"
2097
+ msgstr "文本高亮色透明度"
2098
 
2099
+ msgid "Text background"
2100
+ msgstr "文本背景"
2101
 
2102
+ msgid "Text color"
2103
+ msgstr "文字颜色"
2104
 
2105
+ msgid "Text for Next Arrow"
2106
+ msgstr "后一个箭头文本"
2107
 
2108
+ msgid "Text for Previous Arrow"
2109
+ msgstr "前一个箭头文本"
2110
 
2111
+ msgid "Text horizontal align"
2112
+ msgstr "文字水平对齐"
2113
 
2114
+ msgid "Text size"
2115
+ msgstr "字体大小"
2116
 
2117
+ msgid "Text vertical align"
2118
+ msgstr "文字垂直对齐"
2119
 
2120
+ msgid ""
2121
+ "Thank you for choosing our Gallery plugin. Just click here to start using it - and we "
2122
+ "will show you it's possibilities and powerfull features."
2123
  msgstr ""
2124
+ "非常感谢您选择我们的库插件。请点击这里,开始使用它-,我们将向您展示它的可能性和强大的功"
2125
+ "能。"
2126
 
2127
+ msgid ""
2128
+ "The Best WordPress PopUp option plugin to help you gain more subscribers, social "
2129
+ "followers or advertisement. Responsive pop-ups with friendly options."
2130
  msgstr ""
2131
+ "WordPress最好的弹出选项插件可以帮你获得更多的订阅者, 社交订阅量或广告. 带有友好选项的自"
2132
+ "适应弹出窗. "
2133
 
2134
+ msgid "The gallery is does not exists"
2135
+ msgstr "这个相册不存在"
2136
 
2137
+ msgid "The identifier of the Gallery is not specified"
2138
+ msgstr "无效的相册"
2139
 
2140
+ msgid "The identifier of the gallery is invalid"
2141
+ msgstr "无效的相册"
2142
 
2143
+ msgid "The preset ID is not specified."
2144
+ msgstr "未指定的预设的 ID。"
2145
 
2146
+ msgid ""
2147
+ "The resources are successfully attached to the '.$gallery->title),\n"
2148
+ "\t\t\t\t'galleryId' => (int)$gallery->id,\n"
2149
+ "\t\t\t\t'redirectUrl' => $this->getEnvironment()->generateUrl(\n"
2150
+ "\t\t\t\t\t'galleries',\n"
2151
+ "\t\t\t\t\t'view',\n"
2152
+ "\t\t\t\t\tarray('gallery_id' => $gallery->id)\n"
2153
+ "\t\t\t\t)\n"
2154
+ "\t\t\t)\n"
2155
+ "\t\t);\n"
2156
+ " }\n"
2157
+ "\n"
2158
+ " public function chooseAction(Rsc_Http_Request $request)\n"
2159
+ " {\n"
2160
+ " $resourceId = $request->post->get('resources"
2161
+ msgstr ""
2162
+ "资源已成功附于 '.$gallery->title),\n"
2163
+ "\t\t\t\t'galleryId' => (int)$gallery->id,\n"
2164
+ "\t\t\t\t'redirectUrl' => $this->getEnvironment()->generateUrl(\n"
2165
+ "\t\t\t\t\t'galleries',\n"
2166
+ "\t\t\t\t\t'view',\n"
2167
+ "\t\t\t\t\tarray('gallery_id' => $gallery->id)"
2168
 
2169
+ msgid "The title can't be empty"
2170
+ msgstr "标题不能为空"
2171
 
2172
+ msgid "Then choose what gallery you want to display. And press save."
2173
+ msgstr "然后选择哪个图集是您想要显示的,点击保存。"
2174
 
2175
+ msgid "There are %s photos in the gallery %s"
2176
+ msgstr "在库 %s 中有 %s 照片"
2177
 
2178
+ msgid "There're no images in the gallery."
2179
+ msgstr "相册中没有图片."
2180
 
2181
+ msgid ""
2182
+ "There’re really many options of photo gallery plugin customization. So as soon as you "
2183
+ "close that page, I’ll show you step-by-step tutorial of how to use plugin. Hope it "
2184
+ "will be usefull for you :)"
2185
  msgstr ""
2186
+ "在照片相册自定义功能中有许多选项. 只要你关闭那个页面, 我就会给你一步一步的演示怎样使用"
2187
+ "该插件. 希望能够帮到你 :)"
2188
 
2189
+ msgid "This effect requires icons be enabled. Enable Icons?"
2190
+ msgstr "此效果需要图标启用。使图标?"
2191
 
2192
+ msgid "Thumbnail and Popup Images"
2193
+ msgstr "缩略图和弹出图片"
2194
 
2195
+ msgid "Thumbnails"
2196
+ msgstr "缩略图"
2197
 
2198
+ msgid "TinyPNG"
2199
+ msgstr "TinyPNG"
2200
 
2201
+ msgid "TinyPNG Settings"
2202
+ msgstr "TinyPNG设置"
2203
 
2204
+ msgid "Title"
2205
+ msgstr "标题"
2206
 
2207
+ msgid "Title is empty"
2208
+ msgstr "标题为空"
2209
 
2210
+ msgid "Title successfully updated"
2211
+ msgstr "标题更新成功"
2212
 
2213
+ msgid ""
2214
+ "To Create New Gallery select gallery template. You can change template and settings "
2215
+ "later. Now here are four different templates. With PRO version you’ll get more "
2216
+ "features like Categories, Load More button, Post Feed (Content) gallery, Polaroid "
2217
+ "gallery and more. Enter name of the gallery and click “Save”."
2218
  msgstr ""
2219
+ "通过选择相册模板来创建新相册. 你可以稍后更改模板和设置. 这里有4个不同的模板. 在PRO版本"
2220
+ "中 你将获得更多的功能, 比如分类, 加载更多按钮, 文章Feed (内容)相册, 宝丽来相册等. 输"
2221
+ "入相册名称然后点击\"保存\"."
2222
 
2223
+ msgid ""
2224
+ "To use this option, you must install php-extension GD. The list of functions that are "
2225
+ "used in the plugin can be seen in readme.txt file."
 
2226
  msgstr ""
2227
+ "你必须安装 php-extension GD扩展才能使用本选项. 插件使用的功能列表可以在 readme.txt 文件"
2228
+ "中查阅."
2229
 
2230
+ msgid "Top"
2231
+ msgstr "顶部"
2232
 
2233
+ msgid "Top Center"
2234
+ msgstr "顶部居中"
2235
 
2236
+ msgid "Top Left"
2237
+ msgstr "顶部靠左"
2238
 
2239
+ msgid "Top Right"
2240
+ msgstr "顶部靠右"
2241
 
2242
  msgid "Topic"
2243
  msgstr "话题"
2244
 
2245
+ msgid "Total Images"
2246
+ msgstr "所有图片"
2247
 
2248
+ msgid "Total Saving:"
2249
+ msgstr "共保存:"
2250
 
2251
+ msgid "Total Size"
2252
+ msgstr "总大小"
2253
 
2254
+ msgid "Total images"
2255
+ msgstr "所有图片"
2256
 
2257
+ msgid "Total size"
2258
+ msgstr "总大小"
2259
 
2260
+ msgid "Total size after"
2261
+ msgstr "计算在内的总大小"
2262
 
2263
+ msgid "Total size before"
2264
+ msgstr "不计其的总大小"
 
 
2265
 
2266
+ msgid "Touch Scroll Step"
2267
+ msgstr "触摸滚动"
2268
 
2269
+ msgid "Tranfer images to CDN"
2270
+ msgstr "将图片传输至CDN"
2271
 
2272
+ msgid "Transfer Gallery to"
2273
+ msgstr "将相册传输至"
2274
 
2275
+ msgid "Transfer completed successfully!"
2276
+ msgstr "传输完成!"
2277
 
2278
+ msgid "Transfer ending with errors!"
2279
+ msgstr "传输结束时出错!"
2280
 
2281
+ msgid "Transfer information:"
2282
+ msgstr "传输信息:"
2283
 
2284
+ msgid "Transfer selected"
2285
+ msgstr "传输已选择的"
2286
 
2287
+ msgid "Transfer to"
2288
+ msgstr "传输到"
2289
 
2290
+ msgid "Transfer to CDN"
2291
+ msgstr "传输到CDN"
2292
 
2293
+ msgid "Transfered"
2294
+ msgstr "传输完毕"
2295
 
2296
+ msgid "Transparency"
2297
+ msgstr "透明度"
2298
 
2299
+ msgid "Tumblr"
2300
+ msgstr "Tumblr"
2301
 
2302
+ msgid "Tumblr authorization"
2303
+ msgstr "Tumblr 授权"
2304
 
2305
+ msgid "Type"
2306
+ msgstr "类型"
2307
 
2308
+ msgid "Unable to save chosen photo %s: %s"
2309
+ msgstr "无法储存照片 %s: %s"
2310
 
2311
+ msgid "Under the gallery"
2312
+ msgstr "下库"
2313
 
2314
+ msgid "Unnamed gallery"
2315
+ msgstr "未命名相册"
2316
 
2317
+ msgid "Upload"
2318
+ msgstr "上传"
2319
 
2320
+ msgid "Upload Image"
2321
+ msgstr "上传图片"
2322
 
2323
+ msgid "Upload from Flickr"
2324
+ msgstr "从 Flickr 上传"
2325
 
2326
+ msgid "Upload from Google Drive"
2327
+ msgstr "从Google Drive上传"
2328
 
2329
+ msgid "Upload from Instagram"
2330
+ msgstr " Instagram 上传"
2331
 
2332
+ msgid "Upload from Tumblr"
2333
+ msgstr "从Tumblr上传"
2334
 
2335
+ msgid "Upload new images"
2336
+ msgstr "上传新图片"
2337
 
2338
+ msgid "Upload your images from Google Drive CDN"
2339
+ msgstr "从Google Drive CDN上传图片"
2340
 
2341
+ msgid "Upload your images from the FTP Server"
2342
+ msgstr "从FTP上传您的图片"
2343
 
2344
+ msgid "Upload your images from the Facebook Media Library"
2345
+ msgstr "上传您的图片从 Facebook 媒体库"
2346
 
2347
+ msgid "Upload your images from the Flickr Media Library"
2348
+ msgstr "上传您的图片从 Flickr 媒体库"
 
 
 
 
2349
 
2350
+ msgid "Upload your images from the Instagram Media Library"
2351
+ msgstr "从Instagram媒体库 上传您的图片"
2352
 
2353
+ msgid "Upload your images from the Tumblr Media Library"
2354
+ msgstr "上传您的图片从 Tumblr 媒体库"
 
 
 
 
2355
 
2356
+ msgid "Upload your images from the WordPress Media Library"
2357
+ msgstr "上传您的图片从 WordPress 媒体库"
2358
 
2359
+ msgid "Use Caption Builder"
2360
+ msgstr "使用说明文字编辑器"
 
 
 
 
2361
 
2362
+ msgid "Use color, based on my theme."
2363
+ msgstr "使用颜色,基于我的主题。"
2364
 
2365
+ msgid "Use old icons and overlay"
2366
+ msgstr "使用旧图标和外观"
 
 
 
 
2367
 
2368
+ msgid "Username"
2369
+ msgstr "用户名"
2370
 
2371
+ msgid "Vertical padding"
2372
+ msgstr "垂直填充"
 
 
 
 
 
 
 
 
 
 
2373
 
2374
+ msgid "Video"
2375
+ msgstr "视频"
2376
 
2377
+ msgid "Video Tutorial"
2378
+ msgstr "视频教程"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2379
 
2380
+ msgid "Video URL"
2381
+ msgstr "视频URL"
2382
 
2383
+ msgid "Video icon"
2384
+ msgstr "视频图标"
 
 
 
 
2385
 
2386
+ msgid "Video size"
2387
+ msgstr "视频大小"
2388
 
2389
+ msgid "Video, Link, LightBox"
2390
+ msgstr "视频, 链接, LightBox"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2391
 
2392
+ msgid "Want to create one right now?"
2393
+ msgstr "想要现在创建一个吗?"
2394
 
2395
+ msgid "Watermark"
2396
+ msgstr "水印"
 
 
2397
 
2398
+ msgid "Watermark Image"
2399
+ msgstr "水印图片"
2400
 
2401
+ msgid "Watermark saved succesfully"
2402
+ msgstr "水印已成功保存"
 
 
 
 
2403
 
2404
  msgid ""
2405
+ "We love our plugin and do the best to improve all features you want and fix all "
2406
+ "issues. But sometimes some issues happened or you can’t find feature you want :) Don’t "
2407
+ "worry, just <a href=\"//supsystic.com/plugins/photo-gallery?"
2408
+ "utm_source=plugin&utm_medium=welcomepage&utm_campaign=photo-gallery#contact\" target="
2409
+ "\"_blank\"> contact us </a> . We’ll answer in an hour and fix all issues."
2410
  msgstr ""
2411
+ "我们非常喜欢我们的插件并且尽力改进你们想要的功能,修复所有的问题. 但是有时还是会出现问"
2412
+ "题或你找不到你想要的功能 :) 别担心, 只要 <a href=\"//supsystic.com/plugins/photo-"
2413
+ "gallery?utm_source=plugin&utm_medium=welcomepage&utm_campaign=photo-gallery#contact\" "
2414
+ "target=\"_blank\">联系我们</a> . 我们就会在1小时内回答你并且修复所有问题."
2415
 
2416
+ msgid "Website"
2417
+ msgstr "网站"
2418
 
2419
+ msgid "Week"
2420
+ msgstr "周"
2421
+
2422
+ msgid "Welcome to Photo Gallery plugin by Supsystic!"
2423
+ msgstr "欢迎来到 Supsystic 的图集插件 "
 
 
 
 
 
 
 
 
 
 
 
 
2424
 
2425
  msgid "Welcome to the"
2426
  msgstr "欢迎来到"
2427
 
2428
+ msgid "Well done!"
2429
+ msgstr "太棒了!"
 
 
 
 
 
2430
 
2431
+ msgid "What is a gallery"
2432
+ msgstr "相册是什么"
2433
 
2434
+ msgid "What is the reason?"
2435
+ msgstr "什么原因?"
 
 
 
2436
 
2437
+ msgid "When mouse is over"
2438
+ msgstr "鼠标悬停时"
2439
+
2440
+ msgid "When video ends"
2441
+ msgstr "视频结束时"
2442
+
2443
+ msgid "Yes"
2444
+ msgstr "Yes"
2445
 
2446
  msgid ""
2447
+ "You can have an unlimited number of galleries, to which you can attach the preloaded "
2448
+ "pictures."
2449
+ msgstr "你可以有无限的多个相册,预加载的图片可以重视。"
 
 
 
2450
 
2451
+ msgid "You don't have any galleries yet."
2452
+ msgstr "您还没有任何的相册。"
2453
 
2454
+ msgid "You have no Social Sharing projects for now."
2455
+ msgstr "你现在有没有社交共享的项目。"
2456
 
2457
+ msgid "You have no galleries"
2458
+ msgstr "尚无相册"
 
 
2459
 
2460
+ msgid "You need to import images to your gallery before you can start using galleries"
2461
+ msgstr "在使用相册之前,你需要在相册中导入图片"
2462
 
2463
+ msgid "You need to install Membership by Supsystic to use this feature. "
2464
+ msgstr "你需要从Supsystic安装Membership插件来使用这个功能"
2465
 
2466
+ msgid "You need to install Social Share Buttons by Supsystic to use this feature."
2467
+ msgstr "您需要从Supsystic安装社交分享按钮来使用这个功能。"
2468
 
2469
+ msgid "You will not be able to update your pro version with expired license"
2470
+ msgstr "你不能用来更新您的专业版已过期的许可证"
 
 
2471
 
2472
+ msgid "Your Feedback"
2473
+ msgstr "你的反馈"
2474
 
2475
+ msgid "Your changes not saved. You really want to leave without saving?"
2476
+ msgstr "您确定要离开而不保存吗?"
2477
 
2478
+ msgid "Your host does not support the minimum requirements:"
2479
+ msgstr "你的主机不支持最低要求:"
2480
 
2481
+ msgid "Your message successfully send. We contact you soon."
2482
+ msgstr "您的邮件成功发送。我们尽快与您联系。"
2483
 
2484
+ msgid "Your premium support is expired in ' ~ days ~ ' days"
2485
+ msgstr "您享受技术支持还剩 ‘ ~ days ~ ‘ 天"
2486
 
2487
+ msgid ""
2488
+ "You’ll see Gallery by Supsystic Widget on the left. Drag it to the area, where you "
2489
+ "want it to appear."
2490
+ msgstr "你在左侧将看到Supsystic相册小工具. 把它拖动到你想展示相册的区域内. "
2491
 
2492
+ msgid "close"
2493
+ msgstr "关闭"
2494
 
2495
+ msgid "from your admin area, or visit it's official page on Wordpress.org"
2496
+ msgstr "从你的控制面板, 或访问其WordPress.org官方页面."
2497
 
2498
+ msgid "galleries"
2499
+ msgstr "相册"
2500
 
2501
+ msgid "here."
2502
+ msgstr "这里。"
2503
 
2504
+ msgid "http://example.com/"
2505
+ msgstr "http://example.com/"
2506
 
2507
+ msgid "image"
2508
+ msgstr "图片"
2509
 
2510
+ msgid "images"
2511
+ msgstr "图片"
2512
 
2513
+ msgid "images (preview and original images)"
2514
+ msgstr "图片(预览图片和原始图片)"
2515
 
2516
+ msgid "next"
2517
+ msgstr "下一个"
2518
 
2519
+ msgid "of"
2520
+ msgstr "of"
2521
 
2522
+ msgid "optimize"
2523
+ msgstr "优化"
2524
 
2525
  msgid "photo"
2526
  msgstr "照片"
2528
  msgid "photos"
2529
  msgstr "相册"
2530
 
2531
+ #, fuzzy
2532
+ #| msgid "previous"
2533
+ msgid "prev"
2534
+ msgstr "上一个"
 
 
 
 
2535
 
2536
+ msgid "previous"
2537
+ msgstr "上一个"
2538
 
2539
+ msgid "service"
2540
+ msgstr "服务"
2541
 
2542
+ msgid "start slideshow"
2543
+ msgstr "启动幻灯片"
2544
 
2545
+ msgid "stop slideshow"
2546
+ msgstr "停止幻灯片"
2547
 
2548
+ msgid ""
2549
+ "then just reload page with your Gallery settings, and you will see list with available "
2550
+ "Social Projects for your Gallery."
2551
+ msgstr "然后只需要重载图集设置页面,并且您将看到图集允许的社交项目列表。"
2552
 
2553
+ msgid "website"
2554
+ msgstr "站点"
2555
 
2556
  #~ msgid "Parse"
2557
  #~ msgstr "解析"
2558
 
2559
+ #~ msgid "Choose Gallery Template.You can change template and settings on the next step."
 
 
2560
  #~ msgstr "选择库 Template.You 可以更改模板和设置下, 一步。"
2561
 
2562
  #~ msgid "Total Images: "
2569
  #~ msgstr "开始起步教程"
2570
 
2571
  #~ msgid ""
2572
+ #~ "To Create New Gallery select gallery template. You can change template and settings "
2573
+ #~ "later. Now here are four different templates. With PRO version you’ll get more "
2574
+ #~ "features like Categories, Load More button, Post Feed (Content) gallery, Polaroid "
2575
+ #~ "gallery and more. Enter name of the gallery and click “Save”."
 
2576
  #~ msgstr ""
2577
+ #~ "向选择库模板创建新库。您可以在以后更改模板和设置。现在这里有四个不同的模板。与 PRO "
2578
+ #~ "版中,你会得到更多的功能,如类别,负载更多按钮、 邮政饲料 (内容) 的画廊、 宝丽来画"
2579
+ #~ "廊和更多。输入库的名称并单击\"保存\"。"
2580
 
2581
  #~ msgid ""
2582
+ #~ "<p>Now you can see your image list. Here you can:</p><p>Change the order of images "
2583
+ #~ "– simply by dragging them manually.</p><p>Delete images.</p><p>Add new images from "
2584
+ #~ "different sources to the grid gallery – click “Add Images” button and select the "
2585
+ #~ "source to import from.</p><p><b>Caption tab</b> – add caption to image – it will be "
2586
+ #~ "displayed on the caption effect of the gallery. Also here included the support of "
2587
+ #~ "html-elements inside caption effect</p><p><b>SEO tab</b> – manage image title and "
2588
+ #~ "description</p><p><b>Link tab</b> – attach links to image – it will go to the link "
2589
+ #~ "when you click the image.</p><p><b>Video tab</b> – attach video url – it will be "
2590
+ #~ "displayed in a pop-up image when you click on the image.</p><p><b>Categories tab</"
2591
+ #~ "b> – add tags for image categories.</p><p><b>Linked images tab</b> – add linked "
2592
+ #~ "images to the chosen image.</p><p><b>Crop tab</b> – choose image crop position.</"
2593
+ #~ "p><p><b>Replace image tab</b> – replace image without losing image settings.</"
2594
+ #~ "p><p>Now follow to the gallery settings – сlick “Properties” button.</p>"
 
 
2595
  #~ msgstr ""
2596
+ #~ "<p>Now you can see your image list. Here you can:</p><p>Change the order of images "
2597
+ #~ "– simply by dragging them manually.</p><p>Delete images.</p><p>Add new images from "
2598
+ #~ "different sources to the grid gallery – click “Add Images” button and select the "
2599
+ #~ "source to import from.</p><p><b>Caption tab</b> – add caption to image – it will be "
2600
+ #~ "displayed on the caption effect of the gallery. Also here included the support of "
2601
+ #~ "html-elements inside caption effect</p><p><b>SEO tab</b> – manage image title and "
2602
+ #~ "description</p><p><b>Link tab</b> – attach links to image – it will go to the link "
2603
+ #~ "when you click the image.</p><p><b>Video tab</b> – attach video url – it will be "
2604
+ #~ "displayed in a pop-up image when you click on the image.</p><p><b>Categories tab</"
2605
+ #~ "b> – add tags for image categories.</p><p><b>Linked images tab</b> – add linked "
2606
+ #~ "images to the chosen image.</p><p><b>Crop tab</b> – choose image crop position.</"
2607
+ #~ "p><p><b>Replace image tab</b> – replace image without losing image settings.</"
2608
+ #~ "p><p>Now follow to the gallery settings – сlick “Properties” button.</p>"
 
 
2609
 
2610
  #~ msgid ""
2611
+ #~ "<p><b>Upgrading</b></p><p>Once you have purchased Premium version of plugin - "
2612
+ #~ "you’ll have to enter license key (you can find it in your personal account on our "
2613
+ #~ "site). Go to the License tab and enter your email and license key. Once you have "
2614
+ #~ "activated your PRO license - you can use all its advanced options.</p><p>That’s "
2615
+ #~ "all. From this moment you can use your Gallery without any doubt. But if you still "
2616
+ #~ "have some question - do not hesitate to contact us through our <a href=\"https://"
2617
+ #~ "supsystic.com/contact-us/\">internal support</a> or on our <a href=\"http://"
2618
+ #~ "supsystic.com/forum/photo-gallery-plugin/\">Supsystic Forum.</a> Besides you can "
2619
+ #~ "always describe your questions on <a href=\"https://wordpress.org/support/plugin/"
2620
+ #~ "gallery-by-supsystic\">WordPress Ultimate Forum.</a></p><p><b>Enjoy this plugin?</"
2621
+ #~ "b></p><p>It will be nice if you`ll help us and boost plugin with <a href=\"https://"
2622
+ #~ "wordpress.org/support/view/plugin-reviews/gallery-by-supsystic?rate=5#postform/"
2623
+ #~ "\">Five Stars rating on WordPress.org.</a></p><p>We hope that you like this plugin "
2624
+ #~ "and wish you all the best! Good luck!</p>"
 
2625
  #~ msgstr ""
2626
+ #~ "<p><b>Upgrading</b></p><p>Once you have purchased Premium version of plugin - "
2627
+ #~ "you’ll have to enter license key (you can find it in your personal account on our "
2628
+ #~ "site). Go to the License tab and enter your email and license key. Once you have "
2629
+ #~ "activated your PRO license - you can use all its advanced options.</p><p>That’s "
2630
+ #~ "all. From this moment you can use your Gallery without any doubt. But if you still "
2631
+ #~ "have some question - do not hesitate to contact us through our <a href=\"https://"
2632
+ #~ "supsystic.com/contact-us/\">internal support</a> or on our <a href=\"http://"
2633
+ #~ "supsystic.com/forum/photo-gallery-plugin/\">Supsystic Forum.</a> Besides you can "
2634
+ #~ "always describe your questions on <a href=\"https://wordpress.org/support/plugin/"
2635
+ #~ "gallery-by-supsystic\">WordPress Ultimate Forum.</a></p><p><b>Enjoy this plugin?</"
2636
+ #~ "b></p><p>It will be nice if you`ll help us and boost plugin with <a href=\"https://"
2637
+ #~ "wordpress.org/support/view/plugin-reviews/gallery-by-supsystic?rate=5#postform/"
2638
+ #~ "\">Five Stars rating on WordPress.org.</a></p><p>We hope that you like this plugin "
2639
+ #~ "and wish you all the best! Good luck!</p>"
 
2640
 
2641
  #~ msgid ""
2642
+ #~ "There’re really many options of photo gallery plugin customization. So as soon as "
2643
+ #~ "you close that page, I’ll show you step-by-step tutorial of how to use plugin. Hope "
2644
+ #~ "it will be usefull for you :)"
2645
  #~ msgstr ""
2646
+ #~ "这里真的有许多关于图片图集插件的个性化操作。所以当您关闭那个页面,我将为您显示分步骤"
2647
+ #~ "引导介绍如何使用插件。希望它将对您有用哦:)"
2648
 
2649
  #~ msgid ""
2650
+ #~ "We love our plugin and do the best to improve all features you want and fix all "
2651
+ #~ "issues. But sometimes some issues happened or you can’t find feature you want :) "
2652
+ #~ "Don’t worry, just <a href=\"//supsystic.com/plugins/photo-gallery?"
2653
+ #~ "utm_source=plugin&utm_medium=welcomepage&utm_campaign=photo-gallery#contact\" "
2654
+ #~ "target=\"_blank\"> contact us </a> . We’ll answer in an hour and fix all issues."
 
2655
  #~ msgstr ""
2656
+ #~ "我们爱我们的插件,并尽最大努力改善所有的功能和您要解决所有问题。但有时会发生一些问"
2657
+ #~ "题,或者您找不到你想要的功能 :) 别担心,只需要 <a href=“//supsystic.com/plugins/"
2658
+ #~ "photo-gallery?utm_source=plugin&utm_medium=welcomepage&utm_campaign=photo-"
2659
+ #~ "gallery#contact” target=“_blank”> 联系我们 </a> 。我们将在一小时内回答并修正所有问"
2660
+ #~ "题。"
2661
 
2662
  #~ msgid ""
2663
+ #~ "Gallery doesn’t load on the front end. If the loading gallery icon just keeps "
2664
+ #~ "playing but never loads the gallery."
2665
  #~ msgstr "图集不加载在前端,如果载入图集图标一直显示载入状态,但是从没载入图集。"
2666
 
2667
  #~ msgid ""
2668
+ #~ "You’ll see Gallery by Supsystic Widget on the left. Drag it to the area, where you "
2669
+ #~ "want it to appear."
2670
+ #~ msgstr "您将在左侧看到Gallery by Supsystic小工具,拖拽它到您想要出现的指定区域。"
 
index.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Photo Gallery by Supsystic
5
  * Description: Easy to use Gallery by Supsystic with professional gallery templates. Show off your best design, photography and creative work
6
- * Version: 1.11.3
7
  * Author: supsystic.com
8
  * Author URI: https://supsystic.com
9
  * Text Domain: grid-gallery
@@ -11,5 +11,5 @@
11
 
12
  require_once dirname(__FILE__) . '/app/SupsysticGallery.php';
13
 
14
- $supsysticGallery = new SupsysticGallery('1.11.3');
15
  $supsysticGallery->run();
3
  /**
4
  * Plugin Name: Photo Gallery by Supsystic
5
  * Description: Easy to use Gallery by Supsystic with professional gallery templates. Show off your best design, photography and creative work
6
+ * Version: 1.12.1
7
  * Author: supsystic.com
8
  * Author URI: https://supsystic.com
9
  * Text Domain: grid-gallery
11
 
12
  require_once dirname(__FILE__) . '/app/SupsysticGallery.php';
13
 
14
+ $supsysticGallery = new SupsysticGallery('1.12.1');
15
  $supsysticGallery->run();
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: supsystic.com
3
  Donate link: http://supsystic.com/plugins/gallery
4
  Tags: gallery, grid gallery, image gallery, video gallery, wordpress gallery plugin, responsive gallery, polaroid gallery, photo gallery
5
- Tested up to: 4.9.5
6
- Stable tag: 1.11.3
7
 
8
  Photo Gallery with visual editor to build amazing image gallery. Responsive mobile gallery with grid, masonry, carousel, polaroid and more gallery
9
 
@@ -298,6 +298,35 @@ Important! Photo gallery plugin shortcode must be added in a text editor page, a
298
 
299
  == Changelog ==
300
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  = Gallery 1.11.3 / 17.04.2018 =
302
  * Added "Caption Transformations" options in backend
303
  * Added default values to "Caption Transformations"
2
  Contributors: supsystic.com
3
  Donate link: http://supsystic.com/plugins/gallery
4
  Tags: gallery, grid gallery, image gallery, video gallery, wordpress gallery plugin, responsive gallery, polaroid gallery, photo gallery
5
+ Tested up to: 4.9.6
6
+ Stable tag: 1.12.1
7
 
8
  Photo Gallery with visual editor to build amazing image gallery. Responsive mobile gallery with grid, masonry, carousel, polaroid and more gallery
9
 
298
 
299
  == Changelog ==
300
 
301
+ = Gallery 1.12.1 / 30.05.2018 =
302
+ * Fixed "Full screen width" parameter, when "Gallery Position" is "right"
303
+ * Added parameter "Strict use of images order"
304
+ * Fixed bug (refactoring)
305
+ * Added check before wp_print_footer_scripts for XMLRPC_REQUEST data
306
+ * Added option "Disable image title"
307
+ * Added "add video" behavior for "Gallery list" page
308
+ * Fixed bug, when youtube scripts connected twice
309
+ * Fixed Images positions, when click on "Show more"
310
+ * Removed random position for "Strict use of images order"
311
+ * Fixed minimal image count for small width
312
+ * Fixed image mask width for various images in ""
313
+ * Fixed open link in popup after page load
314
+ * Improve FreeWall config
315
+ * Fixed popup Theme6 "Image Text Container size"
316
+ * Update Chinese translation
317
+
318
+ = Gallery 1.12.0 / 07.05.2018 =
319
+ * Fixed Caption Transformations view in admin page
320
+ * Added tooltips translation
321
+ * Added feature Import preview from youtube video
322
+ * Added Import vimeo video
323
+ * Fixed LazyLoad and Categories
324
+ * Added Gallery initialization by trigger
325
+ * Added parameter "Show few icons by" for Captions and Caption Builder
326
+ * Added preview for "Show few icons by" in admin page
327
+ * Fixed open popup when url hash changed
328
+ * Fixed Image size unit when change gallery type in admin
329
+
330
  = Gallery 1.11.3 / 17.04.2018 =
331
  * Added "Caption Transformations" options in backend
332
  * Added default values to "Caption Transformations"
src/GridGallery/Core/views/form.twig CHANGED
@@ -1,6 +1,6 @@
1
  {% macro open(method, action, attributes) %}
2
  <form method="{{ method|upper }}" {% if action is not empty %}action="{{ action }}"{% endif %}
3
- {% for attribute, value in attributes %}{{ attribute }}="{{ value }}"{% endfor %}>
4
  {% endmacro %}
5
 
6
  {% macro close() %}
@@ -149,7 +149,7 @@
149
  {% endmacro %}
150
 
151
  {% macro select(name, options, selected, attributes) %}
152
- <select name="{{ name }}" {% for attribute, value in attributes %}{{ attribute }}="{{ value }}"{% endfor %}>
153
  {% for value, text in options %}
154
  <option value="{{ value }}" name = "{{ text|lower }}" {% if selected == value %}selected{% endif %}>{{ text }}</option>
155
  {% endfor %}
@@ -185,8 +185,8 @@
185
  {% if actual == expected %}selected="selected"{% endif %}
186
  {% endmacro %}
187
 
188
- {% macro label(label, for) %}
189
- <label for="{{ for }}">{{ label }}</label>
190
  {% endmacro %}
191
 
192
  {% macro icon(name, size, id) %}
1
  {% macro open(method, action, attributes) %}
2
  <form method="{{ method|upper }}" {% if action is not empty %}action="{{ action }}"{% endif %}
3
+ {% for attribute, value in attributes %}{{ attribute }}="{{ value }}" {% endfor %}>
4
  {% endmacro %}
5
 
6
  {% macro close() %}
149
  {% endmacro %}
150
 
151
  {% macro select(name, options, selected, attributes) %}
152
+ <select name="{{ name }}" {% for attribute, value in attributes %}{{ attribute }}="{{ value }}" {% endfor %}>
153
  {% for value, text in options %}
154
  <option value="{{ value }}" name = "{{ text|lower }}" {% if selected == value %}selected{% endif %}>{{ text }}</option>
155
  {% endfor %}
185
  {% if actual == expected %}selected="selected"{% endif %}
186
  {% endmacro %}
187
 
188
+ {% macro label(label, for, attributes) %}
189
+ <label for="{{ for }}" {% for attribute, value in attributes %}{{ attribute }}="{{ value }}"{% endfor %}>{{ label }}</label>
190
  {% endmacro %}
191
 
192
  {% macro icon(name, size, id) %}
src/GridGallery/Galleries/Module.php CHANGED
@@ -89,7 +89,10 @@ class GridGallery_Galleries_Module extends GridGallery_Core_Module
89
 
90
  //on shutdown check is footer is printed , if not print scripts for our gallery
91
  public function shutdown(){
92
- if(!(defined('DOING_AJAX') && DOING_AJAX) && !did_action('wp_footer')){
 
 
 
93
  wp_print_footer_scripts();
94
  }
95
  }
89
 
90
  //on shutdown check is footer is printed , if not print scripts for our gallery
91
  public function shutdown(){
92
+ if(!(defined('DOING_AJAX') && DOING_AJAX)
93
+ && !(defined('XMLRPC_REQUEST') && XMLRPC_REQUEST)
94
+ && !did_action('wp_footer')
95
+ ) {
96
  wp_print_footer_scripts();
97
  }
98
  }
src/GridGallery/Galleries/assets/css/grid-gallery.galleries.frontend.css CHANGED
@@ -322,6 +322,7 @@
322
  .grid-gallery .grid-gallery-caption:hover .supsystic-grid-gallery-image-sharing{
323
  visibility: visible;
324
  opacity: 1;
 
325
  }
326
 
327
  @keyframes rot {
@@ -494,6 +495,7 @@
494
  .ggRtlClass {
495
  direction: rtl;
496
  }
497
- .grid-gallery .grid-gallery-photos img{
 
498
  box-shadow: none;
499
  }
322
  .grid-gallery .grid-gallery-caption:hover .supsystic-grid-gallery-image-sharing{
323
  visibility: visible;
324
  opacity: 1;
325
+ z-index: 10;
326
  }
327
 
328
  @keyframes rot {
495
  .ggRtlClass {
496
  direction: rtl;
497
  }
498
+ .grid-gallery .gg-link,
499
+ .grid-gallery .grid-gallery-photos img {
500
  box-shadow: none;
501
  }
src/GridGallery/Galleries/assets/css/grid-gallery.galleries.style.css CHANGED
@@ -823,6 +823,10 @@ div.gg-shortcode {
823
  #settingsImportDialog .import select.list {
824
  max-width: 100%;
825
  }
 
 
 
 
826
  .supsystic-plugin .settings-list .settings {
827
  padding-top: 0px;
828
  }
@@ -945,4 +949,8 @@ label[for="captionEffSettGrowShrinkVal"] {
945
  label[for="captEffGrowType"],
946
  label[for="captEffShrinkType"] {
947
  font-weight: bold;
 
 
 
 
948
  }
823
  #settingsImportDialog .import select.list {
824
  max-width: 100%;
825
  }
826
+ #importDialog .media-wrapr button .fa,
827
+ #importDialog .media-wrapr a .fa {
828
+ vertical-align: middle;
829
+ }
830
  .supsystic-plugin .settings-list .settings {
831
  padding-top: 0px;
832
  }
949
  label[for="captEffGrowType"],
950
  label[for="captEffShrinkType"] {
951
  font-weight: bold;
952
+ }
953
+
954
+ label.sggCheckboxLabelInOneRow {
955
+ margin-right: 10px;
956
  }
src/GridGallery/Galleries/assets/css/icons-effects.css CHANGED
@@ -32,6 +32,7 @@
32
  #preview.gallery-preview .grid-gallery-caption[data-caption-buider="1"] .hi-icon,
33
  .grid-gallery[data-caption-buider="1"] .hi-icon {
34
  margin: 7px 9px;
 
35
  }
36
 
37
  .hi-icon:after {
32
  #preview.gallery-preview .grid-gallery-caption[data-caption-buider="1"] .hi-icon,
33
  .grid-gallery[data-caption-buider="1"] .hi-icon {
34
  margin: 7px 9px;
35
+ font-family: FontAwesome !important;
36
  }
37
 
38
  .hi-icon:after {
src/GridGallery/Galleries/assets/css/prettyPhoto.css CHANGED
@@ -719,7 +719,7 @@ a.pp_next {
719
  }
720
 
721
  .pp_details .pp_description {
722
- white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: normal;
723
  }
724
  .pp_content_container #sggPrettyPhototooltip {
725
  left: 0; top: 0; margin: 0 20px; padding: 5px 35px 5px 10px; background: rgba(0, 0, 0, 0.5); color: #fff; right: 0; text-align: center; text-overflow: ellipsis;overflow: hidden; max-height: 50%;
719
  }
720
 
721
  .pp_details .pp_description {
722
+ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: normal; max-width: 100%;
723
  }
724
  .pp_content_container #sggPrettyPhototooltip {
725
  left: 0; top: 0; margin: 0 20px; padding: 5px 35px 5px 10px; background: rgba(0, 0, 0, 0.5); color: #fff; right: 0; text-align: center; text-overflow: ellipsis;overflow: hidden; max-height: 50%;
src/GridGallery/Galleries/assets/js/frontend.js CHANGED
@@ -1,16 +1,16 @@
1
  (function ($, undefined) {
2
 
3
- function loadScript() {
4
- if (typeof(YT) == 'undefined' || typeof(YT.Player) == 'undefined') {
5
- var tag = document.createElement('script');
6
- //tag.src = "https://www.youtube.com/iframe_api";
7
- tag.src = "//www.youtube.com/iframe_api";
8
- var firstScriptTag = document.getElementsByTagName('script')[0];
9
- firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
10
- }
11
- }
12
-
13
- loadScript();
14
 
15
  var init = false;
16
 
@@ -612,7 +612,11 @@
612
  'isShowLinkBtn': this.$container.attr('data-show-link-btn-in-popup') == 1,
613
  'isShowHovThumbnail': this.$container.attr('data-show-thumb-hov-in-popup') == 1,
614
  'galleryId': this.$container.attr('data-gg-id'),
615
- getTitle : function(){},
 
 
 
 
616
  changepicturecallback: function(element){
617
  self.changePopUpHash(element.attr('id') || element.attr('data-id'));
618
  self.popup_opened_image = element;
@@ -972,6 +976,10 @@
972
  }).append('<div class="grid-gallery-clearfix"></div>');
973
  self.initPopup();
974
  self.correctMargin();
 
 
 
 
975
  }
976
  );
977
  };
@@ -2391,7 +2399,7 @@
2391
  // this.openHashPopUp();
2392
 
2393
  var galleryId = this.$container.attr('data-gg-id'),
2394
- openByLinkRegexp = new RegExp('#gg-open-' + galleryId + '(?:-(\\d+))*');
2395
 
2396
  History.Adapter.bind(window, 'statechange', function(event) {
2397
  var state = History.getState();
@@ -2457,23 +2465,34 @@
2457
 
2458
  });
2459
 
2460
-
2461
- $(window).on('hashchange', function(event) {
 
2462
  var hash = window.location.hash,
2463
- matches = openByLinkRegexp.exec(hash);
2464
- if (matches) {
2465
 
 
2466
  History.replaceState({
2467
  type: 'sc-gallery',
2468
  hash: '',
2469
  state: 'hashchange'
2470
  }, document.title, window.location.pathname);
2471
 
2472
- var position = matches[1] ? 'eq(' + (matches[1] - 1) + ')' : 'first';
2473
- self.$container.find('.gg-link:' + position + ', .hi-icon:' + position).trigger('click');
2474
- }
 
 
 
 
2475
  });
2476
 
 
 
 
 
 
 
2477
  }, this));
2478
 
2479
  $(window).on('resize', $.proxy(function () {
@@ -2532,6 +2551,11 @@
2532
  contentLoaded();
2533
  });
2534
 
 
 
 
 
 
2535
  //if a customer enter an e-mail for image link in gallery he'll get a mailto: link
2536
  $('a.gg-link').each(function(){
2537
  var gLink = $(this).attr('href');
1
  (function ($, undefined) {
2
 
3
+ // unknown reason for load this method
4
+ //function loadScript() {
5
+ // if (typeof(YT) == 'undefined' || typeof(YT.Player) == 'undefined') {
6
+ // var tag = document.createElement('script');
7
+ // //tag.src = "https://www.youtube.com/iframe_api";
8
+ // tag.src = "//www.youtube.com/iframe_api";
9
+ // var firstScriptTag = document.getElementsByTagName('script')[0];
10
+ // firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
11
+ // }
12
+ //}
13
+ //loadScript();
14
 
15
  var init = false;
16
 
612
  'isShowLinkBtn': this.$container.attr('data-show-link-btn-in-popup') == 1,
613
  'isShowHovThumbnail': this.$container.attr('data-show-thumb-hov-in-popup') == 1,
614
  'galleryId': this.$container.attr('data-gg-id'),
615
+ 'getTitle': function() {},
616
+ 'setImageTitleForPrepare': function($element) {
617
+ var imgTile = self.getPopupTitle($element);
618
+ return imgTile;
619
+ },
620
  changepicturecallback: function(element){
621
  self.changePopUpHash(element.attr('id') || element.attr('data-id'));
622
  self.popup_opened_image = element;
976
  }).append('<div class="grid-gallery-clearfix"></div>');
977
  self.initPopup();
978
  self.correctMargin();
979
+ if(self.$container.data('lazyload-enable') == '1') {
980
+ // images area removed and filled new images
981
+ self.initLazyLoad();
982
+ }
983
  }
984
  );
985
  };
2399
  // this.openHashPopUp();
2400
 
2401
  var galleryId = this.$container.attr('data-gg-id'),
2402
+ openByLinkRegexp = new RegExp('#gg-open-' + galleryId + '(\\-([\\d]+))*$');
2403
 
2404
  History.Adapter.bind(window, 'statechange', function(event) {
2405
  var state = History.getState();
2465
 
2466
  });
2467
 
2468
+ //check url and show popups
2469
+ //options "Open by link in popup"
2470
+ function checkUrl(){
2471
  var hash = window.location.hash,
2472
+ matches = openByLinkRegexp.exec(hash);
 
2473
 
2474
+ if (matches) {
2475
  History.replaceState({
2476
  type: 'sc-gallery',
2477
  hash: '',
2478
  state: 'hashchange'
2479
  }, document.title, window.location.pathname);
2480
 
2481
+ var position = matches[2] ? 'eq(' + (matches[2] - 1) + ')' : 'first';
2482
+ self.$container.find('.gg-link:' + position + ', .hi-icon:' + position).trigger('click');
2483
+ }
2484
+ }
2485
+
2486
+ $(window).on('hashchange', function(event) {
2487
+ checkUrl();
2488
  });
2489
 
2490
+ $(document).ready(function () {
2491
+ checkUrl();
2492
+ });
2493
+
2494
+
2495
+
2496
  }, this));
2497
 
2498
  $(window).on('resize', $.proxy(function () {
2551
  contentLoaded();
2552
  });
2553
 
2554
+ // added Gallery initialization by trigger
2555
+ $(document).on('ggFirInitialize', function() {
2556
+ contentLoaded();
2557
+ });
2558
+
2559
  //if a customer enter an e-mail for image link in gallery he'll get a mailto: link
2560
  $('a.gg-link').each(function(){
2561
  var gLink = $(this).attr('href');
src/GridGallery/Galleries/assets/js/jquery.photobox.js CHANGED
@@ -880,7 +880,7 @@
880
  else{
881
  autoplayBtn && options.autoplay && APControl.play();
882
  }
883
- if( typeof photobox.callback == 'function' )
884
  photobox.callback.apply(imageLinks[activeImage]);
885
  }
886
 
880
  else{
881
  autoplayBtn && options.autoplay && APControl.play();
882
  }
883
+ if(photobox && typeof photobox.callback == 'function' )
884
  photobox.callback.apply(imageLinks[activeImage]);
885
  }
886
 
src/GridGallery/Galleries/assets/js/lib/jquery.prettyphoto.js CHANGED
@@ -167,6 +167,7 @@ Version: 3.1.6
167
  overlay_gallery_max: 9999, /* Maximum number of pictures in the overlay gallery */
168
  keyboard_shortcuts: true, /* Set to false if you open forms inside prettyPhoto */
169
  changepicturecallback: function(){}, /* Called everytime an item is shown/changed */
 
170
  callback: function(){}, /* Called when prettyPhoto is closed */
171
  getTitle: function(){return 'test'},
172
  getImageDimensions: function(){}, /* used in _fitToViewportImage wrapper to get proper dimensions on images*/
@@ -857,6 +858,9 @@ Version: 3.1.6
857
  'position':'absolute',
858
  'top':-10000
859
  });
 
 
 
860
  detailsHeight += $pp_details.height();
861
  detailsHeight = (detailsHeight <= 34) ? 36 : detailsHeight; // Min-height for the details
862
  $pp_details.remove();
167
  overlay_gallery_max: 9999, /* Maximum number of pictures in the overlay gallery */
168
  keyboard_shortcuts: true, /* Set to false if you open forms inside prettyPhoto */
169
  changepicturecallback: function(){}, /* Called everytime an item is shown/changed */
170
+ 'setImageTitleForPrepare': function($element) {},
171
  callback: function(){}, /* Called when prettyPhoto is closed */
172
  getTitle: function(){return 'test'},
173
  getImageDimensions: function(){}, /* used in _fitToViewportImage wrapper to get proper dimensions on images*/
858
  'position':'absolute',
859
  'top':-10000
860
  });
861
+
862
+ $pp_details.find('.pp_description')
863
+ .html(settings.setImageTitleForPrepare($('[href="' + pp_images[set_position] + '"]')));
864
  detailsHeight += $pp_details.height();
865
  detailsHeight = (detailsHeight <= 34) ? 36 : detailsHeight; // Min-height for the details
866
  $pp_details.remove();
src/GridGallery/Galleries/assets/js/settings.js CHANGED
@@ -694,6 +694,7 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
694
 
695
  Controller.prototype.toggleArea = function() {
696
  var $toggle = $('[name="area[grid]"]'),
 
697
  $pagesRow = $('#usePages'),
698
  $optionsHeight = $('[name="area[photo_height]"]'),
699
  $optionsHeightRow = $optionsHeight.closest('tr'),
@@ -701,14 +702,55 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
701
  $optionsWidthRow = $optionsWidth.closest('tr'),
702
  $columsRow = $('#generalColumnsRow'),
703
  $responsiveColumnsRow = $('#responsive-columns').closest('tr'),
 
 
704
  $mosaicImagesCountRow = $('#mosaic-images-count-row');
705
 
706
- var $loadMore = $('#gg-anl-load-more-link'),
707
- $loadMoreContent = $('#gg-anl-load-more'),
708
  $afterLoadMoreContentSeparator = $('#gg-anl-load-more').next('.separator').first(),
709
  $inputShowMore = $('#show-more-disable').closest('.iradio_minimal'),
 
 
 
710
  $imageCountWrapper = $('#gg-mosaic-image-count-wrapper');
711
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
712
  $toggle.on('change', function() {
713
 
714
  $optionsWidthRow.find('input, select').prop('disabled', false);
@@ -728,19 +770,13 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
728
  }
729
 
730
  // hide all others mosaic settings
731
- var $mosaicDependencyObj = $('#gg-mosaic-image-count-text-wrapper')
 
732
  , $alwaysShowObj = $('#display-first-photo-row');
733
- $mosaicDependencyObj.hide();
734
- $imageCountWrapper.hide();
735
  $alwaysShowObj.show();
736
 
737
- //Show load more button and sections
738
- $loadMore.show();
739
- $loadMoreContent.show();
740
- $afterLoadMoreContentSeparator.show();
741
-
742
-
743
- switch($(this).find('option:selected').val()) {
744
  // Fixed
745
  case '0':
746
  $optionsWidthRow.find('option[name="percents"]').hide();
@@ -774,18 +810,22 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
774
  break;
775
  // Mosaic
776
  case '4':
 
 
777
  $optionsHeightRow.hide();
778
  $optionsHeightRow.find('input, select').prop('disabled', true);
779
  $optionsWidthRow.find('option[name="percents"]').show();
780
- $mosaicDependencyObj.show();
781
  $alwaysShowObj.hide();
782
  $mosaicImagesCountRow.show();
783
- $loadMore.hide();
784
- $loadMoreContent.hide();
785
- $afterLoadMoreContentSeparator.hide();
786
- $imageCountWrapper.show();
787
  break;
788
  }
 
 
 
 
 
 
 
789
  }).trigger('change');
790
  };
791
 
@@ -1498,6 +1538,8 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
1498
  var offsetTop2 = Math.floor($("#gg-anl-main").offset().top)
1499
  , galleryType = $('[name="area[grid]"]').val()
1500
  , $mosaicParamsWrapper = $("#gg-mosaic-image-count-text-wrapper")
 
 
1501
  , $mosaicLink = $('#gg-anl-mosaic-settings-link');
1502
 
1503
  _self.linksOyPositions = [];
@@ -1506,7 +1548,7 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
1506
  'offset': 0,
1507
  });
1508
 
1509
- if(galleryType == 4 && $mosaicParamsWrapper.length) {
1510
  $mosaicLink.removeClass('ggSettingsDisplNone');
1511
  _self.linksOyPositions.push({
1512
  'id': '#gg-mosaic-image-count-text-wrapper',
@@ -1520,10 +1562,16 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
1520
  'id': '#gg-anl-soc-share',
1521
  'offset': Math.abs(Math.floor($("#gg-anl-soc-share").offset().top) - offsetTop2 - 40),
1522
  });
1523
- _self.linksOyPositions.push({
1524
- 'id': '#gg-anl-load-more',
1525
- 'offset': Math.abs(Math.floor($("#gg-anl-load-more").offset().top) - offsetTop2 - 40),
1526
- });
 
 
 
 
 
 
1527
  _self.linksOyPositions.push({
1528
  'id': '#gg-anl-cust-button',
1529
  'offset': Math.abs(Math.floor($("#gg-anl-cust-button").offset().top) - offsetTop2 - 40),
@@ -2353,6 +2401,82 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
2353
  .trigger('change');
2354
  });
2355
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2356
  ImagePreview.prototype.initIcons = (function () {
2357
  var fields = {
2358
  iconsColor: 'icons[color]',
@@ -2715,6 +2839,7 @@ sggDataSelectorsCache.prototype.getFromArray = (function(key) {
2715
  this.initMouseShadow();
2716
  this.initOverlayShadow();
2717
  //this.initIcons();
 
2718
  this.initCaption();
2719
  this.initCaptionEffects();
2720
  });
694
 
695
  Controller.prototype.toggleArea = function() {
696
  var $toggle = $('[name="area[grid]"]'),
697
+ selfContr = this,
698
  $pagesRow = $('#usePages'),
699
  $optionsHeight = $('[name="area[photo_height]"]'),
700
  $optionsHeightRow = $optionsHeight.closest('tr'),
702
  $optionsWidthRow = $optionsWidth.closest('tr'),
703
  $columsRow = $('#generalColumnsRow'),
704
  $responsiveColumnsRow = $('#responsive-columns').closest('tr'),
705
+ $ggImageWidthUnit = $('[name="area[photo_width_unit]"]'),
706
+ $ggImageHeightUnit = $('[name="area[photo_height_unit]"]'),
707
  $mosaicImagesCountRow = $('#mosaic-images-count-row');
708
 
709
+ var $loadMoreContent = $('#gg-anl-load-more'),
 
710
  $afterLoadMoreContentSeparator = $('#gg-anl-load-more').next('.separator').first(),
711
  $inputShowMore = $('#show-more-disable').closest('.iradio_minimal'),
712
+ $use2MosaicLayoutInp = $('#sggMosaicUse2Layout'),
713
+ $sggLazyLoadEnableRow = $('#sggLazyLoadEnableRow'),
714
+ $mosaicImageCountTextWr = $('#gg-mosaic-image-count-text-wrapper'),
715
  $imageCountWrapper = $('#gg-mosaic-image-count-wrapper');
716
 
717
+ $mosaicImageCountTextWr.show();
718
+ function mosaicLayout2Toggle() {
719
+ if($toggle.find('option:selected').val() == 4) {
720
+ if($use2MosaicLayoutInp.is(':checked')) {
721
+ // Disable LazyLoad Option
722
+ $('#lazyLoadDisabled').iCheck('check');
723
+ $sggLazyLoadEnableRow.hide();
724
+ //
725
+ $mosaicImageCountTextWr.hide();
726
+ $imageCountWrapper.hide();
727
+ $('#mosaicDisplayAllImg').iCheck('uncheck');
728
+ $('#mosaicShowHiddenImages').iCheck('uncheck');
729
+ $('#mosaic-show-hidden-images-row').removeClass('ggSettingsDisplNone');
730
+ $('#mosaic-display-all-images-row').removeClass('ggSettingsDisplNone');
731
+ //Show load more button and sections
732
+ $loadMoreContent.show();
733
+ $afterLoadMoreContentSeparator.show();
734
+ } else {
735
+ $sggLazyLoadEnableRow.show();
736
+ $mosaicImageCountTextWr.show();
737
+ $imageCountWrapper.show();
738
+ $loadMoreContent.hide();
739
+ $afterLoadMoreContentSeparator.hide();
740
+ }
741
+ } else {
742
+ $sggLazyLoadEnableRow.show();
743
+ $mosaicImageCountTextWr.hide();
744
+ $imageCountWrapper.hide();
745
+ //Show load more button and sections
746
+ $loadMoreContent.show();
747
+ $afterLoadMoreContentSeparator.show();
748
+ }
749
+
750
+ selfContr.slimScrollOnSizeEvent(selfContr);
751
+ }
752
+ $use2MosaicLayoutInp.on('ifToggled', mosaicLayout2Toggle);
753
+
754
  $toggle.on('change', function() {
755
 
756
  $optionsWidthRow.find('input, select').prop('disabled', false);
770
  }
771
 
772
  // hide all others mosaic settings
773
+ var selectedTypeVal = $(this).find('option:selected').val()
774
+ , $use2MosaicLayoutRow = $('#sggMosaicUse2LayoutRow')
775
  , $alwaysShowObj = $('#display-first-photo-row');
776
+ $use2MosaicLayoutRow.hide();
 
777
  $alwaysShowObj.show();
778
 
779
+ switch(selectedTypeVal) {
 
 
 
 
 
 
780
  // Fixed
781
  case '0':
782
  $optionsWidthRow.find('option[name="percents"]').hide();
810
  break;
811
  // Mosaic
812
  case '4':
813
+ // Strict use of images order
814
+ $use2MosaicLayoutRow.show();
815
  $optionsHeightRow.hide();
816
  $optionsHeightRow.find('input, select').prop('disabled', true);
817
  $optionsWidthRow.find('option[name="percents"]').show();
 
818
  $alwaysShowObj.hide();
819
  $mosaicImagesCountRow.show();
 
 
 
 
820
  break;
821
  }
822
+ mosaicLayout2Toggle();
823
+
824
+ if(selectedTypeVal != 1) {
825
+ // reset values
826
+ $ggImageWidthUnit.val(0);
827
+ $ggImageHeightUnit.val(0);
828
+ }
829
  }).trigger('change');
830
  };
831
 
1538
  var offsetTop2 = Math.floor($("#gg-anl-main").offset().top)
1539
  , galleryType = $('[name="area[grid]"]').val()
1540
  , $mosaicParamsWrapper = $("#gg-mosaic-image-count-text-wrapper")
1541
+ , $loadMoreLink = $('#gg-anl-load-more-link')
1542
+ , isMosaicLayout2Used = $('#sggMosaicUse2Layout').is(':checked')
1543
  , $mosaicLink = $('#gg-anl-mosaic-settings-link');
1544
 
1545
  _self.linksOyPositions = [];
1548
  'offset': 0,
1549
  });
1550
 
1551
+ if(galleryType == 4 && $mosaicParamsWrapper.length && !isMosaicLayout2Used) {
1552
  $mosaicLink.removeClass('ggSettingsDisplNone');
1553
  _self.linksOyPositions.push({
1554
  'id': '#gg-mosaic-image-count-text-wrapper',
1562
  'id': '#gg-anl-soc-share',
1563
  'offset': Math.abs(Math.floor($("#gg-anl-soc-share").offset().top) - offsetTop2 - 40),
1564
  });
1565
+ if(galleryType == 4 && !isMosaicLayout2Used) {
1566
+ $loadMoreLink.addClass('ggSettingsDisplNone');
1567
+
1568
+ } else {
1569
+ $loadMoreLink.removeClass('ggSettingsDisplNone');
1570
+ _self.linksOyPositions.push({
1571
+ 'id': '#gg-anl-load-more',
1572
+ 'offset': Math.abs(Math.floor($("#gg-anl-load-more").offset().top) - offsetTop2 - 40),
1573
+ });
1574
+ }
1575
  _self.linksOyPositions.push({
1576
  'id': '#gg-anl-cust-button',
1577
  'offset': Math.abs(Math.floor($("#gg-anl-cust-button").offset().top) - offsetTop2 - 40),
2401
  .trigger('change');
2402
  });
2403
 
2404
+ ImagePreview.prototype.updateIcons = (function() {
2405
+ var captBuilderVal = $('#ggUserCaptionBuilder').val()
2406
+ , captionBuilderIconsEnable = $('#captionBuilderIconsEnable:checked').length
2407
+ , captionIconsEnable = $('#icons-enable:checked').length
2408
+ , showFewIconsSel = $('#showFewIconsSel').val()
2409
+ , toShowVideoIcon = 0
2410
+ , toShowLinkIcon = 0
2411
+ , toShowPopupIcon = 0
2412
+ , toShowIcons = 0
2413
+ , $previewVideoIcon = $('#preview .hi-icon.gg-icon-video')
2414
+ , $previewLinkIcon = $('#preview .hi-icon.gg-icon-link')
2415
+ , $previewPopupIcon = $('#preview .hi-icon.gg-icon-popup')
2416
+ ;
2417
+ if(captBuilderVal == 1 && captionBuilderIconsEnable) {
2418
+ toShowIcons = 1
2419
+ } else if(captBuilderVal == 0 && captionIconsEnable) {
2420
+ toShowIcons = 1
2421
+ }
2422
+ // is icons visible
2423
+ if(toShowIcons == 1) {
2424
+ if(showFewIconsSel == 'params') {
2425
+ toShowVideoIcon = $('#showVideoIconInp:checked').length;
2426
+ toShowLinkIcon = $('#showLinkIconInp:checked').length;
2427
+ toShowPopupIcon = $('#showPopupIconInp:checked').length;
2428
+ } else {
2429
+ toShowVideoIcon = 1;
2430
+ toShowLinkIcon = 1;
2431
+ toShowPopupIcon = 1;
2432
+ }
2433
+ }
2434
+ // icon type to show
2435
+ if(toShowVideoIcon == 1) {
2436
+ $previewVideoIcon.removeClass('ggSettingsDisplNone');
2437
+ } else {
2438
+ $previewVideoIcon.addClass('ggSettingsDisplNone');
2439
+ }
2440
+ if(toShowLinkIcon == 1) {
2441
+ $previewLinkIcon.removeClass('ggSettingsDisplNone');
2442
+ } else {
2443
+ $previewLinkIcon.addClass('ggSettingsDisplNone');
2444
+ }
2445
+ if(toShowPopupIcon == 1) {
2446
+ $previewPopupIcon.removeClass('ggSettingsDisplNone');
2447
+ } else {
2448
+ $previewPopupIcon.addClass('ggSettingsDisplNone');
2449
+ }
2450
+ });
2451
+
2452
+ ImagePreview.prototype.initSharedPropsForIcons = (function() {
2453
+ var selfIp = this;
2454
+
2455
+ $('#showVideoIconInp').on('ifChanged', function() {
2456
+ selfIp.updateIcons();
2457
+ });
2458
+ $('#showLinkIconInp').on('ifChanged', function() {
2459
+ selfIp.updateIcons();
2460
+ });
2461
+ $('#showPopupIconInp').on('ifChanged', function() {
2462
+ selfIp.updateIcons();
2463
+ });
2464
+ // Init Show Few Icons parameter
2465
+ $('#showFewIconsSel').on('change', function() {
2466
+ var $this = $(this)
2467
+ , $sggFewIconsShowingRow = $('#sggFewIconsShowingRow')
2468
+ , selVal = $this.val()
2469
+ ;
2470
+ if(selVal == 'default') {
2471
+ $sggFewIconsShowingRow.addClass('ggSettingsDisplNone');
2472
+ } else {
2473
+ $sggFewIconsShowingRow.removeClass('ggSettingsDisplNone');
2474
+ }
2475
+ selfIp.updateIcons();
2476
+ });
2477
+ $('#showFewIconsSel').trigger('change');
2478
+ });
2479
+
2480
  ImagePreview.prototype.initIcons = (function () {
2481
  var fields = {
2482
  iconsColor: 'icons[color]',
2839
  this.initMouseShadow();
2840
  this.initOverlayShadow();
2841
  //this.initIcons();
2842
+ this.initSharedPropsForIcons();
2843
  this.initCaption();
2844
  this.initCaptionEffects();
2845
  });
src/GridGallery/Galleries/configs/tooltips.php CHANGED
@@ -3,68 +3,68 @@
3
  return array(
4
  'tooltips' => array(
5
  // Area
6
- 'grid-type' => 'There are 4 gallery types:</br>Fixed, Horizontal, Vertical, Fixed Columns</br><img src=@url/Grid.jpg />',
7
- 'columns' => 'Number of columns with images on gallery page',
8
- 'responsive-columns' => 'The number of columns for a given width of the screen. We specify the standard 1200px for medium-sized screens, 768px for the tablets, 320 for mobile. You can change this sizes if you want.',
9
  'distance' => '</br><img src=@url/distance_between_photos.jpg />',
10
- 'area-height' => 'Height',
11
  'area-width' => '</br><img src=@url/gallery-width.jpg />',
12
- 'full-screen-width' => 'Enable fullwidth mode for your gallery',
13
- 'area-padding' => 'Set padding in pixels from both sides of gallery',
14
  'photo-width' => '</br><img src=@url/width_bet_photos.jpg>',
15
  'photo-height' => '</br><img src=@url/height_bet_photos.jpg>',
16
- 'browserUrlTooltipHideFree' => 'If this option is enabled, the links on the images will not be displayed in the browser. Also, it will be impossible to open gallery in popup. In the case you are not sure, please do not enable the option.',
17
- 'default-settings' => 'If you enable this feature - all new galleries will be created with the same settings (even gallery type).<br/>Important! Enable this feature only in one gallery.',
18
  // Border
19
  'border-type' => '<p><img src=@url/solid_border.jpg><img src=@url/Dashed_border.jpg></p><p><img src=@url/dotted_border.jpg><img src=@url/double_border.jpg></p>',
20
  /*'border-color' => 'Select color',*/
21
- 'border-width' => 'This option will work if selected Border type',
22
  'border-radius' => '</br><img src=@url/image-radius.jpg>',
23
- 'cropQuality' => 'Specify quality for image thumbnails',
24
- 'display-first-photo' => 'When this option is enabled, only first picture from this gallery will be seen on the website. The other pictures will be seen in the popup window after clicking on the first picture.',
25
- 'open-by-link' => 'If this option is enabled, then when one clicks on the link, which you can find below, the photos of gallery will be opened directly in popup. Note that the shortcode of this gallery should be added to the page, where you will use gallery link of this option.',
26
- 'social-buttons-project' => 'Select Social Share Buttons project',
27
- 'gallery-social-sharing' => 'Enable social share buttons on gallery page',
28
- 'image-social-sharing' => 'Enable social share buttons on images',
29
- 'popup-social-sharing' => 'Enable social share buttons in popup images',
30
- 'popup-image-text' => 'Select what text to show in popup (caption, title, alt text or description)',
31
  // Shadow
32
  /*'shadow-color' => 'Select color',*/
33
- 'shadow-blur' => 'Blur in percents',
34
- 'when-mouse-is-over' => 'Choose shadow effect by mouse hover',
35
- 'shadow-x' => 'Offset by X',
36
- 'shadow-y' => 'Offset by Y',
37
- 'slideshow' => 'Start slideshow when open big image in popup',
38
- 'box-disableHistory' => 'If this option is checked - browser back button will close popup. If it is unchecked - images will be saved in browser history and will be opened on back or forward button click.',
39
- 'mobile' => 'Check if you want to disable popups on mobile devices',
40
- 'captions' => 'Check if you want to hide pagination and image caption on popup window',
41
- 'hide-long-tooltip-titles' => "To see the whole text of caption in popup window - you can hover on it and a new semi transparent box with the whole text will appear. If you don't use long text in captions, just tick this checkbox and extra tooltip in popup will be disabled.",
42
- 'overlay-personal' => "If option enabled you can choose personal caption effect per image in images list. If option disabled chosen effect will be used for all images",
43
- 'overlay-type' => 'Enable overlay with shadow for all images in the gallery',
44
- 'overlay-effect-image-on-hover-enable' => "'Image on hover' - If this effect is enabled, the other image will be shown on the place of the current one, when hovering on it. The other image could be selected in the option below ('Select Image on hover') and will be shown for all images in this gallery. In case you want to show different pictures, upload them for each image separately on Images List section ('Hover Caption Image' tab). Please note, that 'Personal Captions' option should be enabled.",
45
- 'overlay-effect-image-on-hover' => "'Select Image on Hover' - Upload an image, that will be shown as hover effect for each picture in your gallery.",
46
- 'tooltip' => 'If selected Yes tooltip on hovering image will not appear',
47
- 'ismobile' => 'In order to show always captions on mobile devices - select Yes',
48
- 'isDisableMobileCaption' => 'Check if you want to disable captions on mobile devices',
49
  // Uncomment to enable overlay tooltips
50
  /*'overlay-effect' => 'Overlay effect',
51
  'overlay-background' => 'Overlay background color',
52
  'overlay-foreground' => 'Overlay text color',
53
  'overlay-transparency' => 'Overlay transparency',*/
54
- 'preload' => 'Turn on animated preloader only while gallery is loading',
55
  //photoIcons
56
- 'photo-icon' => "Select Show icons</br><img src=@url/icons.jpg />",
57
  //Categories
58
- 'categories-show' => "Select Show categories</br><img src=@url/show_categories.jpg />",
59
- 'animation-duration' => 'Transition/animation speed in milliseconds',
60
- 'enable-shuffling-animation' => 'Animated sorting and laying out a group of images',
61
  //Pagination
62
- 'pages-show' => "Enable pagination</br><img src=@url/enable_pagination.jpg />",
63
  //Mosaic
64
- 'mosaic-images-count' => 'Show first images',
65
- 'mosaic-show-hidden-images' => 'If this option is enabled - after clicking on the Image with Count all hidden images will be displayed below.',
66
- 'hscroll-mouse-wheel' => 'Scroll amount applied to each mouse wheel step',
67
- 'hscroll-touch-gest' => 'Scroll amount applied when user is using gestures',
68
  ),
69
  'tooltips_icon' => array(
70
  'icon' => 'question'
3
  return array(
4
  'tooltips' => array(
5
  // Area
6
+ 'grid-type' => __('There are 4 gallery types', 'sgg') . ':</br>' . __('Fixed, Horizontal, Vertical, Fixed Columns', 'sgg') . '</br><img src=@url/Grid.jpg />',
7
+ 'columns' => __('Number of columns with images on gallery page', 'sgg'),
8
+ 'responsive-columns' => __('The number of columns for a given width of the screen. We specify the standard 1200px for medium-sized screens, 768px for the tablets, 320 for mobile. You can change this sizes if you want.', 'sgg'),
9
  'distance' => '</br><img src=@url/distance_between_photos.jpg />',
10
+ 'area-height' => __('Height', 'sgg'),
11
  'area-width' => '</br><img src=@url/gallery-width.jpg />',
12
+ 'full-screen-width' => __('Enable fullwidth mode for your gallery', 'sgg'),
13
+ 'area-padding' => __('Set padding in pixels from both sides of gallery', 'sgg'),
14
  'photo-width' => '</br><img src=@url/width_bet_photos.jpg>',
15
  'photo-height' => '</br><img src=@url/height_bet_photos.jpg>',
16
+ 'browserUrlTooltipHideFree' => __('If this option is enabled, the links on the images will not be displayed in the browser. Also, it will be impossible to open gallery in popup. In the case you are not sure, please do not enable the option.', 'sgg'),
17
+ 'default-settings' =>__('If you enable this feature - all new galleries will be created with the same settings (even gallery type).', 'sgg') . '<br/>' .__('Important! Enable this feature only in one gallery.', 'sgg'),
18
  // Border
19
  'border-type' => '<p><img src=@url/solid_border.jpg><img src=@url/Dashed_border.jpg></p><p><img src=@url/dotted_border.jpg><img src=@url/double_border.jpg></p>',
20
  /*'border-color' => 'Select color',*/
21
+ 'border-width' =>__('This option will work if selected Border type', 'sgg'),
22
  'border-radius' => '</br><img src=@url/image-radius.jpg>',
23
+ 'cropQuality' =>__('Specify quality for image thumbnails', 'sgg'),
24
+ 'display-first-photo' => __('When this option is enabled, only first picture from this gallery will be seen on the website. The other pictures will be seen in the popup window after clicking on the first picture.', 'sgg'),
25
+ 'open-by-link' =>__('If this option is enabled, then when one clicks on the link, which you can find below, the photos of gallery will be opened directly in popup. Note that the shortcode of this gallery should be added to the page, where you will use gallery link of this option.', 'sgg'),
26
+ 'social-buttons-project' =>__('Select Social Share Buttons project', 'sgg'),
27
+ 'gallery-social-sharing' =>__('Enable social share buttons on gallery page', 'sgg'),
28
+ 'image-social-sharing' =>__('Enable social share buttons on images', 'sgg'),
29
+ 'popup-social-sharing' =>__('Enable social share buttons in popup images', 'sgg'),
30
+ 'popup-image-text' =>__('Select what text to show in popup (caption, title, alt text or description)', 'sgg'),
31
  // Shadow
32
  /*'shadow-color' => 'Select color',*/
33
+ 'shadow-blur' =>__('Blur in percents', 'sgg'),
34
+ 'when-mouse-is-over' =>__('Choose shadow effect by mouse hover', 'sgg'),
35
+ 'shadow-x' =>__('Offset by X', 'sgg'),
36
+ 'shadow-y' =>__('Offset by Y', 'sgg'),
37
+ 'slideshow' =>__('Start slideshow when open big image in popup', 'sgg'),
38
+ 'box-disableHistory' =>__('If this option is checked - browser back button will close popup. If it is unchecked - images will be saved in browser history and will be opened on back or forward button click.', 'sgg'),
39
+ 'mobile' =>__('Check if you want to disable popups on mobile devices', 'sgg'),
40
+ 'captions' =>__('Check if you want to hide pagination and image caption on popup window', 'sgg'),
41
+ 'hide-long-tooltip-titles' => __( "To see the whole text of caption in popup window - you can hover on it and a new semi transparent box with the whole text will appear. If you don't use long text in captions, just tick this checkbox and extra tooltip in popup will be disabled.", 'sgg'),
42
+ 'overlay-personal' => __( "If option enabled you can choose personal caption effect per image in images list. If option disabled chosen effect will be used for all images", 'sgg'),
43
+ 'overlay-type' =>__('Enable overlay with shadow for all images in the gallery', 'sgg'),
44
+ 'overlay-effect-image-on-hover-enable' => __( "'Image on hover' - If this effect is enabled, the other image will be shown on the place of the current one, when hovering on it. The other image could be selected in the option below ('Select Image on hover') and will be shown for all images in this gallery. In case you want to show different pictures, upload them for each image separately on Images List section ('Hover Caption Image' tab). Please note, that 'Personal Captions' option should be enabled.", 'sgg'),
45
+ 'overlay-effect-image-on-hover' => __( "'Select Image on Hover' - Upload an image, that will be shown as hover effect for each picture in your gallery.", 'sgg'),
46
+ 'tooltip' =>__('If selected Yes tooltip on hovering image will not appear', 'sgg'),
47
+ 'ismobile' =>__('In order to show always captions on mobile devices - select Yes', 'sgg'),
48
+ 'isDisableMobileCaption' =>__('Check if you want to disable captions on mobile devices', 'sgg'),
49
  // Uncomment to enable overlay tooltips
50
  /*'overlay-effect' => 'Overlay effect',
51
  'overlay-background' => 'Overlay background color',
52
  'overlay-foreground' => 'Overlay text color',
53
  'overlay-transparency' => 'Overlay transparency',*/
54
+ 'preload' =>__('Turn on animated preloader only while gallery is loading', 'sgg'),
55
  //photoIcons
56
+ 'photo-icon' =>__('Select Show icons', 'sgg') . '</br><img src=@url/icons.jpg />',
57
  //Categories
58
+ 'categories-show' =>__('Select Show categories', 'sgg') . '</br><img src=@url/show_categories.jpg />',
59
+ 'animation-duration' =>__('Transition/animation speed in milliseconds', 'sgg'),
60
+ 'enable-shuffling-animation' =>__('Animated sorting and laying out a group of images', 'sgg'),
61
  //Pagination
62
+ 'pages-show' =>__('Enable pagination', 'sgg') . '</br><img src=@url/enable_pagination.jpg />',
63
  //Mosaic
64
+ 'mosaic-images-count' =>__('Show first images', 'sgg'),
65
+ 'mosaic-show-hidden-images' =>__('If this option is enabled - after clicking on the Image with Count all hidden images will be displayed below.', 'sgg'),
66
+ 'hscroll-mouse-wheel' =>__('Scroll amount applied to each mouse wheel step', 'sgg'),
67
+ 'hscroll-touch-gest' =>__('Scroll amount applied when user is using gestures', 'sgg'),
68
  ),
69
  'tooltips_icon' => array(
70
  'icon' => 'question'
src/GridGallery/Galleries/views/index.twig CHANGED
@@ -200,4 +200,53 @@
200
  {{ importTypes.show(400) }}
201
  </div>
202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  {% endblock %}
200
  {{ importTypes.show(400) }}
201
  </div>
202
 
203
+ {% import '@core/form.twig' as form %}
204
+ <div id="videoUrlAddDialog" title="{{ 'Add video url' }}" style="display:none;" data-gallery-id="{{ gallery.id }}">
205
+ <div class="sggVideoUrlAddWr">
206
+ <div class="sggTableRow">
207
+ <div class="sggTableColumn6">
208
+ <div class="sggDlgVideoTypeH3">{{ translate('Video type:') }}</div>
209
+ </div>
210
+ <div class="sggTableColumn6">
211
+ {{(
212
+ form.radio(
213
+ 'sggDlgVideoType',
214
+ 'youtube',
215
+ {'id':'sggDlgYoutubeVideoType', 'class':'sggDlgVideoTypeRadio', 'checked':'checked'}
216
+ ) ~
217
+ form.label(
218
+ translate('Youtube url'),
219
+ 'sggDlgYoutubeVideoType'
220
+ ) ~ '<br/>' ~
221
+ form.radio(
222
+ 'sggDlgVideoType',
223
+ 'vimeo',
224
+ {'id':'sggDlgVimeoVideoType', 'class':'sggDlgVideoTypeRadio',}
225
+ ) ~
226
+ form.label(
227
+ translate('Vimeo url'),
228
+ 'sggDlgVimeoVideoType'
229
+ )
230
+ ) |raw }}
231
+ </div>
232
+ </div>
233
+ <div class="sggTableRow">
234
+ <div class="sggTableColumn6">
235
+ <div class="sggDlgVideoTypeH3">{{ translate('Video url:') }}</div>
236
+ </div>
237
+ <div class="sggTableColumn6">
238
+ {{
239
+ form.input(
240
+ 'text',
241
+ 'sggDlgUrlVideoValue',
242
+ '',
243
+ {'id': 'sggDlgUrlVideoInp', 'class': '', }
244
+ )
245
+ }}
246
+ </div>
247
+ </div>
248
+ <div class="sggTableRow sggAduHiden" id="sggAduErrorText"></div>
249
+ </div>
250
+ </div>
251
+
252
  {% endblock %}
src/GridGallery/Galleries/views/settings.twig CHANGED
@@ -431,6 +431,15 @@
431
 
432
  {% endblock %}
433
 
 
 
 
 
 
 
 
 
 
434
  {% block disableRightClick %}
435
  {% endblock %}
436
 
@@ -1171,7 +1180,8 @@
1171
  'lazyLoadDisabled'
1172
  ),
1173
  'lazyload-row',
1174
- true
 
1175
  )}}
1176
  </thead>
1177
  <tbody>
@@ -1234,7 +1244,7 @@
1234
  {% endblock %}
1235
 
1236
  {% block additionalCaptionSettings %}
1237
- <table class="form-table sgg-caption-builder sggSettDisplNone" name="captionAdditSett" id="gg-anl-caption-add-sett">
1238
  <thead>
1239
  {{ form.rowpro(translate('Caption Transformations'),
1240
  'utm_source=plugin&utm_medium=additinalCaptionSettings&utm_campaign=gallery',
@@ -1728,6 +1738,7 @@
1728
  </select>
1729
  </td>
1730
  </tr>
 
1731
  </tbody>
1732
  </table>
1733
  <div class="separator"></div>
@@ -2149,6 +2160,54 @@
2149
  </div>
2150
  </div>
2151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2152
  {% import '@galleries/shortcode/import.twig' as importTypes %}
2153
  <div id="importDialog" title="{{ translate('Select source to import from') }}" style="display: none;">
2154
  {{ importTypes.show(400, gallery.id) }}
@@ -2228,4 +2287,66 @@
2228
 
2229
  {% block settingsOtherPro %}
2230
  {% endblock %}
2231
- {% endblock %}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
431
 
432
  {% endblock %}
433
 
434
+ {{ form.row(translate('Disable image title'),
435
+ form.checkbox(
436
+ 'disableImageTitle',
437
+ 1,
438
+ settings.disableImageTitle == 1 ? {'checked':'checked'} : {}
439
+ ),
440
+ null, null, null
441
+ ) }}
442
+
443
  {% block disableRightClick %}
444
  {% endblock %}
445
 
1180
  'lazyLoadDisabled'
1181
  ),
1182
  'lazyload-row',
1183
+ true,
1184
+ 'sggLazyLoadEnableRow'
1185
  )}}
1186
  </thead>
1187
  <tbody>
1244
  {% endblock %}
1245
 
1246
  {% block additionalCaptionSettings %}
1247
+ <table class="form-table" name="captionAdditSett" id="gg-anl-caption-add-sett">
1248
  <thead>
1249
  {{ form.rowpro(translate('Caption Transformations'),
1250
  'utm_source=plugin&utm_medium=additinalCaptionSettings&utm_campaign=gallery',
1738
  </select>
1739
  </td>
1740
  </tr>
1741
+ {{ _self.showFewIconsBy(settings, form, 0) }}
1742
  </tbody>
1743
  </table>
1744
  <div class="separator"></div>
2160
  </div>
2161
  </div>
2162
 
2163
+ <div id="videoUrlAddDialog" title="{{ 'Add video url' }}" style="display:none;" data-gallery-id="{{ gallery.id }}">
2164
+ <div class="sggVideoUrlAddWr">
2165
+ <div class="sggTableRow">
2166
+ <div class="sggTableColumn6">
2167
+ <div class="sggDlgVideoTypeH3">{{ translate('Video type:') }}</div>
2168
+ </div>
2169
+ <div class="sggTableColumn6">
2170
+ {{(
2171
+ form.radio(
2172
+ 'sggDlgVideoType',
2173
+ 'youtube',
2174
+ {'id':'sggDlgYoutubeVideoType', 'class':'sggDlgVideoTypeRadio', 'checked':'checked'}
2175
+ ) ~
2176
+ form.label(
2177
+ translate('Youtube url'),
2178
+ 'sggDlgYoutubeVideoType'
2179
+ ) ~ '<br/>' ~
2180
+ form.radio(
2181
+ 'sggDlgVideoType',
2182
+ 'vimeo',
2183
+ {'id':'sggDlgVimeoVideoType', 'class':'sggDlgVideoTypeRadio',}
2184
+ ) ~
2185
+ form.label(
2186
+ translate('Vimeo url'),
2187
+ 'sggDlgVimeoVideoType'
2188
+ )
2189
+ ) |raw }}
2190
+ </div>
2191
+ </div>
2192
+ <div class="sggTableRow">
2193
+ <div class="sggTableColumn6">
2194
+ <div class="sggDlgVideoTypeH3">{{ translate('Video url:') }}</div>
2195
+ </div>
2196
+ <div class="sggTableColumn6">
2197
+ {{
2198
+ form.input(
2199
+ 'text',
2200
+ 'sggDlgUrlVideoValue',
2201
+ '',
2202
+ {'id': 'sggDlgUrlVideoInp', 'class': '', }
2203
+ )
2204
+ }}
2205
+ </div>
2206
+ </div>
2207
+ <div class="sggTableRow sggAduHiden" id="sggAduErrorText"></div>
2208
+ </div>
2209
+ </div>
2210
+
2211
  {% import '@galleries/shortcode/import.twig' as importTypes %}
2212
  <div id="importDialog" title="{{ translate('Select source to import from') }}" style="display: none;">
2213
  {{ importTypes.show(400, gallery.id) }}
2287
 
2288
  {% block settingsOtherPro %}
2289
  {% endblock %}
2290
+ {% endblock %}
2291
+
2292
+ {% macro showFewIconsBy(settings, form, isCaptionBuilder) %}
2293
+
2294
+ {% set isShowRow = 0 %}
2295
+ {% if(settings.captionBuilder.enabled == 1 and isCaptionBuilder == 1) %}
2296
+ {% set isShowRow = 1 %}
2297
+ {% elseif (settings.captionBuilder.enabled != 1 and isCaptionBuilder != 1) %}
2298
+ {% set isShowRow = 1 %}
2299
+ {% endif %}
2300
+
2301
+ {% if isShowRow == 1 %}
2302
+ {{
2303
+ form.row(
2304
+ translate('Show few icons by'),
2305
+ form.select(
2306
+ 'icons[showFewIcons]',
2307
+ {
2308
+ 'default': translate('Default'),
2309
+ 'params': translate('By params')
2310
+ },
2311
+ settings.icons.showFewIcons | default('default'),
2312
+ { 'style': 'width: auto;', 'id' : 'showFewIconsSel'}
2313
+ )
2314
+ )
2315
+ }}
2316
+ {{
2317
+ form.row(
2318
+ '',
2319
+ form.checkbox(
2320
+ 'icons[isVideoIcon]',
2321
+ '1',
2322
+ {'id': 'showVideoIconInp', 'class': 'sggCheckboxInOneRow' } | merge(settings.icons.isVideoIcon == 1 ? {'checked':'checked'} : {})
2323
+ ) ~ form.label(
2324
+ translate('Show video icon, if exists'),
2325
+ 'showVideoIconInp',
2326
+ {'class': 'sggCheckboxLabelInOneRow'}
2327
+ ) ~
2328
+ form.checkbox(
2329
+ 'icons[isLinkIcon]',
2330
+ '1',
2331
+ {'id': 'showLinkIconInp', 'class': 'sggCheckboxInOneRow' } | merge(settings.icons.isLinkIcon == 1 ? {'checked':'checked'} : {})
2332
+ ) ~ form.label(
2333
+ translate('Show link icon, if exists'),
2334
+ 'showLinkIconInp',
2335
+ {'class': 'sggCheckboxLabelInOneRow'}
2336
+ ) ~
2337
+ form.checkbox(
2338
+ 'icons[isPopupIcon]',
2339
+ '1',
2340
+ {'id': 'showPopupIconInp', 'class': 'sggCheckboxInOneRow' } | merge(settings.icons.isPopupIcon == 1 ? {'checked':'checked'} : {})
2341
+ ) ~ form.label(
2342
+ translate('Show popup'),
2343
+ 'showPopupIconInp',
2344
+ {'class': 'sggCheckboxLabelInOneRow'}
2345
+ ),
2346
+ null,
2347
+ null,
2348
+ 'sggFewIconsShowingRow'
2349
+ )
2350
+ }}
2351
+ {% endif %}
2352
+ {% endmacro %}
src/GridGallery/Galleries/views/shortcode/gallery.twig CHANGED
@@ -183,7 +183,7 @@
183
  float: left;
184
  {% endif %}
185
  {% if settings.area.position == '2' or settings.area.position == 'right' %}
186
- float:right;
187
  {% endif %}
188
  {% if settings.area.position == 'center' %}
189
  margin-left:auto;
183
  float: left;
184
  {% endif %}
185
  {% if settings.area.position == '2' or settings.area.position == 'right' %}
186
+ float: left;
187
  {% endif %}
188
  {% if settings.area.position == 'center' %}
189
  margin-left:auto;
src/GridGallery/Galleries/views/shortcode/helpers.twig CHANGED
@@ -82,7 +82,10 @@
82
  href="{{ aHref|trim|htmlspecialchars_decode }}"
83
  target="{{ photo.attachment.target|default('_self') }}"
84
  {% endblock %}
85
- title="{{ aTitle|trim }}"
 
 
 
86
 
87
  {% block sggPopupLinkForDetailsButton %}
88
  {# Popup #}
@@ -235,7 +238,9 @@
235
  src="{{ imgSrcStr }}"
236
  class="{{ imgClassStr }}"
237
  alt="{% if photo.attachment.alt is empty or photo.attachment.alt == " " %}{{ photo.attachment.title }}{% else %}{{ photo.attachment.alt }}{% endif %}"
238
- title="{% if photo.attachment.description is not empty %}{{ photo.attachment.description }}{% else %}{{ photo.attachment.title }}{% endif %}"
 
 
239
  data-description="{% if photo.attachment.description is not empty %}{{ photo.attachment.description }}{% else %}{{ photo.attachment.title }}{% endif %}"
240
  data-caption="{% if photo.attachment.caption is not empty %}{{ photo.attachment.caption|e }}{% else %}{{ photo.attachment.title|e }}{% endif %}"
241
  data-title="{{ photo.attachment.title }}"
@@ -290,8 +295,35 @@
290
  class="hi-icon-wrap {{ settings.icons.effect[0:length-1] }} {{ settings.icons.effect }}"
291
  data-margin="{{ settings.icons.margin|default(5) }}"
292
  >
293
- {% if photo.attachment.video is defined and photo.attachment.video is not empty %}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
 
 
295
  {% set videoUrl %}
296
  {% if 'youtu' in photo.attachment.video %}
297
  {{ photo.attachment.video|replace(youtube) }}
@@ -312,13 +344,16 @@
312
  {% endset %}
313
 
314
  <a href="{{ videoUrl|trim }}"
315
- data-id="gg-{{ gallery.id }}-{{ photo.id }}"
316
- title="{{ aTitle|trim }}"
317
- class="hi-icon gg-video {{ videoIcon }}
 
 
 
318
  {% if settings.box.type == '2' %} pbox{% endif %}
319
  "
320
- style="{{ iconStyle|trim }}"
321
- data-video-source="{{ videoSource }}"
322
  {#{% if settings.box.type == '1' and link == false %}#}
323
  {% if settings.box.type == '1' %}
324
  data-rel="prettyPhoto[pp_gal]"
@@ -332,12 +367,34 @@
332
  </a>
333
  {% endif %}
334
 
335
- {% if photo.attachment.external_link is defined and photo.attachment.external_link is not empty %}
336
- <a title="{{ aTitle|trim }}" data-id="gg-{{ gallery.id }}-{{ photo.id }}" href="{% if settings.openByLink == 'on' %} {{ prepareImgUrl }} {% else %} {{ photo.attachment.external_link }} {% endif %} " target="{{ photo.attachment.target|default('_self') }}" class="hi-icon icon-link {% if settings.box.type == '2' and settings.openByLink == 'on' %}pbox{% endif %}" style="{{ iconStyle|trim }}"></a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  {% endif %}
338
 
339
- {% if videoUrl is not defined and (photo.attachment.external_link is not defined or photo.attachment.external_link is empty) %}
340
- <a title="{{ aTitle|trim }}" data-id="gg-{{ gallery.id }}-{{ photo.id }}" href="{{ prepareImgUrl }}" class="hi-icon icon-fullscreen gg-colorbox{% if settings.box.type == '2' and link is not defined %} pbox{% endif %}" style="{{ iconStyle|trim }}"
 
 
 
 
341
  {% if settings.box.type == '1' and link == false %}
342
  data-rel="prettyPhoto[pp_gal]"
343
  {% endif %}>Open in pop-up window</a>
82
  href="{{ aHref|trim|htmlspecialchars_decode }}"
83
  target="{{ photo.attachment.target|default('_self') }}"
84
  {% endblock %}
85
+
86
+ {% if settings.disableImageTitle != 1 %}
87
+ title="{{ aTitle|trim }}"
88
+ {% endif %}
89
 
90
  {% block sggPopupLinkForDetailsButton %}
91
  {# Popup #}
238
  src="{{ imgSrcStr }}"
239
  class="{{ imgClassStr }}"
240
  alt="{% if photo.attachment.alt is empty or photo.attachment.alt == " " %}{{ photo.attachment.title }}{% else %}{{ photo.attachment.alt }}{% endif %}"
241
+ {% if settings.disableImageTitle != 1 %}
242
+ title="{% if photo.attachment.description is not empty %}{{ photo.attachment.description }}{% else %}{{ photo.attachment.title }}{% endif %}"
243
+ {% endif %}
244
  data-description="{% if photo.attachment.description is not empty %}{{ photo.attachment.description }}{% else %}{{ photo.attachment.title }}{% endif %}"
245
  data-caption="{% if photo.attachment.caption is not empty %}{{ photo.attachment.caption|e }}{% else %}{{ photo.attachment.title|e }}{% endif %}"
246
  data-title="{{ photo.attachment.title }}"
295
  class="hi-icon-wrap {{ settings.icons.effect[0:length-1] }} {{ settings.icons.effect }}"
296
  data-margin="{{ settings.icons.margin|default(5) }}"
297
  >
298
+ {# save parameters for show #}
299
+ {% set showFewIconsVar = settings.icons.showFewIcons|default('default') %}
300
+ {% set isShowVideoIcon = 0 %}
301
+ {% if photo.attachment.video is not empty
302
+ and (
303
+ showFewIconsVar == 'default'
304
+ or (
305
+ showFewIconsVar == 'params'
306
+ and settings.icons.isVideoIcon == '1'
307
+ )
308
+ )
309
+ %}
310
+ {% set isShowVideoIcon = 1 %}
311
+ {% endif %}
312
+
313
+ {% set isShowLinkIcon = 0 %}
314
+ {% if photo.attachment.external_link is not empty
315
+ and (
316
+ showFewIconsVar == 'default'
317
+ or (
318
+ showFewIconsVar == 'params'
319
+ and settings.icons.isLinkIcon == '1'
320
+ )
321
+ )
322
+ %}
323
+ {% set isShowLinkIcon = 1 %}
324
+ {% endif %}
325
 
326
+ {% if isShowVideoIcon == 1 %}
327
  {% set videoUrl %}
328
  {% if 'youtu' in photo.attachment.video %}
329
  {{ photo.attachment.video|replace(youtube) }}
344
  {% endset %}
345
 
346
  <a href="{{ videoUrl|trim }}"
347
+ data-id="gg-{{ gallery.id }}-{{ photo.id }}"
348
+ {% if settings.disableImageTitle != 1 %}
349
+ title="{{ aTitle|trim }}"
350
+ {% endif %}
351
+
352
+ class="hi-icon gg-video {{ videoIcon }}
353
  {% if settings.box.type == '2' %} pbox{% endif %}
354
  "
355
+ style="{{ iconStyle|trim }}"
356
+ data-video-source="{{ videoSource }}"
357
  {#{% if settings.box.type == '1' and link == false %}#}
358
  {% if settings.box.type == '1' %}
359
  data-rel="prettyPhoto[pp_gal]"
367
  </a>
368
  {% endif %}
369
 
370
+ {% if isShowLinkIcon == 1 %}
371
+ <a
372
+ {% if settings.disableImageTitle != 1 %}
373
+ title="{{ aTitle|trim }}"
374
+ {% endif %}
375
+ data-id="gg-{{ gallery.id }}-{{ photo.id }}" href="{% if settings.openByLink == 'on' %} {{ prepareImgUrl }} {% else %} {{ photo.attachment.external_link }} {% endif %} " target="{{ photo.attachment.target|default('_self') }}" class="hi-icon icon-link {% if settings.box.type == '2' and settings.openByLink == 'on' %}pbox{% endif %}" style="{{ iconStyle|trim }}"></a>
376
+ {% endif %}
377
+
378
+ {% set isShowPopupIcon = 0 %}
379
+ {% if (
380
+ showFewIconsVar == 'default'
381
+ and videoUrl is empty
382
+ and photo.attachment.external_link is empty
383
+ )
384
+ or (
385
+ showFewIconsVar == 'params'
386
+ and settings.icons.isPopupIcon == '1'
387
+ )
388
+ %}
389
+ {% set isShowPopupIcon = 1 %}
390
  {% endif %}
391
 
392
+ {% if isShowPopupIcon == 1 %}
393
+ <a
394
+ {% if settings.disableImageTitle != 1 %}
395
+ title="{{ aTitle|trim }}"
396
+ {% endif %}
397
+ data-id="gg-{{ gallery.id }}-{{ photo.id }}" href="{{ prepareImgUrl }}" class="hi-icon icon-fullscreen gg-colorbox{% if settings.box.type == '2' and link is not defined %} pbox{% endif %}" style="{{ iconStyle|trim }}"
398
  {% if settings.box.type == '1' and link == false %}
399
  data-rel="prettyPhoto[pp_gal]"
400
  {% endif %}>Open in pop-up window</a>
src/GridGallery/Galleries/views/shortcode/import.twig CHANGED
@@ -20,11 +20,19 @@
20
  {% endif %}
21
  <h1>{{ translate('Choose source') }}</h1>
22
  <button class="button button-primary button-hero gallery" id="gg-btn-upload" data-folder-id="0"
23
- style="width: 400px;"
24
  data-gallery-id="{{ galleryId }}" data-upload>
25
  <i class="fa fa-wordpress fa-2x"></i>
26
  {{ translate('Import from WordPress Media Library') }}
27
  </button>
 
 
 
 
 
 
 
 
28
  <h3>{{ translate('Import from social networks') }}</h3>
29
  <a class="button button-primary button-hero" href="{{ environment.generateUrl('insta', 'index', {'id': galleryId}) }}" style="width: 400px;margin-bottom: 20px;">
30
  <i class="fa fa-instagram fa-2x"></i>
@@ -59,6 +67,13 @@
59
  <i class="fa fa-unlock fa-2x"></i>
60
  {{ translate('Get PRO') }}
61
  </a>
 
 
 
 
 
 
 
62
  <button class="button button-primary button-hero gallery disabled" data-folder-id="0"
63
  style="width: 400px;margin-bottom: 20px;"
64
  data-gallery-id="{{ gallery.id }}" data-upload
20
  {% endif %}
21
  <h1>{{ translate('Choose source') }}</h1>
22
  <button class="button button-primary button-hero gallery" id="gg-btn-upload" data-folder-id="0"
23
+ style="width: 400px; margin-bottom: 20px;"
24
  data-gallery-id="{{ galleryId }}" data-upload>
25
  <i class="fa fa-wordpress fa-2x"></i>
26
  {{ translate('Import from WordPress Media Library') }}
27
  </button>
28
+ {% if environment.isPro() == true %}
29
+ <button class="button button-primary button-hero gallery" id="sggUploadVideoFromUrlBtn" data-folder-id="0"
30
+ style="width: 400px;"
31
+ >
32
+ <i class="fa fa-youtube-play fa-2x" aria-hidden="true"></i>
33
+ {{ translate('Add video') }}
34
+ </button>
35
+ {% endif %}
36
  <h3>{{ translate('Import from social networks') }}</h3>
37
  <a class="button button-primary button-hero" href="{{ environment.generateUrl('insta', 'index', {'id': galleryId}) }}" style="width: 400px;margin-bottom: 20px;">
38
  <i class="fa fa-instagram fa-2x"></i>
67
  <i class="fa fa-unlock fa-2x"></i>
68
  {{ translate('Get PRO') }}
69
  </a>
70
+ <button class="button button-primary button-hero gallery disabled" data-folder-id="0"
71
+ style="width: 400px;margin-bottom: 20px;"
72
+ data-src="http://supsystic.com/plugins/photo-gallery/"
73
+ >
74
+ <i class="fa fa-youtube-play fa-2x" aria-hidden="true"></i>
75
+ {{ translate('Add video') }}
76
+ </button>
77
  <button class="button button-primary button-hero gallery disabled" data-folder-id="0"
78
  style="width: 400px;margin-bottom: 20px;"
79
  data-gallery-id="{{ gallery.id }}" data-upload
src/GridGallery/Galleries/views/view.twig CHANGED
@@ -126,6 +126,7 @@
126
 
127
  {% block content %}
128
  {% import '@galleries/shortcode/import.twig' as importTypes %}
 
129
 
130
  {% if gallery is not defined or gallery is null %}
131
  <p>{{ translate('The gallery is does not exists') }}</p>
@@ -371,4 +372,53 @@
371
  {% block settingsOtherPro %}
372
  {% endblock %}
373
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374
  {% endblock %}
126
 
127
  {% block content %}
128
  {% import '@galleries/shortcode/import.twig' as importTypes %}
129
+ {% import '@core/form.twig' as form %}
130
 
131
  {% if gallery is not defined or gallery is null %}
132
  <p>{{ translate('The gallery is does not exists') }}</p>
372
  {% block settingsOtherPro %}
373
  {% endblock %}
374
  </div>
375
+
376
+ <div id="videoUrlAddDialog" title="{{ 'Add video url' }}" style="display:none;" data-gallery-id="{{ gallery.id }}">
377
+ <div class="sggVideoUrlAddWr">
378
+ <div class="sggTableRow">
379
+ <div class="sggTableColumn6">
380
+ <div class="sggDlgVideoTypeH3">{{ translate('Video type:') }}</div>
381
+ </div>
382
+ <div class="sggTableColumn6">
383
+ {{(
384
+ form.radio(
385
+ 'sggDlgVideoType',
386
+ 'youtube',
387
+ {'id':'sggDlgYoutubeVideoType', 'class':'sggDlgVideoTypeRadio', 'checked':'checked'}
388
+ ) ~
389
+ form.label(
390
+ translate('Youtube url'),
391
+ 'sggDlgYoutubeVideoType'
392
+ ) ~ '<br/>' ~
393
+ form.radio(
394
+ 'sggDlgVideoType',
395
+ 'vimeo',
396
+ {'id':'sggDlgVimeoVideoType', 'class':'sggDlgVideoTypeRadio',}
397
+ ) ~
398
+ form.label(
399
+ translate('Vimeo url'),
400
+ 'sggDlgVimeoVideoType'
401
+ )
402
+ ) |raw }}
403
+ </div>
404
+ </div>
405
+ <div class="sggTableRow">
406
+ <div class="sggTableColumn6">
407
+ <div class="sggDlgVideoTypeH3">{{ translate('Video url:') }}</div>
408
+ </div>
409
+ <div class="sggTableColumn6">
410
+ {{
411
+ form.input(
412
+ 'text',
413
+ 'sggDlgUrlVideoValue',
414
+ '',
415
+ {'id': 'sggDlgUrlVideoInp', 'class': '', }
416
+ )
417
+ }}
418
+ </div>
419
+ </div>
420
+ <div class="sggTableRow sggAduHiden" id="sggAduErrorText"></div>
421
+ </div>
422
+ </div>
423
+
424
  {% endblock %}
src/GridGallery/Photos/assets/js/photos.js CHANGED
@@ -72,6 +72,9 @@
72
  $('#importDialog').on('click', '#gg-btn-upload', function(event) {
73
  $dialog.dialog('close');
74
  });
 
 
 
75
  }
76
 
77
  Controller.prototype.openImportDialog = function () {
@@ -320,6 +323,11 @@
320
  $this.attr('href', href.join('&'));
321
  });
322
  }
 
 
 
 
 
323
  });
324
 
325
  //Open caption effects dialog
72
  $('#importDialog').on('click', '#gg-btn-upload', function(event) {
73
  $dialog.dialog('close');
74
  });
75
+ $('#importDialog').on('click', '#sggUploadVideoFromUrlBtn', function(event) {
76
+ $dialog.dialog('close');
77
+ });
78
  }
79
 
80
  Controller.prototype.openImportDialog = function () {
323
  $this.attr('href', href.join('&'));
324
  });
325
  }
326
+ // if it gallery list page
327
+ galleryId = parseInt(galleryId);
328
+ if(galleryId && !isNaN(galleryId)) {
329
+ $('#videoUrlAddDialog').attr('data-gallery-id', galleryId);
330
+ }
331
  });
332
 
333
  //Open caption effects dialog