Version Description
- Fix - Categories order
Download this release
Release Info
Developer | RazyRx |
Plugin | Advanced AJAX Product Filters |
Version | 1.3.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.1.1
- berocket/framework.php +1 -1
- berocket/includes/custom_post.php +1 -1
- berocket/includes/updater.php +16 -10
- berocket/languages/BeRocket_domain-en_US.mo +0 -0
- berocket/languages/BeRocket_domain-en_US.po +366 -25
- berocket/languages/BeRocket_domain-ru_RU.mo +0 -0
- berocket/languages/BeRocket_domain-ru_RU.po +370 -26
- berocket/languages/BeRocket_domain.pot +357 -19
- includes/functions.php +4 -2
- includes/widget.php +3 -5
- readme.txt +6 -3
- woocommerce-filters.php +3 -3
berocket/framework.php
CHANGED
@@ -873,7 +873,7 @@ if( ! class_exists( 'BeRocket_Framework' ) ) {
|
|
873 |
*
|
874 |
* @return mixed
|
875 |
*/
|
876 |
-
public function recursive_array_set( $default, $options ) {
|
877 |
$result = array();
|
878 |
|
879 |
foreach ( $default as $key => $value ) {
|
873 |
*
|
874 |
* @return mixed
|
875 |
*/
|
876 |
+
public static function recursive_array_set( $default, $options ) {
|
877 |
$result = array();
|
878 |
|
879 |
foreach ( $default as $key => $value ) {
|
berocket/includes/custom_post.php
CHANGED
@@ -297,7 +297,7 @@ if ( ! class_exists('BeRocket_custom_post_class') ) {
|
|
297 |
$post_data = berocket_sanitize_array($_POST[$this->post_name]);
|
298 |
|
299 |
if( is_array($post_data) ) {
|
300 |
-
$settings =
|
301 |
} else {
|
302 |
$settings = $post_data;
|
303 |
}
|
297 |
$post_data = berocket_sanitize_array($_POST[$this->post_name]);
|
298 |
|
299 |
if( is_array($post_data) ) {
|
300 |
+
$settings = BeRocket_Framework::recursive_array_set($this->default_settings, $post_data);
|
301 |
} else {
|
302 |
$settings = $post_data;
|
303 |
}
|
berocket/includes/updater.php
CHANGED
@@ -104,14 +104,14 @@ if ( ! class_exists( 'BeRocket_updater' ) ) {
|
|
104 |
|
105 |
$compatibility_hack = apply_filters('BeRocket_updater_menu_order_custom_post', array());
|
106 |
|
|
|
|
|
107 |
foreach ( $submenu[ 'berocket_account' ] as $item ) {
|
108 |
if ( $item[ 0 ] == 'BeRocket' ) {
|
109 |
-
$
|
110 |
-
$new_order_sort[] = "AAA";
|
111 |
continue;
|
112 |
} elseif ( $item[ 0 ] == 'Account Keys' ) {
|
113 |
-
$
|
114 |
-
$new_order_sort[] = "ZZZ";
|
115 |
continue;
|
116 |
}
|
117 |
|
@@ -128,6 +128,9 @@ if ( ! class_exists( 'BeRocket_updater' ) ) {
|
|
128 |
array_multisort( $new_order_sort, $new_order_temp );
|
129 |
|
130 |
$new_order = array();
|
|
|
|
|
|
|
131 |
foreach ( $new_order_temp as $item ) {
|
132 |
$new_order[] = $item;
|
133 |
|
@@ -137,6 +140,9 @@ if ( ! class_exists( 'BeRocket_updater' ) ) {
|
|
137 |
}
|
138 |
}
|
139 |
}
|
|
|
|
|
|
|
140 |
|
141 |
$submenu[ 'berocket_account' ] = $new_order;
|
142 |
|
@@ -215,11 +221,11 @@ if ( ! class_exists( 'BeRocket_updater' ) ) {
|
|
215 |
'start' => 0,
|
216 |
'end' => 0,
|
217 |
'name' => $plugin[ 'name' ],
|
218 |
-
'html' => '<strong>Please
|
219 |
-
<a class="berocket_button" href="' . ( is_network_admin() ? admin_url( 'network/admin.php?page=berocket_account' ) : admin_url( 'admin.php?page=berocket_account' ) ) . '">activate plugin</a> ' . $plugin[ 'name' ] . ' with help of Plugin/Account Key from
|
220 |
-
<a class="berocket_button" href="' . BeRocket_update_path . 'user" target="_blank">BeRocket account</a></strong>.
|
221 |
-
You can activate plugin in
|
222 |
-
<a class="berocket_button" href="' . ( is_network_admin() ? admin_url( 'network/admin.php?page=berocket_account' ) : admin_url( 'admin.php?page=berocket_account' ) ) . '">BeRocket Account settings</a>
|
223 |
',
|
224 |
'righthtml' => '',
|
225 |
'rightwidth' => 0,
|
@@ -227,7 +233,7 @@ if ( ! class_exists( 'BeRocket_updater' ) ) {
|
|
227 |
'contentwidth' => 1600,
|
228 |
'subscribe' => false,
|
229 |
'priority' => 10,
|
230 |
-
'height' =>
|
231 |
'repeat' => false,
|
232 |
'repeatcount' => 1,
|
233 |
'image' => array(
|
104 |
|
105 |
$compatibility_hack = apply_filters('BeRocket_updater_menu_order_custom_post', array());
|
106 |
|
107 |
+
$BeRocket_item = false;
|
108 |
+
$account_keys_item = false;
|
109 |
foreach ( $submenu[ 'berocket_account' ] as $item ) {
|
110 |
if ( $item[ 0 ] == 'BeRocket' ) {
|
111 |
+
$BeRocket_item = $item;
|
|
|
112 |
continue;
|
113 |
} elseif ( $item[ 0 ] == 'Account Keys' ) {
|
114 |
+
$account_keys_item = $item;
|
|
|
115 |
continue;
|
116 |
}
|
117 |
|
128 |
array_multisort( $new_order_sort, $new_order_temp );
|
129 |
|
130 |
$new_order = array();
|
131 |
+
if( $BeRocket_item !== false ) {
|
132 |
+
$new_order[] = $BeRocket_item;
|
133 |
+
}
|
134 |
foreach ( $new_order_temp as $item ) {
|
135 |
$new_order[] = $item;
|
136 |
|
140 |
}
|
141 |
}
|
142 |
}
|
143 |
+
if( $account_keys_item !== false ) {
|
144 |
+
$new_order[] = $account_keys_item;
|
145 |
+
}
|
146 |
|
147 |
$submenu[ 'berocket_account' ] = $new_order;
|
148 |
|
221 |
'start' => 0,
|
222 |
'end' => 0,
|
223 |
'name' => $plugin[ 'name' ],
|
224 |
+
'html' => '<strong>'.__('Please', 'BeRocket_domain'). '
|
225 |
+
<a class="berocket_button" href="' . ( is_network_admin() ? admin_url( 'network/admin.php?page=berocket_account' ) : admin_url( 'admin.php?page=berocket_account' ) ) . '">' . __('activate plugin', 'BeRocket_domain') . '</a> ' . $plugin[ 'name' ] . ' ' . __('with help of Plugin/Account Key from', 'BeRocket_domain') . '
|
226 |
+
<a class="berocket_button" href="' . BeRocket_update_path . 'user" target="_blank">' . __('BeRocket account', 'BeRocket_domain') . '</a></strong>.
|
227 |
+
' . __('You can activate plugin in', 'BeRocket_domain') . '
|
228 |
+
<a class="berocket_button" href="' . ( is_network_admin() ? admin_url( 'network/admin.php?page=berocket_account' ) : admin_url( 'admin.php?page=berocket_account' ) ) . '">' . __('BeRocket Account settings', 'BeRocket_domain') . '</a>
|
229 |
',
|
230 |
'righthtml' => '',
|
231 |
'rightwidth' => 0,
|
233 |
'contentwidth' => 1600,
|
234 |
'subscribe' => false,
|
235 |
'priority' => 10,
|
236 |
+
'height' => 70,
|
237 |
'repeat' => false,
|
238 |
'repeatcount' => 1,
|
239 |
'image' => array(
|
berocket/languages/BeRocket_domain-en_US.mo
CHANGED
Binary file
|
berocket/languages/BeRocket_domain-en_US.po
CHANGED
@@ -2,76 +2,417 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: BeRocket framework\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: English (United States)\n"
|
9 |
-
"Language:
|
10 |
-
"Plural-Forms: nplurals=2; plural=n != 1
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Loco
|
|
|
15 |
|
16 |
-
#: berocket/framework.php:
|
17 |
msgid "View Plugin Settings"
|
18 |
msgstr "View Plugin Settings"
|
19 |
|
20 |
-
#: berocket/framework.php:
|
21 |
#: berocket/templates/settings.php:14
|
22 |
msgid "Settings"
|
23 |
msgstr "Settings"
|
24 |
|
25 |
-
#: berocket/framework.php:
|
26 |
msgid "View Plugin Documentation"
|
27 |
msgstr "View Plugin Documentation"
|
28 |
|
29 |
-
#: berocket/framework.php:
|
30 |
msgid "Docs"
|
31 |
msgstr "Docs"
|
32 |
|
33 |
-
#: berocket/framework.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "View Premium Version Page"
|
35 |
msgstr "View Premium Version Page"
|
36 |
|
37 |
-
#: berocket/framework.php:
|
38 |
msgid "Premium Version"
|
39 |
msgstr "Premium Version"
|
40 |
|
41 |
-
#: berocket/framework.php:
|
|
|
|
|
|
|
|
|
42 |
msgid "Plugin key"
|
43 |
msgstr "Plugin key"
|
44 |
|
45 |
-
#: berocket/framework.php:
|
46 |
msgid "Key for plugin from BeRocket.com"
|
47 |
msgstr "Key for plugin from BeRocket.com"
|
48 |
|
49 |
-
#: berocket/
|
50 |
-
msgid "
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
-
#: berocket/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
msgid "Default"
|
55 |
msgstr "Default"
|
56 |
|
57 |
-
#: berocket/includes/functions.php:
|
58 |
-
#: berocket/includes/functions.php:
|
59 |
msgid "Upload"
|
60 |
msgstr "Upload"
|
61 |
|
62 |
-
#: berocket/includes/functions.php:
|
63 |
-
#: berocket/includes/functions.php:
|
64 |
msgid "Remove"
|
65 |
msgstr "Remove"
|
66 |
|
67 |
-
#: berocket/includes/functions.php:
|
68 |
msgid "Font Awesome"
|
69 |
msgstr "Font Awesome"
|
70 |
|
71 |
-
#: berocket/includes/functions.php:
|
72 |
msgid "Enter 3 or more characters"
|
73 |
msgstr "Enter 3 or more characters"
|
74 |
|
75 |
-
#: berocket/includes/functions.php:
|
76 |
msgid "Font awesome"
|
77 |
msgstr "Font awesome"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: BeRocket framework\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-11 12:46+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-03-11 12:47+0000\n"
|
7 |
+
"Last-Translator: RazyRx <djcrazysait@mail.ru>\n"
|
8 |
"Language-Team: English (United States)\n"
|
9 |
+
"Language: en_US\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Loco https://localise.biz/\n"
|
15 |
+
"X-Loco-Version: 2.2.1; wp-5.1"
|
16 |
|
17 |
+
#: berocket/framework.php:241
|
18 |
msgid "View Plugin Settings"
|
19 |
msgstr "View Plugin Settings"
|
20 |
|
21 |
+
#: berocket/framework.php:242 berocket/framework.php:442
|
22 |
#: berocket/templates/settings.php:14
|
23 |
msgid "Settings"
|
24 |
msgstr "Settings"
|
25 |
|
26 |
+
#: berocket/framework.php:257
|
27 |
msgid "View Plugin Documentation"
|
28 |
msgstr "View Plugin Documentation"
|
29 |
|
30 |
+
#: berocket/framework.php:258
|
31 |
msgid "Docs"
|
32 |
msgstr "Docs"
|
33 |
|
34 |
+
#: berocket/framework.php:262
|
35 |
+
msgid "View Premium Support Page"
|
36 |
+
msgstr "View Premium Support Page"
|
37 |
+
|
38 |
+
#: berocket/framework.php:263
|
39 |
+
msgid "Premium Support"
|
40 |
+
msgstr "Premium Support"
|
41 |
+
|
42 |
+
#: berocket/framework.php:266
|
43 |
msgid "View Premium Version Page"
|
44 |
msgstr "View Premium Version Page"
|
45 |
|
46 |
+
#: berocket/framework.php:267
|
47 |
msgid "Premium Version"
|
48 |
msgstr "Premium Version"
|
49 |
|
50 |
+
#: berocket/framework.php:542 berocket/framework.php:763
|
51 |
+
msgid "Save Changes"
|
52 |
+
msgstr "Save Changes"
|
53 |
+
|
54 |
+
#: berocket/framework.php:670
|
55 |
msgid "Plugin key"
|
56 |
msgstr "Plugin key"
|
57 |
|
58 |
+
#: berocket/framework.php:676
|
59 |
msgid "Key for plugin from BeRocket.com"
|
60 |
msgstr "Key for plugin from BeRocket.com"
|
61 |
|
62 |
+
#: berocket/includes/admin_notices.php:816
|
63 |
+
msgid ""
|
64 |
+
"Awesome, you've been using %plugin_name% Plugin for more than 1 week. May we "
|
65 |
+
"ask you to give it a 5-star rating on WordPress?"
|
66 |
+
msgstr ""
|
67 |
+
"Awesome, you've been using %plugin_name% Plugin for more than 1 week. May we "
|
68 |
+
"ask you to give it a 5-star rating on WordPress?"
|
69 |
+
|
70 |
+
#: berocket/includes/admin_notices.php:817
|
71 |
+
msgid "May we ask you to give our plugin %plugin_name% a 5-star rating?"
|
72 |
+
msgstr "May we ask you to give our plugin %plugin_name% a 5-star rating?"
|
73 |
+
|
74 |
+
#: berocket/includes/admin_notices.php:828
|
75 |
+
#: berocket/includes/admin_notices.php:970
|
76 |
+
#: berocket/includes/admin_notices.php:1098
|
77 |
+
msgid "Each good feedback is very important for plugin growth"
|
78 |
+
msgstr "Each good feedback is very important for plugin growth"
|
79 |
+
|
80 |
+
#: berocket/includes/admin_notices.php:830
|
81 |
+
#: berocket/includes/admin_notices.php:972
|
82 |
+
msgid "Ok, you deserved it"
|
83 |
+
msgstr "Ok, you deserved it"
|
84 |
+
|
85 |
+
#: berocket/includes/admin_notices.php:839
|
86 |
+
msgid "Maybe later"
|
87 |
+
msgstr "Maybe later"
|
88 |
+
|
89 |
+
#: berocket/includes/admin_notices.php:840
|
90 |
+
msgid "Later"
|
91 |
+
msgstr "Later"
|
92 |
+
|
93 |
+
#: berocket/includes/admin_notices.php:850
|
94 |
+
msgid "I already did"
|
95 |
+
msgstr "I already did"
|
96 |
+
|
97 |
+
#: berocket/includes/admin_notices.php:851
|
98 |
+
msgid "Already"
|
99 |
+
msgstr "Already"
|
100 |
+
|
101 |
+
#: berocket/includes/admin_notices.php:963
|
102 |
+
msgid "May we ask you to give us a 5-star feedback?"
|
103 |
+
msgstr "May we ask you to give us a 5-star feedback?"
|
104 |
+
|
105 |
+
#: berocket/includes/admin_notices.php:973
|
106 |
+
msgid "Support the plugin by setting good feedback.<br>We really need this."
|
107 |
+
msgstr "Support the plugin by setting good feedback.<br>We really need this."
|
108 |
+
|
109 |
+
#: berocket/includes/admin_notices.php:1078
|
110 |
+
msgid "Feature Title"
|
111 |
+
msgstr "Feature Title"
|
112 |
+
|
113 |
+
#: berocket/includes/admin_notices.php:1079
|
114 |
+
msgid "Email (optional)"
|
115 |
+
msgstr "Email (optional)"
|
116 |
+
|
117 |
+
#: berocket/includes/admin_notices.php:1080
|
118 |
+
msgid "Feature Description"
|
119 |
+
msgstr "Feature Description"
|
120 |
+
|
121 |
+
#: berocket/includes/admin_notices.php:1081
|
122 |
+
msgid "SEND FEATURE REQUEST"
|
123 |
+
msgstr "SEND FEATURE REQUEST"
|
124 |
|
125 |
+
#: berocket/includes/admin_notices.php:1090
|
126 |
+
msgid "While you're here, you could rate this plugin"
|
127 |
+
msgstr "While you're here, you could rate this plugin"
|
128 |
+
|
129 |
+
#: berocket/includes/admin_notices.php:1100
|
130 |
+
msgid "This plugin deserves 5 stars"
|
131 |
+
msgstr "This plugin deserves 5 stars"
|
132 |
+
|
133 |
+
#: berocket/includes/admin_notices.php:1102
|
134 |
+
msgid "I'll rate it next time"
|
135 |
+
msgstr "I'll rate it next time"
|
136 |
+
|
137 |
+
#: berocket/includes/admin_notices.php:1109
|
138 |
+
msgid "I already rated it"
|
139 |
+
msgstr "I already rated it"
|
140 |
+
|
141 |
+
#: berocket/includes/custom_post.php:160
|
142 |
+
msgid "Name"
|
143 |
+
msgstr "Name"
|
144 |
+
|
145 |
+
#: berocket/includes/custom_post.php:181
|
146 |
+
msgid "Save content"
|
147 |
+
msgstr "Save content"
|
148 |
+
|
149 |
+
#: berocket/includes/custom_post.php:182
|
150 |
+
msgid "Copy settings from"
|
151 |
+
msgstr "Copy settings from"
|
152 |
+
|
153 |
+
#: berocket/includes/custom_post.php:194
|
154 |
+
msgid "Do not copy"
|
155 |
+
msgstr "Do not copy"
|
156 |
+
|
157 |
+
#: berocket/includes/custom_post.php:205
|
158 |
+
msgid "Copy"
|
159 |
+
msgstr "Copy"
|
160 |
+
|
161 |
+
#: berocket/includes/custom_post.php:242
|
162 |
+
msgid "Delete Permanently"
|
163 |
+
msgstr "Delete Permanently"
|
164 |
+
|
165 |
+
#: berocket/includes/custom_post.php:244
|
166 |
+
msgid "Move to Trash"
|
167 |
+
msgstr "Move to Trash"
|
168 |
+
|
169 |
+
#: berocket/includes/custom_post.php:254
|
170 |
+
msgid "Save"
|
171 |
+
msgstr "Save"
|
172 |
+
|
173 |
+
#: berocket/includes/custom_post.php:254
|
174 |
+
msgid "Save/update notice"
|
175 |
+
msgstr "Save/update notice"
|
176 |
+
|
177 |
+
#: berocket/includes/custom_post.php:407
|
178 |
+
msgid "Order"
|
179 |
+
msgstr "Order"
|
180 |
+
|
181 |
+
#: berocket/includes/updater.php:218
|
182 |
+
msgid "Please"
|
183 |
+
msgstr "Please"
|
184 |
+
|
185 |
+
#: berocket/includes/updater.php:219
|
186 |
+
msgid "activate plugin"
|
187 |
+
msgstr "activate plugin"
|
188 |
+
|
189 |
+
#: berocket/includes/updater.php:219
|
190 |
+
msgid "with help of Plugin/Account Key from"
|
191 |
+
msgstr "with help of Plugin/Account Key from"
|
192 |
+
|
193 |
+
#: berocket/includes/updater.php:220
|
194 |
+
msgid "BeRocket account"
|
195 |
+
msgstr "BeRocket account"
|
196 |
+
|
197 |
+
#: berocket/includes/updater.php:221
|
198 |
+
msgid "You can activate plugin in"
|
199 |
+
msgstr "You can activate plugin in"
|
200 |
+
|
201 |
+
#: berocket/includes/updater.php:222
|
202 |
+
msgid "BeRocket Account settings"
|
203 |
+
msgstr "BeRocket Account settings"
|
204 |
+
|
205 |
+
#: berocket/includes/functions.php:143
|
206 |
msgid "Default"
|
207 |
msgstr "Default"
|
208 |
|
209 |
+
#: berocket/includes/functions.php:170 berocket/includes/functions.php:220
|
210 |
+
#: berocket/includes/functions.php:406
|
211 |
msgid "Upload"
|
212 |
msgstr "Upload"
|
213 |
|
214 |
+
#: berocket/includes/functions.php:172 berocket/includes/functions.php:223
|
215 |
+
#: berocket/includes/functions.php:254 berocket/includes/functions.php:409
|
216 |
msgid "Remove"
|
217 |
msgstr "Remove"
|
218 |
|
219 |
+
#: berocket/includes/functions.php:221 berocket/includes/functions.php:252
|
220 |
msgid "Font Awesome"
|
221 |
msgstr "Font Awesome"
|
222 |
|
223 |
+
#: berocket/includes/functions.php:281
|
224 |
msgid "Enter 3 or more characters"
|
225 |
msgstr "Enter 3 or more characters"
|
226 |
|
227 |
+
#: berocket/includes/functions.php:401
|
228 |
msgid "Font awesome"
|
229 |
msgstr "Font awesome"
|
230 |
+
|
231 |
+
#: berocket/includes/conditions.php:85
|
232 |
+
msgid "Product"
|
233 |
+
msgstr "Product"
|
234 |
+
|
235 |
+
#: berocket/includes/conditions.php:86
|
236 |
+
msgid "On Sale"
|
237 |
+
msgstr "On Sale"
|
238 |
+
|
239 |
+
#: berocket/includes/conditions.php:87
|
240 |
+
msgid "Bestsellers"
|
241 |
+
msgstr "Bestsellers"
|
242 |
+
|
243 |
+
#: berocket/includes/conditions.php:88
|
244 |
+
msgid "Price"
|
245 |
+
msgstr "Price"
|
246 |
+
|
247 |
+
#: berocket/includes/conditions.php:89
|
248 |
+
msgid "Stock status"
|
249 |
+
msgstr "Stock status"
|
250 |
+
|
251 |
+
#: berocket/includes/conditions.php:90
|
252 |
+
msgid "Total sales"
|
253 |
+
msgstr "Total sales"
|
254 |
+
|
255 |
+
#: berocket/includes/conditions.php:91
|
256 |
+
msgid "Category"
|
257 |
+
msgstr "Category"
|
258 |
+
|
259 |
+
#: berocket/includes/conditions.php:92
|
260 |
+
msgid "Product attribute"
|
261 |
+
msgstr "Product attribute"
|
262 |
+
|
263 |
+
#: berocket/includes/conditions.php:93
|
264 |
+
msgid "Product age"
|
265 |
+
msgstr "Product age"
|
266 |
+
|
267 |
+
#: berocket/includes/conditions.php:94
|
268 |
+
msgid "Sale price"
|
269 |
+
msgstr "Sale price"
|
270 |
+
|
271 |
+
#: berocket/includes/conditions.php:95
|
272 |
+
msgid "Regular price"
|
273 |
+
msgstr "Regular price"
|
274 |
+
|
275 |
+
#: berocket/includes/conditions.php:96
|
276 |
+
msgid "Stock quantity"
|
277 |
+
msgstr "Stock quantity"
|
278 |
+
|
279 |
+
#: berocket/includes/conditions.php:97
|
280 |
+
msgid "Featured"
|
281 |
+
msgstr "Featured"
|
282 |
+
|
283 |
+
#: berocket/includes/conditions.php:98
|
284 |
+
msgid "Shipping Class"
|
285 |
+
msgstr "Shipping Class"
|
286 |
+
|
287 |
+
#: berocket/includes/conditions.php:99
|
288 |
+
msgid "Product Type"
|
289 |
+
msgstr "Product Type"
|
290 |
+
|
291 |
+
#: berocket/includes/conditions.php:100
|
292 |
+
msgid "Product Rating"
|
293 |
+
msgstr "Product Rating"
|
294 |
+
|
295 |
+
#: berocket/includes/conditions.php:102
|
296 |
+
msgid "Page ID"
|
297 |
+
msgstr "Page ID"
|
298 |
+
|
299 |
+
#: berocket/includes/conditions.php:103
|
300 |
+
msgid "Product Attribute"
|
301 |
+
msgstr "Product Attribute"
|
302 |
+
|
303 |
+
#: berocket/includes/conditions.php:104
|
304 |
+
msgid "Product Search"
|
305 |
+
msgstr "Product Search"
|
306 |
+
|
307 |
+
#: berocket/includes/conditions.php:105
|
308 |
+
msgid "Product Category"
|
309 |
+
msgstr "Product Category"
|
310 |
+
|
311 |
+
#: berocket/includes/conditions.php:118
|
312 |
+
msgid "Equal"
|
313 |
+
msgstr "Equal"
|
314 |
+
|
315 |
+
#: berocket/includes/conditions.php:119
|
316 |
+
msgid "Not equal"
|
317 |
+
msgstr "Not equal"
|
318 |
+
|
319 |
+
#: berocket/includes/conditions.php:122
|
320 |
+
msgid "Equal or less"
|
321 |
+
msgstr "Equal or less"
|
322 |
+
|
323 |
+
#: berocket/includes/conditions.php:125
|
324 |
+
msgid "Equal or more"
|
325 |
+
msgstr "Equal or more"
|
326 |
+
|
327 |
+
#: berocket/includes/conditions.php:171
|
328 |
+
msgid "Is on sale"
|
329 |
+
msgstr "Is on sale"
|
330 |
+
|
331 |
+
#: berocket/includes/conditions.php:172 berocket/includes/conditions.php:229
|
332 |
+
#: berocket/includes/conditions.php:390
|
333 |
+
msgid "Yes"
|
334 |
+
msgstr "Yes"
|
335 |
+
|
336 |
+
#: berocket/includes/conditions.php:173 berocket/includes/conditions.php:230
|
337 |
+
#: berocket/includes/conditions.php:391
|
338 |
+
msgid "No"
|
339 |
+
msgstr "No"
|
340 |
+
|
341 |
+
#: berocket/includes/conditions.php:181 berocket/includes/conditions.php:274
|
342 |
+
msgid "Count of product"
|
343 |
+
msgstr "Count of product"
|
344 |
+
|
345 |
+
#: berocket/includes/conditions.php:227
|
346 |
+
msgid "Has Rating:"
|
347 |
+
msgstr "Has Rating:"
|
348 |
+
|
349 |
+
#: berocket/includes/conditions.php:243 berocket/includes/conditions.php:364
|
350 |
+
#: berocket/includes/conditions.php:377
|
351 |
+
msgid "From:"
|
352 |
+
msgstr "From:"
|
353 |
+
|
354 |
+
#: berocket/includes/conditions.php:244 berocket/includes/conditions.php:365
|
355 |
+
#: berocket/includes/conditions.php:378
|
356 |
+
msgid "To:"
|
357 |
+
msgstr "To:"
|
358 |
+
|
359 |
+
#: berocket/includes/conditions.php:246
|
360 |
+
msgid "Product price"
|
361 |
+
msgstr "Product price"
|
362 |
+
|
363 |
+
#: berocket/includes/conditions.php:247
|
364 |
+
msgid "With tax"
|
365 |
+
msgstr "With tax"
|
366 |
+
|
367 |
+
#: berocket/includes/conditions.php:248
|
368 |
+
msgid "Without tax"
|
369 |
+
msgstr "Without tax"
|
370 |
+
|
371 |
+
#: berocket/includes/conditions.php:263
|
372 |
+
msgid "In stock"
|
373 |
+
msgstr "In stock"
|
374 |
+
|
375 |
+
#: berocket/includes/conditions.php:264
|
376 |
+
msgid "Out of stock"
|
377 |
+
msgstr "Out of stock"
|
378 |
+
|
379 |
+
#: berocket/includes/conditions.php:265
|
380 |
+
msgid "On Backorder"
|
381 |
+
msgstr "On Backorder"
|
382 |
+
|
383 |
+
#: berocket/includes/conditions.php:292
|
384 |
+
msgid "Include subcategories"
|
385 |
+
msgstr "Include subcategories"
|
386 |
+
|
387 |
+
#: berocket/includes/conditions.php:325
|
388 |
+
msgid "Select attribute"
|
389 |
+
msgstr "Select attribute"
|
390 |
+
|
391 |
+
#: berocket/includes/conditions.php:352
|
392 |
+
msgid "day(s)"
|
393 |
+
msgstr "day(s)"
|
394 |
+
|
395 |
+
#: berocket/includes/conditions.php:386
|
396 |
+
msgid "Products in stock"
|
397 |
+
msgstr "Products in stock"
|
398 |
+
|
399 |
+
#: berocket/includes/conditions.php:388
|
400 |
+
msgid "Backorder allowed"
|
401 |
+
msgstr "Backorder allowed"
|
402 |
+
|
403 |
+
#: berocket/includes/conditions.php:389
|
404 |
+
msgid "Any"
|
405 |
+
msgstr "Any"
|
406 |
+
|
407 |
+
#: berocket/libraries/addons/addons.php:105
|
408 |
+
msgid "Active Addons"
|
409 |
+
msgstr "Active Addons"
|
410 |
+
|
411 |
+
#: berocket/libraries/addons/addons.php:109
|
412 |
+
msgid "Inactive Addons"
|
413 |
+
msgstr "Inactive Addons"
|
414 |
+
|
415 |
+
#: berocket/libraries/addons/addons.php:151
|
416 |
+
#: berocket/libraries/templates/templates.php:163
|
417 |
+
msgid "Go Premium"
|
418 |
+
msgstr "Go Premium"
|
berocket/languages/BeRocket_domain-ru_RU.mo
CHANGED
Binary file
|
berocket/languages/BeRocket_domain-ru_RU.po
CHANGED
@@ -2,77 +2,421 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: BeRocket framework\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
-
"Language:
|
10 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
11 |
-
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2)
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Generator: Loco
|
|
|
16 |
|
17 |
-
#: berocket/framework.php:
|
18 |
msgid "View Plugin Settings"
|
19 |
msgstr "Показать Настройки Плагина"
|
20 |
|
21 |
-
#: berocket/framework.php:
|
22 |
#: berocket/templates/settings.php:14
|
23 |
msgid "Settings"
|
24 |
msgstr "Настройки"
|
25 |
|
26 |
-
#: berocket/framework.php:
|
27 |
msgid "View Plugin Documentation"
|
28 |
msgstr "Показать Документацию Плагина"
|
29 |
|
30 |
-
#: berocket/framework.php:
|
31 |
msgid "Docs"
|
32 |
msgstr "Документация"
|
33 |
|
34 |
-
#: berocket/framework.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "View Premium Version Page"
|
36 |
msgstr "Показать Страницу Премиум Версии"
|
37 |
|
38 |
-
#: berocket/framework.php:
|
39 |
msgid "Premium Version"
|
40 |
msgstr "Премиум Версия"
|
41 |
|
42 |
-
#: berocket/framework.php:
|
|
|
|
|
|
|
|
|
43 |
msgid "Plugin key"
|
44 |
msgstr "Ключ плагина"
|
45 |
|
46 |
-
#: berocket/framework.php:
|
47 |
msgid "Key for plugin from BeRocket.com"
|
48 |
msgstr "Ключ для плагина с сайта BeRocket.com"
|
49 |
|
50 |
-
#: berocket/
|
51 |
-
msgid "
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
-
#: berocket/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Default"
|
56 |
msgstr "Стандартные"
|
57 |
|
58 |
-
#: berocket/includes/functions.php:
|
59 |
-
#: berocket/includes/functions.php:
|
60 |
msgid "Upload"
|
61 |
msgstr "Загрузить"
|
62 |
|
63 |
-
#: berocket/includes/functions.php:
|
64 |
-
#: berocket/includes/functions.php:
|
65 |
msgid "Remove"
|
66 |
msgstr "Убрать"
|
67 |
|
68 |
-
#: berocket/includes/functions.php:
|
69 |
msgid "Font Awesome"
|
70 |
msgstr "Font Awesome"
|
71 |
|
72 |
-
#: berocket/includes/functions.php:
|
73 |
msgid "Enter 3 or more characters"
|
74 |
msgstr "Введите 3 или больше символа"
|
75 |
|
76 |
-
#: berocket/includes/functions.php:
|
77 |
msgid "Font awesome"
|
78 |
msgstr "Font awesome"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: BeRocket framework\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-11 12:46+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-03-11 12:49+0000\n"
|
7 |
+
"Last-Translator: RazyRx <djcrazysait@mail.ru>\n"
|
8 |
+
"Language-Team: Русский\n"
|
9 |
+
"Language: ru_RU\n"
|
10 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
11 |
+
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.2.1; wp-5.1"
|
17 |
|
18 |
+
#: berocket/framework.php:241
|
19 |
msgid "View Plugin Settings"
|
20 |
msgstr "Показать Настройки Плагина"
|
21 |
|
22 |
+
#: berocket/framework.php:242 berocket/framework.php:442
|
23 |
#: berocket/templates/settings.php:14
|
24 |
msgid "Settings"
|
25 |
msgstr "Настройки"
|
26 |
|
27 |
+
#: berocket/framework.php:257
|
28 |
msgid "View Plugin Documentation"
|
29 |
msgstr "Показать Документацию Плагина"
|
30 |
|
31 |
+
#: berocket/framework.php:258
|
32 |
msgid "Docs"
|
33 |
msgstr "Документация"
|
34 |
|
35 |
+
#: berocket/framework.php:262
|
36 |
+
msgid "View Premium Support Page"
|
37 |
+
msgstr "Показать Страницу Премиум Поддержки"
|
38 |
+
|
39 |
+
#: berocket/framework.php:263
|
40 |
+
msgid "Premium Support"
|
41 |
+
msgstr "Премиум Поддержка"
|
42 |
+
|
43 |
+
#: berocket/framework.php:266
|
44 |
msgid "View Premium Version Page"
|
45 |
msgstr "Показать Страницу Премиум Версии"
|
46 |
|
47 |
+
#: berocket/framework.php:267
|
48 |
msgid "Premium Version"
|
49 |
msgstr "Премиум Версия"
|
50 |
|
51 |
+
#: berocket/framework.php:542 berocket/framework.php:763
|
52 |
+
msgid "Save Changes"
|
53 |
+
msgstr "Сохранить изменения"
|
54 |
+
|
55 |
+
#: berocket/framework.php:670
|
56 |
msgid "Plugin key"
|
57 |
msgstr "Ключ плагина"
|
58 |
|
59 |
+
#: berocket/framework.php:676
|
60 |
msgid "Key for plugin from BeRocket.com"
|
61 |
msgstr "Ключ для плагина с сайта BeRocket.com"
|
62 |
|
63 |
+
#: berocket/includes/admin_notices.php:816
|
64 |
+
msgid ""
|
65 |
+
"Awesome, you've been using %plugin_name% Plugin for more than 1 week. May we "
|
66 |
+
"ask you to give it a 5-star rating on WordPress?"
|
67 |
+
msgstr ""
|
68 |
+
"Отлично, вы используете плагин %plugin_name% более 1 недели. Можем ли мы "
|
69 |
+
"попросить вас поставить ему рейтинг 5-звезд на WordPress?"
|
70 |
+
|
71 |
+
#: berocket/includes/admin_notices.php:817
|
72 |
+
msgid "May we ask you to give our plugin %plugin_name% a 5-star rating?"
|
73 |
+
msgstr ""
|
74 |
+
"Можем ли мы попросить вас поставить нашему плагину %plugin_name% рейтинг 5-"
|
75 |
+
"звезд?"
|
76 |
+
|
77 |
+
#: berocket/includes/admin_notices.php:828
|
78 |
+
#: berocket/includes/admin_notices.php:970
|
79 |
+
#: berocket/includes/admin_notices.php:1098
|
80 |
+
msgid "Each good feedback is very important for plugin growth"
|
81 |
+
msgstr "Каждый хороший отзыв очень важен для роста плагина."
|
82 |
+
|
83 |
+
#: berocket/includes/admin_notices.php:830
|
84 |
+
#: berocket/includes/admin_notices.php:972
|
85 |
+
msgid "Ok, you deserved it"
|
86 |
+
msgstr "Хорошо, вы заслужили это"
|
87 |
+
|
88 |
+
#: berocket/includes/admin_notices.php:839
|
89 |
+
msgid "Maybe later"
|
90 |
+
msgstr "Может позже"
|
91 |
+
|
92 |
+
#: berocket/includes/admin_notices.php:840
|
93 |
+
msgid "Later"
|
94 |
+
msgstr "Позже"
|
95 |
+
|
96 |
+
#: berocket/includes/admin_notices.php:850
|
97 |
+
msgid "I already did"
|
98 |
+
msgstr "Я уже сделал это"
|
99 |
+
|
100 |
+
#: berocket/includes/admin_notices.php:851
|
101 |
+
msgid "Already"
|
102 |
+
msgstr "Сделано"
|
103 |
+
|
104 |
+
#: berocket/includes/admin_notices.php:963
|
105 |
+
msgid "May we ask you to give us a 5-star feedback?"
|
106 |
+
msgstr "Можем ли мы попросить вас дать нам отзыв 5-звезд?"
|
107 |
+
|
108 |
+
#: berocket/includes/admin_notices.php:973
|
109 |
+
msgid "Support the plugin by setting good feedback.<br>We really need this."
|
110 |
+
msgstr ""
|
111 |
+
"Поддержите плагин, поставив хороший отзыв. <br> Нам это действительно нужно."
|
112 |
+
|
113 |
+
#: berocket/includes/admin_notices.php:1078
|
114 |
+
msgid "Feature Title"
|
115 |
+
msgstr "Название функции"
|
116 |
+
|
117 |
+
#: berocket/includes/admin_notices.php:1079
|
118 |
+
msgid "Email (optional)"
|
119 |
+
msgstr "Электронная почта (необязательно)"
|
120 |
+
|
121 |
+
#: berocket/includes/admin_notices.php:1080
|
122 |
+
msgid "Feature Description"
|
123 |
+
msgstr "Описание функции"
|
124 |
|
125 |
+
#: berocket/includes/admin_notices.php:1081
|
126 |
+
msgid "SEND FEATURE REQUEST"
|
127 |
+
msgstr "ОТПРАВИТЬ ЗАПРОС ФУНКЦИИ"
|
128 |
+
|
129 |
+
#: berocket/includes/admin_notices.php:1090
|
130 |
+
msgid "While you're here, you could rate this plugin"
|
131 |
+
msgstr "Пока вы здесь, вы можете оценить этот плагин"
|
132 |
+
|
133 |
+
#: berocket/includes/admin_notices.php:1100
|
134 |
+
msgid "This plugin deserves 5 stars"
|
135 |
+
msgstr "Этот плагин заслуживает 5 звезд"
|
136 |
+
|
137 |
+
#: berocket/includes/admin_notices.php:1102
|
138 |
+
msgid "I'll rate it next time"
|
139 |
+
msgstr "Я оценю в следующий раз"
|
140 |
+
|
141 |
+
#: berocket/includes/admin_notices.php:1109
|
142 |
+
msgid "I already rated it"
|
143 |
+
msgstr "Я уже оценил его"
|
144 |
+
|
145 |
+
#: berocket/includes/custom_post.php:160
|
146 |
+
msgid "Name"
|
147 |
+
msgstr "Имя"
|
148 |
+
|
149 |
+
#: berocket/includes/custom_post.php:181
|
150 |
+
msgid "Save content"
|
151 |
+
msgstr "Сохранить контент"
|
152 |
+
|
153 |
+
#: berocket/includes/custom_post.php:182
|
154 |
+
msgid "Copy settings from"
|
155 |
+
msgstr "Копировать настройки с"
|
156 |
+
|
157 |
+
#: berocket/includes/custom_post.php:194
|
158 |
+
msgid "Do not copy"
|
159 |
+
msgstr "Не копировать"
|
160 |
+
|
161 |
+
#: berocket/includes/custom_post.php:205
|
162 |
+
msgid "Copy"
|
163 |
+
msgstr "Копировать"
|
164 |
+
|
165 |
+
#: berocket/includes/custom_post.php:242
|
166 |
+
msgid "Delete Permanently"
|
167 |
+
msgstr "Удалить Навсегда"
|
168 |
+
|
169 |
+
#: berocket/includes/custom_post.php:244
|
170 |
+
msgid "Move to Trash"
|
171 |
+
msgstr "Отправить в корзину"
|
172 |
+
|
173 |
+
#: berocket/includes/custom_post.php:254
|
174 |
+
msgid "Save"
|
175 |
+
msgstr "Сохранить"
|
176 |
+
|
177 |
+
#: berocket/includes/custom_post.php:254
|
178 |
+
msgid "Save/update notice"
|
179 |
+
msgstr "Сохранить/обновить уведомление"
|
180 |
+
|
181 |
+
#: berocket/includes/custom_post.php:407
|
182 |
+
msgid "Order"
|
183 |
+
msgstr "Порядок"
|
184 |
+
|
185 |
+
#: berocket/includes/updater.php:218
|
186 |
+
msgid "Please"
|
187 |
+
msgstr "Пожалуйста"
|
188 |
+
|
189 |
+
#: berocket/includes/updater.php:219
|
190 |
+
msgid "activate plugin"
|
191 |
+
msgstr "активируйте плагин"
|
192 |
+
|
193 |
+
#: berocket/includes/updater.php:219
|
194 |
+
msgid "with help of Plugin/Account Key from"
|
195 |
+
msgstr "с помощью ключа Плагина/Аккаунта с"
|
196 |
+
|
197 |
+
#: berocket/includes/updater.php:220
|
198 |
+
msgid "BeRocket account"
|
199 |
+
msgstr "учетной записи BeRocket"
|
200 |
+
|
201 |
+
#: berocket/includes/updater.php:221
|
202 |
+
msgid "You can activate plugin in"
|
203 |
+
msgstr "Вы можете активировать плагин в"
|
204 |
+
|
205 |
+
#: berocket/includes/updater.php:222
|
206 |
+
msgid "BeRocket Account settings"
|
207 |
+
msgstr "настройках Учетной Записи BeRocket"
|
208 |
+
|
209 |
+
#: berocket/includes/functions.php:143
|
210 |
msgid "Default"
|
211 |
msgstr "Стандартные"
|
212 |
|
213 |
+
#: berocket/includes/functions.php:170 berocket/includes/functions.php:220
|
214 |
+
#: berocket/includes/functions.php:406
|
215 |
msgid "Upload"
|
216 |
msgstr "Загрузить"
|
217 |
|
218 |
+
#: berocket/includes/functions.php:172 berocket/includes/functions.php:223
|
219 |
+
#: berocket/includes/functions.php:254 berocket/includes/functions.php:409
|
220 |
msgid "Remove"
|
221 |
msgstr "Убрать"
|
222 |
|
223 |
+
#: berocket/includes/functions.php:221 berocket/includes/functions.php:252
|
224 |
msgid "Font Awesome"
|
225 |
msgstr "Font Awesome"
|
226 |
|
227 |
+
#: berocket/includes/functions.php:281
|
228 |
msgid "Enter 3 or more characters"
|
229 |
msgstr "Введите 3 или больше символа"
|
230 |
|
231 |
+
#: berocket/includes/functions.php:401
|
232 |
msgid "Font awesome"
|
233 |
msgstr "Font awesome"
|
234 |
+
|
235 |
+
#: berocket/includes/conditions.php:85
|
236 |
+
msgid "Product"
|
237 |
+
msgstr "Продукт"
|
238 |
+
|
239 |
+
#: berocket/includes/conditions.php:86
|
240 |
+
msgid "On Sale"
|
241 |
+
msgstr "На распродаже"
|
242 |
+
|
243 |
+
#: berocket/includes/conditions.php:87
|
244 |
+
msgid "Bestsellers"
|
245 |
+
msgstr "Бестселлеры"
|
246 |
+
|
247 |
+
#: berocket/includes/conditions.php:88
|
248 |
+
msgid "Price"
|
249 |
+
msgstr "Цена"
|
250 |
+
|
251 |
+
#: berocket/includes/conditions.php:89
|
252 |
+
msgid "Stock status"
|
253 |
+
msgstr "Состояние на складе"
|
254 |
+
|
255 |
+
#: berocket/includes/conditions.php:90
|
256 |
+
msgid "Total sales"
|
257 |
+
msgstr "Всего продано"
|
258 |
+
|
259 |
+
#: berocket/includes/conditions.php:91
|
260 |
+
msgid "Category"
|
261 |
+
msgstr "Категория"
|
262 |
+
|
263 |
+
#: berocket/includes/conditions.php:92
|
264 |
+
msgid "Product attribute"
|
265 |
+
msgstr "Атрибут продукта"
|
266 |
+
|
267 |
+
#: berocket/includes/conditions.php:93
|
268 |
+
msgid "Product age"
|
269 |
+
msgstr "Возраст продукта"
|
270 |
+
|
271 |
+
#: berocket/includes/conditions.php:94
|
272 |
+
msgid "Sale price"
|
273 |
+
msgstr "Цена со скидкой"
|
274 |
+
|
275 |
+
#: berocket/includes/conditions.php:95
|
276 |
+
msgid "Regular price"
|
277 |
+
msgstr "Обычная цена"
|
278 |
+
|
279 |
+
#: berocket/includes/conditions.php:96
|
280 |
+
msgid "Stock quantity"
|
281 |
+
msgstr "Количество в запасе"
|
282 |
+
|
283 |
+
#: berocket/includes/conditions.php:97
|
284 |
+
msgid "Featured"
|
285 |
+
msgstr "Сопутствующие"
|
286 |
+
|
287 |
+
#: berocket/includes/conditions.php:98
|
288 |
+
msgid "Shipping Class"
|
289 |
+
msgstr "Класс Доставки"
|
290 |
+
|
291 |
+
#: berocket/includes/conditions.php:99
|
292 |
+
msgid "Product Type"
|
293 |
+
msgstr "Тип Продукта"
|
294 |
+
|
295 |
+
#: berocket/includes/conditions.php:100
|
296 |
+
msgid "Product Rating"
|
297 |
+
msgstr "Рейтинг Продукта"
|
298 |
+
|
299 |
+
#: berocket/includes/conditions.php:102
|
300 |
+
msgid "Page ID"
|
301 |
+
msgstr "ID Страницы"
|
302 |
+
|
303 |
+
#: berocket/includes/conditions.php:103
|
304 |
+
msgid "Product Attribute"
|
305 |
+
msgstr "Атрибут Продукта"
|
306 |
+
|
307 |
+
#: berocket/includes/conditions.php:104
|
308 |
+
msgid "Product Search"
|
309 |
+
msgstr "Поиск Продукта"
|
310 |
+
|
311 |
+
#: berocket/includes/conditions.php:105
|
312 |
+
msgid "Product Category"
|
313 |
+
msgstr "Категория Продукта"
|
314 |
+
|
315 |
+
#: berocket/includes/conditions.php:118
|
316 |
+
msgid "Equal"
|
317 |
+
msgstr "Равно"
|
318 |
+
|
319 |
+
#: berocket/includes/conditions.php:119
|
320 |
+
msgid "Not equal"
|
321 |
+
msgstr "Не равно"
|
322 |
+
|
323 |
+
#: berocket/includes/conditions.php:122
|
324 |
+
msgid "Equal or less"
|
325 |
+
msgstr "Равно или меньше"
|
326 |
+
|
327 |
+
#: berocket/includes/conditions.php:125
|
328 |
+
msgid "Equal or more"
|
329 |
+
msgstr "Равно или больше"
|
330 |
+
|
331 |
+
#: berocket/includes/conditions.php:171
|
332 |
+
msgid "Is on sale"
|
333 |
+
msgstr "Или на распродаже"
|
334 |
+
|
335 |
+
#: berocket/includes/conditions.php:172 berocket/includes/conditions.php:229
|
336 |
+
#: berocket/includes/conditions.php:390
|
337 |
+
msgid "Yes"
|
338 |
+
msgstr "Да"
|
339 |
+
|
340 |
+
#: berocket/includes/conditions.php:173 berocket/includes/conditions.php:230
|
341 |
+
#: berocket/includes/conditions.php:391
|
342 |
+
msgid "No"
|
343 |
+
msgstr "Нет"
|
344 |
+
|
345 |
+
#: berocket/includes/conditions.php:181 berocket/includes/conditions.php:274
|
346 |
+
msgid "Count of product"
|
347 |
+
msgstr "Количество продукта"
|
348 |
+
|
349 |
+
#: berocket/includes/conditions.php:227
|
350 |
+
msgid "Has Rating:"
|
351 |
+
msgstr "Имеет рейтинг:"
|
352 |
+
|
353 |
+
#: berocket/includes/conditions.php:243 berocket/includes/conditions.php:364
|
354 |
+
#: berocket/includes/conditions.php:377
|
355 |
+
msgid "From:"
|
356 |
+
msgstr "От:"
|
357 |
+
|
358 |
+
#: berocket/includes/conditions.php:244 berocket/includes/conditions.php:365
|
359 |
+
#: berocket/includes/conditions.php:378
|
360 |
+
msgid "To:"
|
361 |
+
msgstr "До:"
|
362 |
+
|
363 |
+
#: berocket/includes/conditions.php:246
|
364 |
+
msgid "Product price"
|
365 |
+
msgstr "Цена продукта"
|
366 |
+
|
367 |
+
#: berocket/includes/conditions.php:247
|
368 |
+
msgid "With tax"
|
369 |
+
msgstr "С налогами"
|
370 |
+
|
371 |
+
#: berocket/includes/conditions.php:248
|
372 |
+
msgid "Without tax"
|
373 |
+
msgstr "Без налогов"
|
374 |
+
|
375 |
+
#: berocket/includes/conditions.php:263
|
376 |
+
msgid "In stock"
|
377 |
+
msgstr "В наличии"
|
378 |
+
|
379 |
+
#: berocket/includes/conditions.php:264
|
380 |
+
msgid "Out of stock"
|
381 |
+
msgstr "Не в наличии"
|
382 |
+
|
383 |
+
#: berocket/includes/conditions.php:265
|
384 |
+
msgid "On Backorder"
|
385 |
+
msgstr "С предзаказом"
|
386 |
+
|
387 |
+
#: berocket/includes/conditions.php:292
|
388 |
+
msgid "Include subcategories"
|
389 |
+
msgstr "Включать подкатегории"
|
390 |
+
|
391 |
+
#: berocket/includes/conditions.php:325
|
392 |
+
msgid "Select attribute"
|
393 |
+
msgstr "Выбрать атрибут"
|
394 |
+
|
395 |
+
#: berocket/includes/conditions.php:352
|
396 |
+
msgid "day(s)"
|
397 |
+
msgstr "день(дней)"
|
398 |
+
|
399 |
+
#: berocket/includes/conditions.php:386
|
400 |
+
msgid "Products in stock"
|
401 |
+
msgstr "Продуктов в наличии"
|
402 |
+
|
403 |
+
#: berocket/includes/conditions.php:388
|
404 |
+
msgid "Backorder allowed"
|
405 |
+
msgstr "Предзаказ разрешен"
|
406 |
+
|
407 |
+
#: berocket/includes/conditions.php:389
|
408 |
+
msgid "Any"
|
409 |
+
msgstr "Любой"
|
410 |
+
|
411 |
+
#: berocket/libraries/addons/addons.php:105
|
412 |
+
msgid "Active Addons"
|
413 |
+
msgstr "Активные Аддоны"
|
414 |
+
|
415 |
+
#: berocket/libraries/addons/addons.php:109
|
416 |
+
msgid "Inactive Addons"
|
417 |
+
msgstr "Не Активные аддоны"
|
418 |
+
|
419 |
+
#: berocket/libraries/addons/addons.php:151
|
420 |
+
#: berocket/libraries/templates/templates.php:163
|
421 |
+
msgid "Go Premium"
|
422 |
+
msgstr "Премиум"
|
berocket/languages/BeRocket_domain.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: PACKAGE VERSION\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date:
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -14,65 +14,403 @@ msgstr ""
|
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Loco https://localise.biz/"
|
16 |
|
17 |
-
#: berocket/framework.php:
|
18 |
msgid "View Plugin Settings"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: berocket/framework.php:
|
22 |
#: berocket/templates/settings.php:14
|
23 |
msgid "Settings"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: berocket/framework.php:
|
27 |
msgid "View Plugin Documentation"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: berocket/framework.php:
|
31 |
msgid "Docs"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: berocket/framework.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "View Premium Version Page"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: berocket/framework.php:
|
39 |
msgid "Premium Version"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: berocket/framework.php:
|
|
|
|
|
|
|
|
|
43 |
msgid "Plugin key"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: berocket/framework.php:
|
47 |
msgid "Key for plugin from BeRocket.com"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: berocket/
|
51 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: berocket/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Default"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: berocket/includes/functions.php:
|
59 |
-
#: berocket/includes/functions.php:
|
60 |
msgid "Upload"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: berocket/includes/functions.php:
|
64 |
-
#: berocket/includes/functions.php:
|
65 |
msgid "Remove"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: berocket/includes/functions.php:
|
69 |
msgid "Font Awesome"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: berocket/includes/functions.php:
|
73 |
msgid "Enter 3 or more characters"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: berocket/includes/functions.php:
|
77 |
msgid "Font awesome"
|
78 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: PACKAGE VERSION\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2019-03-11 12:46+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Loco https://localise.biz/"
|
16 |
|
17 |
+
#: berocket/framework.php:241
|
18 |
msgid "View Plugin Settings"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: berocket/framework.php:242 berocket/framework.php:442
|
22 |
#: berocket/templates/settings.php:14
|
23 |
msgid "Settings"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: berocket/framework.php:257
|
27 |
msgid "View Plugin Documentation"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: berocket/framework.php:258
|
31 |
msgid "Docs"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: berocket/framework.php:262
|
35 |
+
msgid "View Premium Support Page"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: berocket/framework.php:263
|
39 |
+
msgid "Premium Support"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: berocket/framework.php:266
|
43 |
msgid "View Premium Version Page"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: berocket/framework.php:267
|
47 |
msgid "Premium Version"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: berocket/framework.php:542 berocket/framework.php:763
|
51 |
+
msgid "Save Changes"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: berocket/framework.php:670
|
55 |
msgid "Plugin key"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: berocket/framework.php:676
|
59 |
msgid "Key for plugin from BeRocket.com"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: berocket/includes/admin_notices.php:816
|
63 |
+
msgid ""
|
64 |
+
"Awesome, you've been using %plugin_name% Plugin for more than 1 week. May we "
|
65 |
+
"ask you to give it a 5-star rating on WordPress?"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: berocket/includes/admin_notices.php:817
|
69 |
+
msgid "May we ask you to give our plugin %plugin_name% a 5-star rating?"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: berocket/includes/admin_notices.php:828
|
73 |
+
#: berocket/includes/admin_notices.php:970
|
74 |
+
#: berocket/includes/admin_notices.php:1098
|
75 |
+
msgid "Each good feedback is very important for plugin growth"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: berocket/includes/admin_notices.php:830
|
79 |
+
#: berocket/includes/admin_notices.php:972
|
80 |
+
msgid "Ok, you deserved it"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: berocket/includes/admin_notices.php:839
|
84 |
+
msgid "Maybe later"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: berocket/includes/admin_notices.php:840
|
88 |
+
msgid "Later"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: berocket/includes/admin_notices.php:850
|
92 |
+
msgid "I already did"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: berocket/includes/admin_notices.php:851
|
96 |
+
msgid "Already"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: berocket/includes/admin_notices.php:963
|
100 |
+
msgid "May we ask you to give us a 5-star feedback?"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: berocket/includes/admin_notices.php:973
|
104 |
+
msgid "Support the plugin by setting good feedback.<br>We really need this."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: berocket/includes/admin_notices.php:1078
|
108 |
+
msgid "Feature Title"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: berocket/includes/admin_notices.php:1079
|
112 |
+
msgid "Email (optional)"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: berocket/includes/admin_notices.php:1080
|
116 |
+
msgid "Feature Description"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: berocket/includes/admin_notices.php:1081
|
120 |
+
msgid "SEND FEATURE REQUEST"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: berocket/includes/admin_notices.php:1090
|
124 |
+
msgid "While you're here, you could rate this plugin"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: berocket/includes/admin_notices.php:1100
|
128 |
+
msgid "This plugin deserves 5 stars"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: berocket/includes/admin_notices.php:1102
|
132 |
+
msgid "I'll rate it next time"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: berocket/includes/admin_notices.php:1109
|
136 |
+
msgid "I already rated it"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: berocket/includes/custom_post.php:160
|
140 |
+
msgid "Name"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: berocket/includes/custom_post.php:181
|
144 |
+
msgid "Save content"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: berocket/includes/custom_post.php:182
|
148 |
+
msgid "Copy settings from"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: berocket/includes/custom_post.php:194
|
152 |
+
msgid "Do not copy"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: berocket/includes/custom_post.php:205
|
156 |
+
msgid "Copy"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: berocket/includes/custom_post.php:242
|
160 |
+
msgid "Delete Permanently"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: berocket/includes/custom_post.php:244
|
164 |
+
msgid "Move to Trash"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: berocket/includes/custom_post.php:254
|
168 |
+
msgid "Save"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: berocket/includes/custom_post.php:254
|
172 |
+
msgid "Save/update notice"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: berocket/includes/custom_post.php:407
|
176 |
+
msgid "Order"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: berocket/includes/updater.php:218
|
180 |
+
msgid "Please"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: berocket/includes/updater.php:219
|
184 |
+
msgid "activate plugin"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: berocket/includes/updater.php:219
|
188 |
+
msgid "with help of Plugin/Account Key from"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: berocket/includes/updater.php:220
|
192 |
+
msgid "BeRocket account"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: berocket/includes/updater.php:221
|
196 |
+
msgid "You can activate plugin in"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: berocket/includes/updater.php:222
|
200 |
+
msgid "BeRocket Account settings"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: berocket/includes/functions.php:143
|
204 |
msgid "Default"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: berocket/includes/functions.php:170 berocket/includes/functions.php:220
|
208 |
+
#: berocket/includes/functions.php:406
|
209 |
msgid "Upload"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: berocket/includes/functions.php:172 berocket/includes/functions.php:223
|
213 |
+
#: berocket/includes/functions.php:254 berocket/includes/functions.php:409
|
214 |
msgid "Remove"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: berocket/includes/functions.php:221 berocket/includes/functions.php:252
|
218 |
msgid "Font Awesome"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: berocket/includes/functions.php:281
|
222 |
msgid "Enter 3 or more characters"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: berocket/includes/functions.php:401
|
226 |
msgid "Font awesome"
|
227 |
msgstr ""
|
228 |
+
|
229 |
+
#: berocket/includes/conditions.php:85
|
230 |
+
msgid "Product"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: berocket/includes/conditions.php:86
|
234 |
+
msgid "On Sale"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: berocket/includes/conditions.php:87
|
238 |
+
msgid "Bestsellers"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: berocket/includes/conditions.php:88
|
242 |
+
msgid "Price"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: berocket/includes/conditions.php:89
|
246 |
+
msgid "Stock status"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: berocket/includes/conditions.php:90
|
250 |
+
msgid "Total sales"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: berocket/includes/conditions.php:91
|
254 |
+
msgid "Category"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: berocket/includes/conditions.php:92
|
258 |
+
msgid "Product attribute"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: berocket/includes/conditions.php:93
|
262 |
+
msgid "Product age"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: berocket/includes/conditions.php:94
|
266 |
+
msgid "Sale price"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: berocket/includes/conditions.php:95
|
270 |
+
msgid "Regular price"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: berocket/includes/conditions.php:96
|
274 |
+
msgid "Stock quantity"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: berocket/includes/conditions.php:97
|
278 |
+
msgid "Featured"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: berocket/includes/conditions.php:98
|
282 |
+
msgid "Shipping Class"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: berocket/includes/conditions.php:99
|
286 |
+
msgid "Product Type"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: berocket/includes/conditions.php:100
|
290 |
+
msgid "Product Rating"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: berocket/includes/conditions.php:102
|
294 |
+
msgid "Page ID"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: berocket/includes/conditions.php:103
|
298 |
+
msgid "Product Attribute"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: berocket/includes/conditions.php:104
|
302 |
+
msgid "Product Search"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: berocket/includes/conditions.php:105
|
306 |
+
msgid "Product Category"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: berocket/includes/conditions.php:118
|
310 |
+
msgid "Equal"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: berocket/includes/conditions.php:119
|
314 |
+
msgid "Not equal"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: berocket/includes/conditions.php:122
|
318 |
+
msgid "Equal or less"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: berocket/includes/conditions.php:125
|
322 |
+
msgid "Equal or more"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: berocket/includes/conditions.php:171
|
326 |
+
msgid "Is on sale"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: berocket/includes/conditions.php:172 berocket/includes/conditions.php:229
|
330 |
+
#: berocket/includes/conditions.php:390
|
331 |
+
msgid "Yes"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: berocket/includes/conditions.php:173 berocket/includes/conditions.php:230
|
335 |
+
#: berocket/includes/conditions.php:391
|
336 |
+
msgid "No"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: berocket/includes/conditions.php:181 berocket/includes/conditions.php:274
|
340 |
+
msgid "Count of product"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: berocket/includes/conditions.php:227
|
344 |
+
msgid "Has Rating:"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: berocket/includes/conditions.php:243 berocket/includes/conditions.php:364
|
348 |
+
#: berocket/includes/conditions.php:377
|
349 |
+
msgid "From:"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: berocket/includes/conditions.php:244 berocket/includes/conditions.php:365
|
353 |
+
#: berocket/includes/conditions.php:378
|
354 |
+
msgid "To:"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: berocket/includes/conditions.php:246
|
358 |
+
msgid "Product price"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: berocket/includes/conditions.php:247
|
362 |
+
msgid "With tax"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: berocket/includes/conditions.php:248
|
366 |
+
msgid "Without tax"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: berocket/includes/conditions.php:263
|
370 |
+
msgid "In stock"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: berocket/includes/conditions.php:264
|
374 |
+
msgid "Out of stock"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: berocket/includes/conditions.php:265
|
378 |
+
msgid "On Backorder"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: berocket/includes/conditions.php:292
|
382 |
+
msgid "Include subcategories"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: berocket/includes/conditions.php:325
|
386 |
+
msgid "Select attribute"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: berocket/includes/conditions.php:352
|
390 |
+
msgid "day(s)"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: berocket/includes/conditions.php:386
|
394 |
+
msgid "Products in stock"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: berocket/includes/conditions.php:388
|
398 |
+
msgid "Backorder allowed"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: berocket/includes/conditions.php:389
|
402 |
+
msgid "Any"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: berocket/libraries/addons/addons.php:105
|
406 |
+
msgid "Active Addons"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: berocket/libraries/addons/addons.php:109
|
410 |
+
msgid "Inactive Addons"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: berocket/libraries/addons/addons.php:151
|
414 |
+
#: berocket/libraries/templates/templates.php:163
|
415 |
+
msgid "Go Premium"
|
416 |
+
msgstr ""
|
includes/functions.php
CHANGED
@@ -457,7 +457,8 @@ if( ! function_exists( 'br_aapf_args_parser_attributes_terms' ) ) {
|
|
457 |
if( empty($attributes_terms) || $attributes_terms['md5'] != $md5 ) {
|
458 |
$attributes_terms = array(
|
459 |
'terms' => array(),
|
460 |
-
'md5' => $md5
|
|
|
461 |
);
|
462 |
|
463 |
$terms = get_terms( array( $args['taxonomy'] ), array( 'orderby' => 'name', 'order' => 'ASC' ) );
|
@@ -2261,7 +2262,8 @@ if( ! function_exists('br_get_taxonomy_hierarchy') ) {
|
|
2261 |
$hierarchy_data = array(
|
2262 |
'terms' => $hierarchy,
|
2263 |
'hierarchy' => array(),
|
2264 |
-
'md5' => $default_terms
|
|
|
2265 |
);
|
2266 |
foreach($hierarchy as $hierarchy_term) {
|
2267 |
$hierarchy_data['hierarchy'][$hierarchy_term->term_id] = array($hierarchy_term->term_id);
|
457 |
if( empty($attributes_terms) || $attributes_terms['md5'] != $md5 ) {
|
458 |
$attributes_terms = array(
|
459 |
'terms' => array(),
|
460 |
+
'md5' => $md5,
|
461 |
+
'time' => time()
|
462 |
);
|
463 |
|
464 |
$terms = get_terms( array( $args['taxonomy'] ), array( 'orderby' => 'name', 'order' => 'ASC' ) );
|
2262 |
$hierarchy_data = array(
|
2263 |
'terms' => $hierarchy,
|
2264 |
'hierarchy' => array(),
|
2265 |
+
'md5' => $default_terms,
|
2266 |
+
'time' => time()
|
2267 |
);
|
2268 |
foreach($hierarchy as $hierarchy_term) {
|
2269 |
$hierarchy_data['hierarchy'][$hierarchy_term->term_id] = array($hierarchy_term->term_id);
|
includes/widget.php
CHANGED
@@ -623,7 +623,7 @@ class BeRocket_AAPF_Widget extends WP_Widget {
|
|
623 |
}
|
624 |
$terms = br_get_cache ( $attribute . $order_values_by, $wp_check_product_cat . $parent_product_cat_cache . $depth_count );
|
625 |
if ( br_is_filtered() || $terms === false ) {
|
626 |
-
$terms_unsort =
|
627 |
self::sort_terms( $terms_unsort, array(
|
628 |
"order_values_by" => $order_values_by,
|
629 |
"attribute" => $attribute,
|
@@ -743,9 +743,7 @@ class BeRocket_AAPF_Widget extends WP_Widget {
|
|
743 |
$terms = br_get_cache ( $custom_taxonomy.$order_values_by, $filter_type.$wp_check_product_cat );
|
744 |
if( br_is_filtered() || $terms === false || ( ! empty($child_parent) && ( $child_parent == 'parent' || $child_parent == 'child' ) ) ) {
|
745 |
if ( $custom_taxonomy == 'product_cat' ) {
|
746 |
-
$terms_unsort =
|
747 |
-
$terms_unsort = self::get_terms_child_parent( $child_parent, $custom_taxonomy, $terms_unsort, ( isset($child_parent_depth) ? $child_parent_depth : 0 ) );
|
748 |
-
|
749 |
|
750 |
if( ! br_is_filtered() && ( empty($child_parent) || ( $child_parent != 'parent' && $child_parent != 'child' ) ) ) {
|
751 |
$terms_unsort = self::set_terms_on_same_level( $terms_unsort, array(), ($type != 'checkbox' && $type != 'radio') );
|
@@ -755,7 +753,7 @@ class BeRocket_AAPF_Widget extends WP_Widget {
|
|
755 |
$terms = self::get_terms_child_parent ( $child_parent, $custom_taxonomy, FALSE, ( isset($child_parent_depth) ? $child_parent_depth : 0 ) );
|
756 |
$terms = BeRocket_AAPF_Widget::get_attribute_values( $custom_taxonomy, 'id', ( empty($br_options['show_all_values']) ), ( ! empty($br_options['recount_products']) ), $terms, ( isset($cat_value_limit) ? $cat_value_limit : null ), $operator );
|
757 |
}
|
758 |
-
if ( $order_values_by != 'Default' || $custom_taxonomy
|
759 |
self::sort_terms( $terms, array(
|
760 |
"order_values_by" => $order_values_by,
|
761 |
"attribute" => $custom_taxonomy,
|
623 |
}
|
624 |
$terms = br_get_cache ( $attribute . $order_values_by, $wp_check_product_cat . $parent_product_cat_cache . $depth_count );
|
625 |
if ( br_is_filtered() || $terms === false ) {
|
626 |
+
$terms_unsort = br_get_cat_hierarchy(array(), $parent_product_cat, $depth_count );
|
627 |
self::sort_terms( $terms_unsort, array(
|
628 |
"order_values_by" => $order_values_by,
|
629 |
"attribute" => $attribute,
|
743 |
$terms = br_get_cache ( $custom_taxonomy.$order_values_by, $filter_type.$wp_check_product_cat );
|
744 |
if( br_is_filtered() || $terms === false || ( ! empty($child_parent) && ( $child_parent == 'parent' || $child_parent == 'child' ) ) ) {
|
745 |
if ( $custom_taxonomy == 'product_cat' ) {
|
746 |
+
$terms_unsort = br_get_cat_hierarchy(array());
|
|
|
|
|
747 |
|
748 |
if( ! br_is_filtered() && ( empty($child_parent) || ( $child_parent != 'parent' && $child_parent != 'child' ) ) ) {
|
749 |
$terms_unsort = self::set_terms_on_same_level( $terms_unsort, array(), ($type != 'checkbox' && $type != 'radio') );
|
753 |
$terms = self::get_terms_child_parent ( $child_parent, $custom_taxonomy, FALSE, ( isset($child_parent_depth) ? $child_parent_depth : 0 ) );
|
754 |
$terms = BeRocket_AAPF_Widget::get_attribute_values( $custom_taxonomy, 'id', ( empty($br_options['show_all_values']) ), ( ! empty($br_options['recount_products']) ), $terms, ( isset($cat_value_limit) ? $cat_value_limit : null ), $operator );
|
755 |
}
|
756 |
+
if ( $order_values_by != 'Default' || in_array($custom_taxonomy, array('berocket_brand', 'product_cat')) ) {
|
757 |
self::sort_terms( $terms, array(
|
758 |
"order_values_by" => $order_values_by,
|
759 |
"attribute" => $custom_taxonomy,
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Contributors: dholovnia, berocket
|
|
4 |
Donate link: http://berocket.com/product/woocommerce-ajax-products-filter
|
5 |
Tags: filters, product filters, ajax product filters, ajax filter, ajax filter widget, color filter, size filter, product onsale filter, product preview, product category filter, product reset filter, product sort by filter, stock filter, product tag filter, price range filter, price box filter, advanced product filters, woocommerce filters, woocommerce product filters, woocommerce products filter, woocommerce ajax product filters, widget, plugin, woocommerce item filters, filters plugin, ajax filters plugin, filter woocommerce products, filter woocommerce products plugin, wc filters, wc filters products, wc products filters, wc ajax products filters, wc product filters, wc advanced product filters, woocommerce layered nav, woocommerce layered navigation, ajax filtered nav, ajax filtered navigation, price filter, ajax price filter, woocommerce product sorting, sidebar filter, sidebar ajax filter, taxonomy filter, category filter, attribute filter, attributes filter, woocommerce product sort, ajax products filter plugin for woocommerce, rocket, berocket, berocket woocommerce ajax products filter
|
6 |
Requires at least: 4.0
|
7 |
-
Tested up to: 5.1
|
8 |
-
Stable tag: 1.3.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -14,7 +14,7 @@ WooCommerce AJAX Product Filters - Advanced product filtering ability for your W
|
|
14 |
== Description ==
|
15 |
|
16 |
WooCommerce AJAX Product Filters - Advanced product filtering ability for your WooCommerce shop. Add unlimited filters with one widget.
|
17 |
-
|
18 |
= New Feature in version 1.3 =
|
19 |
|
20 |
✅ New admin settings design
|
@@ -187,6 +187,9 @@ You can try this plugin's admin side [here](http://berocket.com/product/woocomme
|
|
187 |
|
188 |
== Changelog ==
|
189 |
|
|
|
|
|
|
|
190 |
= 1.3.1 =
|
191 |
* Enhancement - Update BeRocket plugin framework 2.1
|
192 |
* Fix - Hide widgets without values
|
4 |
Donate link: http://berocket.com/product/woocommerce-ajax-products-filter
|
5 |
Tags: filters, product filters, ajax product filters, ajax filter, ajax filter widget, color filter, size filter, product onsale filter, product preview, product category filter, product reset filter, product sort by filter, stock filter, product tag filter, price range filter, price box filter, advanced product filters, woocommerce filters, woocommerce product filters, woocommerce products filter, woocommerce ajax product filters, widget, plugin, woocommerce item filters, filters plugin, ajax filters plugin, filter woocommerce products, filter woocommerce products plugin, wc filters, wc filters products, wc products filters, wc ajax products filters, wc product filters, wc advanced product filters, woocommerce layered nav, woocommerce layered navigation, ajax filtered nav, ajax filtered navigation, price filter, ajax price filter, woocommerce product sorting, sidebar filter, sidebar ajax filter, taxonomy filter, category filter, attribute filter, attributes filter, woocommerce product sort, ajax products filter plugin for woocommerce, rocket, berocket, berocket woocommerce ajax products filter
|
6 |
Requires at least: 4.0
|
7 |
+
Tested up to: 5.1.1
|
8 |
+
Stable tag: 1.3.1.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
14 |
== Description ==
|
15 |
|
16 |
WooCommerce AJAX Product Filters - Advanced product filtering ability for your WooCommerce shop. Add unlimited filters with one widget.
|
17 |
+
[](http://coderisk.com/wp/plugin/woocommerce-ajax-filters/RIPS-B_czgkRaNh)
|
18 |
= New Feature in version 1.3 =
|
19 |
|
20 |
✅ New admin settings design
|
187 |
|
188 |
== Changelog ==
|
189 |
|
190 |
+
= 1.3.1.1 =
|
191 |
+
* Fix - Categories order
|
192 |
+
|
193 |
= 1.3.1 =
|
194 |
* Enhancement - Update BeRocket plugin framework 2.1
|
195 |
* Fix - Hide widgets without values
|
woocommerce-filters.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Advanced AJAX Product Filters for WooCommerce
|
4 |
* Plugin URI: https://wordpress.org/plugins/woocommerce-ajax-filters/
|
5 |
* Description: Unlimited AJAX products filters to make your shop perfect
|
6 |
-
* Version: 1.3.1
|
7 |
* Author: BeRocket
|
8 |
* Requires at least: 4.0
|
9 |
* Author URI: http://berocket.com
|
@@ -11,8 +11,8 @@
|
|
11 |
* License URI: http://berocket.com/license
|
12 |
* Text Domain: BeRocket_AJAX_domain
|
13 |
* Domain Path: /languages/
|
14 |
-
* WC tested up to: 3.5.
|
15 |
*/
|
16 |
-
define( "BeRocket_AJAX_filters_version", '1.3.1' );
|
17 |
define( "BeRocket_AJAX_filters_file", __FILE__ );
|
18 |
include_once('main.php');
|
3 |
* Plugin Name: Advanced AJAX Product Filters for WooCommerce
|
4 |
* Plugin URI: https://wordpress.org/plugins/woocommerce-ajax-filters/
|
5 |
* Description: Unlimited AJAX products filters to make your shop perfect
|
6 |
+
* Version: 1.3.1.1
|
7 |
* Author: BeRocket
|
8 |
* Requires at least: 4.0
|
9 |
* Author URI: http://berocket.com
|
11 |
* License URI: http://berocket.com/license
|
12 |
* Text Domain: BeRocket_AJAX_domain
|
13 |
* Domain Path: /languages/
|
14 |
+
* WC tested up to: 3.5.6
|
15 |
*/
|
16 |
+
define( "BeRocket_AJAX_filters_version", '1.3.1.1' );
|
17 |
define( "BeRocket_AJAX_filters_file", __FILE__ );
|
18 |
include_once('main.php');
|