Version Description
Updating translations. Adding some text on the admin page about rating.
=
Download this release
Release Info
Developer | manojtd |
Plugin | ![]() |
Version | 5.13 |
Comparing to | |
See all releases |
Code changes from version 5.12 to 5.13
- admin.php +2 -4
- easy-adsense-lite.php +4 -1
- lang/es_ES/easy-adsenser.mo +0 -0
- lang/es_ES/easy-adsenser.po +176 -215
- myPlugins.php +45 -9
- readme.txt +5 -4
- tail-text.php +0 -9
admin.php
CHANGED
@@ -35,8 +35,10 @@ else {
|
|
35 |
<div class="wrap" id="wrapper" style="width:900px">
|
36 |
<h2 title="<?php echo $this->info(false) ?>">Easy AdSense Setup
|
37 |
</h2>
|
|
|
38 |
<form method="post" action="<?php echo $_SERVER["REQUEST_URI"]; ?>">
|
39 |
<?php
|
|
|
40 |
if (!$ezAdOptions['kill_invites']) renderInvite($myPlugins[$plgName], $plgName) ;
|
41 |
?>
|
42 |
<table class="form-table">
|
@@ -59,10 +61,6 @@ printf(__('A few easy steps to setup %s', 'easy-adsenser'),'<em>Easy AdSense</em
|
|
59 |
<a href="#" title="<?php _e('Click for help', 'easy-adsenser') ; ?>" onclick="TagToTip('help1a',WIDTH, 300, TITLE, '<?php _e('All-in-One AdSense Control', 'easy-adsenser') ; ?>', STICKY, 1, CLOSEBTN, true, CLICKCLOSE, true, FIX, [this, 15, 5])">
|
60 |
<?php _e('Sidebar Widgets, Link Units or Google Search', 'easy-adsenser') ;?></a><br />
|
61 |
</li>
|
62 |
-
<li>
|
63 |
-
<a href="#" title="<?php _e('Click for help', 'easy-adsenser') ; ?>" onclick="TagToTip('rate', TITLE, 'WordPress: Easy AdSense', STICKY, 1, CLOSEBTN, true, CLICKCLOSE, true, FIX, [25, 25])">
|
64 |
-
<?php _e('Check out the FAQ and rate this plugin.', 'easy-adsenser') ;?></a><br />
|
65 |
-
</li>
|
66 |
</ul>
|
67 |
</td>
|
68 |
|
35 |
<div class="wrap" id="wrapper" style="width:900px">
|
36 |
<h2 title="<?php echo $this->info(false) ?>">Easy AdSense Setup
|
37 |
</h2>
|
38 |
+
|
39 |
<form method="post" action="<?php echo $_SERVER["REQUEST_URI"]; ?>">
|
40 |
<?php
|
41 |
+
if (!$ezAdOptions['kill_rating']) renderRating($myPlugins[$plgName], $plgName) ;
|
42 |
if (!$ezAdOptions['kill_invites']) renderInvite($myPlugins[$plgName], $plgName) ;
|
43 |
?>
|
44 |
<table class="form-table">
|
61 |
<a href="#" title="<?php _e('Click for help', 'easy-adsenser') ; ?>" onclick="TagToTip('help1a',WIDTH, 300, TITLE, '<?php _e('All-in-One AdSense Control', 'easy-adsenser') ; ?>', STICKY, 1, CLOSEBTN, true, CLICKCLOSE, true, FIX, [this, 15, 5])">
|
62 |
<?php _e('Sidebar Widgets, Link Units or Google Search', 'easy-adsenser') ;?></a><br />
|
63 |
</li>
|
|
|
|
|
|
|
|
|
64 |
</ul>
|
65 |
</td>
|
66 |
|
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: 5.
|
7 |
Author: Manoj Thulasidas
|
8 |
Author URI: http://www.thulasidas.com
|
9 |
*/
|
@@ -136,6 +136,7 @@ if (!class_exists("ezAdSense")) {
|
|
136 |
'border_lu' => false,
|
137 |
'limit_lu' => 1,
|
138 |
'kill_invites' => false,
|
|
|
139 |
'kill_attach' => false,
|
140 |
'kill_home' => false,
|
141 |
'kill_front' => false,
|
@@ -253,6 +254,8 @@ if (!class_exists("ezAdSense")) {
|
|
253 |
}
|
254 |
if (isset($_POST['killInvites']))
|
255 |
$ezAdOptions['kill_invites'] = $_POST['killInvites'];
|
|
|
|
|
256 |
$ezAdOptions['kill_gsearch_title'] = isset($_POST['ezAdKillSearchTitle']);
|
257 |
if (isset($_POST['ezAdSenseTextGSearch']))
|
258 |
$ezAdOptions['text_gsearch'] = $_POST['ezAdSenseTextGSearch'];
|
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: 5.13
|
7 |
Author: Manoj Thulasidas
|
8 |
Author URI: http://www.thulasidas.com
|
9 |
*/
|
136 |
'border_lu' => false,
|
137 |
'limit_lu' => 1,
|
138 |
'kill_invites' => false,
|
139 |
+
'kill_rating' => false,
|
140 |
'kill_attach' => false,
|
141 |
'kill_home' => false,
|
142 |
'kill_front' => false,
|
254 |
}
|
255 |
if (isset($_POST['killInvites']))
|
256 |
$ezAdOptions['kill_invites'] = $_POST['killInvites'];
|
257 |
+
if (isset($_POST['killRating']))
|
258 |
+
$ezAdOptions['kill_rating'] = $_POST['killRating'];
|
259 |
$ezAdOptions['kill_gsearch_title'] = isset($_POST['ezAdKillSearchTitle']);
|
260 |
if (isset($_POST['ezAdSenseTextGSearch']))
|
261 |
$ezAdOptions['text_gsearch'] = $_POST['ezAdSenseTextGSearch'];
|
lang/es_ES/easy-adsenser.mo
CHANGED
Binary file
|
lang/es_ES/easy-adsenser.po
CHANGED
@@ -1,16 +1,16 @@
|
|
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://www.
|
6 |
# Your Locale: es_ES
|
7 |
# Your Language: es-ES
|
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"
|
@@ -30,6 +30,12 @@ msgstr "¿Cómo controlar Adsense en cada post?"
|
|
30 |
msgid "Need to control ad blocks on each post?"
|
31 |
msgstr "¿Necesitas controlar cada bloque de publicidad en cada entrada?"
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Click for help"
|
34 |
msgstr "Click para obtener ayuda"
|
35 |
|
@@ -45,144 +51,6 @@ msgstr "Bloques de publicidad en tus entradas"
|
|
45 |
msgid "[Appears in your posts and pages]"
|
46 |
msgstr "[Aparece en tus entradas y páginas]"
|
47 |
|
48 |
-
msgid "Ad Alignment"
|
49 |
-
msgstr "Alineación de la publicidad"
|
50 |
-
|
51 |
-
msgid "(Where to show?)"
|
52 |
-
msgstr "(¿¿Donde se mostrará?)"
|
53 |
-
|
54 |
-
msgid "Suppress"
|
55 |
-
msgstr "Eliminar"
|
56 |
-
|
57 |
-
msgid "Top"
|
58 |
-
msgstr "Arriba"
|
59 |
-
|
60 |
-
msgid "Middle"
|
61 |
-
msgstr "En medio"
|
62 |
-
|
63 |
-
msgid "Bottom"
|
64 |
-
msgstr "Abajo"
|
65 |
-
|
66 |
-
msgid "Support %s by Donating Ad Space"
|
67 |
-
msgstr "Apoye %s donando un espacio de anuncio"
|
68 |
-
|
69 |
-
msgid "Percentage of ad slots to share [Default: 5%]:"
|
70 |
-
msgstr "Porcentaje de espacios de anuncios a compartir [Por defecto: 5%]"
|
71 |
-
|
72 |
-
msgid "Suppress AdSense Ad Blocks on:"
|
73 |
-
msgstr "Eliminar Bloques de Anuncios Adsense en:"
|
74 |
-
|
75 |
-
msgid "Pages (Ads only on Posts)"
|
76 |
-
msgstr "Páginas (Anuncios sólo en Posts)"
|
77 |
-
|
78 |
-
msgid "Pages that show attachments"
|
79 |
-
msgstr "Páginas que muestran archivos adjuntos"
|
80 |
-
|
81 |
-
msgid "Attachment Page"
|
82 |
-
msgstr "Páginas de archivos adjuntos"
|
83 |
-
|
84 |
-
msgid "Home Page and Front Page are the same for most blogs"
|
85 |
-
msgstr "La página de inicio y la página principal son lo mismo en la mayor parte de los blogs"
|
86 |
-
|
87 |
-
msgid "Home Page"
|
88 |
-
msgstr "Página de Inicio"
|
89 |
-
|
90 |
-
msgid "Front Page"
|
91 |
-
msgstr "Página principal"
|
92 |
-
|
93 |
-
msgid "Pages that come up when you click on category names"
|
94 |
-
msgstr "Páginas que aparecen cuando haces click en el nombre de la categoría"
|
95 |
-
|
96 |
-
msgid "Category Pages"
|
97 |
-
msgstr "Páginas de categorías"
|
98 |
-
|
99 |
-
msgid "Pages that come up when you click on tag names"
|
100 |
-
msgstr "Páginas que aparecen cuando haces click en las etiquetas "
|
101 |
-
|
102 |
-
msgid "Tag Pages"
|
103 |
-
msgstr "Páginas de etiquetas"
|
104 |
-
|
105 |
-
msgid "Pages that come up when you click on year/month archives"
|
106 |
-
msgstr "Páginas que aparecen cuando haces click en los archivos por año o mes"
|
107 |
-
|
108 |
-
msgid "Archive Pages"
|
109 |
-
msgstr "Página de archivo"
|
110 |
-
|
111 |
-
msgid "Save the changes as specified above"
|
112 |
-
msgstr "Guardar los cambios que especifiqué arriba"
|
113 |
-
|
114 |
-
msgid "Reset Options"
|
115 |
-
msgstr "Inicializar las opciones"
|
116 |
-
|
117 |
-
msgid "Clean Database"
|
118 |
-
msgstr "Limpiar la base de datos"
|
119 |
-
|
120 |
-
msgid "Uninstall"
|
121 |
-
msgstr "Desinstalar"
|
122 |
-
|
123 |
-
msgid "Generate AdSense code (from http://adsense.google.com → AdSense Setup → Get Ads)."
|
124 |
-
msgstr "Generar código AdSense (desde http://adsense.google.com → Configuración AdSense → Obtener Ads)."
|
125 |
-
|
126 |
-
msgid "Cut and paste the AdSense code into the boxes below, deleting the existing text."
|
127 |
-
msgstr "Cortar y pegar el código AdSense en las cajas de texto borrando el existente."
|
128 |
-
|
129 |
-
msgid "Decide how to align and show the code in your blog posts."
|
130 |
-
msgstr "Decide como quieres alinear y mostrar el código en las entradas de tu blog"
|
131 |
-
|
132 |
-
msgid "Save the options, and you are done!"
|
133 |
-
msgstr "¡Guarda los cambios y ya está listo!"
|
134 |
-
|
135 |
-
msgid "This <b>Reset Options</b> button discards all your changes and loads the default options. This is your only warning!"
|
136 |
-
msgstr "Este botón <b>Inicializar las opciones</b> descarta todos tus cambios y carga las opciones predeterminadas. ¡Esta es tu único aviso!"
|
137 |
-
|
138 |
-
msgid "Discard all your changes and load defaults. (Are you quite sure?)"
|
139 |
-
msgstr "Descartar todos tus cambios y cargar predeterminados. (¿Estás seguro?)"
|
140 |
-
|
141 |
-
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."
|
142 |
-
msgstr "El boton <b>Limpiar la base de datos</b> elimina todas las configuraciones de AdSense que tengas guardadas y <b>todos</b> los temas, incluyendo el actual. Por favor se cuidadoso al manejar tu base de datos-- trata siempre de tener un respaldo."
|
143 |
-
|
144 |
-
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."
|
145 |
-
msgstr "El boton <b>Desinstalar</b> limpia y elimina completamente todas las opciones guardadas en tu base da datos. ¿Realmente lo quieres hacer? Por favor se cuidadoso al manejar tu base de datos-- aegúrate de tener un respaldo. "
|
146 |
-
|
147 |
-
msgid "Kill this plugin. (Are you quite sure?)"
|
148 |
-
msgstr "Eliminar el plugin. ( ¿Estas totalmente seguro? )"
|
149 |
-
|
150 |
-
msgid "Credits"
|
151 |
-
msgstr "Creditos"
|
152 |
-
|
153 |
-
msgid "%s uses the excellent Javascript/DHTML tooltips by %s"
|
154 |
-
msgstr "%s usa los excelentes tooltips de Javascript/DHTML de %s"
|
155 |
-
|
156 |
-
msgid "Settings Updated."
|
157 |
-
msgstr "Configuración actualizada."
|
158 |
-
|
159 |
-
msgid "Ok, all your settings have been discarded!"
|
160 |
-
msgstr "Listo, toda tu configuración ha sido eliminada"
|
161 |
-
|
162 |
-
msgid "Database has been cleaned. All your options for this plugin (for all themes) have been removed."
|
163 |
-
msgstr "La base de datos ha sido limpiada. Todas las opciones para este plugin ( de todo los temas ) han sido eliminadas."
|
164 |
-
|
165 |
-
msgid "This plugin has been deactivated."
|
166 |
-
msgstr "Este plugin ha sido desactivado."
|
167 |
-
|
168 |
-
msgid "Refresh"
|
169 |
-
msgstr "Actualizar"
|
170 |
-
|
171 |
-
msgid "Error locating the admin page!\nEnsure admin.php exists, or reinstall the plugin."
|
172 |
-
msgstr "¡Error al intentar encontrar el la página de administración! rnAsegúrate que exista admin.php o reinstala el plugin."
|
173 |
-
|
174 |
-
msgid "Settings"
|
175 |
-
msgstr "Configuración"
|
176 |
-
|
177 |
-
msgid "All-in-One AdSense Control"
|
178 |
-
msgstr "Control All-in-One AdSense "
|
179 |
-
|
180 |
-
msgid "Sidebar Widgets, Link Units or Google Search"
|
181 |
-
msgstr "Widget Barra Lateral, Link Units o Buscador Google"
|
182 |
-
|
183 |
-
msgid "Policy Compliance"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
msgid "Widgets for Your Sidebars"
|
187 |
msgstr "Widgets para tus barras laterales"
|
188 |
|
@@ -195,12 +63,18 @@ msgstr "AdSense del inicio"
|
|
195 |
msgid "(Appears near the beginning of the post)"
|
196 |
msgstr "(Aparece cerca del inicio de la entrada)"
|
197 |
|
|
|
|
|
|
|
198 |
msgid "Min. Word Count"
|
199 |
msgstr "Cantidad mínima de palabras"
|
200 |
|
201 |
msgid "Margin:"
|
202 |
msgstr "Margen:"
|
203 |
|
|
|
|
|
|
|
204 |
msgid "Position:"
|
205 |
msgstr "Posicion:"
|
206 |
|
@@ -223,7 +97,7 @@ msgid "Text-wrapped"
|
|
223 |
msgstr "Texto Justificado"
|
224 |
|
225 |
msgid "No wrap"
|
226 |
-
msgstr ""
|
227 |
|
228 |
msgid "Center"
|
229 |
msgstr "Centro"
|
@@ -264,9 +138,6 @@ msgstr "Suprimir Ad del final"
|
|
264 |
msgid "Option on Google Policy"
|
265 |
msgstr "Opciones de la política de google"
|
266 |
|
267 |
-
msgid "(Google policy allows no more than three ad blocks and three link units per page)"
|
268 |
-
msgstr "(La política de google permite no más de tres bloques y tres enlaces por página"
|
269 |
-
|
270 |
msgid "Three ad blocks (including the side bar widget, if enabled)."
|
271 |
msgstr "Tres bloques de publicidad (Incluyendo el widget lateral, si está activado)."
|
272 |
|
@@ -285,6 +156,78 @@ msgstr "Cualquier número de bloques de publicidad (bajo tu propio riesgo)
|
|
285 |
msgid "Number of Link Units widgets (≤ 3) [Google serves only three]:"
|
286 |
msgstr "Cantidad de Widgets de Unidades de Enlace (≤ 3) [Google permíte hasta tres]:"
|
287 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "AdSense Widget Text"
|
289 |
msgstr "Texto Adsense para los widgets"
|
290 |
|
@@ -336,39 +279,6 @@ msgstr "Quitar caja de búsqueda"
|
|
336 |
msgid "Custom Title:"
|
337 |
msgstr "Título Personalizado:"
|
338 |
|
339 |
-
msgid "Other Options"
|
340 |
-
msgstr "Otras Opciones"
|
341 |
-
|
342 |
-
msgid "Allow ad blocks in feeds. [Please report any problems with this option.]"
|
343 |
-
msgstr "Permitir bloques de publicidades en los feeds. [Por favor informa de cualquier problema con esta opción.]"
|
344 |
-
|
345 |
-
msgid "Prioritize sidebar widget. (Always shows the widget, if enabled.)"
|
346 |
-
msgstr "Dar prioridad al widget de la barra lateral. (Siempre mostrarlo, si se encuentra habilitada)"
|
347 |
-
|
348 |
-
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."
|
349 |
-
msgstr "La política de Google indica que tú no puedes dirigir la atención del usuario a los anuncios mediante flechas u otros elementos gráficos. Por favor convéncete a tí mismo que mostrar una decoración al pasar el puntero del mouse por encima del anuncio no infringe este mandato de Google antes de activar esta opción."
|
350 |
-
|
351 |
-
msgid "Show a border around the ads?"
|
352 |
-
msgstr "¿Mostrar borde alrededor del anuncio?"
|
353 |
-
|
354 |
-
msgid "Show the same border on the sidebar widget as well?"
|
355 |
-
msgstr "¿Mostrar el mismo borde en los widgets laterales?"
|
356 |
-
|
357 |
-
msgid "Widget?"
|
358 |
-
msgstr "Widget?"
|
359 |
-
|
360 |
-
msgid "Show the same border on the link units too?"
|
361 |
-
msgstr "Mostrar el mismo borde en las unidades de enlace?"
|
362 |
-
|
363 |
-
msgid "Link Units?"
|
364 |
-
msgstr "Unidades de Enlace?"
|
365 |
-
|
366 |
-
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."
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
msgid "Suppress in-line styles (Control ad-blocks using style.css)"
|
370 |
-
msgstr "Suprimir los estilos en-linea (Controlar los bloques de anuncios usando style.css)"
|
371 |
-
|
372 |
msgid "Link-backs to"
|
373 |
msgstr "Enlaces hacia"
|
374 |
|
@@ -390,12 +300,72 @@ msgstr "No mostrar ningún enlace a mi blog (¡¿Estás s
|
|
390 |
msgid "Save Changes"
|
391 |
msgstr "Guardar cambios"
|
392 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
msgid "Take a look at the Google policy option, and other options. The defaults should work."
|
394 |
msgstr "Echa un vistazo a las políticasde Google y otras opciones. Las predeterminadas deberían funcionar."
|
395 |
|
396 |
msgid "If you want to use the widgets, drag and drop them at %s Appearance (or Design) → Widgets %s"
|
397 |
msgstr "Si quieres usar los widgets, arrastra y suelta en %s Aspecto → Widgets %s"
|
398 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
msgid "Sponsored Links"
|
400 |
msgstr "Enlaces patrocinados"
|
401 |
|
@@ -408,48 +378,39 @@ msgstr "Mostrar una Caja de Búsqueda de Google como un Widget en tu barra later
|
|
408 |
msgid "Show a Google Links Unit in your sidebar as a widget"
|
409 |
msgstr "Mostrar una Unidad de Enlaces de Google como un Widget en tu barra lateral."
|
410 |
|
411 |
-
msgid "
|
412 |
-
msgstr "
|
413 |
-
|
414 |
-
msgid "Share a small fraction of your ad space"
|
415 |
-
msgstr "Comparte una pequeña fracción de tu espacio de anuncios"
|
416 |
-
|
417 |
-
msgid "Buy a book, <b>The Unreal Universe</b>"
|
418 |
-
msgstr "Compra un libro, <b>The Unreal Universe</b>"
|
419 |
-
|
420 |
-
msgid "Make a donation"
|
421 |
-
msgstr "Haz un donativo."
|
422 |
|
423 |
-
msgid "
|
424 |
-
msgstr "
|
425 |
|
426 |
-
msgid "
|
427 |
-
msgstr "
|
428 |
|
429 |
-
msgid "
|
430 |
-
msgstr "
|
431 |
|
432 |
-
msgid "
|
433 |
-
msgstr "
|
434 |
|
435 |
-
msgid "
|
436 |
-
msgstr "
|
437 |
|
438 |
-
msgid "
|
439 |
-
msgstr "
|
440 |
|
441 |
-
msgid "
|
442 |
-
msgstr "
|
443 |
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
446 |
|
447 |
-
msgid "
|
448 |
-
msgstr "
|
449 |
|
450 |
-
msgid "
|
451 |
-
msgstr "
|
452 |
|
453 |
-
msgid "
|
454 |
-
msgstr ""
|
455 |
|
1 |
+
# This file was generated by Easy Translator for Easy AdSense -- a WordPress plugin translator
|
2 |
+
# Your Name: Antonio Castilla
|
3 |
+
# Your Email: casas@trazoide.com
|
4 |
+
# Your Website: Casas-Trazoide
|
5 |
+
# Your URL: http://www.trazoide.com/casas
|
6 |
# Your Locale: es_ES
|
7 |
# Your Language: es-ES
|
8 |
#, fuzzy
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: Easy AdSenser\n"
|
12 |
+
"PO-Revision-Date: 2012-05-27 01:24:21\n"
|
13 |
+
"Last-Translator: Antonio Castilla <casas@trazoide.com>\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
30 |
msgid "Need to control ad blocks on each post?"
|
31 |
msgstr "¿Necesitas controlar cada bloque de publicidad en cada entrada?"
|
32 |
|
33 |
+
msgid "All-in-One AdSense Control"
|
34 |
+
msgstr "Control All-in-One AdSense "
|
35 |
+
|
36 |
+
msgid "Sidebar Widgets, Link Units or Google Search"
|
37 |
+
msgstr "Widget Barra Lateral, Link Units o Buscador Google"
|
38 |
+
|
39 |
msgid "Click for help"
|
40 |
msgstr "Click para obtener ayuda"
|
41 |
|
51 |
msgid "[Appears in your posts and pages]"
|
52 |
msgstr "[Aparece en tus entradas y páginas]"
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
msgid "Widgets for Your Sidebars"
|
55 |
msgstr "Widgets para tus barras laterales"
|
56 |
|
63 |
msgid "(Appears near the beginning of the post)"
|
64 |
msgstr "(Aparece cerca del inicio de la entrada)"
|
65 |
|
66 |
+
msgid "Ad Alignment"
|
67 |
+
msgstr "Alineación de la publicidad"
|
68 |
+
|
69 |
msgid "Min. Word Count"
|
70 |
msgstr "Cantidad mínima de palabras"
|
71 |
|
72 |
msgid "Margin:"
|
73 |
msgstr "Margen:"
|
74 |
|
75 |
+
msgid "(Where to show?)"
|
76 |
+
msgstr "(¿¿Donde se mostrará?)"
|
77 |
+
|
78 |
msgid "Position:"
|
79 |
msgstr "Posicion:"
|
80 |
|
97 |
msgstr "Texto Justificado"
|
98 |
|
99 |
msgid "No wrap"
|
100 |
+
msgstr "Sin ajuste"
|
101 |
|
102 |
msgid "Center"
|
103 |
msgstr "Centro"
|
138 |
msgid "Option on Google Policy"
|
139 |
msgstr "Opciones de la política de google"
|
140 |
|
|
|
|
|
|
|
141 |
msgid "Three ad blocks (including the side bar widget, if enabled)."
|
142 |
msgstr "Tres bloques de publicidad (Incluyendo el widget lateral, si está activado)."
|
143 |
|
156 |
msgid "Number of Link Units widgets (≤ 3) [Google serves only three]:"
|
157 |
msgstr "Cantidad de Widgets de Unidades de Enlace (≤ 3) [Google permíte hasta tres]:"
|
158 |
|
159 |
+
msgid "Suppress AdSense Ad Blocks on:"
|
160 |
+
msgstr "Eliminar Bloques de Anuncios Adsense en:"
|
161 |
+
|
162 |
+
msgid "Pages (Ads only on Posts)"
|
163 |
+
msgstr "Páginas (Anuncios sólo en Posts)"
|
164 |
+
|
165 |
+
msgid "Pages that show attachments"
|
166 |
+
msgstr "Páginas que muestran archivos adjuntos"
|
167 |
+
|
168 |
+
msgid "Attachment Page"
|
169 |
+
msgstr "Páginas de archivos adjuntos"
|
170 |
+
|
171 |
+
msgid "Home Page and Front Page are the same for most blogs"
|
172 |
+
msgstr "La página de inicio y la página principal son lo mismo en la mayor parte de los blogs"
|
173 |
+
|
174 |
+
msgid "Home Page"
|
175 |
+
msgstr "Página de Inicio"
|
176 |
+
|
177 |
+
msgid "Front Page"
|
178 |
+
msgstr "Página principal"
|
179 |
+
|
180 |
+
msgid "Pages that come up when you click on category names"
|
181 |
+
msgstr "Páginas que aparecen cuando haces click en el nombre de la categoría"
|
182 |
+
|
183 |
+
msgid "Category Pages"
|
184 |
+
msgstr "Páginas de categorías"
|
185 |
+
|
186 |
+
msgid "Pages that come up when you click on tag names"
|
187 |
+
msgstr "Páginas que aparecen cuando haces click en las etiquetas "
|
188 |
+
|
189 |
+
msgid "Tag Pages"
|
190 |
+
msgstr "Páginas de etiquetas"
|
191 |
+
|
192 |
+
msgid "Pages that come up when you click on year/month archives"
|
193 |
+
msgstr "Páginas que aparecen cuando haces click en los archivos por año o mes"
|
194 |
+
|
195 |
+
msgid "Archive Pages"
|
196 |
+
msgstr "Página de archivo"
|
197 |
+
|
198 |
+
msgid "Other Options"
|
199 |
+
msgstr "Otras Opciones"
|
200 |
+
|
201 |
+
msgid "Allow ad blocks in feeds. [Please report any problems with this option.]"
|
202 |
+
msgstr "Permitir bloques de publicidades en los feeds. [Por favor informa de cualquier problema con esta opción.]"
|
203 |
+
|
204 |
+
msgid "Prioritize sidebar widget. (Always shows the widget, if enabled.)"
|
205 |
+
msgstr "Dar prioridad al widget de la barra lateral. (Siempre mostrarlo, si se encuentra habilitada)"
|
206 |
+
|
207 |
+
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."
|
208 |
+
msgstr "La política de Google indica que tú no puedes dirigir la atención del usuario a los anuncios mediante flechas u otros elementos gráficos. Por favor asegúrate que mostrar una decoración al pasar el puntero del mouse por encima del anuncio no infringe este mandato de Google antes de activar esta opción."
|
209 |
+
|
210 |
+
msgid "Show a border around the ads?"
|
211 |
+
msgstr "¿Mostrar borde alrededor del anuncio?"
|
212 |
+
|
213 |
+
msgid "Show the same border on the sidebar widget as well?"
|
214 |
+
msgstr "¿Mostrar el mismo borde en los widgets laterales?"
|
215 |
+
|
216 |
+
msgid "Widget?"
|
217 |
+
msgstr "Widget?"
|
218 |
+
|
219 |
+
msgid "Show the same border on the link units too?"
|
220 |
+
msgstr "Mostrar el mismo borde en las unidades de enlace?"
|
221 |
+
|
222 |
+
msgid "Link Units?"
|
223 |
+
msgstr "Unidades de Enlace?"
|
224 |
+
|
225 |
+
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."
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
msgid "Suppress in-line styles (Control ad-blocks using style.css)"
|
229 |
+
msgstr "Suprimir los estilos en-linea (Controlar los bloques de anuncios usando style.css)"
|
230 |
+
|
231 |
msgid "AdSense Widget Text"
|
232 |
msgstr "Texto Adsense para los widgets"
|
233 |
|
279 |
msgid "Custom Title:"
|
280 |
msgstr "Título Personalizado:"
|
281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Link-backs to"
|
283 |
msgstr "Enlaces hacia"
|
284 |
|
300 |
msgid "Save Changes"
|
301 |
msgstr "Guardar cambios"
|
302 |
|
303 |
+
msgid "Discard all your changes and load defaults. (Are you quite sure?)"
|
304 |
+
msgstr "Descartar todos tus cambios y cargar predeterminados. (¿Estás seguro?)"
|
305 |
+
|
306 |
+
msgid "Clean Database"
|
307 |
+
msgstr "Limpiar la base de datos"
|
308 |
+
|
309 |
+
msgid "Uninstall"
|
310 |
+
msgstr "Desinstalar"
|
311 |
+
|
312 |
+
msgid "Generate AdSense code (from http://adsense.google.com → AdSense Setup → Get Ads)."
|
313 |
+
msgstr "Generar código AdSense (desde http://adsense.google.com → Configuración AdSense → Obtener Ads)."
|
314 |
+
|
315 |
+
msgid "Cut and paste the AdSense code into the boxes below, deleting the existing text."
|
316 |
+
msgstr "Cortar y pegar el código AdSense en las cajas de texto borrando el existente."
|
317 |
+
|
318 |
+
msgid "Decide how to align and show the code in your blog posts."
|
319 |
+
msgstr "Decide como quieres alinear y mostrar el código en las entradas de tu blog"
|
320 |
+
|
321 |
msgid "Take a look at the Google policy option, and other options. The defaults should work."
|
322 |
msgstr "Echa un vistazo a las políticasde Google y otras opciones. Las predeterminadas deberían funcionar."
|
323 |
|
324 |
msgid "If you want to use the widgets, drag and drop them at %s Appearance (or Design) → Widgets %s"
|
325 |
msgstr "Si quieres usar los widgets, arrastra y suelta en %s Aspecto → Widgets %s"
|
326 |
|
327 |
+
msgid "Save the options, and you are done!"
|
328 |
+
msgstr "¡Guarda los cambios y ya está listo!"
|
329 |
+
|
330 |
+
msgid "This <b>Reset Options</b> button discards all your changes and loads the default options. This is your only warning!"
|
331 |
+
msgstr "Este botón <b>Inicializar las opciones</b> descarta todos tus cambios y carga las opciones predeterminadas. ¡Esta es tu único aviso!"
|
332 |
+
|
333 |
+
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."
|
334 |
+
msgstr "El boton <b>Limpiar la base de datos</b> elimina todas las configuraciones de AdSense que tengas guardadas y <b>todos</b> los temas, incluyendo el actual. Por favor se cuidadoso al manejar tu base de datos-- trata siempre de tener un respaldo."
|
335 |
+
|
336 |
+
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."
|
337 |
+
msgstr "El boton <b>Desinstalar</b> limpia y elimina completamente todas las opciones guardadas en tu base da datos. ¿Realmente lo quieres hacer? Por favor se cuidadoso al manejar tu base de datos-- aegúrate de tener un respaldo. "
|
338 |
+
|
339 |
+
msgid "Kill this plugin. (Are you quite sure?)"
|
340 |
+
msgstr "Eliminar el plugin. ( ¿Estas totalmente seguro? )"
|
341 |
+
|
342 |
+
msgid "Credits"
|
343 |
+
msgstr "Creditos"
|
344 |
+
|
345 |
+
msgid "%s uses the excellent Javascript/DHTML tooltips by %s"
|
346 |
+
msgstr "%s usa los excelentes tooltips de Javascript/DHTML de %s"
|
347 |
+
|
348 |
+
msgid "Settings Updated."
|
349 |
+
msgstr "Configuración actualizada."
|
350 |
+
|
351 |
+
msgid "Ok, all your settings have been discarded!"
|
352 |
+
msgstr "Listo, toda tu configuración ha sido eliminada"
|
353 |
+
|
354 |
+
msgid "Database has been cleaned. All your options for this plugin (for all themes) have been removed."
|
355 |
+
msgstr "La base de datos ha sido limpiada. Todas las opciones para este plugin ( de todo los temas ) han sido eliminadas."
|
356 |
+
|
357 |
+
msgid "This plugin has been deactivated."
|
358 |
+
msgstr "Este plugin ha sido desactivado."
|
359 |
+
|
360 |
+
msgid "Refresh"
|
361 |
+
msgstr "Actualizar"
|
362 |
+
|
363 |
+
msgid "Error locating the admin page! Ensure admin.php exists, or reinstall the plugin."
|
364 |
+
msgstr "¡Error al intentar encontrar el la página de administración! rnAsegúrate que exista admin.php o reinstala el plugin."
|
365 |
+
|
366 |
+
msgid "Settings"
|
367 |
+
msgstr "Configuración"
|
368 |
+
|
369 |
msgid "Sponsored Links"
|
370 |
msgstr "Enlaces patrocinados"
|
371 |
|
378 |
msgid "Show a Google Links Unit in your sidebar as a widget"
|
379 |
msgstr "Mostrar una Unidad de Enlaces de Google como un Widget en tu barra lateral."
|
380 |
|
381 |
+
msgid "Buy %s Pro for $%s. Instant download."
|
382 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
|
384 |
+
msgid "Get the Pro version now!"
|
385 |
+
msgstr "¡Conseguir la versión Pro ahora!"
|
386 |
|
387 |
+
msgid "Continue using the Lite version, and hide this message forever. After clicking this button, please remember to save your options to hide this box for good."
|
388 |
+
msgstr "Continuar usando la versión Lite, y ocultar este mensaje para siempre. Después cliquear este botón, no olvide guardar sus opciones para ocultar este cuadro para siempre."
|
389 |
|
390 |
+
msgid "Stay Lite"
|
391 |
+
msgstr "Mantener versión Lite"
|
392 |
|
393 |
+
msgid "If you still need help, "
|
394 |
+
msgstr "Si aún necesita ayuda,"
|
395 |
|
396 |
+
msgid "Ask a support question via PayPal @ $0.95"
|
397 |
+
msgstr "Haz una pregunta de soporte a través de PayPal @ $ 0,95"
|
398 |
|
399 |
+
msgid "request Paid Support."
|
400 |
+
msgstr "solicitar soporte mediante pago."
|
401 |
|
402 |
+
msgid "[WordPress Forum]"
|
403 |
+
msgstr ""
|
404 |
|
405 |
+
msgid "Go to the plugin description page"
|
406 |
+
msgstr "Ir a la página de descripción del plugin"
|
407 |
|
408 |
+
msgid "[Request Paid Support]"
|
409 |
+
msgstr "[Solicitud de soporte de pago]"
|
410 |
|
411 |
+
msgid "Check out my other plugin efforts:"
|
412 |
+
msgstr "Ya que estas comprueba mis otros plugins:"
|
413 |
|
414 |
+
msgid "My Books -- on Physics, Philosophy, making Money etc:"
|
415 |
+
msgstr "Mis libros: en Física, Filosofía, ganarl dinero, etc, "
|
416 |
|
myPlugins.php
CHANGED
@@ -146,22 +146,22 @@ if (!function_exists('renderInvite')) {
|
|
146 |
$plgLongName = $plg['value'] ;
|
147 |
$plgPrice = $plg['price'] ;
|
148 |
$benefits = $plg['benefits'] ;
|
149 |
-
$yesTip = sprintf(__('Buy %s Pro for $%s. Instant download.', 'easy-adsenser'),$plgLongName, $plgPrice) ;
|
150 |
$yesTitle = __('Get the Pro version now!', 'easy-adsenser') ;
|
151 |
-
$noTip = __('Continue using the Lite version, and hide this message
|
152 |
$noTitle = __('Stay Lite', 'easy-adsenser') ;
|
153 |
if (empty($benefits)) return ;
|
154 |
echo <<<ENDINVITE
|
155 |
-
<
|
|
|
156 |
<p><h3>Want More Features? <a href="#" onmouseover="Tip('$yesTip', WIDTH, 200, CLICKCLOSE, true, TITLE, '$yesTitle')" onmouseout="UnTip()" onclick = "buttonwhich('Yes')">Go Pro!</a></h3>
|
157 |
The Pro version of this plugin gives you more features and benefits. For instance,
|
158 |
<ol>
|
159 |
$benefits
|
160 |
</ol>
|
161 |
And much more. New features and bug fixes will first appear in the Pro version before being ported to this freely distributed Lite edition. </p>
|
162 |
-
<input onmouseover="Tip('$yesTip', WIDTH, 200, CLICKCLOSE, true, TITLE, '$yesTitle')" onmouseout="UnTip()" type = "button" id = "ybutton" value = "Go Pro!" onclick = "buttonwhich('Yes')"
|
163 |
-
<input onmouseover="Tip('$noTip', WIDTH, 200, CLICKCLOSE, true, TITLE, '$noTitle')" onmouseout="UnTip()" type = "button" id = "nbutton" value = "No thanks" onclick = "buttonwhich('No')"
|
164 |
-
<input type="hidden" id="killInvites" name="killInvites" value="" />
|
165 |
<script type = "text/javascript">
|
166 |
function hideInvite() {
|
167 |
document.getElementById("tnc").style.display = 'none';
|
@@ -170,8 +170,8 @@ function buttonwhich(message) {
|
|
170 |
document.getElementById("ybutton").style.display = 'none';
|
171 |
document.getElementById("nbutton").disabled = 'true';
|
172 |
document.getElementById("killInvites").value = 'true' ;
|
173 |
-
document.getElementById("nbutton").value = 'Thank you for using $plgLongName
|
174 |
-
setTimeout('hideInvite()',
|
175 |
if (message == 'Yes') window.open('http://buy.thulasidas.com/$plgName') ;
|
176 |
}
|
177 |
</script>
|
@@ -179,4 +179,40 @@ function buttonwhich(message) {
|
|
179 |
ENDINVITE;
|
180 |
}
|
181 |
}
|
182 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
$plgLongName = $plg['value'] ;
|
147 |
$plgPrice = $plg['price'] ;
|
148 |
$benefits = $plg['benefits'] ;
|
149 |
+
$yesTip = sprintf(__('Buy %s Pro for $%s. PayPal payment. Instant download.', 'easy-adsenser'),$plgLongName, $plgPrice) ;
|
150 |
$yesTitle = __('Get the Pro version now!', 'easy-adsenser') ;
|
151 |
+
$noTip = __('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.', 'easy-adsenser') ;
|
152 |
$noTitle = __('Stay Lite', 'easy-adsenser') ;
|
153 |
if (empty($benefits)) return ;
|
154 |
echo <<<ENDINVITE
|
155 |
+
<input type="hidden" id="killInvites" name="killInvites" value="" />
|
156 |
+
<div class="updated" id="tnc">
|
157 |
<p><h3>Want More Features? <a href="#" onmouseover="Tip('$yesTip', WIDTH, 200, CLICKCLOSE, true, TITLE, '$yesTitle')" onmouseout="UnTip()" onclick = "buttonwhich('Yes')">Go Pro!</a></h3>
|
158 |
The Pro version of this plugin gives you more features and benefits. For instance,
|
159 |
<ol>
|
160 |
$benefits
|
161 |
</ol>
|
162 |
And much more. New features and bug fixes will first appear in the Pro version before being ported to this freely distributed Lite edition. </p>
|
163 |
+
<input onmouseover="Tip('$yesTip', WIDTH, 200, CLICKCLOSE, true, TITLE, '$yesTitle')" onmouseout="UnTip()" type = "button" id = "ybutton" value = "Go Pro!" onclick = "buttonwhich('Yes')" />
|
164 |
+
<input onmouseover="Tip('$noTip', WIDTH, 200, CLICKCLOSE, true, TITLE, '$noTitle')" onmouseout="UnTip()" type = "button" id = "nbutton" value = "No thanks" onclick = "buttonwhich('No')" />
|
|
|
165 |
<script type = "text/javascript">
|
166 |
function hideInvite() {
|
167 |
document.getElementById("tnc").style.display = 'none';
|
170 |
document.getElementById("ybutton").style.display = 'none';
|
171 |
document.getElementById("nbutton").disabled = 'true';
|
172 |
document.getElementById("killInvites").value = 'true' ;
|
173 |
+
document.getElementById("nbutton").value = 'Thank you for using $plgLongName! Please save options to hide this box forever';
|
174 |
+
setTimeout('hideInvite()', 5000);
|
175 |
if (message == 'Yes') window.open('http://buy.thulasidas.com/$plgName') ;
|
176 |
}
|
177 |
</script>
|
179 |
ENDINVITE;
|
180 |
}
|
181 |
}
|
182 |
+
if (!function_exists('renderRating')) {
|
183 |
+
function renderRating($plg, $plgName) {
|
184 |
+
$plgDir = dirname(__FILE__) ;
|
185 |
+
$plgCTime = filemtime($plgDir) ;
|
186 |
+
$days = ( $plgCTime - time() )/ 60/60/24 ;
|
187 |
+
$plgLongName = $plg['value'] ;
|
188 |
+
$hideTip = __('Click the link to hide this box. After clicking this link, please remember to save your options to hide this box for good.', 'easy-adsenser') ;
|
189 |
+
if (time() > $plgCTime + (60*60*24*30))
|
190 |
+
$msg = "You've installed this plugin over a month ago." ;
|
191 |
+
else
|
192 |
+
$msg = "You will find it feature-rich and robust." ;
|
193 |
+
$plg = basename($plgDir) ;
|
194 |
+
echo <<<ENDRATING
|
195 |
+
<div class='updated' id='rating'>
|
196 |
+
<p>Thanks for using <i><b>$plgLongName</b></i>! $msg<br />
|
197 |
+
If it works and your are satisfied, why not <a href='http://wordpress.org/extend/plugins/$plg/'>rate it</a>
|
198 |
+
and <a href='http://wordpress.org/extend/plugins/$plg/'>recommend it</a> to others? :-)
|
199 |
+
<a id='hideRating' href='#' style='float:right; display:block; border:none;' onmouseover="Tip('$hideTip', WIDTH, 200, CLICKCLOSE, true, TITLE, 'Hide this Box')" onmouseout="UnTip()" onclick = "hideme()">
|
200 |
+
<small style='font-weight:normal;'>Don't show this anymore</small></a></p></div>
|
201 |
+
<input type="hidden" id="killRating" name="killRating" value="" />
|
202 |
+
<script type = "text/javascript">
|
203 |
+
function hideRating() {
|
204 |
+
document.getElementById("rating").style.display = 'none';
|
205 |
+
}
|
206 |
+
function hideme() {
|
207 |
+
document.getElementById("killRating").value = 'true' ;
|
208 |
+
document.getElementById("hideRating").innerHTML = 'Please hit the "Save Changes" button below to hide this box forever';
|
209 |
+
setTimeout('hideRating()', 4000);
|
210 |
+
}
|
211 |
+
</script>
|
212 |
+
ENDRATING;
|
213 |
+
}
|
214 |
+
}
|
215 |
+
?>
|
216 |
+
|
217 |
+
|
218 |
+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://affiliates.thulasidas.com/
|
|
4 |
Tags: adsense, ad, ads, advertising, easy adsense, google, adsense plugin
|
5 |
Requires at least: 2.6
|
6 |
Tested up to: 3.3
|
7 |
-
Stable tag: 5.
|
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 |
|
@@ -32,13 +32,13 @@ Easy AdSense is the freely distributed version of a premium plugin. The [Pro ver
|
|
32 |
|
33 |
= New in this Release =
|
34 |
|
35 |
-
|
36 |
|
37 |
== Upgrade Notice ==
|
38 |
|
39 |
-
= 5.
|
40 |
|
41 |
-
|
42 |
|
43 |
== Screenshots ==
|
44 |
|
@@ -122,6 +122,7 @@ A big "Thank You" to all my translators. Easy AdSense V2.6+ sports an *Easy Tran
|
|
122 |
|
123 |
== Change Log ==
|
124 |
|
|
|
125 |
* V5.12: Documentation and admin updates. Translation interface changes. [May 24, 2012]
|
126 |
* V5.11: Renaming the plugin -- dropping the word Lite, and other minor documentation changes. [May 7, 2012]
|
127 |
* V5.10: Updating a few translations (only change). [Apr 18, 2012]
|
4 |
Tags: adsense, ad, ads, advertising, easy adsense, google, adsense plugin
|
5 |
Requires at least: 2.6
|
6 |
Tested up to: 3.3
|
7 |
+
Stable tag: 5.13
|
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 |
|
32 |
|
33 |
= New in this Release =
|
34 |
|
35 |
+
Updating translations. Adding some text on the admin page about rating.
|
36 |
|
37 |
== Upgrade Notice ==
|
38 |
|
39 |
+
= 5.13 =
|
40 |
|
41 |
+
Updating translations. Adding some text on the admin page about rating.
|
42 |
|
43 |
== Screenshots ==
|
44 |
|
122 |
|
123 |
== Change Log ==
|
124 |
|
125 |
+
* V5.13: Updating translations. Adding some text on the admin page about rating. [June 12, 2012]
|
126 |
* V5.12: Documentation and admin updates. Translation interface changes. [May 24, 2012]
|
127 |
* V5.11: Renaming the plugin -- dropping the word Lite, and other minor documentation changes. [May 7, 2012]
|
128 |
* V5.10: Updating a few translations (only change). [Apr 18, 2012]
|
tail-text.php
CHANGED
@@ -90,20 +90,11 @@ function renderBook($name, $plg) {
|
|
90 |
"</li>\n" ;
|
91 |
}
|
92 |
?>
|
93 |
-
<?php
|
94 |
-
?>
|
95 |
-
<span id="rate">
|
96 |
-
<iframe src="http://wordpress.org/extend/plugins/<?php echo $plgName ; ?>-lite" width="1000px" height="1000px">
|
97 |
-
</iframe>
|
98 |
-
</span>
|
99 |
|
100 |
<table class="form-table" >
|
101 |
<tr>
|
102 |
<td>
|
103 |
<ul style="padding-left:10px;list-style-type:circle; list-style-position:inside;" >
|
104 |
-
<li><a href="#" onclick="TagToTip('rate', TITLE, 'WordPress: <?php echo $myPlugins[$plgName] ;?> Lite', STICKY, 1, CLOSEBTN, true, FIX, [25, 25])"><font color="red">If you like this plugin, please give it a 5* rating.</font></a> People tend to vote or comment only when something doesn't work, and it skews the overall rating. Please do your bit to unskew it!</li>
|
105 |
-
<li>
|
106 |
-
<?php _e('Please report any problems. And share your thoughts and comments.', 'easy-adsenser') ; ?> <a href="http://wordpress.org/tags/<?php echo $plgName . "-lite" ; ?>" title="<?php _e('Post it in the WordPress forum', 'easy-adsenser') ; ?>" target="_blank"><?php _e("[WordPress Forum]", 'easy-adsenser') ?> </a>
|
107 |
<li>
|
108 |
If you need support, please read more information about <a href="http://www.Thulasidas.com/plugins/<?php echo $plgName ; ?>-more#FAQ" target="_blank" title="<?php _e('Go to the plugin description page', 'easy-adsenser') ; ?>"><?php echo $myPlugins[$plgName]['value'] ; ?></a> first -- in particular, the FAQ section.
|
109 |
</li>
|
90 |
"</li>\n" ;
|
91 |
}
|
92 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
94 |
<table class="form-table" >
|
95 |
<tr>
|
96 |
<td>
|
97 |
<ul style="padding-left:10px;list-style-type:circle; list-style-position:inside;" >
|
|
|
|
|
|
|
98 |
<li>
|
99 |
If you need support, please read more information about <a href="http://www.Thulasidas.com/plugins/<?php echo $plgName ; ?>-more#FAQ" target="_blank" title="<?php _e('Go to the plugin description page', 'easy-adsenser') ; ?>"><?php echo $myPlugins[$plgName]['value'] ; ?></a> first -- in particular, the FAQ section.
|
100 |
</li>
|