Gallery by BestWebSoft - Version 3.9.5

Version Description

  • 07.08.2013 =
  • Update : We updated all functionality for wordpress 3.6.
  • Bugfix : We fixed the bug of displaying images on the gallery edit page.
  • Update : The Turkish language file is updated.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Gallery by BestWebSoft
Version 3.9.5
Comparing to
See all releases

Code changes from version 3.9.4 to 3.9.5

css/stylesheet.css CHANGED
@@ -55,7 +55,7 @@ ul.gallery {
55
  list-style: none outside none;
56
  }
57
  .gallery_box ul{
58
- list-style: none outside none;
59
  margin:0;
60
  }
61
  .gallery_box li{
@@ -85,7 +85,6 @@ ul.gallery {
85
  height:0;
86
  }
87
  .gllr_image_text, .gllr_link_text {
88
- margin-top:10px;
89
  width:150px;
90
  }
91
  .gllr_link_text {
@@ -100,6 +99,9 @@ ul.gallery {
100
  #content .gallery .gllr_image_block a img {
101
  border: 10px solid #F1F1F1;
102
  margin-top: 0;
 
 
 
103
  }
104
  #Upload-File .gllr_order_message{
105
  padding-bottom:10px;
@@ -109,8 +111,6 @@ ul.gallery {
109
  }
110
  #Upload-File .gallery .gllr_border_image {
111
  border: 1px solid #BDBDBD;
112
- height: 170px;
113
- width: 170px;
114
  }
115
  #Upload-File .gallery .gllr_border_image img {
116
  padding:10px;
@@ -215,7 +215,7 @@ table.gllr_pro_version {
215
  margin-bottom: 5px;
216
  }
217
  .gllr_pro_version th,
218
- .gllr_pro_version td{
219
  color: #555555;
220
  }
221
  .gllr_pro_version input,
@@ -244,7 +244,7 @@ table.gllr_pro_version {
244
  font-size: 12px;
245
  opacity: 0.7;
246
  }
247
- .gllr_message .gllr_button{
248
  float: left;
249
  border:1px solid #1f75ad;
250
  font-size:14px;
@@ -282,4 +282,17 @@ table.gllr_pro_version {
282
  float: right;
283
  margin: 8px;
284
  cursor: pointer;
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  }
55
  list-style: none outside none;
56
  }
57
  .gallery_box ul{
58
+ list-style: none outside none !important;
59
  margin:0;
60
  }
61
  .gallery_box li{
85
  height:0;
86
  }
87
  .gllr_image_text, .gllr_link_text {
 
88
  width:150px;
89
  }
90
  .gllr_link_text {
99
  #content .gallery .gllr_image_block a img {
100
  border: 10px solid #F1F1F1;
101
  margin-top: 0;
102
+ box-sizing: content-box;
103
+ -moz-box-sizing: content-box; /*Firefox 1-3*/
104
+ -webkit-box-sizing: content-box; /* Safari */
105
  }
106
  #Upload-File .gllr_order_message{
107
  padding-bottom:10px;
111
  }
112
  #Upload-File .gallery .gllr_border_image {
113
  border: 1px solid #BDBDBD;
 
 
114
  }
115
  #Upload-File .gallery .gllr_border_image img {
116
  padding:10px;
215
  margin-bottom: 5px;
216
  }
217
  .gllr_pro_version th,
218
+ .gllr_pro_version td {
219
  color: #555555;
220
  }
221
  .gllr_pro_version input,
244
  font-size: 12px;
245
  opacity: 0.7;
246
  }
247
+ .gllr_message .gllr_button {
248
  float: left;
249
  border:1px solid #1f75ad;
250
  font-size:14px;
282
  float: right;
283
  margin: 8px;
284
  cursor: pointer;
285
+ }
286
+ #fancybox-wrap {
287
+ box-sizing: content-box;
288
+ -moz-box-sizing: content-box; /*Firefox 1-3*/
289
+ -webkit-box-sizing: content-box; /* Safari */
290
+ }
291
+ #fancybox-wrap * {
292
+ box-sizing: content-box;
293
+ -moz-box-sizing: content-box; /*Firefox 1-3*/
294
+ -webkit-box-sizing: content-box; /* Safari */
295
+ }
296
+ .gllr_image_block img {
297
+ border-style: solid;
298
  }
gallery-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: This plugin allows you to implement gallery page into web site.
6
  Author: BestWebSoft
7
- Version: 3.9.4
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -270,9 +270,9 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
270
  echo '<li id="'.$page->ID.'" class="gllr_image_block"><div class="gllr_drag">';
271
  $image_attributes = wp_get_attachment_image_src( $page->ID, 'thumbnail' );
272
  echo '<div class="gllr_border_image"><img src="'.$image_attributes[0].'" alt="'.$page->post_title.'" title="'.$page->post_title.'" height="'.get_option( 'thumbnail_size_h' ).'" width="'.get_option( 'thumbnail_size_w' ).'" /></div>';
273
- echo '<input type="text" name="gllr_image_text['.$page->ID.']" value="'.get_post_meta( $page->ID, $key, TRUE ).'" class="gllr_image_text" />';
274
  echo '<input type="text" name="gllr_order_text['.$page->ID.']" value="'.$page->menu_order.'" class="gllr_order_text '.( $page->menu_order == 0 ? "hidden" : '' ).'" />';
275
- echo '<br />'.__( "URL", "gallery" ).'<br /><input type="text" name="gllr_link_url['.$page->ID.']" value="'.get_post_meta( $page->ID, $link_key, TRUE ).'" class="gllr_link_text" /><br /><span class="small_text">'.__( "(by click on image <br /> opens a link in a new window)", "gallery" ).'</span>';
276
  echo '<a class="gllr_pro_version" href="http://bestwebsoft.com/plugin/gallery-pro/?k='.md5('banner_wp_admin/plugin_settings_gallery' ).'" target="_blank" title="'. __( 'This setting is available in Pro version', 'gallery' ).'"><br />'.
277
  '<div class="gllr_pro_version">'.__( "Open the link", "gallery" ).'<br/><input disabled type="radio" value="_self" > '.__( "Current window", "gallery" ).'<br/><input disabled type="radio" value="_blank" > '.__( "New window", "gallery" ).'</div></a>';
278
  echo '<div class="delete"><a href="javascript:void(0);" onclick="img_delete('.$page->ID.');">'.__( "Delete", "gallery" ).'</a><div/>';
@@ -1186,7 +1186,7 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
1186
  <tr valign="top">
1187
  <th scope="row"><?php _e( 'Display text above the image', 'gallery' ); ?> </th>
1188
  <td>
1189
- <input type="checkbox" name="gllr_image_text" value="1" <?php if( $gllr_options["image_text"] == 1 ) echo 'checked="checked"'; ?> /> <?php _e( 'If you want to display text just in a lightbox', 'gallery' ); ?>
1190
  </td>
1191
  </tr>
1192
  <tr valign="top">
@@ -1287,16 +1287,6 @@ if ( ! function_exists ( 'gllr_add_admin_script' ) ) {
1287
  <script type="text/javascript">
1288
  (function($) {
1289
  $(document).ready(function(){
1290
- if ( $('input[name="bwsmn_form_email"]').val() == '' )
1291
- $('.bws_system_info_mata_box .inside').css('display','none');
1292
-
1293
- $('.bws_system_info_mata_box .handlediv').click( function(){
1294
- if ( $('.bws_system_info_mata_box .inside').is(":visible") ) {
1295
- $('.bws_system_info_mata_box .inside').css('display','none');
1296
- } else {
1297
- $('.bws_system_info_mata_box .inside').css('display','block');
1298
- }
1299
- });
1300
  $('.gllr_image_block img').css('cursor', 'all-scroll' );
1301
  $('.gllr_order_message').removeClass('hidden');
1302
  var d=false;
@@ -1351,6 +1341,9 @@ if ( ! function_exists ( 'gllr_admin_head' ) ) {
1351
  }
1352
  wp_enqueue_script( 'jquery-ui-sortable' );
1353
  wp_enqueue_script( 'gllrFileuploaderJs', plugins_url( 'upload/fileuploader.js', __FILE__ ), array( 'jquery' ) );
 
 
 
1354
  }
1355
  }
1356
 
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: This plugin allows you to implement gallery page into web site.
6
  Author: BestWebSoft
7
+ Version: 3.9.5
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
270
  echo '<li id="'.$page->ID.'" class="gllr_image_block"><div class="gllr_drag">';
271
  $image_attributes = wp_get_attachment_image_src( $page->ID, 'thumbnail' );
272
  echo '<div class="gllr_border_image"><img src="'.$image_attributes[0].'" alt="'.$page->post_title.'" title="'.$page->post_title.'" height="'.get_option( 'thumbnail_size_h' ).'" width="'.get_option( 'thumbnail_size_w' ).'" /></div>';
273
+ echo '<br />'.__( "Title", "gallery" ).'<br /><input type="text" name="gllr_image_text['.$page->ID.']" value="'.get_post_meta( $page->ID, $key, TRUE ).'" class="gllr_image_text" />';
274
  echo '<input type="text" name="gllr_order_text['.$page->ID.']" value="'.$page->menu_order.'" class="gllr_order_text '.( $page->menu_order == 0 ? "hidden" : '' ).'" />';
275
+ echo '<br />'.__( "URL", "gallery" ).'<br /><input type="text" name="gllr_link_url['.$page->ID.']" value="'.get_post_meta( $page->ID, $link_key, TRUE ).'" class="gllr_link_text" /><br /><span class="small_text">'.__( "(by click on image opens a link in a new window)", "gallery" ).'</span>';
276
  echo '<a class="gllr_pro_version" href="http://bestwebsoft.com/plugin/gallery-pro/?k='.md5('banner_wp_admin/plugin_settings_gallery' ).'" target="_blank" title="'. __( 'This setting is available in Pro version', 'gallery' ).'"><br />'.
277
  '<div class="gllr_pro_version">'.__( "Open the link", "gallery" ).'<br/><input disabled type="radio" value="_self" > '.__( "Current window", "gallery" ).'<br/><input disabled type="radio" value="_blank" > '.__( "New window", "gallery" ).'</div></a>';
278
  echo '<div class="delete"><a href="javascript:void(0);" onclick="img_delete('.$page->ID.');">'.__( "Delete", "gallery" ).'</a><div/>';
1186
  <tr valign="top">
1187
  <th scope="row"><?php _e( 'Display text above the image', 'gallery' ); ?> </th>
1188
  <td>
1189
+ <input type="checkbox" name="gllr_image_text" value="1" <?php if( $gllr_options["image_text"] == 1 ) echo 'checked="checked"'; ?> /> <?php _e( 'Turn off the checkbox, if you want to display text just in a lightbox', 'gallery' ); ?>
1190
  </td>
1191
  </tr>
1192
  <tr valign="top">
1287
  <script type="text/javascript">
1288
  (function($) {
1289
  $(document).ready(function(){
 
 
 
 
 
 
 
 
 
 
1290
  $('.gllr_image_block img').css('cursor', 'all-scroll' );
1291
  $('.gllr_order_message').removeClass('hidden');
1292
  var d=false;
1341
  }
1342
  wp_enqueue_script( 'jquery-ui-sortable' );
1343
  wp_enqueue_script( 'gllrFileuploaderJs', plugins_url( 'upload/fileuploader.js', __FILE__ ), array( 'jquery' ) );
1344
+
1345
+ if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" )
1346
+ wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
1347
  }
1348
  }
1349
 
js/bws_menu.js ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function($) {
2
+ $(document).ready(function(){
3
+ if ( $('input[name="bwsmn_form_email"]').val() == '' )
4
+ $('.bws_system_info_mata_box .inside').css('display','none');
5
+
6
+ $('.bws_system_info_mata_box .handlediv').click( function(){
7
+ if ( $('.bws_system_info_mata_box .inside').is(":visible") ) {
8
+ $('.bws_system_info_mata_box .inside').css('display','none');
9
+ } else {
10
+ $('.bws_system_info_mata_box .inside').css('display','block');
11
+ }
12
+ });
13
+ });
14
+ })(jQuery);
languages/gallery-pt_BR.po CHANGED
File without changes
languages/gallery-ru_RU.mo CHANGED
Binary file
languages/gallery-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-18 11:38+0300\n"
6
- "PO-Revision-Date: 2013-07-18 11:38+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -104,13 +104,18 @@ msgstr "сортировать изображения"
104
  msgid "on the plugin settings page ("
105
  msgstr "на странице настроек плагина ("
106
 
 
 
 
 
 
107
  #: gallery-plugin.php:275
108
  msgid "URL"
109
  msgstr "Ссылка"
110
 
111
  #: gallery-plugin.php:275
112
- msgid "(by click on image <br /> opens a link in a new window)"
113
- msgstr "(нажатие на изображение открывает <br /> данную ссылку в новом окне браузера)"
114
 
115
  #: gallery-plugin.php:276
116
  msgid "This setting is available in Pro version"
@@ -140,10 +145,6 @@ msgstr "Вы можете добавить Галерею на вашу стра
140
  msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
141
  msgstr "Если вы хотите вывести краткую форму галереи со ссылкой на Single Gallery Page"
142
 
143
- #: gallery-plugin.php:479
144
- msgid "Title"
145
- msgstr "Название"
146
-
147
  #: gallery-plugin.php:480
148
  msgid "Author"
149
  msgstr "Автор"
@@ -562,8 +563,8 @@ msgid "Display text above the image"
562
  msgstr "Отображение текста над изображением"
563
 
564
  #: gallery-plugin.php:1189
565
- msgid "If you want to display text just in a lightbox"
566
- msgstr "Если вы хотите отображать текст только в лайтбоксе"
567
 
568
  #: gallery-plugin.php:1193
569
  msgid "Display the Back link"
@@ -625,17 +626,17 @@ msgstr "FAQ"
625
  msgid "Support"
626
  msgstr "Поддержка"
627
 
628
- #: gallery-plugin.php:1476
629
  #: template/gallery-single-template.php:76
630
  msgid "Sorry, nothing found."
631
  msgstr "Извините, ничего не найдено."
632
 
633
- #: gallery-plugin.php:1498
634
- #: template/gallery-single-template.php:101
635
  msgid "Download high resolution image"
636
  msgstr "Скачать изображение в высоком разрешении"
637
 
638
- #: template/gallery-single-template.php:101
639
  msgid "Image"
640
  msgstr "Изображение"
641
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-07 11:08+0300\n"
6
+ "PO-Revision-Date: 2013-08-07 11:09+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
104
  msgid "on the plugin settings page ("
105
  msgstr "на странице настроек плагина ("
106
 
107
+ #: gallery-plugin.php:273
108
+ #: gallery-plugin.php:479
109
+ msgid "Title"
110
+ msgstr "Название"
111
+
112
  #: gallery-plugin.php:275
113
  msgid "URL"
114
  msgstr "Ссылка"
115
 
116
  #: gallery-plugin.php:275
117
+ msgid "(by click on image opens a link in a new window)"
118
+ msgstr "(нажатие на изображение открывает данную ссылку в новом окне браузера)"
119
 
120
  #: gallery-plugin.php:276
121
  msgid "This setting is available in Pro version"
145
  msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
146
  msgstr "Если вы хотите вывести краткую форму галереи со ссылкой на Single Gallery Page"
147
 
 
 
 
 
148
  #: gallery-plugin.php:480
149
  msgid "Author"
150
  msgstr "Автор"
563
  msgstr "Отображение текста над изображением"
564
 
565
  #: gallery-plugin.php:1189
566
+ msgid "Turn off the checkbox, if you want to display text just in a lightbox"
567
+ msgstr "Отключите чекбокс, если вы хотите отображать текст только в лайтбоксе"
568
 
569
  #: gallery-plugin.php:1193
570
  msgid "Display the Back link"
626
  msgid "Support"
627
  msgstr "Поддержка"
628
 
629
+ #: gallery-plugin.php:1469
630
  #: template/gallery-single-template.php:76
631
  msgid "Sorry, nothing found."
632
  msgstr "Извините, ничего не найдено."
633
 
634
+ #: gallery-plugin.php:1491
635
+ #: template/gallery-single-template.php:102
636
  msgid "Download high resolution image"
637
  msgstr "Скачать изображение в высоком разрешении"
638
 
639
+ #: template/gallery-single-template.php:102
640
  msgid "Image"
641
  msgstr "Изображение"
642
 
languages/gallery-tr.mo CHANGED
Binary file
languages/gallery-tr.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-07-24 14:05+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
@@ -70,7 +70,7 @@ msgstr "Galeri Kısa Kodu"
70
 
71
  #: gallery-plugin.php:209
72
  msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
73
- msgstr ""
74
 
75
  #: gallery-plugin.php:213
76
  msgid "Choose an image for upload:"
@@ -78,24 +78,24 @@ msgstr "Yüklemek için bir resim seçiniz:"
78
 
79
  #: gallery-plugin.php:218
80
  msgid "Please enable JavaScript to use the file uploader."
81
- msgstr ""
82
 
83
  #: gallery-plugin.php:225
84
  msgid "Allow the download link for all images in this gallery"
85
- msgstr ""
86
 
87
  #: gallery-plugin.php:226
88
  msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
89
- msgstr ""
90
 
91
  #: gallery-plugin.php:228
92
  msgid "Please make a choice"
93
- msgstr ""
94
 
95
  #: gallery-plugin.php:228
96
  #: gallery-plugin.php:1170
97
  msgid "Sort images by"
98
- msgstr "Resimleri sırala: "
99
 
100
  #: gallery-plugin.php:228
101
  msgid "sort images"
@@ -103,27 +103,32 @@ msgstr "görselleri sırala"
103
 
104
  #: gallery-plugin.php:228
105
  msgid "on the plugin settings page ("
106
- msgstr ""
 
 
 
 
 
107
 
108
  #: gallery-plugin.php:275
109
  msgid "URL"
110
- msgstr ""
111
 
112
  #: gallery-plugin.php:275
113
- msgid "(by click on image <br /> opens a link in a new window)"
114
- msgstr ""
115
 
116
  #: gallery-plugin.php:276
117
  msgid "This setting is available in Pro version"
118
- msgstr ""
119
 
120
  #: gallery-plugin.php:277
121
  msgid "Open the link"
122
- msgstr ""
123
 
124
  #: gallery-plugin.php:277
125
  msgid "Current window"
126
- msgstr ""
127
 
128
  #: gallery-plugin.php:277
129
  msgid "New window"
@@ -141,10 +146,6 @@ msgstr "Sayfa ya da yazılara kısa kodu yazarak tekil galeri ekleyebilirsiniz.
141
  msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
142
  msgstr "Eğer Galeri sayfasına link içeren galeri önizlemesi eklemek isterseniz aşağıdaki kodu yapıştırınız"
143
 
144
- #: gallery-plugin.php:479
145
- msgid "Title"
146
- msgstr "Başlık"
147
-
148
  #: gallery-plugin.php:480
149
  msgid "Author"
150
  msgstr "Yazar"
@@ -155,7 +156,7 @@ msgstr "Fotoğraf"
155
 
156
  #: gallery-plugin.php:482
157
  msgid "Publishing"
158
- msgstr ""
159
 
160
  #: gallery-plugin.php:483
161
  #: gallery-plugin.php:1174
@@ -306,12 +307,12 @@ msgstr ""
306
 
307
  #: gallery-plugin.php:802
308
  msgid "Pro plugins"
309
- msgstr ""
310
 
311
  #: gallery-plugin.php:805
312
  #: gallery-plugin.php:831
313
  msgid "Activated plugins"
314
- msgstr ""
315
 
316
  #: gallery-plugin.php:807
317
  #: gallery-plugin.php:815
@@ -332,12 +333,12 @@ msgstr "Ayarlar"
332
  #: gallery-plugin.php:813
333
  #: gallery-plugin.php:839
334
  msgid "Installed plugins"
335
- msgstr ""
336
 
337
  #: gallery-plugin.php:821
338
  #: gallery-plugin.php:847
339
  msgid "Recommended plugins"
340
- msgstr ""
341
 
342
  #: gallery-plugin.php:823
343
  msgid "Purchase"
@@ -345,7 +346,7 @@ msgstr "Satın Al"
345
 
346
  #: gallery-plugin.php:828
347
  msgid "Free plugins"
348
- msgstr ""
349
 
350
  #: gallery-plugin.php:849
351
  msgid "Download"
@@ -354,15 +355,15 @@ msgstr "İndir"
354
  #: gallery-plugin.php:849
355
  #, php-format
356
  msgid "Install %s"
357
- msgstr ""
358
 
359
  #: gallery-plugin.php:849
360
  msgid "Install now from wordpress.org"
361
- msgstr ""
362
 
363
  #: gallery-plugin.php:854
364
  msgid "If you have any questions, please contact us via"
365
- msgstr ""
366
 
367
  #: gallery-plugin.php:861
368
  msgid "System status"
@@ -373,12 +374,14 @@ msgid "Environment"
373
  msgstr ""
374
 
375
  #: gallery-plugin.php:876
 
376
  msgid "Active Plugins"
377
- msgstr ""
378
 
379
  #: gallery-plugin.php:887
 
380
  msgid "Inactive Plugins"
381
- msgstr ""
382
 
383
  #: gallery-plugin.php:901
384
  #, fuzzy
@@ -391,7 +394,7 @@ msgstr ""
391
 
392
  #: gallery-plugin.php:950
393
  msgid "See images &raquo;"
394
- msgstr ""
395
 
396
  #: gallery-plugin.php:1049
397
  msgid "Settings are saved"
@@ -403,22 +406,22 @@ msgstr "Galeri ayarları"
403
 
404
  #: gallery-plugin.php:1066
405
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
406
- msgstr ""
407
 
408
  #: gallery-plugin.php:1070
409
  msgid "Image size for the album cover"
410
- msgstr ""
411
 
412
  #: gallery-plugin.php:1072
413
  #: gallery-plugin.php:1080
414
  #: gallery-plugin.php:1093
415
  msgid "Image size"
416
- msgstr ""
417
 
418
  #: gallery-plugin.php:1073
419
  #: gallery-plugin.php:1081
420
  msgid "Width (in px)"
421
- msgstr "Yaray boyut (px)"
422
 
423
  #: gallery-plugin.php:1074
424
  #: gallery-plugin.php:1082
@@ -431,11 +434,11 @@ msgstr "Galeri resim boyutu"
431
 
432
  #: gallery-plugin.php:1086
433
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
434
- msgstr ""
435
 
436
  #: gallery-plugin.php:1091
437
  msgid "Gallery image size in the lightbox"
438
- msgstr ""
439
 
440
  #: gallery-plugin.php:1094
441
  msgid "Max width (in px)"
@@ -447,56 +450,56 @@ msgstr "Maksimum yükseklik (px)"
447
 
448
  #: gallery-plugin.php:1096
449
  msgid "Display a full size image in the lightbox"
450
- msgstr ""
451
 
452
  #: gallery-plugin.php:1100
453
  msgid "Crop position"
454
- msgstr ""
455
 
456
  #: gallery-plugin.php:1102
457
  msgid "Horizontal"
458
- msgstr ""
459
 
460
  #: gallery-plugin.php:1104
461
  msgid "left"
462
- msgstr ""
463
 
464
  #: gallery-plugin.php:1105
465
  #: gallery-plugin.php:1112
466
  msgid "center"
467
- msgstr ""
468
 
469
  #: gallery-plugin.php:1106
470
  msgid "right"
471
- msgstr ""
472
 
473
  #: gallery-plugin.php:1109
474
  msgid "Vertical"
475
- msgstr ""
476
 
477
  #: gallery-plugin.php:1111
478
  msgid "top"
479
- msgstr ""
480
 
481
  #: gallery-plugin.php:1113
482
  msgid "bottom"
483
- msgstr ""
484
 
485
  #: gallery-plugin.php:1118
486
  msgid "Lightbox background"
487
- msgstr ""
488
 
489
  #: gallery-plugin.php:1120
490
  msgid "Default"
491
- msgstr ""
492
 
493
  #: gallery-plugin.php:1121
494
  msgid "Background transparency (from 0 to 1)"
495
- msgstr ""
496
 
497
  #: gallery-plugin.php:1123
498
  msgid "Select a background color"
499
- msgstr ""
500
 
501
  #: gallery-plugin.php:1125
502
  msgid "Background color"
@@ -505,7 +508,7 @@ msgstr "Arka plan rengi"
505
  #: gallery-plugin.php:1132
506
  #: gallery-plugin.php:1237
507
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
508
- msgstr ""
509
 
510
  #: gallery-plugin.php:1139
511
  msgid "Images with border"
@@ -513,16 +516,16 @@ msgstr "Çerçeveli resimler"
513
 
514
  #: gallery-plugin.php:1142
515
  msgid "Border width in px, just numbers"
516
- msgstr ""
517
 
518
  #: gallery-plugin.php:1144
519
  #: gallery-plugin.php:1146
520
  msgid "Select a border color"
521
- msgstr ""
522
 
523
  #: gallery-plugin.php:1152
524
  msgid "Number of images in the row"
525
- msgstr ""
526
 
527
  #: gallery-plugin.php:1158
528
  msgid "Start slideshow"
@@ -530,23 +533,23 @@ msgstr "Slayt gösterisini başlat"
530
 
531
  #: gallery-plugin.php:1164
532
  msgid "Slideshow interval"
533
- msgstr ""
534
 
535
  #: gallery-plugin.php:1172
536
  msgid "Attachment ID"
537
- msgstr ""
538
 
539
  #: gallery-plugin.php:1173
540
  msgid "Image Name"
541
- msgstr ""
542
 
543
  #: gallery-plugin.php:1175
544
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
545
- msgstr ""
546
 
547
  #: gallery-plugin.php:1176
548
  msgid "Random"
549
- msgstr ""
550
 
551
  #: gallery-plugin.php:1180
552
  msgid "Sort images"
@@ -554,43 +557,44 @@ msgstr "Resimleri sırala"
554
 
555
  #: gallery-plugin.php:1182
556
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
557
- msgstr ""
558
 
559
  #: gallery-plugin.php:1183
560
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
561
- msgstr ""
562
 
563
  #: gallery-plugin.php:1187
564
  msgid "Display text above the image"
565
- msgstr ""
566
 
567
  #: gallery-plugin.php:1189
568
- msgid "If you want to display text just in a lightbox"
569
- msgstr ""
 
570
 
571
  #: gallery-plugin.php:1193
572
  msgid "Display the Back link"
573
- msgstr ""
574
 
575
  #: gallery-plugin.php:1199
576
  msgid "Display the Back link in the shortcode"
577
- msgstr ""
578
 
579
  #: gallery-plugin.php:1205
580
  msgid "The Back link text"
581
- msgstr ""
582
 
583
  #: gallery-plugin.php:1211
584
  msgid "The Back link URL"
585
- msgstr ""
586
 
587
  #: gallery-plugin.php:1213
588
  msgid "Gallery page (Page with Gallery Template)"
589
- msgstr ""
590
 
591
  #: gallery-plugin.php:1215
592
  msgid "(Full URL to custom page)"
593
- msgstr ""
594
 
595
  #: gallery-plugin.php:1219
596
  msgid "The Read More link text"
@@ -602,19 +606,19 @@ msgstr "Lightbox içerisinde beğen butonlarını göster"
602
 
603
  #: gallery-plugin.php:1229
604
  msgid "FaceBook"
605
- msgstr ""
606
 
607
  #: gallery-plugin.php:1230
608
  msgid "Twitter"
609
- msgstr ""
610
 
611
  #: gallery-plugin.php:1231
612
  msgid "Pinterest"
613
- msgstr ""
614
 
615
  #: gallery-plugin.php:1232
616
  msgid "Google +1"
617
- msgstr ""
618
 
619
  #: gallery-plugin.php:1245
620
  msgid "Save Changes"
@@ -628,12 +632,12 @@ msgstr "SSS"
628
  msgid "Support"
629
  msgstr "Destek"
630
 
631
- #: gallery-plugin.php:1476
632
  #: template/gallery-single-template.php:76
633
  msgid "Sorry, nothing found."
634
  msgstr "Üzgünüz, sonuç bulunamadı."
635
 
636
- #: gallery-plugin.php:1498
637
  #: template/gallery-single-template.php:102
638
  msgid "Download high resolution image"
639
  msgstr "Yüksek çözünürlüklü görseli indir"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-07 11:06+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
70
 
71
  #: gallery-plugin.php:209
72
  msgid "The gallery temp directory (gallery-plugin/upload/files) is not available for record on your webserver. Please use the standard WP functionality to upload images (media library)"
73
+ msgstr "Geçici galeri dizini (gallery-plugin/upload/files) yazma izni verilmediği için kullanılamıyor. Lütfen ortam bölümünden resimlerinizi upload ediniz."
74
 
75
  #: gallery-plugin.php:213
76
  msgid "Choose an image for upload:"
78
 
79
  #: gallery-plugin.php:218
80
  msgid "Please enable JavaScript to use the file uploader."
81
+ msgstr "Uploader'ı kullanmak için JavaScript desteğini aktifleştirmelisiniz."
82
 
83
  #: gallery-plugin.php:225
84
  msgid "Allow the download link for all images in this gallery"
85
+ msgstr "İndirme bağlantısını bu galerideki tüm resimlere ekle"
86
 
87
  #: gallery-plugin.php:226
88
  msgid "Please use the drag and drop function to change an order of the images displaying and do not forget to save the post."
89
+ msgstr "Sıralamayı değiştirmek için resimleri sürükleyin. Değişiklikleri kaydetmeyi uutmayın."
90
 
91
  #: gallery-plugin.php:228
92
  msgid "Please make a choice"
93
+ msgstr "Lütfen bir seçim yapınız"
94
 
95
  #: gallery-plugin.php:228
96
  #: gallery-plugin.php:1170
97
  msgid "Sort images by"
98
+ msgstr "Resimleri sırala buna göre sırala"
99
 
100
  #: gallery-plugin.php:228
101
  msgid "sort images"
103
 
104
  #: gallery-plugin.php:228
105
  msgid "on the plugin settings page ("
106
+ msgstr "Eklenti ayarları: ("
107
+
108
+ #: gallery-plugin.php:273
109
+ #: gallery-plugin.php:479
110
+ msgid "Title"
111
+ msgstr "Başlık"
112
 
113
  #: gallery-plugin.php:275
114
  msgid "URL"
115
+ msgstr "URL"
116
 
117
  #: gallery-plugin.php:275
118
+ msgid "(by click on image opens a link in a new window)"
119
+ msgstr "(görsele tıklanınca yeni bir pencerede link açılır)"
120
 
121
  #: gallery-plugin.php:276
122
  msgid "This setting is available in Pro version"
123
+ msgstr "Bu ayar Pro verisyonda yapılabilir"
124
 
125
  #: gallery-plugin.php:277
126
  msgid "Open the link"
127
+ msgstr "Linki aç"
128
 
129
  #: gallery-plugin.php:277
130
  msgid "Current window"
131
+ msgstr "Geçerli pencere"
132
 
133
  #: gallery-plugin.php:277
134
  msgid "New window"
146
  msgid "If you want to display a short description containing a screenshot and the link to the Single Gallery Page"
147
  msgstr "Eğer Galeri sayfasına link içeren galeri önizlemesi eklemek isterseniz aşağıdaki kodu yapıştırınız"
148
 
 
 
 
 
149
  #: gallery-plugin.php:480
150
  msgid "Author"
151
  msgstr "Yazar"
156
 
157
  #: gallery-plugin.php:482
158
  msgid "Publishing"
159
+ msgstr "Yayınlama"
160
 
161
  #: gallery-plugin.php:483
162
  #: gallery-plugin.php:1174
307
 
308
  #: gallery-plugin.php:802
309
  msgid "Pro plugins"
310
+ msgstr "Pro eklentiler"
311
 
312
  #: gallery-plugin.php:805
313
  #: gallery-plugin.php:831
314
  msgid "Activated plugins"
315
+ msgstr "Etkinleştirilmiş eklentiler"
316
 
317
  #: gallery-plugin.php:807
318
  #: gallery-plugin.php:815
333
  #: gallery-plugin.php:813
334
  #: gallery-plugin.php:839
335
  msgid "Installed plugins"
336
+ msgstr "Yüklü eklentiler"
337
 
338
  #: gallery-plugin.php:821
339
  #: gallery-plugin.php:847
340
  msgid "Recommended plugins"
341
+ msgstr "Önerilen eklentiler"
342
 
343
  #: gallery-plugin.php:823
344
  msgid "Purchase"
346
 
347
  #: gallery-plugin.php:828
348
  msgid "Free plugins"
349
+ msgstr "Ücretsiz eklentiler"
350
 
351
  #: gallery-plugin.php:849
352
  msgid "Download"
355
  #: gallery-plugin.php:849
356
  #, php-format
357
  msgid "Install %s"
358
+ msgstr "%s yükle"
359
 
360
  #: gallery-plugin.php:849
361
  msgid "Install now from wordpress.org"
362
+ msgstr "wordpress.org'dan hemen yükle"
363
 
364
  #: gallery-plugin.php:854
365
  msgid "If you have any questions, please contact us via"
366
+ msgstr "Herhangi bir sorunuz olursa lütfen bizimle iletişime geçiniz: "
367
 
368
  #: gallery-plugin.php:861
369
  msgid "System status"
374
  msgstr ""
375
 
376
  #: gallery-plugin.php:876
377
+ #, fuzzy
378
  msgid "Active Plugins"
379
+ msgstr "Etkinleştirilmiş eklentiler"
380
 
381
  #: gallery-plugin.php:887
382
+ #, fuzzy
383
  msgid "Inactive Plugins"
384
+ msgstr "Etkinleştirilmiş eklentiler"
385
 
386
  #: gallery-plugin.php:901
387
  #, fuzzy
394
 
395
  #: gallery-plugin.php:950
396
  msgid "See images &raquo;"
397
+ msgstr "Resimleri Gör &raquo;"
398
 
399
  #: gallery-plugin.php:1049
400
  msgid "Settings are saved"
406
 
407
  #: gallery-plugin.php:1066
408
  msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
409
+ msgstr "Sayfa ya da yazılara tekil galeri eklemek için bu kısa kodu kopyalayıp sayfa ya da yazı içerisine yapıştırın:"
410
 
411
  #: gallery-plugin.php:1070
412
  msgid "Image size for the album cover"
413
+ msgstr "Albüm kapağı için resim boyuru"
414
 
415
  #: gallery-plugin.php:1072
416
  #: gallery-plugin.php:1080
417
  #: gallery-plugin.php:1093
418
  msgid "Image size"
419
+ msgstr "Resim boyutu"
420
 
421
  #: gallery-plugin.php:1073
422
  #: gallery-plugin.php:1081
423
  msgid "Width (in px)"
424
+ msgstr "Yatay boyut (px)"
425
 
426
  #: gallery-plugin.php:1074
427
  #: gallery-plugin.php:1082
434
 
435
  #: gallery-plugin.php:1086
436
  msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
437
+ msgstr "Yeni bir resim yüklediğinizde Wordpress belirlernen boyutlarda bir thumbnail oluşturacaktır."
438
 
439
  #: gallery-plugin.php:1091
440
  msgid "Gallery image size in the lightbox"
441
+ msgstr "Lightbox içerisindeki resim boyutu"
442
 
443
  #: gallery-plugin.php:1094
444
  msgid "Max width (in px)"
450
 
451
  #: gallery-plugin.php:1096
452
  msgid "Display a full size image in the lightbox"
453
+ msgstr "Lightbox içerisinde tam boyutlu resim göster"
454
 
455
  #: gallery-plugin.php:1100
456
  msgid "Crop position"
457
+ msgstr "Kırpma konumu"
458
 
459
  #: gallery-plugin.php:1102
460
  msgid "Horizontal"
461
+ msgstr "Yatay"
462
 
463
  #: gallery-plugin.php:1104
464
  msgid "left"
465
+ msgstr "sol"
466
 
467
  #: gallery-plugin.php:1105
468
  #: gallery-plugin.php:1112
469
  msgid "center"
470
+ msgstr "orta"
471
 
472
  #: gallery-plugin.php:1106
473
  msgid "right"
474
+ msgstr "sağ"
475
 
476
  #: gallery-plugin.php:1109
477
  msgid "Vertical"
478
+ msgstr "Dikey"
479
 
480
  #: gallery-plugin.php:1111
481
  msgid "top"
482
+ msgstr "üst"
483
 
484
  #: gallery-plugin.php:1113
485
  msgid "bottom"
486
+ msgstr "alt"
487
 
488
  #: gallery-plugin.php:1118
489
  msgid "Lightbox background"
490
+ msgstr "Lightbox arkaplanı"
491
 
492
  #: gallery-plugin.php:1120
493
  msgid "Default"
494
+ msgstr "Öntanımlı"
495
 
496
  #: gallery-plugin.php:1121
497
  msgid "Background transparency (from 0 to 1)"
498
+ msgstr "Arkaplan saydamlığı (0 - 10 arasında)"
499
 
500
  #: gallery-plugin.php:1123
501
  msgid "Select a background color"
502
+ msgstr "Arkaplan rengi seçiniz"
503
 
504
  #: gallery-plugin.php:1125
505
  msgid "Background color"
508
  #: gallery-plugin.php:1132
509
  #: gallery-plugin.php:1237
510
  msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
511
+ msgstr "Bu özellik Pro versiyonda etkindir. Detaylar için linke tıklayın."
512
 
513
  #: gallery-plugin.php:1139
514
  msgid "Images with border"
516
 
517
  #: gallery-plugin.php:1142
518
  msgid "Border width in px, just numbers"
519
+ msgstr "Çerçeve kalınlığı (px) [sadece sayı yazınız]"
520
 
521
  #: gallery-plugin.php:1144
522
  #: gallery-plugin.php:1146
523
  msgid "Select a border color"
524
+ msgstr "Çerçeve rengi seçiniz"
525
 
526
  #: gallery-plugin.php:1152
527
  msgid "Number of images in the row"
528
+ msgstr "Bir satırdaki resim sayısı"
529
 
530
  #: gallery-plugin.php:1158
531
  msgid "Start slideshow"
533
 
534
  #: gallery-plugin.php:1164
535
  msgid "Slideshow interval"
536
+ msgstr "Slayt gösterisi sıklığı"
537
 
538
  #: gallery-plugin.php:1172
539
  msgid "Attachment ID"
540
+ msgstr "Ek ID"
541
 
542
  #: gallery-plugin.php:1173
543
  msgid "Image Name"
544
+ msgstr "Resim İsmi"
545
 
546
  #: gallery-plugin.php:1175
547
  msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
548
+ msgstr "Sıralama"
549
 
550
  #: gallery-plugin.php:1176
551
  msgid "Random"
552
+ msgstr "Rastgele"
553
 
554
  #: gallery-plugin.php:1180
555
  msgid "Sort images"
557
 
558
  #: gallery-plugin.php:1182
559
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
560
+ msgstr "Artan Sırada (1,2,3; a,b,c)"
561
 
562
  #: gallery-plugin.php:1183
563
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
564
+ msgstr "Azalan Sırada (3,2,1;c,b,a)"
565
 
566
  #: gallery-plugin.php:1187
567
  msgid "Display text above the image"
568
+ msgstr "Görsel üzerinde yazı göster"
569
 
570
  #: gallery-plugin.php:1189
571
+ #, fuzzy
572
+ msgid "Turn off the checkbox, if you want to display text just in a lightbox"
573
+ msgstr "Eğer lightbox içerisinde yazı göstermek isterseniz"
574
 
575
  #: gallery-plugin.php:1193
576
  msgid "Display the Back link"
577
+ msgstr "Geri linkini göster"
578
 
579
  #: gallery-plugin.php:1199
580
  msgid "Display the Back link in the shortcode"
581
+ msgstr "Kısa kodda Geri linkini göster"
582
 
583
  #: gallery-plugin.php:1205
584
  msgid "The Back link text"
585
+ msgstr "Geri linki başlığı"
586
 
587
  #: gallery-plugin.php:1211
588
  msgid "The Back link URL"
589
+ msgstr "Geri linki URL'si"
590
 
591
  #: gallery-plugin.php:1213
592
  msgid "Gallery page (Page with Gallery Template)"
593
+ msgstr "Galeri sayfası"
594
 
595
  #: gallery-plugin.php:1215
596
  msgid "(Full URL to custom page)"
597
+ msgstr "(Özel sayfaya(custom page) tam link)"
598
 
599
  #: gallery-plugin.php:1219
600
  msgid "The Read More link text"
606
 
607
  #: gallery-plugin.php:1229
608
  msgid "FaceBook"
609
+ msgstr "Facebook"
610
 
611
  #: gallery-plugin.php:1230
612
  msgid "Twitter"
613
+ msgstr "Twitter"
614
 
615
  #: gallery-plugin.php:1231
616
  msgid "Pinterest"
617
+ msgstr "Pinterest"
618
 
619
  #: gallery-plugin.php:1232
620
  msgid "Google +1"
621
+ msgstr "Google +1"
622
 
623
  #: gallery-plugin.php:1245
624
  msgid "Save Changes"
632
  msgid "Support"
633
  msgstr "Destek"
634
 
635
+ #: gallery-plugin.php:1469
636
  #: template/gallery-single-template.php:76
637
  msgid "Sorry, nothing found."
638
  msgstr "Üzgünüz, sonuç bulunamadı."
639
 
640
+ #: gallery-plugin.php:1491
641
  #: template/gallery-single-template.php:102
642
  msgid "Download high resolution image"
643
  msgstr "Yüksek çözünürlüklü görseli indir"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
- Tested up to: 3.5.2
7
- Stable tag: 3.9.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -63,7 +63,6 @@ If you notice any bugs in the plugins, you can notify us about it and we'll inve
63
  Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
64
  We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
65
 
66
-
67
  == Installation ==
68
 
69
  1. Upload the `Gallery` folder to the directory `/wp-content/plugins/`.
@@ -145,6 +144,11 @@ and add (for the themes Twenty Eleven or Twenty Ten):
145
 
146
  == Changelog ==
147
 
 
 
 
 
 
148
  = V3.9.4 - 24.07.2013 =
149
  * NEW : Added an ability to display comments on the gallery template pages.
150
  * Update : The Brazilian Portuguese language file is updated.
@@ -309,6 +313,9 @@ and add (for the themes Twenty Eleven or Twenty Ten):
309
 
310
  == Upgrade Notice ==
311
 
 
 
 
312
  = V3.9.4 =
313
  Added an ability to display comments on the gallery template pages. The Brazilian Portuguese language file is updated. The Turkish language file is added to the plugin.
314
 
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
+ Tested up to: 3.6
7
+ Stable tag: 3.9.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
63
  Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
64
  We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
65
 
 
66
  == Installation ==
67
 
68
  1. Upload the `Gallery` folder to the directory `/wp-content/plugins/`.
144
 
145
  == Changelog ==
146
 
147
+ = V3.9.5 - 07.08.2013 =
148
+ * Update : We updated all functionality for wordpress 3.6.
149
+ * Bugfix : We fixed the bug of displaying images on the gallery edit page.
150
+ * Update : The Turkish language file is updated.
151
+
152
  = V3.9.4 - 24.07.2013 =
153
  * NEW : Added an ability to display comments on the gallery template pages.
154
  * Update : The Brazilian Portuguese language file is updated.
313
 
314
  == Upgrade Notice ==
315
 
316
+ = V3.9.5 =
317
+ We updated all functionality for wordpress 3.6. We fixed the bug of displaying images on the gallery edit page. The Turkish language file is updated.
318
+
319
  = V3.9.4 =
320
  Added an ability to display comments on the gallery template pages. The Brazilian Portuguese language file is updated. The Turkish language file is added to the plugin.
321
 
template/gallery-single-template.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php get_header(); ?>
2
  <div id="container" class="site-content">
3
- <div role="main" id="content">
4
  <?php
5
  global $post, $wp_query;
6
  $args = array(
@@ -12,8 +12,8 @@
12
  $second_query = new WP_Query( $args );
13
  $gllr_options = get_option( 'gllr_options' );
14
  if ($second_query->have_posts()) : while ($second_query->have_posts()) : $second_query->the_post(); ?>
15
- <h1 class="home_page_title"><?php the_title(); ?></h1>
16
- <div class="gallery_box_single">
17
  <?php the_content();
18
  $posts = get_posts(array(
19
  "showposts" => -1,
1
  <?php get_header(); ?>
2
  <div id="container" class="site-content">
3
+ <div role="main" id="content" class="hentry">
4
  <?php
5
  global $post, $wp_query;
6
  $args = array(
12
  $second_query = new WP_Query( $args );
13
  $gllr_options = get_option( 'gllr_options' );
14
  if ($second_query->have_posts()) : while ($second_query->have_posts()) : $second_query->the_post(); ?>
15
+ <h1 class="home_page_title entry-header"><?php the_title(); ?></h1>
16
+ <div class="gallery_box_single entry-content">
17
  <?php the_content();
18
  $posts = get_posts(array(
19
  "showposts" => -1,
template/gallery-template.php CHANGED
@@ -6,10 +6,10 @@ Template Name: Gallery Template
6
 
7
  <?php get_header(); ?>
8
  <div id="container" class="site-content">
9
- <div role="main" id="content">
10
- <h1 class="home_page_title"><?php the_title(); ?></h1>
11
  <?php if ( function_exists( 'pdfprnt_show_buttons_for_custom_post_type' ) ) echo pdfprnt_show_buttons_for_custom_post_type( 'post_type=gallery&orderby=post_date' ); ?>
12
- <div class="gallery_box">
13
  <ul>
14
  <?php
15
  global $post;
6
 
7
  <?php get_header(); ?>
8
  <div id="container" class="site-content">
9
+ <div role="main" id="content" class="hentry">
10
+ <h1 class="home_page_title entry-header"><?php the_title(); ?></h1>
11
  <?php if ( function_exists( 'pdfprnt_show_buttons_for_custom_post_type' ) ) echo pdfprnt_show_buttons_for_custom_post_type( 'post_type=gallery&orderby=post_date' ); ?>
12
+ <div class="gallery_box entry-content">
13
  <ul>
14
  <?php
15
  global $post;