Gallery – Photo Gallery and Images Gallery - Version 2.6.17

Version Description

  • Update admin settings
  • Added new search options
  • Search background color
Download this release

Release Info

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

Code changes from version 2.6.16 to 2.6.17

cmb2/includes/CMB2_hookup.php CHANGED
@@ -134,22 +134,22 @@ class CMB2_hookup {
134
 
135
  if ( ! is_admin() ) {
136
  // we need to register colorpicker on the front-end
137
- wp_register_script( 'iris', admin_url( 'js/iris.min.js' ), array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), CMB2_VERSION );
138
- wp_register_script( 'wp-color-picker', admin_url( 'js/color-picker.min.js' ), array( 'iris' ), CMB2_VERSION );
139
  wp_localize_script( 'wp-color-picker', 'wpColorPickerL10n', array(
140
  'clear' => 'Clear',
141
  'defaultString' => 'Default',
142
  'pick' => 'Select Color',
143
  'current' => 'Current Color',
144
- ) );
145
  }
146
 
147
- wp_register_script( 'jquery-ui-datetimepicker', cmb2_utils()->url( 'js/jquery-ui-timepicker-addon.min.js' ), array( 'jquery-ui-slider' ), CMB2_VERSION );
148
 
149
  // scripts required for cmb
150
- $scripts = array( 'jquery', 'jquery-ui-core', 'jquery-ui-datepicker', 'jquery-ui-datetimepicker', 'wp-color-picker' );
151
  // styles required for cmb
152
- $styles = array( 'wp-color-picker' );
153
 
154
  wp_register_script( 'cmb2-scripts', cmb2_utils()->url( "js/cmb2{$min}.js" ), $scripts, CMB2_VERSION );
155
 
134
 
135
  if ( ! is_admin() ) {
136
  // we need to register colorpicker on the front-end
137
+ //wp_register_script( 'iris', admin_url( 'js/iris.min.js' ), array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), CMB2_VERSION );
138
+ /*wp_register_script( 'wp-color-picker', admin_url( 'js/color-picker.min.js' ), array( 'iris' ), CMB2_VERSION );
139
  wp_localize_script( 'wp-color-picker', 'wpColorPickerL10n', array(
140
  'clear' => 'Clear',
141
  'defaultString' => 'Default',
142
  'pick' => 'Select Color',
143
  'current' => 'Current Color',
144
+ ) );*/
145
  }
146
 
147
+ //wp_register_script( 'jquery-ui-datetimepicker', cmb2_utils()->url( 'js/jquery-ui-timepicker-addon.min.js' ), array( 'jquery-ui-slider' ), CMB2_VERSION );
148
 
149
  // scripts required for cmb
150
+ $scripts = array( 'jquery', 'jquery-ui-core' /*, 'jquery-ui-datepicker', 'jquery-ui-datetimepicker', 'wp-color-picker'*/ );
151
  // styles required for cmb
152
+ $styles = array(/* 'wp-color-picker' */);
153
 
154
  wp_register_script( 'cmb2-scripts', cmb2_utils()->url( "js/cmb2{$min}.js" ), $scripts, CMB2_VERSION );
155
 
includes/frontend/rbs_gallery_class.php CHANGED
@@ -53,6 +53,10 @@ class roboGallery extends roboGalleryUtils{
53
 
54
  public $rbsMainDivStyle = '';
55
 
 
 
 
 
56
 
57
  public $javaScript = '';
58
  public $javaScriptStyle = '';
@@ -613,10 +617,28 @@ class roboGallery extends roboGalleryUtils{
613
  $retHtml .= '<div class="rbs_gallery_button'.$align.'" id="'.$this->galleryId.'filter">';
614
 
615
  if( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchEnable', true ) ){
616
- $retHtml .= '<div class="rbs_search_wrap">';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
617
  $searchLabel = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchLabel', true );
618
- $retHtml .= '<input type="text" class="rbs-search" placeholder="'.$searchLabel.'">';
619
  $retHtml .= '</div>';
 
 
620
  $this->helper->setValue( 'search', '#'.$this->galleryId.'filter .rbs-search' );
621
  $this->helper->setValue( 'searchTarget', '.rbs-img-image' );
622
  }
53
 
54
  public $rbsMainDivStyle = '';
55
 
56
+ public $rbsSearchStyle = '';
57
+ public $rbsSearchInputStyle = '';
58
+ public $rbsSearchInputPlaceholderStyle = '';
59
+
60
 
61
  public $javaScript = '';
62
  public $javaScriptStyle = '';
617
  $retHtml .= '<div class="rbs_gallery_button'.$align.'" id="'.$this->galleryId.'filter">';
618
 
619
  if( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchEnable', true ) ){
620
+
621
+ /* Get color search input box */
622
+ $searchColor = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchColor', true );
623
+ if($searchColor){
624
+ $this->rbsSearchStyle = ' color:'.$searchColor.';';
625
+ $this->rbsSearchInputStyle = 'border-color:'.$searchColor.'; color:'.$searchColor.';';
626
+ $this->rbsSearchInputPlaceholderStyle = 'color:'.$searchColor.';';
627
+ }
628
+
629
+ $cssPatch = '#'.$this->galleryId.'filter .rbs_search_wrap';
630
+ $this->addJavaScriptStyle('rbsSearch', $cssPatch,2);
631
+ $this->addJavaScriptStyle('rbsSearchInputPlaceholder', $cssPatch.' input.rbs-search::placeholder',2);
632
+
633
+ $this->addJavaScriptStyle('rbsSearchInput', $cssPatch.' input.rbs-search',2);
634
+
635
+ /* Search gallery item block */
636
+ $retHtml .= '<div class="rbs_search_wrap" >';
637
  $searchLabel = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'searchLabel', true );
638
+ $retHtml .= '<input type="text" class="rbs-search" placeholder="'.$searchLabel.'" />';
639
  $retHtml .= '</div>';
640
+
641
+ /* Setup gallery */
642
  $this->helper->setValue( 'search', '#'.$this->galleryId.'filter .rbs-search' );
643
  $this->helper->setValue( 'searchTarget', '.rbs-img-image' );
644
  }
includes/options/rbs_gallery_options_button.php CHANGED
@@ -48,10 +48,10 @@ $button_group->add_field( array(
48
 
49
  'depends' => '.menuTagOptions',
50
 
51
- 'onText' => __('Tags', 'robo-gallery' ),
52
  'offText' => __('Categories', 'robo-gallery' ),
53
- 'onStyle' => __('primary', 'robo-gallery' ),
54
- 'offStyle' => __('info', 'robo-gallery' ),
55
  'bootstrap_style'=> 1,
56
  'after_row' => '
57
  <div class="menuTagOptions">'
@@ -140,10 +140,10 @@ $button_group->add_field( array(
140
  'level' => !ROBO_GALLERY_PRO,
141
  'default' => 'border',
142
  'options' => array(
143
- 'normal' => __( 'Normal' , 'cmb' ),
144
- 'flat' => __( 'flat' , 'cmb' ),
145
- '3d' => __( '3d' , 'cmb' ),
146
- 'border' => __( 'Border' , 'cmb' ),
147
  ),
148
  'before_row'=> '
149
  </div>
@@ -159,12 +159,12 @@ $button_group->add_field( array(
159
  'level' => !ROBO_GALLERY_PRO,
160
  'default' => 'red',
161
  'options' => array(
162
- 'gray' => __( 'gray' , 'cmb' ),
163
- 'blue' => __( 'blue' , 'cmb' ),
164
- 'green' => __( 'green' , 'cmb' ),
165
- 'orange' => __( 'orange' , 'cmb' ),
166
- 'red' => __( 'red' , 'cmb' ),
167
- 'purple' => __( 'purple' , 'cmb' ),
168
  ),
169
  ));
170
 
@@ -175,10 +175,10 @@ $button_group->add_field( array(
175
  'show_option_none' => false,
176
  'default' => 'normal',
177
  'options' => array(
178
- 'normal' => __( 'Normal' , 'cmb' ),
179
- 'rounded' => __( 'Rounded' , 'cmb' ),
180
- 'pill' => __( 'Pill' , 'cmb' ),
181
- 'circle' => __( 'Circle ' , 'cmb' ),
182
  ),
183
  ));
184
 
@@ -189,11 +189,11 @@ $button_group->add_field( array(
189
  'show_option_none' => false,
190
  'default' => 'normal',
191
  'options' => array(
192
- 'jumbo' => __( 'Jumbo' , 'cmb' ),
193
- 'large' => __( 'Large' , 'cmb' ),
194
- 'normal' => __( 'Normal' , 'cmb' ),
195
- 'small' => __( 'Small' , 'cmb' ),
196
- 'tiny' => __( 'Tiny ' , 'cmb' ),
197
  ),
198
  ));
199
 
@@ -204,9 +204,9 @@ $button_group->add_field( array(
204
  'show_option_none' => false,
205
  'default' => 'left',
206
  'options' => array(
207
- 'left' => __( 'Left' , 'cmb' ),
208
- 'center'=> __( 'Center' , 'cmb' ),
209
- 'right' => __( 'Right' , 'cmb' ),
210
  ),
211
  ));
212
 
@@ -245,6 +245,19 @@ $button_group->add_field( array(
245
  'bootstrap_style'=> 1,
246
 
247
  ));
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  $button_group->add_field( array(
249
  'name' => __('Search Text','robo-gallery'),
250
  'default' => __('search', 'robo-gallery' ),
48
 
49
  'depends' => '.menuTagOptions',
50
 
51
+ 'onText' => __('Tags', 'robo-gallery' ),
52
  'offText' => __('Categories', 'robo-gallery' ),
53
+ 'onStyle' => __('primary', 'robo-gallery' ),
54
+ 'offStyle' => __('info', 'robo-gallery' ),
55
  'bootstrap_style'=> 1,
56
  'after_row' => '
57
  <div class="menuTagOptions">'
140
  'level' => !ROBO_GALLERY_PRO,
141
  'default' => 'border',
142
  'options' => array(
143
+ 'normal' => __( 'Normal' , 'robo-gallery' ),
144
+ 'flat' => __( 'flat' , 'robo-gallery' ),
145
+ '3d' => __( '3d' , 'robo-gallery' ),
146
+ 'border' => __( 'Border' , 'robo-gallery' ),
147
  ),
148
  'before_row'=> '
149
  </div>
159
  'level' => !ROBO_GALLERY_PRO,
160
  'default' => 'red',
161
  'options' => array(
162
+ 'gray' => __( 'Gray' , 'robo-gallery' ),
163
+ 'blue' => __( 'Blue' , 'robo-gallery' ),
164
+ 'green' => __( 'Green' , 'robo-gallery' ),
165
+ 'orange' => __( 'Orange' , 'robo-gallery' ),
166
+ 'red' => __( 'Red' , 'robo-gallery' ),
167
+ 'purple' => __( 'Purple' , 'robo-gallery' ),
168
  ),
169
  ));
170
 
175
  'show_option_none' => false,
176
  'default' => 'normal',
177
  'options' => array(
178
+ 'normal' => __( 'Normal' , 'robo-gallery' ),
179
+ 'rounded' => __( 'Rounded' , 'robo-gallery' ),
180
+ 'pill' => __( 'Pill' , 'robo-gallery' ),
181
+ 'circle' => __( 'Circle ' , 'robo-gallery' ),
182
  ),
183
  ));
184
 
189
  'show_option_none' => false,
190
  'default' => 'normal',
191
  'options' => array(
192
+ 'jumbo' => __( 'Jumbo' , 'robo-gallery' ),
193
+ 'large' => __( 'Large' , 'robo-gallery' ),
194
+ 'normal' => __( 'Normal' , 'robo-gallery' ),
195
+ 'small' => __( 'Small' , 'robo-gallery' ),
196
+ 'tiny' => __( 'Tiny ' , 'robo-gallery' ),
197
  ),
198
  ));
199
 
204
  'show_option_none' => false,
205
  'default' => 'left',
206
  'options' => array(
207
+ 'left' => __( 'Left' , 'robo-gallery' ),
208
+ 'center'=> __( 'Center' , 'robo-gallery' ),
209
+ 'right' => __( 'Right' , 'robo-gallery' ),
210
  ),
211
  ));
212
 
245
  'bootstrap_style'=> 1,
246
 
247
  ));
248
+
249
+
250
+ $button_group->add_field( array(
251
+ 'name' => __( 'Search Color', 'rbs_gallery' ),
252
+ 'id' => ROBO_GALLERY_PREFIX.'searchColor',
253
+ 'type' => 'rbstext',
254
+ 'class' => 'form-control rbs_color',
255
+ 'data-default' => 'rgba(0, 0, 0)',
256
+ 'default' => 'rgba(0, 0, 0)',
257
+ 'small' => 1,
258
+ 'level' => !ROBO_GALLERY_PRO,
259
+ ));
260
+
261
  $button_group->add_field( array(
262
  'name' => __('Search Text','robo-gallery'),
263
  'default' => __('search', 'robo-gallery' ),
includes/options/rbs_gallery_options_lightbox.php CHANGED
@@ -22,20 +22,15 @@ $lightbox_group = new_cmb2_box( array(
22
  'context' => 'normal',
23
  ));
24
 
25
-
26
-
27
-
28
  $lightbox_group->add_field( array(
29
  'name' => __('Text', 'rbs_gallery' ),
30
  'id' => ROBO_GALLERY_PREFIX . 'lightboxTitle',
31
  'type' => 'switch',
32
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
33
- 'bootstrap_style'=> 1,
34
  'showhide' => 1,
35
  'depends' => '.rbs_lightbox_source',
36
  'before_row' => '
37
  <div class="rbs_block"><br/>',
38
-
39
  ));
40
 
41
  $lightbox_group->add_field( array(
@@ -53,7 +48,6 @@ $lightbox_group->add_field( array(
53
  'after_row' => '</div> '
54
  ));
55
 
56
-
57
  $lightbox_group->add_field( array(
58
  'name' => __( 'Text Color', 'rbs_gallery' ),
59
  'id' => ROBO_GALLERY_PREFIX.'lightboxColor',
@@ -84,7 +78,6 @@ $lightbox_group->add_field( array(
84
  'type' => 'switch',
85
  'desc' => __('This option enable linking for every particular image ', 'rbs_gallery' ),
86
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
87
- 'bootstrap_style'=> 1,
88
  ));
89
 
90
  $lightbox_group->add_field( array(
@@ -93,7 +86,6 @@ $lightbox_group->add_field( array(
93
  'type' => 'switch',
94
  'showhide' => 1,
95
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
96
- 'bootstrap_style'=> 1,
97
  'depends' => '.rbs_lightbox_counter_text',
98
  'after_row' => '
99
  <div class="rbs_lightbox_counter_text">',
@@ -110,37 +102,42 @@ $lightbox_group->add_field( array(
110
  ));
111
 
112
  $lightbox_group->add_field( array(
113
- 'name' => __('Close Icon', 'rbs_gallery' ),
114
- 'id' => ROBO_GALLERY_PREFIX . 'lightboxClose',
115
  'type' => 'switch',
116
- 'showhide' => 1,
117
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
118
- 'bootstrap_style'=> 1,
119
  ));
120
 
121
  $lightbox_group->add_field( array(
122
- 'name' => __('Arrow Icon', 'rbs_gallery' ),
123
- 'id' => ROBO_GALLERY_PREFIX . 'lightboxArrow',
124
  'type' => 'switch',
125
- 'showhide' => 1,
126
- 'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
127
- 'bootstrap_style'=> 1,
128
  ));
129
 
130
  $lightbox_group->add_field( array(
131
- 'name' => __('Swipe', 'rbs_gallery' ),
132
- 'id' => ROBO_GALLERY_PREFIX . 'lightboxSwipe',
133
  'type' => 'switch',
 
134
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
135
- 'bootstrap_style'=> 1,
 
 
 
 
 
 
 
 
136
  ));
137
 
138
  $lightbox_group->add_field( array(
139
- 'name' => __('Mobile Style', 'rbs_gallery' ),
140
- 'id' => ROBO_GALLERY_PREFIX . 'lightboxMobile',
141
  'type' => 'switch',
142
- 'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
143
- 'bootstrap_style'=> 1
144
  ));
145
 
146
  $lightbox_group->add_field( array(
@@ -149,17 +146,19 @@ $lightbox_group->add_field( array(
149
  'type' => 'switch',
150
  'showhide' => 1,
151
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
152
- 'bootstrap_style'=> 1,
 
153
  ));
154
 
155
  $lightbox_group->add_field( array(
156
- 'name' => __('Description Panel', 'rbs_gallery' ),
157
  'id' => ROBO_GALLERY_PREFIX . 'lightboxDescPanel',
158
  'type' => 'switch',
159
  'showhide' => 1,
160
  'depends' => '.rbs_lightbox_desc_panel',
161
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
162
- 'bootstrap_style'=> 1,
 
163
  ));
164
 
165
  $lightbox_group->add_field( array(
@@ -190,7 +189,9 @@ $lightbox_group->add_field( array(
190
  'green' => __( 'Green' , 'rbs_gallery' ),
191
  'pink' => __( 'Pink' , 'rbs_gallery' ),
192
  ),
193
- 'after_row' => '</div>',
 
 
194
  ));
195
 
196
  $lightbox_group->add_field( array(
@@ -200,10 +201,11 @@ $lightbox_group->add_field( array(
200
  'showhide' => 1,
201
  'depends' => '.rbs_lightbox_social_button',
202
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
203
- 'bootstrap_style'=> 1,
204
  'level' => !ROBO_GALLERY_PRO,
 
 
205
  'after_row' => '
206
- <div class="rbs_lightbox_social_button">'
207
  ));
208
 
209
  $lightbox_group->add_field( array(
@@ -249,6 +251,9 @@ $lightbox_group->add_field( array(
249
  'showhide' => 1,
250
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
251
  'after_row' => '
 
 
 
252
  </div>
253
  </div> '
254
  ));
22
  'context' => 'normal',
23
  ));
24
 
 
 
 
25
  $lightbox_group->add_field( array(
26
  'name' => __('Text', 'rbs_gallery' ),
27
  'id' => ROBO_GALLERY_PREFIX . 'lightboxTitle',
28
  'type' => 'switch',
29
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
 
30
  'showhide' => 1,
31
  'depends' => '.rbs_lightbox_source',
32
  'before_row' => '
33
  <div class="rbs_block"><br/>',
 
34
  ));
35
 
36
  $lightbox_group->add_field( array(
48
  'after_row' => '</div> '
49
  ));
50
 
 
51
  $lightbox_group->add_field( array(
52
  'name' => __( 'Text Color', 'rbs_gallery' ),
53
  'id' => ROBO_GALLERY_PREFIX.'lightboxColor',
78
  'type' => 'switch',
79
  'desc' => __('This option enable linking for every particular image ', 'rbs_gallery' ),
80
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
 
81
  ));
82
 
83
  $lightbox_group->add_field( array(
86
  'type' => 'switch',
87
  'showhide' => 1,
88
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
 
89
  'depends' => '.rbs_lightbox_counter_text',
90
  'after_row' => '
91
  <div class="rbs_lightbox_counter_text">',
102
  ));
103
 
104
  $lightbox_group->add_field( array(
105
+ 'name' => __('Swipe', 'rbs_gallery' ),
106
+ 'id' => ROBO_GALLERY_PREFIX . 'lightboxSwipe',
107
  'type' => 'switch',
 
108
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
 
109
  ));
110
 
111
  $lightbox_group->add_field( array(
112
+ 'name' => __('Mobile Style', 'rbs_gallery' ),
113
+ 'id' => ROBO_GALLERY_PREFIX . 'lightboxMobile',
114
  'type' => 'switch',
115
+ 'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
 
 
116
  ));
117
 
118
  $lightbox_group->add_field( array(
119
+ 'name' => __('Close Icon', 'rbs_gallery' ),
120
+ 'id' => ROBO_GALLERY_PREFIX . 'lightboxClose',
121
  'type' => 'switch',
122
+ 'showhide' => 1,
123
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
124
+ 'before_row' => '
125
+ <div role="tabpanel">
126
+ <ul class="nav nav-tabs" role="tablist">
127
+ <li role="presentation" class="active"> <a href="#lightboxButtons" aria-controls="lightboxButtons" role="tab" data-toggle="tab">'.__('Control Buttons', 'robo-gallery' ).'</a></li>
128
+ <li role="presentation"> <a href="#lightboxPanel" aria-controls="lightboxPanel" role="tab" data-toggle="tab">'.__('Lightbox Description Panel', 'robo-gallery' ).'</a></li>
129
+ <li role="presentation"> <a href="#lightboxSocial" aria-controls="lightboxSocial" role="tab" data-toggle="tab">'.__('Social Buttons', 'robo-gallery' ).'</a></li>
130
+ </ul>
131
+ <div class="tab-content">
132
+ <div role="tabpanel" class="tab-pane active" id="lightboxButtons"><br/>',
133
  ));
134
 
135
  $lightbox_group->add_field( array(
136
+ 'name' => __('Arrow Icon', 'rbs_gallery' ),
137
+ 'id' => ROBO_GALLERY_PREFIX . 'lightboxArrow',
138
  'type' => 'switch',
139
+ 'showhide' => 1,
140
+ 'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
141
  ));
142
 
143
  $lightbox_group->add_field( array(
146
  'type' => 'switch',
147
  'showhide' => 1,
148
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
149
+ 'after_row' => '
150
+ </div> '
151
  ));
152
 
153
  $lightbox_group->add_field( array(
154
+ 'name' => __('Panel', 'rbs_gallery' ),
155
  'id' => ROBO_GALLERY_PREFIX . 'lightboxDescPanel',
156
  'type' => 'switch',
157
  'showhide' => 1,
158
  'depends' => '.rbs_lightbox_desc_panel',
159
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
160
+ 'before_row' => '
161
+ <div role="tabpanel" class="tab-pane" id="lightboxPanel"><br/>',
162
  ));
163
 
164
  $lightbox_group->add_field( array(
189
  'green' => __( 'Green' , 'rbs_gallery' ),
190
  'pink' => __( 'Pink' , 'rbs_gallery' ),
191
  ),
192
+ 'after_row' => '
193
+ </div>
194
+ </div>',
195
  ));
196
 
197
  $lightbox_group->add_field( array(
201
  'showhide' => 1,
202
  'depends' => '.rbs_lightbox_social_button',
203
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
 
204
  'level' => !ROBO_GALLERY_PRO,
205
+ 'before_row' => '
206
+ <div role="tabpanel" class="tab-pane" id="lightboxSocial"><br/>',
207
  'after_row' => '
208
+ <div class="rbs_lightbox_social_button">'
209
  ));
210
 
211
  $lightbox_group->add_field( array(
251
  'showhide' => 1,
252
  'default' => rbs_gallery_set_checkbox_default_for_new_post(1),
253
  'after_row' => '
254
+ </div>
255
+ </div>
256
+ </div>
257
  </div>
258
  </div> '
259
  ));
includes/options/rbs_gallery_options_polaroid.php CHANGED
@@ -16,14 +16,14 @@ if ( ! defined( 'ABSPATH' ) ) exit;
16
 
17
  $polaroid_group = new_cmb2_box( array(
18
  'id' => ROBO_GALLERY_PREFIX . 'polaroid_metabox',
19
- 'title' => '<span class="dashicons dashicons-money"></span> '.__( 'Polaroid Style Options', 'rbs_gallery' ),
20
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
21
  'show_names' => false,
22
  'context' => 'normal',
23
  ));
24
 
25
  $polaroid_group->add_field( array(
26
- 'name' => __('Polaroid Style', 'rbs_gallery' ),
27
  'id' => ROBO_GALLERY_PREFIX . 'polaroidOn',
28
  'type' => 'switch',
29
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
@@ -37,20 +37,20 @@ $polaroid_group->add_field( array(
37
  ));
38
 
39
  $polaroid_group->add_field(array(
40
- 'name' => __('Source', 'rbs_gallery' ),
41
  'id' => ROBO_GALLERY_PREFIX . 'polaroidSource',
42
  'type' => 'rbsselect',
43
  'show_option_none' => false,
44
  'default' => 'desc',
45
  'options' => array(
46
- 'title' => __( 'Title' , 'rbs_gallery' ),
47
- 'desc' => __( 'Desc' , 'rbs_gallery' ),
48
- 'caption' => __( 'Caption' , 'rbs_gallery' )
49
  ),
50
  ));
51
 
52
  $polaroid_group->add_field( array(
53
- 'name' => __( 'Bg Color', 'rbs_gallery' ),
54
  'id' => ROBO_GALLERY_PREFIX.'polaroidBackground',
55
  'type' => 'rbstext',
56
  'class' => 'form-control rbs_color',
@@ -61,15 +61,15 @@ $polaroid_group->add_field( array(
61
  ));
62
 
63
  $polaroid_group->add_field( array(
64
- 'name' => __('Align', 'rbs_gallery' ),
65
  'id' => ROBO_GALLERY_PREFIX . 'polaroidAlign',
66
  'type' => 'rbsselect',
67
  'show_option_none' => false,
68
  'default' => 'center',
69
  'options' => array(
70
- 'left' => __( 'left' , 'rbs_gallery' ),
71
- 'right' => __( 'right' , 'rbs_gallery' ),
72
- 'center' => __( 'center' , 'rbs_gallery' ),
73
  ),
74
  'after_row' => '
75
  </div>
16
 
17
  $polaroid_group = new_cmb2_box( array(
18
  'id' => ROBO_GALLERY_PREFIX . 'polaroid_metabox',
19
+ 'title' => '<span class="dashicons dashicons-money"></span> '.__( 'Polaroid Style Options', 'robo-gallery' ),
20
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
21
  'show_names' => false,
22
  'context' => 'normal',
23
  ));
24
 
25
  $polaroid_group->add_field( array(
26
+ 'name' => __('Polaroid Style', 'robo-gallery' ),
27
  'id' => ROBO_GALLERY_PREFIX . 'polaroidOn',
28
  'type' => 'switch',
29
  'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
37
  ));
38
 
39
  $polaroid_group->add_field(array(
40
+ 'name' => __('Source', 'robo-gallery' ),
41
  'id' => ROBO_GALLERY_PREFIX . 'polaroidSource',
42
  'type' => 'rbsselect',
43
  'show_option_none' => false,
44
  'default' => 'desc',
45
  'options' => array(
46
+ 'title' => __( 'Title' , 'robo-gallery' ),
47
+ 'desc' => __( 'Desc' , 'robo-gallery' ),
48
+ 'caption' => __( 'Caption' , 'robo-gallery' )
49
  ),
50
  ));
51
 
52
  $polaroid_group->add_field( array(
53
+ 'name' => __( 'Bg Color', 'robo-gallery' ),
54
  'id' => ROBO_GALLERY_PREFIX.'polaroidBackground',
55
  'type' => 'rbstext',
56
  'class' => 'form-control rbs_color',
61
  ));
62
 
63
  $polaroid_group->add_field( array(
64
+ 'name' => __('Align', 'robo-gallery' ),
65
  'id' => ROBO_GALLERY_PREFIX . 'polaroidAlign',
66
  'type' => 'rbsselect',
67
  'show_option_none' => false,
68
  'default' => 'center',
69
  'options' => array(
70
+ 'left' => __( 'Left' , 'robo-gallery' ),
71
+ 'right' => __( 'Right' , 'robo-gallery' ),
72
+ 'center' => __( 'Center' , 'robo-gallery' ),
73
  ),
74
  'after_row' => '
75
  </div>
includes/rbs_gallery_init.php CHANGED
@@ -64,7 +64,7 @@ if(!function_exists('rbs_gallery_get_current_post_type')){
64
  if ( $post && $post->post_type ) return $post->post_type;
65
  elseif( $typenow ) return $typenow;
66
  elseif( $current_screen && $current_screen->post_type ) return $current_screen->post_type;
67
- elseif( isset( $_REQUEST['post_type'] ) ) return sanitize_key( $_REQUEST['post_type'] );
68
  elseif (isset( $_REQUEST['post'] ) && get_post_type($_REQUEST['post'])) return get_post_type($_REQUEST['post']);
69
  return null;
70
  }
64
  if ( $post && $post->post_type ) return $post->post_type;
65
  elseif( $typenow ) return $typenow;
66
  elseif( $current_screen && $current_screen->post_type ) return $current_screen->post_type;
67
+ elseif( isset( $_REQUEST['post_type'] ) && !is_array($_REQUEST['post_type']) ) return sanitize_key( $_REQUEST['post_type'] );
68
  elseif (isset( $_REQUEST['post'] ) && get_post_type($_REQUEST['post'])) return get_post_type($_REQUEST['post']);
69
  return null;
70
  }
languages/robo-gallery-en_AU.mo ADDED
Binary file
languages/robo-gallery-en_AU.po ADDED
@@ -0,0 +1,1395 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
4
+ "Project-Id-Version: Robo Gallery\n"
5
+ "POT-Creation-Date: 2017-06-16 10:41+0200\n"
6
+ "PO-Revision-Date: 2017-06-16 10:42+0200\n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 2.0\n"
12
+ "X-Poedit-Basepath: ..\n"
13
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
14
+ "X-Poedit-WPHeader: robogallery.php\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
17
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
18
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
19
+ "Last-Translator: \n"
20
+ "Language: en_AU\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+ "X-Poedit-SearchPathExcluded-1: .hg\n"
24
+ "X-Poedit-SearchPathExcluded-2: dist\n"
25
+ "X-Poedit-SearchPathExcluded-3: node_modules\n"
26
+
27
+ #: cmb2/fields/border/cmb-field-border.php:50
28
+ #: includes/options/rbs_gallery_options_size.php:28
29
+ msgid "Width"
30
+ msgstr "Width"
31
+
32
+ #: cmb2/fields/border/cmb-field-border.php:69
33
+ #: includes/options/rbs_gallery_options_button.php:136
34
+ msgid "Style"
35
+ msgstr "Style"
36
+
37
+ #: cmb2/fields/border/cmb-field-border.php:83
38
+ #: includes/options/rbs_gallery_options_button.php:155
39
+ msgid "Color"
40
+ msgstr "Color"
41
+
42
+ #: cmb2/fields/padding/rbs-padding.php:46
43
+ #: includes/options/rbs_gallery_options_button.php:207
44
+ #: includes/options/rbs_gallery_options_polaroid.php:70
45
+ msgid "Left"
46
+ msgstr "Left"
47
+
48
+ #: cmb2/fields/padding/rbs-padding.php:60
49
+ msgid "Top"
50
+ msgstr "Top"
51
+
52
+ #: cmb2/fields/padding/rbs-padding.php:78
53
+ #: includes/options/rbs_gallery_options_button.php:209
54
+ #: includes/options/rbs_gallery_options_polaroid.php:71
55
+ msgid "Right"
56
+ msgstr "Right"
57
+
58
+ #: cmb2/fields/padding/rbs-padding.php:92
59
+ msgid "Bottom"
60
+ msgstr "Bottom"
61
+
62
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:60
63
+ #: includes/rbs_gallery_list.php:29
64
+ msgid "Get Robo Gallery Pro version"
65
+ msgstr "Get Robo Gallery Pro version"
66
+
67
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:61
68
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:74
69
+ #: includes/extensions/rbs_create_post.php:11
70
+ #: includes/rbs_gallery_button.php:28 includes/rbs_gallery_list.php:30
71
+ msgid "Close"
72
+ msgstr "Close"
73
+
74
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:62
75
+ #: includes/options/rbs_gallery_options_info.php:19
76
+ #: includes/options/rbs_gallery_options_info.php:31
77
+ #: includes/options/rbs_gallery_options_infowide.php:19
78
+ #: includes/rbs_gallery_about.php:66 includes/rbs_gallery_about.php:67
79
+ #: includes/rbs_gallery_list.php:31 includes/rbs_gallery_topblock.php:23
80
+ msgid "Get Pro version"
81
+ msgstr "Get Pro version"
82
+
83
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:64
84
+ msgid "This function available in PRO version"
85
+ msgstr "This function available in PRO version"
86
+
87
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:73
88
+ msgid "Update Robo Gallery PRO Key"
89
+ msgstr "Update Robo Gallery PRO Key"
90
+
91
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:75
92
+ msgid "Goto Clients section"
93
+ msgstr "Goto Clients section"
94
+
95
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:77
96
+ msgid ""
97
+ "This function available in latest versions of the plugin. <br/>\n"
98
+ "\t\t\t\t\t\t\tPlease login to <a href=\"https://robosoft.co/clients/\" "
99
+ "target=\"_blank\">client member place section</a> and download latest "
100
+ "version of the <strong>Robo Gallery Key plugin</strong>.<br/><br/>\n"
101
+ "\t\t\t\t\t\t\tInstall this key on the website and all features will be "
102
+ "enabled.<br/>\n"
103
+ "\t\t\t\t\t\t\tAll previous functionality will be available with old Pro Key. "
104
+ "<br/>\n"
105
+ "\t\t\t\t\t\t\tUpdate required only for the case if you wish to enable all "
106
+ "latest functions implemented in new version of the plugin."
107
+ msgstr ""
108
+ "This function available in latest versions of the plugin. <br/>\n"
109
+ "\t\t\t\t\t\t\tPlease login to <a href=\"https://robosoft.co/clients/\" "
110
+ "target=\"_blank\">client member place section</a> and download latest "
111
+ "version of the <strong>Robo Gallery Key plugin</strong>.<br/><br/>\n"
112
+ "\t\t\t\t\t\t\tInstall this key on the website and all features will be "
113
+ "enabled.<br/>\n"
114
+ "\t\t\t\t\t\t\tAll previous functionality will be available with old Pro Key. "
115
+ "<br/>\n"
116
+ "\t\t\t\t\t\t\tUpdate required only for the case if you wish to enable all "
117
+ "latest functions implemented in new version of the plugin."
118
+
119
+ #: cmb2/fields/toolbox/cmb-field-toolbox.php:134
120
+ msgid "disabled because you select gallery clone option"
121
+ msgstr "disabled because you select gallery clone option"
122
+
123
+ #: includes/extensions/backup/backup.form.php:62
124
+ msgid "Robo Gallery Backup"
125
+ msgstr "Robo Gallery Backup"
126
+
127
+ #: includes/extensions/backup/backup.form.php:105
128
+ msgid "Success Import "
129
+ msgstr "Success Import "
130
+
131
+ #: includes/extensions/backup/backup.form.php:107
132
+ msgid "Import Post"
133
+ msgstr "Import Post"
134
+
135
+ #: includes/extensions/backup/backup.form.php:108
136
+ msgid "Import Images"
137
+ msgstr "Import Images"
138
+
139
+ #: includes/extensions/backup/backup.form.php:114
140
+ msgid "Duplicate Post"
141
+ msgstr "Duplicate Post"
142
+
143
+ #: includes/extensions/backup/backup.form.php:115
144
+ msgid "Duplicate Images"
145
+ msgstr "Duplicate Images"
146
+
147
+ #: includes/extensions/backup/backup.form.php:122
148
+ msgid "Skipped Post"
149
+ msgstr "Skipped Post"
150
+
151
+ #: includes/extensions/backup/backup.form.php:123
152
+ msgid "Skipped Images"
153
+ msgstr "Skipped Images"
154
+
155
+ #: includes/extensions/backup/backup.form.php:129
156
+ msgid "Error: please check backup file"
157
+ msgstr "Error: please check backup file"
158
+
159
+ #: includes/extensions/backup/backup.form.php:132
160
+ msgid "Error: check secure"
161
+ msgstr "Error: check secure"
162
+
163
+ #: includes/extensions/backup/backup.form.php:161
164
+ msgid ""
165
+ "You can use Full Backup options to make backup of configured galleries "
166
+ "settings and images. As result you'll get archive with XML file of galleries "
167
+ "settings and all images of your galleries"
168
+ msgstr ""
169
+ "You can use Full Backup options to make backup of configured galleries "
170
+ "settings and images. As result you'll get archive with XML file of galleries "
171
+ "settings and all images of your galleries"
172
+
173
+ #: includes/extensions/backup/backup.form.php:166
174
+ #: includes/extensions/backup/backup.form.php:195
175
+ msgid "File Name"
176
+ msgstr "File Name"
177
+
178
+ #: includes/extensions/backup/backup.form.php:175
179
+ msgid "Download Full Backup"
180
+ msgstr "Download Full Backup"
181
+
182
+ #: includes/extensions/backup/backup.form.php:189
183
+ msgid ""
184
+ "After EXPORT copy images from server folder: {Wordpress folder}/wp-content/"
185
+ "uploads to the new location by FTP"
186
+ msgstr ""
187
+ "After EXPORT copy images from server folder: {Wordpress folder}/wp-content/"
188
+ "uploads to the new location by FTP"
189
+
190
+ #: includes/extensions/backup/backup.form.php:203
191
+ msgid "Download Backup"
192
+ msgstr "Download Backup"
193
+
194
+ #: includes/extensions/backup/backup.form.php:219
195
+ msgid "Sever Environment"
196
+ msgstr "Sever Environment"
197
+
198
+ #: includes/extensions/backup/backup.form.php:222
199
+ msgid "Max upload size"
200
+ msgstr "Max upload size"
201
+
202
+ #: includes/extensions/backup/backup.form.php:223
203
+ msgid "Max POST size"
204
+ msgstr "Max POST size"
205
+
206
+ #: includes/extensions/backup/backup.form.php:224
207
+ msgid "How to increase the max upload size?"
208
+ msgstr "How to increase the max upload size?"
209
+
210
+ #: includes/extensions/backup/backup.form.php:229
211
+ #: includes/extensions/backup/backup.form.php:232
212
+ msgid "Duplicate"
213
+ msgstr "Duplicate"
214
+
215
+ #: includes/extensions/backup/backup.form.php:235
216
+ msgid "Make copy if such gallery or image already exist"
217
+ msgstr "Make copy if such gallery or image already exist"
218
+
219
+ #: includes/extensions/backup/backup.form.php:244
220
+ msgid "Select backup file"
221
+ msgstr "Select backup file"
222
+
223
+ #: includes/extensions/backup/backup.form.php:252
224
+ msgid "Upload XML or Zip"
225
+ msgstr "Upload XML or Zip"
226
+
227
+ #: includes/extensions/category/category.class.php:46
228
+ #: includes/options/rbs_gallery_options_button.php:52
229
+ msgid "Categories"
230
+ msgstr "Categories"
231
+
232
+ #: includes/extensions/category/category.class.php:101
233
+ msgid "Save"
234
+ msgstr "Save"
235
+
236
+ #: includes/extensions/category/category.class.php:104
237
+ msgid "Cancel"
238
+ msgstr "Cancel"
239
+
240
+ #: includes/extensions/category/category.class.php:113
241
+ msgid "Error"
242
+ msgstr "Error"
243
+
244
+ #: includes/extensions/category/category.class.php:116
245
+ msgid "OK"
246
+ msgstr "OK"
247
+
248
+ #: includes/extensions/category/category.class.php:143
249
+ msgid "Root Category"
250
+ msgstr "Root Category"
251
+
252
+ #: includes/extensions/category/category.class.php:155
253
+ #: includes/extensions/rbs_create_post_ajax.php:143
254
+ #: includes/extensions/rbs_create_post_ajax.php:201
255
+ #: includes/extensions/rbs_create_post_ajax.php:202
256
+ msgid "Edit"
257
+ msgstr "Edit"
258
+
259
+ #: includes/extensions/rbs_create_post.php:10
260
+ msgid "Post manager"
261
+ msgstr "Post manager"
262
+
263
+ #: includes/extensions/rbs_create_post.php:12
264
+ #: includes/options/rbs_gallery_options_tools.php:33
265
+ msgid "Create post"
266
+ msgstr "Create post"
267
+
268
+ #: includes/extensions/rbs_create_post.php:17
269
+ msgid "Loading"
270
+ msgstr "Loading"
271
+
272
+ #: includes/extensions/rbs_create_post_ajax.php:54
273
+ msgid "Add new post"
274
+ msgstr "Add new post"
275
+
276
+ #: includes/extensions/rbs_create_post_ajax.php:59
277
+ msgid "Category"
278
+ msgstr "Category"
279
+
280
+ #: includes/extensions/rbs_create_post_ajax.php:64
281
+ #: includes/extensions/rbs_create_post_ajax.php:178
282
+ #: includes/options/rbs_gallery_options_hover.php:129
283
+ #: includes/options/rbs_gallery_options_lightbox.php:48
284
+ #: includes/options/rbs_gallery_options_lightbox.php:172
285
+ #: includes/options/rbs_gallery_options_polaroid.php:46
286
+ #: includes/rbs_gallery_widget.php:95 includes/rbs_gallery_widget_last.php:75
287
+ msgid "Title"
288
+ msgstr "Title"
289
+
290
+ #: includes/extensions/rbs_create_post_ajax.php:69
291
+ msgid "Slug"
292
+ msgstr "Slug"
293
+
294
+ #: includes/extensions/rbs_create_post_ajax.php:74
295
+ #: includes/options/rbs_gallery_options_lightbox.php:29
296
+ msgid "Text"
297
+ msgstr "Text"
298
+
299
+ #: includes/extensions/rbs_create_post_ajax.php:82
300
+ msgid "Short tag of the gallery will be insert into created article."
301
+ msgstr "Short tag of the gallery will be insert into created article."
302
+
303
+ #: includes/extensions/rbs_create_post_ajax.php:140
304
+ msgid "Post"
305
+ msgstr "Post"
306
+
307
+ #: includes/extensions/rbs_create_post_ajax.php:140
308
+ msgid "created"
309
+ msgstr "created"
310
+
311
+ #: includes/extensions/rbs_create_post_ajax.php:146
312
+ #: includes/extensions/rbs_create_post_ajax.php:206
313
+ #: includes/extensions/rbs_create_post_ajax.php:207
314
+ msgid "Preview"
315
+ msgstr "Preview"
316
+
317
+ #: includes/extensions/rbs_create_post_ajax.php:179
318
+ msgid "Status"
319
+ msgstr "Status"
320
+
321
+ #: includes/extensions/rbs_create_post_ajax.php:197
322
+ #: includes/extensions/stats/stats.form.php:118
323
+ msgid "Published"
324
+ msgstr "Published"
325
+
326
+ #: includes/extensions/rbs_create_post_ajax.php:197
327
+ msgid "publish"
328
+ msgstr "publish"
329
+
330
+ #: includes/extensions/stats/stats.form.php:51
331
+ msgid "Robo Gallery Statistics"
332
+ msgstr "Robo Gallery Statistics"
333
+
334
+ #: includes/extensions/stats/stats.form.php:52
335
+ #: includes/options/rbs_gallery_options_tools.php:45
336
+ msgid "Reset"
337
+ msgstr "Reset"
338
+
339
+ #: includes/extensions/stats/stats.form.php:57
340
+ msgid "Statistics Reset."
341
+ msgstr "Statistics Reset."
342
+
343
+ #: includes/extensions/stats/stats.form.php:59
344
+ msgid "Dismiss this notice."
345
+ msgstr "Dismiss this notice."
346
+
347
+ #: includes/extensions/stats/stats.form.php:71
348
+ msgid "Gallery Statistics"
349
+ msgstr "Gallery Statistics"
350
+
351
+ #: includes/extensions/stats/stats.form.php:72
352
+ msgid "Images Statistics"
353
+ msgstr "Images Statistics"
354
+
355
+ #: includes/extensions/stats/stats.form.php:91
356
+ msgid "Total Views"
357
+ msgstr "Total Views"
358
+
359
+ #: includes/extensions/stats/stats.form.php:99
360
+ msgid "Total Images"
361
+ msgstr "Total Images"
362
+
363
+ #: includes/extensions/stats/stats.form.php:107
364
+ msgid "Total Galleries"
365
+ msgstr "Total Galleries"
366
+
367
+ #: includes/extensions/stats/stats.form.php:126
368
+ msgid "Drafts"
369
+ msgstr "Drafts"
370
+
371
+ #: includes/extensions/stats/stats.form.php:134
372
+ msgid "Trash"
373
+ msgstr "Trash"
374
+
375
+ #: includes/options/rbs_gallery_options_button.php:19
376
+ msgid "Menu Options"
377
+ msgstr "Menu Options"
378
+
379
+ #: includes/options/rbs_gallery_options_button.php:26
380
+ msgid "Menu"
381
+ msgstr "Menu"
382
+
383
+ #: includes/options/rbs_gallery_options_button.php:42
384
+ msgid "Menu mode"
385
+ msgstr "Menu mode"
386
+
387
+ #: includes/options/rbs_gallery_options_button.php:51
388
+ #: includes/rbs_gallery_media.php:56
389
+ msgid "Tags"
390
+ msgstr "Tags"
391
+
392
+ #: includes/options/rbs_gallery_options_button.php:53
393
+ msgid "primary"
394
+ msgstr "primary"
395
+
396
+ #: includes/options/rbs_gallery_options_button.php:54
397
+ msgid "info"
398
+ msgstr "info"
399
+
400
+ #: includes/options/rbs_gallery_options_button.php:61
401
+ msgid "Tags Ordering"
402
+ msgstr "Tags Ordering"
403
+
404
+ #: includes/options/rbs_gallery_options_button.php:68
405
+ msgid "No ordering"
406
+ msgstr "No ordering"
407
+
408
+ #: includes/options/rbs_gallery_options_button.php:69
409
+ msgid "Alphabetical asc"
410
+ msgstr "Alphabetical asc"
411
+
412
+ #: includes/options/rbs_gallery_options_button.php:70
413
+ msgid "Alphabetical desc"
414
+ msgstr "Alphabetical desc"
415
+
416
+ #: includes/options/rbs_gallery_options_button.php:77
417
+ msgid "Self Images"
418
+ msgstr "Self Images"
419
+
420
+ #: includes/options/rbs_gallery_options_button.php:89
421
+ msgid "Root Label"
422
+ msgstr "Root Label"
423
+
424
+ #: includes/options/rbs_gallery_options_button.php:99
425
+ msgid "Menu Labels"
426
+ msgstr "Menu Labels"
427
+
428
+ #: includes/options/rbs_gallery_options_button.php:100
429
+ msgid "Menu Style"
430
+ msgstr "Menu Style"
431
+
432
+ #: includes/options/rbs_gallery_options_button.php:101
433
+ #: includes/options/rbs_gallery_options_button.php:240
434
+ msgid "Search"
435
+ msgstr "Search"
436
+
437
+ #: includes/options/rbs_gallery_options_button.php:110
438
+ msgid "Root Label Text"
439
+ msgstr "Root Label Text"
440
+
441
+ #: includes/options/rbs_gallery_options_button.php:111
442
+ msgid "All"
443
+ msgstr "All"
444
+
445
+ #: includes/options/rbs_gallery_options_button.php:121
446
+ msgid "Self Label"
447
+ msgstr "Self Label"
448
+
449
+ #: includes/options/rbs_gallery_options_button.php:143
450
+ #: includes/options/rbs_gallery_options_button.php:178
451
+ #: includes/options/rbs_gallery_options_button.php:194
452
+ msgid "Normal"
453
+ msgstr "Normal"
454
+
455
+ #: includes/options/rbs_gallery_options_button.php:144
456
+ msgid "flat"
457
+ msgstr "flat"
458
+
459
+ #: includes/options/rbs_gallery_options_button.php:145
460
+ msgid "3d"
461
+ msgstr "3d"
462
+
463
+ #: includes/options/rbs_gallery_options_button.php:146
464
+ #: includes/options/rbs_gallery_options_view.php:127
465
+ msgid "Border"
466
+ msgstr "Border"
467
+
468
+ #: includes/options/rbs_gallery_options_button.php:162
469
+ msgid "Gray"
470
+ msgstr "Gray"
471
+
472
+ #: includes/options/rbs_gallery_options_button.php:163
473
+ #: includes/options/rbs_gallery_options_lightbox.php:189
474
+ msgid "Blue"
475
+ msgstr "Blue"
476
+
477
+ #: includes/options/rbs_gallery_options_button.php:164
478
+ #: includes/options/rbs_gallery_options_lightbox.php:190
479
+ msgid "Green"
480
+ msgstr "Green"
481
+
482
+ #: includes/options/rbs_gallery_options_button.php:165
483
+ msgid "Orange"
484
+ msgstr "Orange"
485
+
486
+ #: includes/options/rbs_gallery_options_button.php:166
487
+ #: includes/options/rbs_gallery_options_lightbox.php:188
488
+ msgid "Red"
489
+ msgstr "Red"
490
+
491
+ #: includes/options/rbs_gallery_options_button.php:167
492
+ msgid "Purple"
493
+ msgstr "Purple"
494
+
495
+ #: includes/options/rbs_gallery_options_button.php:172
496
+ msgid "Rounds"
497
+ msgstr "Rounds"
498
+
499
+ #: includes/options/rbs_gallery_options_button.php:179
500
+ msgid "Rounded"
501
+ msgstr "Rounded"
502
+
503
+ #: includes/options/rbs_gallery_options_button.php:180
504
+ msgid "Pill"
505
+ msgstr "Pill"
506
+
507
+ #: includes/options/rbs_gallery_options_button.php:181
508
+ msgid "Circle "
509
+ msgstr "Circle "
510
+
511
+ #: includes/options/rbs_gallery_options_button.php:186
512
+ msgid "Size"
513
+ msgstr "Size"
514
+
515
+ #: includes/options/rbs_gallery_options_button.php:192
516
+ msgid "Jumbo"
517
+ msgstr "Jumbo"
518
+
519
+ #: includes/options/rbs_gallery_options_button.php:193
520
+ msgid "Large"
521
+ msgstr "Large"
522
+
523
+ #: includes/options/rbs_gallery_options_button.php:195
524
+ msgid "Small"
525
+ msgstr "Small"
526
+
527
+ #: includes/options/rbs_gallery_options_button.php:196
528
+ msgid "Tiny "
529
+ msgstr "Tiny "
530
+
531
+ #: includes/options/rbs_gallery_options_button.php:201
532
+ #: includes/options/rbs_gallery_options_polaroid.php:64
533
+ #: includes/options/rbs_gallery_options_size.php:38
534
+ msgid "Align"
535
+ msgstr "Align"
536
+
537
+ #: includes/options/rbs_gallery_options_button.php:208
538
+ #: includes/options/rbs_gallery_options_polaroid.php:72
539
+ msgid "Center"
540
+ msgstr "Center"
541
+
542
+ #: includes/options/rbs_gallery_options_button.php:214
543
+ msgid "Left Padding"
544
+ msgstr "Left Padding"
545
+
546
+ #: includes/options/rbs_gallery_options_button.php:225
547
+ msgid "Bottom Padding"
548
+ msgstr "Bottom Padding"
549
+
550
+ #: includes/options/rbs_gallery_options_button.php:249
551
+ msgid "Search Text"
552
+ msgstr "Search Text"
553
+
554
+ #: includes/options/rbs_gallery_options_button.php:250
555
+ msgid "search"
556
+ msgstr "search"
557
+
558
+ #: includes/options/rbs_gallery_options_copy.php:29
559
+ msgid " Clone Gallery"
560
+ msgstr " Clone Gallery"
561
+
562
+ #: includes/options/rbs_gallery_options_copy.php:37
563
+ msgid "Source Gallery"
564
+ msgstr "Source Gallery"
565
+
566
+ #: includes/options/rbs_gallery_options_copy.php:38
567
+ msgid ""
568
+ "When you select here to inherit settings from another gallery you'll not be "
569
+ "able to edit some of the options. Gallery will copy all settings from "
570
+ "selected source."
571
+ msgstr ""
572
+ "When you select here to inherit settings from another gallery you'll not be "
573
+ "able to edit some of the options. Gallery will copy all settings from "
574
+ "selected source."
575
+
576
+ #: includes/options/rbs_gallery_options_copy.php:39
577
+ msgid ""
578
+ "Very useful option for the webmasters who planning to create a lot of "
579
+ "galleries. You don't have to configure it every time. Just setup styles of "
580
+ "the gallery in one place and use the same options for another galleries on "
581
+ "your website in another galleries. Very fast, comfortable, advanced tool to "
582
+ "speed up your workflow!"
583
+ msgstr ""
584
+ "Very useful option for the webmasters who planning to create a lot of "
585
+ "galleries. You don't have to configure it every time. Just setup styles of "
586
+ "the gallery in one place and use the same options for another galleries on "
587
+ "your website in another galleries. Very fast, comfortable, advanced tool to "
588
+ "speed up your workflow!"
589
+
590
+ #: includes/options/rbs_gallery_options_guides.php:22
591
+ msgid "Video Guides"
592
+ msgstr "Video Guides"
593
+
594
+ #: includes/options/rbs_gallery_options_hover.php:19
595
+ msgid "Hover Options"
596
+ msgstr "Hover Options"
597
+
598
+ #: includes/options/rbs_gallery_options_hover.php:26
599
+ msgid "Click Thumbnail"
600
+ msgstr "Click Thumbnail"
601
+
602
+ #: includes/options/rbs_gallery_options_hover.php:32
603
+ #: includes/rbs_gallery_media.php:88
604
+ msgid "On"
605
+ msgstr "On"
606
+
607
+ #: includes/options/rbs_gallery_options_hover.php:33
608
+ #: includes/options/rbs_gallery_options_hover.php:47
609
+ #: includes/rbs_gallery_media.php:89
610
+ msgid "Off"
611
+ msgstr "Off"
612
+
613
+ #: includes/options/rbs_gallery_options_hover.php:40
614
+ msgid "Hover Mode"
615
+ msgstr "Hover Mode"
616
+
617
+ #: includes/options/rbs_gallery_options_hover.php:48
618
+ msgid "Options"
619
+ msgstr "Options"
620
+
621
+ #: includes/options/rbs_gallery_options_hover.php:49
622
+ msgid "Template"
623
+ msgstr "Template"
624
+
625
+ #: includes/options/rbs_gallery_options_hover.php:63
626
+ msgid "No Hover for Mobile"
627
+ msgstr "No Hover for Mobile"
628
+
629
+ #: includes/options/rbs_gallery_options_hover.php:66
630
+ msgid "this option turn off hover effect only for mobile devices"
631
+ msgstr "this option turn off hover effect only for mobile devices"
632
+
633
+ #: includes/options/rbs_gallery_options_hover.php:73
634
+ #: includes/options/rbs_gallery_options_lightbox.php:69
635
+ #: includes/options/rbs_gallery_options_loading.php:79
636
+ #: includes/options/rbs_gallery_options_polaroid.php:53
637
+ msgid "Bg Color"
638
+ msgstr "Bg Color"
639
+
640
+ #: includes/options/rbs_gallery_options_hover.php:87
641
+ #: includes/rbs_gallery_media.php:133
642
+ msgid "Effect"
643
+ msgstr "Effect"
644
+
645
+ #: includes/options/rbs_gallery_options_hover.php:93
646
+ #: includes/rbs_gallery_media.php:110
647
+ msgid "push-up"
648
+ msgstr "push-up"
649
+
650
+ #: includes/options/rbs_gallery_options_hover.php:94
651
+ #: includes/rbs_gallery_media.php:111
652
+ msgid "push-down"
653
+ msgstr "push-down"
654
+
655
+ #: includes/options/rbs_gallery_options_hover.php:95
656
+ #: includes/rbs_gallery_media.php:112
657
+ msgid "push-up-100%"
658
+ msgstr "push-up-100%"
659
+
660
+ #: includes/options/rbs_gallery_options_hover.php:96
661
+ #: includes/rbs_gallery_media.php:113
662
+ msgid "push-down-100%"
663
+ msgstr "push-down-100%"
664
+
665
+ #: includes/options/rbs_gallery_options_hover.php:97
666
+ #: includes/rbs_gallery_media.php:114
667
+ msgid "reveal-top"
668
+ msgstr "reveal-top"
669
+
670
+ #: includes/options/rbs_gallery_options_hover.php:98
671
+ #: includes/rbs_gallery_media.php:115
672
+ msgid "reveal-bottom"
673
+ msgstr "reveal-bottom"
674
+
675
+ #: includes/options/rbs_gallery_options_hover.php:99
676
+ #: includes/rbs_gallery_media.php:116
677
+ msgid "reveal-top-100%"
678
+ msgstr "reveal-top-100%"
679
+
680
+ #: includes/options/rbs_gallery_options_hover.php:100
681
+ #: includes/rbs_gallery_media.php:117
682
+ msgid "reveal-bottom-100%"
683
+ msgstr "reveal-bottom-100%"
684
+
685
+ #: includes/options/rbs_gallery_options_hover.php:101
686
+ #: includes/rbs_gallery_media.php:118
687
+ msgid "direction-aware"
688
+ msgstr "direction-aware"
689
+
690
+ #: includes/options/rbs_gallery_options_hover.php:102
691
+ #: includes/rbs_gallery_media.php:119
692
+ msgid "direction-aware-fade"
693
+ msgstr "direction-aware-fade"
694
+
695
+ #: includes/options/rbs_gallery_options_hover.php:103
696
+ #: includes/rbs_gallery_media.php:120
697
+ msgid "direction-right"
698
+ msgstr "direction-right"
699
+
700
+ #: includes/options/rbs_gallery_options_hover.php:104
701
+ #: includes/rbs_gallery_media.php:121
702
+ msgid "direction-left"
703
+ msgstr "direction-left"
704
+
705
+ #: includes/options/rbs_gallery_options_hover.php:105
706
+ #: includes/rbs_gallery_media.php:122
707
+ msgid "direction-top"
708
+ msgstr "direction-top"
709
+
710
+ #: includes/options/rbs_gallery_options_hover.php:106
711
+ #: includes/rbs_gallery_media.php:123
712
+ msgid "direction-bottom"
713
+ msgstr "direction-bottom"
714
+
715
+ #: includes/options/rbs_gallery_options_hover.php:107
716
+ #: includes/rbs_gallery_media.php:124
717
+ msgid "fade"
718
+ msgstr "fade"
719
+
720
+ #: includes/options/rbs_gallery_options_hover.php:114
721
+ msgid "Show Title"
722
+ msgstr "Show Title"
723
+
724
+ #: includes/options/rbs_gallery_options_hover.php:130
725
+ msgid "Link Button"
726
+ msgstr "Link Button"
727
+
728
+ #: includes/options/rbs_gallery_options_hover.php:131
729
+ msgid "Zoom Button"
730
+ msgstr "Zoom Button"
731
+
732
+ #: includes/options/rbs_gallery_options_hover.php:132
733
+ #: includes/options/rbs_gallery_options_lightbox.php:49
734
+ #: includes/options/rbs_gallery_options_lightbox.php:173
735
+ msgid "Description"
736
+ msgstr "Description"
737
+
738
+ #: includes/options/rbs_gallery_options_hover.php:141
739
+ msgid "Link Icon"
740
+ msgstr "Link Icon"
741
+
742
+ #: includes/options/rbs_gallery_options_hover.php:161
743
+ msgid "Zoom Icon"
744
+ msgstr "Zoom Icon"
745
+
746
+ #: includes/options/rbs_gallery_options_hover.php:184
747
+ msgid "Show Description"
748
+ msgstr "Show Description"
749
+
750
+ #: includes/options/rbs_gallery_options_hover.php:205
751
+ msgid "Description Template"
752
+ msgstr "Description Template"
753
+
754
+ #: includes/options/rbs_gallery_options_images.php:19
755
+ msgid "Images Manager"
756
+ msgstr "Images Manager"
757
+
758
+ #: includes/options/rbs_gallery_options_images.php:27
759
+ #: includes/options/rbs_gallery_options_images.php:29
760
+ msgid "Manage Images"
761
+ msgstr "Manage Images"
762
+
763
+ #: includes/options/rbs_gallery_options_images.php:28
764
+ msgid ""
765
+ "Click on Manage Images button to open Images Manager where you can upload, "
766
+ "edit or delete images from gallery. Also here you can edit settings of every "
767
+ "particular image, define alt, links, description text"
768
+ msgstr ""
769
+ "Click on Manage Images button to open Images Manager where you can upload, "
770
+ "edit or delete images from gallery. Also here you can edit settings of every "
771
+ "particular image, define alt, links, description text"
772
+
773
+ #: includes/options/rbs_gallery_options_info.php:29
774
+ #: includes/options/rbs_gallery_options_infowide.php:28
775
+ #: includes/rbs_gallery_topblock.php:24
776
+ msgid ""
777
+ "with PRO version you get more advanced functionality and even more "
778
+ "flexibility in settings"
779
+ msgstr ""
780
+ "with PRO version you get more advanced functionality and even more "
781
+ "flexibility in settings"
782
+
783
+ #: includes/options/rbs_gallery_options_lightbox.php:19
784
+ msgid "Lightbox Options"
785
+ msgstr "Lightbox Options"
786
+
787
+ #: includes/options/rbs_gallery_options_lightbox.php:42
788
+ msgid "Text Source"
789
+ msgstr "Text Source"
790
+
791
+ #: includes/options/rbs_gallery_options_lightbox.php:50
792
+ #: includes/options/rbs_gallery_options_lightbox.php:174
793
+ #: includes/options/rbs_gallery_options_polaroid.php:48
794
+ msgid "Caption"
795
+ msgstr "Caption"
796
+
797
+ #: includes/options/rbs_gallery_options_lightbox.php:58
798
+ msgid "Text Color"
799
+ msgstr "Text Color"
800
+
801
+ #: includes/options/rbs_gallery_options_lightbox.php:82
802
+ msgid "Deep Linking"
803
+ msgstr "Deep Linking"
804
+
805
+ #: includes/options/rbs_gallery_options_lightbox.php:85
806
+ msgid "This option enable linking for every particular image "
807
+ msgstr "This option enable linking for every particular image "
808
+
809
+ #: includes/options/rbs_gallery_options_lightbox.php:91
810
+ msgid " Images Counter"
811
+ msgstr " Images Counter"
812
+
813
+ #: includes/options/rbs_gallery_options_lightbox.php:103
814
+ msgid "Counter Divider"
815
+ msgstr "Counter Divider"
816
+
817
+ #: includes/options/rbs_gallery_options_lightbox.php:113
818
+ msgid "Close Icon"
819
+ msgstr "Close Icon"
820
+
821
+ #: includes/options/rbs_gallery_options_lightbox.php:122
822
+ msgid "Arrow Icon"
823
+ msgstr "Arrow Icon"
824
+
825
+ #: includes/options/rbs_gallery_options_lightbox.php:131
826
+ msgid "Swipe"
827
+ msgstr "Swipe"
828
+
829
+ #: includes/options/rbs_gallery_options_lightbox.php:139
830
+ msgid "Mobile Style"
831
+ msgstr "Mobile Style"
832
+
833
+ #: includes/options/rbs_gallery_options_lightbox.php:147
834
+ msgid "Source Button "
835
+ msgstr "Source Button "
836
+
837
+ #: includes/options/rbs_gallery_options_lightbox.php:156
838
+ msgid "Description Panel"
839
+ msgstr "Description Panel"
840
+
841
+ #: includes/options/rbs_gallery_options_lightbox.php:166
842
+ msgid "Description Source"
843
+ msgstr "Description Source"
844
+
845
+ #: includes/options/rbs_gallery_options_lightbox.php:180
846
+ msgid "Description Style"
847
+ msgstr "Description Style"
848
+
849
+ #: includes/options/rbs_gallery_options_lightbox.php:186
850
+ msgid "Light"
851
+ msgstr "Light"
852
+
853
+ #: includes/options/rbs_gallery_options_lightbox.php:187
854
+ msgid "Dark"
855
+ msgstr "Dark"
856
+
857
+ #: includes/options/rbs_gallery_options_lightbox.php:191
858
+ msgid "Pink"
859
+ msgstr "Pink"
860
+
861
+ #: includes/options/rbs_gallery_options_lightbox.php:197
862
+ msgid "Social Buttons"
863
+ msgstr "Social Buttons"
864
+
865
+ #: includes/options/rbs_gallery_options_lightbox.php:210
866
+ msgid "Facebook"
867
+ msgstr "Facebook"
868
+
869
+ #: includes/options/rbs_gallery_options_lightbox.php:219
870
+ msgid "Twitter"
871
+ msgstr "Twitter"
872
+
873
+ #: includes/options/rbs_gallery_options_lightbox.php:228
874
+ msgid "Google+"
875
+ msgstr "Google+"
876
+
877
+ #: includes/options/rbs_gallery_options_lightbox.php:237
878
+ msgid "Pinterest"
879
+ msgstr "Pinterest"
880
+
881
+ #: includes/options/rbs_gallery_options_lightbox.php:246
882
+ msgid "VK"
883
+ msgstr "VK"
884
+
885
+ #: includes/options/rbs_gallery_options_loading.php:19
886
+ #: includes/options/rbs_gallery_options_loading.php:35
887
+ msgid "Loading Options"
888
+ msgstr "Loading Options"
889
+
890
+ #: includes/options/rbs_gallery_options_loading.php:26
891
+ msgid "Lazy Load"
892
+ msgstr "Lazy Load"
893
+
894
+ #: includes/options/rbs_gallery_options_loading.php:36
895
+ msgid "Loading Text"
896
+ msgstr "Loading Text"
897
+
898
+ #: includes/options/rbs_gallery_options_loading.php:44
899
+ msgid "Images Amount"
900
+ msgstr "Images Amount"
901
+
902
+ #: includes/options/rbs_gallery_options_loading.php:53
903
+ msgid "Load More Amount"
904
+ msgstr "Load More Amount"
905
+
906
+ #: includes/options/rbs_gallery_options_loading.php:63
907
+ msgid "Wait Thumbs Load"
908
+ msgstr "Wait Thumbs Load"
909
+
910
+ #: includes/options/rbs_gallery_options_loading.php:71
911
+ msgid "Wait No Matter What"
912
+ msgstr "Wait No Matter What"
913
+
914
+ #: includes/options/rbs_gallery_options_loading.php:91
915
+ msgid "Loading Label"
916
+ msgstr "Loading Label"
917
+
918
+ #: includes/options/rbs_gallery_options_loading.php:101
919
+ msgid "Load More Label"
920
+ msgstr "Load More Label"
921
+
922
+ #: includes/options/rbs_gallery_options_loading.php:108
923
+ msgid "No More Entries Label"
924
+ msgstr "No More Entries Label"
925
+
926
+ #: includes/options/rbs_gallery_options_polaroid.php:19
927
+ msgid "Polaroid Style Options"
928
+ msgstr "Polaroid Style Options"
929
+
930
+ #: includes/options/rbs_gallery_options_polaroid.php:26
931
+ msgid "Polaroid Style"
932
+ msgstr "Polaroid Style"
933
+
934
+ #: includes/options/rbs_gallery_options_polaroid.php:40
935
+ msgid "Source"
936
+ msgstr "Source"
937
+
938
+ #: includes/options/rbs_gallery_options_polaroid.php:47
939
+ msgid "Desc"
940
+ msgstr "Desc"
941
+
942
+ #: includes/options/rbs_gallery_options_shortcode.php:19
943
+ msgid "Gallery Shortcode"
944
+ msgstr "Gallery Shortcode"
945
+
946
+ #: includes/options/rbs_gallery_options_shortcode.php:30
947
+ msgid "use this shortcode to insert this gallery into page, post or widget"
948
+ msgstr "use this shortcode to insert this gallery into page, post or widget"
949
+
950
+ #: includes/options/rbs_gallery_options_size.php:19
951
+ msgid "Gallery Size Options"
952
+ msgstr "Gallery Size Options"
953
+
954
+ #: includes/options/rbs_gallery_options_size.php:51
955
+ msgid "Padding"
956
+ msgstr "Padding"
957
+
958
+ #: includes/options/rbs_gallery_options_size.php:60
959
+ #: includes/options/rbs_gallery_options_size.php:68
960
+ msgid "Thumbs Options"
961
+ msgstr "Thumbs Options"
962
+
963
+ #: includes/options/rbs_gallery_options_size.php:69
964
+ msgid "Size Options"
965
+ msgstr "Size Options"
966
+
967
+ #: includes/options/rbs_gallery_options_size.php:76
968
+ msgid "Custom Ratio"
969
+ msgstr "Custom Ratio"
970
+
971
+ #: includes/options/rbs_gallery_options_size.php:87
972
+ msgid "Colums "
973
+ msgstr "Colums "
974
+
975
+ #: includes/options/rbs_gallery_options_text.php:19
976
+ msgid "Text Addons"
977
+ msgstr "Text Addons"
978
+
979
+ #: includes/options/rbs_gallery_options_text.php:27
980
+ #: includes/options/rbs_gallery_options_text.php:35
981
+ msgid "Pre Text"
982
+ msgstr "Pre Text"
983
+
984
+ #: includes/options/rbs_gallery_options_text.php:39
985
+ #: includes/options/rbs_gallery_options_text.php:47
986
+ msgid "After Text"
987
+ msgstr "After Text"
988
+
989
+ #: includes/options/rbs_gallery_options_tools.php:19
990
+ msgid "Gallery Tools"
991
+ msgstr "Gallery Tools"
992
+
993
+ #: includes/options/rbs_gallery_options_tools.php:38
994
+ msgid "Posts List"
995
+ msgstr "Posts List"
996
+
997
+ #: includes/options/rbs_gallery_options_tools.php:40
998
+ msgid "Here you can create and customize new post with gallery inside it"
999
+ msgstr "Here you can create and customize new post with gallery inside it"
1000
+
1001
+ #: includes/options/rbs_gallery_options_tools.php:43
1002
+ msgid "Gallery Views"
1003
+ msgstr "Gallery Views"
1004
+
1005
+ #: includes/options/rbs_gallery_options_tools.php:45
1006
+ msgid "Are you sure that you wish to reset statistics?"
1007
+ msgstr "Are you sure that you wish to reset statistics?"
1008
+
1009
+ #: includes/options/rbs_gallery_options_tools.php:45
1010
+ msgid "Success: Statistic successfully reset!"
1011
+ msgstr "Success: Statistic successfully reset!"
1012
+
1013
+ #: includes/options/rbs_gallery_options_view.php:19
1014
+ msgid "Thumbs View Options"
1015
+ msgstr "Thumbs View Options"
1016
+
1017
+ #: includes/options/rbs_gallery_options_view.php:28
1018
+ msgid "Radius"
1019
+ msgstr "Radius"
1020
+
1021
+ #: includes/options/rbs_gallery_options_view.php:41
1022
+ msgid "Hor. Space"
1023
+ msgstr "Hor. Space"
1024
+
1025
+ #: includes/options/rbs_gallery_options_view.php:51
1026
+ msgid "Ver. Space"
1027
+ msgstr "Ver. Space"
1028
+
1029
+ #: includes/options/rbs_gallery_options_view.php:64
1030
+ msgid "Shadow"
1031
+ msgstr "Shadow"
1032
+
1033
+ #: includes/options/rbs_gallery_options_view.php:74
1034
+ #: includes/options/rbs_gallery_options_view.php:81
1035
+ #: includes/options/rbs_gallery_options_view.php:106
1036
+ msgid "Shadow Options"
1037
+ msgstr "Shadow Options"
1038
+
1039
+ #: includes/options/rbs_gallery_options_view.php:82
1040
+ msgid "Hover Shadow Options"
1041
+ msgstr "Hover Shadow Options"
1042
+
1043
+ #: includes/options/rbs_gallery_options_view.php:92
1044
+ msgid "Hover Shadow"
1045
+ msgstr "Hover Shadow"
1046
+
1047
+ #: includes/options/rbs_gallery_options_view.php:137
1048
+ #: includes/options/rbs_gallery_options_view.php:144
1049
+ #: includes/options/rbs_gallery_options_view.php:171
1050
+ msgid "Border Options"
1051
+ msgstr "Border Options"
1052
+
1053
+ #: includes/options/rbs_gallery_options_view.php:145
1054
+ msgid "Hover Border Options"
1055
+ msgstr "Hover Border Options"
1056
+
1057
+ #: includes/options/rbs_gallery_options_view.php:156
1058
+ msgid "Hover Border"
1059
+ msgstr "Hover Border"
1060
+
1061
+ #: includes/rbs_gallery_about.php:25
1062
+ msgid "Robo Gallery implemented by RoboSoft Team"
1063
+ msgstr "Robo Gallery implemented by RoboSoft Team"
1064
+
1065
+ #: includes/rbs_gallery_about.php:28
1066
+ msgid "More details about Robo Gallery you can see on our website"
1067
+ msgstr "More details about Robo Gallery you can see on our website"
1068
+
1069
+ #: includes/rbs_gallery_about.php:34
1070
+ msgid "Robo Gallery Pro Features"
1071
+ msgstr "Robo Gallery Pro Features"
1072
+
1073
+ #: includes/rbs_gallery_about.php:37
1074
+ msgid "Unlimited amount of the galleries"
1075
+ msgstr "Unlimited amount of the galleries"
1076
+
1077
+ #: includes/rbs_gallery_about.php:38
1078
+ msgid "Unlimited amount of images in galleries"
1079
+ msgstr "Unlimited amount of images in galleries"
1080
+
1081
+ #: includes/rbs_gallery_about.php:41
1082
+ msgid "Custom hover style for border"
1083
+ msgstr "Custom hover style for border"
1084
+
1085
+ #: includes/rbs_gallery_about.php:42
1086
+ msgid "Custom hover style for shadow"
1087
+ msgstr "Custom hover style for shadow"
1088
+
1089
+ #: includes/rbs_gallery_about.php:45
1090
+ msgid "Unlimited multi-categories"
1091
+ msgstr "Unlimited multi-categories"
1092
+
1093
+ #: includes/rbs_gallery_about.php:46
1094
+ msgid "High quality thumbnails"
1095
+ msgstr "High quality thumbnails"
1096
+
1097
+ #: includes/rbs_gallery_about.php:49
1098
+ msgid "Gallery widget"
1099
+ msgstr "Gallery widget"
1100
+
1101
+ #: includes/rbs_gallery_about.php:50
1102
+ msgid "Random ordering"
1103
+ msgstr "Random ordering"
1104
+
1105
+ #: includes/rbs_gallery_about.php:53
1106
+ msgid "Gallery menu colors"
1107
+ msgstr "Gallery menu colors"
1108
+
1109
+ #: includes/rbs_gallery_about.php:54
1110
+ msgid "Gallery menu styles"
1111
+ msgstr "Gallery menu styles"
1112
+
1113
+ #: includes/rbs_gallery_about.php:57
1114
+ msgid "Custom images ordering"
1115
+ msgstr "Custom images ordering"
1116
+
1117
+ #: includes/rbs_gallery_about.php:58
1118
+ msgid "Customizable hover style"
1119
+ msgstr "Customizable hover style"
1120
+
1121
+ #: includes/rbs_gallery_about.php:61
1122
+ msgid "Custom hover background color"
1123
+ msgstr "Custom hover background color"
1124
+
1125
+ #: includes/rbs_gallery_about.php:62
1126
+ msgid "Advanced images description settings"
1127
+ msgstr "Advanced images description settings"
1128
+
1129
+ #: includes/rbs_gallery_about.php:72
1130
+ msgid "All Rights Reserved"
1131
+ msgstr "All Rights Reserved"
1132
+
1133
+ #. Plugin Name of the plugin/theme
1134
+ #: includes/rbs_gallery_button.php:27 includes/rbs_gallery_init.php:87
1135
+ #: includes/rbs_gallery_media.php:52 includes/rbs_gallery_settings.php:19
1136
+ msgid "Robo Gallery"
1137
+ msgstr "Robo Gallery"
1138
+
1139
+ #: includes/rbs_gallery_button.php:29
1140
+ msgid "Insert"
1141
+ msgstr "Insert"
1142
+
1143
+ #: includes/rbs_gallery_button.php:35
1144
+ msgid "Add Robo Gallery"
1145
+ msgstr "Add Robo Gallery"
1146
+
1147
+ #: includes/rbs_gallery_button.php:46
1148
+ msgid "Select gallery"
1149
+ msgstr "Select gallery"
1150
+
1151
+ #: includes/rbs_gallery_button.php:47 includes/rbs_gallery_widget.php:104
1152
+ #: includes/rbs_gallery_widget_last.php:83
1153
+ msgid "Configure it in"
1154
+ msgstr "Configure it in"
1155
+
1156
+ #: includes/rbs_gallery_button.php:47 includes/rbs_gallery_widget.php:106
1157
+ #: includes/rbs_gallery_widget_last.php:85
1158
+ msgid "Robo Gallery plugin"
1159
+ msgstr "Robo Gallery plugin"
1160
+
1161
+ #: includes/rbs_gallery_init.php:21
1162
+ msgid "Available in"
1163
+ msgstr "Available in"
1164
+
1165
+ #: includes/rbs_gallery_init.php:24
1166
+ msgid "Please update "
1167
+ msgstr "Please update "
1168
+
1169
+ #: includes/rbs_gallery_init.php:24
1170
+ msgid " key"
1171
+ msgstr " key"
1172
+
1173
+ #: includes/rbs_gallery_init.php:88
1174
+ msgid "Galleries List"
1175
+ msgstr "Galleries List"
1176
+
1177
+ #: includes/rbs_gallery_init.php:89 includes/rbs_gallery_init.php:90
1178
+ msgid "Add Gallery"
1179
+ msgstr "Add Gallery"
1180
+
1181
+ #: includes/rbs_gallery_init.php:91
1182
+ msgid "Edit Gallery"
1183
+ msgstr "Edit Gallery"
1184
+
1185
+ #: includes/rbs_gallery_list.php:33
1186
+ msgid ""
1187
+ "You can create only 3 galleries. Update to PRO to get unlimited galleries"
1188
+ msgstr ""
1189
+ "You can create only 3 galleries. Update to PRO to get unlimited galleries"
1190
+
1191
+ #: includes/rbs_gallery_list.php:67
1192
+ msgid "Views"
1193
+ msgstr "Views"
1194
+
1195
+ #: includes/rbs_gallery_list.php:68
1196
+ msgid "Shortcode"
1197
+ msgstr "Shortcode"
1198
+
1199
+ #: includes/rbs_gallery_media.php:73
1200
+ msgid "Column"
1201
+ msgstr "Column"
1202
+
1203
+ #: includes/rbs_gallery_media.php:80
1204
+ msgid "Link"
1205
+ msgstr "Link"
1206
+
1207
+ #: includes/rbs_gallery_media.php:93
1208
+ msgid "Blank Link"
1209
+ msgstr "Blank Link"
1210
+
1211
+ #: includes/rbs_gallery_media.php:101
1212
+ msgid "Video"
1213
+ msgstr "Video"
1214
+
1215
+ #: includes/rbs_gallery_media.php:125
1216
+ msgid "inherit"
1217
+ msgstr "inherit"
1218
+
1219
+ #: includes/rbs_gallery_settings.php:20
1220
+ msgid "Compatibility Settings"
1221
+ msgstr "Compatibility Settings"
1222
+
1223
+ #: includes/rbs_gallery_settings.php:30
1224
+ msgid "Categories Manager"
1225
+ msgstr "Categories Manager"
1226
+
1227
+ #: includes/rbs_gallery_settings.php:33 includes/rbs_gallery_settings.php:34
1228
+ #: includes/rbs_gallery_settings.php:35 includes/rbs_gallery_settings.php:136
1229
+ #: includes/rbs_gallery_settings.php:137 includes/rbs_gallery_settings.php:151
1230
+ #: includes/rbs_gallery_settings.php:152
1231
+ msgid "Show"
1232
+ msgstr "Show"
1233
+
1234
+ #: includes/rbs_gallery_settings.php:37 includes/rbs_gallery_settings.php:38
1235
+ #: includes/rbs_gallery_settings.php:139 includes/rbs_gallery_settings.php:140
1236
+ #: includes/rbs_gallery_settings.php:154 includes/rbs_gallery_settings.php:155
1237
+ msgid "Hide"
1238
+ msgstr "Hide"
1239
+
1240
+ #: includes/rbs_gallery_settings.php:44 includes/rbs_gallery_settings.php:47
1241
+ msgid "jQuery Version"
1242
+ msgstr "jQuery Version"
1243
+
1244
+ #: includes/rbs_gallery_settings.php:48 includes/rbs_gallery_settings.php:49
1245
+ msgid "Default"
1246
+ msgstr "Default"
1247
+
1248
+ #: includes/rbs_gallery_settings.php:51 includes/rbs_gallery_settings.php:52
1249
+ msgid "Alternative"
1250
+ msgstr "Alternative"
1251
+
1252
+ #: includes/rbs_gallery_settings.php:56 includes/rbs_gallery_settings.php:57
1253
+ msgid "Forced include"
1254
+ msgstr "Forced include"
1255
+
1256
+ #: includes/rbs_gallery_settings.php:64 includes/rbs_gallery_settings.php:67
1257
+ msgid "Font Awesome"
1258
+ msgstr "Font Awesome"
1259
+
1260
+ #: includes/rbs_gallery_settings.php:68 includes/rbs_gallery_settings.php:69
1261
+ msgid "Load"
1262
+ msgstr "Load"
1263
+
1264
+ #: includes/rbs_gallery_settings.php:71 includes/rbs_gallery_settings.php:72
1265
+ msgid "Don't load"
1266
+ msgstr "Don't load"
1267
+
1268
+ #: includes/rbs_gallery_settings.php:74
1269
+ msgid "for the case if Your theme already have awesome fonts loaded"
1270
+ msgstr "for the case if Your theme already have awesome fonts loaded"
1271
+
1272
+ #: includes/rbs_gallery_settings.php:79 includes/rbs_gallery_settings.php:82
1273
+ msgid "Switch Style"
1274
+ msgstr "Switch Style"
1275
+
1276
+ #: includes/rbs_gallery_settings.php:83 includes/rbs_gallery_settings.php:84
1277
+ msgid "Modern"
1278
+ msgstr "Modern"
1279
+
1280
+ #: includes/rbs_gallery_settings.php:86 includes/rbs_gallery_settings.php:87
1281
+ msgid "Classic"
1282
+ msgstr "Classic"
1283
+
1284
+ #: includes/rbs_gallery_settings.php:93
1285
+ msgid "Size Calculations Delay"
1286
+ msgstr "Size Calculations Delay"
1287
+
1288
+ #: includes/rbs_gallery_settings.php:99
1289
+ msgid "Debug"
1290
+ msgstr "Debug"
1291
+
1292
+ #: includes/rbs_gallery_settings.php:102 includes/rbs_gallery_settings.php:103
1293
+ #: includes/rbs_gallery_settings.php:104 includes/rbs_gallery_settings.php:117
1294
+ #: includes/rbs_gallery_settings.php:118 includes/rbs_gallery_settings.php:119
1295
+ msgid "Enable"
1296
+ msgstr "Enable"
1297
+
1298
+ #: includes/rbs_gallery_settings.php:106 includes/rbs_gallery_settings.php:107
1299
+ #: includes/rbs_gallery_settings.php:121 includes/rbs_gallery_settings.php:122
1300
+ #: includes/rbs_gallery_settings.php:178 includes/rbs_gallery_settings.php:179
1301
+ msgid "Disable"
1302
+ msgstr "Disable"
1303
+
1304
+ #: includes/rbs_gallery_settings.php:114
1305
+ msgid "Express panel"
1306
+ msgstr "Express panel"
1307
+
1308
+ #: includes/rbs_gallery_settings.php:129
1309
+ msgid "Create Post Settings"
1310
+ msgstr "Create Post Settings"
1311
+
1312
+ #: includes/rbs_gallery_settings.php:132
1313
+ msgid "Text Block"
1314
+ msgstr "Text Block"
1315
+
1316
+ #: includes/rbs_gallery_settings.php:135
1317
+ msgid "Show Text"
1318
+ msgstr "Show Text"
1319
+
1320
+ #: includes/rbs_gallery_settings.php:147
1321
+ msgid "Clone Block"
1322
+ msgstr "Clone Block"
1323
+
1324
+ #: includes/rbs_gallery_settings.php:150
1325
+ msgid "Show Clone Block"
1326
+ msgstr "Show Clone Block"
1327
+
1328
+ #: includes/rbs_gallery_settings.php:162
1329
+ msgid "SEO Optimization"
1330
+ msgstr "SEO Optimization"
1331
+
1332
+ #: includes/rbs_gallery_settings.php:165
1333
+ msgid "Add SEO content"
1334
+ msgstr "Add SEO content"
1335
+
1336
+ #: includes/rbs_gallery_settings.php:168 includes/rbs_gallery_settings.php:169
1337
+ #: includes/rbs_gallery_settings.php:170
1338
+ msgid "Enable [thumbs]"
1339
+ msgstr "Enable [thumbs]"
1340
+
1341
+ #: includes/rbs_gallery_settings.php:173 includes/rbs_gallery_settings.php:174
1342
+ #: includes/rbs_gallery_settings.php:175
1343
+ msgid "Enable [thumbs + link]"
1344
+ msgstr "Enable [thumbs + link]"
1345
+
1346
+ #: includes/rbs_gallery_settings.php:188
1347
+ msgid "Save Changes"
1348
+ msgstr "Save Changes"
1349
+
1350
+ #: includes/rbs_gallery_topblock.php:41
1351
+ msgid "Do You wish to get PRO version for FREE ?"
1352
+ msgstr "Do You wish to get PRO version for FREE ?"
1353
+
1354
+ #: includes/rbs_gallery_topblock.php:46
1355
+ msgid "Do You wish to get PRO version for translate?"
1356
+ msgstr "Do You wish to get PRO version for translate?"
1357
+
1358
+ #: includes/rbs_gallery_widget.php:22 includes/rbs_gallery_widget_last.php:22
1359
+ msgid "Robo Gallery Widget"
1360
+ msgstr "Robo Gallery Widget"
1361
+
1362
+ #: includes/rbs_gallery_widget.php:23 includes/rbs_gallery_widget_last.php:23
1363
+ msgid "Publish gallery on your website."
1364
+ msgstr "Publish gallery on your website."
1365
+
1366
+ #: includes/rbs_gallery_widget.php:56 includes/rbs_gallery_widget.php:91
1367
+ #: includes/rbs_gallery_widget_last.php:38
1368
+ #: includes/rbs_gallery_widget_last.php:71
1369
+ msgid "This widget available in Pro version"
1370
+ msgstr "This widget available in Pro version"
1371
+
1372
+ #: includes/rbs_gallery_widget.php:66 includes/rbs_gallery_widget_last.php:47
1373
+ msgid "New gallery"
1374
+ msgstr "New gallery"
1375
+
1376
+ #: includes/rbs_gallery_widget.php:100 includes/rbs_gallery_widget_last.php:80
1377
+ msgid "Gallery:"
1378
+ msgstr "Gallery:"
1379
+
1380
+ #. Plugin URI of the plugin/theme
1381
+ #. Author URI of the plugin/theme
1382
+ msgid "https://robosoft.co/gallery"
1383
+ msgstr "https://robosoft.co/gallery"
1384
+
1385
+ #. Description of the plugin/theme
1386
+ msgid ""
1387
+ "Gallery modes photo gallery, images gallery, video gallery, Polaroid "
1388
+ "gallery, gallery lighbox, portfolio gallery, responsive gallery"
1389
+ msgstr ""
1390
+ "Gallery modes photo gallery, images gallery, video gallery, Polaroid "
1391
+ "gallery, gallery lighbox, portfolio gallery, responsive gallery"
1392
+
1393
+ #. Author of the plugin/theme
1394
+ msgid "RoboSoft"
1395
+ msgstr "RoboSoft"
languages/robo-gallery.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Robo Gallery\n"
6
- "POT-Creation-Date: 2017-06-16 08:10+0200\n"
7
  "PO-Revision-Date: 2017-05-15 11:19+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -25,6 +25,7 @@ msgstr ""
25
  "X-Poedit-SearchPathExcluded-3: node_modules\n"
26
 
27
  #: cmb2/fields/border/cmb-field-border.php:50
 
28
  msgid "Width"
29
  msgstr ""
30
 
@@ -40,6 +41,7 @@ msgstr ""
40
 
41
  #: cmb2/fields/padding/rbs-padding.php:46
42
  #: includes/options/rbs_gallery_options_button.php:207
 
43
  msgid "Left"
44
  msgstr ""
45
 
@@ -49,6 +51,7 @@ msgstr ""
49
 
50
  #: cmb2/fields/padding/rbs-padding.php:78
51
  #: includes/options/rbs_gallery_options_button.php:209
 
52
  msgid "Right"
53
  msgstr ""
54
 
@@ -448,27 +451,30 @@ msgid "Border"
448
  msgstr ""
449
 
450
  #: includes/options/rbs_gallery_options_button.php:162
451
- msgid "gray"
452
  msgstr ""
453
 
454
  #: includes/options/rbs_gallery_options_button.php:163
455
- msgid "blue"
 
456
  msgstr ""
457
 
458
  #: includes/options/rbs_gallery_options_button.php:164
459
- msgid "green"
 
460
  msgstr ""
461
 
462
  #: includes/options/rbs_gallery_options_button.php:165
463
- msgid "orange"
464
  msgstr ""
465
 
466
  #: includes/options/rbs_gallery_options_button.php:166
467
- msgid "red"
 
468
  msgstr ""
469
 
470
  #: includes/options/rbs_gallery_options_button.php:167
471
- msgid "purple"
472
  msgstr ""
473
 
474
  #: includes/options/rbs_gallery_options_button.php:172
@@ -514,6 +520,7 @@ msgid "Align"
514
  msgstr ""
515
 
516
  #: includes/options/rbs_gallery_options_button.php:208
 
517
  msgid "Center"
518
  msgstr ""
519
 
@@ -819,18 +826,6 @@ msgstr ""
819
  msgid "Dark"
820
  msgstr ""
821
 
822
- #: includes/options/rbs_gallery_options_lightbox.php:188
823
- msgid "Red"
824
- msgstr ""
825
-
826
- #: includes/options/rbs_gallery_options_lightbox.php:189
827
- msgid "Blue"
828
- msgstr ""
829
-
830
- #: includes/options/rbs_gallery_options_lightbox.php:190
831
- msgid "Green"
832
- msgstr ""
833
-
834
  #: includes/options/rbs_gallery_options_lightbox.php:191
835
  msgid "Pink"
836
  msgstr ""
@@ -916,18 +911,6 @@ msgstr ""
916
  msgid "Desc"
917
  msgstr ""
918
 
919
- #: includes/options/rbs_gallery_options_polaroid.php:70
920
- msgid "left"
921
- msgstr ""
922
-
923
- #: includes/options/rbs_gallery_options_polaroid.php:71
924
- msgid "right"
925
- msgstr ""
926
-
927
- #: includes/options/rbs_gallery_options_polaroid.php:72
928
- msgid "center"
929
- msgstr ""
930
-
931
  #: includes/options/rbs_gallery_options_shortcode.php:19
932
  msgid "Gallery Shortcode"
933
  msgstr ""
@@ -940,10 +923,6 @@ msgstr ""
940
  msgid "Gallery Size Options"
941
  msgstr ""
942
 
943
- #: includes/options/rbs_gallery_options_size.php:28
944
- msgid "Width "
945
- msgstr ""
946
-
947
  #: includes/options/rbs_gallery_options_size.php:51
948
  msgid "Padding"
949
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Robo Gallery\n"
6
+ "POT-Creation-Date: 2017-06-16 10:41+0200\n"
7
  "PO-Revision-Date: 2017-05-15 11:19+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
25
  "X-Poedit-SearchPathExcluded-3: node_modules\n"
26
 
27
  #: cmb2/fields/border/cmb-field-border.php:50
28
+ #: includes/options/rbs_gallery_options_size.php:28
29
  msgid "Width"
30
  msgstr ""
31
 
41
 
42
  #: cmb2/fields/padding/rbs-padding.php:46
43
  #: includes/options/rbs_gallery_options_button.php:207
44
+ #: includes/options/rbs_gallery_options_polaroid.php:70
45
  msgid "Left"
46
  msgstr ""
47
 
51
 
52
  #: cmb2/fields/padding/rbs-padding.php:78
53
  #: includes/options/rbs_gallery_options_button.php:209
54
+ #: includes/options/rbs_gallery_options_polaroid.php:71
55
  msgid "Right"
56
  msgstr ""
57
 
451
  msgstr ""
452
 
453
  #: includes/options/rbs_gallery_options_button.php:162
454
+ msgid "Gray"
455
  msgstr ""
456
 
457
  #: includes/options/rbs_gallery_options_button.php:163
458
+ #: includes/options/rbs_gallery_options_lightbox.php:189
459
+ msgid "Blue"
460
  msgstr ""
461
 
462
  #: includes/options/rbs_gallery_options_button.php:164
463
+ #: includes/options/rbs_gallery_options_lightbox.php:190
464
+ msgid "Green"
465
  msgstr ""
466
 
467
  #: includes/options/rbs_gallery_options_button.php:165
468
+ msgid "Orange"
469
  msgstr ""
470
 
471
  #: includes/options/rbs_gallery_options_button.php:166
472
+ #: includes/options/rbs_gallery_options_lightbox.php:188
473
+ msgid "Red"
474
  msgstr ""
475
 
476
  #: includes/options/rbs_gallery_options_button.php:167
477
+ msgid "Purple"
478
  msgstr ""
479
 
480
  #: includes/options/rbs_gallery_options_button.php:172
520
  msgstr ""
521
 
522
  #: includes/options/rbs_gallery_options_button.php:208
523
+ #: includes/options/rbs_gallery_options_polaroid.php:72
524
  msgid "Center"
525
  msgstr ""
526
 
826
  msgid "Dark"
827
  msgstr ""
828
 
 
 
 
 
 
 
 
 
 
 
 
 
829
  #: includes/options/rbs_gallery_options_lightbox.php:191
830
  msgid "Pink"
831
  msgstr ""
911
  msgid "Desc"
912
  msgstr ""
913
 
 
 
 
 
 
 
 
 
 
 
 
 
914
  #: includes/options/rbs_gallery_options_shortcode.php:19
915
  msgid "Gallery Shortcode"
916
  msgstr ""
923
  msgid "Gallery Size Options"
924
  msgstr ""
925
 
 
 
 
 
926
  #: includes/options/rbs_gallery_options_size.php:51
927
  msgid "Padding"
928
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://robosoft.co/robogallery
4
  Tags: gallery, photo gallery, images gallery, gallery images, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, portfolio gallery, video gallery, Gallery Plugin, Robo Gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.8
7
- Stable tag: 2.6.16
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -254,6 +254,11 @@ If any problem occurs, please contact us.
254
 
255
  == Changelog ==
256
 
 
 
 
 
 
257
  = 2.6.16 =
258
  * Extend languages support
259
  * Update of the statistics features
@@ -393,6 +398,11 @@ If any problem occurs, please contact us.
393
 
394
  == Upgrade Notice ==
395
 
 
 
 
 
 
396
  = 2.6.16 =
397
  Extend languages support
398
  Update of the statistics features
4
  Tags: gallery, photo gallery, images gallery, gallery images, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, portfolio gallery, video gallery, Gallery Plugin, Robo Gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.8
7
+ Stable tag: 2.6.17
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
254
 
255
  == Changelog ==
256
 
257
+ = 2.6.17 =
258
+ * Update admin settings
259
+ * Added new search options
260
+ * Search background color
261
+
262
  = 2.6.16 =
263
  * Extend languages support
264
  * Update of the statistics features
398
 
399
  == Upgrade Notice ==
400
 
401
+ = 2.6.17 =
402
+ Update admin settings
403
+ Added new search options
404
+ Search background color
405
+
406
  = 2.6.16 =
407
  Extend languages support
408
  Update of the statistics features
robogallery.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Robo Gallery
4
  Plugin URI: https://robosoft.co/gallery
5
  Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
6
- Version: 2.6.16
7
  Author: RoboSoft
8
  Author URI: https://robosoft.co/gallery
9
  License: GPLv3 or later
@@ -15,12 +15,12 @@ if(!defined('WPINC'))die;
15
  if(!defined("ABSPATH"))exit;
16
 
17
  define("ROBO_GALLERY", 1);
18
- define("ROBO_GALLERY_VERSION", '2.6.16');
19
 
20
  if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21
 
22
  define("ROBO_GALLERY_SPECIAL", 1);
23
- define("ROBO_GALLERY_EVENT_DATE", '2017-07-03');
24
  define("ROBO_GALLERY_EVENT_HOUR", 48);
25
 
26
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
3
  Plugin Name: Robo Gallery
4
  Plugin URI: https://robosoft.co/gallery
5
  Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
6
+ Version: 2.6.17
7
  Author: RoboSoft
8
  Author URI: https://robosoft.co/gallery
9
  License: GPLv3 or later
15
  if(!defined("ABSPATH"))exit;
16
 
17
  define("ROBO_GALLERY", 1);
18
+ define("ROBO_GALLERY_VERSION", '2.6.17');
19
 
20
  if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21
 
22
  define("ROBO_GALLERY_SPECIAL", 1);
23
+ define("ROBO_GALLERY_EVENT_DATE", '2017-07-18');
24
  define("ROBO_GALLERY_EVENT_HOUR", 48);
25
 
26
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );