Version Description
- Fixed: WooCommerce CSS updated to fix the small issue with the products categories images.
Download this release
Release Info
Developer | oceanwp |
Plugin | Ocean Extra |
Version | 1.2.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.2.1.1 to 1.2.1.2
- assets/css/lightbox.css +36 -11
- assets/css/pagination.css +32 -9
- assets/css/slick.css +0 -5
- assets/css/woo/wooCommerce.css +3 -0
- languages/ocean-extra.pot +2350 -162
- ocean-extra.php +2 -2
- readme.txt +5 -2
assets/css/lightbox.css
CHANGED
@@ -35,17 +35,42 @@
|
|
35 |
cursor: zoom-in;
|
36 |
}
|
37 |
|
38 |
-
.chocolat-loader
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
|
51 |
.chocolat-content {
|
35 |
cursor: zoom-in;
|
36 |
}
|
37 |
|
38 |
+
.chocolat-loader{
|
39 |
+
display:none;
|
40 |
+
position: absolute;
|
41 |
+
top: 50%;
|
42 |
+
left: 50%;
|
43 |
+
height: 32px;
|
44 |
+
width: 32px;
|
45 |
+
margin-left: -16px;
|
46 |
+
margin-top: -16px;
|
47 |
+
border-left: 3px solid rgba(255, 255, 255, 0.15);
|
48 |
+
border-right: 3px solid rgba(255, 255, 255, 0.15);
|
49 |
+
border-bottom: 3px solid rgba(255, 255, 255, 0.15);
|
50 |
+
border-top: 3px solid rgba(255, 255, 255, 0.8);
|
51 |
+
border-radius: 100%;
|
52 |
+
-webkit-animation: rotation .6s infinite linear;
|
53 |
+
-moz-animation: rotation .6s infinite linear;
|
54 |
+
-o-animation: rotation .6s infinite linear;
|
55 |
+
animation: rotation .6s infinite linear;
|
56 |
+
z-index: 11;
|
57 |
+
}
|
58 |
+
|
59 |
+
@-webkit-keyframes rotation {
|
60 |
+
from {-webkit-transform: rotate(0deg);}
|
61 |
+
to {-webkit-transform: rotate(359deg);}
|
62 |
+
}
|
63 |
+
@-moz-keyframes rotation {
|
64 |
+
from {-moz-transform: rotate(0deg);}
|
65 |
+
to {-moz-transform: rotate(359deg);}
|
66 |
+
}
|
67 |
+
@-o-keyframes rotation {
|
68 |
+
from {-o-transform: rotate(0deg);}
|
69 |
+
to {-o-transform: rotate(359deg);}
|
70 |
+
}
|
71 |
+
@keyframes rotation {
|
72 |
+
from {transform: rotate(0deg);}
|
73 |
+
to {transform: rotate(359deg);}
|
74 |
}
|
75 |
|
76 |
.chocolat-content {
|
assets/css/pagination.css
CHANGED
@@ -76,15 +76,38 @@ ul.page-numbers li {
|
|
76 |
|
77 |
/* infinite scroll */
|
78 |
.infinite-scroll-loader {
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
|
90 |
#infscr-loading img {
|
76 |
|
77 |
/* infinite scroll */
|
78 |
.infinite-scroll-loader {
|
79 |
+
position: absolute;
|
80 |
+
bottom: -35px;
|
81 |
+
left: 50%;
|
82 |
+
height: 18px;
|
83 |
+
width: 18px;
|
84 |
+
margin-left: -9px;
|
85 |
+
border-left: 2px solid rgba(0, 0, 0, 0.15);
|
86 |
+
border-right: 2px solid rgba(0, 0, 0, 0.15);
|
87 |
+
border-bottom: 2px solid rgba(0, 0, 0, 0.15);
|
88 |
+
border-top: 2px solid rgba(0, 0, 0, 0.8);
|
89 |
+
border-radius: 100%;
|
90 |
+
-webkit-animation: rotation .6s infinite linear;
|
91 |
+
-moz-animation: rotation .6s infinite linear;
|
92 |
+
-o-animation: rotation .6s infinite linear;
|
93 |
+
animation: rotation .6s infinite linear;
|
94 |
+
}
|
95 |
+
|
96 |
+
@-webkit-keyframes rotation {
|
97 |
+
from {-webkit-transform: rotate(0deg);}
|
98 |
+
to {-webkit-transform: rotate(359deg);}
|
99 |
+
}
|
100 |
+
@-moz-keyframes rotation {
|
101 |
+
from {-moz-transform: rotate(0deg);}
|
102 |
+
to {-moz-transform: rotate(359deg);}
|
103 |
+
}
|
104 |
+
@-o-keyframes rotation {
|
105 |
+
from {-o-transform: rotate(0deg);}
|
106 |
+
to {-o-transform: rotate(359deg);}
|
107 |
+
}
|
108 |
+
@keyframes rotation {
|
109 |
+
from {transform: rotate(0deg);}
|
110 |
+
to {transform: rotate(359deg);}
|
111 |
}
|
112 |
|
113 |
#infscr-loading img {
|
assets/css/slick.css
CHANGED
@@ -104,11 +104,6 @@
|
|
104 |
display: none;
|
105 |
}
|
106 |
|
107 |
-
/* Slider */
|
108 |
-
.slick-loading .slick-list {
|
109 |
-
background: #fff url("../../themes/oceanwp/assets/img/ajax-loader.gif") center center no-repeat;
|
110 |
-
}
|
111 |
-
|
112 |
/* Icons */
|
113 |
@font-face {
|
114 |
font-family: "slick";
|
104 |
display: none;
|
105 |
}
|
106 |
|
|
|
|
|
|
|
|
|
|
|
107 |
/* Icons */
|
108 |
@font-face {
|
109 |
font-family: "slick";
|
assets/css/woo/wooCommerce.css
CHANGED
@@ -242,6 +242,9 @@ Product Entries
|
|
242 |
.woocommerce ul.products li.product .woo-entry-inner li.image-wrap .woo-entry-image { display: block; }
|
243 |
.woocommerce ul.products li.product .woo-entry-image { display: none; }
|
244 |
|
|
|
|
|
|
|
245 |
/* product entry > image swap */
|
246 |
.woocommerce ul.products li.product .woo-entry-image-swap { position: relative; overflow: hidden; }
|
247 |
.woocommerce ul.products li.product .woo-entry-image-swap img { -webkit-transition: opacity 0.25s ease-in-out; -moz-transition: opacity 0.25s ease-in-out; -o-transition: opacity 0.25s ease-in-out; transition: opacity 0.25s ease-in-out; width: 100%; overflow: hidden; }
|
242 |
.woocommerce ul.products li.product .woo-entry-inner li.image-wrap .woo-entry-image { display: block; }
|
243 |
.woocommerce ul.products li.product .woo-entry-image { display: none; }
|
244 |
|
245 |
+
/* Fix for the categories images */
|
246 |
+
.woocommerce ul.products li.product-category.product .woo-entry-image { display: block; }
|
247 |
+
|
248 |
/* product entry > image swap */
|
249 |
.woocommerce ul.products li.product .woo-entry-image-swap { position: relative; overflow: hidden; }
|
250 |
.woocommerce ul.products li.product .woo-entry-image-swap img { -webkit-transition: opacity 0.25s ease-in-out; -moz-transition: opacity 0.25s ease-in-out; -o-transition: opacity 0.25s ease-in-out; transition: opacity 0.25s ease-in-out; width: 100%; overflow: hidden; }
|
languages/ocean-extra.pot
CHANGED
@@ -1,378 +1,2566 @@
|
|
1 |
# Copyright (C) 2016
|
2 |
# This file is distributed under the same license as the package.
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: OceanWP\n"
|
13 |
"Language-Team: OceanWP\n"
|
14 |
-
"X-Generator:
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
-
"X-Poedit-Language: English\n"
|
18 |
-
"X-Poedit-Country: UNITED STATES\n"
|
19 |
"X-Poedit-SourceCharset: utf-8\n"
|
20 |
-
"X-Poedit-
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_"
|
24 |
-
"ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
25 |
"X-Textdomain-Support: yes\n"
|
|
|
|
|
26 |
|
27 |
-
#: includes/metabox/
|
28 |
-
msgid "
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: includes/metabox/gallery-metabox/gallery-metabox.php:82
|
32 |
-
#: includes/metabox/gallery-metabox/gallery-metabox.php:138
|
33 |
-
msgid "Remove image"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: includes/metabox/gallery-metabox/gallery-metabox.php:92
|
37 |
-
msgid "Add/Edit Images"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: includes/metabox/gallery-metabox/gallery-metabox.php:97
|
41 |
-
msgid "Enable Lightbox for this gallery?"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: includes/metabox/
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: includes/metabox/
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: includes/metabox/
|
53 |
-
|
|
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: includes/metabox/
|
57 |
-
|
|
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/metabox/
|
61 |
-
msgid "
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: includes/metabox/
|
65 |
-
|
66 |
-
msgid "Default"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/metabox/metabox.php:
|
70 |
-
msgid "
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/metabox/metabox.php:
|
74 |
-
msgid "
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: includes/metabox/metabox.php:
|
78 |
-
msgid "
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/metabox/metabox.php:
|
82 |
-
msgid "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: includes/metabox/metabox.php:
|
86 |
msgid "Main"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: includes/metabox/metabox.php:
|
90 |
msgid "Content Layout"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/metabox/metabox.php:
|
94 |
-
msgid "Select your custom layout
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/metabox/metabox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
msgid "Right Sidebar"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/metabox/metabox.php:
|
102 |
msgid "Left Sidebar"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: includes/metabox/metabox.php:
|
106 |
-
msgid "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: includes/metabox/metabox.php:
|
110 |
-
msgid "Full
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: includes/metabox/metabox.php:
|
114 |
msgid "Sidebar"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/metabox/metabox.php:
|
118 |
-
msgid "Select your
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/metabox/metabox.php:
|
122 |
msgid "Margins"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/metabox/metabox.php:
|
126 |
-
msgid "Enable or disable
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: includes/metabox/metabox.php:
|
|
|
|
|
|
|
130 |
msgid "Enable"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: includes/metabox/metabox.php:
|
|
|
|
|
134 |
msgid "Disable"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: includes/metabox/metabox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid "Title"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/metabox/metabox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
msgid "Custom Title"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: includes/metabox/metabox.php:
|
146 |
msgid "Alter the main title display."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/metabox/metabox.php:
|
150 |
msgid "Subheading"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/metabox/metabox.php:
|
154 |
msgid "Enter your page subheading. Shortcodes & HTML is allowed."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/metabox/metabox.php:
|
158 |
msgid "Title Style"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/metabox/metabox.php:
|
162 |
-
msgid "Select a custom title style
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: includes/metabox/metabox.php:
|
166 |
msgid "Title: Background Color"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: includes/metabox/metabox.php:
|
170 |
-
msgid "Select a color
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: includes/metabox/metabox.php:
|
174 |
msgid "Title: Background Image"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/metabox/metabox.php:
|
178 |
-
msgid "Select a custom
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: includes/metabox/metabox.php:
|
182 |
msgid "Title: Background Height"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/metabox/metabox.php:
|
186 |
msgid "Select your custom height for your title background. Default is 400px."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/metabox/metabox.php:
|
190 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/metabox/metabox.php:
|
194 |
msgid "oEmbed URL"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/metabox/metabox.php:
|
198 |
msgid ""
|
199 |
-
"Enter a URL that is compatible with WP's built-in oEmbed feature. This "
|
200 |
-
"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/metabox/metabox.php:
|
|
|
204 |
msgid "Learn More"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/metabox/metabox.php:
|
208 |
msgid "Self Hosted"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/metabox/metabox.php:
|
212 |
msgid "Insert your self hosted video or audio url here."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: includes/metabox/metabox.php:
|
216 |
msgid "Embed Code"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: includes/metabox/metabox.php:
|
220 |
-
msgid "
|
221 |
-
|
222 |
-
|
223 |
-
#: includes/metabox/metabox.php:563
|
224 |
-
msgid "Link/Quote Format"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/metabox/metabox.php:
|
228 |
msgid "Link"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/metabox/metabox.php:
|
232 |
msgid "Enter your external url. This setting is used for your link post formats."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/metabox/metabox.php:
|
236 |
msgid "Link Target"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/metabox/metabox.php:
|
240 |
msgid ""
|
241 |
"Choose your target for the url. This setting is used for your link post "
|
242 |
"formats."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: includes/metabox/metabox.php:
|
|
|
|
|
246 |
msgid "Self"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/metabox/metabox.php:
|
|
|
|
|
250 |
msgid "Blank"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/metabox/metabox.php:
|
254 |
msgid "Quote"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/metabox/metabox.php:
|
258 |
msgid "Enter your quote. This setting is used for your quote post formats."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: includes/metabox/metabox.php:
|
262 |
msgid "Quote Link"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: includes/metabox/metabox.php:
|
266 |
msgid "Choose your quote link. This setting is used for your quote post formats."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/metabox/metabox.php:
|
270 |
-
|
|
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/metabox/metabox.php:
|
274 |
-
msgid "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: includes/
|
278 |
-
|
279 |
-
msgid "Custom CSS"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/panel/
|
291 |
-
msgid "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/panel/
|
295 |
-
msgid "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/panel/
|
299 |
-
msgid "
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/panel/
|
303 |
-
msgid "
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/panel/
|
307 |
-
msgid "
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/panel/
|
311 |
-
msgid "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: includes/panel/
|
315 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: includes/panel/
|
319 |
-
msgid "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes/panel/
|
323 |
-
msgid "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/panel/
|
327 |
-
msgid "
|
|
|
|
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/panel/
|
331 |
-
msgid "
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/panel/
|
335 |
-
|
|
|
|
|
|
|
|
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/panel/
|
339 |
-
msgid "
|
|
|
|
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: includes/panel/
|
343 |
-
msgid "
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/panel/
|
347 |
-
msgid "
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: includes/panel/
|
351 |
-
msgid "
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/panel/
|
355 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/panel/
|
359 |
msgid ""
|
360 |
-
"
|
361 |
-
"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/panel/
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#:
|
369 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
msgstr ""
|
371 |
|
372 |
-
#:
|
373 |
-
msgid "
|
374 |
msgstr ""
|
375 |
|
376 |
-
#:
|
377 |
-
msgid "
|
378 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Copyright (C) 2016
|
2 |
# This file is distributed under the same license as the package.
|
3 |
+
#, fuzzy
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: \n"
|
7 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n"
|
8 |
+
"POT-Creation-Date: 2017-04-24 20:07+0200\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: OceanWP\n"
|
14 |
"Language-Team: OceanWP\n"
|
15 |
+
"X-Generator: Poedit 1.8.12\n"
|
16 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
|
|
|
|
18 |
"X-Poedit-SourceCharset: utf-8\n"
|
19 |
+
"X-Poedit-KeywordsList: _esc_attr__;esc_attr_x;esc_attr_e;esc_html__;esc_html_e;"
|
20 |
+
"esc_html_x;__;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c;"
|
21 |
+
"_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
|
|
|
|
22 |
"X-Textdomain-Support: yes\n"
|
23 |
+
"Language: en_US\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: includes/metabox/butterbean/inc/controls/class-control-image.php:66
|
27 |
+
msgid "Add image"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: includes/metabox/butterbean/inc/controls/class-control-image.php:67
|
31 |
+
msgid "Set as image"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: includes/metabox/butterbean/inc/controls/class-control-image.php:68
|
35 |
+
msgid "Choose image"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: includes/metabox/butterbean/inc/controls/class-control-image.php:69
|
39 |
+
#: includes/metabox/gallery-metabox/gallery-metabox.php:135
|
40 |
+
msgid "Change image"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: includes/metabox/butterbean/inc/controls/class-control-image.php:70
|
44 |
+
#: includes/metabox/gallery-metabox/gallery-metabox.php:136
|
45 |
+
msgid "Remove image"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: includes/metabox/butterbean/inc/controls/class-control-image.php:71
|
49 |
+
msgid "No image selected"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: includes/metabox/butterbean/inc/controls/class-control-media.php:54
|
53 |
+
msgid "Browse"
|
|
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: includes/metabox/gallery-metabox/gallery-metabox.php:67
|
57 |
+
msgid "Image Gallery"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/metabox/gallery-metabox/gallery-metabox.php:118
|
61 |
+
msgid "Add Image(s)"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: includes/metabox/gallery-metabox/gallery-metabox.php:150
|
65 |
+
msgid "Enable lightbox for this gallery?"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/metabox/metabox.php:98
|
69 |
+
msgid "OceanWP Settings"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/metabox/metabox.php:110
|
73 |
msgid "Main"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/metabox/metabox.php:120
|
77 |
msgid "Content Layout"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/metabox/metabox.php:121
|
81 |
+
msgid "Select your custom layout."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: includes/metabox/metabox.php:123 includes/metabox/metabox.php:212
|
85 |
+
#: includes/metabox/metabox.php:235 includes/metabox/metabox.php:393
|
86 |
+
#: includes/metabox/metabox.php:422 includes/metabox/metabox.php:444
|
87 |
+
#: includes/metabox/metabox.php:468 includes/metabox/metabox.php:563
|
88 |
+
#: includes/metabox/metabox.php:586 includes/metabox/metabox.php:762
|
89 |
+
#: includes/metabox/metabox.php:773 includes/metabox/metabox.php:784
|
90 |
+
#: includes/widgets/custom-menu.php:264 includes/widgets/tags.php:341
|
91 |
+
msgid "Default"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/metabox/metabox.php:124
|
95 |
msgid "Right Sidebar"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: includes/metabox/metabox.php:125
|
99 |
msgid "Left Sidebar"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/metabox/metabox.php:126
|
103 |
+
msgid "Full Width"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/metabox/metabox.php:127
|
107 |
+
msgid "100% Full Width"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: includes/metabox/metabox.php:144 includes/panel/scripts.php:288
|
111 |
msgid "Sidebar"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/metabox/metabox.php:145
|
115 |
+
msgid "Select your custom sidebar."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: includes/metabox/metabox.php:162
|
119 |
msgid "Margins"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: includes/metabox/metabox.php:163
|
123 |
+
msgid "Enable or disable the margin top and bottom."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/metabox/metabox.php:165 includes/metabox/metabox.php:213
|
127 |
+
#: includes/metabox/metabox.php:236 includes/metabox/metabox.php:284
|
128 |
+
#: includes/metabox/metabox.php:285 includes/metabox/metabox.php:564
|
129 |
+
#: includes/metabox/metabox.php:587
|
130 |
msgid "Enable"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/metabox/metabox.php:166 includes/metabox/metabox.php:214
|
134 |
+
#: includes/metabox/metabox.php:237 includes/metabox/metabox.php:286
|
135 |
+
#: includes/metabox/metabox.php:565 includes/metabox/metabox.php:588
|
136 |
msgid "Disable"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/metabox/metabox.php:184
|
140 |
+
msgid "Shortcode"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: includes/metabox/metabox.php:185
|
144 |
+
msgid "Add your shortcode to be displayed before the page title."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/metabox/metabox.php:199 includes/panel/scripts.php:208
|
148 |
+
msgid "Header"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: includes/metabox/metabox.php:209
|
152 |
+
msgid "Display Top Bar"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/metabox/metabox.php:210
|
156 |
+
msgid "Enable or disable the top bar."
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: includes/metabox/metabox.php:232
|
160 |
+
msgid "Display Header"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: includes/metabox/metabox.php:233
|
164 |
+
msgid "Enable or disable the header."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/metabox/metabox.php:255
|
168 |
+
msgid "Main Navigation Menu"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: includes/metabox/metabox.php:256
|
172 |
+
msgid "Choose which menu displays on this page."
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/metabox/metabox.php:271 includes/widgets/about-me.php:211
|
176 |
+
#: includes/widgets/contact-info.php:255 includes/widgets/contact-info.php:273
|
177 |
+
#: includes/widgets/contact-info.php:292 includes/widgets/contact-info.php:311
|
178 |
+
#: includes/widgets/contact-info.php:330 includes/widgets/contact-info.php:349
|
179 |
+
#: includes/widgets/contact-info.php:373 includes/widgets/custom-links.php:117
|
180 |
+
#: includes/widgets/custom-menu.php:205 includes/widgets/facebook.php:164
|
181 |
+
#: includes/widgets/flickr.php:105 includes/widgets/instagram.php:145
|
182 |
+
#: includes/widgets/mailchimp.php:159 includes/widgets/recent-posts.php:205
|
183 |
+
#: includes/widgets/recent-posts.php:273 includes/widgets/social.php:264
|
184 |
+
#: includes/widgets/tags.php:245 includes/widgets/video.php:114
|
185 |
msgid "Title"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/metabox/metabox.php:281
|
189 |
+
msgid "Display Title"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: includes/metabox/metabox.php:282
|
193 |
+
msgid "Enable or disable the page title."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: includes/metabox/metabox.php:303
|
197 |
msgid "Custom Title"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: includes/metabox/metabox.php:304
|
201 |
msgid "Alter the main title display."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: includes/metabox/metabox.php:320
|
205 |
msgid "Subheading"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: includes/metabox/metabox.php:321
|
209 |
msgid "Enter your page subheading. Shortcodes & HTML is allowed."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: includes/metabox/metabox.php:337
|
213 |
msgid "Title Style"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/metabox/metabox.php:338
|
217 |
+
msgid "Select a custom title style."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/metabox/metabox.php:355
|
221 |
msgid "Title: Background Color"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/metabox/metabox.php:356
|
225 |
+
msgid "Select a hex color code, ex: #333"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/metabox/metabox.php:373
|
229 |
msgid "Title: Background Image"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/metabox/metabox.php:374
|
233 |
+
msgid "Select a custom image for your main title."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: includes/metabox/metabox.php:390
|
237 |
+
msgid "Position"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: includes/metabox/metabox.php:391
|
241 |
+
msgid "Select your background image position."
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: includes/metabox/metabox.php:394
|
245 |
+
msgid "Top Left"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: includes/metabox/metabox.php:395
|
249 |
+
msgid "Top Center"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: includes/metabox/metabox.php:396
|
253 |
+
msgid "Top Right"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: includes/metabox/metabox.php:397
|
257 |
+
msgid "Center Left"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: includes/metabox/metabox.php:398
|
261 |
+
msgid "Center Center"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: includes/metabox/metabox.php:399
|
265 |
+
msgid "Center Right"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/metabox/metabox.php:400
|
269 |
+
msgid "Bottom Left"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: includes/metabox/metabox.php:401
|
273 |
+
msgid "Bottom Center"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: includes/metabox/metabox.php:402
|
277 |
+
msgid "Bottom Right"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: includes/metabox/metabox.php:419
|
281 |
+
msgid "Attachment"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: includes/metabox/metabox.php:420
|
285 |
+
msgid "Select your background image attachment."
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: includes/metabox/metabox.php:423
|
289 |
+
msgid "Scroll"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: includes/metabox/metabox.php:424
|
293 |
+
msgid "Fixed"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: includes/metabox/metabox.php:441 includes/metabox/metabox.php:446
|
297 |
+
msgid "Repeat"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: includes/metabox/metabox.php:442
|
301 |
+
msgid "Select your background image repeat."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: includes/metabox/metabox.php:445
|
305 |
+
msgid "No-repeat"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: includes/metabox/metabox.php:447
|
309 |
+
msgid "Repeat-x"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: includes/metabox/metabox.php:448
|
313 |
+
msgid "Repeat-y"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: includes/metabox/metabox.php:465
|
317 |
+
msgid "Size"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/metabox/metabox.php:466
|
321 |
+
msgid "Select your background image size."
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: includes/metabox/metabox.php:469
|
325 |
+
msgid "Auto"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: includes/metabox/metabox.php:470
|
329 |
+
msgid "Cover"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: includes/metabox/metabox.php:471
|
333 |
+
msgid "Contain"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: includes/metabox/metabox.php:488
|
337 |
msgid "Title: Background Height"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: includes/metabox/metabox.php:489
|
341 |
msgid "Select your custom height for your title background. Default is 400px."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: includes/metabox/metabox.php:511
|
345 |
+
msgid "Title: Background Overlay Opacity"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: includes/metabox/metabox.php:512
|
349 |
+
msgid "Enter a number between 0.1 to 1. Default is 0.5."
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: includes/metabox/metabox.php:534
|
353 |
+
msgid "Title: Background Overlay Color"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: includes/metabox/metabox.php:535
|
357 |
+
msgid "Select a color. Hex code or rgba value, ex: #333"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: includes/metabox/metabox.php:550
|
361 |
+
msgid "Footer"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: includes/metabox/metabox.php:560
|
365 |
+
msgid "Display Footer Widgets Area"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: includes/metabox/metabox.php:561
|
369 |
+
msgid "Enable or disable the footer widgets area."
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: includes/metabox/metabox.php:583
|
373 |
+
msgid "Display Copyright Area"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: includes/metabox/metabox.php:584
|
377 |
+
msgid "Enable or disable the copyright area."
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: includes/metabox/metabox.php:620 includes/metabox/metabox.php:738
|
381 |
+
#: includes/widgets/recent-posts.php:218
|
382 |
+
msgid "Post"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/metabox/metabox.php:630
|
386 |
msgid "oEmbed URL"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: includes/metabox/metabox.php:631
|
390 |
msgid ""
|
391 |
+
"Enter a URL that is compatible with WP's built-in oEmbed feature. This setting "
|
392 |
+
"is used for your video and audio post formats."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: includes/metabox/metabox.php:631 includes/metabox/metabox.php:648
|
396 |
+
#: includes/widgets/video.php:122
|
397 |
msgid "Learn More"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: includes/metabox/metabox.php:647
|
401 |
msgid "Self Hosted"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: includes/metabox/metabox.php:648
|
405 |
msgid "Insert your self hosted video or audio url here."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: includes/metabox/metabox.php:664
|
409 |
msgid "Embed Code"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/metabox/metabox.php:665
|
413 |
+
msgid ""
|
414 |
+
"Insert your embed/iframe code. This setting is used for your video and audio "
|
415 |
+
"post formats."
|
|
|
|
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: includes/metabox/metabox.php:679
|
419 |
msgid "Link"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/metabox/metabox.php:680
|
423 |
msgid "Enter your external url. This setting is used for your link post formats."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/metabox/metabox.php:696 includes/widgets/social.php:289
|
427 |
msgid "Link Target"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/metabox/metabox.php:697
|
431 |
msgid ""
|
432 |
"Choose your target for the url. This setting is used for your link post "
|
433 |
"formats."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/metabox/metabox.php:699 includes/widgets/about-me.php:246
|
437 |
+
#: includes/widgets/custom-links.php:125 includes/widgets/instagram.php:315
|
438 |
+
#: includes/widgets/social.php:293
|
439 |
msgid "Self"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/metabox/metabox.php:700 includes/widgets/about-me.php:245
|
443 |
+
#: includes/widgets/custom-links.php:106 includes/widgets/custom-links.php:124
|
444 |
+
#: includes/widgets/instagram.php:314 includes/widgets/social.php:292
|
445 |
msgid "Blank"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/metabox/metabox.php:717
|
449 |
msgid "Quote"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/metabox/metabox.php:718
|
453 |
msgid "Enter your quote. This setting is used for your quote post formats."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/metabox/metabox.php:735
|
457 |
msgid "Quote Link"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/metabox/metabox.php:736
|
461 |
msgid "Choose your quote link. This setting is used for your quote post formats."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/metabox/metabox.php:739 includes/widgets/instagram.php:241
|
465 |
+
#: includes/widgets/social.php:281 includes/widgets/tags.php:345
|
466 |
+
msgid "None"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/metabox/metabox.php:774
|
470 |
+
msgid "Centered"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/metabox/metabox.php:775
|
474 |
+
msgid "Centered Minimal"
|
|
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/metabox/metabox.php:776
|
478 |
+
msgid "Background Image"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: includes/metabox/metabox.php:777
|
482 |
+
msgid "Solid Color and White Text"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: includes/panel/about.php:36 includes/panel/about.php:37
|
486 |
+
msgid "About OceanWP"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: includes/panel/about.php:64
|
490 |
+
msgid "OceanWP"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: includes/panel/about.php:67
|
494 |
+
msgid "Join us on Twitter"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: includes/panel/about.php:68
|
498 |
+
msgid "Join us on Facebook"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: includes/panel/about.php:69
|
502 |
+
msgid "Find us on GitHub"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: includes/panel/about.php:78
|
506 |
+
msgid "Thank you for using OceanWP"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/panel/about.php:80
|
510 |
+
msgid ""
|
511 |
+
"OceanWP is the perfect theme for your project. Lightweight and highly "
|
512 |
+
"extendible, it will enable you to create almost any type of site with a "
|
513 |
+
"beautiful & professional design. There are several options to personalise your "
|
514 |
+
"website, multiple widget regions, a responsive design and much more. "
|
515 |
+
"Developers will love his extensible codebase making it a joy to customise and "
|
516 |
+
"extend."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: includes/panel/about.php:82
|
520 |
+
msgid "The perfect theme to use with your favorite page builder!"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: includes/panel/about.php:88
|
524 |
+
msgid "Extend his functionalities with our extensions"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: includes/panel/about.php:90
|
528 |
+
msgid ""
|
529 |
+
"Check our free and premium extensions that extend OceanWP’s "
|
530 |
+
"functionality and make it more powerful."
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: includes/panel/about.php:94
|
534 |
+
msgid "Ocean Extra"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: includes/panel/about.php:94 includes/panel/about.php:102
|
538 |
+
#: includes/panel/about.php:118 includes/panel/about.php:122
|
539 |
+
#: includes/panel/about.php:240 includes/panel/about.php:244
|
540 |
+
#: includes/panel/about.php:246 includes/panel/about.php:252
|
541 |
+
#: includes/panel/about.php:254
|
542 |
+
msgid "free"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: includes/panel/about.php:95
|
546 |
+
msgid ""
|
547 |
+
"Add extra features like metaboxes, import/export and a panel to activate the "
|
548 |
+
"extensions."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: includes/panel/about.php:98 includes/panel/extensions.php:52
|
552 |
+
msgid "Elementor Widgets"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: includes/panel/about.php:99
|
556 |
+
msgid "Add some awesome new widgets to the popular free page builder Elementor."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: includes/panel/about.php:102 includes/panel/extensions.php:115
|
560 |
+
msgid "Custom Sidebar"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: includes/panel/about.php:103
|
564 |
+
msgid ""
|
565 |
+
"Generates an unlimited number of sidebars and place them on any page or post."
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: includes/panel/about.php:106 includes/panel/extensions.php:73
|
569 |
+
msgid "Sticky Header"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: includes/panel/about.php:107
|
573 |
msgid ""
|
574 |
+
"A simple extension to attach the header at the top of your screen with an "
|
575 |
+
"animation."
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/panel/about.php:110 includes/panel/extensions.php:66
|
579 |
+
msgid "Footer Callout"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/panel/about.php:111 includes/panel/extensions.php:67
|
583 |
+
msgid ""
|
584 |
+
"Add some relevant/important information about your company or product in your "
|
585 |
+
"footer."
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: includes/panel/about.php:114 includes/panel/extensions.php:59
|
589 |
+
msgid "Side Panel"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: includes/panel/about.php:115
|
593 |
+
msgid ""
|
594 |
+
"Display a panel on the right or left with your favorite widgets by clicking on "
|
595 |
+
"an icon in the menu."
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: includes/panel/about.php:118 includes/panel/extensions.php:122
|
599 |
+
msgid "Demo Import"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: includes/panel/about.php:119
|
603 |
+
msgid ""
|
604 |
+
"Import the OceanWP demo content, widgets and customizer settings with one "
|
605 |
+
"click."
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: includes/panel/about.php:122 includes/panel/extensions.php:101
|
609 |
+
msgid "Social Sharing"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: includes/panel/about.php:123
|
613 |
+
msgid ""
|
614 |
+
"A simple extension to add your prefered social sharing buttons to your single "
|
615 |
+
"posts."
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: includes/panel/about.php:128
|
619 |
+
msgid "View all OceanWP extensions"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: includes/panel/about.php:135
|
623 |
+
msgid "Create your WordPress site quickly with Themecloud"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: includes/panel/about.php:137
|
627 |
+
msgid "What is Themecloud?"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: includes/panel/about.php:137
|
631 |
+
msgid ""
|
632 |
+
"It’s a better way to build WordPress websites, instant setup, no coding "
|
633 |
+
"required. They are removed all of the technical hurdles standing between you "
|
634 |
+
"and your ideal site. Don’t worry about installations, configurations, "
|
635 |
+
"migrations and maintenance. Focus on creating stellar content – and watch your "
|
636 |
+
"business skyrocket! Not convinced yet?"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: includes/panel/about.php:137
|
640 |
+
msgid "Look at this great review from WPKube"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: includes/panel/about.php:139
|
644 |
+
msgid "From $9.90/mo"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: includes/panel/about.php:139
|
648 |
+
msgid "( 15-day free trial, no credit card required )"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: includes/panel/about.php:142
|
652 |
+
msgid "Learn more about Themecloud"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: includes/panel/about.php:151
|
656 |
+
msgid "Getting started with OceanWP"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: includes/panel/about.php:153
|
660 |
+
msgid ""
|
661 |
+
"Take a look in the options of the Customizer and see yourself how easy and "
|
662 |
+
"quick to customize the theme as you wish."
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: includes/panel/about.php:157
|
666 |
+
msgid "Upload your logo"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: includes/panel/about.php:158
|
670 |
+
msgid "Add your own logo and retina logo used for the mobile design."
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: includes/panel/about.php:159 includes/panel/about.php:164
|
674 |
+
#: includes/panel/about.php:169 includes/panel/about.php:174
|
675 |
+
#: includes/panel/about.php:179 includes/panel/about.php:184
|
676 |
+
#: includes/panel/about.php:189 includes/panel/about.php:194
|
677 |
+
msgid "Go to the option"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: includes/panel/about.php:162
|
681 |
+
msgid "Add your favicon"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: includes/panel/about.php:163
|
685 |
+
msgid "The favicon is used as a browser and app icon for your website."
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: includes/panel/about.php:167
|
689 |
+
msgid "Choose your primary color"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: includes/panel/about.php:168
|
693 |
+
msgid "Replace the default primary and hover color by your own colors."
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: includes/panel/about.php:172
|
697 |
+
msgid "Change the links color"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: includes/panel/about.php:173
|
701 |
+
msgid "Choose the color and hover color of your links for the entire site."
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: includes/panel/about.php:177
|
705 |
+
msgid "Choose your typography"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: includes/panel/about.php:178
|
709 |
+
msgid "Choose your own typography for any parts of your website."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: includes/panel/about.php:182
|
713 |
+
msgid "Top bar options"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: includes/panel/about.php:183
|
717 |
+
msgid "Enable/Disable the top bar, add your own paddings and colors."
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: includes/panel/about.php:187
|
721 |
+
msgid "Header options"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: includes/panel/about.php:188
|
725 |
+
msgid "Choose the style, the height and the colors for your site header."
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: includes/panel/about.php:192
|
729 |
+
msgid "Footer bottom options"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: includes/panel/about.php:193
|
733 |
+
msgid "Add your copyright, paddings and colors for the footer bottom."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/panel/about.php:209
|
737 |
+
msgid "Customize Your Site"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/panel/about.php:218
|
741 |
+
msgid "Contribute to OceanWP"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: includes/panel/about.php:220
|
745 |
+
msgid ""
|
746 |
+
"You’ve found a bug? Want to contribute a patch, create a new feature or "
|
747 |
+
"extension?"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: includes/panel/about.php:221
|
751 |
+
msgid "GitHub is the place to go!"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: includes/panel/about.php:227
|
755 |
+
msgid "Get support"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: includes/panel/about.php:229
|
759 |
+
msgid ""
|
760 |
+
"You can find a wide range of information on how to use and customise OceanWP "
|
761 |
+
"in our"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: includes/panel/about.php:229
|
765 |
+
msgid "documentation"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: includes/panel/about.php:229
|
769 |
+
msgid "If you need help?"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: includes/panel/about.php:229
|
773 |
+
msgid "open a support ticket"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: includes/panel/about.php:235
|
777 |
+
msgid "Recommended plugins"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: includes/panel/about.php:237
|
781 |
+
msgid ""
|
782 |
+
"Below you will find links to plugins I personally like and recommend. None of "
|
783 |
+
"these plugins are required for your theme to work, they simply add additional "
|
784 |
+
"functionality."
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: includes/panel/about.php:241
|
788 |
+
msgid ""
|
789 |
+
"Manage multiple contact forms and customize the form and the mail contents "
|
790 |
+
"with markups."
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/panel/about.php:243
|
794 |
+
msgid ""
|
795 |
+
"Gravity Forms is the easiest tool to create advanced forms for your WordPress "
|
796 |
+
"powered website."
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: includes/panel/about.php:245
|
800 |
+
msgid ""
|
801 |
+
"The most advanced frontend drag & drop page builder. Create high-end, pixel "
|
802 |
+
"perfect websites."
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: includes/panel/about.php:247
|
806 |
+
msgid ""
|
807 |
+
"A drag and drop WordPress Page Builder. Create with ease beautiful & "
|
808 |
+
"professional pages."
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: includes/panel/about.php:249
|
812 |
+
msgid ""
|
813 |
+
"Visual Composer is the ultimate plugin for building every WordPress site "
|
814 |
+
"without coding."
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/panel/about.php:251
|
818 |
+
msgid ""
|
819 |
+
"It’s not just a slider, build modern & mobile friendly presentations for "
|
820 |
+
"your website in no time."
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: includes/panel/about.php:253
|
824 |
+
msgid ""
|
825 |
+
"A powerful and flexible plugin that makes it a breeze for users to sign-up and "
|
826 |
+
"become members."
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: includes/panel/about.php:255
|
830 |
+
msgid ""
|
831 |
+
"WooCommerce is a free eCommerce plugin that allows you to sell anything, "
|
832 |
+
"beautifully."
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: includes/panel/about.php:259
|
836 |
+
msgid "More Recommended Plugins"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: includes/panel/extensions.php:34 includes/panel/extensions.php:35
|
840 |
+
#: includes/panel/extensions.php:146
|
841 |
+
msgid "Extensions"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: includes/panel/extensions.php:53
|
845 |
+
msgid "Add some new widgets to the popular free page builder Elementor."
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: includes/panel/extensions.php:60
|
849 |
+
msgid "Add a responsive side panel with your preferred widgets inside."
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: includes/panel/extensions.php:74
|
853 |
+
msgid ""
|
854 |
+
"Attach the header with or without the top bar at the top of your screen with "
|
855 |
+
"an animation."
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: includes/panel/extensions.php:80
|
859 |
+
msgid "Ocean Hooks"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: includes/panel/extensions.php:81
|
863 |
+
msgid ""
|
864 |
+
"Add your custom content throughout various areas of OceanWP without using "
|
865 |
+
"child theme."
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: includes/panel/extensions.php:87
|
869 |
+
msgid "Sticky Footer"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: includes/panel/extensions.php:88
|
873 |
+
msgid "A simple extension to attach the footer at the bottom of your screen."
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: includes/panel/extensions.php:94
|
877 |
+
msgid "OceanWP Extra"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: includes/panel/extensions.php:95
|
881 |
+
msgid ""
|
882 |
+
"Add extra features like meta boxes, custom CSS and a panel to activate the "
|
883 |
+
"premium extensions."
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: includes/panel/extensions.php:102
|
887 |
+
msgid "Add social share buttons to your single posts with this free extension."
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: includes/panel/extensions.php:108
|
891 |
+
msgid "Product Sharing"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: includes/panel/extensions.php:109
|
895 |
+
msgid ""
|
896 |
+
"Add social share buttons to your single product page with this free extension."
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: includes/panel/extensions.php:116
|
900 |
+
msgid ""
|
901 |
+
"Generates an unlimited number of sidebars and place them on any page you wish."
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: includes/panel/extensions.php:123
|
905 |
+
msgid ""
|
906 |
+
"Import the Ocean demo content, widgets and customizer settings with one click."
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: includes/panel/extensions.php:129
|
910 |
+
msgid "Posts Slider"
|
911 |
+
msgstr ""
|
912 |
+
|
913 |
+
#: includes/panel/extensions.php:130
|
914 |
+
msgid "Display your latest posts in a beautiful slider with different options."
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: includes/panel/extensions.php:136
|
918 |
+
msgid "Modal Window"
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: includes/panel/extensions.php:137
|
922 |
+
msgid ""
|
923 |
+
"Insert any content in a modals and place the opening button anywhere to open "
|
924 |
+
"it."
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: includes/panel/extensions.php:149
|
928 |
+
msgid "Core Extensions Bundle"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: includes/panel/extensions.php:149
|
932 |
+
msgid ""
|
933 |
+
"Check out our extensions bundle which includes all extensions at a significant "
|
934 |
+
"discount"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: includes/panel/extensions.php:150
|
938 |
+
msgid "View our Extensions Bundle"
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: includes/panel/extensions.php:155
|
942 |
+
msgid "Premium"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/panel/extensions.php:156
|
946 |
+
msgid "Free"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: includes/panel/extensions.php:178 includes/panel/extensions.php:209
|
950 |
+
msgid "Get this Add on"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/panel/extensions.php:179 includes/panel/extensions.php:210
|
954 |
+
msgid "More Details"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/panel/import-export.php:41 includes/panel/import-export.php:42
|
958 |
+
msgid "Import/Export"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/panel/import-export.php:179
|
962 |
+
msgid "You must upload a <b>.json</b> file generated by the export button."
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: includes/panel/import-export.php:218
|
966 |
+
msgid "Import file could not be found. Please try again."
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: includes/panel/import-export.php:295
|
970 |
+
msgid "OceanWP Importer & Exporter"
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#: includes/panel/import-export.php:305 includes/panel/import-export.php:317
|
974 |
+
msgid "Import Settings"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: includes/panel/import-export.php:308
|
978 |
+
msgid "Please select a <b>.json</b> file generated by the export button."
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
#: includes/panel/import-export.php:328 includes/panel/import-export.php:336
|
982 |
+
msgid "Export Settings"
|
983 |
+
msgstr ""
|
984 |
+
|
985 |
+
#: includes/panel/import-export.php:331
|
986 |
+
msgid ""
|
987 |
+
"This will export all theme_mods that means if other plugins are adding "
|
988 |
+
"settings in the customizer it will export those as well."
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: includes/panel/import-export.php:333
|
992 |
+
msgid "Click below to generate a <b>.json</b> file for all settings."
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: includes/panel/links.php:38
|
996 |
+
msgid "Documentation"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: includes/panel/links.php:39
|
1000 |
+
msgid "Support"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: includes/panel/scripts.php:55
|
1004 |
+
msgid "Custom Select"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: includes/panel/scripts.php:56
|
1008 |
+
msgid ""
|
1009 |
+
"The customSelect.js script uses the native select box and add overlays a "
|
1010 |
+
"stylable <span> element in order to acheive the desired look."
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: includes/panel/scripts.php:61
|
1014 |
+
msgid "Drop Down Search"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: includes/panel/scripts.php:62
|
1018 |
+
msgid ""
|
1019 |
+
"The dropDownSearch.js script is for the drop down search style in your "
|
1020 |
+
"navigation."
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: includes/panel/scripts.php:66
|
1024 |
+
msgid "Header Replace Search"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: includes/panel/scripts.php:67
|
1028 |
+
msgid ""
|
1029 |
+
"The headerReplaceSearch.js script is for the header replace search style in "
|
1030 |
+
"your navigation."
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: includes/panel/scripts.php:71
|
1034 |
+
msgid "Overlay Search"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: includes/panel/scripts.php:72
|
1038 |
+
msgid ""
|
1039 |
+
"The overlaySearch.js script is for the overlay search style in your navigation."
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: includes/panel/scripts.php:76
|
1043 |
+
msgid "FitVids"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/panel/scripts.php:77
|
1047 |
+
msgid ""
|
1048 |
+
"The fitVids.js script is to achieve fluid width videos in your responsive web "
|
1049 |
+
"design, your videos looks good on all devices."
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: includes/panel/scripts.php:81
|
1053 |
+
msgid "Fixed Footer"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: includes/panel/scripts.php:82
|
1057 |
+
msgid ""
|
1058 |
+
"The fixedFooter.js script adds a height to your content to keep your footer at "
|
1059 |
+
"the bottom of your page, the Fixed Footer option need to be activated in the "
|
1060 |
+
"customizer’s Footer Widgets section."
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: includes/panel/scripts.php:86
|
1064 |
+
msgid "Full Screen Menu"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: includes/panel/scripts.php:87
|
1068 |
+
msgid ""
|
1069 |
+
"The fullScreenMenu.js script is to open your menu in overlay for the full "
|
1070 |
+
"screen header style, you can disable this function if you do not use this "
|
1071 |
+
"header style."
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: includes/panel/scripts.php:91
|
1075 |
+
msgid "Header Search Form"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: includes/panel/scripts.php:92
|
1079 |
+
msgid ""
|
1080 |
+
"The headerSearchForm.js script is to add a class to the search form to make "
|
1081 |
+
"the label disappear when text is inserted, used on some header style like "
|
1082 |
+
"medium or full screen."
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: includes/panel/scripts.php:96
|
1086 |
+
msgid "Infinite Scroll"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: includes/panel/scripts.php:97
|
1090 |
+
msgid ""
|
1091 |
+
"The infiniteScroll.js script create an infinite scrolling effect, used for the "
|
1092 |
+
"blog archives page if Infinite Scroll is selected as pagination style."
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: includes/panel/scripts.php:101
|
1096 |
+
msgid "Isotope"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: includes/panel/scripts.php:102
|
1100 |
+
msgid ""
|
1101 |
+
"The isotope.js script is to filter & sort layouts, used for the masonry grid "
|
1102 |
+
"style of your blog and will be used in some extensions."
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: includes/panel/scripts.php:106
|
1106 |
+
msgid "Lightbox"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: includes/panel/scripts.php:107
|
1110 |
+
msgid ""
|
1111 |
+
"The lightbox.js script enables you to overlay your images on the current page, "
|
1112 |
+
"used for the gallerie, single product and content images."
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: includes/panel/scripts.php:111
|
1116 |
+
msgid "Match Height"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: includes/panel/scripts.php:112
|
1120 |
+
msgid ""
|
1121 |
+
"The matchHeight.js is a responsive equal heights script makes the height of "
|
1122 |
+
"all selected elements exactly equal, used for the grid blog style."
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: includes/panel/scripts.php:116
|
1126 |
+
msgid "Mega Menu"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: includes/panel/scripts.php:117
|
1130 |
+
msgid ""
|
1131 |
+
"The megaMenu.js script is to create the mega menus, so if you don’t use "
|
1132 |
+
"mega menus at all on your website, you can disable this script."
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: includes/panel/scripts.php:121
|
1136 |
+
msgid "Nav No Click"
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: includes/panel/scripts.php:122
|
1140 |
+
msgid ""
|
1141 |
+
"The navNoClick.js script is to prevent clicking on your links, used for the "
|
1142 |
+
"\"Disable link\" field of your menu items."
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: includes/panel/scripts.php:126
|
1146 |
+
msgid "Scroll Effect"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: includes/panel/scripts.php:127
|
1150 |
+
msgid ""
|
1151 |
+
"The scrollEffect.js script create an animation to your anchor links, mainly "
|
1152 |
+
"used for a one page site but also for some links like the comment link on your "
|
1153 |
+
"single posts."
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: includes/panel/scripts.php:131
|
1157 |
+
msgid "Scroll Top"
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: includes/panel/scripts.php:132
|
1161 |
+
msgid ""
|
1162 |
+
"The scrollTop.js script is to displays the scroll up button and brings you "
|
1163 |
+
"back to the top of your page when you click on it."
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: includes/panel/scripts.php:136
|
1167 |
+
msgid "Sidr"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: includes/panel/scripts.php:137
|
1171 |
+
msgid ""
|
1172 |
+
"The sidr.js script is for easily creating responsive side menus, used for the "
|
1173 |
+
"mobile menu."
|
1174 |
+
msgstr ""
|
1175 |
+
|
1176 |
+
#: includes/panel/scripts.php:141
|
1177 |
+
msgid "Slick"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: includes/panel/scripts.php:142
|
1181 |
+
msgid ""
|
1182 |
+
"The slick.js script is used for all the carousel of your site, gallerie "
|
1183 |
+
"images, WooCommerce single product images and thumbnails."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: includes/panel/scripts.php:146
|
1187 |
+
msgid "SmoothScroll"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: includes/panel/scripts.php:147
|
1191 |
+
msgid "The smoothScroll.js script adds a smooth scrolling to the browser."
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: includes/panel/scripts.php:151
|
1195 |
+
msgid "Superfish"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/panel/scripts.php:152
|
1199 |
+
msgid ""
|
1200 |
+
"The superfish.js script adds usability enhancements to existing multi-level "
|
1201 |
+
"drop-down menus."
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: includes/panel/scripts.php:156
|
1205 |
+
msgid "WooCommerce Grid/List Buttons"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: includes/panel/scripts.php:157
|
1209 |
+
msgid ""
|
1210 |
+
"The wooGridList.js script is to switch between grid and list view on your "
|
1211 |
+
"WooCommerce catalog products."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: includes/panel/scripts.php:162
|
1215 |
+
msgid "WooCommerce Menu Cart"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: includes/panel/scripts.php:163
|
1219 |
+
msgid ""
|
1220 |
+
"The wooMenuCart.js script is to display and hide your WooCommerce cart drop "
|
1221 |
+
"down in the navigation."
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: includes/panel/scripts.php:168
|
1225 |
+
msgid "WooCommerce Categories Widget"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: includes/panel/scripts.php:169
|
1229 |
+
msgid ""
|
1230 |
+
"The wooCategoriesWidget.js script adds a button to show your sub products "
|
1231 |
+
"categories when you click on it for the WooCommerce categories widget."
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: includes/panel/scripts.php:174
|
1235 |
+
msgid "WooCommerce Quantity Buttons"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: includes/panel/scripts.php:175
|
1239 |
+
msgid ""
|
1240 |
+
"The wooQuantityButtons.js script is to add a up and down button for the "
|
1241 |
+
"quantity input number on your WooCommerce single products and cart pages."
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: includes/panel/scripts.php:180
|
1245 |
+
msgid "WooCommerce Reviews Scroll"
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: includes/panel/scripts.php:181
|
1249 |
+
msgid ""
|
1250 |
+
"The wooReviewsScroll.js script is to show and scroll down to your review tab "
|
1251 |
+
"to your WooCommerce single products when you click on the review link."
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: includes/panel/scripts.php:186
|
1255 |
+
msgid "WooCommerce Variable Image"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: includes/panel/scripts.php:187
|
1259 |
+
msgid ""
|
1260 |
+
"The wooVariableImage.js script is to display your variable image on your "
|
1261 |
+
"single products for your WooCommerce variable products."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/panel/scripts.php:193
|
1265 |
+
msgid "Font Awesome Icons"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: includes/panel/scripts.php:194
|
1269 |
+
msgid "The fontAwesome.css style is all the css for the font awesome icons."
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: includes/panel/scripts.php:198
|
1273 |
+
msgid "Simple Line Icons"
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: includes/panel/scripts.php:199
|
1277 |
+
msgid "The simpleLineIcons.css style is all the css for the simple line icons."
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: includes/panel/scripts.php:203
|
1281 |
+
msgid "Top Bar"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: includes/panel/scripts.php:204
|
1285 |
+
msgid "The topBar.css style is all the css for the top bar."
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/panel/scripts.php:209
|
1289 |
+
msgid "The header.css style is all the css for the header."
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: includes/panel/scripts.php:213
|
1293 |
+
msgid "Transparent Header"
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: includes/panel/scripts.php:214
|
1297 |
+
msgid ""
|
1298 |
+
"The transparentHeader.css style is all the css for the transparent header "
|
1299 |
+
"style."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/panel/scripts.php:218
|
1303 |
+
msgid "Top Header"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/panel/scripts.php:219
|
1307 |
+
msgid "The topHeader.css style is all the css for the top header style."
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: includes/panel/scripts.php:223
|
1311 |
+
msgid "Full Screen Header"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/panel/scripts.php:224
|
1315 |
+
msgid ""
|
1316 |
+
"The fullScreenHeader.css style is all the css for the full screen header style."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/panel/scripts.php:228
|
1320 |
+
msgid "Center Header"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: includes/panel/scripts.php:229
|
1324 |
+
msgid "The centerHeader.css style is all the css for the center header style."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/panel/scripts.php:233
|
1328 |
+
msgid "Medium Header"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/panel/scripts.php:234
|
1332 |
+
msgid "The mediumHeader.css style is all the css for the medium header style."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/panel/scripts.php:238
|
1336 |
+
msgid "Custom Header"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: includes/panel/scripts.php:239
|
1340 |
+
msgid "The customHeader.css style is all the css for the custom header style."
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: includes/panel/scripts.php:243
|
1344 |
+
msgid "Navigation"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: includes/panel/scripts.php:244
|
1348 |
+
msgid ""
|
1349 |
+
"The navigation.css style is all the css for the navigation of the principal "
|
1350 |
+
"menu."
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: includes/panel/scripts.php:248
|
1354 |
+
msgid "Social Icons Menu"
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: includes/panel/scripts.php:249
|
1358 |
+
msgid ""
|
1359 |
+
"The socialMenu.css style is all the css for the social icons in the navigation "
|
1360 |
+
"of the header."
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: includes/panel/scripts.php:253
|
1364 |
+
msgid "Page Header"
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: includes/panel/scripts.php:254
|
1368 |
+
msgid "The pageHeader.css style is all the css for the page header (title)."
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: includes/panel/scripts.php:258
|
1372 |
+
msgid "Blog"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: includes/panel/scripts.php:259
|
1376 |
+
msgid "The blog.css style is all the css for the blog and post formats."
|
1377 |
+
msgstr ""
|
1378 |
+
|
1379 |
+
#: includes/panel/scripts.php:263
|
1380 |
+
msgid "Blog Large Style"
|
1381 |
+
msgstr ""
|
1382 |
+
|
1383 |
+
#: includes/panel/scripts.php:264
|
1384 |
+
msgid "The blogLarge.css style is all the css for the blog large style."
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: includes/panel/scripts.php:268
|
1388 |
+
msgid "Blog Grid Style"
|
1389 |
+
msgstr ""
|
1390 |
+
|
1391 |
+
#: includes/panel/scripts.php:269
|
1392 |
+
msgid "The blogGrid.css style is all the css for the blog grid style."
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: includes/panel/scripts.php:273
|
1396 |
+
msgid "Single Post Next/Prev Pagination"
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: includes/panel/scripts.php:274
|
1400 |
+
msgid ""
|
1401 |
+
"The singlePostPrevNext.css style is all the css for the next/previous "
|
1402 |
+
"pagination on single post."
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: includes/panel/scripts.php:278
|
1406 |
+
msgid "Single Post Author Box"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: includes/panel/scripts.php:279
|
1410 |
+
msgid ""
|
1411 |
+
"The singlePostAuthorBio.css style is all the css for the author box on single "
|
1412 |
+
"post."
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: includes/panel/scripts.php:283
|
1416 |
+
msgid "Single Post Related Posts"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: includes/panel/scripts.php:284
|
1420 |
+
msgid ""
|
1421 |
+
"The singlePostRelatedPosts.css style is all the css for the related posts on "
|
1422 |
+
"single post."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: includes/panel/scripts.php:289
|
1426 |
+
msgid "The sidebar.css style is all the css for the sidebar."
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: includes/panel/scripts.php:293
|
1430 |
+
msgid "Comment"
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#: includes/panel/scripts.php:294
|
1434 |
+
msgid "The comment.css style is all the css for the comments."
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: includes/panel/scripts.php:298
|
1438 |
+
msgid "Pagination"
|
1439 |
+
msgstr ""
|
1440 |
+
|
1441 |
+
#: includes/panel/scripts.php:299
|
1442 |
+
msgid "The pagination.css style is all the css for the pagination."
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: includes/panel/scripts.php:303
|
1446 |
+
msgid "Footer Widgets"
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: includes/panel/scripts.php:304
|
1450 |
+
msgid "The footerWidgets.css style is all the css for the footer widgets area."
|
1451 |
+
msgstr ""
|
1452 |
+
|
1453 |
+
#: includes/panel/scripts.php:308
|
1454 |
+
msgid "Footer Bottom"
|
1455 |
+
msgstr ""
|
1456 |
+
|
1457 |
+
#: includes/panel/scripts.php:309
|
1458 |
+
msgid "The footerBottom.css style is all the css for the footer bottom area."
|
1459 |
+
msgstr ""
|
1460 |
+
|
1461 |
+
#: includes/panel/scripts.php:313
|
1462 |
+
msgid "Scroll Top Button"
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: includes/panel/scripts.php:314
|
1466 |
+
msgid "The scrollTop.css style is all the css for the scroll top button."
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: includes/panel/scripts.php:318
|
1470 |
+
msgid "404 Page"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: includes/panel/scripts.php:319
|
1474 |
+
msgid "The errorPage.css style is all the css for the 404 error page."
|
1475 |
+
msgstr ""
|
1476 |
+
|
1477 |
+
#: includes/panel/scripts.php:323
|
1478 |
+
msgid "Responsive"
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: includes/panel/scripts.php:324
|
1482 |
+
msgid "The responsive.css style is all the css for the responsive view."
|
1483 |
+
msgstr ""
|
1484 |
+
|
1485 |
+
#: includes/panel/scripts.php:342 includes/panel/scripts.php:343
|
1486 |
+
msgid "Scripts & Styles"
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: includes/panel/scripts.php:436
|
1490 |
+
msgid "Scripts & Styles Panel"
|
1491 |
+
msgstr ""
|
1492 |
+
|
1493 |
+
#: includes/panel/scripts.php:439
|
1494 |
+
msgid ""
|
1495 |
+
"Disable scripts and styles that you do not need to improve the loading speed "
|
1496 |
+
"of your website."
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: includes/panel/scripts.php:453
|
1500 |
+
msgid "All"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: includes/panel/scripts.php:454
|
1504 |
+
msgid "JS"
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: includes/panel/scripts.php:455
|
1508 |
+
msgid "CSS"
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: includes/panel/scripts.php:498 includes/panel/theme-panel.php:293
|
1512 |
+
msgid "Enable or Disable"
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: includes/panel/theme-panel.php:52
|
1516 |
+
msgid "General Panel"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: includes/panel/theme-panel.php:55
|
1520 |
+
msgid "Typography Panel"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: includes/panel/theme-panel.php:58
|
1524 |
+
msgid "Top Bar Panel"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: includes/panel/theme-panel.php:61
|
1528 |
+
msgid "Header Panel"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: includes/panel/theme-panel.php:64
|
1532 |
+
msgid "Blog Panel"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: includes/panel/theme-panel.php:67
|
1536 |
+
msgid "Sidebar Panel"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: includes/panel/theme-panel.php:70
|
1540 |
+
msgid "Footer Widgets Panel"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: includes/panel/theme-panel.php:73
|
1544 |
+
msgid "Footer Bottom Panel"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: includes/panel/theme-panel.php:76
|
1548 |
+
msgid "Custom CSS/JS Panel"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/panel/theme-panel.php:83
|
1552 |
+
msgid "WooCommerce Panel"
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: includes/panel/theme-panel.php:99 includes/panel/theme-panel.php:211
|
1556 |
+
msgid "Theme Panel"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: includes/panel/theme-panel.php:117 includes/panel/theme-panel.php:118
|
1560 |
+
msgid "General"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: includes/panel/theme-panel.php:244
|
1564 |
+
msgid "Features"
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: includes/panel/theme-panel.php:246
|
1568 |
+
msgid "Customize"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: includes/panel/theme-panel.php:249
|
1572 |
+
msgid "Licenses"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: includes/panel/theme-panel.php:257
|
1576 |
+
msgid ""
|
1577 |
+
"Disable the Customizer panels that you do not have or need anymore to load it "
|
1578 |
+
"quickly. Your settings are saved, so do not worry."
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: includes/panel/theme-panel.php:328
|
1582 |
+
msgid "Save Changes"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: includes/shortcodes/shortcodes.php:112
|
1586 |
+
msgid "Search"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/shortcodes/shortcodes.php:179
|
1590 |
+
msgid "Login"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/shortcodes/shortcodes.php:180
|
1594 |
+
msgid "Log Out"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: includes/shortcodes/shortcodes.php:230
|
1598 |
+
msgid "Welcome back"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: includes/widgets/about-me.php:59
|
1602 |
+
msgid "» About Me"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: includes/widgets/about-me.php:62
|
1606 |
+
msgid "Adds a about me widget."
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/widgets/about-me.php:201
|
1610 |
+
msgid "About Me"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: includes/widgets/about-me.php:203
|
1614 |
+
msgid "John Doe"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: includes/widgets/about-me.php:216
|
1618 |
+
msgid "Image URL"
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: includes/widgets/about-me.php:218
|
1622 |
+
msgid "Upload Image"
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: includes/widgets/about-me.php:222
|
1626 |
+
msgid "Name:"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: includes/widgets/about-me.php:227 includes/widgets/instagram.php:287
|
1630 |
+
msgid "Description:"
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: includes/widgets/about-me.php:232
|
1634 |
+
msgid "Social Style:"
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: includes/widgets/about-me.php:235
|
1638 |
+
msgid "Color"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: includes/widgets/about-me.php:236 includes/widgets/facebook.php:188
|
1642 |
+
#: includes/widgets/social.php:254 includes/widgets/social.php:271
|
1643 |
+
msgid "Light"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: includes/widgets/about-me.php:237 includes/widgets/facebook.php:189
|
1647 |
+
#: includes/widgets/social.php:272
|
1648 |
+
msgid "Dark"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: includes/widgets/about-me.php:242
|
1652 |
+
msgid "Social Link Target:"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: includes/widgets/about-me.php:253 includes/widgets/social.php:318
|
1656 |
+
msgid "Social Links"
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: includes/widgets/contact-info.php:24
|
1660 |
+
msgid "» Contact Info"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: includes/widgets/contact-info.php:27
|
1664 |
+
msgid "Adds support for contact info."
|
1665 |
+
msgstr ""
|
1666 |
+
|
1667 |
+
#: includes/widgets/contact-info.php:164
|
1668 |
+
msgid "Skype"
|
1669 |
+
msgstr ""
|
1670 |
+
|
1671 |
+
#: includes/widgets/contact-info.php:251
|
1672 |
+
msgid "Skype Call Us"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: includes/widgets/contact-info.php:260 includes/widgets/contact-info.php:397
|
1676 |
+
#: includes/widgets/mailchimp.php:165
|
1677 |
+
msgid "Text"
|
1678 |
+
msgstr ""
|
1679 |
+
|
1680 |
+
#: includes/widgets/contact-info.php:265
|
1681 |
+
msgid "Address:"
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: includes/widgets/contact-info.php:268 includes/widgets/contact-info.php:287
|
1685 |
+
#: includes/widgets/contact-info.php:306 includes/widgets/contact-info.php:325
|
1686 |
+
#: includes/widgets/contact-info.php:344 includes/widgets/contact-info.php:368
|
1687 |
+
msgid "Icon Class"
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: includes/widgets/contact-info.php:278 includes/widgets/contact-info.php:297
|
1691 |
+
#: includes/widgets/contact-info.php:316 includes/widgets/contact-info.php:335
|
1692 |
+
msgid "Content"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: includes/widgets/contact-info.php:284
|
1696 |
+
msgid "Phone:"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: includes/widgets/contact-info.php:303
|
1700 |
+
msgid "Mobile:"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: includes/widgets/contact-info.php:322
|
1704 |
+
msgid "Fax:"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: includes/widgets/contact-info.php:341
|
1708 |
+
msgid "Email:"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: includes/widgets/contact-info.php:354
|
1712 |
+
msgid "URL"
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: includes/widgets/contact-info.php:359 includes/widgets/contact-info.php:383
|
1716 |
+
msgid "URL Text"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: includes/widgets/contact-info.php:365
|
1720 |
+
msgid "Website:"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: includes/widgets/contact-info.php:378
|
1724 |
+
msgid "URL (with HTTP)"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: includes/widgets/contact-info.php:389
|
1728 |
+
msgid "Skype:"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: includes/widgets/contact-info.php:392
|
1732 |
+
msgid "Username"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: includes/widgets/custom-header-logo.php:24
|
1736 |
+
msgid "» Custom Header Logo"
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: includes/widgets/custom-header-logo.php:27
|
1740 |
+
msgid "Display the logo for the Custom Header style."
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: includes/widgets/custom-header-logo.php:101
|
1744 |
+
msgid ""
|
1745 |
+
"This widget is to display with your page builder the logo for the Custom "
|
1746 |
+
"Header style."
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: includes/widgets/custom-header-logo.php:105
|
1750 |
+
#: includes/widgets/custom-header-nav.php:108
|
1751 |
+
#: includes/widgets/custom-menu.php:222 includes/widgets/instagram.php:292
|
1752 |
+
msgid "Position:"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: includes/widgets/custom-header-logo.php:108
|
1756 |
+
#: includes/widgets/custom-header-nav.php:110
|
1757 |
+
#: includes/widgets/custom-menu.php:224 includes/widgets/instagram.php:131
|
1758 |
+
#: includes/widgets/instagram.php:302
|
1759 |
+
msgid "Left"
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: includes/widgets/custom-header-logo.php:109
|
1763 |
+
#: includes/widgets/custom-header-nav.php:111
|
1764 |
+
#: includes/widgets/custom-menu.php:225 includes/widgets/instagram.php:303
|
1765 |
+
msgid "Right"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: includes/widgets/custom-header-logo.php:110
|
1769 |
+
#: includes/widgets/custom-header-nav.php:112
|
1770 |
+
#: includes/widgets/custom-menu.php:226 includes/widgets/instagram.php:304
|
1771 |
+
msgid "Center"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: includes/widgets/custom-header-nav.php:24
|
1775 |
+
msgid "» Custom Header Nav"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: includes/widgets/custom-header-nav.php:27
|
1779 |
+
msgid "Display the main menu for the Custom Header style."
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: includes/widgets/custom-header-nav.php:104
|
1783 |
+
msgid ""
|
1784 |
+
"This widget is to display with your page builder the menu for the Custom "
|
1785 |
+
"Header style."
|
1786 |
+
msgstr ""
|
1787 |
+
|
1788 |
+
#: includes/widgets/custom-links.php:24
|
1789 |
+
msgid "» Custom Links"
|
1790 |
+
msgstr ""
|
1791 |
+
|
1792 |
+
#: includes/widgets/custom-links.php:27
|
1793 |
+
msgid "Displays custom links."
|
1794 |
+
msgstr ""
|
1795 |
+
|
1796 |
+
#: includes/widgets/custom-links.php:122
|
1797 |
+
msgid "Link Target:"
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: includes/widgets/custom-links.php:130
|
1801 |
+
msgid "Number of Custom Links:"
|
1802 |
+
msgstr ""
|
1803 |
+
|
1804 |
+
#: includes/widgets/custom-links.php:132
|
1805 |
+
msgid "1"
|
1806 |
+
msgstr ""
|
1807 |
+
|
1808 |
+
#: includes/widgets/custom-links.php:133
|
1809 |
+
msgid "2"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: includes/widgets/custom-links.php:134
|
1813 |
+
msgid "3"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: includes/widgets/custom-links.php:135
|
1817 |
+
msgid "4"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: includes/widgets/custom-links.php:136
|
1821 |
+
msgid "5"
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: includes/widgets/custom-links.php:137
|
1825 |
+
msgid "6"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: includes/widgets/custom-links.php:138
|
1829 |
+
msgid "7"
|
1830 |
+
msgstr ""
|
1831 |
+
|
1832 |
+
#: includes/widgets/custom-links.php:139
|
1833 |
+
msgid "8"
|
1834 |
+
msgstr ""
|
1835 |
+
|
1836 |
+
#: includes/widgets/custom-links.php:140
|
1837 |
+
msgid "9"
|
1838 |
+
msgstr ""
|
1839 |
+
|
1840 |
+
#: includes/widgets/custom-links.php:141
|
1841 |
+
msgid "10"
|
1842 |
+
msgstr ""
|
1843 |
+
|
1844 |
+
#: includes/widgets/custom-links.php:142
|
1845 |
+
msgid "11"
|
1846 |
+
msgstr ""
|
1847 |
+
|
1848 |
+
#: includes/widgets/custom-links.php:143
|
1849 |
+
msgid "12"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: includes/widgets/custom-links.php:144
|
1853 |
+
msgid "13"
|
1854 |
+
msgstr ""
|
1855 |
+
|
1856 |
+
#: includes/widgets/custom-links.php:145
|
1857 |
+
msgid "14"
|
1858 |
+
msgstr ""
|
1859 |
+
|
1860 |
+
#: includes/widgets/custom-links.php:146
|
1861 |
+
msgid "15"
|
1862 |
+
msgstr ""
|
1863 |
+
|
1864 |
+
#: includes/widgets/custom-menu.php:24
|
1865 |
+
msgid "» Custom Menu"
|
1866 |
+
msgstr ""
|
1867 |
+
|
1868 |
+
#: includes/widgets/custom-menu.php:27
|
1869 |
+
msgid "Displays custom menu."
|
1870 |
+
msgstr ""
|
1871 |
+
|
1872 |
+
#: includes/widgets/custom-menu.php:201
|
1873 |
+
#, php-format
|
1874 |
+
msgid "No menus have been created yet. <a href=\"%s\">Create some</a>."
|
1875 |
+
msgstr ""
|
1876 |
+
|
1877 |
+
#: includes/widgets/custom-menu.php:210
|
1878 |
+
msgid "Select Menu:"
|
1879 |
+
msgstr ""
|
1880 |
+
|
1881 |
+
#: includes/widgets/custom-menu.php:212
|
1882 |
+
msgid "— Select —"
|
1883 |
+
msgstr ""
|
1884 |
+
|
1885 |
+
#: includes/widgets/custom-menu.php:231
|
1886 |
+
msgid "Menu Padding:"
|
1887 |
+
msgstr ""
|
1888 |
+
|
1889 |
+
#: includes/widgets/custom-menu.php:233 includes/widgets/tags.php:290
|
1890 |
+
msgid "top left bottom right, eg: 15px 8px 15px 25px"
|
1891 |
+
msgstr ""
|
1892 |
+
|
1893 |
+
#: includes/widgets/custom-menu.php:237
|
1894 |
+
msgid "Menu Link Color:"
|
1895 |
+
msgstr ""
|
1896 |
+
|
1897 |
+
#: includes/widgets/custom-menu.php:242
|
1898 |
+
msgid "Menu Link Hover Color:"
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: includes/widgets/custom-menu.php:247 includes/widgets/tags.php:324
|
1902 |
+
msgid "Font Size (px):"
|
1903 |
+
msgstr ""
|
1904 |
+
|
1905 |
+
#: includes/widgets/custom-menu.php:252 includes/widgets/tags.php:329
|
1906 |
+
msgid "Line Height (px):"
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: includes/widgets/custom-menu.php:257 includes/widgets/tags.php:334
|
1910 |
+
msgid "Letter Spacing (px):"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: includes/widgets/custom-menu.php:262 includes/widgets/tags.php:339
|
1914 |
+
msgid "Text Transform:"
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: includes/widgets/custom-menu.php:265 includes/widgets/tags.php:342
|
1918 |
+
msgid "Capitalize"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: includes/widgets/custom-menu.php:266 includes/widgets/tags.php:343
|
1922 |
+
msgid "Lowercase"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: includes/widgets/custom-menu.php:267 includes/widgets/tags.php:344
|
1926 |
+
msgid "Uppercase"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: includes/widgets/facebook.php:35
|
1930 |
+
msgid "» Facebook Like Box"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: includes/widgets/facebook.php:38
|
1934 |
+
msgid "Display a Facebook Like Box to connect visitors to your Facebook Page."
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: includes/widgets/facebook.php:62
|
1938 |
+
#, php-format
|
1939 |
+
msgid ""
|
1940 |
+
"It looks like your Facebook URL is incorrectly configured. Please check it in "
|
1941 |
+
"your <a href=\"%s\">widget settings</a>."
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: includes/widgets/facebook.php:169
|
1945 |
+
msgid "Facebook Page URL"
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: includes/widgets/facebook.php:172
|
1949 |
+
msgid "The Like Box only works with "
|
1950 |
+
msgstr ""
|
1951 |
+
|
1952 |
+
#: includes/widgets/facebook.php:172
|
1953 |
+
msgid "Facebook Pages"
|
1954 |
+
msgstr ""
|
1955 |
+
|
1956 |
+
#: includes/widgets/facebook.php:176
|
1957 |
+
msgid "Width"
|
1958 |
+
msgstr ""
|
1959 |
+
|
1960 |
+
#: includes/widgets/facebook.php:181
|
1961 |
+
msgid "Height"
|
1962 |
+
msgstr ""
|
1963 |
+
|
1964 |
+
#: includes/widgets/facebook.php:186
|
1965 |
+
msgid "Color Scheme"
|
1966 |
+
msgstr ""
|
1967 |
+
|
1968 |
+
#: includes/widgets/facebook.php:196
|
1969 |
+
msgid "Show Faces"
|
1970 |
+
msgstr ""
|
1971 |
+
|
1972 |
+
#: includes/widgets/facebook.php:198
|
1973 |
+
msgid "Show profile photos in the plugin."
|
1974 |
+
msgstr ""
|
1975 |
+
|
1976 |
+
#: includes/widgets/facebook.php:205
|
1977 |
+
msgid "Show Stream"
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: includes/widgets/facebook.php:207
|
1981 |
+
msgid "Show the profile stream for the public profile."
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: includes/widgets/facebook.php:214
|
1985 |
+
msgid "Show Border"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: includes/widgets/facebook.php:216
|
1989 |
+
msgid "Show a border around the plugin."
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: includes/widgets/facebook.php:223
|
1993 |
+
msgid "Show Wall"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: includes/widgets/facebook.php:225
|
1997 |
+
msgid "Show the wall for a Places page rather than friend activity."
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: includes/widgets/flickr.php:24
|
2001 |
+
msgid "» Flickr"
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: includes/widgets/flickr.php:27
|
2005 |
+
msgid "Pulls in images from your flickr account."
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: includes/widgets/flickr.php:59
|
2009 |
+
msgid "View stream on flickr"
|
2010 |
+
msgstr ""
|
2011 |
+
|
2012 |
+
#: includes/widgets/flickr.php:110
|
2013 |
+
msgid "Flickr ID"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: includes/widgets/flickr.php:112
|
2017 |
+
msgid "Enter the url of your Flickr page on this site: idgettr.com."
|
2018 |
+
msgstr ""
|
2019 |
+
|
2020 |
+
#: includes/widgets/flickr.php:116
|
2021 |
+
msgid "Number:"
|
2022 |
+
msgstr ""
|
2023 |
+
|
2024 |
+
#: includes/widgets/flickr.php:118
|
2025 |
+
msgid "The maximum is 10 images."
|
2026 |
+
msgstr ""
|
2027 |
+
|
2028 |
+
#: includes/widgets/instagram.php:25
|
2029 |
+
msgid "» Instagram"
|
2030 |
+
msgstr ""
|
2031 |
+
|
2032 |
+
#: includes/widgets/instagram.php:28
|
2033 |
+
msgid "Displays Instagram photos."
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
#: includes/widgets/instagram.php:118
|
2037 |
+
msgid "Instagram"
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: includes/widgets/instagram.php:120
|
2041 |
+
msgid "adidas"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: includes/widgets/instagram.php:125 includes/widgets/instagram.php:258
|
2045 |
+
#: includes/widgets/instagram.php:268 includes/widgets/recent-posts.php:237
|
2046 |
+
msgid "No"
|
2047 |
+
msgstr ""
|
2048 |
+
|
2049 |
+
#: includes/widgets/instagram.php:126 includes/widgets/instagram.php:133
|
2050 |
+
#: includes/widgets/instagram.php:259 includes/widgets/instagram.php:267
|
2051 |
+
msgid "Yes"
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: includes/widgets/instagram.php:127 includes/widgets/instagram.php:275
|
2055 |
+
msgid "Rounded"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: includes/widgets/instagram.php:130
|
2059 |
+
msgid "Before"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: includes/widgets/instagram.php:139
|
2063 |
+
msgid "Follow Us"
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: includes/widgets/instagram.php:150
|
2067 |
+
msgid "Search Instagram for:"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: includes/widgets/instagram.php:154
|
2071 |
+
msgid "Username:"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: includes/widgets/instagram.php:162
|
2075 |
+
msgid "Hashtag:"
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
#: includes/widgets/instagram.php:164
|
2079 |
+
msgid "without # sign"
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: includes/widgets/instagram.php:169
|
2083 |
+
msgid "Block Users"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: includes/widgets/instagram.php:171
|
2087 |
+
msgid "Enter usernames separated by commas whose images you don't want to show"
|
2088 |
+
msgstr ""
|
2089 |
+
|
2090 |
+
#: includes/widgets/instagram.php:175
|
2091 |
+
msgid "Number Images To Show:"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: includes/widgets/instagram.php:181
|
2095 |
+
msgid "Check New Images Every:"
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: includes/widgets/instagram.php:183
|
2099 |
+
msgid "hours"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: includes/widgets/instagram.php:188
|
2103 |
+
msgid "Images Style:"
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#: includes/widgets/instagram.php:190
|
2107 |
+
msgid "Style 1"
|
2108 |
+
msgstr ""
|
2109 |
+
|
2110 |
+
#: includes/widgets/instagram.php:191
|
2111 |
+
msgid "Style 2"
|
2112 |
+
msgstr ""
|
2113 |
+
|
2114 |
+
#: includes/widgets/instagram.php:192
|
2115 |
+
msgid "Style 3"
|
2116 |
+
msgstr ""
|
2117 |
+
|
2118 |
+
#: includes/widgets/instagram.php:193
|
2119 |
+
msgid "Style 4"
|
2120 |
+
msgstr ""
|
2121 |
+
|
2122 |
+
#: includes/widgets/instagram.php:194
|
2123 |
+
msgid "2 Columns"
|
2124 |
+
msgstr ""
|
2125 |
+
|
2126 |
+
#: includes/widgets/instagram.php:195
|
2127 |
+
msgid "3 Columns"
|
2128 |
+
msgstr ""
|
2129 |
+
|
2130 |
+
#: includes/widgets/instagram.php:196
|
2131 |
+
msgid "4 Columns"
|
2132 |
+
msgstr ""
|
2133 |
+
|
2134 |
+
#: includes/widgets/instagram.php:197
|
2135 |
+
msgid "5 Columns"
|
2136 |
+
msgstr ""
|
2137 |
+
|
2138 |
+
#: includes/widgets/instagram.php:198
|
2139 |
+
msgid "6 Columns"
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: includes/widgets/instagram.php:199
|
2143 |
+
msgid "7 Columns"
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: includes/widgets/instagram.php:200
|
2147 |
+
msgid "8 Columns"
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: includes/widgets/instagram.php:201
|
2151 |
+
msgid "9 Columns"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: includes/widgets/instagram.php:202
|
2155 |
+
msgid "10 Columns"
|
2156 |
+
msgstr ""
|
2157 |
+
|
2158 |
+
#: includes/widgets/instagram.php:207
|
2159 |
+
msgid "Margin:"
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: includes/widgets/instagram.php:209
|
2163 |
+
msgid "Margin"
|
2164 |
+
msgstr ""
|
2165 |
+
|
2166 |
+
#: includes/widgets/instagram.php:210
|
2167 |
+
msgid "No Margin"
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: includes/widgets/instagram.php:215
|
2171 |
+
msgid "Image format"
|
2172 |
+
msgstr ""
|
2173 |
+
|
2174 |
+
#: includes/widgets/instagram.php:217
|
2175 |
+
msgid "Square - Cropped"
|
2176 |
+
msgstr ""
|
2177 |
+
|
2178 |
+
#: includes/widgets/instagram.php:218
|
2179 |
+
msgid "Original - No Crop"
|
2180 |
+
msgstr ""
|
2181 |
+
|
2182 |
+
#: includes/widgets/instagram.php:220
|
2183 |
+
msgid ""
|
2184 |
+
"<strong>Square - Cropped</strong> - images in 640x640 pixels. <br/"
|
2185 |
+
"><strong>Original - No Crop</strong> - original image size."
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: includes/widgets/instagram.php:224
|
2189 |
+
msgid "Order by"
|
2190 |
+
msgstr ""
|
2191 |
+
|
2192 |
+
#: includes/widgets/instagram.php:226
|
2193 |
+
msgid "Date - Ascending"
|
2194 |
+
msgstr ""
|
2195 |
+
|
2196 |
+
#: includes/widgets/instagram.php:227
|
2197 |
+
msgid "Date - Descending"
|
2198 |
+
msgstr ""
|
2199 |
+
|
2200 |
+
#: includes/widgets/instagram.php:228
|
2201 |
+
msgid "Popularity - Ascending"
|
2202 |
+
msgstr ""
|
2203 |
+
|
2204 |
+
#: includes/widgets/instagram.php:229
|
2205 |
+
msgid "Popularity - Descending"
|
2206 |
+
msgstr ""
|
2207 |
+
|
2208 |
+
#: includes/widgets/instagram.php:230 includes/widgets/recent-posts.php:276
|
2209 |
+
msgid "Random"
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: includes/widgets/instagram.php:236
|
2213 |
+
msgid "Link To"
|
2214 |
+
msgstr ""
|
2215 |
+
|
2216 |
+
#: includes/widgets/instagram.php:238
|
2217 |
+
msgid "Instagram Image"
|
2218 |
+
msgstr ""
|
2219 |
+
|
2220 |
+
#: includes/widgets/instagram.php:239
|
2221 |
+
msgid "Instagram Profile"
|
2222 |
+
msgstr ""
|
2223 |
+
|
2224 |
+
#: includes/widgets/instagram.php:240
|
2225 |
+
msgid "Custom Link"
|
2226 |
+
msgstr ""
|
2227 |
+
|
2228 |
+
#: includes/widgets/instagram.php:247
|
2229 |
+
msgid "Custom Link:"
|
2230 |
+
msgstr ""
|
2231 |
+
|
2232 |
+
#: includes/widgets/instagram.php:249
|
2233 |
+
msgid ""
|
2234 |
+
"Use this field only if the above option is set to <strong>Custom Link</strong>"
|
2235 |
+
msgstr ""
|
2236 |
+
|
2237 |
+
#: includes/widgets/instagram.php:254
|
2238 |
+
msgid "Header Options"
|
2239 |
+
msgstr ""
|
2240 |
+
|
2241 |
+
#: includes/widgets/instagram.php:256
|
2242 |
+
msgid "Display Header:"
|
2243 |
+
msgstr ""
|
2244 |
+
|
2245 |
+
#: includes/widgets/instagram.php:265
|
2246 |
+
msgid "Display Profile Picture:"
|
2247 |
+
msgstr ""
|
2248 |
+
|
2249 |
+
#: includes/widgets/instagram.php:273
|
2250 |
+
msgid "Picture Radius:"
|
2251 |
+
msgstr ""
|
2252 |
+
|
2253 |
+
#: includes/widgets/instagram.php:276
|
2254 |
+
msgid "Square"
|
2255 |
+
msgstr ""
|
2256 |
+
|
2257 |
+
#: includes/widgets/instagram.php:281
|
2258 |
+
msgid "Display Name:"
|
2259 |
+
msgstr ""
|
2260 |
+
|
2261 |
+
#: includes/widgets/instagram.php:282
|
2262 |
+
msgid "Default is username"
|
2263 |
+
msgstr ""
|
2264 |
+
|
2265 |
+
#: includes/widgets/instagram.php:294
|
2266 |
+
msgid "Before Images"
|
2267 |
+
msgstr ""
|
2268 |
+
|
2269 |
+
#: includes/widgets/instagram.php:295
|
2270 |
+
msgid "After Images"
|
2271 |
+
msgstr ""
|
2272 |
+
|
2273 |
+
#: includes/widgets/instagram.php:300
|
2274 |
+
msgid "Align:"
|
2275 |
+
msgstr ""
|
2276 |
+
|
2277 |
+
#: includes/widgets/instagram.php:312
|
2278 |
+
msgid "Button Target:"
|
2279 |
+
msgstr ""
|
2280 |
+
|
2281 |
+
#: includes/widgets/instagram.php:317
|
2282 |
+
msgid "Same or new window"
|
2283 |
+
msgstr ""
|
2284 |
+
|
2285 |
+
#: includes/widgets/instagram.php:321
|
2286 |
+
msgid "Button Text:"
|
2287 |
+
msgstr ""
|
2288 |
+
|
2289 |
+
#: includes/widgets/instagram.php:323
|
2290 |
+
msgid "Leave empty for no button"
|
2291 |
+
msgstr ""
|
2292 |
+
|
2293 |
+
#: includes/widgets/instagram.php:532
|
2294 |
+
msgid "No images found! <br> Try some other hashtag or username"
|
2295 |
+
msgstr ""
|
2296 |
+
|
2297 |
+
#: includes/widgets/instagram.php:588
|
2298 |
+
msgid "Nothing to search for"
|
2299 |
+
msgstr ""
|
2300 |
+
|
2301 |
+
#: includes/widgets/instagram.php:648
|
2302 |
+
msgid "No images found"
|
2303 |
+
msgstr ""
|
2304 |
+
|
2305 |
+
#: includes/widgets/mailchimp.php:24
|
2306 |
+
msgid "» MailChimp"
|
2307 |
+
msgstr ""
|
2308 |
+
|
2309 |
+
#: includes/widgets/mailchimp.php:27
|
2310 |
+
msgid "Displays mailchimp subscription form."
|
2311 |
+
msgstr ""
|
2312 |
+
|
2313 |
+
#: includes/widgets/mailchimp.php:150
|
2314 |
+
msgid ""
|
2315 |
+
"Get all latest content delivered to your email a few times a month. Updates "
|
2316 |
+
"and news about all categories will send to you."
|
2317 |
+
msgstr ""
|
2318 |
+
|
2319 |
+
#: includes/widgets/mailchimp.php:154
|
2320 |
+
msgid "Your Email"
|
2321 |
+
msgstr ""
|
2322 |
+
|
2323 |
+
#: includes/widgets/mailchimp.php:155
|
2324 |
+
msgid "Go"
|
2325 |
+
msgstr ""
|
2326 |
+
|
2327 |
+
#: includes/widgets/mailchimp.php:170
|
2328 |
+
msgid "MailChimp Form Action"
|
2329 |
+
msgstr ""
|
2330 |
+
|
2331 |
+
#: includes/widgets/mailchimp.php:175
|
2332 |
+
msgid "Input Width (px)"
|
2333 |
+
msgstr ""
|
2334 |
+
|
2335 |
+
#: includes/widgets/mailchimp.php:180
|
2336 |
+
msgid "Input Height (px)"
|
2337 |
+
msgstr ""
|
2338 |
+
|
2339 |
+
#: includes/widgets/mailchimp.php:185
|
2340 |
+
msgid "Placeholder"
|
2341 |
+
msgstr ""
|
2342 |
+
|
2343 |
+
#: includes/widgets/mailchimp.php:190
|
2344 |
+
msgid "Submit Text"
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: includes/widgets/recent-posts.php:24
|
2348 |
+
msgid "» Recent Posts"
|
2349 |
+
msgstr ""
|
2350 |
+
|
2351 |
+
#: includes/widgets/recent-posts.php:27
|
2352 |
+
msgid "Shows a listing of your recent or random posts."
|
2353 |
+
msgstr ""
|
2354 |
+
|
2355 |
+
#: includes/widgets/recent-posts.php:33
|
2356 |
+
msgid "Recent Posts"
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: includes/widgets/recent-posts.php:140
|
2360 |
+
msgid "0 Comments"
|
2361 |
+
msgstr ""
|
2362 |
+
|
2363 |
+
#: includes/widgets/recent-posts.php:140
|
2364 |
+
msgid "1 Comment"
|
2365 |
+
msgstr ""
|
2366 |
+
|
2367 |
+
#: includes/widgets/recent-posts.php:140
|
2368 |
+
msgid "% Comments"
|
2369 |
+
msgstr ""
|
2370 |
+
|
2371 |
+
#: includes/widgets/recent-posts.php:154
|
2372 |
+
msgid "No posts found."
|
2373 |
+
msgstr ""
|
2374 |
+
|
2375 |
+
#: includes/widgets/recent-posts.php:210
|
2376 |
+
msgid "Number"
|
2377 |
+
msgstr ""
|
2378 |
+
|
2379 |
+
#: includes/widgets/recent-posts.php:215
|
2380 |
+
msgid "Post Type"
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: includes/widgets/recent-posts.php:234
|
2384 |
+
msgid "Query By Taxonomy"
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: includes/widgets/recent-posts.php:250
|
2388 |
+
msgid "Terms"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: includes/widgets/recent-posts.php:253
|
2392 |
+
msgid "Enter the term slugs to query by seperated by a \"comma\""
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: includes/widgets/recent-posts.php:257
|
2396 |
+
msgid "Order"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: includes/widgets/recent-posts.php:260
|
2400 |
+
msgid "Descending"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: includes/widgets/recent-posts.php:261
|
2404 |
+
msgid "Ascending"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: includes/widgets/recent-posts.php:266
|
2408 |
+
msgid "Order By"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: includes/widgets/recent-posts.php:272
|
2412 |
+
msgid "Date"
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: includes/widgets/recent-posts.php:274
|
2416 |
+
msgid "Modified"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: includes/widgets/recent-posts.php:275
|
2420 |
+
msgid "Author"
|
2421 |
+
msgstr ""
|
2422 |
+
|
2423 |
+
#: includes/widgets/recent-posts.php:277
|
2424 |
+
msgid "Comment Count"
|
2425 |
+
msgstr ""
|
2426 |
+
|
2427 |
+
#: includes/widgets/social.php:110
|
2428 |
+
msgid "» Social Icons"
|
2429 |
+
msgstr ""
|
2430 |
+
|
2431 |
+
#: includes/widgets/social.php:113
|
2432 |
+
msgid "Display your social media icons."
|
2433 |
+
msgstr ""
|
2434 |
+
|
2435 |
+
#: includes/widgets/social.php:255 includes/widgets/social.php:283
|
2436 |
+
msgid "Rotate"
|
2437 |
+
msgstr ""
|
2438 |
+
|
2439 |
+
#: includes/widgets/social.php:269
|
2440 |
+
msgid "Style:"
|
2441 |
+
msgstr ""
|
2442 |
+
|
2443 |
+
#: includes/widgets/social.php:273
|
2444 |
+
msgid "Colored"
|
2445 |
+
msgstr ""
|
2446 |
+
|
2447 |
+
#: includes/widgets/social.php:274
|
2448 |
+
msgid "Simple"
|
2449 |
+
msgstr ""
|
2450 |
+
|
2451 |
+
#: includes/widgets/social.php:279
|
2452 |
+
msgid "Transition:"
|
2453 |
+
msgstr ""
|
2454 |
+
|
2455 |
+
#: includes/widgets/social.php:282
|
2456 |
+
msgid "Float"
|
2457 |
+
msgstr ""
|
2458 |
+
|
2459 |
+
#: includes/widgets/social.php:284
|
2460 |
+
msgid "Zoom Out"
|
2461 |
+
msgstr ""
|
2462 |
+
|
2463 |
+
#: includes/widgets/social.php:298
|
2464 |
+
msgid "Dimensions"
|
2465 |
+
msgstr ""
|
2466 |
+
|
2467 |
+
#: includes/widgets/social.php:300 includes/widgets/social.php:306
|
2468 |
+
#: includes/widgets/social.php:312
|
2469 |
+
msgid "Example:"
|
2470 |
+
msgstr ""
|
2471 |
+
|
2472 |
+
#: includes/widgets/social.php:304
|
2473 |
+
msgid "Font Size"
|
2474 |
+
msgstr ""
|
2475 |
+
|
2476 |
+
#: includes/widgets/social.php:310
|
2477 |
+
msgid "Border Radius"
|
2478 |
+
msgstr ""
|
2479 |
+
|
2480 |
+
#: includes/widgets/tags.php:24
|
2481 |
+
msgid "» Tags Cloud"
|
2482 |
+
msgstr ""
|
2483 |
+
|
2484 |
+
#: includes/widgets/tags.php:27
|
2485 |
+
msgid "A cloud of your most used tags."
|
2486 |
+
msgstr ""
|
2487 |
+
|
2488 |
+
#: includes/widgets/tags.php:63
|
2489 |
+
msgid "Tags"
|
2490 |
+
msgstr ""
|
2491 |
+
|
2492 |
+
#: includes/widgets/tags.php:254
|
2493 |
+
msgid ""
|
2494 |
+
"The tag cloud will not be displayed since there are no taxonomies that support "
|
2495 |
+
"the tag cloud widget."
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: includes/widgets/tags.php:271
|
2499 |
+
msgid "Taxonomy:"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: includes/widgets/tags.php:288
|
2503 |
+
msgid "Padding:"
|
2504 |
+
msgstr ""
|
2505 |
+
|
2506 |
+
#: includes/widgets/tags.php:294
|
2507 |
+
msgid "Background Color:"
|
2508 |
+
msgstr ""
|
2509 |
+
|
2510 |
+
#: includes/widgets/tags.php:299
|
2511 |
+
msgid "Background Hover Color:"
|
2512 |
+
msgstr ""
|
2513 |
+
|
2514 |
+
#: includes/widgets/tags.php:304
|
2515 |
+
msgid "Link Color:"
|
2516 |
+
msgstr ""
|
2517 |
+
|
2518 |
+
#: includes/widgets/tags.php:309
|
2519 |
+
msgid "Link Hover Color:"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: includes/widgets/tags.php:314
|
2523 |
+
msgid "Border Color:"
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: includes/widgets/tags.php:319
|
2527 |
+
msgid "Border Hover Color:"
|
2528 |
+
msgstr ""
|
2529 |
+
|
2530 |
+
#: includes/widgets/video.php:24
|
2531 |
+
msgid "» Video"
|
2532 |
+
msgstr ""
|
2533 |
+
|
2534 |
+
#: includes/widgets/video.php:27
|
2535 |
+
msgid "Easily to display any type of video."
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: includes/widgets/video.php:64
|
2539 |
+
msgid "You forgot to enter a video URL."
|
2540 |
+
msgstr ""
|
2541 |
+
|
2542 |
+
#: includes/widgets/video.php:120
|
2543 |
+
msgid "Video URL "
|
2544 |
+
msgstr ""
|
2545 |
+
|
2546 |
+
#: includes/widgets/video.php:122
|
2547 |
+
msgid ""
|
2548 |
+
"Enter in a video URL that is compatible with WordPress's built-in oEmbed "
|
2549 |
+
"feature."
|
2550 |
+
msgstr ""
|
2551 |
+
|
2552 |
+
#: includes/widgets/video.php:126
|
2553 |
+
msgid "Description"
|
2554 |
+
msgstr ""
|
2555 |
+
|
2556 |
+
#: ocean-extra.php:145 ocean-extra.php:154
|
2557 |
+
msgid "Cheatin’ huh?"
|
2558 |
+
msgstr ""
|
2559 |
+
|
2560 |
+
#: ocean-extra.php:210
|
2561 |
+
msgid "Ocean Extra requires that you use OceanWP as your parent theme."
|
2562 |
+
msgstr ""
|
2563 |
+
|
2564 |
+
#: ocean-extra.php:210
|
2565 |
+
msgid "Install OceanWP Now"
|
2566 |
+
msgstr ""
|
ocean-extra.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Ocean Extra
|
4 |
* Plugin URI: https://oceanwp.org/extension/ocean-extra/
|
5 |
* Description: Add extra features like widgets, metaboxes, import/export and a panel to activate the premium extensions.
|
6 |
-
* Version: 1.2.1.
|
7 |
* Author: OceanWP
|
8 |
* Author URI: https://oceanwp.org/
|
9 |
* Requires at least: 4.5.0
|
@@ -86,7 +86,7 @@ final class Ocean_Extra {
|
|
86 |
$this->token = 'ocean-extra';
|
87 |
$this->plugin_url = plugin_dir_url( __FILE__ );
|
88 |
$this->plugin_path = plugin_dir_path( __FILE__ );
|
89 |
-
$this->version = '1.2.1.
|
90 |
|
91 |
define( 'OE_URL', $this->plugin_url );
|
92 |
define( 'OE_PATH', $this->plugin_path );
|
3 |
* Plugin Name: Ocean Extra
|
4 |
* Plugin URI: https://oceanwp.org/extension/ocean-extra/
|
5 |
* Description: Add extra features like widgets, metaboxes, import/export and a panel to activate the premium extensions.
|
6 |
+
* Version: 1.2.1.2
|
7 |
* Author: OceanWP
|
8 |
* Author URI: https://oceanwp.org/
|
9 |
* Requires at least: 4.5.0
|
86 |
$this->token = 'ocean-extra';
|
87 |
$this->plugin_url = plugin_dir_url( __FILE__ );
|
88 |
$this->plugin_path = plugin_dir_path( __FILE__ );
|
89 |
+
$this->version = '1.2.1.2';
|
90 |
|
91 |
define( 'OE_URL', $this->plugin_url );
|
92 |
define( 'OE_PATH', $this->plugin_path );
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: oceanwp
|
3 |
Tags: widgets, meta box, metaboxes, metabox, oceanwp
|
4 |
Requires at least: 4.5
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.2.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -32,6 +32,9 @@ This plugin will only work with the [OceanWP](https://oceanwp.org/) theme.
|
|
32 |
|
33 |
== Changelog ==
|
34 |
|
|
|
|
|
|
|
35 |
= 1.2.1.1 =
|
36 |
- Fixed: Small issue with some scripts.
|
37 |
|
2 |
Contributors: oceanwp
|
3 |
Tags: widgets, meta box, metaboxes, metabox, oceanwp
|
4 |
Requires at least: 4.5
|
5 |
+
Tested up to: 4.8
|
6 |
+
Stable tag: 1.2.1.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
32 |
|
33 |
== Changelog ==
|
34 |
|
35 |
+
= 1.2.1.2 =
|
36 |
+
- Fixed: WooCommerce CSS updated to fix the small issue with the products categories images.
|
37 |
+
|
38 |
= 1.2.1.1 =
|
39 |
- Fixed: Small issue with some scripts.
|
40 |
|