Gallery – Photo Gallery and Images Gallery - Version 1.2.1

Version Description

  • Fixed PHP Notices
Download this release

Release Info

Developer robosoft
Plugin Icon 128x128 Gallery – Photo Gallery and Images Gallery
Version 1.2.1
Comparing to
See all releases

Code changes from version 1.2.0 to 1.2.1

includes/frontend/rbs_gallery_class.php CHANGED
@@ -29,14 +29,21 @@ class roboGallery extends roboGalleryUtils{
29
  public $rbsImageLoadingStyle = '';
30
 
31
 
32
- public $linkIconStyle = '';
33
  public $linkIconHoverStyle = '';
34
 
35
  public $zoomIconStyle = '';
36
- public $zoomIconHoverStyle = '';
 
 
 
 
 
 
 
37
 
38
  public $rbsTitleStyle = '';
39
- public $rbsTitleStyleHover = '';
40
 
41
  public $rbsDescStyle = '';
42
  public $rbsDescHoverStyle = '';
@@ -124,6 +131,7 @@ class roboGallery extends roboGalleryUtils{
124
 
125
 
126
  public function addBorder($nameOptions = ''){
 
127
  $border = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.$nameOptions, true );
128
  if( isset($border['width'])){
129
  $borderStyle.= (int) $border['width'].'px ';
@@ -141,8 +149,8 @@ class roboGallery extends roboGalleryUtils{
141
 
142
  public function getGallery( ){
143
  if( !$this->id ) return '';
144
-
145
- $galleryImages = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'galleryImages', true );;
146
  if( !$galleryImages || !is_array( $galleryImages ) || !count($galleryImages) || !(int)$galleryImages[0] ) return '';
147
 
148
  $this->helper->setValue( 'filterContainer', '#'.$this->galleryId.'filter', 'string' );
29
  public $rbsImageLoadingStyle = '';
30
 
31
 
32
+ /* public $linkIconStyle = '';
33
  public $linkIconHoverStyle = '';
34
 
35
  public $zoomIconStyle = '';
36
+ public $zoomIconHoverStyle = '';*/
37
+
38
+ public $rbsLinkIconStyle = '';
39
+ public $rbsLinkIconHoverStyle = '';
40
+
41
+ public $rbsZoomIconStyle = '';
42
+ public $rbsZoomIconHoverStyle = '';
43
+
44
 
45
  public $rbsTitleStyle = '';
46
+ public $rbsTitleHoverStyle = '';
47
 
48
  public $rbsDescStyle = '';
49
  public $rbsDescHoverStyle = '';
131
 
132
 
133
  public function addBorder($nameOptions = ''){
134
+ $borderStyle = '';
135
  $border = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.$nameOptions, true );
136
  if( isset($border['width'])){
137
  $borderStyle.= (int) $border['width'].'px ';
149
 
150
  public function getGallery( ){
151
  if( !$this->id ) return '';
152
+
153
+ $galleryImages = get_post_meta( $this->options_id && $this->real_id ? $this->real_id : $this->id, ROBO_GALLERY_PREFIX.'galleryImages', true );;
154
  if( !$galleryImages || !is_array( $galleryImages ) || !count($galleryImages) || !(int)$galleryImages[0] ) return '';
155
 
156
  $this->helper->setValue( 'filterContainer', '#'.$this->galleryId.'filter', 'string' );
includes/frontend/rbs_gallery_class_utils.php CHANGED
@@ -24,7 +24,7 @@ class roboGalleryUtils extends roboGalleryParent{
24
  function getTemplateItem( $item, $class = '', $template = '', $addClass = '' ){
25
  $retHtml = '';
26
  if(count($item)){
27
- if( isset($item[enabled]) && $item[enabled] ){
28
  if(isset($item['fontSize'])) $this->{$class.'Style'} .= ' font-size:'. (int)$item['fontSize'].'px;'
29
  .' ';
30
  if(isset($item['color'])) $this->{$class.'Style'} .= ' color:'. $item['color'].';';
@@ -64,6 +64,7 @@ class roboGalleryUtils extends roboGalleryParent{
64
  }
65
 
66
  public function addShadow($nameOptions = ''){
 
67
  $shadow = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.$nameOptions, true );
68
 
69
  if( isset($shadow['hshadow'])) $shadowStyle.= (int) $shadow['hshadow'].'px ';
24
  function getTemplateItem( $item, $class = '', $template = '', $addClass = '' ){
25
  $retHtml = '';
26
  if(count($item)){
27
+ if( isset($item['enabled']) && $item['enabled'] ){
28
  if(isset($item['fontSize'])) $this->{$class.'Style'} .= ' font-size:'. (int)$item['fontSize'].'px;'
29
  .' ';
30
  if(isset($item['color'])) $this->{$class.'Style'} .= ' color:'. $item['color'].';';
64
  }
65
 
66
  public function addShadow($nameOptions = ''){
67
+ $shadowStyle = '';
68
  $shadow = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.$nameOptions, true );
69
 
70
  if( isset($shadow['hshadow'])) $shadowStyle.= (int) $shadow['hshadow'].'px ';
includes/options/rbs_gallery_options_hover.php CHANGED
@@ -27,7 +27,7 @@ $hover_group->add_field( array(
27
  'id' => ROBO_GALLERY_PREFIX . 'hover',
28
  'type' => 'rbsselect',
29
  'show_option_none' => false,
30
- 'default' => '1',
31
  'level' => !ROBO_GALLERY_PRO,
32
  'options' => array(
33
  '0' => __( 'Off' , 'cmb' ),
27
  'id' => ROBO_GALLERY_PREFIX . 'hover',
28
  'type' => 'rbsselect',
29
  'show_option_none' => false,
30
+ 'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
31
  'level' => !ROBO_GALLERY_PRO,
32
  'options' => array(
33
  '0' => __( 'Off' , 'cmb' ),
includes/rbs_gallery_init.php CHANGED
@@ -12,13 +12,13 @@
12
  * Available only in http://robosoft.co/
13
  */
14
 
15
- define(ROBO_GALLERY_PREFIX, 'rsg_');
16
- define(ROBO_GALLERY_TYPE_POST, 'robo_gallery_table');
17
 
18
 
19
 
20
- define(ROBO_GALLERY_ICON_PRO, '<button type="button" class="btn btn-danger btn-xs rbs-label-pro">Pro</button>');
21
- define(ROBO_GALLERY_LABEL_PRO, '<span>'.__( 'Available in', 'rbs_gallery' ).'</span> '.ROBO_GALLERY_ICON_PRO);
22
 
23
  if(!function_exists('rbs_gallery_include')){
24
  function rbs_gallery_include( $filesForInclude, $path = '' ){
@@ -53,7 +53,7 @@ if(!function_exists('rbs_gallery_get_current_post_type')){
53
  elseif( $typenow ) return $typenow;
54
  elseif( $current_screen && $current_screen->post_type ) return $current_screen->post_type;
55
  elseif( isset( $_REQUEST['post_type'] ) ) return sanitize_key( $_REQUEST['post_type'] );
56
- elseif (get_post_type($_REQUEST['post'])) return get_post_type($_REQUEST['post']);
57
  return null;
58
  }
59
  }
12
  * Available only in http://robosoft.co/
13
  */
14
 
15
+ define( "ROBO_GALLERY_PREFIX", 'rsg_');
16
+ define( "ROBO_GALLERY_TYPE_POST", 'robo_gallery_table');
17
 
18
 
19
 
20
+ define( "ROBO_GALLERY_ICON_PRO", '<button type="button" class="btn btn-danger btn-xs rbs-label-pro">Pro</button>');
21
+ define( "ROBO_GALLERY_LABEL_PRO", '<span>'.__( 'Available in', 'rbs_gallery' ).'</span> '.ROBO_GALLERY_ICON_PRO);
22
 
23
  if(!function_exists('rbs_gallery_include')){
24
  function rbs_gallery_include( $filesForInclude, $path = '' ){
53
  elseif( $typenow ) return $typenow;
54
  elseif( $current_screen && $current_screen->post_type ) return $current_screen->post_type;
55
  elseif( isset( $_REQUEST['post_type'] ) ) return sanitize_key( $_REQUEST['post_type'] );
56
+ elseif (isset( $_REQUEST['post'] ) && get_post_type($_REQUEST['post'])) return get_post_type($_REQUEST['post']);
57
  return null;
58
  }
59
  }
includes/rbs_gallery_list.php CHANGED
@@ -12,14 +12,14 @@
12
  * Available only in http://robosoft.co/
13
  */
14
 
15
- if($_GET['showproinfo']){
16
  if(!function_exists('rbs_gallery_showInformation')){
17
  function rbs_gallery_showInformation(){
18
  wp_enqueue_style("wp-jquery-ui-dialog");
19
  wp_enqueue_script('jquery-ui-dialog');
20
 
21
  wp_enqueue_script('robo-gallery-info', ROBO_GALLERY_URL.'js/admin/info.js', array( 'jquery' ), ROBO_GALLERY_VERSION, true );
22
- wp_enqueue_style ('robo-gallery-info', ROBO_GALLERY_URL.'css/admin/info.css', array( ), ROBO_GALLERY_VERSION );
23
 
24
  echo '<div id="rbs_showInformation" '
25
  .'style="display: none;" '
@@ -50,8 +50,14 @@ if(!function_exists('rbs_custom_columns')){
50
  add_action( 'manage_'.ROBO_GALLERY_TYPE_POST.'_posts_custom_column' , 'rbs_custom_columns', 10, 2 );
51
  }
52
 
53
- if(!function_exists('add_rbs_table_columns')){
54
- wp_enqueue_style ('robo-gallery-list', ROBO_GALLERY_URL.'css/admin/list.css', array( ), ROBO_GALLERY_VERSION );
55
  function add_rbs_table_columns($columns) { return array_merge($columns, array('rbs_gallery' => __('Shortcode'),)); }
56
  add_filter('manage_'.ROBO_GALLERY_TYPE_POST.'_posts_columns' , 'add_rbs_table_columns');
 
 
 
 
 
 
 
57
  }
12
  * Available only in http://robosoft.co/
13
  */
14
 
15
+ if(isset($_GET['showproinfo']) && $_GET['showproinfo']){
16
  if(!function_exists('rbs_gallery_showInformation')){
17
  function rbs_gallery_showInformation(){
18
  wp_enqueue_style("wp-jquery-ui-dialog");
19
  wp_enqueue_script('jquery-ui-dialog');
20
 
21
  wp_enqueue_script('robo-gallery-info', ROBO_GALLERY_URL.'js/admin/info.js', array( 'jquery' ), ROBO_GALLERY_VERSION, true );
22
+ wp_enqueue_style ('robo-gallery-info', ROBO_GALLERY_URL.'css/admin/info.css', array( ), '' );
23
 
24
  echo '<div id="rbs_showInformation" '
25
  .'style="display: none;" '
50
  add_action( 'manage_'.ROBO_GALLERY_TYPE_POST.'_posts_custom_column' , 'rbs_custom_columns', 10, 2 );
51
  }
52
 
53
+ if(!function_exists('add_rbs_table_columns')){
 
54
  function add_rbs_table_columns($columns) { return array_merge($columns, array('rbs_gallery' => __('Shortcode'),)); }
55
  add_filter('manage_'.ROBO_GALLERY_TYPE_POST.'_posts_columns' , 'add_rbs_table_columns');
56
+ }
57
+
58
+ if(!function_exists('rbs_gallery_robogalleryList')){
59
+ function rbs_gallery_robogalleryList (){
60
+ wp_enqueue_style ('robo-gallery-list', ROBO_GALLERY_URL.'css/admin/list.css', array( ), ROBO_GALLERY_VERSION );
61
+ }
62
+ add_action( 'in_admin_header', 'rbs_gallery_robogalleryList' );
63
  }
js/admin/edit.js CHANGED
@@ -113,12 +113,12 @@
113
  jQuery.each( rbsBlockId, function(index, el) {
114
  if(type!=0){
115
  el.find('.inside').addClass('rbs_disabled_block');
116
- if( el.find('.hndle.ui-sortable-handle > .rbs_info_clone_text').length==0 ){
117
- el.find('.hndle.ui-sortable-handle > span').after('<span class="rbs_info_clone_text"> <span class="dashicons dashicons-info"></span> ['+rbs_toolbox_translation.rbs_info_clone_text+']</span>');
118
  }
119
  } else {
120
  el.find('.inside').removeClass('rbs_disabled_block');
121
- el.find('.hndle.ui-sortable-handle > .rbs_info_clone_text').remove();
122
  }
123
  });
124
  };
113
  jQuery.each( rbsBlockId, function(index, el) {
114
  if(type!=0){
115
  el.find('.inside').addClass('rbs_disabled_block');
116
+ if( el.find('.hndle > .rbs_info_clone_text').length==0 ){
117
+ el.find('.hndle > span').after('<span class="rbs_info_clone_text"> <span class="dashicons dashicons-info"></span> ['+rbs_toolbox_translation.rbs_info_clone_text+']</span>');
118
  }
119
  } else {
120
  el.find('.inside').removeClass('rbs_disabled_block');
121
+ el.find('.hndle > .rbs_info_clone_text').remove();
122
  }
123
  });
124
  };
languages/rbs_gallery-pl_PL.mo CHANGED
Binary file
languages/rbs_gallery-pl_PL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Robo Gallery\n"
4
  "POT-Creation-Date: 2015-08-18 14:02+0200\n"
5
- "PO-Revision-Date: 2015-08-19 14:12+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: RoboSoft Team <team@robosoft.co>\n"
8
  "Language: pl_PL\n"
@@ -307,7 +307,7 @@ msgstr ""
307
  #: rbs_gallery_about.php:64 rbs_gallery_list.php:29
308
  #: rbs_gallery_topblock.php:20
309
  msgid "Get Pro version"
310
- msgstr ""
311
 
312
  #: options/rbs_gallery_options_info.php:29
313
  #: options/rbs_gallery_options_infowide.php:28 rbs_gallery_topblock.php:21
@@ -391,7 +391,7 @@ msgstr "Podpis"
391
 
392
  #: options/rbs_gallery_options_polaroid.php:64
393
  msgid "Align"
394
- msgstr ""
395
 
396
  #: options/rbs_gallery_options_polaroid.php:70
397
  msgid "left"
@@ -584,11 +584,11 @@ msgstr ""
584
 
585
  #: rbs_gallery_init.php:21
586
  msgid "Available in"
587
- msgstr ""
588
 
589
  #: rbs_gallery_init.php:67
590
  msgid "Galleries List"
591
- msgstr ""
592
 
593
  #: rbs_gallery_init.php:68 rbs_gallery_init.php:69
594
  msgid "Add Gallery"
2
  msgstr ""
3
  "Project-Id-Version: Robo Gallery\n"
4
  "POT-Creation-Date: 2015-08-18 14:02+0200\n"
5
+ "PO-Revision-Date: 2015-08-24 08:42+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: RoboSoft Team <team@robosoft.co>\n"
8
  "Language: pl_PL\n"
307
  #: rbs_gallery_about.php:64 rbs_gallery_list.php:29
308
  #: rbs_gallery_topblock.php:20
309
  msgid "Get Pro version"
310
+ msgstr "Zobacz wersje PRO"
311
 
312
  #: options/rbs_gallery_options_info.php:29
313
  #: options/rbs_gallery_options_infowide.php:28 rbs_gallery_topblock.php:21
391
 
392
  #: options/rbs_gallery_options_polaroid.php:64
393
  msgid "Align"
394
+ msgstr "Wyrównanie"
395
 
396
  #: options/rbs_gallery_options_polaroid.php:70
397
  msgid "left"
584
 
585
  #: rbs_gallery_init.php:21
586
  msgid "Available in"
587
+ msgstr "Dostępne w"
588
 
589
  #: rbs_gallery_init.php:67
590
  msgid "Galleries List"
591
+ msgstr "Galerie"
592
 
593
  #: rbs_gallery_init.php:68 rbs_gallery_init.php:69
594
  msgid "Add Gallery"
languages/rbs_gallery-ru_RU.mo CHANGED
Binary file
languages/rbs_gallery-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Robo Gallery v 1.0.0\n"
4
  "POT-Creation-Date: 2015-08-21 10:48+0200\n"
5
- "PO-Revision-Date: 2015-08-21 10:51+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: RoboSoft Team <team@robosoft.co>\n"
8
  "Language: ru_RU\n"
@@ -45,11 +45,11 @@ msgstr "Стиль"
45
  #: options/rbs_gallery_options_button.php:99
46
  #: options/rbs_gallery_options_button.php:115
47
  msgid "Normal"
48
- msgstr ""
49
 
50
  #: options/rbs_gallery_options_button.php:68
51
  msgid "flat"
52
- msgstr ""
53
 
54
  #: options/rbs_gallery_options_button.php:69
55
  msgid "3d"
@@ -58,7 +58,7 @@ msgstr "3D"
58
  #: options/rbs_gallery_options_button.php:70
59
  #: options/rbs_gallery_options_view.php:127
60
  msgid "Border"
61
- msgstr ""
62
 
63
  #: options/rbs_gallery_options_button.php:76
64
  msgid "Color"
@@ -66,11 +66,11 @@ msgstr "Цвет"
66
 
67
  #: options/rbs_gallery_options_button.php:83
68
  msgid "gray"
69
- msgstr ""
70
 
71
  #: options/rbs_gallery_options_button.php:84
72
  msgid "blue"
73
- msgstr ""
74
 
75
  #: options/rbs_gallery_options_button.php:85
76
  msgid "green"
@@ -78,7 +78,7 @@ msgstr "зеленое"
78
 
79
  #: options/rbs_gallery_options_button.php:86
80
  msgid "orange"
81
- msgstr ""
82
 
83
  #: options/rbs_gallery_options_button.php:87
84
  msgid "red"
@@ -102,7 +102,7 @@ msgstr ""
102
 
103
  #: options/rbs_gallery_options_button.php:102
104
  msgid "Circle "
105
- msgstr ""
106
 
107
  #: options/rbs_gallery_options_button.php:107
108
  msgid "Size"
@@ -114,15 +114,15 @@ msgstr ""
114
 
115
  #: options/rbs_gallery_options_button.php:114
116
  msgid "Large"
117
- msgstr ""
118
 
119
  #: options/rbs_gallery_options_button.php:116
120
  msgid "Small"
121
- msgstr ""
122
 
123
  #: options/rbs_gallery_options_button.php:117
124
  msgid "Tiny "
125
- msgstr ""
126
 
127
  #: options/rbs_gallery_options_button.php:122
128
  msgid "Left Padding"
@@ -130,7 +130,7 @@ msgstr "Отступ с лева"
130
 
131
  #: options/rbs_gallery_options_button.php:133
132
  msgid "Bottom Padding"
133
- msgstr ""
134
 
135
  #: options/rbs_gallery_options_copy.php:18
136
  msgid " Clone Gallery"
@@ -138,7 +138,7 @@ msgstr "Копировать галерею"
138
 
139
  #: options/rbs_gallery_options_copy.php:27
140
  msgid "Source Gallery"
141
- msgstr ""
142
 
143
  #: options/rbs_gallery_options_copy.php:28
144
  msgid ""
@@ -245,17 +245,17 @@ msgstr ""
245
 
246
  #: options/rbs_gallery_options_hover.php:83 rbs_gallery_media.php:109
247
  msgid "fade"
248
- msgstr ""
249
 
250
  #: options/rbs_gallery_options_hover.php:90
251
  #: options/rbs_gallery_options_lightbox.php:37
252
  msgid "Show Title"
253
- msgstr ""
254
 
255
  #: options/rbs_gallery_options_hover.php:105
256
  #: options/rbs_gallery_options_polaroid.php:46 rbs_gallery_widget.php:71
257
  msgid "Title"
258
- msgstr ""
259
 
260
  #: options/rbs_gallery_options_hover.php:106
261
  msgid "Link Button"
@@ -267,7 +267,7 @@ msgstr "Кнопка масштаба"
267
 
268
  #: options/rbs_gallery_options_hover.php:108
269
  msgid "Description"
270
- msgstr ""
271
 
272
  #: options/rbs_gallery_options_hover.php:117
273
  msgid "Link Icon"
@@ -307,7 +307,7 @@ msgstr ""
307
  #: rbs_gallery_about.php:64 rbs_gallery_list.php:29
308
  #: rbs_gallery_topblock.php:20
309
  msgid "Get Pro version"
310
- msgstr ""
311
 
312
  #: options/rbs_gallery_options_info.php:29
313
  #: options/rbs_gallery_options_infowide.php:28 rbs_gallery_topblock.php:21
@@ -320,7 +320,7 @@ msgstr ""
320
 
321
  #: options/rbs_gallery_options_lightbox.php:18
322
  msgid "Lightbox Options"
323
- msgstr ""
324
 
325
  #: options/rbs_gallery_options_lightbox.php:26
326
  msgid "Social Buttons"
@@ -381,7 +381,7 @@ msgstr "Стиль Поларойд"
381
 
382
  #: options/rbs_gallery_options_polaroid.php:40
383
  msgid "Source"
384
- msgstr ""
385
 
386
  #: options/rbs_gallery_options_polaroid.php:47
387
  msgid "Desc"
@@ -397,7 +397,7 @@ msgstr "Выровнять"
397
 
398
  #: options/rbs_gallery_options_polaroid.php:70
399
  msgid "left"
400
- msgstr ""
401
 
402
  #: options/rbs_gallery_options_polaroid.php:71
403
  msgid "right"
@@ -434,7 +434,7 @@ msgstr ""
434
 
435
  #: options/rbs_gallery_options_size.php:58
436
  msgid "Colums "
437
- msgstr ""
438
 
439
  #: options/rbs_gallery_options_view.php:18
440
  msgid "Thumbs View Options"
@@ -474,7 +474,7 @@ msgstr ""
474
  #: options/rbs_gallery_options_view.php:144
475
  #: options/rbs_gallery_options_view.php:171
476
  msgid "Border Options"
477
- msgstr ""
478
 
479
  #: options/rbs_gallery_options_view.php:145
480
  msgid "Hover Border Options"
@@ -550,11 +550,11 @@ msgstr ""
550
 
551
  #: rbs_gallery_about.php:59
552
  msgid "Advanced images description settings"
553
- msgstr ""
554
 
555
  #: rbs_gallery_about.php:69 rbs_gallery_settings.php:66
556
  msgid "All Rights Reserved"
557
- msgstr ""
558
 
559
  #: rbs_gallery_button.php:22 rbs_gallery_media.php:43
560
  msgid "Robo Gallery"
@@ -570,7 +570,7 @@ msgstr "Вставить"
570
 
571
  #: rbs_gallery_button.php:30
572
  msgid "Add Robo Gallery"
573
- msgstr ""
574
 
575
  #: rbs_gallery_button.php:41
576
  msgid "Select gallery"
@@ -590,7 +590,7 @@ msgstr "Доступно в "
590
 
591
  #: rbs_gallery_init.php:67
592
  msgid "Galleries List"
593
- msgstr ""
594
 
595
  #: rbs_gallery_init.php:68 rbs_gallery_init.php:69
596
  msgid "Add Gallery"
@@ -617,7 +617,7 @@ msgstr "Shortcode"
617
 
618
  #: rbs_gallery_media.php:58
619
  msgid "Column"
620
- msgstr ""
621
 
622
  #: rbs_gallery_media.php:65
623
  msgid "Link"
@@ -629,7 +629,7 @@ msgstr "Вкл"
629
 
630
  #: rbs_gallery_media.php:78
631
  msgid "Blank Link"
632
- msgstr ""
633
 
634
  #: rbs_gallery_media.php:86
635
  msgid "Video"
@@ -649,23 +649,23 @@ msgstr "Версия jQuery"
649
 
650
  #: rbs_gallery_settings.php:30 rbs_gallery_settings.php:31
651
  msgid "Default"
652
- msgstr ""
653
 
654
  #: rbs_gallery_settings.php:33 rbs_gallery_settings.php:34
655
  msgid "Alternative"
656
- msgstr ""
657
 
658
  #: rbs_gallery_settings.php:40 rbs_gallery_settings.php:43
659
  msgid "Switch Style"
660
- msgstr ""
661
 
662
  #: rbs_gallery_settings.php:44 rbs_gallery_settings.php:45
663
  msgid "Modern"
664
- msgstr ""
665
 
666
  #: rbs_gallery_settings.php:47 rbs_gallery_settings.php:48
667
  msgid "Classic"
668
- msgstr ""
669
 
670
  #: rbs_gallery_settings.php:54
671
  msgid "Size Calculations Delay"
@@ -685,7 +685,7 @@ msgstr ""
685
 
686
  #: rbs_gallery_widget.php:35 rbs_gallery_widget.php:67
687
  msgid "This widget available in Pro version"
688
- msgstr ""
689
 
690
  #: rbs_gallery_widget.php:44
691
  msgid "New gallery"
2
  msgstr ""
3
  "Project-Id-Version: Robo Gallery v 1.0.0\n"
4
  "POT-Creation-Date: 2015-08-21 10:48+0200\n"
5
+ "PO-Revision-Date: 2015-08-24 08:41+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: RoboSoft Team <team@robosoft.co>\n"
8
  "Language: ru_RU\n"
45
  #: options/rbs_gallery_options_button.php:99
46
  #: options/rbs_gallery_options_button.php:115
47
  msgid "Normal"
48
+ msgstr "Обычный"
49
 
50
  #: options/rbs_gallery_options_button.php:68
51
  msgid "flat"
52
+ msgstr "flat"
53
 
54
  #: options/rbs_gallery_options_button.php:69
55
  msgid "3d"
58
  #: options/rbs_gallery_options_button.php:70
59
  #: options/rbs_gallery_options_view.php:127
60
  msgid "Border"
61
+ msgstr "Рамка"
62
 
63
  #: options/rbs_gallery_options_button.php:76
64
  msgid "Color"
66
 
67
  #: options/rbs_gallery_options_button.php:83
68
  msgid "gray"
69
+ msgstr "серый"
70
 
71
  #: options/rbs_gallery_options_button.php:84
72
  msgid "blue"
73
+ msgstr "синий"
74
 
75
  #: options/rbs_gallery_options_button.php:85
76
  msgid "green"
78
 
79
  #: options/rbs_gallery_options_button.php:86
80
  msgid "orange"
81
+ msgstr "Оранжевый"
82
 
83
  #: options/rbs_gallery_options_button.php:87
84
  msgid "red"
102
 
103
  #: options/rbs_gallery_options_button.php:102
104
  msgid "Circle "
105
+ msgstr "Круг"
106
 
107
  #: options/rbs_gallery_options_button.php:107
108
  msgid "Size"
114
 
115
  #: options/rbs_gallery_options_button.php:114
116
  msgid "Large"
117
+ msgstr "Большой"
118
 
119
  #: options/rbs_gallery_options_button.php:116
120
  msgid "Small"
121
+ msgstr "Маленький"
122
 
123
  #: options/rbs_gallery_options_button.php:117
124
  msgid "Tiny "
125
+ msgstr "Крошечный"
126
 
127
  #: options/rbs_gallery_options_button.php:122
128
  msgid "Left Padding"
130
 
131
  #: options/rbs_gallery_options_button.php:133
132
  msgid "Bottom Padding"
133
+ msgstr "Отступ снизу"
134
 
135
  #: options/rbs_gallery_options_copy.php:18
136
  msgid " Clone Gallery"
138
 
139
  #: options/rbs_gallery_options_copy.php:27
140
  msgid "Source Gallery"
141
+ msgstr "Источник Галереи"
142
 
143
  #: options/rbs_gallery_options_copy.php:28
144
  msgid ""
245
 
246
  #: options/rbs_gallery_options_hover.php:83 rbs_gallery_media.php:109
247
  msgid "fade"
248
+ msgstr "Проявление"
249
 
250
  #: options/rbs_gallery_options_hover.php:90
251
  #: options/rbs_gallery_options_lightbox.php:37
252
  msgid "Show Title"
253
+ msgstr "Показать Название"
254
 
255
  #: options/rbs_gallery_options_hover.php:105
256
  #: options/rbs_gallery_options_polaroid.php:46 rbs_gallery_widget.php:71
257
  msgid "Title"
258
+ msgstr "Название"
259
 
260
  #: options/rbs_gallery_options_hover.php:106
261
  msgid "Link Button"
267
 
268
  #: options/rbs_gallery_options_hover.php:108
269
  msgid "Description"
270
+ msgstr "Описание"
271
 
272
  #: options/rbs_gallery_options_hover.php:117
273
  msgid "Link Icon"
307
  #: rbs_gallery_about.php:64 rbs_gallery_list.php:29
308
  #: rbs_gallery_topblock.php:20
309
  msgid "Get Pro version"
310
+ msgstr "Получить PRO версию"
311
 
312
  #: options/rbs_gallery_options_info.php:29
313
  #: options/rbs_gallery_options_infowide.php:28 rbs_gallery_topblock.php:21
320
 
321
  #: options/rbs_gallery_options_lightbox.php:18
322
  msgid "Lightbox Options"
323
+ msgstr "Настройки Lightbox "
324
 
325
  #: options/rbs_gallery_options_lightbox.php:26
326
  msgid "Social Buttons"
381
 
382
  #: options/rbs_gallery_options_polaroid.php:40
383
  msgid "Source"
384
+ msgstr "Источник"
385
 
386
  #: options/rbs_gallery_options_polaroid.php:47
387
  msgid "Desc"
397
 
398
  #: options/rbs_gallery_options_polaroid.php:70
399
  msgid "left"
400
+ msgstr "Cлева"
401
 
402
  #: options/rbs_gallery_options_polaroid.php:71
403
  msgid "right"
434
 
435
  #: options/rbs_gallery_options_size.php:58
436
  msgid "Colums "
437
+ msgstr "Колонки"
438
 
439
  #: options/rbs_gallery_options_view.php:18
440
  msgid "Thumbs View Options"
474
  #: options/rbs_gallery_options_view.php:144
475
  #: options/rbs_gallery_options_view.php:171
476
  msgid "Border Options"
477
+ msgstr "Настройка Рамки"
478
 
479
  #: options/rbs_gallery_options_view.php:145
480
  msgid "Hover Border Options"
550
 
551
  #: rbs_gallery_about.php:59
552
  msgid "Advanced images description settings"
553
+ msgstr "Дополнительные настройки описания изображения"
554
 
555
  #: rbs_gallery_about.php:69 rbs_gallery_settings.php:66
556
  msgid "All Rights Reserved"
557
+ msgstr "All Rights Reserved."
558
 
559
  #: rbs_gallery_button.php:22 rbs_gallery_media.php:43
560
  msgid "Robo Gallery"
570
 
571
  #: rbs_gallery_button.php:30
572
  msgid "Add Robo Gallery"
573
+ msgstr "Добавить Robo Галерею"
574
 
575
  #: rbs_gallery_button.php:41
576
  msgid "Select gallery"
590
 
591
  #: rbs_gallery_init.php:67
592
  msgid "Galleries List"
593
+ msgstr "Список галерей"
594
 
595
  #: rbs_gallery_init.php:68 rbs_gallery_init.php:69
596
  msgid "Add Gallery"
617
 
618
  #: rbs_gallery_media.php:58
619
  msgid "Column"
620
+ msgstr "Колонка (и)"
621
 
622
  #: rbs_gallery_media.php:65
623
  msgid "Link"
629
 
630
  #: rbs_gallery_media.php:78
631
  msgid "Blank Link"
632
+ msgstr "Ссылка в новом окне "
633
 
634
  #: rbs_gallery_media.php:86
635
  msgid "Video"
649
 
650
  #: rbs_gallery_settings.php:30 rbs_gallery_settings.php:31
651
  msgid "Default"
652
+ msgstr "По умолчанию"
653
 
654
  #: rbs_gallery_settings.php:33 rbs_gallery_settings.php:34
655
  msgid "Alternative"
656
+ msgstr "Альтернативная"
657
 
658
  #: rbs_gallery_settings.php:40 rbs_gallery_settings.php:43
659
  msgid "Switch Style"
660
+ msgstr "Стиль переключателей"
661
 
662
  #: rbs_gallery_settings.php:44 rbs_gallery_settings.php:45
663
  msgid "Modern"
664
+ msgstr "Современный"
665
 
666
  #: rbs_gallery_settings.php:47 rbs_gallery_settings.php:48
667
  msgid "Classic"
668
+ msgstr "Классический "
669
 
670
  #: rbs_gallery_settings.php:54
671
  msgid "Size Calculations Delay"
685
 
686
  #: rbs_gallery_widget.php:35 rbs_gallery_widget.php:67
687
  msgid "This widget available in Pro version"
688
+ msgstr "Виджет доступен в Pro версии"
689
 
690
  #: rbs_gallery_widget.php:44
691
  msgid "New gallery"
languages/rbs_gallery-uk_UA.mo CHANGED
Binary file
languages/rbs_gallery-uk_UA.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2015-08-18 08:35+0200\n"
5
- "PO-Revision-Date: 2015-08-18 08:38+0200\n"
6
  "Last-Translator: \n"
7
- "Language-Team: \n"
8
  "Language: uk_UA\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,6 +13,8 @@ msgstr ""
13
  "X-Poedit-Basepath: ../includes\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: options/rbs_gallery_options_button.php:18
@@ -37,10 +39,12 @@ msgstr ""
37
 
38
  #: options/rbs_gallery_options_button.php:60
39
  msgid "Style"
40
- msgstr ""
41
 
42
  #: options/rbs_gallery_options_button.php:67
43
- msgid "normal"
 
 
44
  msgstr ""
45
 
46
  #: options/rbs_gallery_options_button.php:68
@@ -52,8 +56,9 @@ msgid "3d"
52
  msgstr "3d"
53
 
54
  #: options/rbs_gallery_options_button.php:70
55
- msgid "border"
56
- msgstr ""
 
57
 
58
  #: options/rbs_gallery_options_button.php:76
59
  msgid "Color"
@@ -65,7 +70,7 @@ msgstr ""
65
 
66
  #: options/rbs_gallery_options_button.php:84
67
  msgid "blue"
68
- msgstr ""
69
 
70
  #: options/rbs_gallery_options_button.php:85
71
  msgid "green"
@@ -87,11 +92,6 @@ msgstr ""
87
  msgid "Rounds"
88
  msgstr ""
89
 
90
- #: options/rbs_gallery_options_button.php:99
91
- #: options/rbs_gallery_options_button.php:115
92
- msgid "Normal"
93
- msgstr ""
94
-
95
  #: options/rbs_gallery_options_button.php:100
96
  msgid "Rounded"
97
  msgstr ""
@@ -122,7 +122,7 @@ msgstr "Малий"
122
 
123
  #: options/rbs_gallery_options_button.php:117
124
  msgid "Tiny "
125
- msgstr ""
126
 
127
  #: options/rbs_gallery_options_button.php:122
128
  msgid "Left Padding"
@@ -174,7 +174,7 @@ msgstr "Параметри"
174
 
175
  #: options/rbs_gallery_options_hover.php:35
176
  msgid "Template"
177
- msgstr ""
178
 
179
  #: options/rbs_gallery_options_hover.php:49
180
  #: options/rbs_gallery_options_lightbox.php:57
@@ -307,7 +307,7 @@ msgstr ""
307
  #: rbs_gallery_about.php:64 rbs_gallery_list.php:29
308
  #: rbs_gallery_topblock.php:20
309
  msgid "Get Pro version"
310
- msgstr ""
311
 
312
  #: options/rbs_gallery_options_info.php:29
313
  #: options/rbs_gallery_options_infowide.php:28 rbs_gallery_topblock.php:21
@@ -328,7 +328,7 @@ msgstr ""
328
 
329
  #: options/rbs_gallery_options_lightbox.php:46
330
  msgid "Text Color"
331
- msgstr ""
332
 
333
  #: options/rbs_gallery_options_loading.php:18
334
  #: options/rbs_gallery_options_loading.php:35
@@ -381,7 +381,7 @@ msgstr ""
381
 
382
  #: options/rbs_gallery_options_polaroid.php:40
383
  msgid "Source"
384
- msgstr ""
385
 
386
  #: options/rbs_gallery_options_polaroid.php:47
387
  msgid "Desc"
@@ -405,7 +405,7 @@ msgstr ""
405
 
406
  #: options/rbs_gallery_options_polaroid.php:72
407
  msgid "center"
408
- msgstr ""
409
 
410
  #: options/rbs_gallery_options_shortcode.php:18
411
  msgid "Gallery Shortcode"
@@ -470,16 +470,9 @@ msgstr ""
470
  msgid "Hover Shadow"
471
  msgstr ""
472
 
473
- #: options/rbs_gallery_options_view.php:127
474
- msgid "Border"
475
- msgstr ""
476
-
477
  #: options/rbs_gallery_options_view.php:137
478
- #: options/rbs_gallery_options_view.php:171
479
- msgid "Border options"
480
- msgstr ""
481
-
482
  #: options/rbs_gallery_options_view.php:144
 
483
  msgid "Border Options"
484
  msgstr ""
485
 
@@ -559,7 +552,7 @@ msgstr ""
559
  msgid "Advanced images description settings"
560
  msgstr ""
561
 
562
- #: rbs_gallery_about.php:69 rbs_gallery_settings.php:63
563
  msgid "All Rights Reserved"
564
  msgstr "Всі права захищені"
565
 
@@ -605,7 +598,7 @@ msgstr "Додати Галерею "
605
 
606
  #: rbs_gallery_init.php:70
607
  msgid "Edit Gallery"
608
- msgstr ""
609
 
610
  #: rbs_gallery_list.php:27
611
  msgid "Get Robo Gallery Pro version"
@@ -616,7 +609,7 @@ msgid ""
616
  "You can create only 3 galleries. Update to PRO to get unlimited galleries"
617
  msgstr ""
618
 
619
- #: rbs_gallery_list.php:55
620
  msgid "Shortcode"
621
  msgstr "Shortcode"
622
 
@@ -648,30 +641,38 @@ msgstr ""
648
  msgid "Compatibility Settings"
649
  msgstr ""
650
 
651
- #: rbs_gallery_settings.php:30 rbs_gallery_settings.php:33
652
  msgid "jQuery Version"
653
  msgstr "Версія jQuery "
654
 
655
- #: rbs_gallery_settings.php:34 rbs_gallery_settings.php:35
656
  msgid "Default"
657
- msgstr ""
658
 
659
- #: rbs_gallery_settings.php:37 rbs_gallery_settings.php:38
660
  msgid "Alternative"
661
  msgstr ""
662
 
663
- #: rbs_gallery_settings.php:44 rbs_gallery_settings.php:47
664
  msgid "Switch Style"
665
  msgstr ""
666
 
667
- #: rbs_gallery_settings.php:48 rbs_gallery_settings.php:49
668
  msgid "Modern"
669
  msgstr ""
670
 
671
- #: rbs_gallery_settings.php:51 rbs_gallery_settings.php:52
672
  msgid "Classic"
673
  msgstr ""
674
 
 
 
 
 
 
 
 
 
675
  #: rbs_gallery_widget.php:19
676
  msgid "Robo Gallery Widget"
677
  msgstr ""
@@ -692,6 +693,12 @@ msgstr ""
692
  msgid "Gallery:"
693
  msgstr ""
694
 
 
 
 
 
 
 
695
  #~ msgid "Loading options"
696
  #~ msgstr "Loading options"
697
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Robo Gallery V 1.2\n"
4
+ "POT-Creation-Date: 2015-08-24 08:45+0200\n"
5
+ "PO-Revision-Date: 2015-08-24 08:47+0200\n"
6
  "Last-Translator: \n"
7
+ "Language-Team: RoboSoft Team <team@robosoft.co>\n"
8
  "Language: uk_UA\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "X-Poedit-Basepath: ../includes\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: options/rbs_gallery_options_button.php:18
39
 
40
  #: options/rbs_gallery_options_button.php:60
41
  msgid "Style"
42
+ msgstr "Стиль"
43
 
44
  #: options/rbs_gallery_options_button.php:67
45
+ #: options/rbs_gallery_options_button.php:99
46
+ #: options/rbs_gallery_options_button.php:115
47
+ msgid "Normal"
48
  msgstr ""
49
 
50
  #: options/rbs_gallery_options_button.php:68
56
  msgstr "3d"
57
 
58
  #: options/rbs_gallery_options_button.php:70
59
+ #: options/rbs_gallery_options_view.php:127
60
+ msgid "Border"
61
+ msgstr "Рамка"
62
 
63
  #: options/rbs_gallery_options_button.php:76
64
  msgid "Color"
70
 
71
  #: options/rbs_gallery_options_button.php:84
72
  msgid "blue"
73
+ msgstr "Синій"
74
 
75
  #: options/rbs_gallery_options_button.php:85
76
  msgid "green"
92
  msgid "Rounds"
93
  msgstr ""
94
 
 
 
 
 
 
95
  #: options/rbs_gallery_options_button.php:100
96
  msgid "Rounded"
97
  msgstr ""
122
 
123
  #: options/rbs_gallery_options_button.php:117
124
  msgid "Tiny "
125
+ msgstr "Крихітні"
126
 
127
  #: options/rbs_gallery_options_button.php:122
128
  msgid "Left Padding"
174
 
175
  #: options/rbs_gallery_options_hover.php:35
176
  msgid "Template"
177
+ msgstr "Шаблон"
178
 
179
  #: options/rbs_gallery_options_hover.php:49
180
  #: options/rbs_gallery_options_lightbox.php:57
307
  #: rbs_gallery_about.php:64 rbs_gallery_list.php:29
308
  #: rbs_gallery_topblock.php:20
309
  msgid "Get Pro version"
310
+ msgstr "Отримати Pro версію"
311
 
312
  #: options/rbs_gallery_options_info.php:29
313
  #: options/rbs_gallery_options_infowide.php:28 rbs_gallery_topblock.php:21
328
 
329
  #: options/rbs_gallery_options_lightbox.php:46
330
  msgid "Text Color"
331
+ msgstr "Колір Тексту"
332
 
333
  #: options/rbs_gallery_options_loading.php:18
334
  #: options/rbs_gallery_options_loading.php:35
381
 
382
  #: options/rbs_gallery_options_polaroid.php:40
383
  msgid "Source"
384
+ msgstr "Джерело"
385
 
386
  #: options/rbs_gallery_options_polaroid.php:47
387
  msgid "Desc"
405
 
406
  #: options/rbs_gallery_options_polaroid.php:72
407
  msgid "center"
408
+ msgstr "По центру"
409
 
410
  #: options/rbs_gallery_options_shortcode.php:18
411
  msgid "Gallery Shortcode"
470
  msgid "Hover Shadow"
471
  msgstr ""
472
 
 
 
 
 
473
  #: options/rbs_gallery_options_view.php:137
 
 
 
 
474
  #: options/rbs_gallery_options_view.php:144
475
+ #: options/rbs_gallery_options_view.php:171
476
  msgid "Border Options"
477
  msgstr ""
478
 
552
  msgid "Advanced images description settings"
553
  msgstr ""
554
 
555
+ #: rbs_gallery_about.php:69 rbs_gallery_settings.php:66
556
  msgid "All Rights Reserved"
557
  msgstr "Всі права захищені"
558
 
598
 
599
  #: rbs_gallery_init.php:70
600
  msgid "Edit Gallery"
601
+ msgstr "Редагувати Галерею"
602
 
603
  #: rbs_gallery_list.php:27
604
  msgid "Get Robo Gallery Pro version"
609
  "You can create only 3 galleries. Update to PRO to get unlimited galleries"
610
  msgstr ""
611
 
612
+ #: rbs_gallery_list.php:54
613
  msgid "Shortcode"
614
  msgstr "Shortcode"
615
 
641
  msgid "Compatibility Settings"
642
  msgstr ""
643
 
644
+ #: rbs_gallery_settings.php:26 rbs_gallery_settings.php:29
645
  msgid "jQuery Version"
646
  msgstr "Версія jQuery "
647
 
648
+ #: rbs_gallery_settings.php:30 rbs_gallery_settings.php:31
649
  msgid "Default"
650
+ msgstr "Типове"
651
 
652
+ #: rbs_gallery_settings.php:33 rbs_gallery_settings.php:34
653
  msgid "Alternative"
654
  msgstr ""
655
 
656
+ #: rbs_gallery_settings.php:40 rbs_gallery_settings.php:43
657
  msgid "Switch Style"
658
  msgstr ""
659
 
660
+ #: rbs_gallery_settings.php:44 rbs_gallery_settings.php:45
661
  msgid "Modern"
662
  msgstr ""
663
 
664
+ #: rbs_gallery_settings.php:47 rbs_gallery_settings.php:48
665
  msgid "Classic"
666
  msgstr ""
667
 
668
+ #: rbs_gallery_settings.php:54
669
+ msgid "Size Calculations Delay"
670
+ msgstr ""
671
+
672
+ #: rbs_gallery_settings.php:61
673
+ msgid "Save Changes"
674
+ msgstr ""
675
+
676
  #: rbs_gallery_widget.php:19
677
  msgid "Robo Gallery Widget"
678
  msgstr ""
693
  msgid "Gallery:"
694
  msgstr ""
695
 
696
+ #~ msgid "Shadow options"
697
+ #~ msgstr "Shadow options"
698
+
699
+ #~ msgid "Thumbs options"
700
+ #~ msgstr "Thumbs options"
701
+
702
  #~ msgid "Loading options"
703
  #~ msgstr "Loading options"
704
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Gallery ===
2
  Contributors: robosoft
3
  Donate link: http://www.robosoft.co/robogallery
4
- Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries
5
  Requires at least: 3.3
6
  Tested up to: 4.3
7
- Stable tag: 1.2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -13,9 +13,6 @@ Gallery with highly customizable interface, advanced and FREE Wordpress images g
13
 
14
  == Description ==
15
 
16
- > #### We're looking for testers!
17
- > [Get a chance to get PRO version of the Robo Gallery for FREE. Just tell us your feedback related with your experience of plugin usage! Report if you had some problems or if you have some features ideas! Just post ticket with your report and you could be the one who get PRO version for FREE](http://robosoft.co/clients/index.php?option=com_content&view=article&id=1&Itemid=6)
18
-
19
  #### [Most Easy and Powerful plugin to create a gallery on WordPress.](http://robosoft.co/robogallery/#overview)
20
 
21
  #### If you looking for fast, easy gallery with simple and very beautiful, highly customizable design [here is it...](http://robosoft.co/robogallery/#overview) Gallery where even newbie in Wordpress will be able to create your first gallery in few minutes and at the same time Wordpress professionals get advanced tools and freedom of creativity. Just download this Gallery and you'll not look for any other gallery any more! [Fall in Love with this Gallery like we do!](http://robosoft.co/robogallery/#overview)
@@ -123,6 +120,9 @@ Get a free copy of the Robo Gallery Pro version as bonus for translating our plu
123
  * **Russian**
124
  * **Ukrainian**
125
 
 
 
 
126
  == Installation ==
127
 
128
  You don't need do any additional configurations or manual code changes. You can install it through the regular installer of the Wordpress. Just download plugin and install it manually or automatically using Wordpress repository. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
@@ -157,18 +157,6 @@ In gallery settings you can find hover type options. In settings of the gallery
157
 
158
  Yes, you can use generated direct link inside particular gallery settings
159
 
160
- = How to change font size of the gallery image caption? =
161
-
162
- In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
163
-
164
- = How to generate shortcode for Wordpress page, post or widget? =
165
-
166
- First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
167
-
168
- = Do you have some limit for images size in gallery? =
169
-
170
- No, we don't have any limits for image size in our gallery.
171
-
172
  = Do you have some limits for images types in gallery? =
173
 
174
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
@@ -181,6 +169,14 @@ Yes, you can insert gallery into post with shortcode tag
181
 
182
  No, we don't have any limits for amount of the images in gallery
183
 
 
 
 
 
 
 
 
 
184
  = How to insert gallery into Wordpress page or post? =
185
 
186
  When you create gallery in plugin galleries manager you can go to the post or page editor and there using special wizard button insert gallery into your wordpress post or page. Another way you can insert your gallery manually using shortcode, which you can find in gallery edit mode in shortcode section on the right side of the gallery settings
@@ -193,6 +189,10 @@ When you open gallery settings inside you'll find images manager section. Images
193
 
194
  When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have custom effect field where you can select different hover effect for every image of the gallery.
195
 
 
 
 
 
196
  = How I can create custom (grid) layout of the thumbnails? =
197
 
198
  In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
@@ -205,14 +205,6 @@ Yes, in gallery options you can turn on/off border option
205
 
206
  In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
207
 
208
- = Is it possible to create target blank links? =
209
-
210
- Yes. When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have target blank field below link field of the gallery image.
211
-
212
- = How to customize border of the gallery thumbnails? =
213
-
214
- In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
215
-
216
  = Is it possible to have different settings for hover and static interface elements? =
217
 
218
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails
@@ -229,6 +221,15 @@ You can change size, color and style of gallery thumbnails borders and shadows.
229
 
230
  In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
231
 
 
 
 
 
 
 
 
 
 
232
  = How to change spacing between thumbnails? =
233
 
234
  In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
@@ -317,6 +318,10 @@ Gallery have 15 hover animation effects, which could be combined with additional
317
 
318
  Yes, gallery have fade hover effect
319
 
 
 
 
 
320
  = Is it possible to change transparency of the hover shutter? =
321
 
322
  Yes, it's possible to change transparency in gallery settings
@@ -495,6 +500,9 @@ If any problem occurs, please contact us.
495
 
496
  == Changelog ==
497
 
 
 
 
498
  = 1.2.0 =
499
  * Updated interface elements in back end
500
  * Wordpress 4.3 support
@@ -565,6 +573,9 @@ If any problem occurs, please contact us.
565
 
566
  == Upgrade Notice ==
567
 
 
 
 
568
  = 1.2.0 =
569
  Updated interface elements in back end, Wordpress 4.3 support, interface optimization options
570
 
1
+ === Robo Gallery - Photo Gallery and Images Gallery ===
2
  Contributors: robosoft
3
  Donate link: http://www.robosoft.co/robogallery
4
+ Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.3
7
+ Stable tag: 1.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
13
 
14
  == Description ==
15
 
 
 
 
16
  #### [Most Easy and Powerful plugin to create a gallery on WordPress.](http://robosoft.co/robogallery/#overview)
17
 
18
  #### If you looking for fast, easy gallery with simple and very beautiful, highly customizable design [here is it...](http://robosoft.co/robogallery/#overview) Gallery where even newbie in Wordpress will be able to create your first gallery in few minutes and at the same time Wordpress professionals get advanced tools and freedom of creativity. Just download this Gallery and you'll not look for any other gallery any more! [Fall in Love with this Gallery like we do!](http://robosoft.co/robogallery/#overview)
120
  * **Russian**
121
  * **Ukrainian**
122
 
123
+ > #### We're looking for testers!
124
+ > [Get a chance to get PRO version of the Robo Gallery for FREE. Just tell us your feedback related with your experience of plugin usage! Report if you had some problems or if you have some features ideas! Just post ticket with your report and you could be the one who get PRO version for FREE](http://robosoft.co/robogallery/#contact)
125
+
126
  == Installation ==
127
 
128
  You don't need do any additional configurations or manual code changes. You can install it through the regular installer of the Wordpress. Just download plugin and install it manually or automatically using Wordpress repository. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
157
 
158
  Yes, you can use generated direct link inside particular gallery settings
159
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  = Do you have some limits for images types in gallery? =
161
 
162
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
169
 
170
  No, we don't have any limits for amount of the images in gallery
171
 
172
+ = How to change font size of the gallery image caption? =
173
+
174
+ In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
175
+
176
+ = Do you have some limit for images size in gallery? =
177
+
178
+ No, we don't have any limits for image size in our gallery.
179
+
180
  = How to insert gallery into Wordpress page or post? =
181
 
182
  When you create gallery in plugin galleries manager you can go to the post or page editor and there using special wizard button insert gallery into your wordpress post or page. Another way you can insert your gallery manually using shortcode, which you can find in gallery edit mode in shortcode section on the right side of the gallery settings
189
 
190
  When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have custom effect field where you can select different hover effect for every image of the gallery.
191
 
192
+ = How to generate shortcode for Wordpress page, post or widget? =
193
+
194
+ First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
195
+
196
  = How I can create custom (grid) layout of the thumbnails? =
197
 
198
  In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
205
 
206
  In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
207
 
 
 
 
 
 
 
 
 
208
  = Is it possible to have different settings for hover and static interface elements? =
209
 
210
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails
221
 
222
  In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
223
 
224
+ = Is it possible to create target blank links? =
225
+
226
+ Yes. When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have target blank field below link field of the gallery image.
227
+
228
+ = How to customize border of the gallery thumbnails? =
229
+
230
+ In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
231
+
232
+
233
  = How to change spacing between thumbnails? =
234
 
235
  In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
318
 
319
  Yes, gallery have fade hover effect
320
 
321
+ = How to change font size of the gallery image description text? =
322
+
323
+ In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change size of the text
324
+
325
  = Is it possible to change transparency of the hover shutter? =
326
 
327
  Yes, it's possible to change transparency in gallery settings
500
 
501
  == Changelog ==
502
 
503
+ = 1.2.1 =
504
+ * Fixed PHP Notices
505
+
506
  = 1.2.0 =
507
  * Updated interface elements in back end
508
  * Wordpress 4.3 support
573
 
574
  == Upgrade Notice ==
575
 
576
+ = 1.2.1 =
577
+ Fixed PHP Notices
578
+
579
  = 1.2.0 =
580
  Updated interface elements in back end, Wordpress 4.3 support, interface optimization options
581
 
robogallery.php CHANGED
@@ -8,7 +8,7 @@
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
- * Version: 1.2.0
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
@@ -19,10 +19,10 @@
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  //define( 'WP_DEBUG', true );
22
- define(ROBO_GALLERY, 1);
23
- define(ROBO_GALLERY_VERSION, '1.2.0');
24
 
25
- define(ROBO_GALLERY_PATH, plugin_dir_path( __FILE__ ));
26
 
27
 
28
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
@@ -31,21 +31,21 @@ function rbs_gallery_load_textdomain() {
31
  }
32
 
33
  if( file_exists(WP_PLUGIN_DIR.'/robogallerykey/robogallerykey.php') ){
34
- define(ROBO_GALLERY_PRO, 1);
35
- define(ROBO_GALLERY_KEY_PATH, plugin_dir_path(WP_PLUGIN_DIR.'/robogallerykey/robogallerykey.php' ));
36
  } else if( file_exists(ROBO_GALLERY_PATH.'robogallerykey.php') ){
37
- define(ROBO_GALLERY_PRO, 1);
38
- define(ROBO_GALLERY_KEY_PATH, plugin_dir_path(ROBO_GALLERY_PATH.'robogallerykey.php' ));
39
  } else {
40
- define(ROBO_GALLERY_PRO, 0);
41
  }
42
 
43
- define(ROBO_GALLERY_INCLUDES_PATH, ROBO_GALLERY_PATH.'includes/');
44
- define(ROBO_GALLERY_FRONTEND_PATH, ROBO_GALLERY_INCLUDES_PATH.'frontend/');
45
- define(ROBO_GALLERY_CMB_PATH, ROBO_GALLERY_PATH.'cmb2/');
46
- define(ROBO_GALLERY_CMB_FILEDS_PATH, ROBO_GALLERY_CMB_PATH.'fields/');
47
 
48
- define(ROBO_GALLERY_URL, plugin_dir_url( __FILE__ ));
49
 
50
  function activateRoboGallery() {
51
  require_once ROBO_GALLERY_INCLUDES_PATH.'rbs_class_activator.php';
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
+ * Version: 1.2.1
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  //define( 'WP_DEBUG', true );
22
+ define("ROBO_GALLERY", 1);
23
+ define("ROBO_GALLERY_VERSION", '1.2.0');
24
 
25
+ define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
26
 
27
 
28
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
31
  }
32
 
33
  if( file_exists(WP_PLUGIN_DIR.'/robogallerykey/robogallerykey.php') ){
34
+ define("ROBO_GALLERY_PRO", 1);
35
+ define("ROBO_GALLERY_KEY_PATH", plugin_dir_path(WP_PLUGIN_DIR.'/robogallerykey/robogallerykey.php' ));
36
  } else if( file_exists(ROBO_GALLERY_PATH.'robogallerykey.php') ){
37
+ define("ROBO_GALLERY_PRO", 1);
38
+ define("ROBO_GALLERY_KEY_PATH", plugin_dir_path(ROBO_GALLERY_PATH.'robogallerykey.php' ));
39
  } else {
40
+ define("ROBO_GALLERY_PRO", 0);
41
  }
42
 
43
+ define("ROBO_GALLERY_INCLUDES_PATH", ROBO_GALLERY_PATH.'includes/');
44
+ define("ROBO_GALLERY_FRONTEND_PATH", ROBO_GALLERY_INCLUDES_PATH.'frontend/');
45
+ define("ROBO_GALLERY_CMB_PATH", ROBO_GALLERY_PATH.'cmb2/');
46
+ define("ROBO_GALLERY_CMB_FILEDS_PATH", ROBO_GALLERY_CMB_PATH.'fields/');
47
 
48
+ define("ROBO_GALLERY_URL", plugin_dir_url( __FILE__ ));
49
 
50
  function activateRoboGallery() {
51
  require_once ROBO_GALLERY_INCLUDES_PATH.'rbs_class_activator.php';