Version Description
Translation updates. Documentation changes.
=
Download this release
Release Info
Developer | manojtd |
Plugin | Easy Plugin for AdSense |
Version | 6.31 |
Comparing to | |
See all releases |
Code changes from version 6.30 to 6.31
- easy-adsense-lite.php +6 -6
- lang/id_ID/easy-adsenser.mo +0 -0
- lang/id_ID/easy-adsenser.po +413 -413
- lang/ru_RU/easy-adsenser.mo +0 -0
- lang/ru_RU/easy-adsenser.po +19 -25
- myPlugins.php +6 -5
- readme.txt +15 -9
- tail-text.php +3 -0
easy-adsense-lite.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Easy AdSense
|
4 |
Plugin URI: http://www.thulasidas.com/adsense
|
5 |
Description: Easiest way to show AdSense and make money from your blog. Configure it at <a href="options-general.php?page=easy-adsense-lite.php">Settings → Easy AdSense</a>.
|
6 |
-
Version: 6.
|
7 |
Author: Manoj Thulasidas
|
8 |
Author URI: http://www.thulasidas.com
|
9 |
*/
|
@@ -390,7 +390,7 @@ if (!class_exists("EzAdSense")) {
|
|
390 |
return $links;
|
391 |
}
|
392 |
|
393 |
-
function
|
394 |
global $post;
|
395 |
$lookup = array('adsense' => 'adsense',
|
396 |
'adsense-top' =>'show_leadin',
|
@@ -436,7 +436,7 @@ if (!class_exists("EzAdSense")) {
|
|
436 |
$this->urMax = $this->options['max_link'] ;
|
437 |
if ($this->ezCount >= $this->ezMax) return $content ;
|
438 |
if(strpos($content, "<!--noadsense-->") !== false) return $content;
|
439 |
-
$metaOptions = $this->
|
440 |
if (isset($metaOptions['adsense']) && $metaOptions['adsense'] == 'no')
|
441 |
return $content;
|
442 |
$this->handleDefaults() ;
|
@@ -614,7 +614,7 @@ if (!class_exists("EzAdSense")) {
|
|
614 |
$this->options['text_widget'] =
|
615 |
$this->handleDefaultText($this->options['text_widget'], '160x600') ;
|
616 |
$this->options['info'] = $this->info() ;
|
617 |
-
$metaOptions = $this->
|
618 |
if (isset($metaOptions['adsense']) && $metaOptions['adsense'] == 'no') return ;
|
619 |
$show_widget = $metaOptions['show_widget'] ;
|
620 |
if ($show_widget == 'no') return ;
|
@@ -669,7 +669,7 @@ if (!class_exists("EzAdSense")) {
|
|
669 |
$this->handleDefaultText($this->options['text_lu'], '160x160') ;
|
670 |
$title = empty($this->options['title_lu']) ? '' :
|
671 |
$before_title . stripslashes(htmlspecialchars($this->options['title_lu'])) . $after_title ;
|
672 |
-
$metaOptions = $this->
|
673 |
if (isset($metaOptions['adsense']) && $metaOptions['adsense'] == 'no') return ;
|
674 |
$show_lu = $metaOptions['show_lu'] ;
|
675 |
|
@@ -705,7 +705,7 @@ if (!class_exists("EzAdSense")) {
|
|
705 |
extract($args);
|
706 |
$this->options['text_gsearch'] =
|
707 |
$this->handleDefaultText($this->options['text_gsearch'], '160x160') ;
|
708 |
-
$metaOptions = $this->
|
709 |
if (isset($metaOptions['adsense']) && $metaOptions['adsense'] == 'no') return ;
|
710 |
$title_gsearch = $metaOptions['title_gsearch'] ;
|
711 |
|
3 |
Plugin Name: Easy AdSense
|
4 |
Plugin URI: http://www.thulasidas.com/adsense
|
5 |
Description: Easiest way to show AdSense and make money from your blog. Configure it at <a href="options-general.php?page=easy-adsense-lite.php">Settings → Easy AdSense</a>.
|
6 |
+
Version: 6.31
|
7 |
Author: Manoj Thulasidas
|
8 |
Author URI: http://www.thulasidas.com
|
9 |
*/
|
390 |
return $links;
|
391 |
}
|
392 |
|
393 |
+
function getMetaOptions() {
|
394 |
global $post;
|
395 |
$lookup = array('adsense' => 'adsense',
|
396 |
'adsense-top' =>'show_leadin',
|
436 |
$this->urMax = $this->options['max_link'] ;
|
437 |
if ($this->ezCount >= $this->ezMax) return $content ;
|
438 |
if(strpos($content, "<!--noadsense-->") !== false) return $content;
|
439 |
+
$metaOptions = $this->getMetaOptions() ;
|
440 |
if (isset($metaOptions['adsense']) && $metaOptions['adsense'] == 'no')
|
441 |
return $content;
|
442 |
$this->handleDefaults() ;
|
614 |
$this->options['text_widget'] =
|
615 |
$this->handleDefaultText($this->options['text_widget'], '160x600') ;
|
616 |
$this->options['info'] = $this->info() ;
|
617 |
+
$metaOptions = $this->getMetaOptions() ;
|
618 |
if (isset($metaOptions['adsense']) && $metaOptions['adsense'] == 'no') return ;
|
619 |
$show_widget = $metaOptions['show_widget'] ;
|
620 |
if ($show_widget == 'no') return ;
|
669 |
$this->handleDefaultText($this->options['text_lu'], '160x160') ;
|
670 |
$title = empty($this->options['title_lu']) ? '' :
|
671 |
$before_title . stripslashes(htmlspecialchars($this->options['title_lu'])) . $after_title ;
|
672 |
+
$metaOptions = $this->getMetaOptions() ;
|
673 |
if (isset($metaOptions['adsense']) && $metaOptions['adsense'] == 'no') return ;
|
674 |
$show_lu = $metaOptions['show_lu'] ;
|
675 |
|
705 |
extract($args);
|
706 |
$this->options['text_gsearch'] =
|
707 |
$this->handleDefaultText($this->options['text_gsearch'], '160x160') ;
|
708 |
+
$metaOptions = $this->getMetaOptions() ;
|
709 |
if (isset($metaOptions['adsense']) && $metaOptions['adsense'] == 'no') return ;
|
710 |
$title_gsearch = $metaOptions['title_gsearch'] ;
|
711 |
|
lang/id_ID/easy-adsenser.mo
CHANGED
Binary file
|
lang/id_ID/easy-adsenser.po
CHANGED
@@ -1,413 +1,413 @@
|
|
1 |
-
# This file was generated by Easy Translator -- a WordPress plugin translator
|
2 |
-
# Your Name:
|
3 |
-
# Your Email:
|
4 |
-
# Your Website:
|
5 |
-
# Your URL: http://
|
6 |
-
# Your Locale:
|
7 |
-
# Your Language:
|
8 |
-
#, fuzzy
|
9 |
-
msgid ""
|
10 |
-
msgstr ""
|
11 |
-
"Project-Id-Version: Easy AdSenser\n"
|
12 |
-
"PO-Revision-Date:
|
13 |
-
"Last-Translator:
|
14 |
-
"MIME-Version: 1.0\n"
|
15 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
-
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
|
18 |
-
msgid "Instructions"
|
19 |
-
msgstr "Instruksi"
|
20 |
-
|
21 |
-
msgid "How to Set it up"
|
22 |
-
msgstr "Bagaimana memasangnya"
|
23 |
-
|
24 |
-
msgid "A few easy steps to setup %s"
|
25 |
-
msgstr "Beberapa langkah mudah untung memasang %s"
|
26 |
-
|
27 |
-
msgid "How to Control AdSense on Each Post"
|
28 |
-
msgstr "Bagaimana mengontrol AdSense pada Setiap Tulisan"
|
29 |
-
|
30 |
-
msgid "Need to control ad blocks on each post?"
|
31 |
-
msgstr "Ingin mengontrol blok iklan pada setiap tulisan?"
|
32 |
-
|
33 |
-
msgid "All-in-One AdSense Control"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
msgid "Sidebar Widgets, Link Units or Google Search"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
msgid "
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
msgid "
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
-
|
48 |
-
msgid "
|
49 |
-
msgstr "
|
50 |
-
|
51 |
-
msgid "[
|
52 |
-
msgstr "[
|
53 |
-
|
54 |
-
msgid "
|
55 |
-
msgstr "
|
56 |
-
|
57 |
-
msgid "
|
58 |
-
msgstr "
|
59 |
-
|
60 |
-
msgid "
|
61 |
-
msgstr "
|
62 |
-
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
-
|
66 |
-
msgid "
|
67 |
-
msgstr "
|
68 |
-
|
69 |
-
msgid "(Where to show?)"
|
70 |
-
msgstr "(Ditunjukkan di mana?)"
|
71 |
-
|
72 |
-
msgid "Position:"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
msgid "Above Header"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
msgid "Below Header"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
msgid "Beginning of Post"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
msgid "
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
msgid "
|
88 |
-
msgstr "
|
89 |
-
|
90 |
-
msgid "
|
91 |
-
msgstr "
|
92 |
-
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
-
|
96 |
-
msgid "
|
97 |
-
msgstr "
|
98 |
-
|
99 |
-
msgid "Mid-Post AdSense Text"
|
100 |
-
msgstr "Teks AdSense di Tengah Tulisan"
|
101 |
-
|
102 |
-
msgid "(Appears near the middle of the post)"
|
103 |
-
msgstr "(Ditampilkan dekat pada pertengahan tulisan)"
|
104 |
-
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
-
|
108 |
-
msgid "
|
109 |
-
msgstr "
|
110 |
-
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
-
|
114 |
-
msgid "
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
msgid "End of
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
msgid "
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
msgid "
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
msgid "
|
127 |
-
msgstr "
|
128 |
-
|
129 |
-
msgid "
|
130 |
-
msgstr "
|
131 |
-
|
132 |
-
msgid "
|
133 |
-
msgstr "Kebijaksanaan Google
|
134 |
-
|
135 |
-
msgid "Three ad blocks (including the side bar widget, if enabled)."
|
136 |
-
msgstr "Tiga blok iklan (termasuk widget side bar, jika diaktifkan)."
|
137 |
-
|
138 |
-
msgid "Two ad blocks."
|
139 |
-
msgstr "Dua blok iklan."
|
140 |
-
|
141 |
-
msgid "One ad block."
|
142 |
-
msgstr "Satu blok iklan."
|
143 |
-
|
144 |
-
msgid "No ad blocks in posts."
|
145 |
-
msgstr "Tidak ada blok iklan pada tulisan."
|
146 |
-
|
147 |
-
msgid "Any number of ad blocks (At your own risk!)"
|
148 |
-
msgstr "Berapapun jumlah blok iklan (Risiko Anda sendiri!)"
|
149 |
-
|
150 |
-
msgid "Number of Link Units widgets (≤ 3) [Google serves only three]:"
|
151 |
-
msgstr "Jumlah widget Unit Taut (≤ 3) [Google menyuguhkan tiga saja]:"
|
152 |
-
|
153 |
-
msgid "
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
msgid "
|
157 |
-
msgstr ""
|
158 |
-
|
159 |
-
msgid "
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
-
msgid "
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
msgid "
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
msgid "
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
msgid "
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
msgid "
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
msgid "
|
178 |
-
msgstr ""
|
179 |
-
|
180 |
-
msgid "Pages that come up when you click on
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
msgid "
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
msgid "Pages that come up when you click on
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
msgid "
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
msgid "
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
msgid "
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
200 |
-
|
201 |
-
msgid "
|
202 |
-
msgstr "
|
203 |
-
|
204 |
-
msgid "
|
205 |
-
msgstr "
|
206 |
-
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
209 |
-
|
210 |
-
msgid "
|
211 |
-
msgstr ""
|
212 |
-
|
213 |
-
msgid "
|
214 |
-
msgstr "
|
215 |
-
|
216 |
-
msgid "
|
217 |
-
msgstr "
|
218 |
-
|
219 |
-
msgid "
|
220 |
-
msgstr "
|
221 |
-
|
222 |
-
msgid "
|
223 |
-
msgstr "
|
224 |
-
|
225 |
-
msgid "
|
226 |
-
msgstr "Widget
|
227 |
-
|
228 |
-
msgid "(
|
229 |
-
msgstr "(
|
230 |
-
|
231 |
-
msgid "
|
232 |
-
msgstr "
|
233 |
-
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
236 |
-
|
237 |
-
msgid "Suppress
|
238 |
-
msgstr "Hilangkan
|
239 |
-
|
240 |
-
msgid "
|
241 |
-
msgstr "Judul
|
242 |
-
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
-
|
246 |
-
msgid "
|
247 |
-
msgstr "
|
248 |
-
|
249 |
-
msgid "
|
250 |
-
msgstr "
|
251 |
-
|
252 |
-
msgid "
|
253 |
-
msgstr "
|
254 |
-
|
255 |
-
msgid "
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
msgid "
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
msgid "
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
msgid "
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
msgid "
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
msgid "
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
msgid "
|
274 |
-
msgstr "
|
275 |
-
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
-
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
-
|
282 |
-
msgid "Show
|
283 |
-
msgstr "Tampilkan taut
|
284 |
-
|
285 |
-
msgid "Show the link
|
286 |
-
msgstr "Tampilkan taut
|
287 |
-
|
288 |
-
msgid "Show
|
289 |
-
msgstr "
|
290 |
-
|
291 |
-
msgid "
|
292 |
-
msgstr "
|
293 |
-
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
-
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
-
|
300 |
-
msgid "
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
msgid "
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
msgid "
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
msgid "
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
msgid "
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
msgid "
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
msgid "
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
msgid "
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
msgid "
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
msgid "The <b>
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
msgid "
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
msgid "
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
msgid "
|
337 |
-
msgstr ""
|
338 |
-
|
339 |
-
msgid "
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
msgid "
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
msgid "
|
346 |
-
msgstr ""
|
347 |
-
|
348 |
-
msgid "
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
msgid "
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
msgid "
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
msgid "
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
msgid "
|
361 |
-
msgstr ""
|
362 |
-
|
363 |
-
msgid "
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
msgid "Show a Google
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
msgid "Show a Google
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
msgid "
|
373 |
-
msgstr ""
|
374 |
-
|
375 |
-
msgid "
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
msgid "
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
msgid "
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
msgid "
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
msgid "
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
msgid "or
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
msgid "
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
msgid "
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
msgid "
|
400 |
-
msgstr ""
|
401 |
-
|
402 |
-
msgid "
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
msgid "
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
msgid "
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
msgid "My
|
412 |
-
msgstr ""
|
413 |
-
|
1 |
+
# This file was generated by Easy Translator for Easy AdSense -- a WordPress plugin translator
|
2 |
+
# Your Name: Made Werdianta
|
3 |
+
# Your Email: contact@werdingeblog.com
|
4 |
+
# Your Website: Werdingeblog.Com
|
5 |
+
# Your URL: http://werdingeblog.com
|
6 |
+
# Your Locale: id_ID
|
7 |
+
# Your Language: id-ID
|
8 |
+
#, fuzzy
|
9 |
+
msgid ""
|
10 |
+
msgstr ""
|
11 |
+
"Project-Id-Version: Easy AdSenser\n"
|
12 |
+
"PO-Revision-Date: 2013-06-30 01:39:24\n"
|
13 |
+
"Last-Translator: Made Werdianta <contact@werdingeblog.com>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
|
18 |
+
msgid "Instructions"
|
19 |
+
msgstr "Instruksi"
|
20 |
+
|
21 |
+
msgid "How to Set it up"
|
22 |
+
msgstr "Bagaimana memasangnya"
|
23 |
+
|
24 |
+
msgid "A few easy steps to setup %s"
|
25 |
+
msgstr "Beberapa langkah mudah untung memasang %s"
|
26 |
+
|
27 |
+
msgid "How to Control AdSense on Each Post"
|
28 |
+
msgstr "Bagaimana mengontrol AdSense pada Setiap Tulisan"
|
29 |
+
|
30 |
+
msgid "Need to control ad blocks on each post?"
|
31 |
+
msgstr "Ingin mengontrol blok iklan pada setiap tulisan?"
|
32 |
+
|
33 |
+
msgid "All-in-One AdSense Control"
|
34 |
+
msgstr "Kontrol Adsense Satu untuk Semua"
|
35 |
+
|
36 |
+
msgid "Sidebar Widgets, Link Units or Google Search"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
msgid "Options (for the %s theme)"
|
40 |
+
msgstr "Opsi (untuk tema %s)"
|
41 |
+
|
42 |
+
msgid "Ad Blocks in Your Posts"
|
43 |
+
msgstr "Blok Iklan pada Tulisan Anda"
|
44 |
+
|
45 |
+
msgid "[Appears in your posts and pages]"
|
46 |
+
msgstr "[Ditampilkan pada Tulisan atau Halaman]"
|
47 |
+
|
48 |
+
msgid "Widgets for Your Sidebars"
|
49 |
+
msgstr "Widget untuk Sidebar"
|
50 |
+
|
51 |
+
msgid "[See <a href=\"widgets.php\"> Appearance (or Design) → Widgets</a>]"
|
52 |
+
msgstr "[Lihat <a href=\"widgets.php\">Tampilan (atau Desain) → Widget</a>]"
|
53 |
+
|
54 |
+
msgid "Lead-in AdSense Text"
|
55 |
+
msgstr "Teks yang mendahului AdSense"
|
56 |
+
|
57 |
+
msgid "(Appears near the beginning of the post)"
|
58 |
+
msgstr "(Ditampilkan dekat permulaan tulisan)"
|
59 |
+
|
60 |
+
msgid "Ad Alignment"
|
61 |
+
msgstr "Penjajaran Iklan"
|
62 |
+
|
63 |
+
msgid "Min. Word Count"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
msgid "Margin:"
|
67 |
+
msgstr "Batas"
|
68 |
+
|
69 |
+
msgid "(Where to show?)"
|
70 |
+
msgstr "(Ditunjukkan di mana?)"
|
71 |
+
|
72 |
+
msgid "Position:"
|
73 |
+
msgstr "Posisi"
|
74 |
+
|
75 |
+
msgid "Above Header"
|
76 |
+
msgstr "Di atas kepala halaman"
|
77 |
+
|
78 |
+
msgid "Below Header"
|
79 |
+
msgstr "Di bawah kepala halaman"
|
80 |
+
|
81 |
+
msgid "Beginning of Post"
|
82 |
+
msgstr "Di awal tulisan"
|
83 |
+
|
84 |
+
msgid "Show:"
|
85 |
+
msgstr "Tampilkan"
|
86 |
+
|
87 |
+
msgid "Suppress Lead-in Ad"
|
88 |
+
msgstr "Hilangkan Iklan Pendahuluan"
|
89 |
+
|
90 |
+
msgid "Text-wrapped"
|
91 |
+
msgstr "Rapatkan tulisan"
|
92 |
+
|
93 |
+
msgid "No wrap"
|
94 |
+
msgstr "Tulisan tidak dirapatkan"
|
95 |
+
|
96 |
+
msgid "Center"
|
97 |
+
msgstr "Tengah"
|
98 |
+
|
99 |
+
msgid "Mid-Post AdSense Text"
|
100 |
+
msgstr "Teks AdSense di Tengah Tulisan"
|
101 |
+
|
102 |
+
msgid "(Appears near the middle of the post)"
|
103 |
+
msgstr "(Ditampilkan dekat pada pertengahan tulisan)"
|
104 |
+
|
105 |
+
msgid "Force Mid-post Ad"
|
106 |
+
msgstr "Paksakan di tengah"
|
107 |
+
|
108 |
+
msgid "Suppress Mid-post Ad"
|
109 |
+
msgstr "Hilangkan Iklan di Tengah Tulisan"
|
110 |
+
|
111 |
+
msgid "Post Lead-out AdSense Text"
|
112 |
+
msgstr "Teks Penutupan AdSense"
|
113 |
+
|
114 |
+
msgid "(Appears near the end of the post)"
|
115 |
+
msgstr "(Ditampilkan dekat dengan akhir tulisan)"
|
116 |
+
|
117 |
+
msgid "End of Post"
|
118 |
+
msgstr "Akhir tulisan"
|
119 |
+
|
120 |
+
msgid "End of Page"
|
121 |
+
msgstr "Akhir halaman"
|
122 |
+
|
123 |
+
msgid "Above Footer"
|
124 |
+
msgstr "Di atas Kaki Halaman"
|
125 |
+
|
126 |
+
msgid "Below Footer"
|
127 |
+
msgstr "Di bawah Kaki Halaman"
|
128 |
+
|
129 |
+
msgid "Suppress Lead-out Ad"
|
130 |
+
msgstr "Hilangkan Iklan Penutupan"
|
131 |
+
|
132 |
+
msgid "Option on Google Policy"
|
133 |
+
msgstr "Opsi untuk Kebijaksanaan Google"
|
134 |
+
|
135 |
+
msgid "Three ad blocks (including the side bar widget, if enabled)."
|
136 |
+
msgstr "Tiga blok iklan (termasuk widget side bar, jika diaktifkan)."
|
137 |
+
|
138 |
+
msgid "Two ad blocks."
|
139 |
+
msgstr "Dua blok iklan."
|
140 |
+
|
141 |
+
msgid "One ad block."
|
142 |
+
msgstr "Satu blok iklan."
|
143 |
+
|
144 |
+
msgid "No ad blocks in posts."
|
145 |
+
msgstr "Tidak ada blok iklan pada tulisan."
|
146 |
+
|
147 |
+
msgid "Any number of ad blocks (At your own risk!)"
|
148 |
+
msgstr "Berapapun jumlah blok iklan (Risiko Anda sendiri!)"
|
149 |
+
|
150 |
+
msgid "Number of Link Units widgets (≤ 3) [Google serves only three]:"
|
151 |
+
msgstr "Jumlah widget Unit Taut (≤ 3) [Google menyuguhkan tiga saja]:"
|
152 |
+
|
153 |
+
msgid "Suppress AdSense Ad Blocks on:"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
msgid "Pages (Ads only on Posts)"
|
157 |
+
msgstr "Halaman (Ads hanya di Tulisan)"
|
158 |
+
|
159 |
+
msgid "Pages that show attachments"
|
160 |
+
msgstr "Halaman yang menampilkan lampiran"
|
161 |
+
|
162 |
+
msgid "Attachment Page"
|
163 |
+
msgstr "Lampiran halaman"
|
164 |
+
|
165 |
+
msgid "Home Page and Front Page are the same for most blogs"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
msgid "Home Page"
|
169 |
+
msgstr "Halaman Beranda"
|
170 |
+
|
171 |
+
msgid "Front Page"
|
172 |
+
msgstr "Halaman Depan"
|
173 |
+
|
174 |
+
msgid "Pages that come up when you click on category names"
|
175 |
+
msgstr "Halaman yang muncul saat Anda mengklik Kategori"
|
176 |
+
|
177 |
+
msgid "Category Pages"
|
178 |
+
msgstr "Kategori Halaman"
|
179 |
+
|
180 |
+
msgid "Pages that come up when you click on tag names"
|
181 |
+
msgstr "Halaman yang muncul saat Anda mengklik Tag"
|
182 |
+
|
183 |
+
msgid "Tag Pages"
|
184 |
+
msgstr "Tag Halaman"
|
185 |
+
|
186 |
+
msgid "Pages that come up when you click on year/month archives"
|
187 |
+
msgstr "Halaman yang muncul saat Anda mengkil arsip Tahun/Bulan"
|
188 |
+
|
189 |
+
msgid "Archive Pages"
|
190 |
+
msgstr "Halaman Arsip"
|
191 |
+
|
192 |
+
msgid "Other Options"
|
193 |
+
msgstr "Opsi-Opsi Lainnya"
|
194 |
+
|
195 |
+
msgid "Allow ad blocks in feeds. [Please report any problems with this option.]"
|
196 |
+
msgstr "Perkenankan blok iklan dalam feed. [Mohon laporkan segala masalah yang ada dengan opsi ini.]"
|
197 |
+
|
198 |
+
msgid "Prioritize sidebar widget. (Always shows the widget, if enabled.)"
|
199 |
+
msgstr "Prioritaskan widget sidebar. (Selalu ditampilkan pada widget, jika diaktifkan.)"
|
200 |
+
|
201 |
+
msgid "Google Policy says that you may not direct user attention to the ads via arrows or other graphical gimmicks. Please convince yourself that showing a mouseover decoration does not violate this Google statement before enabling this option."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
msgid "Show a border around the ads?"
|
205 |
+
msgstr "Tampilkan bingkai pada ads?"
|
206 |
+
|
207 |
+
msgid "Show the same border on the sidebar widget as well?"
|
208 |
+
msgstr "Tampilkan bingkai yang sama pada widget juga?"
|
209 |
+
|
210 |
+
msgid "Widget?"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
msgid "Show the same border on the link units too?"
|
214 |
+
msgstr "Tampilkan bingkai yang sama pada unit link juga?"
|
215 |
+
|
216 |
+
msgid "Link Units?"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
msgid "All <code>&lt;div&gt;</code>s that <em>Easy AdSense</em> creates have the class attribute <code>adsense</code>. Furthermore, they have class attributes like <code>adsense-leadin</code>, <code>adsense-midtext</code>, <code>adsense-leadout</code>, <code>adsense-widget</code> and <code>adsense-lu</code> depending on the type. You can set the style for these classes in your theme <code>style.css</code> to control their appearance.<br />If this is all Greek to you, please leave the option unchecked."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
msgid "Suppress in-line styles (Control ad-blocks using style.css)"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
msgid "AdSense Widget Text"
|
226 |
+
msgstr "Teks Widget AdSense"
|
227 |
+
|
228 |
+
msgid "(Appears in the Sidebar as a Widget)"
|
229 |
+
msgstr "(Ditampilkan pada Sidebar sebagai Widget)"
|
230 |
+
|
231 |
+
msgid "Align Left"
|
232 |
+
msgstr "Jajar Kiri"
|
233 |
+
|
234 |
+
msgid "Align Right"
|
235 |
+
msgstr "Jajar Kanan"
|
236 |
+
|
237 |
+
msgid "Suppress Widget"
|
238 |
+
msgstr "Hilangkan Widget"
|
239 |
+
|
240 |
+
msgid "Widget Title:"
|
241 |
+
msgstr "Judul Widget:"
|
242 |
+
|
243 |
+
msgid "Hide Title"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
msgid "AdSense Link-Units Text"
|
247 |
+
msgstr "Teks Unit Taut AdSense"
|
248 |
+
|
249 |
+
msgid "(Appears in the Sidebar as Widgets)"
|
250 |
+
msgstr "(Ditampilkan pada Sidebar sebagai Widget)"
|
251 |
+
|
252 |
+
msgid "Suppress Link Units"
|
253 |
+
msgstr "Hilangkan Unit Taut"
|
254 |
+
|
255 |
+
msgid "Link Unit Title:"
|
256 |
+
msgstr "Judul Unit Taut:"
|
257 |
+
|
258 |
+
msgid "Google Search Widget"
|
259 |
+
msgstr "Widget Pencarian Google"
|
260 |
+
|
261 |
+
msgid "(Adds a Google Search Box to your sidebar)"
|
262 |
+
msgstr "(Tambahkan sebuah Kotak Pencarian Google pada sidebar Anda)"
|
263 |
+
|
264 |
+
msgid "Search Title"
|
265 |
+
msgstr "Judul Pencarian"
|
266 |
+
|
267 |
+
msgid "(Title of the Google Search Widget)"
|
268 |
+
msgstr "(Judul dari Widget Pencarian Google)"
|
269 |
+
|
270 |
+
msgid "Suppress Search Box"
|
271 |
+
msgstr "Hilangkan Kotak Pencarian"
|
272 |
+
|
273 |
+
msgid "Custom Title:"
|
274 |
+
msgstr "Judul Tersuai:"
|
275 |
+
|
276 |
+
msgid "Link-backs to"
|
277 |
+
msgstr "Pasang taut ke"
|
278 |
+
|
279 |
+
msgid "(Consider showing at least one link.)"
|
280 |
+
msgstr "(Pertimbangkan untuk menampilkan setidaknya satu taut.)"
|
281 |
+
|
282 |
+
msgid "Show a link under every ad block."
|
283 |
+
msgstr "Tampilkan sebuah taut di bawah setiap blok iklan."
|
284 |
+
|
285 |
+
msgid "Show the link only under the first ad block."
|
286 |
+
msgstr "Tampilkan taut hanya di bawah blok iklan pertama."
|
287 |
+
|
288 |
+
msgid "Show the link at the bottom of your blog page."
|
289 |
+
msgstr "Tampilkan taut pada akhir dari halaman blog."
|
290 |
+
|
291 |
+
msgid "Show no links to my blog anywhere (Are you sure?!)"
|
292 |
+
msgstr "Jangan tampilkan taut pada blog saya di mana pun (Apakah Anda yakin?)"
|
293 |
+
|
294 |
+
msgid "Save Changes"
|
295 |
+
msgstr "Simpan Perubahan"
|
296 |
+
|
297 |
+
msgid "Discard all your changes and load defaults. (Are you quite sure?)"
|
298 |
+
msgstr "Buang semua perubahan Anda dan isi dengan bawaan. (Apakah Anda cukup yakin?)"
|
299 |
+
|
300 |
+
msgid "Clean Database"
|
301 |
+
msgstr "Bersihkan Database"
|
302 |
+
|
303 |
+
msgid "Uninstall"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
msgid "Generate AdSense code (from http://adsense.google.com → AdSense Setup → Get Ads)."
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
msgid "Cut and paste the AdSense code into the boxes below, deleting the existing text."
|
310 |
+
msgstr "Potong dan tempel kode Adsense pada kotak di bawah, hapus teks yang ada."
|
311 |
+
|
312 |
+
msgid "Decide how to align and show the code in your blog posts."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
msgid "Take a look at the Google policy option, and other options. The defaults should work."
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
msgid "If you want to use the widgets, drag and drop them at %s Appearance (or Design) → Widgets %s"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
msgid "Save the options, and you are done!"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
msgid "This <b>Reset Options</b> button discards all your changes and loads the default options. This is your only warning!"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
msgid "The <b>Database Cleanup</b> button discards all your AdSense settings you have saved so far for <b>all</b> the themes, including the current one. Use it only if you know that you won't be using these themes. Please be careful with all database operations -- keep a backup."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
msgid "The <b>Uninstall</b> button really kills %s after cleaning up all the options it wrote in your database. This is your only warning! Please be careful with all database operations -- keep a backup."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
msgid "Kill this plugin. (Are you quite sure?)"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
msgid "Credits"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
msgid "%s uses the excellent Javascript/DHTML tooltips by %s"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
msgid "Settings Updated."
|
343 |
+
msgstr "Pengaturan diperbaharui"
|
344 |
+
|
345 |
+
msgid "Ok, all your settings have been discarded!"
|
346 |
+
msgstr "Baik, semua pengaturan telah dibatalkan"
|
347 |
+
|
348 |
+
msgid "Database has been cleaned. All your options for this plugin (for all themes) have been removed."
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
msgid "This plugin can be deactivated now. "
|
352 |
+
msgstr "Plugin ini sudah bisa dinonaktifkan sekarang"
|
353 |
+
|
354 |
+
msgid "Go to Plugins"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
msgid "Error locating the admin page!\nEnsure admin.php exists, or reinstall the plugin."
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
msgid "Settings"
|
361 |
+
msgstr "Pengaturan"
|
362 |
+
|
363 |
+
msgid "Sponsored Links"
|
364 |
+
msgstr "Link Sponsor"
|
365 |
+
|
366 |
+
msgid "Show a Google AdSense block in your sidebar as a widget"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
msgid "Show a Google Search Box in your sidebar as a widget"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
msgid "Show a Google Links Unit in your sidebar as a widget"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
msgid "Buy %s Pro for $%s. PayPal payment. Instant download."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
msgid "Get the Pro version now!"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
msgid "Continue using the Lite version, and hide this message. After clicking this button, please remember to save your options to hide this box for good."
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
msgid "Stay Lite"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
msgid "Click the link to hide this box. After clicking this link, please remember to save your options to hide this box for good."
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
msgid "Ask a support question (in English or French only) via ezSupport @ $0.95"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
msgid "If you need help with %s, please read the FAQ section on the $link page. It may answer all your questions."
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
msgid "Or, if you still need help, you can raise a support ticket."
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
msgid "[Request Paid Support]"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
msgid "Using our ezSupport Ticket System."
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
msgid "You are using %s (V%s)"
|
406 |
+
msgstr "Anda menggunakan %s (V%s)"
|
407 |
+
|
408 |
+
msgid "Check out my other plugin and PHP efforts:"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
msgid "My Books -- on Physics, Philosophy, making Money etc:"
|
412 |
+
msgstr ""
|
413 |
+
|
lang/ru_RU/easy-adsenser.mo
CHANGED
Binary file
|
lang/ru_RU/easy-adsenser.po
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
# This file was generated by Easy Translator for Easy AdSense -- a WordPress plugin translator
|
2 |
-
# Your Name:
|
3 |
-
# Your Email:
|
4 |
-
# Your Website:
|
5 |
-
# Your URL: http://
|
6 |
# Your Locale: ru_RU
|
7 |
# Your Language: ru-RU
|
8 |
#, fuzzy
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: Easy AdSenser\n"
|
12 |
-
"PO-Revision-Date:
|
13 |
-
"Last-Translator:
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -39,15 +39,6 @@ msgstr "Боковая панель Widgets, Блоки ссылок или По
|
|
39 |
msgid "Options (for the %s theme)"
|
40 |
msgstr "Опции (для %s темы)"
|
41 |
|
42 |
-
msgid "Click for help"
|
43 |
-
msgstr "Щелкните для помощи"
|
44 |
-
|
45 |
-
msgid "Check out the FAQ and rate this plugin."
|
46 |
-
msgstr "Проверьте FAQ и оцените этот плагин."
|
47 |
-
|
48 |
-
msgid "Policy Compliance"
|
49 |
-
msgstr "соблюдение политики"
|
50 |
-
|
51 |
msgid "Ad Blocks in Your Posts"
|
52 |
msgstr "Рекламные блоки в Ваших постах"
|
53 |
|
@@ -357,14 +348,14 @@ msgstr "Ладно, все ваши настройки были отвергну
|
|
357 |
msgid "Database has been cleaned. All your options for this plugin (for all themes) have been removed."
|
358 |
msgstr "База данных была очищена. Все ваши варианты для этого плагина (для всех тем) были удалены."
|
359 |
|
360 |
-
msgid "This plugin
|
361 |
-
msgstr "
|
362 |
|
363 |
-
msgid "
|
364 |
-
msgstr "
|
365 |
|
366 |
-
msgid "Error locating the admin page
|
367 |
-
msgstr "Ошибка при поиске странице
|
368 |
|
369 |
msgid "Settings"
|
370 |
msgstr "Установки"
|
@@ -405,13 +396,16 @@ msgstr "Если вам нужно помочь с %s, читайте секци
|
|
405 |
msgid "Or, if you still need help, you can raise a support ticket."
|
406 |
msgstr "Запрос Платная поддержка."
|
407 |
|
408 |
-
msgid "Go to the plugin description page"
|
409 |
-
msgstr "Перейдите на страницу описания плагина"
|
410 |
-
|
411 |
msgid "[Request Paid Support]"
|
412 |
msgstr "[Запрос Платная поддержка]"
|
413 |
|
414 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
415 |
msgstr "Проверьте мои другими усилиями плагин:"
|
416 |
|
417 |
msgid "My Books -- on Physics, Philosophy, making Money etc:"
|
1 |
# This file was generated by Easy Translator for Easy AdSense -- a WordPress plugin translator
|
2 |
+
# Your Name:
|
3 |
+
# Your Email: parapet87@yandex.ru
|
4 |
+
# Your Website: Советы по компьютеру
|
5 |
+
# Your URL: http://sovet-comp.ru
|
6 |
# Your Locale: ru_RU
|
7 |
# Your Language: ru-RU
|
8 |
#, fuzzy
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: Easy AdSenser\n"
|
12 |
+
"PO-Revision-Date: 2013-06-10 12:02:02\n"
|
13 |
+
"Last-Translator: <parapet87@yandex.ru>\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
39 |
msgid "Options (for the %s theme)"
|
40 |
msgstr "Опции (для %s темы)"
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
msgid "Ad Blocks in Your Posts"
|
43 |
msgstr "Рекламные блоки в Ваших постах"
|
44 |
|
348 |
msgid "Database has been cleaned. All your options for this plugin (for all themes) have been removed."
|
349 |
msgstr "База данных была очищена. Все ваши варианты для этого плагина (для всех тем) были удалены."
|
350 |
|
351 |
+
msgid "This plugin can be deactivated now. "
|
352 |
+
msgstr ""
|
353 |
|
354 |
+
msgid "Go to Plugins"
|
355 |
+
msgstr ""
|
356 |
|
357 |
+
msgid "Error locating the admin page!\nEnsure admin.php exists, or reinstall the plugin."
|
358 |
+
msgstr "Ошибка при поиске странице администратора!\nОбеспечить admin.php существует, или переустановить плагин."
|
359 |
|
360 |
msgid "Settings"
|
361 |
msgstr "Установки"
|
396 |
msgid "Or, if you still need help, you can raise a support ticket."
|
397 |
msgstr "Запрос Платная поддержка."
|
398 |
|
|
|
|
|
|
|
399 |
msgid "[Request Paid Support]"
|
400 |
msgstr "[Запрос Платная поддержка]"
|
401 |
|
402 |
+
msgid "Using our ezSupport Ticket System."
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
msgid "You are using %s (V%s)"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
msgid "Check out my other plugin and PHP efforts:"
|
409 |
msgstr "Проверьте мои другими усилиями плагин:"
|
410 |
|
411 |
msgid "My Books -- on Physics, Philosophy, making Money etc:"
|
myPlugins.php
CHANGED
@@ -39,7 +39,6 @@ $myPlugins['google-adsense'] =
|
|
39 |
'price' => '5.95',
|
40 |
'share' => true,
|
41 |
'long' => false,
|
42 |
-
'hide' => true,
|
43 |
'blurb' => '<em><strong>Google AdSense</strong></em> is a single-provider version of <em><strong>Easy Ads</strong></em> specialized for Google AdSense serving. If you are planning to use more than two providers, it may be easier and more economical to use <em><strong>Easy Ads</strong></em>. <em><strong>Google AdSense</strong></em> ',
|
44 |
'desc' => 'provides you with a fully streamlined interface to manage Google AdSense on your blog.',
|
45 |
'title' => '<a href="http://buy.thulasidas.com/plugins/google-adsense/" title="A new plugin to handle Google"><em><strong>Google AdSense</strong></em></a> gives you a specialized and intuitive interface to manage AdSense ads on your blog, with size selectors, widget options, color-picker to customize your colors, etc. It is a new generation plugin with a fancy, tabbed interface.',
|
@@ -54,9 +53,11 @@ $myPlugins['easy-adsense'] =
|
|
54 |
'desc' => 'manages all aspects of Google AdSense for your blog. Easy and complete!',
|
55 |
'title' => '<em><strong>Easy AdSense</strong></em> provides a very easy way to generate revenue from your blog using Google AdSense. It can insert ads into posts and sidebar, and add a Google Search box. With its full set of features, <em><strong>Easy AdSense</strong></em> is perhaps the first plugin to give you a complete solution for everything AdSense-related.',
|
56 |
'pro' => 'The Lite version of <em><strong>Easy AdSense</strong></em> is fully functional. But the Pro version gives you more features and control. In the Pro version, you get a filter to minimize the chance of your AdSense account getting banned. It uses a fast and effective keyword matching algorithm to examine the contents (including comments that you may have no control over) of each page on the fly and determines whether the page content could look offensive to Google. If so, it prevents your ads from appearing on those pages. And you can tweak the strength of the algorithm. The Pro version also lets you specify a list of computers where your ads will not be shown, in order to prevent accidental clicks on your own ads -- one of the main reasons AdSense bans you.',
|
57 |
-
'benefits' => '<li>
|
58 |
-
<li>Ability to
|
59 |
-
<li>
|
|
|
|
|
60 |
<li>Ability to show a configurable number of ads on Excerpts (which make up the home page in some themes)</li>
|
61 |
<li>Real text-wrapping option in Leadout ad blocks. In the Lite version, text-wrapping in the lead-out ad block may fail in some cases.</li>'
|
62 |
) ;
|
@@ -149,7 +150,7 @@ $myPlugins['unreal-universe'] =
|
|
149 |
'kind' =>'book') ;
|
150 |
|
151 |
$myPlugins['pqd'] =
|
152 |
-
array('value' => '
|
153 |
'url' => 'http://pqd.thulasidas.com',
|
154 |
'amazon' => 'http://www.amazon.com/exec/obidos/ASIN/0470745703/unrblo-20',
|
155 |
'price' => '5.49',
|
39 |
'price' => '5.95',
|
40 |
'share' => true,
|
41 |
'long' => false,
|
|
|
42 |
'blurb' => '<em><strong>Google AdSense</strong></em> is a single-provider version of <em><strong>Easy Ads</strong></em> specialized for Google AdSense serving. If you are planning to use more than two providers, it may be easier and more economical to use <em><strong>Easy Ads</strong></em>. <em><strong>Google AdSense</strong></em> ',
|
43 |
'desc' => 'provides you with a fully streamlined interface to manage Google AdSense on your blog.',
|
44 |
'title' => '<a href="http://buy.thulasidas.com/plugins/google-adsense/" title="A new plugin to handle Google"><em><strong>Google AdSense</strong></em></a> gives you a specialized and intuitive interface to manage AdSense ads on your blog, with size selectors, widget options, color-picker to customize your colors, etc. It is a new generation plugin with a fancy, tabbed interface.',
|
53 |
'desc' => 'manages all aspects of Google AdSense for your blog. Easy and complete!',
|
54 |
'title' => '<em><strong>Easy AdSense</strong></em> provides a very easy way to generate revenue from your blog using Google AdSense. It can insert ads into posts and sidebar, and add a Google Search box. With its full set of features, <em><strong>Easy AdSense</strong></em> is perhaps the first plugin to give you a complete solution for everything AdSense-related.',
|
55 |
'pro' => 'The Lite version of <em><strong>Easy AdSense</strong></em> is fully functional. But the Pro version gives you more features and control. In the Pro version, you get a filter to minimize the chance of your AdSense account getting banned. It uses a fast and effective keyword matching algorithm to examine the contents (including comments that you may have no control over) of each page on the fly and determines whether the page content could look offensive to Google. If so, it prevents your ads from appearing on those pages. And you can tweak the strength of the algorithm. The Pro version also lets you specify a list of computers where your ads will not be shown, in order to prevent accidental clicks on your own ads -- one of the main reasons AdSense bans you.',
|
56 |
+
'benefits' => '<li>Safe Content filter: To ensure that your Google AdSense ads show only on those pages that seem to comply with Google AdSense policies, which can be important since some comments may render your pages inconsistent with those policies.</li>
|
57 |
+
<li>IP filter: Ability to specify a list of computers where your ads will not be shown, in order to prevent accidental clicks on your own ads -- one of the main reasons AdSense bans you. These features will minimize your chance of getting banned.</li>
|
58 |
+
<li>Compatibility mode: To solve the issue of the ad insertion messing up your page appearances when using some themes.</li>
|
59 |
+
<li>Shortcode support: Show the ads only on the pages or posts you want, and exactly where you want them.</li>
|
60 |
+
<li>Mobile support: Ability to suppress ads on mobile devices.</li>
|
61 |
<li>Ability to show a configurable number of ads on Excerpts (which make up the home page in some themes)</li>
|
62 |
<li>Real text-wrapping option in Leadout ad blocks. In the Lite version, text-wrapping in the lead-out ad block may fail in some cases.</li>'
|
63 |
) ;
|
150 |
'kind' =>'book') ;
|
151 |
|
152 |
$myPlugins['pqd'] =
|
153 |
+
array('value' => 'How Does a Bank Work? - eBook',
|
154 |
'url' => 'http://pqd.thulasidas.com',
|
155 |
'amazon' => 'http://www.amazon.com/exec/obidos/ASIN/0470745703/unrblo-20',
|
156 |
'price' => '5.49',
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://buy.thulasidas.com/easy-adsense
|
|
4 |
Tags: adsense, google adsense, ads, advertising, easy adsense, google, adsense plugin
|
5 |
Requires at least: 2.6
|
6 |
Tested up to: 3.6
|
7 |
-
Stable tag: 6.
|
8 |
|
9 |
Easy AdSense manages all aspects of AdSense: insert ads into posts and sidebar, and add a Google Search box. Easiest and most complete AdSense Plugin!
|
10 |
|
@@ -28,17 +28,26 @@ Easy AdSense provides a very easy way to generate revenue from your blog using G
|
|
28 |
5. Easy AdSense sports the simplest possible configuration interface -- nothing more than cutting and pasting AdSense code, and with sensible defaults for the few options present, all with clear instructions.
|
29 |
6. Easy AdSense is internationalized with multiple languages supported.
|
30 |
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
= New in this Release =
|
34 |
|
35 |
-
|
36 |
|
37 |
== Upgrade Notice ==
|
38 |
|
39 |
-
= 6.
|
40 |
|
41 |
-
|
42 |
|
43 |
== Screenshots ==
|
44 |
|
@@ -106,10 +115,6 @@ Yes! Now, in V2.1+, you have more options (using [Custom Fields](http://codex.wo
|
|
106 |
|
107 |
If you feel that the features of Easy AdSense are a bit too much, consider my lean and mean AdSense plugin [AdSense Now!](http://www.thulasidas.com/plugins/adsense-now/ "The simplest possible way to AdSense enable your blog")
|
108 |
|
109 |
-
= I just upgraded to WordPress version 2.8. My widget is gone and I'm mad. What gives? =
|
110 |
-
|
111 |
-
WP2.8 uses a different widget API. Easy AdSense is compatible with it. Just go to your widget page, and drag and drop it again in the sidebar of your choice at the right point. Fret not, your settings and AdSense code are safely saved (per theme), and you don't have to cut and paste those details again.
|
112 |
-
|
113 |
= I just activated the plugin. How come I don't see any ads in my blog? =
|
114 |
|
115 |
Note that you have to generate your adsense code from Google, and paste the *entire* code in the text boxes, replacing the existing text. There are three main text boxes corresponding to three ad locations - Lead-in, Mid-text and Lead-out. If you don't want to use a particular location, please suppress it by selecting the appropriate option. Otherwise, the plugin will show a red box indicating where you ad would be shown.
|
@@ -126,6 +131,7 @@ A big "Thank You" to all my translators. Easy AdSense V2.6+ sports an *Easy Tran
|
|
126 |
|
127 |
== Change Log ==
|
128 |
|
|
|
129 |
* V6.30: Compatibility with WP3.6. [Aug 8, 2013]
|
130 |
* V6.23: New option to suppress the red placeholder boxes that annoy some users. [Jul 27, 2013]
|
131 |
* V6.22: New option to prevent line-breaks in ad insertion. [Jul 3, 2013]
|
4 |
Tags: adsense, google adsense, ads, advertising, easy adsense, google, adsense plugin
|
5 |
Requires at least: 2.6
|
6 |
Tested up to: 3.6
|
7 |
+
Stable tag: 6.31
|
8 |
|
9 |
Easy AdSense manages all aspects of AdSense: insert ads into posts and sidebar, and add a Google Search box. Easiest and most complete AdSense Plugin!
|
10 |
|
28 |
5. Easy AdSense sports the simplest possible configuration interface -- nothing more than cutting and pasting AdSense code, and with sensible defaults for the few options present, all with clear instructions.
|
29 |
6. Easy AdSense is internationalized with multiple languages supported.
|
30 |
|
31 |
+
= Pro Version =
|
32 |
+
|
33 |
+
Easy AdSense is the freely distributed version of a premium plugin. The [Pro version](http://buy.thulasidas.com/easy-adsense "Pro version of the Easy AdSense plugin") gives you more features. Here is a list of the Pro features:
|
34 |
+
|
35 |
+
1. Safe Content filter: To ensure that your Google AdSense ads show only on those pages that seem to comply with Google AdSense policies, which can be important since some comments may render your pages inconsistent with those policies.
|
36 |
+
2. IP filter: Ability to specify a list of computers where your ads will not be shown, in order to prevent accidental clicks on your own ads -- one of the main reasons AdSense bans you. These features will minimize your chance of getting banned.
|
37 |
+
3. Compatibility mode: To solve the issue of the ad insertion messing up your page appearances when using some themes.
|
38 |
+
4. Shortcode support: Show the ads only on the pages or posts you want, and exactly where you want them.
|
39 |
+
5. Mobile support: Ability to suppress ads on mobile devices.
|
40 |
+
6. Ability to show a configurable number of ads on Excerpts (which make up the home page in some themes).
|
41 |
|
42 |
= New in this Release =
|
43 |
|
44 |
+
Translation updates. Documentation changes.
|
45 |
|
46 |
== Upgrade Notice ==
|
47 |
|
48 |
+
= 6.31 =
|
49 |
|
50 |
+
Translation updates. Documentation changes.
|
51 |
|
52 |
== Screenshots ==
|
53 |
|
115 |
|
116 |
If you feel that the features of Easy AdSense are a bit too much, consider my lean and mean AdSense plugin [AdSense Now!](http://www.thulasidas.com/plugins/adsense-now/ "The simplest possible way to AdSense enable your blog")
|
117 |
|
|
|
|
|
|
|
|
|
118 |
= I just activated the plugin. How come I don't see any ads in my blog? =
|
119 |
|
120 |
Note that you have to generate your adsense code from Google, and paste the *entire* code in the text boxes, replacing the existing text. There are three main text boxes corresponding to three ad locations - Lead-in, Mid-text and Lead-out. If you don't want to use a particular location, please suppress it by selecting the appropriate option. Otherwise, the plugin will show a red box indicating where you ad would be shown.
|
131 |
|
132 |
== Change Log ==
|
133 |
|
134 |
+
* V6.31: Translation updates. Documentation changes. [Aug 22, 2013]
|
135 |
* V6.30: Compatibility with WP3.6. [Aug 8, 2013]
|
136 |
* V6.23: New option to suppress the red placeholder boxes that annoy some users. [Jul 27, 2013]
|
137 |
* V6.22: New option to prevent line-breaks in ad insertion. [Jul 3, 2013]
|
tail-text.php
CHANGED
@@ -107,6 +107,9 @@ function popupwindow(url, title, w, h){ var left =(screen.width/2)-(w/2); var
|
|
107 |
<?php
|
108 |
$myPluginsU = array_unique($myPlugins, SORT_REGULAR);
|
109 |
unset($myPluginsU[$plgName]);
|
|
|
|
|
|
|
110 |
$keys = array_rand($myPluginsU, 3);
|
111 |
foreach ($keys as $name) if ($name != $plgName) renderPlg($name, $myPluginsU[$name]) ;
|
112 |
?>
|
107 |
<?php
|
108 |
$myPluginsU = array_unique($myPlugins, SORT_REGULAR);
|
109 |
unset($myPluginsU[$plgName]);
|
110 |
+
foreach ($myPluginsU as $k => $p) {
|
111 |
+
if (isset($p['hide']) || isset($p['kind'])) unset($myPluginsU[$k]);
|
112 |
+
}
|
113 |
$keys = array_rand($myPluginsU, 3);
|
114 |
foreach ($keys as $name) if ($name != $plgName) renderPlg($name, $myPluginsU[$name]) ;
|
115 |
?>
|