
- The ID of the respective entry is now displayed in "Manage entries" so that the admin can use the ID for comment management in Akismet/ CommentCenter. - Creating or managing the Akismet Api Key now leads directly to akismet.com instead of wordpress.com - The external link to the Akismet API Key Help has been updated - The comment center now contains a link to the wiki (dealing with spam comments) - Typo "flatpress" fixed in several places. FlatPress should always be spelled with a capital F and a capital P.
24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<?php
|
|
$lang ['plugin'] ['akismet'] ['errors'] = array (
|
|
-1 => 'No se estableció la clave de API. Abra el Plugin para configurar su clave de API. Registrarse en <a href="https://akismet.com/signup/" target="_blank">akismet.com</a> para conseguir uno'
|
|
);
|
|
|
|
$lang ['admin'] ['plugin'] ['submenu'] ['akismet'] = 'Configuración de Akismet';
|
|
|
|
$lang ['admin'] ['plugin'] ['akismet'] = array(
|
|
'head' => 'Configuración de Akismet',
|
|
'description' => 'Para muchas personas, <a href="https://akismet.com/" target="_blank">Akismet</a> reducirá en gran medida '
|
|
.'o incluso eliminar por completo el spam de comentarios y trackback que recibe en su sitio. '
|
|
.'Si aún no tiene una cuenta de WordPress.com, puede obtener una en '.
|
|
'<a href="https://akismet.com/signup/" target="_blank">akismet.com/signup<a>.',
|
|
'apikey' => 'Akismet API Key',
|
|
'whatis' => '(<a href="https://akismet.com/support/getting-started/api-key/" target="_blank">¿Que es esto?</a>)',
|
|
'submit' => 'Guardar clave de API'
|
|
);
|
|
|
|
$lang ['admin'] ['plugin'] ['akismet'] ['msgs'] = array(
|
|
1 => 'Clave de API guardada',
|
|
-1 => 'La clave de API no es válida'
|
|
);
|
|
|
|
?>
|