Version Description
- Uncaught TypeError: $(...).imagesLoaded is not a function() issue is fixed
Download this release
Release Info
Developer | techlabpro1 |
Plugin | The Post Grid |
Version | 1.4 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.4
- README.txt +2 -2
- assets/css/thepostgrid.css +4 -0
- assets/js/rttpg.js +6 -5
- languages/the-post-grid-bn_BD.mo +0 -0
- languages/the-post-grid-bn_BD.po +278 -0
- languages/the-post-grid-nl_NL.mo +0 -0
- languages/the-post-grid-nl_NL.po +278 -0
- languages/the-post-grid.pot +27 -28
- lib/classes/rtTPGInit.php +5 -7
- lib/views/layouts/layout1.php +1 -1
- the-post-grid.php +2 -13
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: techlabpro1
|
|
3 |
Donate link:
|
4 |
Tags: post grid, content grid, post display, post format, post view, blog display, news display, post
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 4.
|
7 |
Stable tag: 1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -77,7 +77,7 @@ For any bug or suggestion please mail support@radiustheme.com
|
|
77 |
* Social Share on popup.
|
78 |
* Override default page template (Category, Tag, Search)
|
79 |
|
80 |
-
[Get The PRO](https://www.radiustheme.com/the-post-grid-pro-for-wordpress/) [PRO Version Demo](http://radiustheme.com/demo/wordpress/thepostgridpro/)
|
81 |
|
82 |
For any bug or suggestion please mail support@radiustheme.com
|
83 |
|
3 |
Donate link:
|
4 |
Tags: post grid, content grid, post display, post format, post view, blog display, news display, post
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 4.7
|
7 |
Stable tag: 1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
77 |
* Social Share on popup.
|
78 |
* Override default page template (Category, Tag, Search)
|
79 |
|
80 |
+
[Get The PRO](https://www.radiustheme.com/downloads/the-post-grid-pro-for-wordpress/) [PRO Version Demo](http://radiustheme.com/demo/wordpress/thepostgridpro/)
|
81 |
|
82 |
For any bug or suggestion please mail support@radiustheme.com
|
83 |
|
assets/css/thepostgrid.css
CHANGED
@@ -439,6 +439,8 @@
|
|
439 |
.rt-tpg-container .isotope1 .rt-holder .rt-detail .post-meta {
|
440 |
text-align: right;
|
441 |
}
|
|
|
|
|
442 |
.rt-tpg-container .isotope1 .rt-holder .rt-detail .read-more {
|
443 |
border: 1px solid #8e8e8e;
|
444 |
padding: 5px 8px;
|
@@ -500,6 +502,7 @@
|
|
500 |
border: 1px solid #dddddd;
|
501 |
margin-left: -1px;
|
502 |
}
|
|
|
503 |
.rt-pagination .pagination > li:first-child > a,
|
504 |
.rt-pagination .pagination > li:first-child > span {
|
505 |
margin-left: 0;
|
@@ -520,6 +523,7 @@
|
|
520 |
background-color: #eeeeee;
|
521 |
border-color: #dddddd;
|
522 |
}
|
|
|
523 |
.rt-pagination .pagination > .active > a,
|
524 |
.rt-pagination .pagination > .active > span,
|
525 |
.rt-pagination .pagination > .active > a:hover,
|
439 |
.rt-tpg-container .isotope1 .rt-holder .rt-detail .post-meta {
|
440 |
text-align: right;
|
441 |
}
|
442 |
+
|
443 |
+
/* isotope read more button Buttons */
|
444 |
.rt-tpg-container .isotope1 .rt-holder .rt-detail .read-more {
|
445 |
border: 1px solid #8e8e8e;
|
446 |
padding: 5px 8px;
|
502 |
border: 1px solid #dddddd;
|
503 |
margin-left: -1px;
|
504 |
}
|
505 |
+
|
506 |
.rt-pagination .pagination > li:first-child > a,
|
507 |
.rt-pagination .pagination > li:first-child > span {
|
508 |
margin-left: 0;
|
523 |
background-color: #eeeeee;
|
524 |
border-color: #dddddd;
|
525 |
}
|
526 |
+
|
527 |
.rt-pagination .pagination > .active > a,
|
528 |
.rt-pagination .pagination > .active > span,
|
529 |
.rt-pagination .pagination > .active > a:hover,
|
assets/js/rttpg.js
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
jQuery.noConflict();
|
2 |
(function ($) {
|
3 |
'use strict';
|
4 |
$(".rt-tpg-container").each(function () {
|
@@ -9,7 +8,10 @@ jQuery.noConflict();
|
|
9 |
$.when(tgpHeightResize()).done(function () {
|
10 |
isotope.isotope({
|
11 |
itemSelector: '.isotope-item',
|
12 |
-
})
|
|
|
|
|
|
|
13 |
});
|
14 |
});
|
15 |
var $isotopeButtonGroup = $isotopeHolder.find('.rt-tpg-isotope-buttons');
|
@@ -59,8 +61,7 @@ jQuery.noConflict();
|
|
59 |
});
|
60 |
});
|
61 |
}
|
62 |
-
|
63 |
-
|
64 |
function overlayIconResizeTpg() {
|
65 |
$('.overlay').each(function () {
|
66 |
var holder_height = $(this).height();
|
@@ -76,4 +77,4 @@ jQuery.noConflict();
|
|
76 |
}
|
77 |
|
78 |
|
79 |
-
})(jQuery);
|
|
|
1 |
(function ($) {
|
2 |
'use strict';
|
3 |
$(".rt-tpg-container").each(function () {
|
8 |
$.when(tgpHeightResize()).done(function () {
|
9 |
isotope.isotope({
|
10 |
itemSelector: '.isotope-item',
|
11 |
+
});
|
12 |
+
setTimeout(function () {
|
13 |
+
isotope.isotope();
|
14 |
+
}, 100);
|
15 |
});
|
16 |
});
|
17 |
var $isotopeButtonGroup = $isotopeHolder.find('.rt-tpg-isotope-buttons');
|
61 |
});
|
62 |
});
|
63 |
}
|
64 |
+
|
|
|
65 |
function overlayIconResizeTpg() {
|
66 |
$('.overlay').each(function () {
|
67 |
var holder_height = $(this).height();
|
77 |
}
|
78 |
|
79 |
|
80 |
+
})(jQuery);
|
languages/the-post-grid-bn_BD.mo
ADDED
Binary file
|
languages/the-post-grid-bn_BD.po
ADDED
@@ -0,0 +1,278 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
4 |
+
"Project-Id-Version: The Post Grid\n"
|
5 |
+
"POT-Creation-Date: 2017-01-05 16:56+0600\n"
|
6 |
+
"PO-Revision-Date: 2017-01-05 16:56+0600\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.8.5\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-WPHeader: the-post-grid.php\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Last-Translator: \n"
|
19 |
+
"Language: bn_BD\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
|
23 |
+
#: lib/classes/rtTPGAjaxResponse.php:27
|
24 |
+
msgid "Settings successfully updated"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: lib/classes/rtTPGAjaxResponse.php:32
|
28 |
+
msgid "Security Error !!"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: lib/classes/rtTPGAjaxResponse.php:58
|
32 |
+
msgid "<div class=\"field-holder\">No Taxonomy found</div>"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: lib/classes/rtTPGAjaxResponse.php:62 lib/classes/rtTPGAjaxResponse.php:81
|
36 |
+
#: lib/classes/rtTPGAjaxResponse.php:120
|
37 |
+
msgid "Security error"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: lib/classes/rtTPGAjaxResponse.php:134
|
41 |
+
msgid "Select Short code"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: lib/classes/rtTPGAjaxResponse.php:136
|
45 |
+
msgid "Default"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: lib/classes/rtTPGAjaxResponse.php:145
|
49 |
+
msgid "No shortCode found."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#. Plugin Name of the plugin/theme
|
53 |
+
#: lib/classes/rtTPGInit.php:21 lib/classes/rtTPGInit.php:22
|
54 |
+
msgid "The Post Grid"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: lib/classes/rtTPGInit.php:23
|
58 |
+
msgid "Add New Grid"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: lib/classes/rtTPGInit.php:24
|
62 |
+
msgid "All Grids"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: lib/classes/rtTPGInit.php:25
|
66 |
+
msgid "Add New Post Grid"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: lib/classes/rtTPGInit.php:26
|
70 |
+
msgid "Edit Post Grid"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: lib/classes/rtTPGInit.php:27
|
74 |
+
msgid "New Post Grid"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: lib/classes/rtTPGInit.php:28
|
78 |
+
msgid "View Post Grid"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: lib/classes/rtTPGInit.php:29
|
82 |
+
msgid "Search Post Grids"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: lib/classes/rtTPGInit.php:30
|
86 |
+
msgid "No Post Grids found"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: lib/classes/rtTPGInit.php:31
|
90 |
+
msgid "No Post Grids found in Trash"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: lib/classes/rtTPGInit.php:143
|
94 |
+
msgid "Settings"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: lib/classes/rtTPGInit.php:156 lib/classes/rtTPGInit.php:159
|
98 |
+
msgid "Field group updated."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: lib/classes/rtTPGInit.php:157
|
102 |
+
msgid "Custom field updated."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: lib/classes/rtTPGInit.php:158
|
106 |
+
msgid "Custom field deleted."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: lib/classes/rtTPGInit.php:161
|
110 |
+
#, php-format
|
111 |
+
msgid "Field group restored to revision from %s"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: lib/classes/rtTPGInit.php:162
|
115 |
+
msgid "Field group published."
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: lib/classes/rtTPGInit.php:163
|
119 |
+
msgid "Field group saved."
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: lib/classes/rtTPGInit.php:164
|
123 |
+
msgid "Field group submitted."
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: lib/classes/rtTPGInit.php:165
|
127 |
+
msgid "Field group scheduled for."
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: lib/classes/rtTPGInit.php:166
|
131 |
+
msgid "Field group draft updated."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: lib/classes/rtTPGMeta.php:26
|
135 |
+
msgid "Shortcode"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: lib/classes/rtTPGMeta.php:76
|
139 |
+
msgid "Short Code Generator"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: lib/classes/rtTPGMeta.php:108
|
143 |
+
msgid "Post Source"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: lib/classes/rtTPGMeta.php:109
|
147 |
+
msgid "Layout Settings"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: lib/classes/rtTPGMeta.php:110
|
151 |
+
msgid "Field Selection"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: lib/classes/rtTPGMeta.php:111
|
155 |
+
msgid "Style"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: lib/classes/rtTPGOptions.php:73
|
159 |
+
msgid "List of post IDs to show (comma-separated values, for example: 1,2,3)"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: lib/classes/rtTPGOptions.php:80
|
163 |
+
msgid "List of post IDs to hide (comma-separated values, for example: 1,2,3)"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: lib/classes/rtTPGOptions.php:87
|
167 |
+
msgid "The number of posts to show. Set empty to show all found posts."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: lib/classes/rtTPGOptions.php:178
|
171 |
+
msgid ""
|
172 |
+
"If value of Limit setting is not blank (empty), this value should be smaller "
|
173 |
+
"than Limit value."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: lib/classes/rtTPGOptions.php:202
|
177 |
+
msgid ""
|
178 |
+
"Excerpt limit only integer number is allowed, Leave it blank for full "
|
179 |
+
"excerpt. Note: This will remove all html tag"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: lib/classes/rtTPGOptions.php:265
|
183 |
+
msgid "Feature Image"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: lib/classes/rtTPGOptions.php:266
|
187 |
+
msgid "First Image from content"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: lib/classes/rtTPGOptions.php:289
|
191 |
+
msgid "Title"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: lib/classes/rtTPGOptions.php:290
|
195 |
+
msgid "Excerpt"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: lib/classes/rtTPGOptions.php:291 lib/views/layouts/layout1.php:53
|
199 |
+
msgid "Read More"
|
200 |
+
msgstr "আরও পড়ুন"
|
201 |
+
|
202 |
+
#: lib/classes/rtTPGOptions.php:292
|
203 |
+
msgid "Post Date"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: lib/classes/rtTPGOptions.php:293
|
207 |
+
msgid "Author"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: lib/classes/rtTPGOptions.php:294
|
211 |
+
msgid "Categories"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: lib/classes/rtTPGOptions.php:295
|
215 |
+
msgid "Tags"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: lib/classes/rtTPGOptions.php:296
|
219 |
+
msgid "Comment Count"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: lib/classes/rtTPGShortCode.php:242
|
223 |
+
msgid "Show all"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: lib/classes/rtTPGShortCode.php:305
|
227 |
+
msgid "No post found"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: lib/views/layouts/layout2.php:48 lib/views/layouts/layout3.php:44
|
231 |
+
msgid "Read More .."
|
232 |
+
msgstr "আরো পড়ুন .."
|
233 |
+
|
234 |
+
#: lib/views/settings/settings.php:8
|
235 |
+
msgid "The Post Grid Settings"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: lib/views/settings/settings.php:9
|
239 |
+
msgid "General settings"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: lib/views/settings/settings.php:10 lib/views/settings/settings.php:56
|
243 |
+
msgid "Documentation"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: lib/views/settings/settings.php:52
|
247 |
+
msgid "Short Code"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: lib/views/settings/settings.php:54
|
251 |
+
msgid "id = short code id (1,2,3,4)"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: lib/views/settings/settings.php:55
|
255 |
+
msgid "title = Shot code title (Not recommended)"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: lib/views/settings/settings.php:56
|
259 |
+
msgid "Demo"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#. Plugin URI of the plugin/theme
|
263 |
+
msgid "http://demo.radiustheme.com/wordpress/plugins/the-post-grid/"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#. Description of the plugin/theme
|
267 |
+
msgid ""
|
268 |
+
"Fast & Easy way to display WordPress post in Grid, List & Isotope view "
|
269 |
+
"( filter by category, tag, author..) without a single line of coding."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#. Author of the plugin/theme
|
273 |
+
msgid "RadiusTheme"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#. Author URI of the plugin/theme
|
277 |
+
msgid "https://radiustheme.com/"
|
278 |
+
msgstr ""
|
languages/the-post-grid-nl_NL.mo
ADDED
Binary file
|
languages/the-post-grid-nl_NL.po
ADDED
@@ -0,0 +1,278 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
4 |
+
"Project-Id-Version: The Post Grid\n"
|
5 |
+
"POT-Creation-Date: 2017-01-05 18:06+0600\n"
|
6 |
+
"PO-Revision-Date: 2017-01-05 18:07+0600\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.8.5\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-WPHeader: the-post-grid.php\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Last-Translator: \n"
|
19 |
+
"Language: nl_NL\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
|
23 |
+
#: lib/classes/rtTPGAjaxResponse.php:27
|
24 |
+
msgid "Settings successfully updated"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: lib/classes/rtTPGAjaxResponse.php:32
|
28 |
+
msgid "Security Error !!"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: lib/classes/rtTPGAjaxResponse.php:58
|
32 |
+
msgid "<div class=\"field-holder\">No Taxonomy found</div>"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: lib/classes/rtTPGAjaxResponse.php:62 lib/classes/rtTPGAjaxResponse.php:81
|
36 |
+
#: lib/classes/rtTPGAjaxResponse.php:120
|
37 |
+
msgid "Security error"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: lib/classes/rtTPGAjaxResponse.php:134
|
41 |
+
msgid "Select Short code"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: lib/classes/rtTPGAjaxResponse.php:136
|
45 |
+
msgid "Default"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: lib/classes/rtTPGAjaxResponse.php:145
|
49 |
+
msgid "No shortCode found."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#. Plugin Name of the plugin/theme
|
53 |
+
#: lib/classes/rtTPGInit.php:21 lib/classes/rtTPGInit.php:22
|
54 |
+
msgid "The Post Grid"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: lib/classes/rtTPGInit.php:23
|
58 |
+
msgid "Add New Grid"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: lib/classes/rtTPGInit.php:24
|
62 |
+
msgid "All Grids"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: lib/classes/rtTPGInit.php:25
|
66 |
+
msgid "Add New Post Grid"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: lib/classes/rtTPGInit.php:26
|
70 |
+
msgid "Edit Post Grid"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: lib/classes/rtTPGInit.php:27
|
74 |
+
msgid "New Post Grid"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: lib/classes/rtTPGInit.php:28
|
78 |
+
msgid "View Post Grid"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: lib/classes/rtTPGInit.php:29
|
82 |
+
msgid "Search Post Grids"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: lib/classes/rtTPGInit.php:30
|
86 |
+
msgid "No Post Grids found"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: lib/classes/rtTPGInit.php:31
|
90 |
+
msgid "No Post Grids found in Trash"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: lib/classes/rtTPGInit.php:143
|
94 |
+
msgid "Settings"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: lib/classes/rtTPGInit.php:156 lib/classes/rtTPGInit.php:159
|
98 |
+
msgid "Field group updated."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: lib/classes/rtTPGInit.php:157
|
102 |
+
msgid "Custom field updated."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: lib/classes/rtTPGInit.php:158
|
106 |
+
msgid "Custom field deleted."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: lib/classes/rtTPGInit.php:161
|
110 |
+
#, php-format
|
111 |
+
msgid "Field group restored to revision from %s"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: lib/classes/rtTPGInit.php:162
|
115 |
+
msgid "Field group published."
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: lib/classes/rtTPGInit.php:163
|
119 |
+
msgid "Field group saved."
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: lib/classes/rtTPGInit.php:164
|
123 |
+
msgid "Field group submitted."
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: lib/classes/rtTPGInit.php:165
|
127 |
+
msgid "Field group scheduled for."
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: lib/classes/rtTPGInit.php:166
|
131 |
+
msgid "Field group draft updated."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: lib/classes/rtTPGMeta.php:26
|
135 |
+
msgid "Shortcode"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: lib/classes/rtTPGMeta.php:76
|
139 |
+
msgid "Short Code Generator"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: lib/classes/rtTPGMeta.php:108
|
143 |
+
msgid "Post Source"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: lib/classes/rtTPGMeta.php:109
|
147 |
+
msgid "Layout Settings"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: lib/classes/rtTPGMeta.php:110
|
151 |
+
msgid "Field Selection"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: lib/classes/rtTPGMeta.php:111
|
155 |
+
msgid "Style"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: lib/classes/rtTPGOptions.php:73
|
159 |
+
msgid "List of post IDs to show (comma-separated values, for example: 1,2,3)"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: lib/classes/rtTPGOptions.php:80
|
163 |
+
msgid "List of post IDs to hide (comma-separated values, for example: 1,2,3)"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: lib/classes/rtTPGOptions.php:87
|
167 |
+
msgid "The number of posts to show. Set empty to show all found posts."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: lib/classes/rtTPGOptions.php:178
|
171 |
+
msgid ""
|
172 |
+
"If value of Limit setting is not blank (empty), this value should be smaller "
|
173 |
+
"than Limit value."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: lib/classes/rtTPGOptions.php:202
|
177 |
+
msgid ""
|
178 |
+
"Excerpt limit only integer number is allowed, Leave it blank for full "
|
179 |
+
"excerpt. Note: This will remove all html tag"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: lib/classes/rtTPGOptions.php:265
|
183 |
+
msgid "Feature Image"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: lib/classes/rtTPGOptions.php:266
|
187 |
+
msgid "First Image from content"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: lib/classes/rtTPGOptions.php:289
|
191 |
+
msgid "Title"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: lib/classes/rtTPGOptions.php:290
|
195 |
+
msgid "Excerpt"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: lib/classes/rtTPGOptions.php:291 lib/views/layouts/layout1.php:53
|
199 |
+
msgid "Read More"
|
200 |
+
msgstr "Lees verder"
|
201 |
+
|
202 |
+
#: lib/classes/rtTPGOptions.php:292
|
203 |
+
msgid "Post Date"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: lib/classes/rtTPGOptions.php:293
|
207 |
+
msgid "Author"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: lib/classes/rtTPGOptions.php:294
|
211 |
+
msgid "Categories"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: lib/classes/rtTPGOptions.php:295
|
215 |
+
msgid "Tags"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: lib/classes/rtTPGOptions.php:296
|
219 |
+
msgid "Comment Count"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: lib/classes/rtTPGShortCode.php:242
|
223 |
+
msgid "Show all"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: lib/classes/rtTPGShortCode.php:305
|
227 |
+
msgid "No post found"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: lib/views/layouts/layout2.php:48 lib/views/layouts/layout3.php:44
|
231 |
+
msgid "Read More .."
|
232 |
+
msgstr "Lees verder …"
|
233 |
+
|
234 |
+
#: lib/views/settings/settings.php:8
|
235 |
+
msgid "The Post Grid Settings"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: lib/views/settings/settings.php:9
|
239 |
+
msgid "General settings"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: lib/views/settings/settings.php:10 lib/views/settings/settings.php:56
|
243 |
+
msgid "Documentation"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: lib/views/settings/settings.php:52
|
247 |
+
msgid "Short Code"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: lib/views/settings/settings.php:54
|
251 |
+
msgid "id = short code id (1,2,3,4)"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: lib/views/settings/settings.php:55
|
255 |
+
msgid "title = Shot code title (Not recommended)"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: lib/views/settings/settings.php:56
|
259 |
+
msgid "Demo"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#. Plugin URI of the plugin/theme
|
263 |
+
msgid "http://demo.radiustheme.com/wordpress/plugins/the-post-grid/"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#. Description of the plugin/theme
|
267 |
+
msgid ""
|
268 |
+
"Fast & Easy way to display WordPress post in Grid, List & Isotope view "
|
269 |
+
"( filter by category, tag, author..) without a single line of coding."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#. Author of the plugin/theme
|
273 |
+
msgid "RadiusTheme"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#. Author URI of the plugin/theme
|
277 |
+
msgid "https://radiustheme.com/"
|
278 |
+
msgstr ""
|
languages/the-post-grid.pot
CHANGED
@@ -3,14 +3,14 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: The Post Grid\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: the-post-grid.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -50,84 +50,84 @@ msgid "No shortCode found."
|
|
50 |
msgstr ""
|
51 |
|
52 |
#. Plugin Name of the plugin/theme
|
53 |
-
#: lib/classes/rtTPGInit.php:
|
54 |
msgid "The Post Grid"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: lib/classes/rtTPGInit.php:
|
58 |
msgid "Add New Grid"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: lib/classes/rtTPGInit.php:
|
62 |
msgid "All Grids"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: lib/classes/rtTPGInit.php:
|
66 |
msgid "Add New Post Grid"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: lib/classes/rtTPGInit.php:
|
70 |
msgid "Edit Post Grid"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: lib/classes/rtTPGInit.php:
|
74 |
msgid "New Post Grid"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: lib/classes/rtTPGInit.php:
|
78 |
msgid "View Post Grid"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: lib/classes/rtTPGInit.php:
|
82 |
msgid "Search Post Grids"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: lib/classes/rtTPGInit.php:
|
86 |
msgid "No Post Grids found"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: lib/classes/rtTPGInit.php:
|
90 |
msgid "No Post Grids found in Trash"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: lib/classes/rtTPGInit.php:
|
94 |
msgid "Settings"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: lib/classes/rtTPGInit.php:
|
98 |
msgid "Field group updated."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: lib/classes/rtTPGInit.php:
|
102 |
msgid "Custom field updated."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: lib/classes/rtTPGInit.php:
|
106 |
msgid "Custom field deleted."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: lib/classes/rtTPGInit.php:
|
110 |
#, php-format
|
111 |
msgid "Field group restored to revision from %s"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: lib/classes/rtTPGInit.php:
|
115 |
msgid "Field group published."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: lib/classes/rtTPGInit.php:
|
119 |
msgid "Field group saved."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: lib/classes/rtTPGInit.php:
|
123 |
msgid "Field group submitted."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: lib/classes/rtTPGInit.php:
|
127 |
msgid "Field group scheduled for."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: lib/classes/rtTPGInit.php:
|
131 |
msgid "Field group draft updated."
|
132 |
msgstr ""
|
133 |
|
@@ -195,7 +195,7 @@ msgstr ""
|
|
195 |
msgid "Excerpt"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: lib/classes/rtTPGOptions.php:291
|
199 |
msgid "Read More"
|
200 |
msgstr ""
|
201 |
|
@@ -219,16 +219,15 @@ msgstr ""
|
|
219 |
msgid "Comment Count"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: lib/classes/rtTPGShortCode.php:
|
223 |
msgid "Show all"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: lib/classes/rtTPGShortCode.php:
|
227 |
msgid "No post found"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: lib/views/layouts/
|
231 |
-
#: lib/views/layouts/layout3.php:44
|
232 |
msgid "Read More .."
|
233 |
msgstr ""
|
234 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: The Post Grid\n"
|
6 |
+
"POT-Creation-Date: 2017-01-05 16:56+0600\n"
|
7 |
+
"PO-Revision-Date: 2017-01-05 16:55+0600\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.5\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-WPHeader: the-post-grid.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
50 |
msgstr ""
|
51 |
|
52 |
#. Plugin Name of the plugin/theme
|
53 |
+
#: lib/classes/rtTPGInit.php:21 lib/classes/rtTPGInit.php:22
|
54 |
msgid "The Post Grid"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: lib/classes/rtTPGInit.php:23
|
58 |
msgid "Add New Grid"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: lib/classes/rtTPGInit.php:24
|
62 |
msgid "All Grids"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: lib/classes/rtTPGInit.php:25
|
66 |
msgid "Add New Post Grid"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: lib/classes/rtTPGInit.php:26
|
70 |
msgid "Edit Post Grid"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: lib/classes/rtTPGInit.php:27
|
74 |
msgid "New Post Grid"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: lib/classes/rtTPGInit.php:28
|
78 |
msgid "View Post Grid"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: lib/classes/rtTPGInit.php:29
|
82 |
msgid "Search Post Grids"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: lib/classes/rtTPGInit.php:30
|
86 |
msgid "No Post Grids found"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: lib/classes/rtTPGInit.php:31
|
90 |
msgid "No Post Grids found in Trash"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: lib/classes/rtTPGInit.php:143
|
94 |
msgid "Settings"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: lib/classes/rtTPGInit.php:156 lib/classes/rtTPGInit.php:159
|
98 |
msgid "Field group updated."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: lib/classes/rtTPGInit.php:157
|
102 |
msgid "Custom field updated."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: lib/classes/rtTPGInit.php:158
|
106 |
msgid "Custom field deleted."
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: lib/classes/rtTPGInit.php:161
|
110 |
#, php-format
|
111 |
msgid "Field group restored to revision from %s"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: lib/classes/rtTPGInit.php:162
|
115 |
msgid "Field group published."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: lib/classes/rtTPGInit.php:163
|
119 |
msgid "Field group saved."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: lib/classes/rtTPGInit.php:164
|
123 |
msgid "Field group submitted."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: lib/classes/rtTPGInit.php:165
|
127 |
msgid "Field group scheduled for."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: lib/classes/rtTPGInit.php:166
|
131 |
msgid "Field group draft updated."
|
132 |
msgstr ""
|
133 |
|
195 |
msgid "Excerpt"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: lib/classes/rtTPGOptions.php:291 lib/views/layouts/layout1.php:53
|
199 |
msgid "Read More"
|
200 |
msgstr ""
|
201 |
|
219 |
msgid "Comment Count"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: lib/classes/rtTPGShortCode.php:242
|
223 |
msgid "Show all"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: lib/classes/rtTPGShortCode.php:305
|
227 |
msgid "No post found"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: lib/views/layouts/layout2.php:48 lib/views/layouts/layout3.php:44
|
|
|
231 |
msgid "Read More .."
|
232 |
msgstr ""
|
233 |
|
lib/classes/rtTPGInit.php
CHANGED
@@ -13,9 +13,6 @@ if(!class_exists('rtTPGInit')):
|
|
13 |
add_filter( 'plugin_action_links_' . RT_THE_POST_GRID_PLUGIN_ACTIVE_FILE_NAME, array($this, 'rt_post_grid_marketing') );
|
14 |
add_action('admin_enqueue_scripts', array($this, 'settings_admin_enqueue_scripts'));
|
15 |
}
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
function init()
|
20 |
{
|
21 |
|
@@ -193,10 +190,11 @@ if(!class_exists('rtTPGInit')):
|
|
193 |
}
|
194 |
}
|
195 |
|
196 |
-
function rt_post_grid_marketing(){
|
197 |
-
|
198 |
-
|
199 |
-
|
|
|
200 |
}
|
201 |
|
202 |
|
13 |
add_filter( 'plugin_action_links_' . RT_THE_POST_GRID_PLUGIN_ACTIVE_FILE_NAME, array($this, 'rt_post_grid_marketing') );
|
14 |
add_action('admin_enqueue_scripts', array($this, 'settings_admin_enqueue_scripts'));
|
15 |
}
|
|
|
|
|
|
|
16 |
function init()
|
17 |
{
|
18 |
|
190 |
}
|
191 |
}
|
192 |
|
193 |
+
function rt_post_grid_marketing($links){
|
194 |
+
$links[] = '<a target="_blank" href="'. esc_url( 'http://demo.radiustheme.com/wordpress/plugins/the-post-grid/' ) .'">Demo</a>';
|
195 |
+
$links[] = '<a target="_blank" href="'. esc_url( 'https://www.radiustheme.com/how-to-setup-configure-the-post-grid-free-version-for-wordpress/' ) .'">Documentation</a>';
|
196 |
+
$links[] = '<a target="_blank" href="'. esc_url( 'https://www.radiustheme.com/the-post-grid-pro-for-wordpress/' ) .'">Get Pro</a>';
|
197 |
+
return $links;
|
198 |
}
|
199 |
|
200 |
|
lib/views/layouts/layout1.php
CHANGED
@@ -50,7 +50,7 @@ $html .= "<div class='{$grid} {$class}'>";
|
|
50 |
|
51 |
|
52 |
if(in_array('read_more', $items)){
|
53 |
-
$postMetaBottom .= "<span class='read-more'><a href='{$pLink}'>".__("Read More ..",
|
54 |
}
|
55 |
if(!empty($postMetaBottom)){
|
56 |
$html .= "<div class='post-meta'>$postMetaBottom</div>";
|
50 |
|
51 |
|
52 |
if(in_array('read_more', $items)){
|
53 |
+
$postMetaBottom .= "<span class='read-more'><a href='{$pLink}'>".__("Read More ..",'the-post-grid')."</a></span>";
|
54 |
}
|
55 |
if(!empty($postMetaBottom)){
|
56 |
$html .= "<div class='post-meta'>$postMetaBottom</div>";
|
the-post-grid.php
CHANGED
@@ -17,20 +17,9 @@
|
|
17 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
18 |
|
19 |
define('RT_THE_POST_GRID_PLUGIN_PATH', dirname(__FILE__));
|
20 |
-
define('RT_THE_POST_GRID_PLUGIN_ACTIVE_FILE_NAME', __FILE__);
|
21 |
define('RT_THE_POST_GRID_PLUGIN_URL', plugins_url('', __FILE__));
|
22 |
define('RT_THE_POST_GRID_PLUGIN_SLUG', basename( dirname( __FILE__ ) ));
|
23 |
define('RT_THE_POST_GRID_LANGUAGE_PATH', dirname( plugin_basename( __FILE__ ) ) . '/languages');
|
24 |
|
25 |
-
require ('lib/init.php');
|
26 |
-
|
27 |
-
|
28 |
-
add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'rt_tpg_marketing');
|
29 |
-
|
30 |
-
function rt_tpg_marketing($links){
|
31 |
-
|
32 |
-
$links[] = '<a target="_blank" href="'. esc_url( 'http://demo.radiustheme.com/wordpress/plugins/the-post-grid/' ) .'">Demo</a>';
|
33 |
-
$links[] = '<a target="_blank" href="'. esc_url( 'https://www.radiustheme.com/how-to-setup-configure-the-post-grid-free-version-for-wordpress/' ) .'">Documentation</a>';
|
34 |
-
$links[] = '<a target="_blank" href="'. esc_url( 'https://www.radiustheme.com/the-post-grid-pro-for-wordpress/' ) .'">Get Pro</a>';
|
35 |
-
return $links;
|
36 |
-
}
|
17 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
18 |
|
19 |
define('RT_THE_POST_GRID_PLUGIN_PATH', dirname(__FILE__));
|
20 |
+
define('RT_THE_POST_GRID_PLUGIN_ACTIVE_FILE_NAME', plugin_basename(__FILE__));
|
21 |
define('RT_THE_POST_GRID_PLUGIN_URL', plugins_url('', __FILE__));
|
22 |
define('RT_THE_POST_GRID_PLUGIN_SLUG', basename( dirname( __FILE__ ) ));
|
23 |
define('RT_THE_POST_GRID_LANGUAGE_PATH', dirname( plugin_basename( __FILE__ ) ) . '/languages');
|
24 |
|
25 |
+
require ('lib/init.php');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|