Version Description
- Updated backup section functionality
- Added new full backup section
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 1.7.13 |
Comparing to | |
See all releases |
Code changes from version 1.7.12 to 1.7.13
- includes/extensions/backup/backup.form.php +45 -13
- includes/extensions/backup/backup.init.php +6 -0
- includes/rbs_gallery_button.php +3 -0
- includes/rbs_gallery_widget.php +3 -1
- js/script.js +1 -2
- languages/rbs_gallery-en_US.mo +0 -0
- languages/rbs_gallery-en_US.po +478 -130
- readme.txt +70 -63
- robogallery.php +2 -2
includes/extensions/backup/backup.form.php
CHANGED
@@ -84,18 +84,18 @@ if(!function_exists('rbs_backup_error_message')){
|
|
84 |
echo rbs_backup_error_message('Error: check secure');
|
85 |
}
|
86 |
}
|
87 |
-
|
88 |
-
function rbs_backup_tabs( $current = 'export' ) {
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
|
|
97 |
}
|
98 |
-
|
99 |
$tab = 'export';
|
100 |
if ( isset( $_GET['tab'] ) ) $tab = $_GET['tab'];
|
101 |
if ( isset( $_POST['tab'] ) ) $tab = $_POST['tab'];
|
@@ -104,19 +104,49 @@ rbs_backup_tabs( $tab);
|
|
104 |
$today = date("Y_j_n");
|
105 |
|
106 |
switch ($tab) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
default:
|
108 |
case 'export':
|
109 |
?>
|
|
|
|
|
110 |
<table class="form-table">
|
|
|
111 |
<tbody>
|
112 |
<form method="post" enctype="multipart/form-data" class="rbs_download_backup_export" action="<?php echo admin_url().'edit.php?post_type=robo_gallery_table&page=robo-gallery-backup&tab='.$tab; ?>">
|
113 |
<tr>
|
114 |
<th scope="row"><label for="rbsGalleryBackupFilename"><?php _e('File Name', 'rbs_gallery'); ?></label></th>
|
115 |
<td>
|
116 |
-
<input type="text" class="regular-text" id="rbsGalleryBackupFilename" name="rbsGalleryBackupFilename" value="<?php echo 'export_'.$today
|
117 |
-
<p class="description" id="rbsBackupFile-description"><?php _e('After EXPORT copy images from server folder: {Wordpress folder}/wp-content/uploads to the new location by FTP'); ?></p>
|
118 |
</td>
|
119 |
</tr>
|
|
|
120 |
<tr>
|
121 |
<td colspan="2">
|
122 |
<input type="submit" class="button button-primary " value="<?php _e('Download Backup'); ?>" name="rbsDownloadBackup">
|
@@ -147,6 +177,8 @@ switch ($tab) {
|
|
147 |
</td>
|
148 |
</tr>
|
149 |
|
|
|
|
|
150 |
<tr>
|
151 |
<th scope="row"><label for="rbsBackupFile"><?php _e('Select backup file', 'rbs_gallery'); ?></label></th>
|
152 |
<td>
|
84 |
echo rbs_backup_error_message('Error: check secure');
|
85 |
}
|
86 |
}
|
87 |
+
if(!function_exists('rbs_backup_tabs')){
|
88 |
+
function rbs_backup_tabs( $current = 'export' ) {
|
89 |
+
$tabs = array( 'exportfull' => 'Full Export Gallery', 'export' => 'Export Gallery', 'import' => 'Import Gallery' );
|
90 |
+
//echo '<div id="icon-themes" class="icon32"><br></div>';
|
91 |
+
echo '<h2 class="nav-tab-wrapper">';
|
92 |
+
foreach( $tabs as $tab => $name ){
|
93 |
+
$class = ( $tab == $current ) ? ' nav-tab-active' : '';
|
94 |
+
echo "<a class='nav-tab$class' href='edit.php?post_type=robo_gallery_table&page=robo-gallery-backup&tab=$tab'>$name</a>";
|
95 |
+
}
|
96 |
+
echo '</h2>';
|
97 |
+
}
|
98 |
}
|
|
|
99 |
$tab = 'export';
|
100 |
if ( isset( $_GET['tab'] ) ) $tab = $_GET['tab'];
|
101 |
if ( isset( $_POST['tab'] ) ) $tab = $_POST['tab'];
|
104 |
$today = date("Y_j_n");
|
105 |
|
106 |
switch ($tab) {
|
107 |
+
case 'exportfull':
|
108 |
+
?>
|
109 |
+
<br>
|
110 |
+
<p class="description" id="rbsFullBackupFile-description"><?php _e('You can use Full Backup options to make backup of configured galleries settings and images. As result you\'ll get archive with XML file of galleries settings and all images of your galleries'); ?></p>
|
111 |
+
<table class="form-table">
|
112 |
+
<tbody>
|
113 |
+
<form method="post" enctype="multipart/form-data" class="rbs_download_full_backup_export" action="<?php echo admin_url().'edit.php?post_type=robo_gallery_table&page=robo-gallery-backup&tab='.$tab; ?>">
|
114 |
+
<tr>
|
115 |
+
<th scope="row"><label for="rbsGalleryFullBackupFilename"><?php _e('File Name', 'rbs_gallery'); ?></label></th>
|
116 |
+
<td>
|
117 |
+
<input type="text" class="regular-text" id="rbsGalleryFullBackupFilename" name="rbsGalleryBackupFullFilename" value="<?php echo 'export_'.$today;?>" >
|
118 |
+
|
119 |
+
</td>
|
120 |
+
</tr>
|
121 |
+
|
122 |
+
<tr>
|
123 |
+
<td colspan="2">
|
124 |
+
<input type="submit" disabled="disabled" class="button button-primary " value="<?php _e('Coming Soon'); ?>" name="rbsDownloadFullBackup">
|
125 |
+
<input type="hidden" name="rbsGalleryFullExport" value="1">
|
126 |
+
<?php wp_nonce_field( 'rbs-gallery-backup-export', 'rbs-gallery-full-backup' ); ?>
|
127 |
+
</td>
|
128 |
+
</tr>
|
129 |
+
</form>
|
130 |
+
</tbody>
|
131 |
+
</table>
|
132 |
+
<?php
|
133 |
+
break;
|
134 |
default:
|
135 |
case 'export':
|
136 |
?>
|
137 |
+
<br />
|
138 |
+
<p class="description" id="rbsBackupFile-description"><?php _e('After EXPORT copy images from server folder: {Wordpress folder}/wp-content/uploads to the new location by FTP'); ?></p>
|
139 |
<table class="form-table">
|
140 |
+
|
141 |
<tbody>
|
142 |
<form method="post" enctype="multipart/form-data" class="rbs_download_backup_export" action="<?php echo admin_url().'edit.php?post_type=robo_gallery_table&page=robo-gallery-backup&tab='.$tab; ?>">
|
143 |
<tr>
|
144 |
<th scope="row"><label for="rbsGalleryBackupFilename"><?php _e('File Name', 'rbs_gallery'); ?></label></th>
|
145 |
<td>
|
146 |
+
<input type="text" class="regular-text" id="rbsGalleryBackupFilename" name="rbsGalleryBackupFilename" value="<?php echo 'export_'.$today;?>" >
|
|
|
147 |
</td>
|
148 |
</tr>
|
149 |
+
|
150 |
<tr>
|
151 |
<td colspan="2">
|
152 |
<input type="submit" class="button button-primary " value="<?php _e('Download Backup'); ?>" name="rbsDownloadBackup">
|
177 |
</td>
|
178 |
</tr>
|
179 |
|
180 |
+
|
181 |
+
|
182 |
<tr>
|
183 |
<th scope="row"><label for="rbsBackupFile"><?php _e('Select backup file', 'rbs_gallery'); ?></label></th>
|
184 |
<td>
|
includes/extensions/backup/backup.init.php
CHANGED
@@ -37,6 +37,12 @@ if(!function_exists('rbs_gallery_export')){
|
|
37 |
if( isset($_POST['rbsGalleryBackupFilename']) && $_POST['rbsGalleryBackupFilename'] )
|
38 |
$exportFileName = sanitize_file_name($_POST['rbsGalleryBackupFilename']);
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
$isExport = $export->exportPostsXml(array('post_type' => ROBO_GALLERY_TYPE_POST), $exportFileName );
|
41 |
if(!$isExport) {
|
42 |
// show pretty error
|
37 |
if( isset($_POST['rbsGalleryBackupFilename']) && $_POST['rbsGalleryBackupFilename'] )
|
38 |
$exportFileName = sanitize_file_name($_POST['rbsGalleryBackupFilename']);
|
39 |
|
40 |
+
$info = pathinfo($exportFileName);
|
41 |
+
if (!$info["extension"]){
|
42 |
+
$exportFileName.='.xml';
|
43 |
+
}
|
44 |
+
|
45 |
+
|
46 |
$isExport = $export->exportPostsXml(array('post_type' => ROBO_GALLERY_TYPE_POST), $exportFileName );
|
47 |
if(!$isExport) {
|
48 |
// show pretty error
|
includes/rbs_gallery_button.php
CHANGED
@@ -13,6 +13,9 @@
|
|
13 |
*/
|
14 |
|
15 |
function add_robo_gallery_button(){
|
|
|
|
|
|
|
16 |
wp_enqueue_style("wp-jquery-ui-dialog");
|
17 |
wp_enqueue_script('jquery-ui-dialog');
|
18 |
|
13 |
*/
|
14 |
|
15 |
function add_robo_gallery_button(){
|
16 |
+
global $pagenow;
|
17 |
+
if( isset( $pagenow) && $pagenow=='admin-ajax.php' ) return ;
|
18 |
+
|
19 |
wp_enqueue_style("wp-jquery-ui-dialog");
|
20 |
wp_enqueue_script('jquery-ui-dialog');
|
21 |
|
includes/rbs_gallery_widget.php
CHANGED
@@ -95,7 +95,9 @@ class rbs_widget extends WP_Widget {
|
|
95 |
|
96 |
|
97 |
function rbs_load_widget() {
|
98 |
-
|
|
|
|
|
99 |
}
|
100 |
|
101 |
add_action( 'widgets_init', 'rbs_load_widget' );
|
95 |
|
96 |
|
97 |
function rbs_load_widget() {
|
98 |
+
//global $pagenow;
|
99 |
+
//if( isset( $pagenow) && $pagenow=='admin-ajax.php' ) return ;
|
100 |
+
register_widget( 'rbs_widget' );
|
101 |
}
|
102 |
|
103 |
add_action( 'widgets_init', 'rbs_load_widget' );
|
js/script.js
CHANGED
@@ -14,13 +14,12 @@
|
|
14 |
(function($) {
|
15 |
jQuery('.robo_gallery').each( function(){
|
16 |
var objectOptions = window[ jQuery(this).data('options') ];
|
17 |
-
//console.log(objectOptions);
|
18 |
var realOptions = jQuery.extend({},objectOptions);
|
19 |
var gallery = jQuery(this).collagePlus( realOptions );
|
20 |
if( roboGalleryDelay != undefined && roboGalleryDelay > 0 ){
|
21 |
setTimeout(function () {
|
22 |
gallery.eveMB('resize');
|
23 |
-
console.log("roboGallery - resize");
|
24 |
}, roboGalleryDelay);
|
25 |
}
|
26 |
});
|
14 |
(function($) {
|
15 |
jQuery('.robo_gallery').each( function(){
|
16 |
var objectOptions = window[ jQuery(this).data('options') ];
|
|
|
17 |
var realOptions = jQuery.extend({},objectOptions);
|
18 |
var gallery = jQuery(this).collagePlus( realOptions );
|
19 |
if( roboGalleryDelay != undefined && roboGalleryDelay > 0 ){
|
20 |
setTimeout(function () {
|
21 |
gallery.eveMB('resize');
|
22 |
+
//console.log("roboGallery - resize");
|
23 |
}, roboGalleryDelay);
|
24 |
}
|
25 |
});
|
languages/rbs_gallery-en_US.mo
CHANGED
Binary file
|
languages/rbs_gallery-en_US.po
CHANGED
@@ -1,135 +1,377 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Robo Gallery\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: RoboSoft Team <team@robosoft.co>\n"
|
8 |
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-Basepath: ../includes\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
#: options/rbs_gallery_options_button.php:18
|
20 |
msgid "Menu Options"
|
21 |
msgstr "Menu Options"
|
22 |
|
23 |
#: options/rbs_gallery_options_button.php:26
|
24 |
-
msgid "
|
25 |
-
msgstr "
|
26 |
-
|
27 |
-
#: options/rbs_gallery_options_button.php:36
|
28 |
-
msgid "Show Root"
|
29 |
-
msgstr "Show Root"
|
30 |
|
31 |
-
#: options/rbs_gallery_options_button.php:
|
32 |
msgid "Root Label"
|
33 |
msgstr "Root Label"
|
34 |
|
35 |
-
#: options/rbs_gallery_options_button.php:
|
36 |
-
msgid "
|
37 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
-
#: options/rbs_gallery_options_button.php:
|
40 |
msgid "Style"
|
41 |
msgstr "Style"
|
42 |
|
43 |
-
#: options/rbs_gallery_options_button.php:
|
44 |
-
|
|
|
|
|
45 |
msgstr "Normal"
|
46 |
|
47 |
-
#: options/rbs_gallery_options_button.php:
|
48 |
msgid "flat"
|
49 |
msgstr "flat"
|
50 |
|
51 |
-
#: options/rbs_gallery_options_button.php:
|
52 |
msgid "3d"
|
53 |
msgstr "3d"
|
54 |
|
55 |
-
#: options/rbs_gallery_options_button.php:
|
56 |
-
|
57 |
-
|
|
|
58 |
|
59 |
-
#: options/rbs_gallery_options_button.php:
|
60 |
msgid "Color"
|
61 |
msgstr "Color"
|
62 |
|
63 |
-
#: options/rbs_gallery_options_button.php:
|
64 |
msgid "gray"
|
65 |
msgstr "gray"
|
66 |
|
67 |
-
#: options/rbs_gallery_options_button.php:
|
68 |
msgid "blue"
|
69 |
msgstr "blue"
|
70 |
|
71 |
-
#: options/rbs_gallery_options_button.php:
|
72 |
msgid "green"
|
73 |
msgstr "green"
|
74 |
|
75 |
-
#: options/rbs_gallery_options_button.php:
|
76 |
msgid "orange"
|
77 |
msgstr "orange"
|
78 |
|
79 |
-
#: options/rbs_gallery_options_button.php:
|
80 |
msgid "red"
|
81 |
msgstr "red"
|
82 |
|
83 |
-
#: options/rbs_gallery_options_button.php:
|
84 |
msgid "purple"
|
85 |
msgstr "purple"
|
86 |
|
87 |
-
#: options/rbs_gallery_options_button.php:
|
88 |
msgid "Rounds"
|
89 |
msgstr "Rounds"
|
90 |
|
91 |
-
#: options/rbs_gallery_options_button.php:
|
92 |
-
#: options/rbs_gallery_options_button.php:115
|
93 |
-
msgid "Normal"
|
94 |
-
msgstr "Normal"
|
95 |
-
|
96 |
-
#: options/rbs_gallery_options_button.php:100
|
97 |
msgid "Rounded"
|
98 |
msgstr "Rounded"
|
99 |
|
100 |
-
#: options/rbs_gallery_options_button.php:
|
101 |
msgid "Pill"
|
102 |
msgstr "Pill"
|
103 |
|
104 |
-
#: options/rbs_gallery_options_button.php:
|
105 |
msgid "Circle "
|
106 |
msgstr "Circle "
|
107 |
|
108 |
-
#: options/rbs_gallery_options_button.php:
|
109 |
msgid "Size"
|
110 |
msgstr "Size"
|
111 |
|
112 |
-
#: options/rbs_gallery_options_button.php:
|
113 |
msgid "Jumbo"
|
114 |
msgstr "Jumbo"
|
115 |
|
116 |
-
#: options/rbs_gallery_options_button.php:
|
117 |
msgid "Large"
|
118 |
msgstr "Large"
|
119 |
|
120 |
-
#: options/rbs_gallery_options_button.php:
|
121 |
msgid "Small"
|
122 |
msgstr "Small"
|
123 |
|
124 |
-
#: options/rbs_gallery_options_button.php:
|
125 |
msgid "Tiny "
|
126 |
msgstr "Tiny "
|
127 |
|
128 |
-
#: options/rbs_gallery_options_button.php:
|
129 |
msgid "Left Padding"
|
130 |
msgstr "Left Padding"
|
131 |
|
132 |
-
#: options/rbs_gallery_options_button.php:
|
133 |
msgid "Bottom Padding"
|
134 |
msgstr "Bottom Padding"
|
135 |
|
@@ -165,132 +407,140 @@ msgstr ""
|
|
165 |
"your website in another galleries. Very fast, comfortable, advanced tool to "
|
166 |
"speed up your workflow!"
|
167 |
|
|
|
|
|
|
|
|
|
168 |
#: options/rbs_gallery_options_hover.php:18
|
169 |
msgid "Hover Options"
|
170 |
msgstr "Hover Options"
|
171 |
|
172 |
#: options/rbs_gallery_options_hover.php:26
|
173 |
-
msgid "
|
174 |
-
msgstr "
|
|
|
|
|
|
|
|
|
175 |
|
176 |
-
#: options/rbs_gallery_options_hover.php:33
|
|
|
177 |
msgid "Off"
|
178 |
msgstr "Off"
|
179 |
|
180 |
-
#: options/rbs_gallery_options_hover.php:
|
|
|
|
|
|
|
|
|
181 |
msgid "Options"
|
182 |
msgstr "Options"
|
183 |
|
184 |
-
#: options/rbs_gallery_options_hover.php:
|
185 |
msgid "Template"
|
186 |
msgstr "Template"
|
187 |
|
188 |
-
#: options/rbs_gallery_options_hover.php:
|
189 |
-
#: options/rbs_gallery_options_lightbox.php:
|
190 |
#: options/rbs_gallery_options_loading.php:79
|
191 |
#: options/rbs_gallery_options_polaroid.php:53
|
192 |
msgid "Bg Color"
|
193 |
msgstr "Bg Color"
|
194 |
|
195 |
-
#: options/rbs_gallery_options_hover.php:
|
196 |
msgid "Effect"
|
197 |
msgstr "Effect"
|
198 |
|
199 |
-
#: options/rbs_gallery_options_hover.php:
|
200 |
msgid "push-up"
|
201 |
msgstr "push-up"
|
202 |
|
203 |
-
#: options/rbs_gallery_options_hover.php:
|
204 |
msgid "push-down"
|
205 |
msgstr "push-down"
|
206 |
|
207 |
-
#: options/rbs_gallery_options_hover.php:
|
208 |
msgid "push-up-100%"
|
209 |
msgstr "push-up-100%"
|
210 |
|
211 |
-
#: options/rbs_gallery_options_hover.php:
|
212 |
msgid "push-down-100%"
|
213 |
msgstr "push-down-100%"
|
214 |
|
215 |
-
#: options/rbs_gallery_options_hover.php:
|
216 |
msgid "reveal-top"
|
217 |
msgstr "reveal-top"
|
218 |
|
219 |
-
#: options/rbs_gallery_options_hover.php:
|
220 |
msgid "reveal-bottom"
|
221 |
msgstr "reveal-bottom"
|
222 |
|
223 |
-
#: options/rbs_gallery_options_hover.php:
|
224 |
msgid "reveal-top-100%"
|
225 |
msgstr "reveal-top-100%"
|
226 |
|
227 |
-
#: options/rbs_gallery_options_hover.php:
|
228 |
msgid "reveal-bottom-100%"
|
229 |
msgstr "reveal-bottom-100%"
|
230 |
|
231 |
-
#: options/rbs_gallery_options_hover.php:
|
232 |
msgid "direction-aware"
|
233 |
msgstr "direction-aware"
|
234 |
|
235 |
-
#: options/rbs_gallery_options_hover.php:
|
236 |
msgid "direction-aware-fade"
|
237 |
msgstr "direction-aware-fade"
|
238 |
|
239 |
-
#: options/rbs_gallery_options_hover.php:
|
240 |
msgid "direction-right"
|
241 |
msgstr "direction-right"
|
242 |
|
243 |
-
#: options/rbs_gallery_options_hover.php:
|
244 |
msgid "direction-left"
|
245 |
msgstr "direction-left"
|
246 |
|
247 |
-
#: options/rbs_gallery_options_hover.php:
|
248 |
msgid "direction-top"
|
249 |
msgstr "direction-top"
|
250 |
|
251 |
-
#: options/rbs_gallery_options_hover.php:
|
252 |
msgid "direction-bottom"
|
253 |
msgstr "direction-bottom"
|
254 |
|
255 |
-
#: options/rbs_gallery_options_hover.php:
|
256 |
msgid "fade"
|
257 |
msgstr "fade"
|
258 |
|
259 |
-
#: options/rbs_gallery_options_hover.php:
|
260 |
-
#: options/rbs_gallery_options_lightbox.php:37
|
261 |
msgid "Show Title"
|
262 |
msgstr "Show Title"
|
263 |
|
264 |
-
#: options/rbs_gallery_options_hover.php:
|
265 |
-
#: options/rbs_gallery_options_polaroid.php:46 rbs_gallery_widget.php:71
|
266 |
-
msgid "Title"
|
267 |
-
msgstr "Title"
|
268 |
-
|
269 |
-
#: options/rbs_gallery_options_hover.php:106
|
270 |
msgid "Link Button"
|
271 |
msgstr "Link Button"
|
272 |
|
273 |
-
#: options/rbs_gallery_options_hover.php:
|
274 |
msgid "Zoom Button"
|
275 |
msgstr "Zoom Button"
|
276 |
|
277 |
-
#: options/rbs_gallery_options_hover.php:
|
|
|
278 |
msgid "Description"
|
279 |
msgstr "Description"
|
280 |
|
281 |
-
#: options/rbs_gallery_options_hover.php:
|
282 |
msgid "Link Icon"
|
283 |
msgstr "Link Icon"
|
284 |
|
285 |
-
#: options/rbs_gallery_options_hover.php:
|
286 |
msgid "Zoom Icon"
|
287 |
msgstr "Zoom Icon"
|
288 |
|
289 |
-
#: options/rbs_gallery_options_hover.php:
|
290 |
msgid "Show Description"
|
291 |
msgstr "Show Description"
|
292 |
|
293 |
-
#: options/rbs_gallery_options_hover.php:
|
294 |
msgid "Description Template"
|
295 |
msgstr "Description Template"
|
296 |
|
@@ -316,8 +566,7 @@ msgstr ""
|
|
316 |
#: options/rbs_gallery_options_info.php:18
|
317 |
#: options/rbs_gallery_options_info.php:31
|
318 |
#: options/rbs_gallery_options_infowide.php:18 rbs_gallery_about.php:63
|
319 |
-
#: rbs_gallery_about.php:64 rbs_gallery_list.php:29
|
320 |
-
#: rbs_gallery_topblock.php:20
|
321 |
msgid "Get Pro version"
|
322 |
msgstr "Get Pro version"
|
323 |
|
@@ -334,14 +583,43 @@ msgstr ""
|
|
334 |
msgid "Lightbox Options"
|
335 |
msgstr "Lightbox Options"
|
336 |
|
337 |
-
#: options/rbs_gallery_options_lightbox.php:
|
338 |
-
msgid "
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#: options/rbs_gallery_options_lightbox.php:
|
|
|
|
|
|
|
|
|
|
|
342 |
msgid "Text Color"
|
343 |
msgstr "Text Color"
|
344 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
#: options/rbs_gallery_options_loading.php:18
|
346 |
#: options/rbs_gallery_options_loading.php:35
|
347 |
msgid "Loading Options"
|
@@ -399,11 +677,8 @@ msgstr "Source"
|
|
399 |
msgid "Desc"
|
400 |
msgstr "Desc"
|
401 |
|
402 |
-
#: options/rbs_gallery_options_polaroid.php:48
|
403 |
-
msgid "Caption"
|
404 |
-
msgstr "Caption"
|
405 |
-
|
406 |
#: options/rbs_gallery_options_polaroid.php:64
|
|
|
407 |
msgid "Align"
|
408 |
msgstr "Align"
|
409 |
|
@@ -423,7 +698,7 @@ msgstr "center"
|
|
423 |
msgid "Gallery Shortcode"
|
424 |
msgstr "Gallery Shortcode"
|
425 |
|
426 |
-
#: options/rbs_gallery_options_shortcode.php:
|
427 |
msgid "use this shortcode to insert this gallery into page, post or widget"
|
428 |
msgstr "use this shortcode to insert this gallery into page, post or widget"
|
429 |
|
@@ -432,22 +707,56 @@ msgid "Gallery Size Options"
|
|
432 |
msgstr "Gallery Size Options"
|
433 |
|
434 |
#: options/rbs_gallery_options_size.php:30
|
435 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
msgid "Thumbs Options"
|
437 |
msgstr "Thumbs Options"
|
438 |
|
439 |
-
#: options/rbs_gallery_options_size.php:
|
440 |
msgid "Size Options"
|
441 |
msgstr "Size Options"
|
442 |
|
443 |
-
#: options/rbs_gallery_options_size.php:
|
444 |
msgid "Custom Ratio"
|
445 |
msgstr "Custom Ratio"
|
446 |
|
447 |
-
#: options/rbs_gallery_options_size.php:
|
448 |
msgid "Colums "
|
449 |
msgstr "Colums "
|
450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
#: options/rbs_gallery_options_view.php:18
|
452 |
msgid "Thumbs View Options"
|
453 |
msgstr "Thumbs View Options"
|
@@ -482,16 +791,9 @@ msgstr "Hover Shadow Options"
|
|
482 |
msgid "Hover Shadow"
|
483 |
msgstr "Hover Shadow"
|
484 |
|
485 |
-
#: options/rbs_gallery_options_view.php:127
|
486 |
-
msgid "Border"
|
487 |
-
msgstr "Border"
|
488 |
-
|
489 |
#: options/rbs_gallery_options_view.php:137
|
490 |
-
#: options/rbs_gallery_options_view.php:171
|
491 |
-
msgid "Border options"
|
492 |
-
msgstr "Border options"
|
493 |
-
|
494 |
#: options/rbs_gallery_options_view.php:144
|
|
|
495 |
msgid "Border Options"
|
496 |
msgstr "Border Options"
|
497 |
|
@@ -571,51 +873,47 @@ msgstr "Custom hover background color"
|
|
571 |
msgid "Advanced images description settings"
|
572 |
msgstr "Advanced images description settings"
|
573 |
|
574 |
-
#: rbs_gallery_about.php:69 rbs_gallery_settings.php:
|
575 |
msgid "All Rights Reserved"
|
576 |
msgstr "All Rights Reserved"
|
577 |
|
578 |
-
#: rbs_gallery_button.php:
|
579 |
msgid "Robo Gallery"
|
580 |
msgstr "Robo Gallery"
|
581 |
|
582 |
-
#: rbs_gallery_button.php:
|
583 |
-
msgid "Close"
|
584 |
-
msgstr "Close"
|
585 |
-
|
586 |
-
#: rbs_gallery_button.php:24
|
587 |
msgid "Insert"
|
588 |
msgstr "Insert"
|
589 |
|
590 |
-
#: rbs_gallery_button.php:
|
591 |
msgid "Add Robo Gallery"
|
592 |
msgstr "Add Robo Gallery"
|
593 |
|
594 |
-
#: rbs_gallery_button.php:
|
595 |
msgid "Select gallery"
|
596 |
msgstr "Select gallery"
|
597 |
|
598 |
-
#: rbs_gallery_button.php:
|
599 |
msgid "Configure it in"
|
600 |
msgstr "Configure it in"
|
601 |
|
602 |
-
#: rbs_gallery_button.php:
|
603 |
msgid "Robo Gallery plugin"
|
604 |
msgstr "Robo Gallery plugin"
|
605 |
|
606 |
-
#: rbs_gallery_init.php:
|
607 |
msgid "Available in"
|
608 |
msgstr "Available in"
|
609 |
|
610 |
-
#: rbs_gallery_init.php:
|
611 |
msgid "Galleries List"
|
612 |
msgstr "Galleries List"
|
613 |
|
614 |
-
#: rbs_gallery_init.php:
|
615 |
msgid "Add Gallery"
|
616 |
msgstr "Add Gallery"
|
617 |
|
618 |
-
#: rbs_gallery_init.php:
|
619 |
msgid "Edit Gallery"
|
620 |
msgstr "Edit Gallery"
|
621 |
|
@@ -629,7 +927,7 @@ msgid ""
|
|
629 |
msgstr ""
|
630 |
"You can create only 3 galleries. Update to PRO to get unlimited galleries"
|
631 |
|
632 |
-
#: rbs_gallery_list.php:
|
633 |
msgid "Shortcode"
|
634 |
msgstr "Shortcode"
|
635 |
|
@@ -641,10 +939,6 @@ msgstr "Column"
|
|
641 |
msgid "Link"
|
642 |
msgstr "Link"
|
643 |
|
644 |
-
#: rbs_gallery_media.php:73
|
645 |
-
msgid "On"
|
646 |
-
msgstr "On"
|
647 |
-
|
648 |
#: rbs_gallery_media.php:78
|
649 |
msgid "Blank Link"
|
650 |
msgstr "Blank Link"
|
@@ -661,30 +955,66 @@ msgstr "inherit"
|
|
661 |
msgid "Compatibility Settings"
|
662 |
msgstr "Compatibility Settings"
|
663 |
|
664 |
-
#: rbs_gallery_settings.php:
|
665 |
msgid "jQuery Version"
|
666 |
msgstr "jQuery Version"
|
667 |
|
668 |
-
#: rbs_gallery_settings.php:
|
669 |
msgid "Default"
|
670 |
msgstr "Default"
|
671 |
|
672 |
-
#: rbs_gallery_settings.php:
|
673 |
msgid "Alternative"
|
674 |
msgstr "Alternative"
|
675 |
|
676 |
-
#: rbs_gallery_settings.php:
|
|
|
|
|
|
|
|
|
677 |
msgid "Switch Style"
|
678 |
msgstr "Switch Style"
|
679 |
|
680 |
-
#: rbs_gallery_settings.php:
|
681 |
msgid "Modern"
|
682 |
msgstr "Modern"
|
683 |
|
684 |
-
#: rbs_gallery_settings.php:
|
685 |
msgid "Classic"
|
686 |
msgstr "Classic"
|
687 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
688 |
#: rbs_gallery_widget.php:19
|
689 |
msgid "Robo Gallery Widget"
|
690 |
msgstr "Robo Gallery Widget"
|
@@ -705,6 +1035,24 @@ msgstr "New gallery"
|
|
705 |
msgid "Gallery:"
|
706 |
msgstr "Gallery:"
|
707 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
708 |
#~ msgid "Shadow options"
|
709 |
#~ msgstr "Shadow options"
|
710 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Robo Gallery\n"
|
4 |
+
"POT-Creation-Date: 2016-01-24 07:58+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-01-24 07:58+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: RoboSoft Team <team@robosoft.co>\n"
|
8 |
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.6\n"
|
13 |
"X-Poedit-Basepath: ../includes\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: extensions/backup/backup.class.php:344
|
20 |
+
#, php-format
|
21 |
+
msgid "Can not clear archive's file: \"%s\"."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: extensions/backup/backup.class.php:360
|
25 |
+
#, php-format
|
26 |
+
msgid "Didn't save archive with files \"%s\"."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: extensions/backup/backup.class.php:622
|
30 |
+
msgid "Can't find import xml file in archive."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: extensions/backup/backup.class.php:665
|
34 |
+
msgid "Can't set xml content for reading."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: extensions/backup/backup.class.php:671
|
38 |
+
msgid "Invalid document of import"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: extensions/backup/backup.class.php:834
|
42 |
+
#, php-format
|
43 |
+
msgid "Error insert post attachment with ID: \"%d\" and guid: \"%s\". %s"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: extensions/backup/backup.class.php:890
|
47 |
+
msgid "Invalid xml content."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: extensions/backup/backup.class.php:966
|
51 |
+
#, php-format
|
52 |
+
msgid "Error insert post with ID: \"%d\" and title: \"%s\". %s"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: extensions/backup/backup.class.php:997
|
56 |
+
#, php-format
|
57 |
+
msgid ""
|
58 |
+
"Error insert postmeta for post with ID %d. Meta key: \"%s\", meta value: \"%s"
|
59 |
+
"\""
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: extensions/backup/backup.class.php:1049
|
63 |
+
#, php-format
|
64 |
+
msgid "Can't open archive \"%s\"."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: extensions/backup/backup.class.php:1071
|
68 |
+
#, php-format
|
69 |
+
msgid "Can't import file \"%s\". File is absent in archive"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: extensions/backup/backup.class.php:1103
|
73 |
+
#, php-format
|
74 |
+
msgid "Can't create directory \"%s\" during import file."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: extensions/backup/backup.class.php:1107
|
78 |
+
#, php-format
|
79 |
+
msgid "Can't create file \"%s\" during import file."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: extensions/backup/backup.form.php:26
|
83 |
+
msgid "Robo Gallery Backup"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: extensions/backup/backup.form.php:47
|
87 |
+
msgid "Error Import "
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: extensions/backup/backup.form.php:51
|
91 |
+
msgid "Success Import "
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: extensions/backup/backup.form.php:53
|
95 |
+
msgid "Import Post"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: extensions/backup/backup.form.php:54
|
99 |
+
msgid "Import Images"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: extensions/backup/backup.form.php:60
|
103 |
+
msgid "Duplicate Post"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: extensions/backup/backup.form.php:61
|
107 |
+
msgid "Duplicate Images"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: extensions/backup/backup.form.php:68
|
111 |
+
msgid "Skipped Post"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: extensions/backup/backup.form.php:69
|
115 |
+
msgid "Skipped Images"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: extensions/backup/backup.form.php:105
|
119 |
+
msgid ""
|
120 |
+
"You can use Full Backup options to make backup of configured galleries "
|
121 |
+
"settings and images. As result you'll get archive with XML file of galleries "
|
122 |
+
"settings and all images of your galleries"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: extensions/backup/backup.form.php:110 extensions/backup/backup.form.php:139
|
126 |
+
msgid "File Name"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: extensions/backup/backup.form.php:119
|
130 |
+
msgid "Download Full Backup"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: extensions/backup/backup.form.php:133
|
134 |
+
msgid ""
|
135 |
+
"After EXPORT copy images from server folder: {Wordpress folder}/wp-content/"
|
136 |
+
"uploads to the new location by FTP"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: extensions/backup/backup.form.php:147
|
140 |
+
msgid "Download Backup"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: extensions/backup/backup.form.php:163 extensions/backup/backup.form.php:166
|
144 |
+
msgid "Duplicate"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: extensions/backup/backup.form.php:169
|
148 |
+
msgid "Make copy if such gallery or image already exist in system"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: extensions/backup/backup.form.php:178
|
152 |
+
msgid "Select backup file"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: extensions/backup/backup.form.php:186
|
156 |
+
msgid "Upload XML"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: extensions/rbs_create_post.php:10
|
160 |
+
msgid "Post manager"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: extensions/rbs_create_post.php:11 rbs_gallery_button.php:26
|
164 |
+
#: rbs_gallery_list.php:28
|
165 |
+
msgid "Close"
|
166 |
+
msgstr "Close"
|
167 |
+
|
168 |
+
#: extensions/rbs_create_post.php:12 options/rbs_gallery_options_tools.php:33
|
169 |
+
msgid "Create post"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: extensions/rbs_create_post.php:17
|
173 |
+
msgid "Loading . . . ."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: extensions/rbs_create_post_ajax.php:30
|
177 |
+
#: extensions/rbs_create_post_ajax.php:37
|
178 |
+
#: extensions/rbs_create_post_ajax.php:84
|
179 |
+
#: extensions/rbs_create_post_ajax.php:119
|
180 |
+
msgid "Post not created. Error: "
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: extensions/rbs_create_post_ajax.php:30
|
184 |
+
#: extensions/rbs_create_post_ajax.php:150
|
185 |
+
msgid "Empty gallery ID"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: extensions/rbs_create_post_ajax.php:37
|
189 |
+
#: extensions/rbs_create_post_ajax.php:170
|
190 |
+
msgid "Incorrect gallery ID"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: extensions/rbs_create_post_ajax.php:40
|
194 |
+
msgid "Add new post"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: extensions/rbs_create_post_ajax.php:45
|
198 |
+
msgid "Category"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: extensions/rbs_create_post_ajax.php:50
|
202 |
+
#: extensions/rbs_create_post_ajax.php:159
|
203 |
+
#: options/rbs_gallery_options_hover.php:118
|
204 |
+
#: options/rbs_gallery_options_lightbox.php:48
|
205 |
+
#: options/rbs_gallery_options_polaroid.php:46 rbs_gallery_widget.php:71
|
206 |
+
msgid "Title"
|
207 |
+
msgstr "Title"
|
208 |
+
|
209 |
+
#: extensions/rbs_create_post_ajax.php:55
|
210 |
+
msgid "Slug"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: extensions/rbs_create_post_ajax.php:60
|
214 |
+
#: options/rbs_gallery_options_lightbox.php:29
|
215 |
+
msgid "Text"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: extensions/rbs_create_post_ajax.php:68
|
219 |
+
msgid "Short tag of the gallery will be insert into created article."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: extensions/rbs_create_post_ajax.php:126
|
223 |
+
msgid "Post "
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: extensions/rbs_create_post_ajax.php:126
|
227 |
+
msgid " created"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: extensions/rbs_create_post_ajax.php:129
|
231 |
+
#: extensions/rbs_create_post_ajax.php:182
|
232 |
+
#: extensions/rbs_create_post_ajax.php:183
|
233 |
+
msgid "Edit"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: extensions/rbs_create_post_ajax.php:132
|
237 |
+
#: extensions/rbs_create_post_ajax.php:187
|
238 |
+
#: extensions/rbs_create_post_ajax.php:188
|
239 |
+
msgid "Preview"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: extensions/rbs_create_post_ajax.php:138
|
243 |
+
msgid "Error: input value"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: extensions/rbs_create_post_ajax.php:150
|
247 |
+
#: extensions/rbs_create_post_ajax.php:170
|
248 |
+
msgid "Error: "
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: extensions/rbs_create_post_ajax.php:160
|
252 |
+
msgid "Status"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: extensions/rbs_create_post_ajax.php:178
|
256 |
+
msgid "publish"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
#: options/rbs_gallery_options_button.php:18
|
260 |
msgid "Menu Options"
|
261 |
msgstr "Menu Options"
|
262 |
|
263 |
#: options/rbs_gallery_options_button.php:26
|
264 |
+
msgid "Menu"
|
265 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
266 |
|
267 |
+
#: options/rbs_gallery_options_button.php:41
|
268 |
msgid "Root Label"
|
269 |
msgstr "Root Label"
|
270 |
|
271 |
+
#: options/rbs_gallery_options_button.php:53
|
272 |
+
msgid "Root Label Text"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: options/rbs_gallery_options_button.php:62
|
276 |
+
msgid "Self Label"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: options/rbs_gallery_options_button.php:71
|
280 |
+
msgid "Self Images"
|
281 |
+
msgstr ""
|
282 |
|
283 |
+
#: options/rbs_gallery_options_button.php:80
|
284 |
msgid "Style"
|
285 |
msgstr "Style"
|
286 |
|
287 |
+
#: options/rbs_gallery_options_button.php:87
|
288 |
+
#: options/rbs_gallery_options_button.php:119
|
289 |
+
#: options/rbs_gallery_options_button.php:135
|
290 |
+
msgid "Normal"
|
291 |
msgstr "Normal"
|
292 |
|
293 |
+
#: options/rbs_gallery_options_button.php:88
|
294 |
msgid "flat"
|
295 |
msgstr "flat"
|
296 |
|
297 |
+
#: options/rbs_gallery_options_button.php:89
|
298 |
msgid "3d"
|
299 |
msgstr "3d"
|
300 |
|
301 |
+
#: options/rbs_gallery_options_button.php:90
|
302 |
+
#: options/rbs_gallery_options_view.php:127
|
303 |
+
msgid "Border"
|
304 |
+
msgstr "Border"
|
305 |
|
306 |
+
#: options/rbs_gallery_options_button.php:96
|
307 |
msgid "Color"
|
308 |
msgstr "Color"
|
309 |
|
310 |
+
#: options/rbs_gallery_options_button.php:103
|
311 |
msgid "gray"
|
312 |
msgstr "gray"
|
313 |
|
314 |
+
#: options/rbs_gallery_options_button.php:104
|
315 |
msgid "blue"
|
316 |
msgstr "blue"
|
317 |
|
318 |
+
#: options/rbs_gallery_options_button.php:105
|
319 |
msgid "green"
|
320 |
msgstr "green"
|
321 |
|
322 |
+
#: options/rbs_gallery_options_button.php:106
|
323 |
msgid "orange"
|
324 |
msgstr "orange"
|
325 |
|
326 |
+
#: options/rbs_gallery_options_button.php:107
|
327 |
msgid "red"
|
328 |
msgstr "red"
|
329 |
|
330 |
+
#: options/rbs_gallery_options_button.php:108
|
331 |
msgid "purple"
|
332 |
msgstr "purple"
|
333 |
|
334 |
+
#: options/rbs_gallery_options_button.php:113
|
335 |
msgid "Rounds"
|
336 |
msgstr "Rounds"
|
337 |
|
338 |
+
#: options/rbs_gallery_options_button.php:120
|
|
|
|
|
|
|
|
|
|
|
339 |
msgid "Rounded"
|
340 |
msgstr "Rounded"
|
341 |
|
342 |
+
#: options/rbs_gallery_options_button.php:121
|
343 |
msgid "Pill"
|
344 |
msgstr "Pill"
|
345 |
|
346 |
+
#: options/rbs_gallery_options_button.php:122
|
347 |
msgid "Circle "
|
348 |
msgstr "Circle "
|
349 |
|
350 |
+
#: options/rbs_gallery_options_button.php:127
|
351 |
msgid "Size"
|
352 |
msgstr "Size"
|
353 |
|
354 |
+
#: options/rbs_gallery_options_button.php:133
|
355 |
msgid "Jumbo"
|
356 |
msgstr "Jumbo"
|
357 |
|
358 |
+
#: options/rbs_gallery_options_button.php:134
|
359 |
msgid "Large"
|
360 |
msgstr "Large"
|
361 |
|
362 |
+
#: options/rbs_gallery_options_button.php:136
|
363 |
msgid "Small"
|
364 |
msgstr "Small"
|
365 |
|
366 |
+
#: options/rbs_gallery_options_button.php:137
|
367 |
msgid "Tiny "
|
368 |
msgstr "Tiny "
|
369 |
|
370 |
+
#: options/rbs_gallery_options_button.php:142
|
371 |
msgid "Left Padding"
|
372 |
msgstr "Left Padding"
|
373 |
|
374 |
+
#: options/rbs_gallery_options_button.php:153
|
375 |
msgid "Bottom Padding"
|
376 |
msgstr "Bottom Padding"
|
377 |
|
407 |
"your website in another galleries. Very fast, comfortable, advanced tool to "
|
408 |
"speed up your workflow!"
|
409 |
|
410 |
+
#: options/rbs_gallery_options_guides.php:20
|
411 |
+
msgid "Video Guides"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
#: options/rbs_gallery_options_hover.php:18
|
415 |
msgid "Hover Options"
|
416 |
msgstr "Hover Options"
|
417 |
|
418 |
#: options/rbs_gallery_options_hover.php:26
|
419 |
+
msgid "Click Thumbnail"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: options/rbs_gallery_options_hover.php:32 rbs_gallery_media.php:73
|
423 |
+
msgid "On"
|
424 |
+
msgstr "On"
|
425 |
|
426 |
+
#: options/rbs_gallery_options_hover.php:33
|
427 |
+
#: options/rbs_gallery_options_hover.php:47 rbs_gallery_media.php:74
|
428 |
msgid "Off"
|
429 |
msgstr "Off"
|
430 |
|
431 |
+
#: options/rbs_gallery_options_hover.php:40
|
432 |
+
msgid "Hover Mode"
|
433 |
+
msgstr "Hover Mode"
|
434 |
+
|
435 |
+
#: options/rbs_gallery_options_hover.php:48
|
436 |
msgid "Options"
|
437 |
msgstr "Options"
|
438 |
|
439 |
+
#: options/rbs_gallery_options_hover.php:49
|
440 |
msgid "Template"
|
441 |
msgstr "Template"
|
442 |
|
443 |
+
#: options/rbs_gallery_options_hover.php:62
|
444 |
+
#: options/rbs_gallery_options_lightbox.php:69
|
445 |
#: options/rbs_gallery_options_loading.php:79
|
446 |
#: options/rbs_gallery_options_polaroid.php:53
|
447 |
msgid "Bg Color"
|
448 |
msgstr "Bg Color"
|
449 |
|
450 |
+
#: options/rbs_gallery_options_hover.php:76 rbs_gallery_media.php:118
|
451 |
msgid "Effect"
|
452 |
msgstr "Effect"
|
453 |
|
454 |
+
#: options/rbs_gallery_options_hover.php:82 rbs_gallery_media.php:95
|
455 |
msgid "push-up"
|
456 |
msgstr "push-up"
|
457 |
|
458 |
+
#: options/rbs_gallery_options_hover.php:83 rbs_gallery_media.php:96
|
459 |
msgid "push-down"
|
460 |
msgstr "push-down"
|
461 |
|
462 |
+
#: options/rbs_gallery_options_hover.php:84 rbs_gallery_media.php:97
|
463 |
msgid "push-up-100%"
|
464 |
msgstr "push-up-100%"
|
465 |
|
466 |
+
#: options/rbs_gallery_options_hover.php:85 rbs_gallery_media.php:98
|
467 |
msgid "push-down-100%"
|
468 |
msgstr "push-down-100%"
|
469 |
|
470 |
+
#: options/rbs_gallery_options_hover.php:86 rbs_gallery_media.php:99
|
471 |
msgid "reveal-top"
|
472 |
msgstr "reveal-top"
|
473 |
|
474 |
+
#: options/rbs_gallery_options_hover.php:87 rbs_gallery_media.php:100
|
475 |
msgid "reveal-bottom"
|
476 |
msgstr "reveal-bottom"
|
477 |
|
478 |
+
#: options/rbs_gallery_options_hover.php:88 rbs_gallery_media.php:101
|
479 |
msgid "reveal-top-100%"
|
480 |
msgstr "reveal-top-100%"
|
481 |
|
482 |
+
#: options/rbs_gallery_options_hover.php:89 rbs_gallery_media.php:102
|
483 |
msgid "reveal-bottom-100%"
|
484 |
msgstr "reveal-bottom-100%"
|
485 |
|
486 |
+
#: options/rbs_gallery_options_hover.php:90 rbs_gallery_media.php:103
|
487 |
msgid "direction-aware"
|
488 |
msgstr "direction-aware"
|
489 |
|
490 |
+
#: options/rbs_gallery_options_hover.php:91 rbs_gallery_media.php:104
|
491 |
msgid "direction-aware-fade"
|
492 |
msgstr "direction-aware-fade"
|
493 |
|
494 |
+
#: options/rbs_gallery_options_hover.php:92 rbs_gallery_media.php:105
|
495 |
msgid "direction-right"
|
496 |
msgstr "direction-right"
|
497 |
|
498 |
+
#: options/rbs_gallery_options_hover.php:93 rbs_gallery_media.php:106
|
499 |
msgid "direction-left"
|
500 |
msgstr "direction-left"
|
501 |
|
502 |
+
#: options/rbs_gallery_options_hover.php:94 rbs_gallery_media.php:107
|
503 |
msgid "direction-top"
|
504 |
msgstr "direction-top"
|
505 |
|
506 |
+
#: options/rbs_gallery_options_hover.php:95 rbs_gallery_media.php:108
|
507 |
msgid "direction-bottom"
|
508 |
msgstr "direction-bottom"
|
509 |
|
510 |
+
#: options/rbs_gallery_options_hover.php:96 rbs_gallery_media.php:109
|
511 |
msgid "fade"
|
512 |
msgstr "fade"
|
513 |
|
514 |
+
#: options/rbs_gallery_options_hover.php:103
|
|
|
515 |
msgid "Show Title"
|
516 |
msgstr "Show Title"
|
517 |
|
518 |
+
#: options/rbs_gallery_options_hover.php:119
|
|
|
|
|
|
|
|
|
|
|
519 |
msgid "Link Button"
|
520 |
msgstr "Link Button"
|
521 |
|
522 |
+
#: options/rbs_gallery_options_hover.php:120
|
523 |
msgid "Zoom Button"
|
524 |
msgstr "Zoom Button"
|
525 |
|
526 |
+
#: options/rbs_gallery_options_hover.php:121
|
527 |
+
#: options/rbs_gallery_options_lightbox.php:49
|
528 |
msgid "Description"
|
529 |
msgstr "Description"
|
530 |
|
531 |
+
#: options/rbs_gallery_options_hover.php:130
|
532 |
msgid "Link Icon"
|
533 |
msgstr "Link Icon"
|
534 |
|
535 |
+
#: options/rbs_gallery_options_hover.php:150
|
536 |
msgid "Zoom Icon"
|
537 |
msgstr "Zoom Icon"
|
538 |
|
539 |
+
#: options/rbs_gallery_options_hover.php:173
|
540 |
msgid "Show Description"
|
541 |
msgstr "Show Description"
|
542 |
|
543 |
+
#: options/rbs_gallery_options_hover.php:194
|
544 |
msgid "Description Template"
|
545 |
msgstr "Description Template"
|
546 |
|
566 |
#: options/rbs_gallery_options_info.php:18
|
567 |
#: options/rbs_gallery_options_info.php:31
|
568 |
#: options/rbs_gallery_options_infowide.php:18 rbs_gallery_about.php:63
|
569 |
+
#: rbs_gallery_about.php:64 rbs_gallery_list.php:29 rbs_gallery_topblock.php:20
|
|
|
570 |
msgid "Get Pro version"
|
571 |
msgstr "Get Pro version"
|
572 |
|
583 |
msgid "Lightbox Options"
|
584 |
msgstr "Lightbox Options"
|
585 |
|
586 |
+
#: options/rbs_gallery_options_lightbox.php:42
|
587 |
+
msgid "Text Source"
|
588 |
+
msgstr ""
|
589 |
|
590 |
+
#: options/rbs_gallery_options_lightbox.php:50
|
591 |
+
#: options/rbs_gallery_options_polaroid.php:48
|
592 |
+
msgid "Caption"
|
593 |
+
msgstr "Caption"
|
594 |
+
|
595 |
+
#: options/rbs_gallery_options_lightbox.php:58
|
596 |
msgid "Text Color"
|
597 |
msgstr "Text Color"
|
598 |
|
599 |
+
#: options/rbs_gallery_options_lightbox.php:82
|
600 |
+
msgid "Deep Linking"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: options/rbs_gallery_options_lightbox.php:85
|
604 |
+
msgid "This option enable linking for every particular image "
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: options/rbs_gallery_options_lightbox.php:91
|
608 |
+
msgid " Images Counter"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: options/rbs_gallery_options_lightbox.php:100
|
612 |
+
msgid "Close Icon"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: options/rbs_gallery_options_lightbox.php:109
|
616 |
+
msgid "Arrow Icon"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: options/rbs_gallery_options_lightbox.php:118
|
620 |
+
msgid "Social Buttons"
|
621 |
+
msgstr "Social Buttons"
|
622 |
+
|
623 |
#: options/rbs_gallery_options_loading.php:18
|
624 |
#: options/rbs_gallery_options_loading.php:35
|
625 |
msgid "Loading Options"
|
677 |
msgid "Desc"
|
678 |
msgstr "Desc"
|
679 |
|
|
|
|
|
|
|
|
|
680 |
#: options/rbs_gallery_options_polaroid.php:64
|
681 |
+
#: options/rbs_gallery_options_size.php:40
|
682 |
msgid "Align"
|
683 |
msgstr "Align"
|
684 |
|
698 |
msgid "Gallery Shortcode"
|
699 |
msgstr "Gallery Shortcode"
|
700 |
|
701 |
+
#: options/rbs_gallery_options_shortcode.php:30
|
702 |
msgid "use this shortcode to insert this gallery into page, post or widget"
|
703 |
msgstr "use this shortcode to insert this gallery into page, post or widget"
|
704 |
|
707 |
msgstr "Gallery Size Options"
|
708 |
|
709 |
#: options/rbs_gallery_options_size.php:30
|
710 |
+
msgid "Width "
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: options/rbs_gallery_options_size.php:53
|
714 |
+
msgid "Padding"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: options/rbs_gallery_options_size.php:62
|
718 |
+
#: options/rbs_gallery_options_size.php:70
|
719 |
msgid "Thumbs Options"
|
720 |
msgstr "Thumbs Options"
|
721 |
|
722 |
+
#: options/rbs_gallery_options_size.php:71
|
723 |
msgid "Size Options"
|
724 |
msgstr "Size Options"
|
725 |
|
726 |
+
#: options/rbs_gallery_options_size.php:78
|
727 |
msgid "Custom Ratio"
|
728 |
msgstr "Custom Ratio"
|
729 |
|
730 |
+
#: options/rbs_gallery_options_size.php:89
|
731 |
msgid "Colums "
|
732 |
msgstr "Colums "
|
733 |
|
734 |
+
#: options/rbs_gallery_options_text.php:18
|
735 |
+
msgid "Text Addons"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: options/rbs_gallery_options_text.php:27
|
739 |
+
#: options/rbs_gallery_options_text.php:35
|
740 |
+
msgid "Pre Text"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: options/rbs_gallery_options_text.php:39
|
744 |
+
#: options/rbs_gallery_options_text.php:47
|
745 |
+
msgid "After Text"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: options/rbs_gallery_options_tools.php:18
|
749 |
+
msgid "Gallery Tools"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: options/rbs_gallery_options_tools.php:38
|
753 |
+
msgid "Posts List"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: options/rbs_gallery_options_tools.php:40
|
757 |
+
msgid "Here you can create and customize new post with gallery inside it"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
#: options/rbs_gallery_options_view.php:18
|
761 |
msgid "Thumbs View Options"
|
762 |
msgstr "Thumbs View Options"
|
791 |
msgid "Hover Shadow"
|
792 |
msgstr "Hover Shadow"
|
793 |
|
|
|
|
|
|
|
|
|
794 |
#: options/rbs_gallery_options_view.php:137
|
|
|
|
|
|
|
|
|
795 |
#: options/rbs_gallery_options_view.php:144
|
796 |
+
#: options/rbs_gallery_options_view.php:171
|
797 |
msgid "Border Options"
|
798 |
msgstr "Border Options"
|
799 |
|
873 |
msgid "Advanced images description settings"
|
874 |
msgstr "Advanced images description settings"
|
875 |
|
876 |
+
#: rbs_gallery_about.php:69 rbs_gallery_settings.php:91
|
877 |
msgid "All Rights Reserved"
|
878 |
msgstr "All Rights Reserved"
|
879 |
|
880 |
+
#: rbs_gallery_button.php:25 rbs_gallery_media.php:43
|
881 |
msgid "Robo Gallery"
|
882 |
msgstr "Robo Gallery"
|
883 |
|
884 |
+
#: rbs_gallery_button.php:27
|
|
|
|
|
|
|
|
|
885 |
msgid "Insert"
|
886 |
msgstr "Insert"
|
887 |
|
888 |
+
#: rbs_gallery_button.php:33
|
889 |
msgid "Add Robo Gallery"
|
890 |
msgstr "Add Robo Gallery"
|
891 |
|
892 |
+
#: rbs_gallery_button.php:44
|
893 |
msgid "Select gallery"
|
894 |
msgstr "Select gallery"
|
895 |
|
896 |
+
#: rbs_gallery_button.php:45 rbs_gallery_widget.php:79
|
897 |
msgid "Configure it in"
|
898 |
msgstr "Configure it in"
|
899 |
|
900 |
+
#: rbs_gallery_button.php:45 rbs_gallery_widget.php:81
|
901 |
msgid "Robo Gallery plugin"
|
902 |
msgstr "Robo Gallery plugin"
|
903 |
|
904 |
+
#: rbs_gallery_init.php:19
|
905 |
msgid "Available in"
|
906 |
msgstr "Available in"
|
907 |
|
908 |
+
#: rbs_gallery_init.php:70
|
909 |
msgid "Galleries List"
|
910 |
msgstr "Galleries List"
|
911 |
|
912 |
+
#: rbs_gallery_init.php:71 rbs_gallery_init.php:72
|
913 |
msgid "Add Gallery"
|
914 |
msgstr "Add Gallery"
|
915 |
|
916 |
+
#: rbs_gallery_init.php:73
|
917 |
msgid "Edit Gallery"
|
918 |
msgstr "Edit Gallery"
|
919 |
|
927 |
msgstr ""
|
928 |
"You can create only 3 galleries. Update to PRO to get unlimited galleries"
|
929 |
|
930 |
+
#: rbs_gallery_list.php:54
|
931 |
msgid "Shortcode"
|
932 |
msgstr "Shortcode"
|
933 |
|
939 |
msgid "Link"
|
940 |
msgstr "Link"
|
941 |
|
|
|
|
|
|
|
|
|
942 |
#: rbs_gallery_media.php:78
|
943 |
msgid "Blank Link"
|
944 |
msgstr "Blank Link"
|
955 |
msgid "Compatibility Settings"
|
956 |
msgstr "Compatibility Settings"
|
957 |
|
958 |
+
#: rbs_gallery_settings.php:26 rbs_gallery_settings.php:29
|
959 |
msgid "jQuery Version"
|
960 |
msgstr "jQuery Version"
|
961 |
|
962 |
+
#: rbs_gallery_settings.php:30 rbs_gallery_settings.php:31
|
963 |
msgid "Default"
|
964 |
msgstr "Default"
|
965 |
|
966 |
+
#: rbs_gallery_settings.php:33 rbs_gallery_settings.php:34
|
967 |
msgid "Alternative"
|
968 |
msgstr "Alternative"
|
969 |
|
970 |
+
#: rbs_gallery_settings.php:38 rbs_gallery_settings.php:39
|
971 |
+
msgid "Forced include"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: rbs_gallery_settings.php:46 rbs_gallery_settings.php:49
|
975 |
msgid "Switch Style"
|
976 |
msgstr "Switch Style"
|
977 |
|
978 |
+
#: rbs_gallery_settings.php:50 rbs_gallery_settings.php:51
|
979 |
msgid "Modern"
|
980 |
msgstr "Modern"
|
981 |
|
982 |
+
#: rbs_gallery_settings.php:53 rbs_gallery_settings.php:54
|
983 |
msgid "Classic"
|
984 |
msgstr "Classic"
|
985 |
|
986 |
+
#: rbs_gallery_settings.php:60
|
987 |
+
msgid "Size Calculations Delay"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: rbs_gallery_settings.php:66
|
991 |
+
msgid "Create Post Settings"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: rbs_gallery_settings.php:69 rbs_gallery_settings.php:72
|
995 |
+
msgid "Show Text"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: rbs_gallery_settings.php:73 rbs_gallery_settings.php:74
|
999 |
+
msgid "Show"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: rbs_gallery_settings.php:76 rbs_gallery_settings.php:77
|
1003 |
+
msgid "Hide"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: rbs_gallery_settings.php:85
|
1007 |
+
msgid "Save Changes"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: rbs_gallery_topblock.php:26
|
1011 |
+
msgid "Do You wish to get PRO version for FREE ?"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: rbs_gallery_topblock.php:31
|
1015 |
+
msgid "Do You wish to get PRO version for translate?"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
#: rbs_gallery_widget.php:19
|
1019 |
msgid "Robo Gallery Widget"
|
1020 |
msgstr "Robo Gallery Widget"
|
1035 |
msgid "Gallery:"
|
1036 |
msgstr "Gallery:"
|
1037 |
|
1038 |
+
#~ msgid "Show Menu"
|
1039 |
+
#~ msgstr "Show Menu"
|
1040 |
+
|
1041 |
+
#~ msgid "Show Root"
|
1042 |
+
#~ msgstr "Show Root"
|
1043 |
+
|
1044 |
+
#~ msgid "Show self"
|
1045 |
+
#~ msgstr "Show self"
|
1046 |
+
|
1047 |
+
#~ msgid "normal"
|
1048 |
+
#~ msgstr "Normal"
|
1049 |
+
|
1050 |
+
#~ msgid "border"
|
1051 |
+
#~ msgstr "border"
|
1052 |
+
|
1053 |
+
#~ msgid "Border options"
|
1054 |
+
#~ msgstr "Border options"
|
1055 |
+
|
1056 |
#~ msgid "Shadow options"
|
1057 |
#~ msgstr "Shadow options"
|
1058 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.4
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -198,34 +198,26 @@ Every gallery image have additional fields where you can define custom link, tit
|
|
198 |
|
199 |
No, we don't have any limits for amount of the images in gallery
|
200 |
|
201 |
-
=
|
202 |
-
|
203 |
-
Yes, you can use HTML tags inside gallery image description field
|
204 |
|
205 |
-
|
206 |
|
207 |
-
|
208 |
|
|
|
|
|
209 |
= What can I do if some gallery interface elements in backend do not work properly? =
|
210 |
|
211 |
If you have some conflict in gallery back end you can sort it with new compatibility option. If combo box element do not drop down you can switch between classic and modern style, as result you can avoid conflict with another code.
|
212 |
|
213 |
-
= How to define custom hover effect for some gallery thumbnail? =
|
214 |
-
|
215 |
-
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.
|
216 |
-
|
217 |
= Do you have some limit for images size in gallery? =
|
218 |
|
219 |
No, we don't have any limits for image size in our gallery.
|
220 |
-
|
221 |
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
222 |
|
223 |
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
224 |
|
225 |
-
= How to change font color of the gallery image description text? =
|
226 |
-
|
227 |
-
In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change color of the text
|
228 |
-
|
229 |
= How to change font size of the gallery image caption? =
|
230 |
|
231 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
@@ -234,65 +226,69 @@ In gallery settings you can enable custom caption settings where you can customi
|
|
234 |
|
235 |
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
|
236 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
= How to make gallery thumbnails with rounded corners? =
|
238 |
|
239 |
In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
|
240 |
|
241 |
-
= How to
|
242 |
|
243 |
-
|
244 |
|
245 |
-
=
|
246 |
|
247 |
-
|
|
|
|
|
|
|
|
|
248 |
|
249 |
= Is it possible to have different settings for hover and static interface elements? =
|
250 |
|
251 |
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
252 |
|
253 |
-
=
|
254 |
|
255 |
-
|
256 |
|
257 |
-
=
|
258 |
|
259 |
-
|
260 |
|
261 |
-
=
|
262 |
|
263 |
-
|
264 |
|
265 |
-
= Is it possible to
|
266 |
|
267 |
-
|
268 |
|
269 |
= How to hide titles of the gallery image in lightbox ? =
|
270 |
|
271 |
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.
|
272 |
|
273 |
-
= How to
|
274 |
|
275 |
-
|
276 |
|
277 |
-
=
|
278 |
|
279 |
-
When you open gallery
|
280 |
|
281 |
= How to change color of the gallery interface elements? =
|
282 |
|
283 |
Color of every gallery front end interface element could be changed changed in admin section with color selector. There you can change colors of the menu buttons, load more button, borders, shadows, backgrounds and etc.
|
284 |
|
285 |
-
= How to
|
286 |
-
|
287 |
-
In gallery admin section you can define amount of the images for the first load and after click on load more button. Load more it's such google gallery style pagination functionality which make you able to limit amount of the images for the first load
|
288 |
-
|
289 |
-
= How to make shadow for the gallery thumbnails? =
|
290 |
-
|
291 |
-
Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
|
292 |
-
|
293 |
-
= Is it possible to customize gallery image caption ? =
|
294 |
|
295 |
-
|
296 |
|
297 |
= Do you have fade effect for the thumbnails hover? =
|
298 |
|
@@ -302,9 +298,21 @@ Yes, gallery have fade hover effect
|
|
302 |
|
303 |
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
|
304 |
|
305 |
-
= How to
|
306 |
|
307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
|
309 |
= How to customize hover effect? =
|
310 |
|
@@ -318,14 +326,6 @@ In gallery settings you can define horizontal and vertical paddings between gall
|
|
318 |
|
319 |
Yes, you can use generated direct link inside particular gallery settings
|
320 |
|
321 |
-
= How to define custom link for some gallery images? =
|
322 |
-
|
323 |
-
Every gallery image have additional fields where you can define custom link, title, description. All this options you can find in gallery images manager, inside general gallery settings
|
324 |
-
|
325 |
-
= How to change color of the gallery thumbnails border? =
|
326 |
-
|
327 |
-
When you enable border in gallery settings you will see multiply options for customization of the border. One from this options it's border color. You can select color using color selector
|
328 |
-
|
329 |
= How to customize gallery hover effect shutter layout? =
|
330 |
|
331 |
In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which going to help you to build in some gallery images elements into hover
|
@@ -338,18 +338,6 @@ In gallery settings we have few options which makes you able to select amount of
|
|
338 |
|
339 |
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
|
340 |
|
341 |
-
= How to customize border of the gallery thumbnails? =
|
342 |
-
|
343 |
-
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
|
344 |
-
|
345 |
-
= How I can create custom (grid) layout of the thumbnails? =
|
346 |
-
|
347 |
-
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
|
348 |
-
|
349 |
-
= How to customize gallery layouts for different screen resolutions? =
|
350 |
-
|
351 |
-
In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
|
352 |
-
|
353 |
= How to enable lazy load in gallery options? =
|
354 |
|
355 |
In gallery settings you can find option to enable/disable lazy load, also there you'll have alot of additional options for customization of the loading process
|
@@ -362,6 +350,18 @@ When you open gallery images manager you'll find there image edit mode where you
|
|
362 |
|
363 |
When you open gallery images manager you can define alt for every gallery image there
|
364 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
= How to change transparency of the gallery thumbnails border? =
|
366 |
|
367 |
When you enable border in gallery settings you will see multiply options for customization of the border. When you open color selector you can also select some transparency value there
|
@@ -576,6 +576,10 @@ If any problem occurs, please contact us.
|
|
576 |
|
577 |
== Changelog ==
|
578 |
|
|
|
|
|
|
|
|
|
579 |
= 1.7.12 =
|
580 |
* Updated backup section interface
|
581 |
* Added doubled images statistics block
|
@@ -912,6 +916,9 @@ If any problem occurs, please contact us.
|
|
912 |
|
913 |
== Upgrade Notice ==
|
914 |
|
|
|
|
|
|
|
915 |
= 1.7.12 =
|
916 |
Updated backup section interface, added doubled images statistics block
|
917 |
|
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.4
|
7 |
+
Stable tag: 1.7.13
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
198 |
|
199 |
No, we don't have any limits for amount of the images in gallery
|
200 |
|
201 |
+
= How to define custom hover effect for some gallery thumbnail? =
|
|
|
|
|
202 |
|
203 |
+
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.
|
204 |
|
205 |
+
= Is it possible to use HTML in image description ? =
|
206 |
|
207 |
+
Yes, you can use HTML tags inside gallery image description field
|
208 |
+
|
209 |
= What can I do if some gallery interface elements in backend do not work properly? =
|
210 |
|
211 |
If you have some conflict in gallery back end you can sort it with new compatibility option. If combo box element do not drop down you can switch between classic and modern style, as result you can avoid conflict with another code.
|
212 |
|
|
|
|
|
|
|
|
|
213 |
= Do you have some limit for images size in gallery? =
|
214 |
|
215 |
No, we don't have any limits for image size in our gallery.
|
216 |
+
|
217 |
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
218 |
|
219 |
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
220 |
|
|
|
|
|
|
|
|
|
221 |
= How to change font size of the gallery image caption? =
|
222 |
|
223 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
226 |
|
227 |
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
|
228 |
|
229 |
+
= How to change text below image in lightbox ? =
|
230 |
+
|
231 |
+
In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
|
232 |
+
|
233 |
+
= How to change quality of the gallery thumbnails? =
|
234 |
+
|
235 |
+
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
236 |
+
|
237 |
= How to make gallery thumbnails with rounded corners? =
|
238 |
|
239 |
In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
|
240 |
|
241 |
+
= How to change font color of the gallery image description text? =
|
242 |
|
243 |
+
In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change color of the text
|
244 |
|
245 |
+
= Do you have some conflict in gallery back end? =
|
246 |
|
247 |
+
If you have some conflict in gallery back end you can sort it with new compatibility option. You can switch between standard and alternative jquery library. This modes implemented to help you to avoid any conflicts with another libraries from wordpress themes or another plugin.
|
248 |
+
|
249 |
+
= How to make shadow for the gallery thumbnails? =
|
250 |
+
|
251 |
+
Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
|
252 |
|
253 |
= Is it possible to have different settings for hover and static interface elements? =
|
254 |
|
255 |
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
256 |
|
257 |
+
= Is it possible to turn off border of the gallery thumbnails? =
|
258 |
|
259 |
+
Yes, in gallery options you can turn on/off border option
|
260 |
|
261 |
+
= How to upload images to the gallery? =
|
262 |
|
263 |
+
When you create new gallery or open already existent gallery for edit on the right side of the edit gallery section you'll see gallery images manager button. When you open gallery images manager you'll be able there edit all gallery images. Upload, edit or delete. In gallery images manager you can use drag and drop gallery images upload tool.
|
264 |
|
265 |
+
= How to define size of the gallery images thumbnails? =
|
266 |
|
267 |
+
Our gallery is fully responsive and gallery thumbnails size depend of a lot of factors. Gallery calculate thumbnails automatically depend of the general gallery size and gallery layout settings. First of all you can define ratio values for gallery thumbnails. Size of the thumbnails could be selected from standard pre-defined wordpress sizes: thumbnail, medium, large, full
|
268 |
|
269 |
+
= Is it possible to customize gallery image caption ? =
|
270 |
|
271 |
+
In gallery settings you can find images manager where you can change settings of every image, one of the option it's caption of the image
|
272 |
|
273 |
= How to hide titles of the gallery image in lightbox ? =
|
274 |
|
275 |
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.
|
276 |
|
277 |
+
= How to define custom link for some gallery images? =
|
278 |
|
279 |
+
Every gallery image have additional fields where you can define custom link, title, description. All this options you can find in gallery images manager, inside general gallery settings
|
280 |
|
281 |
+
= Where specify description of the gallery images? =
|
282 |
|
283 |
+
When you open gallery settings inside you'll find images manager section. Images manager make you able to add/edit descriptions and titles of every gallery image
|
284 |
|
285 |
= How to change color of the gallery interface elements? =
|
286 |
|
287 |
Color of every gallery front end interface element could be changed changed in admin section with color selector. There you can change colors of the menu buttons, load more button, borders, shadows, backgrounds and etc.
|
288 |
|
289 |
+
= How to change width of the gallery thumbnails border? =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
|
291 |
+
When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border width in pixels.
|
292 |
|
293 |
= Do you have fade effect for the thumbnails hover? =
|
294 |
|
298 |
|
299 |
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
|
300 |
|
301 |
+
= How to load more function work? =
|
302 |
|
303 |
+
In gallery admin section you can define amount of the images for the first load and after click on load more button. Load more it's such google gallery style pagination functionality which make you able to limit amount of the images for the first load
|
304 |
+
|
305 |
+
= How to change ordering of the gallery images? =
|
306 |
+
|
307 |
+
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
308 |
+
|
309 |
+
= How to use multi-category functionality of the gallery? =
|
310 |
+
|
311 |
+
In our gallery we implemented multi-categories structure. Every gallery category could have child and parent gallery, which you can manually define in gallery settings
|
312 |
+
|
313 |
+
= How to change color of the gallery thumbnails border? =
|
314 |
+
|
315 |
+
When you enable border in gallery settings you will see multiply options for customization of the border. One from this options it's border color. You can select color using color selector
|
316 |
|
317 |
= How to customize hover effect? =
|
318 |
|
326 |
|
327 |
Yes, you can use generated direct link inside particular gallery settings
|
328 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
= How to customize gallery hover effect shutter layout? =
|
330 |
|
331 |
In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which going to help you to build in some gallery images elements into hover
|
338 |
|
339 |
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
|
340 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
= How to enable lazy load in gallery options? =
|
342 |
|
343 |
In gallery settings you can find option to enable/disable lazy load, also there you'll have alot of additional options for customization of the loading process
|
350 |
|
351 |
When you open gallery images manager you can define alt for every gallery image there
|
352 |
|
353 |
+
= How to customize border of the gallery thumbnails? =
|
354 |
+
|
355 |
+
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
|
356 |
+
|
357 |
+
= How I can create custom (grid) layout of the thumbnails? =
|
358 |
+
|
359 |
+
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
|
360 |
+
|
361 |
+
= How to customize gallery layouts for different screen resolutions? =
|
362 |
+
|
363 |
+
In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
|
364 |
+
|
365 |
= How to change transparency of the gallery thumbnails border? =
|
366 |
|
367 |
When you enable border in gallery settings you will see multiply options for customization of the border. When you open color selector you can also select some transparency value there
|
576 |
|
577 |
== Changelog ==
|
578 |
|
579 |
+
= 1.7.13 =
|
580 |
+
* Updated backup section functionality
|
581 |
+
* Added new full backup section
|
582 |
+
|
583 |
= 1.7.12 =
|
584 |
* Updated backup section interface
|
585 |
* Added doubled images statistics block
|
916 |
|
917 |
== Upgrade Notice ==
|
918 |
|
919 |
+
= 1.7.13 =
|
920 |
+
Updated backup section functionality, added new full backup section
|
921 |
+
|
922 |
= 1.7.12 =
|
923 |
Updated backup section interface, added doubled images statistics block
|
924 |
|
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.7.
|
12 |
* Author: RoboSoft (c)
|
13 |
* Author URI: http://robosoft.co/robogallery
|
14 |
* License: GPL-2.0+
|
@@ -19,7 +19,7 @@
|
|
19 |
|
20 |
if ( ! defined( 'WPINC' ) ) die;
|
21 |
define("ROBO_GALLERY", 1);
|
22 |
-
define("ROBO_GALLERY_VERSION", '1.7.
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|
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.7.13
|
12 |
* Author: RoboSoft (c)
|
13 |
* Author URI: http://robosoft.co/robogallery
|
14 |
* License: GPL-2.0+
|
19 |
|
20 |
if ( ! defined( 'WPINC' ) ) die;
|
21 |
define("ROBO_GALLERY", 1);
|
22 |
+
define("ROBO_GALLERY_VERSION", '1.7.13');
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|