Version Description
- Widget: fixes Author ID field not saving/updating.
- Fixes WPP data caching (props @zu2).
- Dashboard: updates Content Tags' documentation.
- Main POT file updated.
- Other minor bug fixes & improvements.
Download this release
Release Info
Developer | hcabrera |
Plugin | WordPress Popular Posts |
Version | 4.0.9 |
Comparing to | |
See all releases |
Code changes from version 4.0.8 to 4.0.9
- admin/partials/admin.php +1 -1
- includes/class-wordpress-popular-posts-widget.php +2 -2
- includes/class-wordpress-popular-posts.php +1 -1
- includes/widget-form.php +1 -1
- languages/wordpress-popular-posts-es_ES.mo +0 -0
- languages/wordpress-popular-posts-es_ES.po +266 -263
- languages/wordpress-popular-posts-es_VE.mo +0 -0
- languages/wordpress-popular-posts-es_VE.po +266 -263
- languages/wordpress-popular-posts.pot +249 -249
- public/class-wordpress-popular-posts-public.php +21 -17
- readme.txt +9 -2
- wordpress-popular-posts.php +1 -1
admin/partials/admin.php
CHANGED
@@ -956,7 +956,7 @@ if ( !$wpp_rand = get_option("wpp_rand") ) {
|
|
956 |
<tr>
|
957 |
<td><strong>post_html</strong></td>
|
958 |
<td><?php _e('Sets the HTML structure of each post', 'wordpress-popular-posts'); ?></td>
|
959 |
-
<td><?php _e('Text string, custom HTML', 'wordpress-popular-posts'); ?>.<br /><br /><strong><?php _e('Available Content Tags', 'wordpress-popular-posts'); ?>:</strong> <br /><br /><em>{thumb}</em> (<?php _e('
|
960 |
<td><li>{thumb} {title} <span class="wpp-meta post-stats">{stats}</span></li></td>
|
961 |
<td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'post_html' => '<li>{thumb} <a href="{url}">{text_title}</a></li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp post_html='<li>{thumb} <a href="{url}">{text_title}</a></li>']<br /><br /></td>
|
962 |
</tr>
|
956 |
<tr>
|
957 |
<td><strong>post_html</strong></td>
|
958 |
<td><?php _e('Sets the HTML structure of each post', 'wordpress-popular-posts'); ?></td>
|
959 |
+
<td><?php _e('Text string, custom HTML', 'wordpress-popular-posts'); ?>.<br /><br /><strong><?php _e('Available Content Tags', 'wordpress-popular-posts'); ?>:</strong> <br /><br /><em>{thumb}</em> (<?php _e('returns thumbnail linked to post/page, requires thumbnail_width & thumbnail_height', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{thumb_img}</em> (<?php _e('returns thumbnail image without linking to post/page, requires thumbnail_width & thumbnail_height', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{thumb_url}</em> (<?php _e('returns thumbnail url, requires thumbnail_width & thumbnail_height', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{title}</em> (<?php _e('returns linked post/page title', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{pid}</em> (<?php _e('returns the post/page ID', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{summary}</em> (<?php _e('returns post/page excerpt, and requires excerpt_length to be greater than 0', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{stats}</em> (<?php _e('returns the default stats tags', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{rating}</em> (<?php _e('returns post/page current rating, requires WP-PostRatings installed and enabled', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{score}</em> (<?php _e('returns post/page current rating as an integer, requires WP-PostRatings installed and enabled', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{url}</em> (<?php _e('returns the URL of the post/page', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{text_title}</em> (<?php _e('returns post/page title, no link', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{author}</em> (<?php _e('returns linked author name, requires stats_author=1', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{category}</em> (<?php _e('returns linked category name, requires stats_category=1', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{taxonomy}</em> (<?php _e('returns linked taxonomy names, requires stats_taxonomy=1', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{views}</em> (<?php _e('returns views count only, no text', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{comments}</em> (<?php _e('returns comments count only, no text, requires stats_comments=1', 'wordpress-popular-posts'); ?>)<br /><br /> <em>{date}</em> (<?php _e('returns post/page date, requires stats_date=1', 'wordpress-popular-posts'); ?>)</td>
|
960 |
<td><li>{thumb} {title} <span class="wpp-meta post-stats">{stats}</span></li></td>
|
961 |
<td><strong><?php _e('With wpp_get_mostpopular():', 'wordpress-popular-posts'); ?></strong><br /><br /><?php<br />$args = array(<br /> 'post_html' => '<li>{thumb} <a href="{url}">{text_title}</a></li>'<br />);<br /><br />wpp_get_mostpopular( $args );<br />?><br /><br /><hr /><br /><strong><?php _e('With the [wpp] shortcode:', 'wordpress-popular-posts'); ?></strong><br /><br />[wpp post_html='<li>{thumb} <a href="{url}">{text_title}</a></li>']<br /><br /></td>
|
962 |
</tr>
|
includes/class-wordpress-popular-posts-widget.php
CHANGED
@@ -213,10 +213,10 @@ class WPP_Widget extends WP_Widget {
|
|
213 |
$ids = array_filter( explode( ",", rtrim(preg_replace( '|[^0-9,]|', '', $new_instance['uid'] ), ",") ), 'is_numeric' );
|
214 |
// Got no valid IDs, clear
|
215 |
if ( empty( $ids ) ) {
|
216 |
-
$instance['
|
217 |
}
|
218 |
else {
|
219 |
-
$instance['
|
220 |
}
|
221 |
|
222 |
$instance['shorten_title']['words'] = $new_instance['shorten_title-words'];
|
213 |
$ids = array_filter( explode( ",", rtrim(preg_replace( '|[^0-9,]|', '', $new_instance['uid'] ), ",") ), 'is_numeric' );
|
214 |
// Got no valid IDs, clear
|
215 |
if ( empty( $ids ) ) {
|
216 |
+
$instance['author'] = '';
|
217 |
}
|
218 |
else {
|
219 |
+
$instance['author'] = implode( ",", $ids );
|
220 |
}
|
221 |
|
222 |
$instance['shorten_title']['words'] = $new_instance['shorten_title-words'];
|
includes/class-wordpress-popular-posts.php
CHANGED
@@ -28,7 +28,7 @@ class WordPressPopularPosts {
|
|
28 |
public function __construct(){
|
29 |
|
30 |
$this->plugin_name = 'wordpress-popular-posts';
|
31 |
-
$this->version = '4.0.
|
32 |
|
33 |
$this->load_dependencies();
|
34 |
$this->set_locale();
|
28 |
public function __construct(){
|
29 |
|
30 |
$this->plugin_name = 'wordpress-popular-posts';
|
31 |
+
$this->version = '4.0.9';
|
32 |
|
33 |
$this->load_dependencies();
|
34 |
$this->set_locale();
|
includes/widget-form.php
CHANGED
@@ -72,7 +72,7 @@ if ( $taxonomies = get_taxonomies( array('public' => true), 'objects' ) ) {
|
|
72 |
}
|
73 |
?>
|
74 |
|
75 |
-
<label for="<?php echo $this->get_field_id( 'uid' ); ?>"><?php _e('Author ID(s)', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-is-
|
76 |
<input type="text" id="<?php echo $this->get_field_id( 'uid' ); ?>" name="<?php echo $this->get_field_name( 'uid' ); ?>" value="<?php echo $instance['author']; ?>" class="widefat" /><br /><br />
|
77 |
|
78 |
<!-- Post features -->
|
72 |
}
|
73 |
?>
|
74 |
|
75 |
+
<label for="<?php echo $this->get_field_id( 'uid' ); ?>"><?php _e('Author ID(s)', 'wordpress-popular-posts'); ?>:</label> <small>[<a href="https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#what-is-author-ids-for" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>" target="_blank">?</a>]</small>
|
76 |
<input type="text" id="<?php echo $this->get_field_id( 'uid' ); ?>" name="<?php echo $this->get_field_name( 'uid' ); ?>" value="<?php echo $instance['author']; ?>" class="widefat" /><br /><br />
|
77 |
|
78 |
<!-- Post features -->
|
languages/wordpress-popular-posts-es_ES.mo
CHANGED
Binary file
|
languages/wordpress-popular-posts-es_ES.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WordPress Popular Posts\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
-
"PO-Revision-Date: 2017-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
|
11 |
"Language: es_ES\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;"
|
18 |
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
19 |
"esc_html_x;_c;_nc;_n:1,2\n"
|
@@ -71,7 +71,7 @@ msgstr ""
|
|
71 |
|
72 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
73 |
#: ../admin/class-wordpress-popular-posts-admin.php:752
|
74 |
-
#: ../admin/partials/admin.php:
|
75 |
#: ../includes/class-wordpress-popular-posts-output.php:720
|
76 |
#, php-format
|
77 |
msgid "1 view"
|
@@ -81,7 +81,7 @@ msgstr[1] "%s vistas"
|
|
81 |
|
82 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
83 |
#: ../admin/class-wordpress-popular-posts-admin.php:807
|
84 |
-
#: ../admin/partials/admin.php:
|
85 |
#: ../includes/class-wordpress-popular-posts-output.php:701
|
86 |
#, php-format
|
87 |
msgid "1 comment"
|
@@ -100,19 +100,19 @@ msgstr "Vistas"
|
|
100 |
|
101 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
102 |
#: ../admin/class-wordpress-popular-posts-admin.php:808
|
103 |
-
#: ../admin/partials/admin.php:
|
104 |
msgid "View"
|
105 |
msgstr "Vista"
|
106 |
|
107 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
108 |
#: ../admin/class-wordpress-popular-posts-admin.php:808
|
109 |
-
#: ../admin/partials/admin.php:
|
110 |
msgid "Edit"
|
111 |
msgstr "Editar"
|
112 |
|
113 |
#: ../admin/class-wordpress-popular-posts-admin.php:764
|
114 |
#: ../admin/class-wordpress-popular-posts-admin.php:819
|
115 |
-
#: ../admin/partials/admin.php:
|
116 |
msgid ""
|
117 |
"Looks like traffic to your site is a little light right now. <br />Spread "
|
118 |
"the word and come back later!"
|
@@ -124,7 +124,7 @@ msgstr ""
|
|
124 |
msgid "Settings"
|
125 |
msgstr "Configuración"
|
126 |
|
127 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
"Your PHP installation is too old. WordPress Popular Posts requires at least "
|
@@ -136,7 +136,7 @@ msgstr ""
|
|
136 |
"contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o "
|
137 |
"mejor."
|
138 |
|
139 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
140 |
#, php-format
|
141 |
msgid ""
|
142 |
"Your WordPress version is too old. WordPress Popular Posts requires at least "
|
@@ -147,25 +147,37 @@ msgstr ""
|
|
147 |
"Posts requiere al menos la versión %1$s para funcionar correctamente. "
|
148 |
"Por favor actualiza tu blog via Escritorio > Actualizaciones."
|
149 |
|
150 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
-
"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been
|
154 |
-
"strong>.</p></div>"
|
155 |
msgstr ""
|
156 |
-
"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> ha sido
|
157 |
-
"strong>.</p></div>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
-
#: ../admin/partials/admin.php:
|
160 |
-
|
|
|
|
|
|
|
|
|
161 |
msgid "Settings saved."
|
162 |
msgstr "Configuración guardada."
|
163 |
|
164 |
-
#: ../admin/partials/admin.php:
|
165 |
msgid "Please provide the name of your custom field."
|
166 |
msgstr "Por favor indica el nombre de tu custom field."
|
167 |
|
168 |
-
#: ../admin/partials/admin.php:
|
169 |
msgid ""
|
170 |
"Any changes made to WPP's default stylesheet will be lost after every plugin "
|
171 |
"update. In order to prevent this from happening, please copy the wpp.css "
|
@@ -177,7 +189,7 @@ msgstr ""
|
|
177 |
"favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-"
|
178 |
"popular-posts/style) a la carpeta de tu tema actual"
|
179 |
|
180 |
-
#: ../admin/partials/admin.php:
|
181 |
msgid ""
|
182 |
"This operation will delete all entries from WordPress Popular Posts' cache "
|
183 |
"table and cannot be undone."
|
@@ -185,27 +197,27 @@ msgstr ""
|
|
185 |
"Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de "
|
186 |
"WordPress Popular Posts y no se puede deshacer."
|
187 |
|
188 |
-
#: ../admin/partials/admin.php:
|
189 |
-
#: ../admin/partials/admin.php:
|
190 |
msgid "Do you want to continue?"
|
191 |
msgstr "\\277Deseas continuar?"
|
192 |
|
193 |
-
#: ../admin/partials/admin.php:
|
194 |
msgid "Success! The cache table has been cleared!"
|
195 |
msgstr "\\241\\311xito! \\241La tabla cach\\351 ha sido borrada!"
|
196 |
|
197 |
-
#: ../admin/partials/admin.php:
|
198 |
msgid "Error: cache table does not exist."
|
199 |
msgstr "Error: la tabla cach\\351 no existe."
|
200 |
|
201 |
-
#: ../admin/partials/admin.php:
|
202 |
-
#: ../admin/partials/admin.php:
|
203 |
-
#: ../admin/partials/admin.php:
|
204 |
msgid "Invalid action."
|
205 |
msgstr "Acci\\363n inv\\311lida."
|
206 |
|
207 |
-
#: ../admin/partials/admin.php:
|
208 |
-
#: ../admin/partials/admin.php:
|
209 |
msgid ""
|
210 |
"Sorry, you do not have enough permissions to do this. Please contact the "
|
211 |
"site administrator for support."
|
@@ -213,7 +225,7 @@ msgstr ""
|
|
213 |
"Lo lamento, no tienes permisos suficientes para hacer esto. Por favor "
|
214 |
"contacta al administrador del sitio."
|
215 |
|
216 |
-
#: ../admin/partials/admin.php:
|
217 |
msgid ""
|
218 |
"This operation will delete all stored info from WordPress Popular Posts' "
|
219 |
"data tables and cannot be undone."
|
@@ -221,99 +233,83 @@ msgstr ""
|
|
221 |
"Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las "
|
222 |
"tablas de WordPress Popular Posts y no se puede deshacer."
|
223 |
|
224 |
-
#: ../admin/partials/admin.php:
|
225 |
msgid "Success! All data have been cleared!"
|
226 |
msgstr "\\241\\311xito! \\241Toda la data ha sido borrada!"
|
227 |
|
228 |
-
#: ../admin/partials/admin.php:
|
229 |
msgid "Error: one or both data tables are missing."
|
230 |
msgstr "Error: una o ambas tablas de datos no existen."
|
231 |
|
232 |
-
#: ../admin/partials/admin.php:
|
233 |
msgid "This operation will delete all cached thumbnails and cannot be undone."
|
234 |
msgstr ""
|
235 |
"Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se "
|
236 |
"puede deshacer."
|
237 |
|
238 |
-
#: ../admin/partials/admin.php:
|
239 |
msgid "Success! All files have been deleted!"
|
240 |
msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!"
|
241 |
|
242 |
-
#: ../admin/partials/admin.php:
|
243 |
msgid "The thumbnail cache is already empty!"
|
244 |
msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!"
|
245 |
|
246 |
-
#: ../admin/partials/admin.php:
|
247 |
msgid "Menu"
|
248 |
msgstr "Menú"
|
249 |
|
250 |
-
#: ../admin/partials/admin.php:
|
251 |
-
msgid "Stats"
|
252 |
-
msgstr "Estadísticas"
|
253 |
-
|
254 |
-
#: ../admin/partials/admin.php:249 ../admin/partials/admin.php:257
|
255 |
-
msgid "Tools"
|
256 |
-
msgstr "Herramientas"
|
257 |
-
|
258 |
-
#: ../admin/partials/admin.php:250 ../admin/partials/admin.php:258
|
259 |
-
msgid "Parameters"
|
260 |
-
msgstr "Parámetros"
|
261 |
-
|
262 |
-
#: ../admin/partials/admin.php:259
|
263 |
-
msgid "About"
|
264 |
-
msgstr "Acerca de"
|
265 |
-
|
266 |
-
#: ../admin/partials/admin.php:283
|
267 |
msgid "Post type"
|
268 |
msgstr "Post type"
|
269 |
|
270 |
-
#: ../admin/partials/admin.php:
|
271 |
msgid "Limit"
|
272 |
msgstr "Límite"
|
273 |
|
274 |
-
#: ../admin/partials/admin.php:
|
275 |
msgid "Display only posts published within the selected Time Range"
|
276 |
msgstr ""
|
277 |
"Mostrar sólo entradas publicadas en el Rango de Tiempo seleccionado"
|
278 |
|
279 |
-
#: ../admin/partials/admin.php:
|
280 |
-
#: ../admin/partials/admin.php:
|
281 |
-
#: ../admin/partials/admin.php:
|
282 |
msgid "Apply"
|
283 |
msgstr "Aplicar"
|
284 |
|
285 |
-
#: ../admin/partials/admin.php:
|
286 |
msgid "Cancel"
|
287 |
msgstr "Cancelar"
|
288 |
|
289 |
-
#: ../admin/partials/admin.php:
|
290 |
msgid "Custom Time Range"
|
291 |
msgstr "Rango de Tiempo Personalizado"
|
292 |
|
293 |
-
#: ../admin/partials/admin.php:
|
294 |
msgid "Date Range"
|
295 |
msgstr "Rango de Fechas"
|
296 |
|
297 |
-
#: ../admin/partials/admin.php:
|
298 |
#: ../includes/widget-form.php:41
|
299 |
msgid "Minute(s)"
|
300 |
msgstr "Minuto(s)"
|
301 |
|
302 |
-
#: ../admin/partials/admin.php:
|
303 |
#: ../includes/widget-form.php:42
|
304 |
msgid "Hour(s)"
|
305 |
msgstr "Hora(s)"
|
306 |
|
307 |
-
#: ../admin/partials/admin.php:
|
308 |
#: ../includes/widget-form.php:43
|
309 |
msgid "Day(s)"
|
310 |
msgstr "Día(s)"
|
311 |
|
312 |
-
#: ../admin/partials/admin.php:
|
313 |
msgid "Select a date..."
|
314 |
msgstr "Selecciona una fecha..."
|
315 |
|
316 |
-
#: ../admin/partials/admin.php:
|
317 |
#, php-format
|
318 |
msgid ""
|
319 |
"Err... A nice little chart is supposed to be here, instead you are seeing "
|
@@ -325,19 +321,19 @@ msgstr ""
|
|
325 |
"anticuado.<br /> Por favor <a href=\"%s\" target=\"_blank\">instala un mejor "
|
326 |
"navegador</a>."
|
327 |
|
328 |
-
#: ../admin/partials/admin.php:
|
329 |
msgid "Thumbnails"
|
330 |
msgstr "Miniaturas"
|
331 |
|
332 |
-
#: ../admin/partials/admin.php:
|
333 |
msgid "Default thumbnail"
|
334 |
msgstr "Miniatura por defecto"
|
335 |
|
336 |
-
#: ../admin/partials/admin.php:
|
337 |
msgid "Upload thumbnail"
|
338 |
msgstr "Subir miniatura"
|
339 |
|
340 |
-
#: ../admin/partials/admin.php:
|
341 |
msgid ""
|
342 |
"How-to: upload (or select) an image, set Size to Full and click on Upload. "
|
343 |
"After it's done, hit on Apply to save changes"
|
@@ -345,63 +341,63 @@ msgstr ""
|
|
345 |
"Tutorial: sube (o selecciona) una imagen, selecciona Tamaño Completo "
|
346 |
"y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios"
|
347 |
|
348 |
-
#: ../admin/partials/admin.php:
|
349 |
msgid "Pick image from"
|
350 |
msgstr "Seleccionar imagen desde"
|
351 |
|
352 |
-
#: ../admin/partials/admin.php:
|
353 |
msgid "Featured image"
|
354 |
msgstr "\tImagen destacada"
|
355 |
|
356 |
-
#: ../admin/partials/admin.php:
|
357 |
msgid "First image on post"
|
358 |
msgstr "Primera imagen de la entrada"
|
359 |
|
360 |
-
#: ../admin/partials/admin.php:
|
361 |
msgid "First attachment"
|
362 |
msgstr "Primer adjunto"
|
363 |
|
364 |
-
#: ../admin/partials/admin.php:
|
365 |
msgid "Custom field"
|
366 |
msgstr "Custom field"
|
367 |
|
368 |
-
#: ../admin/partials/admin.php:
|
369 |
msgid "Tell WordPress Popular Posts where it should get thumbnails from"
|
370 |
msgstr ""
|
371 |
"Dile a WordPress Popular Posts de dónde debe obtener las miniaturas"
|
372 |
|
373 |
-
#: ../admin/partials/admin.php:
|
374 |
msgid "Custom field name"
|
375 |
msgstr "Nombre del custom field"
|
376 |
|
377 |
-
#: ../admin/partials/admin.php:
|
378 |
msgid "Resize image from Custom field?"
|
379 |
msgstr "¡Ajustar la imagen del Custom field?"
|
380 |
|
381 |
-
#: ../admin/partials/admin.php:
|
382 |
msgid "No, I will upload my own thumbnail"
|
383 |
msgstr "No, subiré mi propia miniatura"
|
384 |
|
385 |
-
#: ../admin/partials/admin.php:
|
386 |
msgid "Yes"
|
387 |
msgstr "Sí"
|
388 |
|
389 |
-
#: ../admin/partials/admin.php:
|
390 |
msgid "Responsive support"
|
391 |
msgstr "Soporte Responsive"
|
392 |
|
393 |
-
#: ../admin/partials/admin.php:
|
394 |
-
#: ../admin/partials/admin.php:
|
395 |
msgid "Enabled"
|
396 |
msgstr "Habilitado"
|
397 |
|
398 |
-
#: ../admin/partials/admin.php:
|
399 |
-
#: ../admin/partials/admin.php:
|
400 |
-
#: ../admin/partials/admin.php:
|
401 |
msgid "Disabled"
|
402 |
msgstr "Deshabilitado"
|
403 |
|
404 |
-
#: ../admin/partials/admin.php:
|
405 |
msgid ""
|
406 |
"If enabled, WordPress Popular Posts will strip height and width attributes "
|
407 |
"out of thumbnails' image tags"
|
@@ -409,59 +405,59 @@ msgstr ""
|
|
409 |
"Si se activa, WordPress Popular Posts quitará los atributos height y "
|
410 |
"width de las etiquetas image de las miniaturas"
|
411 |
|
412 |
-
#: ../admin/partials/admin.php:
|
413 |
msgid "Empty image cache"
|
414 |
msgstr "Vaciar el caché de imágenes"
|
415 |
|
416 |
-
#: ../admin/partials/admin.php:
|
417 |
msgid "Use this button to clear WPP's thumbnails cache"
|
418 |
msgstr ""
|
419 |
"Utiliza este botón para vaciar el caché de miniaturas de WPP"
|
420 |
|
421 |
-
#: ../admin/partials/admin.php:
|
422 |
msgid "Data"
|
423 |
msgstr "Datos"
|
424 |
|
425 |
-
#: ../admin/partials/admin.php:
|
426 |
msgid "Log views from"
|
427 |
msgstr "Registrar vistas de"
|
428 |
|
429 |
-
#: ../admin/partials/admin.php:
|
430 |
msgid "Visitors only"
|
431 |
msgstr "Sólo visitantes"
|
432 |
|
433 |
-
#: ../admin/partials/admin.php:
|
434 |
msgid "Logged-in users only"
|
435 |
msgstr "Sólo usuarios conectados"
|
436 |
|
437 |
-
#: ../admin/partials/admin.php:
|
438 |
msgid "Everyone"
|
439 |
msgstr "Todos"
|
440 |
|
441 |
-
#: ../admin/partials/admin.php:
|
442 |
msgid "Log limit"
|
443 |
msgstr "Límite del registro"
|
444 |
|
445 |
-
#: ../admin/partials/admin.php:
|
446 |
msgid "Keep data for"
|
447 |
msgstr "Guardar datos por"
|
448 |
|
449 |
-
#: ../admin/partials/admin.php:
|
450 |
msgid "day(s)"
|
451 |
msgstr "día(s)"
|
452 |
|
453 |
-
#: ../admin/partials/admin.php:
|
454 |
msgid ""
|
455 |
"Data older than the specified time frame will be automatically discarded"
|
456 |
msgstr ""
|
457 |
"La data que sea más antigua que el tiempo especificado serán "
|
458 |
"automáticamente descartada"
|
459 |
|
460 |
-
#: ../admin/partials/admin.php:
|
461 |
msgid "Ajaxify widget"
|
462 |
msgstr "Usar Ajax con el widget"
|
463 |
|
464 |
-
#: ../admin/partials/admin.php:
|
465 |
msgid ""
|
466 |
"If you are using a caching plugin such as WP Super Cache, enabling this "
|
467 |
"feature will keep the popular list from being cached by it"
|
@@ -470,26 +466,26 @@ msgstr ""
|
|
470 |
"habilitar esta característica evitará que la lista de entradas "
|
471 |
"populares sea guardada en caché"
|
472 |
|
473 |
-
#: ../admin/partials/admin.php:
|
474 |
msgid "WPP Cache Expiry Policy"
|
475 |
msgstr "WPP Política de Expiración del Cache"
|
476 |
|
477 |
-
#: ../admin/partials/admin.php:
|
478 |
#: ../includes/widget-form.php:3 ../includes/widget-form.php:50
|
479 |
#: ../includes/widget-form.php:56 ../includes/widget-form.php:75
|
480 |
#: ../includes/widget-form.php:85 ../includes/widget-form.php:177
|
481 |
msgid "What is this?"
|
482 |
msgstr "¿Qué es ésto?"
|
483 |
|
484 |
-
#: ../admin/partials/admin.php:
|
485 |
msgid "Never cache"
|
486 |
msgstr "Nunca almacenar en caché"
|
487 |
|
488 |
-
#: ../admin/partials/admin.php:
|
489 |
msgid "Enable caching"
|
490 |
msgstr "Habilitar caché"
|
491 |
|
492 |
-
#: ../admin/partials/admin.php:
|
493 |
msgid ""
|
494 |
"Sets WPP's cache expiration time. WPP can cache the popular list for a "
|
495 |
"specified amount of time. Recommended for large / high traffic sites"
|
@@ -499,31 +495,31 @@ msgstr ""
|
|
499 |
"de tiempo especificada. Recomendado para sitios web grandes / de alto "
|
500 |
"tráfico"
|
501 |
|
502 |
-
#: ../admin/partials/admin.php:
|
503 |
msgid "Refresh cache every"
|
504 |
msgstr "Refrescar el caché cada"
|
505 |
|
506 |
-
#: ../admin/partials/admin.php:
|
507 |
msgid "Week(s)"
|
508 |
msgstr "Semana(s)"
|
509 |
|
510 |
-
#: ../admin/partials/admin.php:
|
511 |
msgid "Month(s)"
|
512 |
msgstr "Mes(es)"
|
513 |
|
514 |
-
#: ../admin/partials/admin.php:
|
515 |
msgid "Year(s)"
|
516 |
msgstr "Año(s)"
|
517 |
|
518 |
-
#: ../admin/partials/admin.php:
|
519 |
msgid "Really? That long?"
|
520 |
msgstr "¿En serio? ¿Tanto tiempo?"
|
521 |
|
522 |
-
#: ../admin/partials/admin.php:
|
523 |
msgid "Data Sampling"
|
524 |
msgstr "Sampleo de Datos"
|
525 |
|
526 |
-
#: ../admin/partials/admin.php:
|
527 |
#, php-format
|
528 |
msgid ""
|
529 |
"By default, WordPress Popular Posts stores in database every single visit "
|
@@ -544,11 +540,11 @@ msgstr ""
|
|
544 |
"detectadas en ese conjunto de muestras (para más, <a href=\"%2$s\" "
|
545 |
"target=\"_blank\">por favor leer acá</a>)"
|
546 |
|
547 |
-
#: ../admin/partials/admin.php:
|
548 |
msgid "Sample Rate"
|
549 |
msgstr "Rata de Sampleo"
|
550 |
|
551 |
-
#: ../admin/partials/admin.php:
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"A sampling rate of %d is recommended for large / high traffic sites. For "
|
@@ -558,27 +554,27 @@ msgstr ""
|
|
558 |
"tráfico. Para sitios con menos tráfico, deberías "
|
559 |
"disminuir el valor"
|
560 |
|
561 |
-
#: ../admin/partials/admin.php:
|
562 |
msgid "Miscellaneous"
|
563 |
msgstr "Misceláneos"
|
564 |
|
565 |
-
#: ../admin/partials/admin.php:
|
566 |
msgid "Open links in"
|
567 |
msgstr "Abrir enlaces en"
|
568 |
|
569 |
-
#: ../admin/partials/admin.php:
|
570 |
msgid "Current window"
|
571 |
msgstr "Ventana actual"
|
572 |
|
573 |
-
#: ../admin/partials/admin.php:
|
574 |
msgid "New tab/window"
|
575 |
msgstr "Nueva pestaña/ventana"
|
576 |
|
577 |
-
#: ../admin/partials/admin.php:
|
578 |
msgid "Use plugin's stylesheet"
|
579 |
msgstr "Utilizar la hoja de estilos del plugin"
|
580 |
|
581 |
-
#: ../admin/partials/admin.php:
|
582 |
msgid ""
|
583 |
"By default, the plugin includes a stylesheet called wpp.css which you can "
|
584 |
"use to style your popular posts listing. If you wish to use your own "
|
@@ -590,7 +586,7 @@ msgstr ""
|
|
590 |
"deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se "
|
591 |
"incluya en el header de tu sitio web, utiliza esto."
|
592 |
|
593 |
-
#: ../admin/partials/admin.php:
|
594 |
msgid ""
|
595 |
"WordPress Popular Posts maintains data in two separate tables: one for "
|
596 |
"storing the most popular entries on a daily basis (from now on, \"cache\"), "
|
@@ -606,26 +602,26 @@ msgstr ""
|
|
606 |
"tablas históricas y de caché, por favor utiliza los botones de "
|
607 |
"abajo."
|
608 |
|
609 |
-
#: ../admin/partials/admin.php:
|
610 |
msgid "Empty cache"
|
611 |
msgstr "Vaciar el caché"
|
612 |
|
613 |
-
#: ../admin/partials/admin.php:
|
614 |
msgid "Use this button to manually clear entries from WPP cache only"
|
615 |
msgstr ""
|
616 |
"Utiliza este botón para vaciar manualmente sólo las entradas "
|
617 |
"del caché de WPP"
|
618 |
|
619 |
-
#: ../admin/partials/admin.php:
|
620 |
msgid "Clear all data"
|
621 |
msgstr "Eliminar toda la data"
|
622 |
|
623 |
-
#: ../admin/partials/admin.php:
|
624 |
msgid "Use this button to manually clear entries from all WPP data tables"
|
625 |
msgstr ""
|
626 |
"Utiliza este botón para limpiar manualmente las tablas de datos de WPP"
|
627 |
|
628 |
-
#: ../admin/partials/admin.php:
|
629 |
#, php-format
|
630 |
msgid ""
|
631 |
"With the following parameters you can customize the popular posts list when "
|
@@ -636,105 +632,105 @@ msgstr ""
|
|
636 |
"entradas populares cuando utilices el <a href=\"%1$s\">template tag "
|
637 |
"wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>."
|
638 |
|
639 |
-
#: ../admin/partials/admin.php:
|
640 |
msgid "Parameter"
|
641 |
msgstr "Parámetro"
|
642 |
|
643 |
-
#: ../admin/partials/admin.php:
|
644 |
msgid "What it does "
|
645 |
msgstr "Qué hace"
|
646 |
|
647 |
-
#: ../admin/partials/admin.php:
|
648 |
msgid "Possible values"
|
649 |
msgstr "Valores posibles"
|
650 |
|
651 |
-
#: ../admin/partials/admin.php:
|
652 |
msgid "Defaults to"
|
653 |
msgstr "Por defecto"
|
654 |
|
655 |
-
#: ../admin/partials/admin.php:
|
656 |
msgid "Example"
|
657 |
msgstr "Ejemplo"
|
658 |
|
659 |
-
#: ../admin/partials/admin.php:
|
660 |
msgid "Sets a heading for the list"
|
661 |
msgstr "Configura el encabezado de la lista"
|
662 |
|
663 |
-
#: ../admin/partials/admin.php:
|
664 |
-
#: ../admin/partials/admin.php:
|
665 |
-
#: ../admin/partials/admin.php:
|
666 |
-
#: ../admin/partials/admin.php:
|
667 |
-
#: ../admin/partials/admin.php:
|
668 |
-
#: ../admin/partials/admin.php:
|
669 |
msgid "Text string"
|
670 |
msgstr "Texto"
|
671 |
|
672 |
-
#: ../admin/partials/admin.php:
|
673 |
-
#: ../admin/partials/admin.php:
|
674 |
-
#: ../admin/partials/admin.php:
|
675 |
msgid "None"
|
676 |
msgstr "Ninguno"
|
677 |
|
678 |
-
#: ../admin/partials/admin.php:
|
679 |
-
#: ../admin/partials/admin.php:
|
680 |
-
#: ../admin/partials/admin.php:
|
681 |
-
#: ../admin/partials/admin.php:
|
682 |
-
#: ../admin/partials/admin.php:
|
683 |
-
#: ../admin/partials/admin.php:
|
684 |
-
#: ../admin/partials/admin.php:
|
685 |
-
#: ../admin/partials/admin.php:
|
686 |
-
#: ../admin/partials/admin.php:
|
687 |
-
#: ../admin/partials/admin.php:
|
688 |
-
#: ../admin/partials/admin.php:
|
689 |
-
#: ../admin/partials/admin.php:
|
690 |
-
#: ../admin/partials/admin.php:
|
691 |
-
#: ../admin/partials/admin.php:
|
692 |
-
#: ../admin/partials/admin.php:
|
693 |
-
#: ../admin/partials/admin.php:
|
694 |
-
#: ../admin/partials/admin.php:
|
695 |
msgid "With wpp_get_mostpopular():"
|
696 |
msgstr "Con wpp_get_mostpopular():"
|
697 |
|
698 |
-
#: ../admin/partials/admin.php:
|
699 |
-
#: ../admin/partials/admin.php:
|
700 |
-
#: ../admin/partials/admin.php:
|
701 |
-
#: ../admin/partials/admin.php:
|
702 |
-
#: ../admin/partials/admin.php:
|
703 |
-
#: ../admin/partials/admin.php:
|
704 |
-
#: ../admin/partials/admin.php:
|
705 |
-
#: ../admin/partials/admin.php:
|
706 |
-
#: ../admin/partials/admin.php:
|
707 |
-
#: ../admin/partials/admin.php:
|
708 |
-
#: ../admin/partials/admin.php:
|
709 |
-
#: ../admin/partials/admin.php:
|
710 |
-
#: ../admin/partials/admin.php:
|
711 |
-
#: ../admin/partials/admin.php:
|
712 |
-
#: ../admin/partials/admin.php:
|
713 |
-
#: ../admin/partials/admin.php:
|
714 |
-
#: ../admin/partials/admin.php:
|
715 |
msgid "With the [wpp] shortcode:"
|
716 |
msgstr "Con el shortcode [wpp]:"
|
717 |
|
718 |
-
#: ../admin/partials/admin.php:
|
719 |
msgid "Set the opening tag for the heading of the list"
|
720 |
msgstr "Configura la etiqueta de apertura para el encabezado de la lista"
|
721 |
|
722 |
-
#: ../admin/partials/admin.php:
|
723 |
msgid "Set the closing tag for the heading of the list"
|
724 |
msgstr "Configura la etiqueta de cierre para el encabezado de la lista"
|
725 |
|
726 |
-
#: ../admin/partials/admin.php:
|
727 |
msgid "Sets the maximum number of popular posts to be shown on the listing"
|
728 |
msgstr ""
|
729 |
"Configura el máximo de entradas populares a ser mostradas en la lista"
|
730 |
|
731 |
-
#: ../admin/partials/admin.php:
|
732 |
-
#: ../admin/partials/admin.php:
|
733 |
-
#: ../admin/partials/admin.php:
|
734 |
msgid "Positive integer"
|
735 |
msgstr "Entero positivo"
|
736 |
|
737 |
-
#: ../admin/partials/admin.php:
|
738 |
msgid ""
|
739 |
"Tells WordPress Popular Posts to retrieve the most popular entries within "
|
740 |
"the time range specified by you"
|
@@ -742,17 +738,17 @@ msgstr ""
|
|
742 |
"Le indica a WordPress Popular Posts que debe listar aquellas entradas que "
|
743 |
"hayan sido populares dentro del rango de tiempo especificado por ti"
|
744 |
|
745 |
-
#: ../admin/partials/admin.php:
|
746 |
msgid "Especifies the number of time units of the custom time range"
|
747 |
msgstr ""
|
748 |
"Especifica el número de unidades de tiempo del rango de tiempo "
|
749 |
"personalizado"
|
750 |
|
751 |
-
#: ../admin/partials/admin.php:
|
752 |
msgid "Especifies the time unit of the custom time range"
|
753 |
msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado"
|
754 |
|
755 |
-
#: ../admin/partials/admin.php:
|
756 |
msgid ""
|
757 |
"Tells WordPress Popular Posts to retrieve the most popular entries published "
|
758 |
"within the time range specified by you"
|
@@ -760,19 +756,19 @@ msgstr ""
|
|
760 |
"Le indica a WordPress Popular Posts que debe listar aquellas entradas "
|
761 |
"populares publicadas dentro del rango de tiempo especificado por ti"
|
762 |
|
763 |
-
#: ../admin/partials/admin.php:
|
764 |
msgid "Sets the sorting option of the popular posts"
|
765 |
msgstr "Configura el ordenado de las entradas populares"
|
766 |
|
767 |
-
#: ../admin/partials/admin.php:
|
768 |
msgid "(for average views per day)"
|
769 |
msgstr "(para el porcentaje de vistas por día)"
|
770 |
|
771 |
-
#: ../admin/partials/admin.php:
|
772 |
msgid "Defines the type of posts to show on the listing"
|
773 |
msgstr "Define el tipo de entrada a mostrar en el listado"
|
774 |
|
775 |
-
#: ../admin/partials/admin.php:
|
776 |
msgid ""
|
777 |
"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
|
778 |
"form the listing."
|
@@ -780,7 +776,7 @@ msgstr ""
|
|
780 |
"Si se configura, WordPress Popular Posts excluirá todos los IDs de "
|
781 |
"las entradas especificadas."
|
782 |
|
783 |
-
#: ../admin/partials/admin.php:
|
784 |
msgid ""
|
785 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the "
|
786 |
"specified category ID(s). If a minus sign is used, entries associated to the "
|
@@ -791,13 +787,13 @@ msgstr ""
|
|
791 |
"signo negativo, las entradas asociadas a dicha categoría serán "
|
792 |
"excluídas."
|
793 |
|
794 |
-
#: ../admin/partials/admin.php:
|
795 |
msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
|
796 |
msgstr ""
|
797 |
"Si se tilda, WordPress Popular Posts filtrará entradas por la "
|
798 |
"taxonomía indicada."
|
799 |
|
800 |
-
#: ../admin/partials/admin.php:
|
801 |
msgid ""
|
802 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the "
|
803 |
"specified term ID(s). If a minus sign is used, entries associated to the "
|
@@ -807,7 +803,7 @@ msgstr ""
|
|
807 |
"que pertenecen al Term ID especificado(s). Si se usa un signo negativo, las "
|
808 |
"entradas asociadas a dicho term serán excluídas."
|
809 |
|
810 |
-
#: ../admin/partials/admin.php:
|
811 |
msgid ""
|
812 |
"If set, WordPress Popular Posts will retrieve all entries created by "
|
813 |
"specified author(s) ID(s)."
|
@@ -815,7 +811,7 @@ msgstr ""
|
|
815 |
"Si se configura, WordPress Popular Posts traerá todas las entradas "
|
816 |
"creadas por el (los) ID(s) de autor(es) especificado(s)."
|
817 |
|
818 |
-
#: ../admin/partials/admin.php:
|
819 |
msgid ""
|
820 |
"If set, WordPress Popular Posts will shorten each post title to \"n\" "
|
821 |
"characters whenever possible"
|
@@ -823,7 +819,7 @@ msgstr ""
|
|
823 |
"Si se configura, WordPress Popular Posts acortará cada titulo en \"n"
|
824 |
"\" caracteres cuando sea posible"
|
825 |
|
826 |
-
#: ../admin/partials/admin.php:
|
827 |
msgid ""
|
828 |
"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
|
829 |
"words instead of characters"
|
@@ -831,7 +827,7 @@ msgstr ""
|
|
831 |
"Si se pasa el valor 1, WordPress Popular Posts acortará cada titulo "
|
832 |
"en \"n\" palabras en vez de caracteres"
|
833 |
|
834 |
-
#: ../admin/partials/admin.php:
|
835 |
msgid ""
|
836 |
"If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
|
837 |
"characters long from the content of each post listed as popular"
|
@@ -840,7 +836,7 @@ msgstr ""
|
|
840 |
"un extracto de \"n\" caracteres del contenido de cada entrada listada como "
|
841 |
"popular"
|
842 |
|
843 |
-
#: ../admin/partials/admin.php:
|
844 |
msgid ""
|
845 |
"If set, WordPress Popular Posts will maintaing all styling tags (strong, "
|
846 |
"italic, etc) and hyperlinks found in the excerpt"
|
@@ -849,7 +845,7 @@ msgstr ""
|
|
849 |
"etiquetas de estilo (strong, italic, etc) y los hipervínculos "
|
850 |
"encontrados en el extracto"
|
851 |
|
852 |
-
#: ../admin/partials/admin.php:
|
853 |
msgid ""
|
854 |
"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
|
855 |
"instead of characters"
|
@@ -857,7 +853,7 @@ msgstr ""
|
|
857 |
"Si se configura, WordPress Popular Posts acortará el resumen en \"n\" "
|
858 |
"palabras en vez de caracteres"
|
859 |
|
860 |
-
#: ../admin/partials/admin.php:
|
861 |
msgid ""
|
862 |
"If set, and if your current server configuration allows it, you will be able "
|
863 |
"to display thumbnails of your posts. This attribute sets the width for "
|
@@ -867,7 +863,7 @@ msgstr ""
|
|
867 |
"permite, podrás mostrar miniaturas de tus entradas. Este atributo "
|
868 |
"configura el ancho de tus miniaturas"
|
869 |
|
870 |
-
#: ../admin/partials/admin.php:
|
871 |
msgid ""
|
872 |
"If set, and if your current server configuration allows it, you will be able "
|
873 |
"to display thumbnails of your posts. This attribute sets the height for "
|
@@ -877,7 +873,7 @@ msgstr ""
|
|
877 |
"permite, podrás mostrar miniaturas de tus entradas. Este atributo "
|
878 |
"configura el alto de tus miniaturas"
|
879 |
|
880 |
-
#: ../admin/partials/admin.php:
|
881 |
msgid ""
|
882 |
"If set, and if the WP-PostRatings plugin is installed and enabled on your "
|
883 |
"blog, WordPress Popular Posts will show how your visitors are rating your "
|
@@ -887,7 +883,7 @@ msgstr ""
|
|
887 |
"habilitado en tu blog, WordPress Popular Posts mostrará como tus "
|
888 |
"visitantes han calificado a tus entradas"
|
889 |
|
890 |
-
#: ../admin/partials/admin.php:
|
891 |
msgid ""
|
892 |
"If set, WordPress Popular Posts will show how many comments each popular "
|
893 |
"post has got during the specified time range"
|
@@ -896,7 +892,7 @@ msgstr ""
|
|
896 |
"comentarios ha obtenido cada entrada popular dentro del rango de tiempo "
|
897 |
"especificado"
|
898 |
|
899 |
-
#: ../admin/partials/admin.php:
|
900 |
msgid ""
|
901 |
"If set, WordPress Popular Posts will show how many views each popular post "
|
902 |
"has got during the specified time range"
|
@@ -905,7 +901,7 @@ msgstr ""
|
|
905 |
"vistas ha obtenido cada entrada popular dentro del rango de tiempo "
|
906 |
"especificado"
|
907 |
|
908 |
-
#: ../admin/partials/admin.php:
|
909 |
msgid ""
|
910 |
"If set, WordPress Popular Posts will show who published each popular post on "
|
911 |
"the list"
|
@@ -913,7 +909,7 @@ msgstr ""
|
|
913 |
"Si se configura, WordPress Popular Posts mostrará quién "
|
914 |
"publicó cada entrada popular de la lista"
|
915 |
|
916 |
-
#: ../admin/partials/admin.php:
|
917 |
msgid ""
|
918 |
"If set, WordPress Popular Posts will display the date when each popular post "
|
919 |
"on the list was published"
|
@@ -921,11 +917,11 @@ msgstr ""
|
|
921 |
"Si se tilda, WordPress Popular Posts mostrará la fecha en la que fue "
|
922 |
"publicada cada entrada popular"
|
923 |
|
924 |
-
#: ../admin/partials/admin.php:
|
925 |
msgid "Sets the date format"
|
926 |
msgstr "Configura el formato de la fecha"
|
927 |
|
928 |
-
#: ../admin/partials/admin.php:
|
929 |
msgid ""
|
930 |
"If set, WordPress Popular Posts will display the categories associated to "
|
931 |
"each entry"
|
@@ -933,7 +929,7 @@ msgstr ""
|
|
933 |
"Si se tilda, WordPress Popular Posts mostrará las categorías "
|
934 |
"asociadas a cada entrada"
|
935 |
|
936 |
-
#: ../admin/partials/admin.php:
|
937 |
msgid ""
|
938 |
"If set, WordPress Popular Posts will display the taxonomies associated to "
|
939 |
"each entry"
|
@@ -941,115 +937,119 @@ msgstr ""
|
|
941 |
"Si se tilda, WordPress Popular Posts mostrará las taxonomías "
|
942 |
"asociadas a cada entrada"
|
943 |
|
944 |
-
#: ../admin/partials/admin.php:
|
945 |
msgid "Sets the opening tag for the listing"
|
946 |
msgstr "Configura la etiqueta de apertura del listado"
|
947 |
|
948 |
-
#: ../admin/partials/admin.php:
|
949 |
msgid "Sets the closing tag for the listing"
|
950 |
msgstr "Configura la etiqueta de cierre del listado"
|
951 |
|
952 |
-
#: ../admin/partials/admin.php:
|
953 |
msgid "Sets the HTML structure of each post"
|
954 |
msgstr "Configura la estructura HTML de cada entrada"
|
955 |
|
956 |
-
#: ../admin/partials/admin.php:
|
957 |
msgid "Text string, custom HTML"
|
958 |
msgstr "Texto, HTML personalizado"
|
959 |
|
960 |
-
#: ../admin/partials/admin.php:
|
961 |
msgid "Available Content Tags"
|
962 |
msgstr "Content Tags disponibles"
|
963 |
|
964 |
-
#: ../admin/partials/admin.php:
|
965 |
msgid ""
|
966 |
-
"
|
967 |
"thumbnail_height"
|
968 |
msgstr ""
|
969 |
-
"
|
970 |
"thumbnail_width & thumbnail_height"
|
971 |
|
972 |
-
#: ../admin/partials/admin.php:
|
973 |
msgid ""
|
974 |
-
"
|
975 |
"thumbnail_width & thumbnail_height"
|
976 |
msgstr ""
|
977 |
-
"
|
978 |
"thumbnail_width & thumbnail_height"
|
979 |
|
980 |
-
#: ../admin/partials/admin.php:
|
981 |
-
msgid "
|
982 |
msgstr ""
|
983 |
-
"
|
984 |
|
985 |
-
#: ../admin/partials/admin.php:
|
986 |
-
msgid "
|
987 |
-
msgstr "
|
|
|
|
|
|
|
|
|
988 |
|
989 |
-
#: ../admin/partials/admin.php:
|
990 |
msgid ""
|
991 |
-
"
|
992 |
msgstr ""
|
993 |
-
"
|
994 |
"sea mayor a 0"
|
995 |
|
996 |
-
#: ../admin/partials/admin.php:
|
997 |
-
msgid "
|
998 |
-
msgstr "
|
999 |
|
1000 |
-
#: ../admin/partials/admin.php:
|
1001 |
msgid ""
|
1002 |
-
"
|
1003 |
"enabled"
|
1004 |
msgstr ""
|
1005 |
-
"
|
1006 |
"PostRatings esté instalado y activo"
|
1007 |
|
1008 |
-
#: ../admin/partials/admin.php:
|
1009 |
msgid ""
|
1010 |
-
"
|
1011 |
"installed and enabled"
|
1012 |
msgstr ""
|
1013 |
-
"
|
1014 |
"requiere que WP-PostRatings esté instalado y activo"
|
1015 |
|
1016 |
-
#: ../admin/partials/admin.php:
|
1017 |
-
msgid "
|
1018 |
-
msgstr "
|
1019 |
|
1020 |
-
#: ../admin/partials/admin.php:
|
1021 |
-
msgid "
|
1022 |
-
msgstr "
|
1023 |
|
1024 |
-
#: ../admin/partials/admin.php:
|
1025 |
-
msgid "
|
1026 |
-
msgstr "
|
1027 |
|
1028 |
-
#: ../admin/partials/admin.php:
|
1029 |
-
msgid "
|
1030 |
msgstr ""
|
1031 |
-
"
|
1032 |
"stats_category=1"
|
1033 |
|
1034 |
-
#: ../admin/partials/admin.php:
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
-
"
|
1038 |
"stats_taxonomy=1"
|
1039 |
|
1040 |
-
#: ../admin/partials/admin.php:
|
1041 |
-
msgid "
|
1042 |
-
msgstr "
|
1043 |
|
1044 |
-
#: ../admin/partials/admin.php:
|
1045 |
-
msgid "
|
1046 |
msgstr ""
|
1047 |
-
"
|
1048 |
"stats_comments=1"
|
1049 |
|
1050 |
-
#: ../admin/partials/admin.php:
|
1051 |
-
msgid "
|
1052 |
-
msgstr "
|
1053 |
|
1054 |
#: ../includes/class-wordpress-popular-posts-output.php:126
|
1055 |
msgid "Sorry. No data so far."
|
@@ -1091,7 +1091,7 @@ msgstr "bajo %s"
|
|
1091 |
msgid "The most Popular Posts on your blog."
|
1092 |
msgstr "Las entradas más populares en tu blog."
|
1093 |
|
1094 |
-
#: ../includes/class-wordpress-popular-posts-widget.php:
|
1095 |
#, php-format
|
1096 |
msgid ""
|
1097 |
"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
|
@@ -1102,7 +1102,7 @@ msgstr ""
|
|
1102 |
"el atributo <em>id</em> en before_widget (ver <a href=\"%s\" target=\"_blank"
|
1103 |
"\" rel=\"nofollow\">register_sidebar</a> para más detalles)"
|
1104 |
|
1105 |
-
#: ../includes/class-wordpress-popular-posts-widget.php:
|
1106 |
msgid "Loading..."
|
1107 |
msgstr "Cargando..."
|
1108 |
|
@@ -1292,6 +1292,9 @@ msgstr "Antes / después de las entradas populares"
|
|
1292 |
msgid "Post HTML Markup"
|
1293 |
msgstr "Markup HTML de la entrada"
|
1294 |
|
|
|
|
|
|
|
1295 |
#~ msgid "About WordPress Popular Posts %s"
|
1296 |
#~ msgstr "Acerca de WordPress Popular Posts %s"
|
1297 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WordPress Popular Posts\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
|
7 |
+
"POT-Creation-Date: 2017-10-23 17:44-0400\n"
|
8 |
+
"PO-Revision-Date: 2017-10-23 17:47-0400\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
|
11 |
"Language: es_ES\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 2.0.4\n"
|
17 |
"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;"
|
18 |
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
19 |
"esc_html_x;_c;_nc;_n:1,2\n"
|
71 |
|
72 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
73 |
#: ../admin/class-wordpress-popular-posts-admin.php:752
|
74 |
+
#: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458
|
75 |
#: ../includes/class-wordpress-popular-posts-output.php:720
|
76 |
#, php-format
|
77 |
msgid "1 view"
|
81 |
|
82 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
83 |
#: ../admin/class-wordpress-popular-posts-admin.php:807
|
84 |
+
#: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458
|
85 |
#: ../includes/class-wordpress-popular-posts-output.php:701
|
86 |
#, php-format
|
87 |
msgid "1 comment"
|
100 |
|
101 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
102 |
#: ../admin/class-wordpress-popular-posts-admin.php:808
|
103 |
+
#: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459
|
104 |
msgid "View"
|
105 |
msgstr "Vista"
|
106 |
|
107 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
108 |
#: ../admin/class-wordpress-popular-posts-admin.php:808
|
109 |
+
#: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459
|
110 |
msgid "Edit"
|
111 |
msgstr "Editar"
|
112 |
|
113 |
#: ../admin/class-wordpress-popular-posts-admin.php:764
|
114 |
#: ../admin/class-wordpress-popular-posts-admin.php:819
|
115 |
+
#: ../admin/partials/admin.php:423 ../admin/partials/admin.php:470
|
116 |
msgid ""
|
117 |
"Looks like traffic to your site is a little light right now. <br />Spread "
|
118 |
"the word and come back later!"
|
124 |
msgid "Settings"
|
125 |
msgstr "Configuración"
|
126 |
|
127 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1261
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
"Your PHP installation is too old. WordPress Popular Posts requires at least "
|
136 |
"contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o "
|
137 |
"mejor."
|
138 |
|
139 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1268
|
140 |
#, php-format
|
141 |
msgid ""
|
142 |
"Your WordPress version is too old. WordPress Popular Posts requires at least "
|
147 |
"Posts requiere al menos la versión %1$s para funcionar correctamente. "
|
148 |
"Por favor actualiza tu blog via Escritorio > Actualizaciones."
|
149 |
|
150 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1293
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
+
"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been "
|
154 |
+
"<strong>deactivated</strong>.</p></div>"
|
155 |
msgstr ""
|
156 |
+
"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> ha sido "
|
157 |
+
"<strong>desactivado</strong>.</p></div>"
|
158 |
+
|
159 |
+
#: ../admin/partials/admin.php:6 ../admin/partials/admin.php:255
|
160 |
+
msgid "Stats"
|
161 |
+
msgstr "Estadísticas"
|
162 |
+
|
163 |
+
#: ../admin/partials/admin.php:7 ../admin/partials/admin.php:256
|
164 |
+
msgid "Tools"
|
165 |
+
msgstr "Herramientas"
|
166 |
|
167 |
+
#: ../admin/partials/admin.php:8 ../admin/partials/admin.php:257
|
168 |
+
msgid "Parameters"
|
169 |
+
msgstr "Parámetros"
|
170 |
+
|
171 |
+
#: ../admin/partials/admin.php:33 ../admin/partials/admin.php:48
|
172 |
+
#: ../admin/partials/admin.php:72 ../admin/partials/admin.php:113
|
173 |
msgid "Settings saved."
|
174 |
msgstr "Configuración guardada."
|
175 |
|
176 |
+
#: ../admin/partials/admin.php:62
|
177 |
msgid "Please provide the name of your custom field."
|
178 |
msgstr "Por favor indica el nombre de tu custom field."
|
179 |
|
180 |
+
#: ../admin/partials/admin.php:121
|
181 |
msgid ""
|
182 |
"Any changes made to WPP's default stylesheet will be lost after every plugin "
|
183 |
"update. In order to prevent this from happening, please copy the wpp.css "
|
189 |
"favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-"
|
190 |
"popular-posts/style) a la carpeta de tu tema actual"
|
191 |
|
192 |
+
#: ../admin/partials/admin.php:136
|
193 |
msgid ""
|
194 |
"This operation will delete all entries from WordPress Popular Posts' cache "
|
195 |
"table and cannot be undone."
|
197 |
"Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de "
|
198 |
"WordPress Popular Posts y no se puede deshacer."
|
199 |
|
200 |
+
#: ../admin/partials/admin.php:136 ../admin/partials/admin.php:175
|
201 |
+
#: ../admin/partials/admin.php:214
|
202 |
msgid "Do you want to continue?"
|
203 |
msgstr "\\277Deseas continuar?"
|
204 |
|
205 |
+
#: ../admin/partials/admin.php:148
|
206 |
msgid "Success! The cache table has been cleared!"
|
207 |
msgstr "\\241\\311xito! \\241La tabla cach\\351 ha sido borrada!"
|
208 |
|
209 |
+
#: ../admin/partials/admin.php:152
|
210 |
msgid "Error: cache table does not exist."
|
211 |
msgstr "Error: la tabla cach\\351 no existe."
|
212 |
|
213 |
+
#: ../admin/partials/admin.php:156 ../admin/partials/admin.php:164
|
214 |
+
#: ../admin/partials/admin.php:195 ../admin/partials/admin.php:203
|
215 |
+
#: ../admin/partials/admin.php:233 ../admin/partials/admin.php:241
|
216 |
msgid "Invalid action."
|
217 |
msgstr "Acci\\363n inv\\311lida."
|
218 |
|
219 |
+
#: ../admin/partials/admin.php:160 ../admin/partials/admin.php:199
|
220 |
+
#: ../admin/partials/admin.php:237
|
221 |
msgid ""
|
222 |
"Sorry, you do not have enough permissions to do this. Please contact the "
|
223 |
"site administrator for support."
|
225 |
"Lo lamento, no tienes permisos suficientes para hacer esto. Por favor "
|
226 |
"contacta al administrador del sitio."
|
227 |
|
228 |
+
#: ../admin/partials/admin.php:175
|
229 |
msgid ""
|
230 |
"This operation will delete all stored info from WordPress Popular Posts' "
|
231 |
"data tables and cannot be undone."
|
233 |
"Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las "
|
234 |
"tablas de WordPress Popular Posts y no se puede deshacer."
|
235 |
|
236 |
+
#: ../admin/partials/admin.php:187
|
237 |
msgid "Success! All data have been cleared!"
|
238 |
msgstr "\\241\\311xito! \\241Toda la data ha sido borrada!"
|
239 |
|
240 |
+
#: ../admin/partials/admin.php:191
|
241 |
msgid "Error: one or both data tables are missing."
|
242 |
msgstr "Error: una o ambas tablas de datos no existen."
|
243 |
|
244 |
+
#: ../admin/partials/admin.php:214
|
245 |
msgid "This operation will delete all cached thumbnails and cannot be undone."
|
246 |
msgstr ""
|
247 |
"Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se "
|
248 |
"puede deshacer."
|
249 |
|
250 |
+
#: ../admin/partials/admin.php:225
|
251 |
msgid "Success! All files have been deleted!"
|
252 |
msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!"
|
253 |
|
254 |
+
#: ../admin/partials/admin.php:229
|
255 |
msgid "The thumbnail cache is already empty!"
|
256 |
msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!"
|
257 |
|
258 |
+
#: ../admin/partials/admin.php:254
|
259 |
msgid "Menu"
|
260 |
msgstr "Menú"
|
261 |
|
262 |
+
#: ../admin/partials/admin.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "Post type"
|
264 |
msgstr "Post type"
|
265 |
|
266 |
+
#: ../admin/partials/admin.php:285
|
267 |
msgid "Limit"
|
268 |
msgstr "Límite"
|
269 |
|
270 |
+
#: ../admin/partials/admin.php:288 ../includes/widget-form.php:48
|
271 |
msgid "Display only posts published within the selected Time Range"
|
272 |
msgstr ""
|
273 |
"Mostrar sólo entradas publicadas en el Rango de Tiempo seleccionado"
|
274 |
|
275 |
+
#: ../admin/partials/admin.php:294 ../admin/partials/admin.php:332
|
276 |
+
#: ../admin/partials/admin.php:551 ../admin/partials/admin.php:655
|
277 |
+
#: ../admin/partials/admin.php:694
|
278 |
msgid "Apply"
|
279 |
msgstr "Aplicar"
|
280 |
|
281 |
+
#: ../admin/partials/admin.php:295 ../admin/partials/admin.php:335
|
282 |
msgid "Cancel"
|
283 |
msgstr "Cancelar"
|
284 |
|
285 |
+
#: ../admin/partials/admin.php:308
|
286 |
msgid "Custom Time Range"
|
287 |
msgstr "Rango de Tiempo Personalizado"
|
288 |
|
289 |
+
#: ../admin/partials/admin.php:309
|
290 |
msgid "Date Range"
|
291 |
msgstr "Rango de Fechas"
|
292 |
|
293 |
+
#: ../admin/partials/admin.php:317 ../admin/partials/admin.php:621
|
294 |
#: ../includes/widget-form.php:41
|
295 |
msgid "Minute(s)"
|
296 |
msgstr "Minuto(s)"
|
297 |
|
298 |
+
#: ../admin/partials/admin.php:318 ../admin/partials/admin.php:622
|
299 |
#: ../includes/widget-form.php:42
|
300 |
msgid "Hour(s)"
|
301 |
msgstr "Hora(s)"
|
302 |
|
303 |
+
#: ../admin/partials/admin.php:319 ../admin/partials/admin.php:623
|
304 |
#: ../includes/widget-form.php:43
|
305 |
msgid "Day(s)"
|
306 |
msgstr "Día(s)"
|
307 |
|
308 |
+
#: ../admin/partials/admin.php:325
|
309 |
msgid "Select a date..."
|
310 |
msgstr "Selecciona una fecha..."
|
311 |
|
312 |
+
#: ../admin/partials/admin.php:354
|
313 |
#, php-format
|
314 |
msgid ""
|
315 |
"Err... A nice little chart is supposed to be here, instead you are seeing "
|
321 |
"anticuado.<br /> Por favor <a href=\"%s\" target=\"_blank\">instala un mejor "
|
322 |
"navegador</a>."
|
323 |
|
324 |
+
#: ../admin/partials/admin.php:480
|
325 |
msgid "Thumbnails"
|
326 |
msgstr "Miniaturas"
|
327 |
|
328 |
+
#: ../admin/partials/admin.php:485
|
329 |
msgid "Default thumbnail"
|
330 |
msgstr "Miniatura por defecto"
|
331 |
|
332 |
+
#: ../admin/partials/admin.php:490
|
333 |
msgid "Upload thumbnail"
|
334 |
msgstr "Subir miniatura"
|
335 |
|
336 |
+
#: ../admin/partials/admin.php:492
|
337 |
msgid ""
|
338 |
"How-to: upload (or select) an image, set Size to Full and click on Upload. "
|
339 |
"After it's done, hit on Apply to save changes"
|
341 |
"Tutorial: sube (o selecciona) una imagen, selecciona Tamaño Completo "
|
342 |
"y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios"
|
343 |
|
344 |
+
#: ../admin/partials/admin.php:496
|
345 |
msgid "Pick image from"
|
346 |
msgstr "Seleccionar imagen desde"
|
347 |
|
348 |
+
#: ../admin/partials/admin.php:499
|
349 |
msgid "Featured image"
|
350 |
msgstr "\tImagen destacada"
|
351 |
|
352 |
+
#: ../admin/partials/admin.php:500
|
353 |
msgid "First image on post"
|
354 |
msgstr "Primera imagen de la entrada"
|
355 |
|
356 |
+
#: ../admin/partials/admin.php:501
|
357 |
msgid "First attachment"
|
358 |
msgstr "Primer adjunto"
|
359 |
|
360 |
+
#: ../admin/partials/admin.php:502
|
361 |
msgid "Custom field"
|
362 |
msgstr "Custom field"
|
363 |
|
364 |
+
#: ../admin/partials/admin.php:505
|
365 |
msgid "Tell WordPress Popular Posts where it should get thumbnails from"
|
366 |
msgstr ""
|
367 |
"Dile a WordPress Popular Posts de dónde debe obtener las miniaturas"
|
368 |
|
369 |
+
#: ../admin/partials/admin.php:509
|
370 |
msgid "Custom field name"
|
371 |
msgstr "Nombre del custom field"
|
372 |
|
373 |
+
#: ../admin/partials/admin.php:515
|
374 |
msgid "Resize image from Custom field?"
|
375 |
msgstr "¡Ajustar la imagen del Custom field?"
|
376 |
|
377 |
+
#: ../admin/partials/admin.php:518
|
378 |
msgid "No, I will upload my own thumbnail"
|
379 |
msgstr "No, subiré mi propia miniatura"
|
380 |
|
381 |
+
#: ../admin/partials/admin.php:519
|
382 |
msgid "Yes"
|
383 |
msgstr "Sí"
|
384 |
|
385 |
+
#: ../admin/partials/admin.php:524
|
386 |
msgid "Responsive support"
|
387 |
msgstr "Soporte Responsive"
|
388 |
|
389 |
+
#: ../admin/partials/admin.php:527 ../admin/partials/admin.php:597
|
390 |
+
#: ../admin/partials/admin.php:637 ../admin/partials/admin.php:684
|
391 |
msgid "Enabled"
|
392 |
msgstr "Habilitado"
|
393 |
|
394 |
+
#: ../admin/partials/admin.php:528 ../admin/partials/admin.php:581
|
395 |
+
#: ../admin/partials/admin.php:596 ../admin/partials/admin.php:636
|
396 |
+
#: ../admin/partials/admin.php:685
|
397 |
msgid "Disabled"
|
398 |
msgstr "Deshabilitado"
|
399 |
|
400 |
+
#: ../admin/partials/admin.php:531
|
401 |
msgid ""
|
402 |
"If enabled, WordPress Popular Posts will strip height and width attributes "
|
403 |
"out of thumbnails' image tags"
|
405 |
"Si se activa, WordPress Popular Posts quitará los atributos height y "
|
406 |
"width de las etiquetas image de las miniaturas"
|
407 |
|
408 |
+
#: ../admin/partials/admin.php:541
|
409 |
msgid "Empty image cache"
|
410 |
msgstr "Vaciar el caché de imágenes"
|
411 |
|
412 |
+
#: ../admin/partials/admin.php:542
|
413 |
msgid "Use this button to clear WPP's thumbnails cache"
|
414 |
msgstr ""
|
415 |
"Utiliza este botón para vaciar el caché de miniaturas de WPP"
|
416 |
|
417 |
+
#: ../admin/partials/admin.php:562
|
418 |
msgid "Data"
|
419 |
msgstr "Datos"
|
420 |
|
421 |
+
#: ../admin/partials/admin.php:567
|
422 |
msgid "Log views from"
|
423 |
msgstr "Registrar vistas de"
|
424 |
|
425 |
+
#: ../admin/partials/admin.php:570
|
426 |
msgid "Visitors only"
|
427 |
msgstr "Sólo visitantes"
|
428 |
|
429 |
+
#: ../admin/partials/admin.php:571
|
430 |
msgid "Logged-in users only"
|
431 |
msgstr "Sólo usuarios conectados"
|
432 |
|
433 |
+
#: ../admin/partials/admin.php:572
|
434 |
msgid "Everyone"
|
435 |
msgstr "Todos"
|
436 |
|
437 |
+
#: ../admin/partials/admin.php:578
|
438 |
msgid "Log limit"
|
439 |
msgstr "Límite del registro"
|
440 |
|
441 |
+
#: ../admin/partials/admin.php:582
|
442 |
msgid "Keep data for"
|
443 |
msgstr "Guardar datos por"
|
444 |
|
445 |
+
#: ../admin/partials/admin.php:585
|
446 |
msgid "day(s)"
|
447 |
msgstr "día(s)"
|
448 |
|
449 |
+
#: ../admin/partials/admin.php:587
|
450 |
msgid ""
|
451 |
"Data older than the specified time frame will be automatically discarded"
|
452 |
msgstr ""
|
453 |
"La data que sea más antigua que el tiempo especificado serán "
|
454 |
"automáticamente descartada"
|
455 |
|
456 |
+
#: ../admin/partials/admin.php:593
|
457 |
msgid "Ajaxify widget"
|
458 |
msgstr "Usar Ajax con el widget"
|
459 |
|
460 |
+
#: ../admin/partials/admin.php:601
|
461 |
msgid ""
|
462 |
"If you are using a caching plugin such as WP Super Cache, enabling this "
|
463 |
"feature will keep the popular list from being cached by it"
|
466 |
"habilitar esta característica evitará que la lista de entradas "
|
467 |
"populares sea guardada en caché"
|
468 |
|
469 |
+
#: ../admin/partials/admin.php:605
|
470 |
msgid "WPP Cache Expiry Policy"
|
471 |
msgstr "WPP Política de Expiración del Cache"
|
472 |
|
473 |
+
#: ../admin/partials/admin.php:605 ../admin/partials/admin.php:633
|
474 |
#: ../includes/widget-form.php:3 ../includes/widget-form.php:50
|
475 |
#: ../includes/widget-form.php:56 ../includes/widget-form.php:75
|
476 |
#: ../includes/widget-form.php:85 ../includes/widget-form.php:177
|
477 |
msgid "What is this?"
|
478 |
msgstr "¿Qué es ésto?"
|
479 |
|
480 |
+
#: ../admin/partials/admin.php:608
|
481 |
msgid "Never cache"
|
482 |
msgstr "Nunca almacenar en caché"
|
483 |
|
484 |
+
#: ../admin/partials/admin.php:609
|
485 |
msgid "Enable caching"
|
486 |
msgstr "Habilitar caché"
|
487 |
|
488 |
+
#: ../admin/partials/admin.php:613
|
489 |
msgid ""
|
490 |
"Sets WPP's cache expiration time. WPP can cache the popular list for a "
|
491 |
"specified amount of time. Recommended for large / high traffic sites"
|
495 |
"de tiempo especificada. Recomendado para sitios web grandes / de alto "
|
496 |
"tráfico"
|
497 |
|
498 |
+
#: ../admin/partials/admin.php:617
|
499 |
msgid "Refresh cache every"
|
500 |
msgstr "Refrescar el caché cada"
|
501 |
|
502 |
+
#: ../admin/partials/admin.php:624
|
503 |
msgid "Week(s)"
|
504 |
msgstr "Semana(s)"
|
505 |
|
506 |
+
#: ../admin/partials/admin.php:625
|
507 |
msgid "Month(s)"
|
508 |
msgstr "Mes(es)"
|
509 |
|
510 |
+
#: ../admin/partials/admin.php:626
|
511 |
msgid "Year(s)"
|
512 |
msgstr "Año(s)"
|
513 |
|
514 |
+
#: ../admin/partials/admin.php:629
|
515 |
msgid "Really? That long?"
|
516 |
msgstr "¿En serio? ¿Tanto tiempo?"
|
517 |
|
518 |
+
#: ../admin/partials/admin.php:633
|
519 |
msgid "Data Sampling"
|
520 |
msgstr "Sampleo de Datos"
|
521 |
|
522 |
+
#: ../admin/partials/admin.php:641
|
523 |
#, php-format
|
524 |
msgid ""
|
525 |
"By default, WordPress Popular Posts stores in database every single visit "
|
540 |
"detectadas en ese conjunto de muestras (para más, <a href=\"%2$s\" "
|
541 |
"target=\"_blank\">por favor leer acá</a>)"
|
542 |
|
543 |
+
#: ../admin/partials/admin.php:645
|
544 |
msgid "Sample Rate"
|
545 |
msgstr "Rata de Sampleo"
|
546 |
|
547 |
+
#: ../admin/partials/admin.php:649
|
548 |
#, php-format
|
549 |
msgid ""
|
550 |
"A sampling rate of %d is recommended for large / high traffic sites. For "
|
554 |
"tráfico. Para sitios con menos tráfico, deberías "
|
555 |
"disminuir el valor"
|
556 |
|
557 |
+
#: ../admin/partials/admin.php:666
|
558 |
msgid "Miscellaneous"
|
559 |
msgstr "Misceláneos"
|
560 |
|
561 |
+
#: ../admin/partials/admin.php:671
|
562 |
msgid "Open links in"
|
563 |
msgstr "Abrir enlaces en"
|
564 |
|
565 |
+
#: ../admin/partials/admin.php:674
|
566 |
msgid "Current window"
|
567 |
msgstr "Ventana actual"
|
568 |
|
569 |
+
#: ../admin/partials/admin.php:675
|
570 |
msgid "New tab/window"
|
571 |
msgstr "Nueva pestaña/ventana"
|
572 |
|
573 |
+
#: ../admin/partials/admin.php:681
|
574 |
msgid "Use plugin's stylesheet"
|
575 |
msgstr "Utilizar la hoja de estilos del plugin"
|
576 |
|
577 |
+
#: ../admin/partials/admin.php:688
|
578 |
msgid ""
|
579 |
"By default, the plugin includes a stylesheet called wpp.css which you can "
|
580 |
"use to style your popular posts listing. If you wish to use your own "
|
586 |
"deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se "
|
587 |
"incluya en el header de tu sitio web, utiliza esto."
|
588 |
|
589 |
+
#: ../admin/partials/admin.php:707
|
590 |
msgid ""
|
591 |
"WordPress Popular Posts maintains data in two separate tables: one for "
|
592 |
"storing the most popular entries on a daily basis (from now on, \"cache\"), "
|
602 |
"tablas históricas y de caché, por favor utiliza los botones de "
|
603 |
"abajo."
|
604 |
|
605 |
+
#: ../admin/partials/admin.php:708
|
606 |
msgid "Empty cache"
|
607 |
msgstr "Vaciar el caché"
|
608 |
|
609 |
+
#: ../admin/partials/admin.php:708
|
610 |
msgid "Use this button to manually clear entries from WPP cache only"
|
611 |
msgstr ""
|
612 |
"Utiliza este botón para vaciar manualmente sólo las entradas "
|
613 |
"del caché de WPP"
|
614 |
|
615 |
+
#: ../admin/partials/admin.php:709
|
616 |
msgid "Clear all data"
|
617 |
msgstr "Eliminar toda la data"
|
618 |
|
619 |
+
#: ../admin/partials/admin.php:709
|
620 |
msgid "Use this button to manually clear entries from all WPP data tables"
|
621 |
msgstr ""
|
622 |
"Utiliza este botón para limpiar manualmente las tablas de datos de WPP"
|
623 |
|
624 |
+
#: ../admin/partials/admin.php:716
|
625 |
#, php-format
|
626 |
msgid ""
|
627 |
"With the following parameters you can customize the popular posts list when "
|
632 |
"entradas populares cuando utilices el <a href=\"%1$s\">template tag "
|
633 |
"wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>."
|
634 |
|
635 |
+
#: ../admin/partials/admin.php:724
|
636 |
msgid "Parameter"
|
637 |
msgstr "Parámetro"
|
638 |
|
639 |
+
#: ../admin/partials/admin.php:725
|
640 |
msgid "What it does "
|
641 |
msgstr "Qué hace"
|
642 |
|
643 |
+
#: ../admin/partials/admin.php:726
|
644 |
msgid "Possible values"
|
645 |
msgstr "Valores posibles"
|
646 |
|
647 |
+
#: ../admin/partials/admin.php:727
|
648 |
msgid "Defaults to"
|
649 |
msgstr "Por defecto"
|
650 |
|
651 |
+
#: ../admin/partials/admin.php:728
|
652 |
msgid "Example"
|
653 |
msgstr "Ejemplo"
|
654 |
|
655 |
+
#: ../admin/partials/admin.php:734
|
656 |
msgid "Sets a heading for the list"
|
657 |
msgstr "Configura el encabezado de la lista"
|
658 |
|
659 |
+
#: ../admin/partials/admin.php:735 ../admin/partials/admin.php:742
|
660 |
+
#: ../admin/partials/admin.php:749 ../admin/partials/admin.php:798
|
661 |
+
#: ../admin/partials/admin.php:805 ../admin/partials/admin.php:812
|
662 |
+
#: ../admin/partials/admin.php:819 ../admin/partials/admin.php:826
|
663 |
+
#: ../admin/partials/admin.php:833 ../admin/partials/admin.php:924
|
664 |
+
#: ../admin/partials/admin.php:945 ../admin/partials/admin.php:952
|
665 |
msgid "Text string"
|
666 |
msgstr "Texto"
|
667 |
|
668 |
+
#: ../admin/partials/admin.php:736 ../admin/partials/admin.php:806
|
669 |
+
#: ../admin/partials/admin.php:813 ../admin/partials/admin.php:820
|
670 |
+
#: ../admin/partials/admin.php:827 ../admin/partials/admin.php:834
|
671 |
msgid "None"
|
672 |
msgstr "Ninguno"
|
673 |
|
674 |
+
#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744
|
675 |
+
#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758
|
676 |
+
#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772
|
677 |
+
#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786
|
678 |
+
#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800
|
679 |
+
#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814
|
680 |
+
#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828
|
681 |
+
#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842
|
682 |
+
#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856
|
683 |
+
#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870
|
684 |
+
#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884
|
685 |
+
#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898
|
686 |
+
#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912
|
687 |
+
#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926
|
688 |
+
#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940
|
689 |
+
#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954
|
690 |
+
#: ../admin/partials/admin.php:961
|
691 |
msgid "With wpp_get_mostpopular():"
|
692 |
msgstr "Con wpp_get_mostpopular():"
|
693 |
|
694 |
+
#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744
|
695 |
+
#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758
|
696 |
+
#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772
|
697 |
+
#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786
|
698 |
+
#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800
|
699 |
+
#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814
|
700 |
+
#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828
|
701 |
+
#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842
|
702 |
+
#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856
|
703 |
+
#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870
|
704 |
+
#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884
|
705 |
+
#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898
|
706 |
+
#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912
|
707 |
+
#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926
|
708 |
+
#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940
|
709 |
+
#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954
|
710 |
+
#: ../admin/partials/admin.php:961
|
711 |
msgid "With the [wpp] shortcode:"
|
712 |
msgstr "Con el shortcode [wpp]:"
|
713 |
|
714 |
+
#: ../admin/partials/admin.php:741
|
715 |
msgid "Set the opening tag for the heading of the list"
|
716 |
msgstr "Configura la etiqueta de apertura para el encabezado de la lista"
|
717 |
|
718 |
+
#: ../admin/partials/admin.php:748
|
719 |
msgid "Set the closing tag for the heading of the list"
|
720 |
msgstr "Configura la etiqueta de cierre para el encabezado de la lista"
|
721 |
|
722 |
+
#: ../admin/partials/admin.php:755
|
723 |
msgid "Sets the maximum number of popular posts to be shown on the listing"
|
724 |
msgstr ""
|
725 |
"Configura el máximo de entradas populares a ser mostradas en la lista"
|
726 |
|
727 |
+
#: ../admin/partials/admin.php:756 ../admin/partials/admin.php:770
|
728 |
+
#: ../admin/partials/admin.php:840 ../admin/partials/admin.php:854
|
729 |
+
#: ../admin/partials/admin.php:875 ../admin/partials/admin.php:882
|
730 |
msgid "Positive integer"
|
731 |
msgstr "Entero positivo"
|
732 |
|
733 |
+
#: ../admin/partials/admin.php:762
|
734 |
msgid ""
|
735 |
"Tells WordPress Popular Posts to retrieve the most popular entries within "
|
736 |
"the time range specified by you"
|
738 |
"Le indica a WordPress Popular Posts que debe listar aquellas entradas que "
|
739 |
"hayan sido populares dentro del rango de tiempo especificado por ti"
|
740 |
|
741 |
+
#: ../admin/partials/admin.php:769
|
742 |
msgid "Especifies the number of time units of the custom time range"
|
743 |
msgstr ""
|
744 |
"Especifica el número de unidades de tiempo del rango de tiempo "
|
745 |
"personalizado"
|
746 |
|
747 |
+
#: ../admin/partials/admin.php:776
|
748 |
msgid "Especifies the time unit of the custom time range"
|
749 |
msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado"
|
750 |
|
751 |
+
#: ../admin/partials/admin.php:783
|
752 |
msgid ""
|
753 |
"Tells WordPress Popular Posts to retrieve the most popular entries published "
|
754 |
"within the time range specified by you"
|
756 |
"Le indica a WordPress Popular Posts que debe listar aquellas entradas "
|
757 |
"populares publicadas dentro del rango de tiempo especificado por ti"
|
758 |
|
759 |
+
#: ../admin/partials/admin.php:790
|
760 |
msgid "Sets the sorting option of the popular posts"
|
761 |
msgstr "Configura el ordenado de las entradas populares"
|
762 |
|
763 |
+
#: ../admin/partials/admin.php:791
|
764 |
msgid "(for average views per day)"
|
765 |
msgstr "(para el porcentaje de vistas por día)"
|
766 |
|
767 |
+
#: ../admin/partials/admin.php:797
|
768 |
msgid "Defines the type of posts to show on the listing"
|
769 |
msgstr "Define el tipo de entrada a mostrar en el listado"
|
770 |
|
771 |
+
#: ../admin/partials/admin.php:804
|
772 |
msgid ""
|
773 |
"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
|
774 |
"form the listing."
|
776 |
"Si se configura, WordPress Popular Posts excluirá todos los IDs de "
|
777 |
"las entradas especificadas."
|
778 |
|
779 |
+
#: ../admin/partials/admin.php:811
|
780 |
msgid ""
|
781 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the "
|
782 |
"specified category ID(s). If a minus sign is used, entries associated to the "
|
787 |
"signo negativo, las entradas asociadas a dicha categoría serán "
|
788 |
"excluídas."
|
789 |
|
790 |
+
#: ../admin/partials/admin.php:818
|
791 |
msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
|
792 |
msgstr ""
|
793 |
"Si se tilda, WordPress Popular Posts filtrará entradas por la "
|
794 |
"taxonomía indicada."
|
795 |
|
796 |
+
#: ../admin/partials/admin.php:825
|
797 |
msgid ""
|
798 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the "
|
799 |
"specified term ID(s). If a minus sign is used, entries associated to the "
|
803 |
"que pertenecen al Term ID especificado(s). Si se usa un signo negativo, las "
|
804 |
"entradas asociadas a dicho term serán excluídas."
|
805 |
|
806 |
+
#: ../admin/partials/admin.php:832
|
807 |
msgid ""
|
808 |
"If set, WordPress Popular Posts will retrieve all entries created by "
|
809 |
"specified author(s) ID(s)."
|
811 |
"Si se configura, WordPress Popular Posts traerá todas las entradas "
|
812 |
"creadas por el (los) ID(s) de autor(es) especificado(s)."
|
813 |
|
814 |
+
#: ../admin/partials/admin.php:839
|
815 |
msgid ""
|
816 |
"If set, WordPress Popular Posts will shorten each post title to \"n\" "
|
817 |
"characters whenever possible"
|
819 |
"Si se configura, WordPress Popular Posts acortará cada titulo en \"n"
|
820 |
"\" caracteres cuando sea posible"
|
821 |
|
822 |
+
#: ../admin/partials/admin.php:846
|
823 |
msgid ""
|
824 |
"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
|
825 |
"words instead of characters"
|
827 |
"Si se pasa el valor 1, WordPress Popular Posts acortará cada titulo "
|
828 |
"en \"n\" palabras en vez de caracteres"
|
829 |
|
830 |
+
#: ../admin/partials/admin.php:853
|
831 |
msgid ""
|
832 |
"If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
|
833 |
"characters long from the content of each post listed as popular"
|
836 |
"un extracto de \"n\" caracteres del contenido de cada entrada listada como "
|
837 |
"popular"
|
838 |
|
839 |
+
#: ../admin/partials/admin.php:860
|
840 |
msgid ""
|
841 |
"If set, WordPress Popular Posts will maintaing all styling tags (strong, "
|
842 |
"italic, etc) and hyperlinks found in the excerpt"
|
845 |
"etiquetas de estilo (strong, italic, etc) y los hipervínculos "
|
846 |
"encontrados en el extracto"
|
847 |
|
848 |
+
#: ../admin/partials/admin.php:867
|
849 |
msgid ""
|
850 |
"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
|
851 |
"instead of characters"
|
853 |
"Si se configura, WordPress Popular Posts acortará el resumen en \"n\" "
|
854 |
"palabras en vez de caracteres"
|
855 |
|
856 |
+
#: ../admin/partials/admin.php:874
|
857 |
msgid ""
|
858 |
"If set, and if your current server configuration allows it, you will be able "
|
859 |
"to display thumbnails of your posts. This attribute sets the width for "
|
863 |
"permite, podrás mostrar miniaturas de tus entradas. Este atributo "
|
864 |
"configura el ancho de tus miniaturas"
|
865 |
|
866 |
+
#: ../admin/partials/admin.php:881
|
867 |
msgid ""
|
868 |
"If set, and if your current server configuration allows it, you will be able "
|
869 |
"to display thumbnails of your posts. This attribute sets the height for "
|
873 |
"permite, podrás mostrar miniaturas de tus entradas. Este atributo "
|
874 |
"configura el alto de tus miniaturas"
|
875 |
|
876 |
+
#: ../admin/partials/admin.php:888
|
877 |
msgid ""
|
878 |
"If set, and if the WP-PostRatings plugin is installed and enabled on your "
|
879 |
"blog, WordPress Popular Posts will show how your visitors are rating your "
|
883 |
"habilitado en tu blog, WordPress Popular Posts mostrará como tus "
|
884 |
"visitantes han calificado a tus entradas"
|
885 |
|
886 |
+
#: ../admin/partials/admin.php:895
|
887 |
msgid ""
|
888 |
"If set, WordPress Popular Posts will show how many comments each popular "
|
889 |
"post has got during the specified time range"
|
892 |
"comentarios ha obtenido cada entrada popular dentro del rango de tiempo "
|
893 |
"especificado"
|
894 |
|
895 |
+
#: ../admin/partials/admin.php:902
|
896 |
msgid ""
|
897 |
"If set, WordPress Popular Posts will show how many views each popular post "
|
898 |
"has got during the specified time range"
|
901 |
"vistas ha obtenido cada entrada popular dentro del rango de tiempo "
|
902 |
"especificado"
|
903 |
|
904 |
+
#: ../admin/partials/admin.php:909
|
905 |
msgid ""
|
906 |
"If set, WordPress Popular Posts will show who published each popular post on "
|
907 |
"the list"
|
909 |
"Si se configura, WordPress Popular Posts mostrará quién "
|
910 |
"publicó cada entrada popular de la lista"
|
911 |
|
912 |
+
#: ../admin/partials/admin.php:916
|
913 |
msgid ""
|
914 |
"If set, WordPress Popular Posts will display the date when each popular post "
|
915 |
"on the list was published"
|
917 |
"Si se tilda, WordPress Popular Posts mostrará la fecha en la que fue "
|
918 |
"publicada cada entrada popular"
|
919 |
|
920 |
+
#: ../admin/partials/admin.php:923
|
921 |
msgid "Sets the date format"
|
922 |
msgstr "Configura el formato de la fecha"
|
923 |
|
924 |
+
#: ../admin/partials/admin.php:930
|
925 |
msgid ""
|
926 |
"If set, WordPress Popular Posts will display the categories associated to "
|
927 |
"each entry"
|
929 |
"Si se tilda, WordPress Popular Posts mostrará las categorías "
|
930 |
"asociadas a cada entrada"
|
931 |
|
932 |
+
#: ../admin/partials/admin.php:937
|
933 |
msgid ""
|
934 |
"If set, WordPress Popular Posts will display the taxonomies associated to "
|
935 |
"each entry"
|
937 |
"Si se tilda, WordPress Popular Posts mostrará las taxonomías "
|
938 |
"asociadas a cada entrada"
|
939 |
|
940 |
+
#: ../admin/partials/admin.php:944
|
941 |
msgid "Sets the opening tag for the listing"
|
942 |
msgstr "Configura la etiqueta de apertura del listado"
|
943 |
|
944 |
+
#: ../admin/partials/admin.php:951
|
945 |
msgid "Sets the closing tag for the listing"
|
946 |
msgstr "Configura la etiqueta de cierre del listado"
|
947 |
|
948 |
+
#: ../admin/partials/admin.php:958
|
949 |
msgid "Sets the HTML structure of each post"
|
950 |
msgstr "Configura la estructura HTML de cada entrada"
|
951 |
|
952 |
+
#: ../admin/partials/admin.php:959
|
953 |
msgid "Text string, custom HTML"
|
954 |
msgstr "Texto, HTML personalizado"
|
955 |
|
956 |
+
#: ../admin/partials/admin.php:959
|
957 |
msgid "Available Content Tags"
|
958 |
msgstr "Content Tags disponibles"
|
959 |
|
960 |
+
#: ../admin/partials/admin.php:959
|
961 |
msgid ""
|
962 |
+
"returns thumbnail linked to post/page, requires thumbnail_width & "
|
963 |
"thumbnail_height"
|
964 |
msgstr ""
|
965 |
+
"devuelve la miniatura con un link hacia la entrada/página, requiere "
|
966 |
"thumbnail_width & thumbnail_height"
|
967 |
|
968 |
+
#: ../admin/partials/admin.php:959
|
969 |
msgid ""
|
970 |
+
"returns thumbnail image without linking to post/page, requires "
|
971 |
"thumbnail_width & thumbnail_height"
|
972 |
msgstr ""
|
973 |
+
"devuelve la miniatura sin link hacia la entrada/página, requiere "
|
974 |
"thumbnail_width & thumbnail_height"
|
975 |
|
976 |
+
#: ../admin/partials/admin.php:959
|
977 |
+
msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height"
|
978 |
msgstr ""
|
979 |
+
"devuelve la url de la miniatura, requires thumbnail_width & thumbnail_height"
|
980 |
|
981 |
+
#: ../admin/partials/admin.php:959
|
982 |
+
msgid "returns linked post/page title"
|
983 |
+
msgstr "devuelve el título de la entrada/página con enlace"
|
984 |
+
|
985 |
+
#: ../admin/partials/admin.php:959
|
986 |
+
msgid "returns the post/page ID"
|
987 |
+
msgstr "devuelve la URL de la entrada/página"
|
988 |
|
989 |
+
#: ../admin/partials/admin.php:959
|
990 |
msgid ""
|
991 |
+
"returns post/page excerpt, and requires excerpt_length to be greater than 0"
|
992 |
msgstr ""
|
993 |
+
"devuelve el resumen de la entrada/página, requiere que excerpt_length "
|
994 |
"sea mayor a 0"
|
995 |
|
996 |
+
#: ../admin/partials/admin.php:959
|
997 |
+
msgid "returns the default stats tags"
|
998 |
+
msgstr "devuelve el stats tag por defecto"
|
999 |
|
1000 |
+
#: ../admin/partials/admin.php:959
|
1001 |
msgid ""
|
1002 |
+
"returns post/page current rating, requires WP-PostRatings installed and "
|
1003 |
"enabled"
|
1004 |
msgstr ""
|
1005 |
+
"devuelve el rating actual de la entrada/página, requiere que WP-"
|
1006 |
"PostRatings esté instalado y activo"
|
1007 |
|
1008 |
+
#: ../admin/partials/admin.php:959
|
1009 |
msgid ""
|
1010 |
+
"returns post/page current rating as an integer, requires WP-PostRatings "
|
1011 |
"installed and enabled"
|
1012 |
msgstr ""
|
1013 |
+
"devuelve el rating actual de la entrada/página como un entero, "
|
1014 |
"requiere que WP-PostRatings esté instalado y activo"
|
1015 |
|
1016 |
+
#: ../admin/partials/admin.php:959
|
1017 |
+
msgid "returns the URL of the post/page"
|
1018 |
+
msgstr "devuelve la URL de la entrada/página"
|
1019 |
|
1020 |
+
#: ../admin/partials/admin.php:959
|
1021 |
+
msgid "returns post/page title, no link"
|
1022 |
+
msgstr "devuelve el título de la entrada/página, sin enlace"
|
1023 |
|
1024 |
+
#: ../admin/partials/admin.php:959
|
1025 |
+
msgid "returns linked author name, requires stats_author=1"
|
1026 |
+
msgstr "devuelve el nombre del autor con enlace, requiere stats_author=1"
|
1027 |
|
1028 |
+
#: ../admin/partials/admin.php:959
|
1029 |
+
msgid "returns linked category name, requires stats_category=1"
|
1030 |
msgstr ""
|
1031 |
+
"devuelve el nombre de la categoría con enlace, requiere "
|
1032 |
"stats_category=1"
|
1033 |
|
1034 |
+
#: ../admin/partials/admin.php:959
|
1035 |
+
msgid "returns linked taxonomy names, requires stats_taxonomy=1"
|
1036 |
msgstr ""
|
1037 |
+
"devuelve los nombres de las taxonomías con enlace, requiere "
|
1038 |
"stats_taxonomy=1"
|
1039 |
|
1040 |
+
#: ../admin/partials/admin.php:959
|
1041 |
+
msgid "returns views count only, no text"
|
1042 |
+
msgstr "devuelve el número de vistas, sin texto adicional"
|
1043 |
|
1044 |
+
#: ../admin/partials/admin.php:959
|
1045 |
+
msgid "returns comments count only, no text, requires stats_comments=1"
|
1046 |
msgstr ""
|
1047 |
+
"devuelve el número de comentarios, sin texto adicional, requiere "
|
1048 |
"stats_comments=1"
|
1049 |
|
1050 |
+
#: ../admin/partials/admin.php:959
|
1051 |
+
msgid "returns post/page date, requires stats_date=1"
|
1052 |
+
msgstr "devuelve la fecha de la entrada/página, requiere stats_date=1"
|
1053 |
|
1054 |
#: ../includes/class-wordpress-popular-posts-output.php:126
|
1055 |
msgid "Sorry. No data so far."
|
1091 |
msgid "The most Popular Posts on your blog."
|
1092 |
msgstr "Las entradas más populares en tu blog."
|
1093 |
|
1094 |
+
#: ../includes/class-wordpress-popular-posts-widget.php:94
|
1095 |
#, php-format
|
1096 |
msgid ""
|
1097 |
"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
|
1102 |
"el atributo <em>id</em> en before_widget (ver <a href=\"%s\" target=\"_blank"
|
1103 |
"\" rel=\"nofollow\">register_sidebar</a> para más detalles)"
|
1104 |
|
1105 |
+
#: ../includes/class-wordpress-popular-posts-widget.php:105
|
1106 |
msgid "Loading..."
|
1107 |
msgstr "Cargando..."
|
1108 |
|
1292 |
msgid "Post HTML Markup"
|
1293 |
msgstr "Markup HTML de la entrada"
|
1294 |
|
1295 |
+
#~ msgid "About"
|
1296 |
+
#~ msgstr "Acerca de"
|
1297 |
+
|
1298 |
#~ msgid "About WordPress Popular Posts %s"
|
1299 |
#~ msgstr "Acerca de WordPress Popular Posts %s"
|
1300 |
|
languages/wordpress-popular-posts-es_VE.mo
CHANGED
Binary file
|
languages/wordpress-popular-posts-es_VE.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WordPress Popular Posts\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
-
"PO-Revision-Date: 2017-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
|
11 |
"Language: es_VE\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;"
|
18 |
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
19 |
"esc_html_x;_c;_nc;_n:1,2\n"
|
@@ -71,7 +71,7 @@ msgstr ""
|
|
71 |
|
72 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
73 |
#: ../admin/class-wordpress-popular-posts-admin.php:752
|
74 |
-
#: ../admin/partials/admin.php:
|
75 |
#: ../includes/class-wordpress-popular-posts-output.php:720
|
76 |
#, php-format
|
77 |
msgid "1 view"
|
@@ -81,7 +81,7 @@ msgstr[1] "%s vistas"
|
|
81 |
|
82 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
83 |
#: ../admin/class-wordpress-popular-posts-admin.php:807
|
84 |
-
#: ../admin/partials/admin.php:
|
85 |
#: ../includes/class-wordpress-popular-posts-output.php:701
|
86 |
#, php-format
|
87 |
msgid "1 comment"
|
@@ -100,19 +100,19 @@ msgstr "Vistas"
|
|
100 |
|
101 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
102 |
#: ../admin/class-wordpress-popular-posts-admin.php:808
|
103 |
-
#: ../admin/partials/admin.php:
|
104 |
msgid "View"
|
105 |
msgstr "Vista"
|
106 |
|
107 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
108 |
#: ../admin/class-wordpress-popular-posts-admin.php:808
|
109 |
-
#: ../admin/partials/admin.php:
|
110 |
msgid "Edit"
|
111 |
msgstr "Editar"
|
112 |
|
113 |
#: ../admin/class-wordpress-popular-posts-admin.php:764
|
114 |
#: ../admin/class-wordpress-popular-posts-admin.php:819
|
115 |
-
#: ../admin/partials/admin.php:
|
116 |
msgid ""
|
117 |
"Looks like traffic to your site is a little light right now. <br />Spread "
|
118 |
"the word and come back later!"
|
@@ -124,7 +124,7 @@ msgstr ""
|
|
124 |
msgid "Settings"
|
125 |
msgstr "Configuración"
|
126 |
|
127 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
"Your PHP installation is too old. WordPress Popular Posts requires at least "
|
@@ -136,7 +136,7 @@ msgstr ""
|
|
136 |
"contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o "
|
137 |
"mejor."
|
138 |
|
139 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
140 |
#, php-format
|
141 |
msgid ""
|
142 |
"Your WordPress version is too old. WordPress Popular Posts requires at least "
|
@@ -147,25 +147,37 @@ msgstr ""
|
|
147 |
"Posts requiere al menos la versión %1$s para funcionar correctamente. "
|
148 |
"Por favor actualiza tu blog via Escritorio > Actualizaciones."
|
149 |
|
150 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
-
"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been
|
154 |
-
"strong>.</p></div>"
|
155 |
msgstr ""
|
156 |
-
"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> ha sido
|
157 |
-
"strong>.</p></div>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
-
#: ../admin/partials/admin.php:
|
160 |
-
|
|
|
|
|
|
|
|
|
161 |
msgid "Settings saved."
|
162 |
msgstr "Configuración guardada."
|
163 |
|
164 |
-
#: ../admin/partials/admin.php:
|
165 |
msgid "Please provide the name of your custom field."
|
166 |
msgstr "Por favor indica el nombre de tu custom field."
|
167 |
|
168 |
-
#: ../admin/partials/admin.php:
|
169 |
msgid ""
|
170 |
"Any changes made to WPP's default stylesheet will be lost after every plugin "
|
171 |
"update. In order to prevent this from happening, please copy the wpp.css "
|
@@ -177,7 +189,7 @@ msgstr ""
|
|
177 |
"favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-"
|
178 |
"popular-posts/style) a la carpeta de tu tema actual"
|
179 |
|
180 |
-
#: ../admin/partials/admin.php:
|
181 |
msgid ""
|
182 |
"This operation will delete all entries from WordPress Popular Posts' cache "
|
183 |
"table and cannot be undone."
|
@@ -185,27 +197,27 @@ msgstr ""
|
|
185 |
"Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de "
|
186 |
"WordPress Popular Posts y no se puede deshacer."
|
187 |
|
188 |
-
#: ../admin/partials/admin.php:
|
189 |
-
#: ../admin/partials/admin.php:
|
190 |
msgid "Do you want to continue?"
|
191 |
msgstr "\\277Deseas continuar?"
|
192 |
|
193 |
-
#: ../admin/partials/admin.php:
|
194 |
msgid "Success! The cache table has been cleared!"
|
195 |
msgstr "\\241\\311xito! \\241La tabla cach\\351 ha sido borrada!"
|
196 |
|
197 |
-
#: ../admin/partials/admin.php:
|
198 |
msgid "Error: cache table does not exist."
|
199 |
msgstr "Error: la tabla cach\\351 no existe."
|
200 |
|
201 |
-
#: ../admin/partials/admin.php:
|
202 |
-
#: ../admin/partials/admin.php:
|
203 |
-
#: ../admin/partials/admin.php:
|
204 |
msgid "Invalid action."
|
205 |
msgstr "Acci\\363n inv\\311lida."
|
206 |
|
207 |
-
#: ../admin/partials/admin.php:
|
208 |
-
#: ../admin/partials/admin.php:
|
209 |
msgid ""
|
210 |
"Sorry, you do not have enough permissions to do this. Please contact the "
|
211 |
"site administrator for support."
|
@@ -213,7 +225,7 @@ msgstr ""
|
|
213 |
"Lo lamento, no tienes permisos suficientes para hacer esto. Por favor "
|
214 |
"contacta al administrador del sitio."
|
215 |
|
216 |
-
#: ../admin/partials/admin.php:
|
217 |
msgid ""
|
218 |
"This operation will delete all stored info from WordPress Popular Posts' "
|
219 |
"data tables and cannot be undone."
|
@@ -221,99 +233,83 @@ msgstr ""
|
|
221 |
"Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las "
|
222 |
"tablas de WordPress Popular Posts y no se puede deshacer."
|
223 |
|
224 |
-
#: ../admin/partials/admin.php:
|
225 |
msgid "Success! All data have been cleared!"
|
226 |
msgstr "\\241\\311xito! \\241Toda la data ha sido borrada!"
|
227 |
|
228 |
-
#: ../admin/partials/admin.php:
|
229 |
msgid "Error: one or both data tables are missing."
|
230 |
msgstr "Error: una o ambas tablas de datos no existen."
|
231 |
|
232 |
-
#: ../admin/partials/admin.php:
|
233 |
msgid "This operation will delete all cached thumbnails and cannot be undone."
|
234 |
msgstr ""
|
235 |
"Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se "
|
236 |
"puede deshacer."
|
237 |
|
238 |
-
#: ../admin/partials/admin.php:
|
239 |
msgid "Success! All files have been deleted!"
|
240 |
msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!"
|
241 |
|
242 |
-
#: ../admin/partials/admin.php:
|
243 |
msgid "The thumbnail cache is already empty!"
|
244 |
msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!"
|
245 |
|
246 |
-
#: ../admin/partials/admin.php:
|
247 |
msgid "Menu"
|
248 |
msgstr "Menú"
|
249 |
|
250 |
-
#: ../admin/partials/admin.php:
|
251 |
-
msgid "Stats"
|
252 |
-
msgstr "Estadísticas"
|
253 |
-
|
254 |
-
#: ../admin/partials/admin.php:249 ../admin/partials/admin.php:257
|
255 |
-
msgid "Tools"
|
256 |
-
msgstr "Herramientas"
|
257 |
-
|
258 |
-
#: ../admin/partials/admin.php:250 ../admin/partials/admin.php:258
|
259 |
-
msgid "Parameters"
|
260 |
-
msgstr "Parámetros"
|
261 |
-
|
262 |
-
#: ../admin/partials/admin.php:259
|
263 |
-
msgid "About"
|
264 |
-
msgstr "Acerca de"
|
265 |
-
|
266 |
-
#: ../admin/partials/admin.php:283
|
267 |
msgid "Post type"
|
268 |
msgstr "Post type"
|
269 |
|
270 |
-
#: ../admin/partials/admin.php:
|
271 |
msgid "Limit"
|
272 |
msgstr "Límite"
|
273 |
|
274 |
-
#: ../admin/partials/admin.php:
|
275 |
msgid "Display only posts published within the selected Time Range"
|
276 |
msgstr ""
|
277 |
"Mostrar sólo entradas publicadas en el Rango de Tiempo seleccionado"
|
278 |
|
279 |
-
#: ../admin/partials/admin.php:
|
280 |
-
#: ../admin/partials/admin.php:
|
281 |
-
#: ../admin/partials/admin.php:
|
282 |
msgid "Apply"
|
283 |
msgstr "Aplicar"
|
284 |
|
285 |
-
#: ../admin/partials/admin.php:
|
286 |
msgid "Cancel"
|
287 |
msgstr "Cancelar"
|
288 |
|
289 |
-
#: ../admin/partials/admin.php:
|
290 |
msgid "Custom Time Range"
|
291 |
msgstr "Rango de Tiempo Personalizado"
|
292 |
|
293 |
-
#: ../admin/partials/admin.php:
|
294 |
msgid "Date Range"
|
295 |
msgstr "Rango de Fechas"
|
296 |
|
297 |
-
#: ../admin/partials/admin.php:
|
298 |
#: ../includes/widget-form.php:41
|
299 |
msgid "Minute(s)"
|
300 |
msgstr "Minuto(s)"
|
301 |
|
302 |
-
#: ../admin/partials/admin.php:
|
303 |
#: ../includes/widget-form.php:42
|
304 |
msgid "Hour(s)"
|
305 |
msgstr "Hora(s)"
|
306 |
|
307 |
-
#: ../admin/partials/admin.php:
|
308 |
#: ../includes/widget-form.php:43
|
309 |
msgid "Day(s)"
|
310 |
msgstr "Día(s)"
|
311 |
|
312 |
-
#: ../admin/partials/admin.php:
|
313 |
msgid "Select a date..."
|
314 |
msgstr "Selecciona una fecha..."
|
315 |
|
316 |
-
#: ../admin/partials/admin.php:
|
317 |
#, php-format
|
318 |
msgid ""
|
319 |
"Err... A nice little chart is supposed to be here, instead you are seeing "
|
@@ -325,19 +321,19 @@ msgstr ""
|
|
325 |
"anticuado.<br /> Por favor <a href=\"%s\" target=\"_blank\">instala un mejor "
|
326 |
"navegador</a>."
|
327 |
|
328 |
-
#: ../admin/partials/admin.php:
|
329 |
msgid "Thumbnails"
|
330 |
msgstr "Miniaturas"
|
331 |
|
332 |
-
#: ../admin/partials/admin.php:
|
333 |
msgid "Default thumbnail"
|
334 |
msgstr "Miniatura por defecto"
|
335 |
|
336 |
-
#: ../admin/partials/admin.php:
|
337 |
msgid "Upload thumbnail"
|
338 |
msgstr "Subir miniatura"
|
339 |
|
340 |
-
#: ../admin/partials/admin.php:
|
341 |
msgid ""
|
342 |
"How-to: upload (or select) an image, set Size to Full and click on Upload. "
|
343 |
"After it's done, hit on Apply to save changes"
|
@@ -345,63 +341,63 @@ msgstr ""
|
|
345 |
"Tutorial: sube (o selecciona) una imagen, selecciona Tamaño Completo "
|
346 |
"y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios"
|
347 |
|
348 |
-
#: ../admin/partials/admin.php:
|
349 |
msgid "Pick image from"
|
350 |
msgstr "Seleccionar imagen desde"
|
351 |
|
352 |
-
#: ../admin/partials/admin.php:
|
353 |
msgid "Featured image"
|
354 |
msgstr "\tImagen destacada"
|
355 |
|
356 |
-
#: ../admin/partials/admin.php:
|
357 |
msgid "First image on post"
|
358 |
msgstr "Primera imagen de la entrada"
|
359 |
|
360 |
-
#: ../admin/partials/admin.php:
|
361 |
msgid "First attachment"
|
362 |
msgstr "Primer adjunto"
|
363 |
|
364 |
-
#: ../admin/partials/admin.php:
|
365 |
msgid "Custom field"
|
366 |
msgstr "Custom field"
|
367 |
|
368 |
-
#: ../admin/partials/admin.php:
|
369 |
msgid "Tell WordPress Popular Posts where it should get thumbnails from"
|
370 |
msgstr ""
|
371 |
"Dile a WordPress Popular Posts de dónde debe obtener las miniaturas"
|
372 |
|
373 |
-
#: ../admin/partials/admin.php:
|
374 |
msgid "Custom field name"
|
375 |
msgstr "Nombre del custom field"
|
376 |
|
377 |
-
#: ../admin/partials/admin.php:
|
378 |
msgid "Resize image from Custom field?"
|
379 |
msgstr "¡Ajustar la imagen del Custom field?"
|
380 |
|
381 |
-
#: ../admin/partials/admin.php:
|
382 |
msgid "No, I will upload my own thumbnail"
|
383 |
msgstr "No, subiré mi propia miniatura"
|
384 |
|
385 |
-
#: ../admin/partials/admin.php:
|
386 |
msgid "Yes"
|
387 |
msgstr "Sí"
|
388 |
|
389 |
-
#: ../admin/partials/admin.php:
|
390 |
msgid "Responsive support"
|
391 |
msgstr "Soporte Responsive"
|
392 |
|
393 |
-
#: ../admin/partials/admin.php:
|
394 |
-
#: ../admin/partials/admin.php:
|
395 |
msgid "Enabled"
|
396 |
msgstr "Habilitado"
|
397 |
|
398 |
-
#: ../admin/partials/admin.php:
|
399 |
-
#: ../admin/partials/admin.php:
|
400 |
-
#: ../admin/partials/admin.php:
|
401 |
msgid "Disabled"
|
402 |
msgstr "Deshabilitado"
|
403 |
|
404 |
-
#: ../admin/partials/admin.php:
|
405 |
msgid ""
|
406 |
"If enabled, WordPress Popular Posts will strip height and width attributes "
|
407 |
"out of thumbnails' image tags"
|
@@ -409,59 +405,59 @@ msgstr ""
|
|
409 |
"Si se activa, WordPress Popular Posts quitará los atributos height y "
|
410 |
"width de las etiquetas image de las miniaturas"
|
411 |
|
412 |
-
#: ../admin/partials/admin.php:
|
413 |
msgid "Empty image cache"
|
414 |
msgstr "Vaciar el caché de imágenes"
|
415 |
|
416 |
-
#: ../admin/partials/admin.php:
|
417 |
msgid "Use this button to clear WPP's thumbnails cache"
|
418 |
msgstr ""
|
419 |
"Utiliza este botón para vaciar el caché de miniaturas de WPP"
|
420 |
|
421 |
-
#: ../admin/partials/admin.php:
|
422 |
msgid "Data"
|
423 |
msgstr "Datos"
|
424 |
|
425 |
-
#: ../admin/partials/admin.php:
|
426 |
msgid "Log views from"
|
427 |
msgstr "Registrar vistas de"
|
428 |
|
429 |
-
#: ../admin/partials/admin.php:
|
430 |
msgid "Visitors only"
|
431 |
msgstr "Sólo visitantes"
|
432 |
|
433 |
-
#: ../admin/partials/admin.php:
|
434 |
msgid "Logged-in users only"
|
435 |
msgstr "Sólo usuarios conectados"
|
436 |
|
437 |
-
#: ../admin/partials/admin.php:
|
438 |
msgid "Everyone"
|
439 |
msgstr "Todos"
|
440 |
|
441 |
-
#: ../admin/partials/admin.php:
|
442 |
msgid "Log limit"
|
443 |
msgstr "Límite del registro"
|
444 |
|
445 |
-
#: ../admin/partials/admin.php:
|
446 |
msgid "Keep data for"
|
447 |
msgstr "Guardar datos por"
|
448 |
|
449 |
-
#: ../admin/partials/admin.php:
|
450 |
msgid "day(s)"
|
451 |
msgstr "día(s)"
|
452 |
|
453 |
-
#: ../admin/partials/admin.php:
|
454 |
msgid ""
|
455 |
"Data older than the specified time frame will be automatically discarded"
|
456 |
msgstr ""
|
457 |
"La data que sea más antigua que el tiempo especificado serán "
|
458 |
"automáticamente descartada"
|
459 |
|
460 |
-
#: ../admin/partials/admin.php:
|
461 |
msgid "Ajaxify widget"
|
462 |
msgstr "Usar Ajax con el widget"
|
463 |
|
464 |
-
#: ../admin/partials/admin.php:
|
465 |
msgid ""
|
466 |
"If you are using a caching plugin such as WP Super Cache, enabling this "
|
467 |
"feature will keep the popular list from being cached by it"
|
@@ -470,26 +466,26 @@ msgstr ""
|
|
470 |
"habilitar esta característica evitará que la lista de entradas "
|
471 |
"populares sea guardada en caché"
|
472 |
|
473 |
-
#: ../admin/partials/admin.php:
|
474 |
msgid "WPP Cache Expiry Policy"
|
475 |
msgstr "WPP Política de Expiración del Cache"
|
476 |
|
477 |
-
#: ../admin/partials/admin.php:
|
478 |
#: ../includes/widget-form.php:3 ../includes/widget-form.php:50
|
479 |
#: ../includes/widget-form.php:56 ../includes/widget-form.php:75
|
480 |
#: ../includes/widget-form.php:85 ../includes/widget-form.php:177
|
481 |
msgid "What is this?"
|
482 |
msgstr "¿Qué es ésto?"
|
483 |
|
484 |
-
#: ../admin/partials/admin.php:
|
485 |
msgid "Never cache"
|
486 |
msgstr "Nunca almacenar en caché"
|
487 |
|
488 |
-
#: ../admin/partials/admin.php:
|
489 |
msgid "Enable caching"
|
490 |
msgstr "Habilitar caché"
|
491 |
|
492 |
-
#: ../admin/partials/admin.php:
|
493 |
msgid ""
|
494 |
"Sets WPP's cache expiration time. WPP can cache the popular list for a "
|
495 |
"specified amount of time. Recommended for large / high traffic sites"
|
@@ -499,31 +495,31 @@ msgstr ""
|
|
499 |
"de tiempo especificada. Recomendado para sitios web grandes / de alto "
|
500 |
"tráfico"
|
501 |
|
502 |
-
#: ../admin/partials/admin.php:
|
503 |
msgid "Refresh cache every"
|
504 |
msgstr "Refrescar el caché cada"
|
505 |
|
506 |
-
#: ../admin/partials/admin.php:
|
507 |
msgid "Week(s)"
|
508 |
msgstr "Semana(s)"
|
509 |
|
510 |
-
#: ../admin/partials/admin.php:
|
511 |
msgid "Month(s)"
|
512 |
msgstr "Mes(es)"
|
513 |
|
514 |
-
#: ../admin/partials/admin.php:
|
515 |
msgid "Year(s)"
|
516 |
msgstr "Año(s)"
|
517 |
|
518 |
-
#: ../admin/partials/admin.php:
|
519 |
msgid "Really? That long?"
|
520 |
msgstr "¿En serio? ¿Tanto tiempo?"
|
521 |
|
522 |
-
#: ../admin/partials/admin.php:
|
523 |
msgid "Data Sampling"
|
524 |
msgstr "Sampleo de Datos"
|
525 |
|
526 |
-
#: ../admin/partials/admin.php:
|
527 |
#, php-format
|
528 |
msgid ""
|
529 |
"By default, WordPress Popular Posts stores in database every single visit "
|
@@ -544,11 +540,11 @@ msgstr ""
|
|
544 |
"detectadas en ese conjunto de muestras (para más, <a href=\"%2$s\" "
|
545 |
"target=\"_blank\">por favor leer acá</a>)"
|
546 |
|
547 |
-
#: ../admin/partials/admin.php:
|
548 |
msgid "Sample Rate"
|
549 |
msgstr "Rata de Sampleo"
|
550 |
|
551 |
-
#: ../admin/partials/admin.php:
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"A sampling rate of %d is recommended for large / high traffic sites. For "
|
@@ -558,27 +554,27 @@ msgstr ""
|
|
558 |
"tráfico. Para sitios con menos tráfico, deberías "
|
559 |
"disminuir el valor"
|
560 |
|
561 |
-
#: ../admin/partials/admin.php:
|
562 |
msgid "Miscellaneous"
|
563 |
msgstr "Misceláneos"
|
564 |
|
565 |
-
#: ../admin/partials/admin.php:
|
566 |
msgid "Open links in"
|
567 |
msgstr "Abrir enlaces en"
|
568 |
|
569 |
-
#: ../admin/partials/admin.php:
|
570 |
msgid "Current window"
|
571 |
msgstr "Ventana actual"
|
572 |
|
573 |
-
#: ../admin/partials/admin.php:
|
574 |
msgid "New tab/window"
|
575 |
msgstr "Nueva pestaña/ventana"
|
576 |
|
577 |
-
#: ../admin/partials/admin.php:
|
578 |
msgid "Use plugin's stylesheet"
|
579 |
msgstr "Utilizar la hoja de estilos del plugin"
|
580 |
|
581 |
-
#: ../admin/partials/admin.php:
|
582 |
msgid ""
|
583 |
"By default, the plugin includes a stylesheet called wpp.css which you can "
|
584 |
"use to style your popular posts listing. If you wish to use your own "
|
@@ -590,7 +586,7 @@ msgstr ""
|
|
590 |
"deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se "
|
591 |
"incluya en el header de tu sitio web, utiliza esto."
|
592 |
|
593 |
-
#: ../admin/partials/admin.php:
|
594 |
msgid ""
|
595 |
"WordPress Popular Posts maintains data in two separate tables: one for "
|
596 |
"storing the most popular entries on a daily basis (from now on, \"cache\"), "
|
@@ -606,26 +602,26 @@ msgstr ""
|
|
606 |
"tablas históricas y de caché, por favor utiliza los botones de "
|
607 |
"abajo."
|
608 |
|
609 |
-
#: ../admin/partials/admin.php:
|
610 |
msgid "Empty cache"
|
611 |
msgstr "Vaciar el caché"
|
612 |
|
613 |
-
#: ../admin/partials/admin.php:
|
614 |
msgid "Use this button to manually clear entries from WPP cache only"
|
615 |
msgstr ""
|
616 |
"Utiliza este botón para vaciar manualmente sólo las entradas "
|
617 |
"del caché de WPP"
|
618 |
|
619 |
-
#: ../admin/partials/admin.php:
|
620 |
msgid "Clear all data"
|
621 |
msgstr "Eliminar toda la data"
|
622 |
|
623 |
-
#: ../admin/partials/admin.php:
|
624 |
msgid "Use this button to manually clear entries from all WPP data tables"
|
625 |
msgstr ""
|
626 |
"Utiliza este botón para limpiar manualmente las tablas de datos de WPP"
|
627 |
|
628 |
-
#: ../admin/partials/admin.php:
|
629 |
#, php-format
|
630 |
msgid ""
|
631 |
"With the following parameters you can customize the popular posts list when "
|
@@ -636,105 +632,105 @@ msgstr ""
|
|
636 |
"entradas populares cuando utilices el <a href=\"%1$s\">template tag "
|
637 |
"wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>."
|
638 |
|
639 |
-
#: ../admin/partials/admin.php:
|
640 |
msgid "Parameter"
|
641 |
msgstr "Parámetro"
|
642 |
|
643 |
-
#: ../admin/partials/admin.php:
|
644 |
msgid "What it does "
|
645 |
msgstr "Qué hace"
|
646 |
|
647 |
-
#: ../admin/partials/admin.php:
|
648 |
msgid "Possible values"
|
649 |
msgstr "Valores posibles"
|
650 |
|
651 |
-
#: ../admin/partials/admin.php:
|
652 |
msgid "Defaults to"
|
653 |
msgstr "Por defecto"
|
654 |
|
655 |
-
#: ../admin/partials/admin.php:
|
656 |
msgid "Example"
|
657 |
msgstr "Ejemplo"
|
658 |
|
659 |
-
#: ../admin/partials/admin.php:
|
660 |
msgid "Sets a heading for the list"
|
661 |
msgstr "Configura el encabezado de la lista"
|
662 |
|
663 |
-
#: ../admin/partials/admin.php:
|
664 |
-
#: ../admin/partials/admin.php:
|
665 |
-
#: ../admin/partials/admin.php:
|
666 |
-
#: ../admin/partials/admin.php:
|
667 |
-
#: ../admin/partials/admin.php:
|
668 |
-
#: ../admin/partials/admin.php:
|
669 |
msgid "Text string"
|
670 |
msgstr "Texto"
|
671 |
|
672 |
-
#: ../admin/partials/admin.php:
|
673 |
-
#: ../admin/partials/admin.php:
|
674 |
-
#: ../admin/partials/admin.php:
|
675 |
msgid "None"
|
676 |
msgstr "Ninguno"
|
677 |
|
678 |
-
#: ../admin/partials/admin.php:
|
679 |
-
#: ../admin/partials/admin.php:
|
680 |
-
#: ../admin/partials/admin.php:
|
681 |
-
#: ../admin/partials/admin.php:
|
682 |
-
#: ../admin/partials/admin.php:
|
683 |
-
#: ../admin/partials/admin.php:
|
684 |
-
#: ../admin/partials/admin.php:
|
685 |
-
#: ../admin/partials/admin.php:
|
686 |
-
#: ../admin/partials/admin.php:
|
687 |
-
#: ../admin/partials/admin.php:
|
688 |
-
#: ../admin/partials/admin.php:
|
689 |
-
#: ../admin/partials/admin.php:
|
690 |
-
#: ../admin/partials/admin.php:
|
691 |
-
#: ../admin/partials/admin.php:
|
692 |
-
#: ../admin/partials/admin.php:
|
693 |
-
#: ../admin/partials/admin.php:
|
694 |
-
#: ../admin/partials/admin.php:
|
695 |
msgid "With wpp_get_mostpopular():"
|
696 |
msgstr "Con wpp_get_mostpopular():"
|
697 |
|
698 |
-
#: ../admin/partials/admin.php:
|
699 |
-
#: ../admin/partials/admin.php:
|
700 |
-
#: ../admin/partials/admin.php:
|
701 |
-
#: ../admin/partials/admin.php:
|
702 |
-
#: ../admin/partials/admin.php:
|
703 |
-
#: ../admin/partials/admin.php:
|
704 |
-
#: ../admin/partials/admin.php:
|
705 |
-
#: ../admin/partials/admin.php:
|
706 |
-
#: ../admin/partials/admin.php:
|
707 |
-
#: ../admin/partials/admin.php:
|
708 |
-
#: ../admin/partials/admin.php:
|
709 |
-
#: ../admin/partials/admin.php:
|
710 |
-
#: ../admin/partials/admin.php:
|
711 |
-
#: ../admin/partials/admin.php:
|
712 |
-
#: ../admin/partials/admin.php:
|
713 |
-
#: ../admin/partials/admin.php:
|
714 |
-
#: ../admin/partials/admin.php:
|
715 |
msgid "With the [wpp] shortcode:"
|
716 |
msgstr "Con el shortcode [wpp]:"
|
717 |
|
718 |
-
#: ../admin/partials/admin.php:
|
719 |
msgid "Set the opening tag for the heading of the list"
|
720 |
msgstr "Configura la etiqueta de apertura para el encabezado de la lista"
|
721 |
|
722 |
-
#: ../admin/partials/admin.php:
|
723 |
msgid "Set the closing tag for the heading of the list"
|
724 |
msgstr "Configura la etiqueta de cierre para el encabezado de la lista"
|
725 |
|
726 |
-
#: ../admin/partials/admin.php:
|
727 |
msgid "Sets the maximum number of popular posts to be shown on the listing"
|
728 |
msgstr ""
|
729 |
"Configura el máximo de entradas populares a ser mostradas en la lista"
|
730 |
|
731 |
-
#: ../admin/partials/admin.php:
|
732 |
-
#: ../admin/partials/admin.php:
|
733 |
-
#: ../admin/partials/admin.php:
|
734 |
msgid "Positive integer"
|
735 |
msgstr "Entero positivo"
|
736 |
|
737 |
-
#: ../admin/partials/admin.php:
|
738 |
msgid ""
|
739 |
"Tells WordPress Popular Posts to retrieve the most popular entries within "
|
740 |
"the time range specified by you"
|
@@ -742,17 +738,17 @@ msgstr ""
|
|
742 |
"Le indica a WordPress Popular Posts que debe listar aquellas entradas que "
|
743 |
"hayan sido populares dentro del rango de tiempo especificado por ti"
|
744 |
|
745 |
-
#: ../admin/partials/admin.php:
|
746 |
msgid "Especifies the number of time units of the custom time range"
|
747 |
msgstr ""
|
748 |
"Especifica el número de unidades de tiempo del rango de tiempo "
|
749 |
"personalizado"
|
750 |
|
751 |
-
#: ../admin/partials/admin.php:
|
752 |
msgid "Especifies the time unit of the custom time range"
|
753 |
msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado"
|
754 |
|
755 |
-
#: ../admin/partials/admin.php:
|
756 |
msgid ""
|
757 |
"Tells WordPress Popular Posts to retrieve the most popular entries published "
|
758 |
"within the time range specified by you"
|
@@ -760,19 +756,19 @@ msgstr ""
|
|
760 |
"Le indica a WordPress Popular Posts que debe listar aquellas entradas "
|
761 |
"populares publicadas dentro del rango de tiempo especificado por ti"
|
762 |
|
763 |
-
#: ../admin/partials/admin.php:
|
764 |
msgid "Sets the sorting option of the popular posts"
|
765 |
msgstr "Configura el ordenado de las entradas populares"
|
766 |
|
767 |
-
#: ../admin/partials/admin.php:
|
768 |
msgid "(for average views per day)"
|
769 |
msgstr "(para el porcentaje de vistas por día)"
|
770 |
|
771 |
-
#: ../admin/partials/admin.php:
|
772 |
msgid "Defines the type of posts to show on the listing"
|
773 |
msgstr "Define el tipo de entrada a mostrar en el listado"
|
774 |
|
775 |
-
#: ../admin/partials/admin.php:
|
776 |
msgid ""
|
777 |
"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
|
778 |
"form the listing."
|
@@ -780,7 +776,7 @@ msgstr ""
|
|
780 |
"Si se configura, WordPress Popular Posts excluirá todos los IDs de "
|
781 |
"las entradas especificadas."
|
782 |
|
783 |
-
#: ../admin/partials/admin.php:
|
784 |
msgid ""
|
785 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the "
|
786 |
"specified category ID(s). If a minus sign is used, entries associated to the "
|
@@ -791,13 +787,13 @@ msgstr ""
|
|
791 |
"signo negativo, las entradas asociadas a dicha categoría serán "
|
792 |
"excluídas."
|
793 |
|
794 |
-
#: ../admin/partials/admin.php:
|
795 |
msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
|
796 |
msgstr ""
|
797 |
"Si se tilda, WordPress Popular Posts filtrará entradas por la "
|
798 |
"taxonomía indicada."
|
799 |
|
800 |
-
#: ../admin/partials/admin.php:
|
801 |
msgid ""
|
802 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the "
|
803 |
"specified term ID(s). If a minus sign is used, entries associated to the "
|
@@ -807,7 +803,7 @@ msgstr ""
|
|
807 |
"que pertenecen al Term ID especificado(s). Si se usa un signo negativo, las "
|
808 |
"entradas asociadas a dicho term serán excluídas."
|
809 |
|
810 |
-
#: ../admin/partials/admin.php:
|
811 |
msgid ""
|
812 |
"If set, WordPress Popular Posts will retrieve all entries created by "
|
813 |
"specified author(s) ID(s)."
|
@@ -815,7 +811,7 @@ msgstr ""
|
|
815 |
"Si se configura, WordPress Popular Posts traerá todas las entradas "
|
816 |
"creadas por el (los) ID(s) de autor(es) especificado(s)."
|
817 |
|
818 |
-
#: ../admin/partials/admin.php:
|
819 |
msgid ""
|
820 |
"If set, WordPress Popular Posts will shorten each post title to \"n\" "
|
821 |
"characters whenever possible"
|
@@ -823,7 +819,7 @@ msgstr ""
|
|
823 |
"Si se configura, WordPress Popular Posts acortará cada titulo en \"n"
|
824 |
"\" caracteres cuando sea posible"
|
825 |
|
826 |
-
#: ../admin/partials/admin.php:
|
827 |
msgid ""
|
828 |
"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
|
829 |
"words instead of characters"
|
@@ -831,7 +827,7 @@ msgstr ""
|
|
831 |
"Si se pasa el valor 1, WordPress Popular Posts acortará cada titulo "
|
832 |
"en \"n\" palabras en vez de caracteres"
|
833 |
|
834 |
-
#: ../admin/partials/admin.php:
|
835 |
msgid ""
|
836 |
"If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
|
837 |
"characters long from the content of each post listed as popular"
|
@@ -840,7 +836,7 @@ msgstr ""
|
|
840 |
"un extracto de \"n\" caracteres del contenido de cada entrada listada como "
|
841 |
"popular"
|
842 |
|
843 |
-
#: ../admin/partials/admin.php:
|
844 |
msgid ""
|
845 |
"If set, WordPress Popular Posts will maintaing all styling tags (strong, "
|
846 |
"italic, etc) and hyperlinks found in the excerpt"
|
@@ -849,7 +845,7 @@ msgstr ""
|
|
849 |
"etiquetas de estilo (strong, italic, etc) y los hipervínculos "
|
850 |
"encontrados en el extracto"
|
851 |
|
852 |
-
#: ../admin/partials/admin.php:
|
853 |
msgid ""
|
854 |
"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
|
855 |
"instead of characters"
|
@@ -857,7 +853,7 @@ msgstr ""
|
|
857 |
"Si se configura, WordPress Popular Posts acortará el resumen en \"n\" "
|
858 |
"palabras en vez de caracteres"
|
859 |
|
860 |
-
#: ../admin/partials/admin.php:
|
861 |
msgid ""
|
862 |
"If set, and if your current server configuration allows it, you will be able "
|
863 |
"to display thumbnails of your posts. This attribute sets the width for "
|
@@ -867,7 +863,7 @@ msgstr ""
|
|
867 |
"permite, podrás mostrar miniaturas de tus entradas. Este atributo "
|
868 |
"configura el ancho de tus miniaturas"
|
869 |
|
870 |
-
#: ../admin/partials/admin.php:
|
871 |
msgid ""
|
872 |
"If set, and if your current server configuration allows it, you will be able "
|
873 |
"to display thumbnails of your posts. This attribute sets the height for "
|
@@ -877,7 +873,7 @@ msgstr ""
|
|
877 |
"permite, podrás mostrar miniaturas de tus entradas. Este atributo "
|
878 |
"configura el alto de tus miniaturas"
|
879 |
|
880 |
-
#: ../admin/partials/admin.php:
|
881 |
msgid ""
|
882 |
"If set, and if the WP-PostRatings plugin is installed and enabled on your "
|
883 |
"blog, WordPress Popular Posts will show how your visitors are rating your "
|
@@ -887,7 +883,7 @@ msgstr ""
|
|
887 |
"habilitado en tu blog, WordPress Popular Posts mostrará como tus "
|
888 |
"visitantes han calificado a tus entradas"
|
889 |
|
890 |
-
#: ../admin/partials/admin.php:
|
891 |
msgid ""
|
892 |
"If set, WordPress Popular Posts will show how many comments each popular "
|
893 |
"post has got during the specified time range"
|
@@ -896,7 +892,7 @@ msgstr ""
|
|
896 |
"comentarios ha obtenido cada entrada popular dentro del rango de tiempo "
|
897 |
"especificado"
|
898 |
|
899 |
-
#: ../admin/partials/admin.php:
|
900 |
msgid ""
|
901 |
"If set, WordPress Popular Posts will show how many views each popular post "
|
902 |
"has got during the specified time range"
|
@@ -905,7 +901,7 @@ msgstr ""
|
|
905 |
"vistas ha obtenido cada entrada popular dentro del rango de tiempo "
|
906 |
"especificado"
|
907 |
|
908 |
-
#: ../admin/partials/admin.php:
|
909 |
msgid ""
|
910 |
"If set, WordPress Popular Posts will show who published each popular post on "
|
911 |
"the list"
|
@@ -913,7 +909,7 @@ msgstr ""
|
|
913 |
"Si se configura, WordPress Popular Posts mostrará quién "
|
914 |
"publicó cada entrada popular de la lista"
|
915 |
|
916 |
-
#: ../admin/partials/admin.php:
|
917 |
msgid ""
|
918 |
"If set, WordPress Popular Posts will display the date when each popular post "
|
919 |
"on the list was published"
|
@@ -921,11 +917,11 @@ msgstr ""
|
|
921 |
"Si se tilda, WordPress Popular Posts mostrará la fecha en la que fue "
|
922 |
"publicada cada entrada popular"
|
923 |
|
924 |
-
#: ../admin/partials/admin.php:
|
925 |
msgid "Sets the date format"
|
926 |
msgstr "Configura el formato de la fecha"
|
927 |
|
928 |
-
#: ../admin/partials/admin.php:
|
929 |
msgid ""
|
930 |
"If set, WordPress Popular Posts will display the categories associated to "
|
931 |
"each entry"
|
@@ -933,7 +929,7 @@ msgstr ""
|
|
933 |
"Si se tilda, WordPress Popular Posts mostrará las categorías "
|
934 |
"asociadas a cada entrada"
|
935 |
|
936 |
-
#: ../admin/partials/admin.php:
|
937 |
msgid ""
|
938 |
"If set, WordPress Popular Posts will display the taxonomies associated to "
|
939 |
"each entry"
|
@@ -941,115 +937,119 @@ msgstr ""
|
|
941 |
"Si se tilda, WordPress Popular Posts mostrará las taxonomías "
|
942 |
"asociadas a cada entrada"
|
943 |
|
944 |
-
#: ../admin/partials/admin.php:
|
945 |
msgid "Sets the opening tag for the listing"
|
946 |
msgstr "Configura la etiqueta de apertura del listado"
|
947 |
|
948 |
-
#: ../admin/partials/admin.php:
|
949 |
msgid "Sets the closing tag for the listing"
|
950 |
msgstr "Configura la etiqueta de cierre del listado"
|
951 |
|
952 |
-
#: ../admin/partials/admin.php:
|
953 |
msgid "Sets the HTML structure of each post"
|
954 |
msgstr "Configura la estructura HTML de cada entrada"
|
955 |
|
956 |
-
#: ../admin/partials/admin.php:
|
957 |
msgid "Text string, custom HTML"
|
958 |
msgstr "Texto, HTML personalizado"
|
959 |
|
960 |
-
#: ../admin/partials/admin.php:
|
961 |
msgid "Available Content Tags"
|
962 |
msgstr "Content Tags disponibles"
|
963 |
|
964 |
-
#: ../admin/partials/admin.php:
|
965 |
msgid ""
|
966 |
-
"
|
967 |
"thumbnail_height"
|
968 |
msgstr ""
|
969 |
-
"
|
970 |
"thumbnail_width & thumbnail_height"
|
971 |
|
972 |
-
#: ../admin/partials/admin.php:
|
973 |
msgid ""
|
974 |
-
"
|
975 |
"thumbnail_width & thumbnail_height"
|
976 |
msgstr ""
|
977 |
-
"
|
978 |
"thumbnail_width & thumbnail_height"
|
979 |
|
980 |
-
#: ../admin/partials/admin.php:
|
981 |
-
msgid "
|
982 |
msgstr ""
|
983 |
-
"
|
984 |
|
985 |
-
#: ../admin/partials/admin.php:
|
986 |
-
msgid "
|
987 |
-
msgstr "
|
|
|
|
|
|
|
|
|
988 |
|
989 |
-
#: ../admin/partials/admin.php:
|
990 |
msgid ""
|
991 |
-
"
|
992 |
msgstr ""
|
993 |
-
"
|
994 |
"sea mayor a 0"
|
995 |
|
996 |
-
#: ../admin/partials/admin.php:
|
997 |
-
msgid "
|
998 |
-
msgstr "
|
999 |
|
1000 |
-
#: ../admin/partials/admin.php:
|
1001 |
msgid ""
|
1002 |
-
"
|
1003 |
"enabled"
|
1004 |
msgstr ""
|
1005 |
-
"
|
1006 |
"PostRatings esté instalado y activo"
|
1007 |
|
1008 |
-
#: ../admin/partials/admin.php:
|
1009 |
msgid ""
|
1010 |
-
"
|
1011 |
"installed and enabled"
|
1012 |
msgstr ""
|
1013 |
-
"
|
1014 |
"requiere que WP-PostRatings esté instalado y activo"
|
1015 |
|
1016 |
-
#: ../admin/partials/admin.php:
|
1017 |
-
msgid "
|
1018 |
-
msgstr "
|
1019 |
|
1020 |
-
#: ../admin/partials/admin.php:
|
1021 |
-
msgid "
|
1022 |
-
msgstr "
|
1023 |
|
1024 |
-
#: ../admin/partials/admin.php:
|
1025 |
-
msgid "
|
1026 |
-
msgstr "
|
1027 |
|
1028 |
-
#: ../admin/partials/admin.php:
|
1029 |
-
msgid "
|
1030 |
msgstr ""
|
1031 |
-
"
|
1032 |
"stats_category=1"
|
1033 |
|
1034 |
-
#: ../admin/partials/admin.php:
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
-
"
|
1038 |
"stats_taxonomy=1"
|
1039 |
|
1040 |
-
#: ../admin/partials/admin.php:
|
1041 |
-
msgid "
|
1042 |
-
msgstr "
|
1043 |
|
1044 |
-
#: ../admin/partials/admin.php:
|
1045 |
-
msgid "
|
1046 |
msgstr ""
|
1047 |
-
"
|
1048 |
"stats_comments=1"
|
1049 |
|
1050 |
-
#: ../admin/partials/admin.php:
|
1051 |
-
msgid "
|
1052 |
-
msgstr "
|
1053 |
|
1054 |
#: ../includes/class-wordpress-popular-posts-output.php:126
|
1055 |
msgid "Sorry. No data so far."
|
@@ -1091,7 +1091,7 @@ msgstr "bajo %s"
|
|
1091 |
msgid "The most Popular Posts on your blog."
|
1092 |
msgstr "Las entradas más populares en tu blog."
|
1093 |
|
1094 |
-
#: ../includes/class-wordpress-popular-posts-widget.php:
|
1095 |
#, php-format
|
1096 |
msgid ""
|
1097 |
"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
|
@@ -1102,7 +1102,7 @@ msgstr ""
|
|
1102 |
"el atributo <em>id</em> en before_widget (ver <a href=\"%s\" target=\"_blank"
|
1103 |
"\" rel=\"nofollow\">register_sidebar</a> para más detalles)"
|
1104 |
|
1105 |
-
#: ../includes/class-wordpress-popular-posts-widget.php:
|
1106 |
msgid "Loading..."
|
1107 |
msgstr "Cargando..."
|
1108 |
|
@@ -1292,6 +1292,9 @@ msgstr "Antes / después de las entradas populares"
|
|
1292 |
msgid "Post HTML Markup"
|
1293 |
msgstr "Markup HTML de la entrada"
|
1294 |
|
|
|
|
|
|
|
1295 |
#~ msgid "About WordPress Popular Posts %s"
|
1296 |
#~ msgstr "Acerca de WordPress Popular Posts %s"
|
1297 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WordPress Popular Posts\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
|
7 |
+
"POT-Creation-Date: 2017-10-23 17:47-0400\n"
|
8 |
+
"PO-Revision-Date: 2017-10-23 17:49-0400\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
|
11 |
"Language: es_VE\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 2.0.4\n"
|
17 |
"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;"
|
18 |
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
19 |
"esc_html_x;_c;_nc;_n:1,2\n"
|
71 |
|
72 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
73 |
#: ../admin/class-wordpress-popular-posts-admin.php:752
|
74 |
+
#: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458
|
75 |
#: ../includes/class-wordpress-popular-posts-output.php:720
|
76 |
#, php-format
|
77 |
msgid "1 view"
|
81 |
|
82 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
83 |
#: ../admin/class-wordpress-popular-posts-admin.php:807
|
84 |
+
#: ../admin/partials/admin.php:411 ../admin/partials/admin.php:458
|
85 |
#: ../includes/class-wordpress-popular-posts-output.php:701
|
86 |
#, php-format
|
87 |
msgid "1 comment"
|
100 |
|
101 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
102 |
#: ../admin/class-wordpress-popular-posts-admin.php:808
|
103 |
+
#: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459
|
104 |
msgid "View"
|
105 |
msgstr "Vista"
|
106 |
|
107 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
108 |
#: ../admin/class-wordpress-popular-posts-admin.php:808
|
109 |
+
#: ../admin/partials/admin.php:412 ../admin/partials/admin.php:459
|
110 |
msgid "Edit"
|
111 |
msgstr "Editar"
|
112 |
|
113 |
#: ../admin/class-wordpress-popular-posts-admin.php:764
|
114 |
#: ../admin/class-wordpress-popular-posts-admin.php:819
|
115 |
+
#: ../admin/partials/admin.php:423 ../admin/partials/admin.php:470
|
116 |
msgid ""
|
117 |
"Looks like traffic to your site is a little light right now. <br />Spread "
|
118 |
"the word and come back later!"
|
124 |
msgid "Settings"
|
125 |
msgstr "Configuración"
|
126 |
|
127 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1261
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
"Your PHP installation is too old. WordPress Popular Posts requires at least "
|
136 |
"contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o "
|
137 |
"mejor."
|
138 |
|
139 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1268
|
140 |
#, php-format
|
141 |
msgid ""
|
142 |
"Your WordPress version is too old. WordPress Popular Posts requires at least "
|
147 |
"Posts requiere al menos la versión %1$s para funcionar correctamente. "
|
148 |
"Por favor actualiza tu blog via Escritorio > Actualizaciones."
|
149 |
|
150 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1293
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
+
"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been "
|
154 |
+
"<strong>deactivated</strong>.</p></div>"
|
155 |
msgstr ""
|
156 |
+
"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> ha sido "
|
157 |
+
"<strong>desactivado</strong>.</p></div>"
|
158 |
+
|
159 |
+
#: ../admin/partials/admin.php:6 ../admin/partials/admin.php:255
|
160 |
+
msgid "Stats"
|
161 |
+
msgstr "Estadísticas"
|
162 |
+
|
163 |
+
#: ../admin/partials/admin.php:7 ../admin/partials/admin.php:256
|
164 |
+
msgid "Tools"
|
165 |
+
msgstr "Herramientas"
|
166 |
|
167 |
+
#: ../admin/partials/admin.php:8 ../admin/partials/admin.php:257
|
168 |
+
msgid "Parameters"
|
169 |
+
msgstr "Parámetros"
|
170 |
+
|
171 |
+
#: ../admin/partials/admin.php:33 ../admin/partials/admin.php:48
|
172 |
+
#: ../admin/partials/admin.php:72 ../admin/partials/admin.php:113
|
173 |
msgid "Settings saved."
|
174 |
msgstr "Configuración guardada."
|
175 |
|
176 |
+
#: ../admin/partials/admin.php:62
|
177 |
msgid "Please provide the name of your custom field."
|
178 |
msgstr "Por favor indica el nombre de tu custom field."
|
179 |
|
180 |
+
#: ../admin/partials/admin.php:121
|
181 |
msgid ""
|
182 |
"Any changes made to WPP's default stylesheet will be lost after every plugin "
|
183 |
"update. In order to prevent this from happening, please copy the wpp.css "
|
189 |
"favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-"
|
190 |
"popular-posts/style) a la carpeta de tu tema actual"
|
191 |
|
192 |
+
#: ../admin/partials/admin.php:136
|
193 |
msgid ""
|
194 |
"This operation will delete all entries from WordPress Popular Posts' cache "
|
195 |
"table and cannot be undone."
|
197 |
"Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de "
|
198 |
"WordPress Popular Posts y no se puede deshacer."
|
199 |
|
200 |
+
#: ../admin/partials/admin.php:136 ../admin/partials/admin.php:175
|
201 |
+
#: ../admin/partials/admin.php:214
|
202 |
msgid "Do you want to continue?"
|
203 |
msgstr "\\277Deseas continuar?"
|
204 |
|
205 |
+
#: ../admin/partials/admin.php:148
|
206 |
msgid "Success! The cache table has been cleared!"
|
207 |
msgstr "\\241\\311xito! \\241La tabla cach\\351 ha sido borrada!"
|
208 |
|
209 |
+
#: ../admin/partials/admin.php:152
|
210 |
msgid "Error: cache table does not exist."
|
211 |
msgstr "Error: la tabla cach\\351 no existe."
|
212 |
|
213 |
+
#: ../admin/partials/admin.php:156 ../admin/partials/admin.php:164
|
214 |
+
#: ../admin/partials/admin.php:195 ../admin/partials/admin.php:203
|
215 |
+
#: ../admin/partials/admin.php:233 ../admin/partials/admin.php:241
|
216 |
msgid "Invalid action."
|
217 |
msgstr "Acci\\363n inv\\311lida."
|
218 |
|
219 |
+
#: ../admin/partials/admin.php:160 ../admin/partials/admin.php:199
|
220 |
+
#: ../admin/partials/admin.php:237
|
221 |
msgid ""
|
222 |
"Sorry, you do not have enough permissions to do this. Please contact the "
|
223 |
"site administrator for support."
|
225 |
"Lo lamento, no tienes permisos suficientes para hacer esto. Por favor "
|
226 |
"contacta al administrador del sitio."
|
227 |
|
228 |
+
#: ../admin/partials/admin.php:175
|
229 |
msgid ""
|
230 |
"This operation will delete all stored info from WordPress Popular Posts' "
|
231 |
"data tables and cannot be undone."
|
233 |
"Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las "
|
234 |
"tablas de WordPress Popular Posts y no se puede deshacer."
|
235 |
|
236 |
+
#: ../admin/partials/admin.php:187
|
237 |
msgid "Success! All data have been cleared!"
|
238 |
msgstr "\\241\\311xito! \\241Toda la data ha sido borrada!"
|
239 |
|
240 |
+
#: ../admin/partials/admin.php:191
|
241 |
msgid "Error: one or both data tables are missing."
|
242 |
msgstr "Error: una o ambas tablas de datos no existen."
|
243 |
|
244 |
+
#: ../admin/partials/admin.php:214
|
245 |
msgid "This operation will delete all cached thumbnails and cannot be undone."
|
246 |
msgstr ""
|
247 |
"Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se "
|
248 |
"puede deshacer."
|
249 |
|
250 |
+
#: ../admin/partials/admin.php:225
|
251 |
msgid "Success! All files have been deleted!"
|
252 |
msgstr "\\241\\311xito! \\241Todos los archivos han sido borrados!"
|
253 |
|
254 |
+
#: ../admin/partials/admin.php:229
|
255 |
msgid "The thumbnail cache is already empty!"
|
256 |
msgstr "\\241El cach\\351 de miniaturas ya est\\341 vac\\355o!"
|
257 |
|
258 |
+
#: ../admin/partials/admin.php:254
|
259 |
msgid "Menu"
|
260 |
msgstr "Menú"
|
261 |
|
262 |
+
#: ../admin/partials/admin.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "Post type"
|
264 |
msgstr "Post type"
|
265 |
|
266 |
+
#: ../admin/partials/admin.php:285
|
267 |
msgid "Limit"
|
268 |
msgstr "Límite"
|
269 |
|
270 |
+
#: ../admin/partials/admin.php:288 ../includes/widget-form.php:48
|
271 |
msgid "Display only posts published within the selected Time Range"
|
272 |
msgstr ""
|
273 |
"Mostrar sólo entradas publicadas en el Rango de Tiempo seleccionado"
|
274 |
|
275 |
+
#: ../admin/partials/admin.php:294 ../admin/partials/admin.php:332
|
276 |
+
#: ../admin/partials/admin.php:551 ../admin/partials/admin.php:655
|
277 |
+
#: ../admin/partials/admin.php:694
|
278 |
msgid "Apply"
|
279 |
msgstr "Aplicar"
|
280 |
|
281 |
+
#: ../admin/partials/admin.php:295 ../admin/partials/admin.php:335
|
282 |
msgid "Cancel"
|
283 |
msgstr "Cancelar"
|
284 |
|
285 |
+
#: ../admin/partials/admin.php:308
|
286 |
msgid "Custom Time Range"
|
287 |
msgstr "Rango de Tiempo Personalizado"
|
288 |
|
289 |
+
#: ../admin/partials/admin.php:309
|
290 |
msgid "Date Range"
|
291 |
msgstr "Rango de Fechas"
|
292 |
|
293 |
+
#: ../admin/partials/admin.php:317 ../admin/partials/admin.php:621
|
294 |
#: ../includes/widget-form.php:41
|
295 |
msgid "Minute(s)"
|
296 |
msgstr "Minuto(s)"
|
297 |
|
298 |
+
#: ../admin/partials/admin.php:318 ../admin/partials/admin.php:622
|
299 |
#: ../includes/widget-form.php:42
|
300 |
msgid "Hour(s)"
|
301 |
msgstr "Hora(s)"
|
302 |
|
303 |
+
#: ../admin/partials/admin.php:319 ../admin/partials/admin.php:623
|
304 |
#: ../includes/widget-form.php:43
|
305 |
msgid "Day(s)"
|
306 |
msgstr "Día(s)"
|
307 |
|
308 |
+
#: ../admin/partials/admin.php:325
|
309 |
msgid "Select a date..."
|
310 |
msgstr "Selecciona una fecha..."
|
311 |
|
312 |
+
#: ../admin/partials/admin.php:354
|
313 |
#, php-format
|
314 |
msgid ""
|
315 |
"Err... A nice little chart is supposed to be here, instead you are seeing "
|
321 |
"anticuado.<br /> Por favor <a href=\"%s\" target=\"_blank\">instala un mejor "
|
322 |
"navegador</a>."
|
323 |
|
324 |
+
#: ../admin/partials/admin.php:480
|
325 |
msgid "Thumbnails"
|
326 |
msgstr "Miniaturas"
|
327 |
|
328 |
+
#: ../admin/partials/admin.php:485
|
329 |
msgid "Default thumbnail"
|
330 |
msgstr "Miniatura por defecto"
|
331 |
|
332 |
+
#: ../admin/partials/admin.php:490
|
333 |
msgid "Upload thumbnail"
|
334 |
msgstr "Subir miniatura"
|
335 |
|
336 |
+
#: ../admin/partials/admin.php:492
|
337 |
msgid ""
|
338 |
"How-to: upload (or select) an image, set Size to Full and click on Upload. "
|
339 |
"After it's done, hit on Apply to save changes"
|
341 |
"Tutorial: sube (o selecciona) una imagen, selecciona Tamaño Completo "
|
342 |
"y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios"
|
343 |
|
344 |
+
#: ../admin/partials/admin.php:496
|
345 |
msgid "Pick image from"
|
346 |
msgstr "Seleccionar imagen desde"
|
347 |
|
348 |
+
#: ../admin/partials/admin.php:499
|
349 |
msgid "Featured image"
|
350 |
msgstr "\tImagen destacada"
|
351 |
|
352 |
+
#: ../admin/partials/admin.php:500
|
353 |
msgid "First image on post"
|
354 |
msgstr "Primera imagen de la entrada"
|
355 |
|
356 |
+
#: ../admin/partials/admin.php:501
|
357 |
msgid "First attachment"
|
358 |
msgstr "Primer adjunto"
|
359 |
|
360 |
+
#: ../admin/partials/admin.php:502
|
361 |
msgid "Custom field"
|
362 |
msgstr "Custom field"
|
363 |
|
364 |
+
#: ../admin/partials/admin.php:505
|
365 |
msgid "Tell WordPress Popular Posts where it should get thumbnails from"
|
366 |
msgstr ""
|
367 |
"Dile a WordPress Popular Posts de dónde debe obtener las miniaturas"
|
368 |
|
369 |
+
#: ../admin/partials/admin.php:509
|
370 |
msgid "Custom field name"
|
371 |
msgstr "Nombre del custom field"
|
372 |
|
373 |
+
#: ../admin/partials/admin.php:515
|
374 |
msgid "Resize image from Custom field?"
|
375 |
msgstr "¡Ajustar la imagen del Custom field?"
|
376 |
|
377 |
+
#: ../admin/partials/admin.php:518
|
378 |
msgid "No, I will upload my own thumbnail"
|
379 |
msgstr "No, subiré mi propia miniatura"
|
380 |
|
381 |
+
#: ../admin/partials/admin.php:519
|
382 |
msgid "Yes"
|
383 |
msgstr "Sí"
|
384 |
|
385 |
+
#: ../admin/partials/admin.php:524
|
386 |
msgid "Responsive support"
|
387 |
msgstr "Soporte Responsive"
|
388 |
|
389 |
+
#: ../admin/partials/admin.php:527 ../admin/partials/admin.php:597
|
390 |
+
#: ../admin/partials/admin.php:637 ../admin/partials/admin.php:684
|
391 |
msgid "Enabled"
|
392 |
msgstr "Habilitado"
|
393 |
|
394 |
+
#: ../admin/partials/admin.php:528 ../admin/partials/admin.php:581
|
395 |
+
#: ../admin/partials/admin.php:596 ../admin/partials/admin.php:636
|
396 |
+
#: ../admin/partials/admin.php:685
|
397 |
msgid "Disabled"
|
398 |
msgstr "Deshabilitado"
|
399 |
|
400 |
+
#: ../admin/partials/admin.php:531
|
401 |
msgid ""
|
402 |
"If enabled, WordPress Popular Posts will strip height and width attributes "
|
403 |
"out of thumbnails' image tags"
|
405 |
"Si se activa, WordPress Popular Posts quitará los atributos height y "
|
406 |
"width de las etiquetas image de las miniaturas"
|
407 |
|
408 |
+
#: ../admin/partials/admin.php:541
|
409 |
msgid "Empty image cache"
|
410 |
msgstr "Vaciar el caché de imágenes"
|
411 |
|
412 |
+
#: ../admin/partials/admin.php:542
|
413 |
msgid "Use this button to clear WPP's thumbnails cache"
|
414 |
msgstr ""
|
415 |
"Utiliza este botón para vaciar el caché de miniaturas de WPP"
|
416 |
|
417 |
+
#: ../admin/partials/admin.php:562
|
418 |
msgid "Data"
|
419 |
msgstr "Datos"
|
420 |
|
421 |
+
#: ../admin/partials/admin.php:567
|
422 |
msgid "Log views from"
|
423 |
msgstr "Registrar vistas de"
|
424 |
|
425 |
+
#: ../admin/partials/admin.php:570
|
426 |
msgid "Visitors only"
|
427 |
msgstr "Sólo visitantes"
|
428 |
|
429 |
+
#: ../admin/partials/admin.php:571
|
430 |
msgid "Logged-in users only"
|
431 |
msgstr "Sólo usuarios conectados"
|
432 |
|
433 |
+
#: ../admin/partials/admin.php:572
|
434 |
msgid "Everyone"
|
435 |
msgstr "Todos"
|
436 |
|
437 |
+
#: ../admin/partials/admin.php:578
|
438 |
msgid "Log limit"
|
439 |
msgstr "Límite del registro"
|
440 |
|
441 |
+
#: ../admin/partials/admin.php:582
|
442 |
msgid "Keep data for"
|
443 |
msgstr "Guardar datos por"
|
444 |
|
445 |
+
#: ../admin/partials/admin.php:585
|
446 |
msgid "day(s)"
|
447 |
msgstr "día(s)"
|
448 |
|
449 |
+
#: ../admin/partials/admin.php:587
|
450 |
msgid ""
|
451 |
"Data older than the specified time frame will be automatically discarded"
|
452 |
msgstr ""
|
453 |
"La data que sea más antigua que el tiempo especificado serán "
|
454 |
"automáticamente descartada"
|
455 |
|
456 |
+
#: ../admin/partials/admin.php:593
|
457 |
msgid "Ajaxify widget"
|
458 |
msgstr "Usar Ajax con el widget"
|
459 |
|
460 |
+
#: ../admin/partials/admin.php:601
|
461 |
msgid ""
|
462 |
"If you are using a caching plugin such as WP Super Cache, enabling this "
|
463 |
"feature will keep the popular list from being cached by it"
|
466 |
"habilitar esta característica evitará que la lista de entradas "
|
467 |
"populares sea guardada en caché"
|
468 |
|
469 |
+
#: ../admin/partials/admin.php:605
|
470 |
msgid "WPP Cache Expiry Policy"
|
471 |
msgstr "WPP Política de Expiración del Cache"
|
472 |
|
473 |
+
#: ../admin/partials/admin.php:605 ../admin/partials/admin.php:633
|
474 |
#: ../includes/widget-form.php:3 ../includes/widget-form.php:50
|
475 |
#: ../includes/widget-form.php:56 ../includes/widget-form.php:75
|
476 |
#: ../includes/widget-form.php:85 ../includes/widget-form.php:177
|
477 |
msgid "What is this?"
|
478 |
msgstr "¿Qué es ésto?"
|
479 |
|
480 |
+
#: ../admin/partials/admin.php:608
|
481 |
msgid "Never cache"
|
482 |
msgstr "Nunca almacenar en caché"
|
483 |
|
484 |
+
#: ../admin/partials/admin.php:609
|
485 |
msgid "Enable caching"
|
486 |
msgstr "Habilitar caché"
|
487 |
|
488 |
+
#: ../admin/partials/admin.php:613
|
489 |
msgid ""
|
490 |
"Sets WPP's cache expiration time. WPP can cache the popular list for a "
|
491 |
"specified amount of time. Recommended for large / high traffic sites"
|
495 |
"de tiempo especificada. Recomendado para sitios web grandes / de alto "
|
496 |
"tráfico"
|
497 |
|
498 |
+
#: ../admin/partials/admin.php:617
|
499 |
msgid "Refresh cache every"
|
500 |
msgstr "Refrescar el caché cada"
|
501 |
|
502 |
+
#: ../admin/partials/admin.php:624
|
503 |
msgid "Week(s)"
|
504 |
msgstr "Semana(s)"
|
505 |
|
506 |
+
#: ../admin/partials/admin.php:625
|
507 |
msgid "Month(s)"
|
508 |
msgstr "Mes(es)"
|
509 |
|
510 |
+
#: ../admin/partials/admin.php:626
|
511 |
msgid "Year(s)"
|
512 |
msgstr "Año(s)"
|
513 |
|
514 |
+
#: ../admin/partials/admin.php:629
|
515 |
msgid "Really? That long?"
|
516 |
msgstr "¿En serio? ¿Tanto tiempo?"
|
517 |
|
518 |
+
#: ../admin/partials/admin.php:633
|
519 |
msgid "Data Sampling"
|
520 |
msgstr "Sampleo de Datos"
|
521 |
|
522 |
+
#: ../admin/partials/admin.php:641
|
523 |
#, php-format
|
524 |
msgid ""
|
525 |
"By default, WordPress Popular Posts stores in database every single visit "
|
540 |
"detectadas en ese conjunto de muestras (para más, <a href=\"%2$s\" "
|
541 |
"target=\"_blank\">por favor leer acá</a>)"
|
542 |
|
543 |
+
#: ../admin/partials/admin.php:645
|
544 |
msgid "Sample Rate"
|
545 |
msgstr "Rata de Sampleo"
|
546 |
|
547 |
+
#: ../admin/partials/admin.php:649
|
548 |
#, php-format
|
549 |
msgid ""
|
550 |
"A sampling rate of %d is recommended for large / high traffic sites. For "
|
554 |
"tráfico. Para sitios con menos tráfico, deberías "
|
555 |
"disminuir el valor"
|
556 |
|
557 |
+
#: ../admin/partials/admin.php:666
|
558 |
msgid "Miscellaneous"
|
559 |
msgstr "Misceláneos"
|
560 |
|
561 |
+
#: ../admin/partials/admin.php:671
|
562 |
msgid "Open links in"
|
563 |
msgstr "Abrir enlaces en"
|
564 |
|
565 |
+
#: ../admin/partials/admin.php:674
|
566 |
msgid "Current window"
|
567 |
msgstr "Ventana actual"
|
568 |
|
569 |
+
#: ../admin/partials/admin.php:675
|
570 |
msgid "New tab/window"
|
571 |
msgstr "Nueva pestaña/ventana"
|
572 |
|
573 |
+
#: ../admin/partials/admin.php:681
|
574 |
msgid "Use plugin's stylesheet"
|
575 |
msgstr "Utilizar la hoja de estilos del plugin"
|
576 |
|
577 |
+
#: ../admin/partials/admin.php:688
|
578 |
msgid ""
|
579 |
"By default, the plugin includes a stylesheet called wpp.css which you can "
|
580 |
"use to style your popular posts listing. If you wish to use your own "
|
586 |
"deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se "
|
587 |
"incluya en el header de tu sitio web, utiliza esto."
|
588 |
|
589 |
+
#: ../admin/partials/admin.php:707
|
590 |
msgid ""
|
591 |
"WordPress Popular Posts maintains data in two separate tables: one for "
|
592 |
"storing the most popular entries on a daily basis (from now on, \"cache\"), "
|
602 |
"tablas históricas y de caché, por favor utiliza los botones de "
|
603 |
"abajo."
|
604 |
|
605 |
+
#: ../admin/partials/admin.php:708
|
606 |
msgid "Empty cache"
|
607 |
msgstr "Vaciar el caché"
|
608 |
|
609 |
+
#: ../admin/partials/admin.php:708
|
610 |
msgid "Use this button to manually clear entries from WPP cache only"
|
611 |
msgstr ""
|
612 |
"Utiliza este botón para vaciar manualmente sólo las entradas "
|
613 |
"del caché de WPP"
|
614 |
|
615 |
+
#: ../admin/partials/admin.php:709
|
616 |
msgid "Clear all data"
|
617 |
msgstr "Eliminar toda la data"
|
618 |
|
619 |
+
#: ../admin/partials/admin.php:709
|
620 |
msgid "Use this button to manually clear entries from all WPP data tables"
|
621 |
msgstr ""
|
622 |
"Utiliza este botón para limpiar manualmente las tablas de datos de WPP"
|
623 |
|
624 |
+
#: ../admin/partials/admin.php:716
|
625 |
#, php-format
|
626 |
msgid ""
|
627 |
"With the following parameters you can customize the popular posts list when "
|
632 |
"entradas populares cuando utilices el <a href=\"%1$s\">template tag "
|
633 |
"wpp_get_mostpopular()</a> o el <a href=\"%2$s\">shortcode [wpp]</a>."
|
634 |
|
635 |
+
#: ../admin/partials/admin.php:724
|
636 |
msgid "Parameter"
|
637 |
msgstr "Parámetro"
|
638 |
|
639 |
+
#: ../admin/partials/admin.php:725
|
640 |
msgid "What it does "
|
641 |
msgstr "Qué hace"
|
642 |
|
643 |
+
#: ../admin/partials/admin.php:726
|
644 |
msgid "Possible values"
|
645 |
msgstr "Valores posibles"
|
646 |
|
647 |
+
#: ../admin/partials/admin.php:727
|
648 |
msgid "Defaults to"
|
649 |
msgstr "Por defecto"
|
650 |
|
651 |
+
#: ../admin/partials/admin.php:728
|
652 |
msgid "Example"
|
653 |
msgstr "Ejemplo"
|
654 |
|
655 |
+
#: ../admin/partials/admin.php:734
|
656 |
msgid "Sets a heading for the list"
|
657 |
msgstr "Configura el encabezado de la lista"
|
658 |
|
659 |
+
#: ../admin/partials/admin.php:735 ../admin/partials/admin.php:742
|
660 |
+
#: ../admin/partials/admin.php:749 ../admin/partials/admin.php:798
|
661 |
+
#: ../admin/partials/admin.php:805 ../admin/partials/admin.php:812
|
662 |
+
#: ../admin/partials/admin.php:819 ../admin/partials/admin.php:826
|
663 |
+
#: ../admin/partials/admin.php:833 ../admin/partials/admin.php:924
|
664 |
+
#: ../admin/partials/admin.php:945 ../admin/partials/admin.php:952
|
665 |
msgid "Text string"
|
666 |
msgstr "Texto"
|
667 |
|
668 |
+
#: ../admin/partials/admin.php:736 ../admin/partials/admin.php:806
|
669 |
+
#: ../admin/partials/admin.php:813 ../admin/partials/admin.php:820
|
670 |
+
#: ../admin/partials/admin.php:827 ../admin/partials/admin.php:834
|
671 |
msgid "None"
|
672 |
msgstr "Ninguno"
|
673 |
|
674 |
+
#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744
|
675 |
+
#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758
|
676 |
+
#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772
|
677 |
+
#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786
|
678 |
+
#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800
|
679 |
+
#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814
|
680 |
+
#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828
|
681 |
+
#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842
|
682 |
+
#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856
|
683 |
+
#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870
|
684 |
+
#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884
|
685 |
+
#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898
|
686 |
+
#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912
|
687 |
+
#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926
|
688 |
+
#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940
|
689 |
+
#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954
|
690 |
+
#: ../admin/partials/admin.php:961
|
691 |
msgid "With wpp_get_mostpopular():"
|
692 |
msgstr "Con wpp_get_mostpopular():"
|
693 |
|
694 |
+
#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744
|
695 |
+
#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758
|
696 |
+
#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772
|
697 |
+
#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786
|
698 |
+
#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800
|
699 |
+
#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814
|
700 |
+
#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828
|
701 |
+
#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842
|
702 |
+
#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856
|
703 |
+
#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870
|
704 |
+
#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884
|
705 |
+
#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898
|
706 |
+
#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912
|
707 |
+
#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926
|
708 |
+
#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940
|
709 |
+
#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954
|
710 |
+
#: ../admin/partials/admin.php:961
|
711 |
msgid "With the [wpp] shortcode:"
|
712 |
msgstr "Con el shortcode [wpp]:"
|
713 |
|
714 |
+
#: ../admin/partials/admin.php:741
|
715 |
msgid "Set the opening tag for the heading of the list"
|
716 |
msgstr "Configura la etiqueta de apertura para el encabezado de la lista"
|
717 |
|
718 |
+
#: ../admin/partials/admin.php:748
|
719 |
msgid "Set the closing tag for the heading of the list"
|
720 |
msgstr "Configura la etiqueta de cierre para el encabezado de la lista"
|
721 |
|
722 |
+
#: ../admin/partials/admin.php:755
|
723 |
msgid "Sets the maximum number of popular posts to be shown on the listing"
|
724 |
msgstr ""
|
725 |
"Configura el máximo de entradas populares a ser mostradas en la lista"
|
726 |
|
727 |
+
#: ../admin/partials/admin.php:756 ../admin/partials/admin.php:770
|
728 |
+
#: ../admin/partials/admin.php:840 ../admin/partials/admin.php:854
|
729 |
+
#: ../admin/partials/admin.php:875 ../admin/partials/admin.php:882
|
730 |
msgid "Positive integer"
|
731 |
msgstr "Entero positivo"
|
732 |
|
733 |
+
#: ../admin/partials/admin.php:762
|
734 |
msgid ""
|
735 |
"Tells WordPress Popular Posts to retrieve the most popular entries within "
|
736 |
"the time range specified by you"
|
738 |
"Le indica a WordPress Popular Posts que debe listar aquellas entradas que "
|
739 |
"hayan sido populares dentro del rango de tiempo especificado por ti"
|
740 |
|
741 |
+
#: ../admin/partials/admin.php:769
|
742 |
msgid "Especifies the number of time units of the custom time range"
|
743 |
msgstr ""
|
744 |
"Especifica el número de unidades de tiempo del rango de tiempo "
|
745 |
"personalizado"
|
746 |
|
747 |
+
#: ../admin/partials/admin.php:776
|
748 |
msgid "Especifies the time unit of the custom time range"
|
749 |
msgstr "Especifica la unidad de tiempo del rango de tiempo personalizado"
|
750 |
|
751 |
+
#: ../admin/partials/admin.php:783
|
752 |
msgid ""
|
753 |
"Tells WordPress Popular Posts to retrieve the most popular entries published "
|
754 |
"within the time range specified by you"
|
756 |
"Le indica a WordPress Popular Posts que debe listar aquellas entradas "
|
757 |
"populares publicadas dentro del rango de tiempo especificado por ti"
|
758 |
|
759 |
+
#: ../admin/partials/admin.php:790
|
760 |
msgid "Sets the sorting option of the popular posts"
|
761 |
msgstr "Configura el ordenado de las entradas populares"
|
762 |
|
763 |
+
#: ../admin/partials/admin.php:791
|
764 |
msgid "(for average views per day)"
|
765 |
msgstr "(para el porcentaje de vistas por día)"
|
766 |
|
767 |
+
#: ../admin/partials/admin.php:797
|
768 |
msgid "Defines the type of posts to show on the listing"
|
769 |
msgstr "Define el tipo de entrada a mostrar en el listado"
|
770 |
|
771 |
+
#: ../admin/partials/admin.php:804
|
772 |
msgid ""
|
773 |
"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
|
774 |
"form the listing."
|
776 |
"Si se configura, WordPress Popular Posts excluirá todos los IDs de "
|
777 |
"las entradas especificadas."
|
778 |
|
779 |
+
#: ../admin/partials/admin.php:811
|
780 |
msgid ""
|
781 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the "
|
782 |
"specified category ID(s). If a minus sign is used, entries associated to the "
|
787 |
"signo negativo, las entradas asociadas a dicha categoría serán "
|
788 |
"excluídas."
|
789 |
|
790 |
+
#: ../admin/partials/admin.php:818
|
791 |
msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
|
792 |
msgstr ""
|
793 |
"Si se tilda, WordPress Popular Posts filtrará entradas por la "
|
794 |
"taxonomía indicada."
|
795 |
|
796 |
+
#: ../admin/partials/admin.php:825
|
797 |
msgid ""
|
798 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the "
|
799 |
"specified term ID(s). If a minus sign is used, entries associated to the "
|
803 |
"que pertenecen al Term ID especificado(s). Si se usa un signo negativo, las "
|
804 |
"entradas asociadas a dicho term serán excluídas."
|
805 |
|
806 |
+
#: ../admin/partials/admin.php:832
|
807 |
msgid ""
|
808 |
"If set, WordPress Popular Posts will retrieve all entries created by "
|
809 |
"specified author(s) ID(s)."
|
811 |
"Si se configura, WordPress Popular Posts traerá todas las entradas "
|
812 |
"creadas por el (los) ID(s) de autor(es) especificado(s)."
|
813 |
|
814 |
+
#: ../admin/partials/admin.php:839
|
815 |
msgid ""
|
816 |
"If set, WordPress Popular Posts will shorten each post title to \"n\" "
|
817 |
"characters whenever possible"
|
819 |
"Si se configura, WordPress Popular Posts acortará cada titulo en \"n"
|
820 |
"\" caracteres cuando sea posible"
|
821 |
|
822 |
+
#: ../admin/partials/admin.php:846
|
823 |
msgid ""
|
824 |
"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
|
825 |
"words instead of characters"
|
827 |
"Si se pasa el valor 1, WordPress Popular Posts acortará cada titulo "
|
828 |
"en \"n\" palabras en vez de caracteres"
|
829 |
|
830 |
+
#: ../admin/partials/admin.php:853
|
831 |
msgid ""
|
832 |
"If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
|
833 |
"characters long from the content of each post listed as popular"
|
836 |
"un extracto de \"n\" caracteres del contenido de cada entrada listada como "
|
837 |
"popular"
|
838 |
|
839 |
+
#: ../admin/partials/admin.php:860
|
840 |
msgid ""
|
841 |
"If set, WordPress Popular Posts will maintaing all styling tags (strong, "
|
842 |
"italic, etc) and hyperlinks found in the excerpt"
|
845 |
"etiquetas de estilo (strong, italic, etc) y los hipervínculos "
|
846 |
"encontrados en el extracto"
|
847 |
|
848 |
+
#: ../admin/partials/admin.php:867
|
849 |
msgid ""
|
850 |
"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
|
851 |
"instead of characters"
|
853 |
"Si se configura, WordPress Popular Posts acortará el resumen en \"n\" "
|
854 |
"palabras en vez de caracteres"
|
855 |
|
856 |
+
#: ../admin/partials/admin.php:874
|
857 |
msgid ""
|
858 |
"If set, and if your current server configuration allows it, you will be able "
|
859 |
"to display thumbnails of your posts. This attribute sets the width for "
|
863 |
"permite, podrás mostrar miniaturas de tus entradas. Este atributo "
|
864 |
"configura el ancho de tus miniaturas"
|
865 |
|
866 |
+
#: ../admin/partials/admin.php:881
|
867 |
msgid ""
|
868 |
"If set, and if your current server configuration allows it, you will be able "
|
869 |
"to display thumbnails of your posts. This attribute sets the height for "
|
873 |
"permite, podrás mostrar miniaturas de tus entradas. Este atributo "
|
874 |
"configura el alto de tus miniaturas"
|
875 |
|
876 |
+
#: ../admin/partials/admin.php:888
|
877 |
msgid ""
|
878 |
"If set, and if the WP-PostRatings plugin is installed and enabled on your "
|
879 |
"blog, WordPress Popular Posts will show how your visitors are rating your "
|
883 |
"habilitado en tu blog, WordPress Popular Posts mostrará como tus "
|
884 |
"visitantes han calificado a tus entradas"
|
885 |
|
886 |
+
#: ../admin/partials/admin.php:895
|
887 |
msgid ""
|
888 |
"If set, WordPress Popular Posts will show how many comments each popular "
|
889 |
"post has got during the specified time range"
|
892 |
"comentarios ha obtenido cada entrada popular dentro del rango de tiempo "
|
893 |
"especificado"
|
894 |
|
895 |
+
#: ../admin/partials/admin.php:902
|
896 |
msgid ""
|
897 |
"If set, WordPress Popular Posts will show how many views each popular post "
|
898 |
"has got during the specified time range"
|
901 |
"vistas ha obtenido cada entrada popular dentro del rango de tiempo "
|
902 |
"especificado"
|
903 |
|
904 |
+
#: ../admin/partials/admin.php:909
|
905 |
msgid ""
|
906 |
"If set, WordPress Popular Posts will show who published each popular post on "
|
907 |
"the list"
|
909 |
"Si se configura, WordPress Popular Posts mostrará quién "
|
910 |
"publicó cada entrada popular de la lista"
|
911 |
|
912 |
+
#: ../admin/partials/admin.php:916
|
913 |
msgid ""
|
914 |
"If set, WordPress Popular Posts will display the date when each popular post "
|
915 |
"on the list was published"
|
917 |
"Si se tilda, WordPress Popular Posts mostrará la fecha en la que fue "
|
918 |
"publicada cada entrada popular"
|
919 |
|
920 |
+
#: ../admin/partials/admin.php:923
|
921 |
msgid "Sets the date format"
|
922 |
msgstr "Configura el formato de la fecha"
|
923 |
|
924 |
+
#: ../admin/partials/admin.php:930
|
925 |
msgid ""
|
926 |
"If set, WordPress Popular Posts will display the categories associated to "
|
927 |
"each entry"
|
929 |
"Si se tilda, WordPress Popular Posts mostrará las categorías "
|
930 |
"asociadas a cada entrada"
|
931 |
|
932 |
+
#: ../admin/partials/admin.php:937
|
933 |
msgid ""
|
934 |
"If set, WordPress Popular Posts will display the taxonomies associated to "
|
935 |
"each entry"
|
937 |
"Si se tilda, WordPress Popular Posts mostrará las taxonomías "
|
938 |
"asociadas a cada entrada"
|
939 |
|
940 |
+
#: ../admin/partials/admin.php:944
|
941 |
msgid "Sets the opening tag for the listing"
|
942 |
msgstr "Configura la etiqueta de apertura del listado"
|
943 |
|
944 |
+
#: ../admin/partials/admin.php:951
|
945 |
msgid "Sets the closing tag for the listing"
|
946 |
msgstr "Configura la etiqueta de cierre del listado"
|
947 |
|
948 |
+
#: ../admin/partials/admin.php:958
|
949 |
msgid "Sets the HTML structure of each post"
|
950 |
msgstr "Configura la estructura HTML de cada entrada"
|
951 |
|
952 |
+
#: ../admin/partials/admin.php:959
|
953 |
msgid "Text string, custom HTML"
|
954 |
msgstr "Texto, HTML personalizado"
|
955 |
|
956 |
+
#: ../admin/partials/admin.php:959
|
957 |
msgid "Available Content Tags"
|
958 |
msgstr "Content Tags disponibles"
|
959 |
|
960 |
+
#: ../admin/partials/admin.php:959
|
961 |
msgid ""
|
962 |
+
"returns thumbnail linked to post/page, requires thumbnail_width & "
|
963 |
"thumbnail_height"
|
964 |
msgstr ""
|
965 |
+
"devuelve la miniatura con un link hacia la entrada/página, requiere "
|
966 |
"thumbnail_width & thumbnail_height"
|
967 |
|
968 |
+
#: ../admin/partials/admin.php:959
|
969 |
msgid ""
|
970 |
+
"returns thumbnail image without linking to post/page, requires "
|
971 |
"thumbnail_width & thumbnail_height"
|
972 |
msgstr ""
|
973 |
+
"devuelve la miniatura sin link hacia la entrada/página, requiere "
|
974 |
"thumbnail_width & thumbnail_height"
|
975 |
|
976 |
+
#: ../admin/partials/admin.php:959
|
977 |
+
msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height"
|
978 |
msgstr ""
|
979 |
+
"devuelve la url de la miniatura, requires thumbnail_width & thumbnail_height"
|
980 |
|
981 |
+
#: ../admin/partials/admin.php:959
|
982 |
+
msgid "returns linked post/page title"
|
983 |
+
msgstr "devuelve el título de la entrada/página con enlace"
|
984 |
+
|
985 |
+
#: ../admin/partials/admin.php:959
|
986 |
+
msgid "returns the post/page ID"
|
987 |
+
msgstr "devuelve la URL de la entrada/página"
|
988 |
|
989 |
+
#: ../admin/partials/admin.php:959
|
990 |
msgid ""
|
991 |
+
"returns post/page excerpt, and requires excerpt_length to be greater than 0"
|
992 |
msgstr ""
|
993 |
+
"devuelve el resumen de la entrada/página, requiere que excerpt_length "
|
994 |
"sea mayor a 0"
|
995 |
|
996 |
+
#: ../admin/partials/admin.php:959
|
997 |
+
msgid "returns the default stats tags"
|
998 |
+
msgstr "devuelve el stats tag por defecto"
|
999 |
|
1000 |
+
#: ../admin/partials/admin.php:959
|
1001 |
msgid ""
|
1002 |
+
"returns post/page current rating, requires WP-PostRatings installed and "
|
1003 |
"enabled"
|
1004 |
msgstr ""
|
1005 |
+
"devuelve el rating actual de la entrada/página, requiere que WP-"
|
1006 |
"PostRatings esté instalado y activo"
|
1007 |
|
1008 |
+
#: ../admin/partials/admin.php:959
|
1009 |
msgid ""
|
1010 |
+
"returns post/page current rating as an integer, requires WP-PostRatings "
|
1011 |
"installed and enabled"
|
1012 |
msgstr ""
|
1013 |
+
"devuelve el rating actual de la entrada/página como un entero, "
|
1014 |
"requiere que WP-PostRatings esté instalado y activo"
|
1015 |
|
1016 |
+
#: ../admin/partials/admin.php:959
|
1017 |
+
msgid "returns the URL of the post/page"
|
1018 |
+
msgstr "devuelve la URL de la entrada/página"
|
1019 |
|
1020 |
+
#: ../admin/partials/admin.php:959
|
1021 |
+
msgid "returns post/page title, no link"
|
1022 |
+
msgstr "devuelve el título de la entrada/página, sin enlace"
|
1023 |
|
1024 |
+
#: ../admin/partials/admin.php:959
|
1025 |
+
msgid "returns linked author name, requires stats_author=1"
|
1026 |
+
msgstr "devuelve el nombre del autor con enlace, requiere stats_author=1"
|
1027 |
|
1028 |
+
#: ../admin/partials/admin.php:959
|
1029 |
+
msgid "returns linked category name, requires stats_category=1"
|
1030 |
msgstr ""
|
1031 |
+
"devuelve el nombre de la categoría con enlace, requiere "
|
1032 |
"stats_category=1"
|
1033 |
|
1034 |
+
#: ../admin/partials/admin.php:959
|
1035 |
+
msgid "returns linked taxonomy names, requires stats_taxonomy=1"
|
1036 |
msgstr ""
|
1037 |
+
"devuelve los nombres de las taxonomiías con enlace, requiere "
|
1038 |
"stats_taxonomy=1"
|
1039 |
|
1040 |
+
#: ../admin/partials/admin.php:959
|
1041 |
+
msgid "returns views count only, no text"
|
1042 |
+
msgstr "devuelve el número de vistas, sin texto adicional"
|
1043 |
|
1044 |
+
#: ../admin/partials/admin.php:959
|
1045 |
+
msgid "returns comments count only, no text, requires stats_comments=1"
|
1046 |
msgstr ""
|
1047 |
+
"devuelve el número de comentarios, sin texto adicional, requiere "
|
1048 |
"stats_comments=1"
|
1049 |
|
1050 |
+
#: ../admin/partials/admin.php:959
|
1051 |
+
msgid "returns post/page date, requires stats_date=1"
|
1052 |
+
msgstr "devuelve la fecha de la entrada/página, requiere stats_date=1"
|
1053 |
|
1054 |
#: ../includes/class-wordpress-popular-posts-output.php:126
|
1055 |
msgid "Sorry. No data so far."
|
1091 |
msgid "The most Popular Posts on your blog."
|
1092 |
msgstr "Las entradas más populares en tu blog."
|
1093 |
|
1094 |
+
#: ../includes/class-wordpress-popular-posts-widget.php:94
|
1095 |
#, php-format
|
1096 |
msgid ""
|
1097 |
"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
|
1102 |
"el atributo <em>id</em> en before_widget (ver <a href=\"%s\" target=\"_blank"
|
1103 |
"\" rel=\"nofollow\">register_sidebar</a> para más detalles)"
|
1104 |
|
1105 |
+
#: ../includes/class-wordpress-popular-posts-widget.php:105
|
1106 |
msgid "Loading..."
|
1107 |
msgstr "Cargando..."
|
1108 |
|
1292 |
msgid "Post HTML Markup"
|
1293 |
msgstr "Markup HTML de la entrada"
|
1294 |
|
1295 |
+
#~ msgid "About"
|
1296 |
+
#~ msgstr "Acerca de"
|
1297 |
+
|
1298 |
#~ msgid "About WordPress Popular Posts %s"
|
1299 |
#~ msgstr "Acerca de WordPress Popular Posts %s"
|
1300 |
|
languages/wordpress-popular-posts.pot
CHANGED
@@ -5,7 +5,7 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: WordPress Popular Posts\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
|
8 |
-
"POT-Creation-Date: 2017-
|
9 |
"PO-Revision-Date: 2015-04-24 13:30-0430\n"
|
10 |
"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
|
11 |
"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"X-Generator: Poedit 2.0.
|
18 |
"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;_nx_noop;_ex;"
|
19 |
"esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc;_n:1,2\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
@@ -58,8 +58,8 @@ msgid ""
|
|
58 |
msgstr ""
|
59 |
|
60 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
61 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:752 ../admin/partials/admin.php:
|
62 |
-
#: ../admin/partials/admin.php:
|
63 |
#: ../includes/class-wordpress-popular-posts-output.php:720
|
64 |
#, php-format
|
65 |
msgid "1 view"
|
@@ -68,8 +68,8 @@ msgstr[0] ""
|
|
68 |
msgstr[1] ""
|
69 |
|
70 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
71 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:807 ../admin/partials/admin.php:
|
72 |
-
#: ../admin/partials/admin.php:
|
73 |
#: ../includes/class-wordpress-popular-posts-output.php:701
|
74 |
#, php-format
|
75 |
msgid "1 comment"
|
@@ -86,20 +86,20 @@ msgid "Views"
|
|
86 |
msgstr ""
|
87 |
|
88 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
89 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:808 ../admin/partials/admin.php:
|
90 |
-
#: ../admin/partials/admin.php:
|
91 |
msgid "View"
|
92 |
msgstr ""
|
93 |
|
94 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
95 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:808 ../admin/partials/admin.php:
|
96 |
-
#: ../admin/partials/admin.php:
|
97 |
msgid "Edit"
|
98 |
msgstr ""
|
99 |
|
100 |
#: ../admin/class-wordpress-popular-posts-admin.php:764
|
101 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:819 ../admin/partials/admin.php:
|
102 |
-
#: ../admin/partials/admin.php:
|
103 |
msgid ""
|
104 |
"Looks like traffic to your site is a little light right now. <br />Spread the word and "
|
105 |
"come back later!"
|
@@ -109,7 +109,7 @@ msgstr ""
|
|
109 |
msgid "Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
113 |
#, php-format
|
114 |
msgid ""
|
115 |
"Your PHP installation is too old. WordPress Popular Posts requires at least PHP "
|
@@ -117,164 +117,160 @@ msgid ""
|
|
117 |
"to upgrade PHP to %1$s or higher."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
121 |
#, php-format
|
122 |
msgid ""
|
123 |
"Your WordPress version is too old. WordPress Popular Posts requires at least WordPress "
|
124 |
"version %1$s to function correctly. Please update your blog via Dashboard > Update."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: ../admin/class-wordpress-popular-posts-admin.php:
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
-
"<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been
|
131 |
-
"p></div>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../admin/partials/admin.php:
|
135 |
-
|
|
|
|
|
|
|
|
|
136 |
msgid "Settings saved."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../admin/partials/admin.php:
|
140 |
msgid "Please provide the name of your custom field."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../admin/partials/admin.php:
|
144 |
msgid ""
|
145 |
"Any changes made to WPP's default stylesheet will be lost after every plugin update. "
|
146 |
"In order to prevent this from happening, please copy the wpp.css file (located at wp-"
|
147 |
"content/plugins/wordpress-popular-posts/style) into your theme's directory"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../admin/partials/admin.php:
|
151 |
msgid ""
|
152 |
"This operation will delete all entries from WordPress Popular Posts' cache table and "
|
153 |
"cannot be undone."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../admin/partials/admin.php:
|
157 |
-
#: ../admin/partials/admin.php:
|
158 |
msgid "Do you want to continue?"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../admin/partials/admin.php:
|
162 |
msgid "Success! The cache table has been cleared!"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../admin/partials/admin.php:
|
166 |
msgid "Error: cache table does not exist."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../admin/partials/admin.php:
|
170 |
-
#: ../admin/partials/admin.php:
|
171 |
-
#: ../admin/partials/admin.php:
|
172 |
msgid "Invalid action."
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: ../admin/partials/admin.php:
|
176 |
-
#: ../admin/partials/admin.php:
|
177 |
msgid ""
|
178 |
"Sorry, you do not have enough permissions to do this. Please contact the site "
|
179 |
"administrator for support."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../admin/partials/admin.php:
|
183 |
msgid ""
|
184 |
"This operation will delete all stored info from WordPress Popular Posts' data tables "
|
185 |
"and cannot be undone."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: ../admin/partials/admin.php:
|
189 |
msgid "Success! All data have been cleared!"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ../admin/partials/admin.php:
|
193 |
msgid "Error: one or both data tables are missing."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../admin/partials/admin.php:
|
197 |
msgid "This operation will delete all cached thumbnails and cannot be undone."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../admin/partials/admin.php:
|
201 |
msgid "Success! All files have been deleted!"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../admin/partials/admin.php:
|
205 |
msgid "The thumbnail cache is already empty!"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../admin/partials/admin.php:
|
209 |
msgid "Menu"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../admin/partials/admin.php:
|
213 |
-
msgid "Stats"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: ../admin/partials/admin.php:249 ../admin/partials/admin.php:257
|
217 |
-
msgid "Tools"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: ../admin/partials/admin.php:250 ../admin/partials/admin.php:258
|
221 |
-
msgid "Parameters"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: ../admin/partials/admin.php:259
|
225 |
-
msgid "About"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: ../admin/partials/admin.php:283
|
229 |
msgid "Post type"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../admin/partials/admin.php:
|
233 |
msgid "Limit"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../admin/partials/admin.php:
|
237 |
msgid "Display only posts published within the selected Time Range"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ../admin/partials/admin.php:
|
241 |
-
#: ../admin/partials/admin.php:
|
242 |
-
#: ../admin/partials/admin.php:
|
243 |
msgid "Apply"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../admin/partials/admin.php:
|
247 |
msgid "Cancel"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../admin/partials/admin.php:
|
251 |
msgid "Custom Time Range"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../admin/partials/admin.php:
|
255 |
msgid "Date Range"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../admin/partials/admin.php:
|
259 |
#: ../includes/widget-form.php:41
|
260 |
msgid "Minute(s)"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../admin/partials/admin.php:
|
264 |
#: ../includes/widget-form.php:42
|
265 |
msgid "Hour(s)"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: ../admin/partials/admin.php:
|
269 |
#: ../includes/widget-form.php:43
|
270 |
msgid "Day(s)"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ../admin/partials/admin.php:
|
274 |
msgid "Select a date..."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../admin/partials/admin.php:
|
278 |
#, php-format
|
279 |
msgid ""
|
280 |
"Err... A nice little chart is supposed to be here, instead you are seeing this because "
|
@@ -282,189 +278,189 @@ msgid ""
|
|
282 |
"browser</a>."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../admin/partials/admin.php:
|
286 |
msgid "Thumbnails"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../admin/partials/admin.php:
|
290 |
msgid "Default thumbnail"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../admin/partials/admin.php:
|
294 |
msgid "Upload thumbnail"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../admin/partials/admin.php:
|
298 |
msgid ""
|
299 |
"How-to: upload (or select) an image, set Size to Full and click on Upload. After it's "
|
300 |
"done, hit on Apply to save changes"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../admin/partials/admin.php:
|
304 |
msgid "Pick image from"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../admin/partials/admin.php:
|
308 |
msgid "Featured image"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../admin/partials/admin.php:
|
312 |
msgid "First image on post"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../admin/partials/admin.php:
|
316 |
msgid "First attachment"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../admin/partials/admin.php:
|
320 |
msgid "Custom field"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../admin/partials/admin.php:
|
324 |
msgid "Tell WordPress Popular Posts where it should get thumbnails from"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../admin/partials/admin.php:
|
328 |
msgid "Custom field name"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../admin/partials/admin.php:
|
332 |
msgid "Resize image from Custom field?"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../admin/partials/admin.php:
|
336 |
msgid "No, I will upload my own thumbnail"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../admin/partials/admin.php:
|
340 |
msgid "Yes"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: ../admin/partials/admin.php:
|
344 |
msgid "Responsive support"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: ../admin/partials/admin.php:
|
348 |
-
#: ../admin/partials/admin.php:
|
349 |
msgid "Enabled"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: ../admin/partials/admin.php:
|
353 |
-
#: ../admin/partials/admin.php:
|
354 |
-
#: ../admin/partials/admin.php:
|
355 |
msgid "Disabled"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../admin/partials/admin.php:
|
359 |
msgid ""
|
360 |
"If enabled, WordPress Popular Posts will strip height and width attributes out of "
|
361 |
"thumbnails' image tags"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: ../admin/partials/admin.php:
|
365 |
msgid "Empty image cache"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../admin/partials/admin.php:
|
369 |
msgid "Use this button to clear WPP's thumbnails cache"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../admin/partials/admin.php:
|
373 |
msgid "Data"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ../admin/partials/admin.php:
|
377 |
msgid "Log views from"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: ../admin/partials/admin.php:
|
381 |
msgid "Visitors only"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: ../admin/partials/admin.php:
|
385 |
msgid "Logged-in users only"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../admin/partials/admin.php:
|
389 |
msgid "Everyone"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../admin/partials/admin.php:
|
393 |
msgid "Log limit"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../admin/partials/admin.php:
|
397 |
msgid "Keep data for"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../admin/partials/admin.php:
|
401 |
msgid "day(s)"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../admin/partials/admin.php:
|
405 |
msgid "Data older than the specified time frame will be automatically discarded"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../admin/partials/admin.php:
|
409 |
msgid "Ajaxify widget"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: ../admin/partials/admin.php:
|
413 |
msgid ""
|
414 |
"If you are using a caching plugin such as WP Super Cache, enabling this feature will "
|
415 |
"keep the popular list from being cached by it"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../admin/partials/admin.php:
|
419 |
msgid "WPP Cache Expiry Policy"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../admin/partials/admin.php:
|
423 |
#: ../includes/widget-form.php:3 ../includes/widget-form.php:50
|
424 |
#: ../includes/widget-form.php:56 ../includes/widget-form.php:75
|
425 |
#: ../includes/widget-form.php:85 ../includes/widget-form.php:177
|
426 |
msgid "What is this?"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: ../admin/partials/admin.php:
|
430 |
msgid "Never cache"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: ../admin/partials/admin.php:
|
434 |
msgid "Enable caching"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: ../admin/partials/admin.php:
|
438 |
msgid ""
|
439 |
"Sets WPP's cache expiration time. WPP can cache the popular list for a specified "
|
440 |
"amount of time. Recommended for large / high traffic sites"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: ../admin/partials/admin.php:
|
444 |
msgid "Refresh cache every"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../admin/partials/admin.php:
|
448 |
msgid "Week(s)"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: ../admin/partials/admin.php:
|
452 |
msgid "Month(s)"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: ../admin/partials/admin.php:
|
456 |
msgid "Year(s)"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../admin/partials/admin.php:
|
460 |
msgid "Really? That long?"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../admin/partials/admin.php:
|
464 |
msgid "Data Sampling"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../admin/partials/admin.php:
|
468 |
#, php-format
|
469 |
msgid ""
|
470 |
"By default, WordPress Popular Posts stores in database every single visit your site "
|
@@ -475,45 +471,45 @@ msgid ""
|
|
475 |
"(for more, <a href=\"%2$s\" target=\"_blank\">please read here</a>)"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: ../admin/partials/admin.php:
|
479 |
msgid "Sample Rate"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../admin/partials/admin.php:
|
483 |
#, php-format
|
484 |
msgid ""
|
485 |
"A sampling rate of %d is recommended for large / high traffic sites. For lower traffic "
|
486 |
"sites, you should lower the value"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../admin/partials/admin.php:
|
490 |
msgid "Miscellaneous"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../admin/partials/admin.php:
|
494 |
msgid "Open links in"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../admin/partials/admin.php:
|
498 |
msgid "Current window"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../admin/partials/admin.php:
|
502 |
msgid "New tab/window"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../admin/partials/admin.php:
|
506 |
msgid "Use plugin's stylesheet"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../admin/partials/admin.php:
|
510 |
msgid ""
|
511 |
"By default, the plugin includes a stylesheet called wpp.css which you can use to style "
|
512 |
"your popular posts listing. If you wish to use your own stylesheet or do not want it "
|
513 |
"to have it included in the header section of your site, use this."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../admin/partials/admin.php:
|
517 |
msgid ""
|
518 |
"WordPress Popular Posts maintains data in two separate tables: one for storing the "
|
519 |
"most popular entries on a daily basis (from now on, \"cache\"), and another one to "
|
@@ -522,23 +518,23 @@ msgid ""
|
|
522 |
"tables, please use the buttons below to do so."
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../admin/partials/admin.php:
|
526 |
msgid "Empty cache"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../admin/partials/admin.php:
|
530 |
msgid "Use this button to manually clear entries from WPP cache only"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../admin/partials/admin.php:
|
534 |
msgid "Clear all data"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../admin/partials/admin.php:
|
538 |
msgid "Use this button to manually clear entries from all WPP data tables"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../admin/partials/admin.php:
|
542 |
#, php-format
|
543 |
msgid ""
|
544 |
"With the following parameters you can customize the popular posts list when using "
|
@@ -546,337 +542,341 @@ msgid ""
|
|
546 |
"\"%2$s\">[wpp] shortcode</a>."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../admin/partials/admin.php:
|
550 |
msgid "Parameter"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../admin/partials/admin.php:
|
554 |
msgid "What it does "
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../admin/partials/admin.php:
|
558 |
msgid "Possible values"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../admin/partials/admin.php:
|
562 |
msgid "Defaults to"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../admin/partials/admin.php:
|
566 |
msgid "Example"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../admin/partials/admin.php:
|
570 |
msgid "Sets a heading for the list"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../admin/partials/admin.php:
|
574 |
-
#: ../admin/partials/admin.php:
|
575 |
-
#: ../admin/partials/admin.php:
|
576 |
-
#: ../admin/partials/admin.php:
|
577 |
-
#: ../admin/partials/admin.php:
|
578 |
-
#: ../admin/partials/admin.php:
|
579 |
msgid "Text string"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: ../admin/partials/admin.php:
|
583 |
-
#: ../admin/partials/admin.php:
|
584 |
-
#: ../admin/partials/admin.php:
|
585 |
msgid "None"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../admin/partials/admin.php:
|
589 |
-
#: ../admin/partials/admin.php:
|
590 |
-
#: ../admin/partials/admin.php:
|
591 |
-
#: ../admin/partials/admin.php:
|
592 |
-
#: ../admin/partials/admin.php:
|
593 |
-
#: ../admin/partials/admin.php:
|
594 |
-
#: ../admin/partials/admin.php:
|
595 |
-
#: ../admin/partials/admin.php:
|
596 |
-
#: ../admin/partials/admin.php:
|
597 |
-
#: ../admin/partials/admin.php:
|
598 |
-
#: ../admin/partials/admin.php:
|
599 |
-
#: ../admin/partials/admin.php:
|
600 |
-
#: ../admin/partials/admin.php:
|
601 |
-
#: ../admin/partials/admin.php:
|
602 |
-
#: ../admin/partials/admin.php:
|
603 |
-
#: ../admin/partials/admin.php:
|
604 |
-
#: ../admin/partials/admin.php:
|
605 |
msgid "With wpp_get_mostpopular():"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../admin/partials/admin.php:
|
609 |
-
#: ../admin/partials/admin.php:
|
610 |
-
#: ../admin/partials/admin.php:
|
611 |
-
#: ../admin/partials/admin.php:
|
612 |
-
#: ../admin/partials/admin.php:
|
613 |
-
#: ../admin/partials/admin.php:
|
614 |
-
#: ../admin/partials/admin.php:
|
615 |
-
#: ../admin/partials/admin.php:
|
616 |
-
#: ../admin/partials/admin.php:
|
617 |
-
#: ../admin/partials/admin.php:
|
618 |
-
#: ../admin/partials/admin.php:
|
619 |
-
#: ../admin/partials/admin.php:
|
620 |
-
#: ../admin/partials/admin.php:
|
621 |
-
#: ../admin/partials/admin.php:
|
622 |
-
#: ../admin/partials/admin.php:
|
623 |
-
#: ../admin/partials/admin.php:
|
624 |
-
#: ../admin/partials/admin.php:
|
625 |
msgid "With the [wpp] shortcode:"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../admin/partials/admin.php:
|
629 |
msgid "Set the opening tag for the heading of the list"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../admin/partials/admin.php:
|
633 |
msgid "Set the closing tag for the heading of the list"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../admin/partials/admin.php:
|
637 |
msgid "Sets the maximum number of popular posts to be shown on the listing"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../admin/partials/admin.php:
|
641 |
-
#: ../admin/partials/admin.php:
|
642 |
-
#: ../admin/partials/admin.php:
|
643 |
msgid "Positive integer"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../admin/partials/admin.php:
|
647 |
msgid ""
|
648 |
"Tells WordPress Popular Posts to retrieve the most popular entries within the time "
|
649 |
"range specified by you"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../admin/partials/admin.php:
|
653 |
msgid "Especifies the number of time units of the custom time range"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../admin/partials/admin.php:
|
657 |
msgid "Especifies the time unit of the custom time range"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../admin/partials/admin.php:
|
661 |
msgid ""
|
662 |
"Tells WordPress Popular Posts to retrieve the most popular entries published within "
|
663 |
"the time range specified by you"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../admin/partials/admin.php:
|
667 |
msgid "Sets the sorting option of the popular posts"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: ../admin/partials/admin.php:
|
671 |
msgid "(for average views per day)"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: ../admin/partials/admin.php:
|
675 |
msgid "Defines the type of posts to show on the listing"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: ../admin/partials/admin.php:
|
679 |
msgid ""
|
680 |
"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the "
|
681 |
"listing."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../admin/partials/admin.php:
|
685 |
msgid ""
|
686 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
|
687 |
"category ID(s). If a minus sign is used, entries associated to the category will be "
|
688 |
"excluded instead."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../admin/partials/admin.php:
|
692 |
msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../admin/partials/admin.php:
|
696 |
msgid ""
|
697 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
|
698 |
"term ID(s). If a minus sign is used, entries associated to the term(s) will be "
|
699 |
"excluded instead."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: ../admin/partials/admin.php:
|
703 |
msgid ""
|
704 |
"If set, WordPress Popular Posts will retrieve all entries created by specified "
|
705 |
"author(s) ID(s)."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: ../admin/partials/admin.php:
|
709 |
msgid ""
|
710 |
"If set, WordPress Popular Posts will shorten each post title to \"n\" characters "
|
711 |
"whenever possible"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: ../admin/partials/admin.php:
|
715 |
msgid ""
|
716 |
"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" words "
|
717 |
"instead of characters"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../admin/partials/admin.php:
|
721 |
msgid ""
|
722 |
"If set, WordPress Popular Posts will build and include an excerpt of \"n\" characters "
|
723 |
"long from the content of each post listed as popular"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../admin/partials/admin.php:
|
727 |
msgid ""
|
728 |
"If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) "
|
729 |
"and hyperlinks found in the excerpt"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: ../admin/partials/admin.php:
|
733 |
msgid ""
|
734 |
"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words instead "
|
735 |
"of characters"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../admin/partials/admin.php:
|
739 |
msgid ""
|
740 |
"If set, and if your current server configuration allows it, you will be able to "
|
741 |
"display thumbnails of your posts. This attribute sets the width for thumbnails"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: ../admin/partials/admin.php:
|
745 |
msgid ""
|
746 |
"If set, and if your current server configuration allows it, you will be able to "
|
747 |
"display thumbnails of your posts. This attribute sets the height for thumbnails"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: ../admin/partials/admin.php:
|
751 |
msgid ""
|
752 |
"If set, and if the WP-PostRatings plugin is installed and enabled on your blog, "
|
753 |
"WordPress Popular Posts will show how your visitors are rating your entries"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: ../admin/partials/admin.php:
|
757 |
msgid ""
|
758 |
"If set, WordPress Popular Posts will show how many comments each popular post has got "
|
759 |
"during the specified time range"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../admin/partials/admin.php:
|
763 |
msgid ""
|
764 |
"If set, WordPress Popular Posts will show how many views each popular post has got "
|
765 |
"during the specified time range"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: ../admin/partials/admin.php:
|
769 |
msgid ""
|
770 |
"If set, WordPress Popular Posts will show who published each popular post on the list"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../admin/partials/admin.php:
|
774 |
msgid ""
|
775 |
"If set, WordPress Popular Posts will display the date when each popular post on the "
|
776 |
"list was published"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../admin/partials/admin.php:
|
780 |
msgid "Sets the date format"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../admin/partials/admin.php:
|
784 |
msgid ""
|
785 |
"If set, WordPress Popular Posts will display the categories associated to each entry"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: ../admin/partials/admin.php:
|
789 |
msgid ""
|
790 |
"If set, WordPress Popular Posts will display the taxonomies associated to each entry"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: ../admin/partials/admin.php:
|
794 |
msgid "Sets the opening tag for the listing"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: ../admin/partials/admin.php:
|
798 |
msgid "Sets the closing tag for the listing"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: ../admin/partials/admin.php:
|
802 |
msgid "Sets the HTML structure of each post"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: ../admin/partials/admin.php:
|
806 |
msgid "Text string, custom HTML"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: ../admin/partials/admin.php:
|
810 |
msgid "Available Content Tags"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: ../admin/partials/admin.php:
|
814 |
msgid ""
|
815 |
-
"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../admin/partials/admin.php:
|
819 |
msgid ""
|
820 |
-
"
|
821 |
"thumbnail_height"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: ../admin/partials/admin.php:
|
825 |
-
msgid "
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../admin/partials/admin.php:
|
829 |
-
msgid "
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: ../admin/partials/admin.php:
|
833 |
-
msgid "
|
|
|
|
|
|
|
|
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../admin/partials/admin.php:
|
837 |
-
msgid "
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../admin/partials/admin.php:
|
841 |
-
msgid "
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: ../admin/partials/admin.php:
|
845 |
msgid ""
|
846 |
-
"
|
847 |
"enabled"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../admin/partials/admin.php:
|
851 |
-
msgid "
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: ../admin/partials/admin.php:
|
855 |
-
msgid "
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: ../admin/partials/admin.php:
|
859 |
-
msgid "
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: ../admin/partials/admin.php:
|
863 |
-
msgid "
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../admin/partials/admin.php:
|
867 |
-
msgid "
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: ../admin/partials/admin.php:
|
871 |
-
msgid "
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../admin/partials/admin.php:
|
875 |
-
msgid "
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../admin/partials/admin.php:
|
879 |
-
msgid "
|
880 |
msgstr ""
|
881 |
|
882 |
#: ../includes/class-wordpress-popular-posts-output.php:126
|
@@ -919,7 +919,7 @@ msgstr ""
|
|
919 |
msgid "The most Popular Posts on your blog."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../includes/class-wordpress-popular-posts-widget.php:
|
923 |
#, php-format
|
924 |
msgid ""
|
925 |
"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing the <em>id</"
|
@@ -927,7 +927,7 @@ msgid ""
|
|
927 |
"\">register_sidebar</a> for more)"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../includes/class-wordpress-popular-posts-widget.php:
|
931 |
msgid "Loading..."
|
932 |
msgstr ""
|
933 |
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: WordPress Popular Posts\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
|
8 |
+
"POT-Creation-Date: 2017-10-23 17:44-0400\n"
|
9 |
"PO-Revision-Date: 2015-04-24 13:30-0430\n"
|
10 |
"Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
|
11 |
"Language-Team: Héctor Cabrera <me@cabrerahector.com>\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
"X-Generator: Poedit 2.0.4\n"
|
18 |
"X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;_nx_noop;_ex;"
|
19 |
"esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc;_n:1,2\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
58 |
msgstr ""
|
59 |
|
60 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
61 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:752 ../admin/partials/admin.php:411
|
62 |
+
#: ../admin/partials/admin.php:458
|
63 |
#: ../includes/class-wordpress-popular-posts-output.php:720
|
64 |
#, php-format
|
65 |
msgid "1 view"
|
68 |
msgstr[1] ""
|
69 |
|
70 |
#: ../admin/class-wordpress-popular-posts-admin.php:633
|
71 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:807 ../admin/partials/admin.php:411
|
72 |
+
#: ../admin/partials/admin.php:458
|
73 |
#: ../includes/class-wordpress-popular-posts-output.php:701
|
74 |
#, php-format
|
75 |
msgid "1 comment"
|
86 |
msgstr ""
|
87 |
|
88 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
89 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:808 ../admin/partials/admin.php:412
|
90 |
+
#: ../admin/partials/admin.php:459
|
91 |
msgid "View"
|
92 |
msgstr ""
|
93 |
|
94 |
#: ../admin/class-wordpress-popular-posts-admin.php:753
|
95 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:808 ../admin/partials/admin.php:412
|
96 |
+
#: ../admin/partials/admin.php:459
|
97 |
msgid "Edit"
|
98 |
msgstr ""
|
99 |
|
100 |
#: ../admin/class-wordpress-popular-posts-admin.php:764
|
101 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:819 ../admin/partials/admin.php:423
|
102 |
+
#: ../admin/partials/admin.php:470
|
103 |
msgid ""
|
104 |
"Looks like traffic to your site is a little light right now. <br />Spread the word and "
|
105 |
"come back later!"
|
109 |
msgid "Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1261
|
113 |
#, php-format
|
114 |
msgid ""
|
115 |
"Your PHP installation is too old. WordPress Popular Posts requires at least PHP "
|
117 |
"to upgrade PHP to %1$s or higher."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1268
|
121 |
#, php-format
|
122 |
msgid ""
|
123 |
"Your WordPress version is too old. WordPress Popular Posts requires at least WordPress "
|
124 |
"version %1$s to function correctly. Please update your blog via Dashboard > Update."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../admin/class-wordpress-popular-posts-admin.php:1293
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
+
"<div class=\"notice notice-error\"><p>%1$s</p><p><i>%2$s</i> has been "
|
131 |
+
"<strong>deactivated</strong>.</p></div>"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: ../admin/partials/admin.php:6 ../admin/partials/admin.php:255
|
135 |
+
msgid "Stats"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: ../admin/partials/admin.php:7 ../admin/partials/admin.php:256
|
139 |
+
msgid "Tools"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../admin/partials/admin.php:8 ../admin/partials/admin.php:257
|
143 |
+
msgid "Parameters"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: ../admin/partials/admin.php:33 ../admin/partials/admin.php:48
|
147 |
+
#: ../admin/partials/admin.php:72 ../admin/partials/admin.php:113
|
148 |
msgid "Settings saved."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../admin/partials/admin.php:62
|
152 |
msgid "Please provide the name of your custom field."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../admin/partials/admin.php:121
|
156 |
msgid ""
|
157 |
"Any changes made to WPP's default stylesheet will be lost after every plugin update. "
|
158 |
"In order to prevent this from happening, please copy the wpp.css file (located at wp-"
|
159 |
"content/plugins/wordpress-popular-posts/style) into your theme's directory"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../admin/partials/admin.php:136
|
163 |
msgid ""
|
164 |
"This operation will delete all entries from WordPress Popular Posts' cache table and "
|
165 |
"cannot be undone."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../admin/partials/admin.php:136 ../admin/partials/admin.php:175
|
169 |
+
#: ../admin/partials/admin.php:214
|
170 |
msgid "Do you want to continue?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../admin/partials/admin.php:148
|
174 |
msgid "Success! The cache table has been cleared!"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../admin/partials/admin.php:152
|
178 |
msgid "Error: cache table does not exist."
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../admin/partials/admin.php:156 ../admin/partials/admin.php:164
|
182 |
+
#: ../admin/partials/admin.php:195 ../admin/partials/admin.php:203
|
183 |
+
#: ../admin/partials/admin.php:233 ../admin/partials/admin.php:241
|
184 |
msgid "Invalid action."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../admin/partials/admin.php:160 ../admin/partials/admin.php:199
|
188 |
+
#: ../admin/partials/admin.php:237
|
189 |
msgid ""
|
190 |
"Sorry, you do not have enough permissions to do this. Please contact the site "
|
191 |
"administrator for support."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../admin/partials/admin.php:175
|
195 |
msgid ""
|
196 |
"This operation will delete all stored info from WordPress Popular Posts' data tables "
|
197 |
"and cannot be undone."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../admin/partials/admin.php:187
|
201 |
msgid "Success! All data have been cleared!"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../admin/partials/admin.php:191
|
205 |
msgid "Error: one or both data tables are missing."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ../admin/partials/admin.php:214
|
209 |
msgid "This operation will delete all cached thumbnails and cannot be undone."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../admin/partials/admin.php:225
|
213 |
msgid "Success! All files have been deleted!"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../admin/partials/admin.php:229
|
217 |
msgid "The thumbnail cache is already empty!"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../admin/partials/admin.php:254
|
221 |
msgid "Menu"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../admin/partials/admin.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
msgid "Post type"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../admin/partials/admin.php:285
|
229 |
msgid "Limit"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../admin/partials/admin.php:288 ../includes/widget-form.php:48
|
233 |
msgid "Display only posts published within the selected Time Range"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../admin/partials/admin.php:294 ../admin/partials/admin.php:332
|
237 |
+
#: ../admin/partials/admin.php:551 ../admin/partials/admin.php:655
|
238 |
+
#: ../admin/partials/admin.php:694
|
239 |
msgid "Apply"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../admin/partials/admin.php:295 ../admin/partials/admin.php:335
|
243 |
msgid "Cancel"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../admin/partials/admin.php:308
|
247 |
msgid "Custom Time Range"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../admin/partials/admin.php:309
|
251 |
msgid "Date Range"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../admin/partials/admin.php:317 ../admin/partials/admin.php:621
|
255 |
#: ../includes/widget-form.php:41
|
256 |
msgid "Minute(s)"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../admin/partials/admin.php:318 ../admin/partials/admin.php:622
|
260 |
#: ../includes/widget-form.php:42
|
261 |
msgid "Hour(s)"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../admin/partials/admin.php:319 ../admin/partials/admin.php:623
|
265 |
#: ../includes/widget-form.php:43
|
266 |
msgid "Day(s)"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../admin/partials/admin.php:325
|
270 |
msgid "Select a date..."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../admin/partials/admin.php:354
|
274 |
#, php-format
|
275 |
msgid ""
|
276 |
"Err... A nice little chart is supposed to be here, instead you are seeing this because "
|
278 |
"browser</a>."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../admin/partials/admin.php:480
|
282 |
msgid "Thumbnails"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../admin/partials/admin.php:485
|
286 |
msgid "Default thumbnail"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../admin/partials/admin.php:490
|
290 |
msgid "Upload thumbnail"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../admin/partials/admin.php:492
|
294 |
msgid ""
|
295 |
"How-to: upload (or select) an image, set Size to Full and click on Upload. After it's "
|
296 |
"done, hit on Apply to save changes"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../admin/partials/admin.php:496
|
300 |
msgid "Pick image from"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../admin/partials/admin.php:499
|
304 |
msgid "Featured image"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../admin/partials/admin.php:500
|
308 |
msgid "First image on post"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../admin/partials/admin.php:501
|
312 |
msgid "First attachment"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../admin/partials/admin.php:502
|
316 |
msgid "Custom field"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../admin/partials/admin.php:505
|
320 |
msgid "Tell WordPress Popular Posts where it should get thumbnails from"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../admin/partials/admin.php:509
|
324 |
msgid "Custom field name"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../admin/partials/admin.php:515
|
328 |
msgid "Resize image from Custom field?"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../admin/partials/admin.php:518
|
332 |
msgid "No, I will upload my own thumbnail"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../admin/partials/admin.php:519
|
336 |
msgid "Yes"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../admin/partials/admin.php:524
|
340 |
msgid "Responsive support"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../admin/partials/admin.php:527 ../admin/partials/admin.php:597
|
344 |
+
#: ../admin/partials/admin.php:637 ../admin/partials/admin.php:684
|
345 |
msgid "Enabled"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../admin/partials/admin.php:528 ../admin/partials/admin.php:581
|
349 |
+
#: ../admin/partials/admin.php:596 ../admin/partials/admin.php:636
|
350 |
+
#: ../admin/partials/admin.php:685
|
351 |
msgid "Disabled"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: ../admin/partials/admin.php:531
|
355 |
msgid ""
|
356 |
"If enabled, WordPress Popular Posts will strip height and width attributes out of "
|
357 |
"thumbnails' image tags"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../admin/partials/admin.php:541
|
361 |
msgid "Empty image cache"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../admin/partials/admin.php:542
|
365 |
msgid "Use this button to clear WPP's thumbnails cache"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../admin/partials/admin.php:562
|
369 |
msgid "Data"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../admin/partials/admin.php:567
|
373 |
msgid "Log views from"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../admin/partials/admin.php:570
|
377 |
msgid "Visitors only"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../admin/partials/admin.php:571
|
381 |
msgid "Logged-in users only"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: ../admin/partials/admin.php:572
|
385 |
msgid "Everyone"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ../admin/partials/admin.php:578
|
389 |
msgid "Log limit"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ../admin/partials/admin.php:582
|
393 |
msgid "Keep data for"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../admin/partials/admin.php:585
|
397 |
msgid "day(s)"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../admin/partials/admin.php:587
|
401 |
msgid "Data older than the specified time frame will be automatically discarded"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../admin/partials/admin.php:593
|
405 |
msgid "Ajaxify widget"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../admin/partials/admin.php:601
|
409 |
msgid ""
|
410 |
"If you are using a caching plugin such as WP Super Cache, enabling this feature will "
|
411 |
"keep the popular list from being cached by it"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: ../admin/partials/admin.php:605
|
415 |
msgid "WPP Cache Expiry Policy"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../admin/partials/admin.php:605 ../admin/partials/admin.php:633
|
419 |
#: ../includes/widget-form.php:3 ../includes/widget-form.php:50
|
420 |
#: ../includes/widget-form.php:56 ../includes/widget-form.php:75
|
421 |
#: ../includes/widget-form.php:85 ../includes/widget-form.php:177
|
422 |
msgid "What is this?"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../admin/partials/admin.php:608
|
426 |
msgid "Never cache"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../admin/partials/admin.php:609
|
430 |
msgid "Enable caching"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../admin/partials/admin.php:613
|
434 |
msgid ""
|
435 |
"Sets WPP's cache expiration time. WPP can cache the popular list for a specified "
|
436 |
"amount of time. Recommended for large / high traffic sites"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../admin/partials/admin.php:617
|
440 |
msgid "Refresh cache every"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../admin/partials/admin.php:624
|
444 |
msgid "Week(s)"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../admin/partials/admin.php:625
|
448 |
msgid "Month(s)"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../admin/partials/admin.php:626
|
452 |
msgid "Year(s)"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../admin/partials/admin.php:629
|
456 |
msgid "Really? That long?"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: ../admin/partials/admin.php:633
|
460 |
msgid "Data Sampling"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../admin/partials/admin.php:641
|
464 |
#, php-format
|
465 |
msgid ""
|
466 |
"By default, WordPress Popular Posts stores in database every single visit your site "
|
471 |
"(for more, <a href=\"%2$s\" target=\"_blank\">please read here</a>)"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: ../admin/partials/admin.php:645
|
475 |
msgid "Sample Rate"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: ../admin/partials/admin.php:649
|
479 |
#, php-format
|
480 |
msgid ""
|
481 |
"A sampling rate of %d is recommended for large / high traffic sites. For lower traffic "
|
482 |
"sites, you should lower the value"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../admin/partials/admin.php:666
|
486 |
msgid "Miscellaneous"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../admin/partials/admin.php:671
|
490 |
msgid "Open links in"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../admin/partials/admin.php:674
|
494 |
msgid "Current window"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../admin/partials/admin.php:675
|
498 |
msgid "New tab/window"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../admin/partials/admin.php:681
|
502 |
msgid "Use plugin's stylesheet"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../admin/partials/admin.php:688
|
506 |
msgid ""
|
507 |
"By default, the plugin includes a stylesheet called wpp.css which you can use to style "
|
508 |
"your popular posts listing. If you wish to use your own stylesheet or do not want it "
|
509 |
"to have it included in the header section of your site, use this."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../admin/partials/admin.php:707
|
513 |
msgid ""
|
514 |
"WordPress Popular Posts maintains data in two separate tables: one for storing the "
|
515 |
"most popular entries on a daily basis (from now on, \"cache\"), and another one to "
|
518 |
"tables, please use the buttons below to do so."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../admin/partials/admin.php:708
|
522 |
msgid "Empty cache"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../admin/partials/admin.php:708
|
526 |
msgid "Use this button to manually clear entries from WPP cache only"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../admin/partials/admin.php:709
|
530 |
msgid "Clear all data"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../admin/partials/admin.php:709
|
534 |
msgid "Use this button to manually clear entries from all WPP data tables"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../admin/partials/admin.php:716
|
538 |
#, php-format
|
539 |
msgid ""
|
540 |
"With the following parameters you can customize the popular posts list when using "
|
542 |
"\"%2$s\">[wpp] shortcode</a>."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../admin/partials/admin.php:724
|
546 |
msgid "Parameter"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../admin/partials/admin.php:725
|
550 |
msgid "What it does "
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../admin/partials/admin.php:726
|
554 |
msgid "Possible values"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../admin/partials/admin.php:727
|
558 |
msgid "Defaults to"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../admin/partials/admin.php:728
|
562 |
msgid "Example"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../admin/partials/admin.php:734
|
566 |
msgid "Sets a heading for the list"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../admin/partials/admin.php:735 ../admin/partials/admin.php:742
|
570 |
+
#: ../admin/partials/admin.php:749 ../admin/partials/admin.php:798
|
571 |
+
#: ../admin/partials/admin.php:805 ../admin/partials/admin.php:812
|
572 |
+
#: ../admin/partials/admin.php:819 ../admin/partials/admin.php:826
|
573 |
+
#: ../admin/partials/admin.php:833 ../admin/partials/admin.php:924
|
574 |
+
#: ../admin/partials/admin.php:945 ../admin/partials/admin.php:952
|
575 |
msgid "Text string"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../admin/partials/admin.php:736 ../admin/partials/admin.php:806
|
579 |
+
#: ../admin/partials/admin.php:813 ../admin/partials/admin.php:820
|
580 |
+
#: ../admin/partials/admin.php:827 ../admin/partials/admin.php:834
|
581 |
msgid "None"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744
|
585 |
+
#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758
|
586 |
+
#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772
|
587 |
+
#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786
|
588 |
+
#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800
|
589 |
+
#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814
|
590 |
+
#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828
|
591 |
+
#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842
|
592 |
+
#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856
|
593 |
+
#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870
|
594 |
+
#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884
|
595 |
+
#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898
|
596 |
+
#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912
|
597 |
+
#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926
|
598 |
+
#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940
|
599 |
+
#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954
|
600 |
+
#: ../admin/partials/admin.php:961
|
601 |
msgid "With wpp_get_mostpopular():"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../admin/partials/admin.php:737 ../admin/partials/admin.php:744
|
605 |
+
#: ../admin/partials/admin.php:751 ../admin/partials/admin.php:758
|
606 |
+
#: ../admin/partials/admin.php:765 ../admin/partials/admin.php:772
|
607 |
+
#: ../admin/partials/admin.php:779 ../admin/partials/admin.php:786
|
608 |
+
#: ../admin/partials/admin.php:793 ../admin/partials/admin.php:800
|
609 |
+
#: ../admin/partials/admin.php:807 ../admin/partials/admin.php:814
|
610 |
+
#: ../admin/partials/admin.php:821 ../admin/partials/admin.php:828
|
611 |
+
#: ../admin/partials/admin.php:835 ../admin/partials/admin.php:842
|
612 |
+
#: ../admin/partials/admin.php:849 ../admin/partials/admin.php:856
|
613 |
+
#: ../admin/partials/admin.php:863 ../admin/partials/admin.php:870
|
614 |
+
#: ../admin/partials/admin.php:877 ../admin/partials/admin.php:884
|
615 |
+
#: ../admin/partials/admin.php:891 ../admin/partials/admin.php:898
|
616 |
+
#: ../admin/partials/admin.php:905 ../admin/partials/admin.php:912
|
617 |
+
#: ../admin/partials/admin.php:919 ../admin/partials/admin.php:926
|
618 |
+
#: ../admin/partials/admin.php:933 ../admin/partials/admin.php:940
|
619 |
+
#: ../admin/partials/admin.php:947 ../admin/partials/admin.php:954
|
620 |
+
#: ../admin/partials/admin.php:961
|
621 |
msgid "With the [wpp] shortcode:"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../admin/partials/admin.php:741
|
625 |
msgid "Set the opening tag for the heading of the list"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../admin/partials/admin.php:748
|
629 |
msgid "Set the closing tag for the heading of the list"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../admin/partials/admin.php:755
|
633 |
msgid "Sets the maximum number of popular posts to be shown on the listing"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../admin/partials/admin.php:756 ../admin/partials/admin.php:770
|
637 |
+
#: ../admin/partials/admin.php:840 ../admin/partials/admin.php:854
|
638 |
+
#: ../admin/partials/admin.php:875 ../admin/partials/admin.php:882
|
639 |
msgid "Positive integer"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: ../admin/partials/admin.php:762
|
643 |
msgid ""
|
644 |
"Tells WordPress Popular Posts to retrieve the most popular entries within the time "
|
645 |
"range specified by you"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../admin/partials/admin.php:769
|
649 |
msgid "Especifies the number of time units of the custom time range"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../admin/partials/admin.php:776
|
653 |
msgid "Especifies the time unit of the custom time range"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../admin/partials/admin.php:783
|
657 |
msgid ""
|
658 |
"Tells WordPress Popular Posts to retrieve the most popular entries published within "
|
659 |
"the time range specified by you"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: ../admin/partials/admin.php:790
|
663 |
msgid "Sets the sorting option of the popular posts"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: ../admin/partials/admin.php:791
|
667 |
msgid "(for average views per day)"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: ../admin/partials/admin.php:797
|
671 |
msgid "Defines the type of posts to show on the listing"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: ../admin/partials/admin.php:804
|
675 |
msgid ""
|
676 |
"If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the "
|
677 |
"listing."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../admin/partials/admin.php:811
|
681 |
msgid ""
|
682 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
|
683 |
"category ID(s). If a minus sign is used, entries associated to the category will be "
|
684 |
"excluded instead."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: ../admin/partials/admin.php:818
|
688 |
msgid "If set, WordPress Popular Posts will filter posts by a given taxonomy."
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../admin/partials/admin.php:825
|
692 |
msgid ""
|
693 |
"If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
|
694 |
"term ID(s). If a minus sign is used, entries associated to the term(s) will be "
|
695 |
"excluded instead."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../admin/partials/admin.php:832
|
699 |
msgid ""
|
700 |
"If set, WordPress Popular Posts will retrieve all entries created by specified "
|
701 |
"author(s) ID(s)."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../admin/partials/admin.php:839
|
705 |
msgid ""
|
706 |
"If set, WordPress Popular Posts will shorten each post title to \"n\" characters "
|
707 |
"whenever possible"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: ../admin/partials/admin.php:846
|
711 |
msgid ""
|
712 |
"If set to 1, WordPress Popular Posts will shorten each post title to \"n\" words "
|
713 |
"instead of characters"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: ../admin/partials/admin.php:853
|
717 |
msgid ""
|
718 |
"If set, WordPress Popular Posts will build and include an excerpt of \"n\" characters "
|
719 |
"long from the content of each post listed as popular"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: ../admin/partials/admin.php:860
|
723 |
msgid ""
|
724 |
"If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) "
|
725 |
"and hyperlinks found in the excerpt"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../admin/partials/admin.php:867
|
729 |
msgid ""
|
730 |
"If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words instead "
|
731 |
"of characters"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../admin/partials/admin.php:874
|
735 |
msgid ""
|
736 |
"If set, and if your current server configuration allows it, you will be able to "
|
737 |
"display thumbnails of your posts. This attribute sets the width for thumbnails"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: ../admin/partials/admin.php:881
|
741 |
msgid ""
|
742 |
"If set, and if your current server configuration allows it, you will be able to "
|
743 |
"display thumbnails of your posts. This attribute sets the height for thumbnails"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: ../admin/partials/admin.php:888
|
747 |
msgid ""
|
748 |
"If set, and if the WP-PostRatings plugin is installed and enabled on your blog, "
|
749 |
"WordPress Popular Posts will show how your visitors are rating your entries"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../admin/partials/admin.php:895
|
753 |
msgid ""
|
754 |
"If set, WordPress Popular Posts will show how many comments each popular post has got "
|
755 |
"during the specified time range"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../admin/partials/admin.php:902
|
759 |
msgid ""
|
760 |
"If set, WordPress Popular Posts will show how many views each popular post has got "
|
761 |
"during the specified time range"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../admin/partials/admin.php:909
|
765 |
msgid ""
|
766 |
"If set, WordPress Popular Posts will show who published each popular post on the list"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../admin/partials/admin.php:916
|
770 |
msgid ""
|
771 |
"If set, WordPress Popular Posts will display the date when each popular post on the "
|
772 |
"list was published"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: ../admin/partials/admin.php:923
|
776 |
msgid "Sets the date format"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: ../admin/partials/admin.php:930
|
780 |
msgid ""
|
781 |
"If set, WordPress Popular Posts will display the categories associated to each entry"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: ../admin/partials/admin.php:937
|
785 |
msgid ""
|
786 |
"If set, WordPress Popular Posts will display the taxonomies associated to each entry"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../admin/partials/admin.php:944
|
790 |
msgid "Sets the opening tag for the listing"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../admin/partials/admin.php:951
|
794 |
msgid "Sets the closing tag for the listing"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../admin/partials/admin.php:958
|
798 |
msgid "Sets the HTML structure of each post"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../admin/partials/admin.php:959
|
802 |
msgid "Text string, custom HTML"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../admin/partials/admin.php:959
|
806 |
msgid "Available Content Tags"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../admin/partials/admin.php:959
|
810 |
msgid ""
|
811 |
+
"returns thumbnail linked to post/page, requires thumbnail_width & thumbnail_height"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../admin/partials/admin.php:959
|
815 |
msgid ""
|
816 |
+
"returns thumbnail image without linking to post/page, requires thumbnail_width & "
|
817 |
"thumbnail_height"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: ../admin/partials/admin.php:959
|
821 |
+
msgid "returns thumbnail url, requires thumbnail_width & thumbnail_height"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: ../admin/partials/admin.php:959
|
825 |
+
msgid "returns linked post/page title"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../admin/partials/admin.php:959
|
829 |
+
msgid "returns the post/page ID"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: ../admin/partials/admin.php:959
|
833 |
+
msgid "returns post/page excerpt, and requires excerpt_length to be greater than 0"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../admin/partials/admin.php:959
|
837 |
+
msgid "returns the default stats tags"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../admin/partials/admin.php:959
|
841 |
+
msgid "returns post/page current rating, requires WP-PostRatings installed and enabled"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: ../admin/partials/admin.php:959
|
845 |
msgid ""
|
846 |
+
"returns post/page current rating as an integer, requires WP-PostRatings installed and "
|
847 |
"enabled"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: ../admin/partials/admin.php:959
|
851 |
+
msgid "returns the URL of the post/page"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: ../admin/partials/admin.php:959
|
855 |
+
msgid "returns post/page title, no link"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: ../admin/partials/admin.php:959
|
859 |
+
msgid "returns linked author name, requires stats_author=1"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: ../admin/partials/admin.php:959
|
863 |
+
msgid "returns linked category name, requires stats_category=1"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: ../admin/partials/admin.php:959
|
867 |
+
msgid "returns linked taxonomy names, requires stats_taxonomy=1"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: ../admin/partials/admin.php:959
|
871 |
+
msgid "returns views count only, no text"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: ../admin/partials/admin.php:959
|
875 |
+
msgid "returns comments count only, no text, requires stats_comments=1"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: ../admin/partials/admin.php:959
|
879 |
+
msgid "returns post/page date, requires stats_date=1"
|
880 |
msgstr ""
|
881 |
|
882 |
#: ../includes/class-wordpress-popular-posts-output.php:126
|
919 |
msgid "The most Popular Posts on your blog."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../includes/class-wordpress-popular-posts-widget.php:94
|
923 |
#, php-format
|
924 |
msgid ""
|
925 |
"Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing the <em>id</"
|
927 |
"\">register_sidebar</a> for more)"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: ../includes/class-wordpress-popular-posts-widget.php:105
|
931 |
msgid "Loading..."
|
932 |
msgstr ""
|
933 |
|
public/class-wordpress-popular-posts-public.php
CHANGED
@@ -446,24 +446,28 @@ class WPP_Public {
|
|
446 |
$time = 60 * 60 * 24 * 365;
|
447 |
break;
|
448 |
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
// Store transient in WPP transients array for garbage collection
|
455 |
-
$wpp_transients = get_option('wpp_transients');
|
456 |
-
|
457 |
-
if ( !$wpp_transients ) {
|
458 |
-
$wpp_transients = array( $transient_name );
|
459 |
-
add_option( 'wpp_transients', $wpp_transients );
|
460 |
-
} else {
|
461 |
-
if ( !in_array($transient_name, $wpp_transients) ) {
|
462 |
-
$wpp_transients[] = $transient_name;
|
463 |
-
update_option( 'wpp_transients', $wpp_transients );
|
464 |
-
}
|
465 |
-
}
|
466 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
}
|
468 |
|
469 |
}
|
446 |
$time = 60 * 60 * 24 * 365;
|
447 |
break;
|
448 |
|
449 |
+
default:
|
450 |
+
$time = 60 * 60;
|
451 |
+
break;
|
452 |
+
|
453 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
454 |
|
455 |
+
$expiration = $time * $this->admin_options['tools']['cache']['interval']['value'];
|
456 |
+
|
457 |
+
// Store transient
|
458 |
+
set_transient( $transient_name, $popular_posts, $expiration );
|
459 |
+
|
460 |
+
// Store transient in WPP transients array for garbage collection
|
461 |
+
$wpp_transients = get_option('wpp_transients');
|
462 |
+
|
463 |
+
if ( !$wpp_transients ) {
|
464 |
+
$wpp_transients = array( $transient_name );
|
465 |
+
add_option( 'wpp_transients', $wpp_transients );
|
466 |
+
} else {
|
467 |
+
if ( !in_array($transient_name, $wpp_transients) ) {
|
468 |
+
$wpp_transients[] = $transient_name;
|
469 |
+
update_option( 'wpp_transients', $wpp_transients );
|
470 |
+
}
|
471 |
}
|
472 |
|
473 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hcabr
|
|
4 |
Tags: popular, posts, widget, popularity, top
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.8.2
|
7 |
-
Stable tag: 4.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -82,6 +82,13 @@ The FAQ section has been moved [here](https://github.com/cabrerahector/wordpress
|
|
82 |
4. WordPress Popular Posts Stats panel.
|
83 |
|
84 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
= 4.0.8 =
|
86 |
- Multisite: plugin can now be installed individually on each site.
|
87 |
- Multisite: improved upgrade process.
|
@@ -188,5 +195,5 @@ See [full changelog](https://github.com/cabrerahector/wordpress-popular-posts/bl
|
|
188 |
* Flame graphic by freevector/Vecteezy.com.
|
189 |
|
190 |
== Upgrade Notice ==
|
191 |
-
= 4.0.
|
192 |
If you're using a caching plugin, flush its cache before upgrading to this version.
|
4 |
Tags: popular, posts, widget, popularity, top
|
5 |
Requires at least: 4.1
|
6 |
Tested up to: 4.8.2
|
7 |
+
Stable tag: 4.0.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
82 |
4. WordPress Popular Posts Stats panel.
|
83 |
|
84 |
== Changelog ==
|
85 |
+
= 4.0.9 =
|
86 |
+
- Widget: fixes Author ID field not saving/updating.
|
87 |
+
- Fixes WPP data caching (props @zu2).
|
88 |
+
- Dashboard: updates Content Tags' documentation.
|
89 |
+
- Main POT file updated.
|
90 |
+
- Other minor bug fixes & improvements.
|
91 |
+
|
92 |
= 4.0.8 =
|
93 |
- Multisite: plugin can now be installed individually on each site.
|
94 |
- Multisite: improved upgrade process.
|
195 |
* Flame graphic by freevector/Vecteezy.com.
|
196 |
|
197 |
== Upgrade Notice ==
|
198 |
+
= 4.0.9 =
|
199 |
If you're using a caching plugin, flush its cache before upgrading to this version.
|
wordpress-popular-posts.php
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
* Plugin Name: WordPress Popular Posts
|
17 |
* Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/
|
18 |
* Description: A highly customizable widget that displays the most popular posts on your blog.
|
19 |
-
* Version: 4.0.
|
20 |
* Author: Hector Cabrera
|
21 |
* Author URI: http://cabrerahector.com/
|
22 |
* License: GPL-2.0+
|
16 |
* Plugin Name: WordPress Popular Posts
|
17 |
* Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/
|
18 |
* Description: A highly customizable widget that displays the most popular posts on your blog.
|
19 |
+
* Version: 4.0.9
|
20 |
* Author: Hector Cabrera
|
21 |
* Author URI: http://cabrerahector.com/
|
22 |
* License: GPL-2.0+
|