[pLog-svn] r1796 - in plugins/trunk: authimage authimage/locale feedreader feedreader/locale moderate moderate/locale nofollow nofollow/locale print print/locale recentcomments recentcomments/locale recenttrackbacks recenttrackbacks/locale smileys smileys/locale templateeditor templateeditor/locale validatetrackback validatetrackback/locale

oscar at devel.plogworld.net oscar at devel.plogworld.net
Sun Apr 10 10:52:26 GMT 2005


Author: oscar
Date: 2005-04-10 10:52:23 +0000 (Sun, 10 Apr 2005)
New Revision: 1796

Added:
   plugins/trunk/authimage/locale/locale_es_ES.php
   plugins/trunk/feedreader/locale/locale_es_ES.php
   plugins/trunk/moderate/locale/locale_es_ES.php
   plugins/trunk/nofollow/locale/locale_es_ES.php
   plugins/trunk/print/locale/locale_es_ES.php
   plugins/trunk/recentcomments/locale/locale_es_ES.php
   plugins/trunk/recenttrackbacks/locale/locale_es_ES.php
   plugins/trunk/smileys/locale/locale_es_ES.php
   plugins/trunk/templateeditor/locale/locale_es_ES.php
   plugins/trunk/validatetrackback/locale/locale_es_ES.php
Modified:
   plugins/trunk/authimage/pluginauthimage.class.php
   plugins/trunk/feedreader/pluginfeedreader.class.php
   plugins/trunk/moderate/pluginmoderate.class.php
   plugins/trunk/nofollow/pluginnofollow.class.php
   plugins/trunk/print/pluginprint.class.php
   plugins/trunk/recentcomments/pluginrecentcomments.class.php
   plugins/trunk/recenttrackbacks/pluginrecenttrackbacks.class.php
   plugins/trunk/smileys/pluginsmileys.class.php
   plugins/trunk/templateeditor/plugintemplateeditor.class.php
   plugins/trunk/validatetrackback/pluginvalidatetrackback.class.php
Log:
added a spanish translation for several plugins

Added: plugins/trunk/authimage/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/authimage/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/authimage/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,34 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+// Added authimage_html_label for template label translation
+
+$messages["manageAntiSpamPlugins"] = "Anti Spam";
+$messages["AuthImage"] = "AuthImage";
+$messages["authimage_code"] = "Autenticaci&oacute;n";
+
+$messages["authimage_html_label"] = "C&oacute;digo de seguridad";
+
+$messages["authimage_length"] = "Longitud del c&oacute;digo identificador";
+$messages["authimage_key"] = "Clave de encrpici&oacute;n";
+$messages["authimage_default"] = "Elige un background default";
+$messages["authimage_background_name"] = "Nombre";
+$messages["authimage_background_image"] = "Imagen";
+$messages["authimage_plugin_enabled"] = "Activar este plugin";
+$messages["authimage_plugin"] = "Plugin AuthImage";
+
+$messages["authimage_error_length"] = "La longitud debe estar entre 1 y 6";
+$messages["authimage_error_key"] = "La Clave de enctripci&oacute;n no puede quedar vac&iacute;a!";
+
+$messages["authimage_settings_saved_ok"] = "La configuraci&oacute;n se guard&oacute; correctamente";
+
+$messages["error_you_have_been_blocked"] = "Esta solicitud ha sido bloqueada.";
+$messages["error_authimage_code"] = "El código de seguridad no es correcto.";
+
+$messages["label_configuration"] = "Configuraci&oacute;n";
+$messages["label_enable"] = "Activar";
+$messages["label_lengthx"] = "Longitud";
+$messages["label_key"] = "Clave";
+$messages["label_default"] = "Default";
+?>


Property changes on: plugins/trunk/authimage/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/authimage/pluginauthimage.class.php
===================================================================
--- plugins/trunk/authimage/pluginauthimage.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/authimage/pluginauthimage.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -29,7 +29,7 @@
             $this->author = "Mark Wu";
             $this->desc = 'This plugin offers extra comment authentication for pLog. The idea is inspired by <a href="http://www.gudlyf.com/index.php?p=376">WordPress AuthImage Plugin</a> written by Gudlyf.';
 
-            $this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
+            $this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
             
             $this->init();              
         }

Added: plugins/trunk/feedreader/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/feedreader/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/feedreader/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,17 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+// Please check if $messages["read"] is correctly applied
+
+$messages["feedReader"] = "Lector de Feeds";
+$messages["feed"] = "Feed";
+$messages["site"] = "Sitio";
+$messages["error_invalid_feed_id"] = "Identificador de feed incorrecto.";
+$messages["error_loading_feed"] = "Hubo un error cargando los datos desde la fuente.";
+$messages["error_fetching_feed"] = "Hubo un error conect&aacute;ndose a la fuente de datos.";
+$messages["error_feed_has_no_rss_feed_defined"] = "La fuente de datos seleccionada no tiene un link RSS/Atom asociado.";
+$messages["read"] = "Leer"; //It could be "Le&iacute;do"
+$messages["never_read"] = "Nunca le&iacute;do";
+$messages["last_read"] = "&Uacute;ltimo le&iacute;do";
+?>
\ No newline at end of file


Property changes on: plugins/trunk/feedreader/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/feedreader/pluginfeedreader.class.php
===================================================================
--- plugins/trunk/feedreader/pluginfeedreader.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/feedreader/pluginfeedreader.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -11,7 +11,7 @@
 			$this->id = "feedreader";
 			$this->description = "RSS/Atom feed reader integrated into pLog's admin interface";
 			$this->author = "The pLog Team";
-			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
+			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
 			
 			// register our actions
 			$this->registerAdminAction( "feedReader", "FeedReaderAction" );

Added: plugins/trunk/moderate/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/moderate/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/moderate/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,29 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+//
+
+$messages["manageAntiSpamPlugins"] = "Anti Spam";
+$messages["moderatePluginSettings"] = "Moderar";
+
+$messages["comment_status_unmoderated"] = "Sin moderar";
+$messages["unmoderatedComments"] = "Coment. sin moderar";
+
+$messages["moderate_plugin_enabled"] = "Activar este plugin";
+$messages["moderate_plugin"] = "Plugin de Moderaci&oacute;n";
+$messages["moderate_moderate"] = "Marcar como comentario normal";
+$messages["moderate_reject"] = "Eliminar comentario";
+
+$messages["error_no_unmoderated_comment_selected"] = "No se seleccionaron comentairos sin moderar.";
+$messages["error_moderate_not_enabled"] = "Por favor active el plugin de moderaci&oacute;n primero.";
+
+$messages["moderate_comments_moderated_ok"] = "Se marcaron comentarios normales con &eacute;xito.";
+$messages["moderate_comments_rejected_ok"] = "Se eliminaron los comentarios con &eacute;xito.";
+$messages["moderate_settings_saved_ok"] = "La configuraci&oacute;n se guard&oacute; con &eacute;xito";
+
+$messages["label_configuration"] = "Configuraci&oacute;n";
+$messages["label_enable"] = "Activar";
+$messages["label_moderate"] = "Moderar";
+$messages["label_reject"] = "Rechazar";
+?>
\ No newline at end of file


Property changes on: plugins/trunk/moderate/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/moderate/pluginmoderate.class.php
===================================================================
--- plugins/trunk/moderate/pluginmoderate.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/moderate/pluginmoderate.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -17,7 +17,7 @@
 			$this->id = "moderate";
 			$this->description = "Provides moderation of comments";
 			$this->author = "The pLog Team";
-			$this->locales = Array( "en_UK", "zh_TW" );
+			$this->locales = Array( "en_UK", "zh_TW", "es_ES" );
 			
 			$this->init();
 		}

Added: plugins/trunk/nofollow/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/nofollow/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/nofollow/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,17 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+//
+
+$messages["manageAntiSpamPlugins"] = "Anti Spam";
+$messages["NoFollow"] = "NoFollow";
+
+$messages["nofollow_plugin_enabled"] = "Activar este plugin";
+$messages["nofollow_plugin"] = "Plugin No Follow";
+
+$messages["nofollow_settings_saved_ok"] = "La configuraci&oacute;n se ha guardado con &eacute;xito";
+
+$messages["label_configuration"] = "Configuraci&oacute;n";
+$messages["label_enable"] = "Activar";
+?>
\ No newline at end of file


Property changes on: plugins/trunk/nofollow/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/nofollow/pluginnofollow.class.php
===================================================================
--- plugins/trunk/nofollow/pluginnofollow.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/nofollow/pluginnofollow.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -14,7 +14,7 @@
 			$this->author  = "Original by Minstrel Chiu, Modified by Mark Wu";
 			$this->desc    = "Prevents comment spams with 'rel=nofollow'";
 
-			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
+			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
 
 			$this->init();
 		}

Added: plugins/trunk/print/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/print/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/print/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,10 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+//
+
+$messages["print_plugin_settings"] = "Configuraci&oacute;n de Print Plugin";
+$messages["printPluginSettings"] = "Imprimir";
+
+?>
\ No newline at end of file


Property changes on: plugins/trunk/print/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/print/pluginprint.class.php
===================================================================
--- plugins/trunk/print/pluginprint.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/print/pluginprint.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -15,7 +15,7 @@
 			$this->id = "print";
 			$this->description = "Generates printable versions of posts";
 			$this->author = "The pLog Team";
-			$this->locales = Array( "en_UK" );
+			$this->locales = Array( "en_UK", "es_ES" );
 			
 			$this->init();
 		}

Added: plugins/trunk/recentcomments/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/recentcomments/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/recentcomments/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,22 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+//
+
+$messages["manageRecentPlugins"] = "Actividades recientes";
+$messages["RecentComments"] = "Comentarios Recientes";
+$messages["recentcomments"] = "Comentarios recientes";
+$messages["view_comment_by"] = "Ver comentario %s";
+
+$messages["recentcomments_maxcomments"] = "M&aacute;ximo de coment. a mostrar";
+$messages["recentcomments_plugin_enabled"] = "Activar este plugin";
+$messages["recentcomments_plugin"] = "Plugin Comentarios recientes";
+
+$messages["recentcomments_settings_saved_ok"] = "Los datos se han guardado con &eacute;xito";
+$messages["recentcomments_error_maxcomments"] = "El m&aacute;ximo debe ser mayor a 0!";
+
+$messages["label_configuration"] = "Configuraci&oacute;n";
+$messages["label_enable"] = "Activar";
+$messages["label_maxcomments"] = "Comentarios M&aacute;x";
+?>
\ No newline at end of file


Property changes on: plugins/trunk/recentcomments/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/recentcomments/pluginrecentcomments.class.php
===================================================================
--- plugins/trunk/recentcomments/pluginrecentcomments.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/recentcomments/pluginrecentcomments.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -24,7 +24,7 @@
   
             $this->prefix = Db::getPrefix();
             
-            $this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
+            $this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
             
             $this->init();
         }

Added: plugins/trunk/recenttrackbacks/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/recenttrackbacks/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/recenttrackbacks/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,22 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+//
+
+$messages["manageRecentPlugins"] = "Actividades recientes";
+$messages["RecentTrackbacks"] = "Trackbacks Recientes";
+$messages["recenttrackbacks"] = "Trackbacks recientes";
+$messages["view_trackback_by"] = "Ver trackback %s";
+
+$messages["recenttrackbacks_maxtrackbacks"] = "M&aacute;ximos Trackbacks a mostrar";
+$messages["recenttrackbacks_plugin_enabled"] = "Activar este plugin";
+$messages["recenttrackbacks_plugin"] = "Plugin Trackbacks recientes";
+
+$messages["recenttrackbacks_settings_saved_ok"] = "Los datos se han guardado con &eacute;xito";
+$messages["recenttrackbacks_error_maxtrackbacks"] = "El m&aacute;ximo debe ser mayor a 0!";
+
+$messages["label_configuration"] = "Configuraci&oacute;n";
+$messages["label_enable"] = "Activar";
+$messages["label_maxtrackbacks"] = "M&aacute;x Trackbacks";
+?>
\ No newline at end of file


Property changes on: plugins/trunk/recenttrackbacks/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/recenttrackbacks/pluginrecenttrackbacks.class.php
===================================================================
--- plugins/trunk/recenttrackbacks/pluginrecenttrackbacks.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/recenttrackbacks/pluginrecenttrackbacks.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -23,7 +23,7 @@
 
             $this->prefix = Db::getPrefix();
             
-            $this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
+            $this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
             
             $this->init();
             

Added: plugins/trunk/smileys/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/smileys/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/smileys/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,23 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+//
+
+$messages["manageAppearancePlugins"] = "Apariencia";
+$messages["Smileys"] = "Smileys";
+
+$messages["smileys_default"] = "Elegir un conjunto de smileys default";
+$messages["smileys_name"] = "Nombre";
+$messages["smileys_image"] = "Conjunto de Smileys";
+$messages["smileys_plugin_enabled"] = "Activar este plugin";
+$messages["smileys_plugin"] = "Plugin Smileys";
+
+$messages["error_smileys_not_enabled"] = "Por favor activar el plugin Smileys primero";
+
+$messages["smileys_settings_saved_ok"] = "Los datos se han guardado con &eacute;xito";
+
+$messages["label_configuration"] = "Configuraci&oacute;n";
+$messages["label_enable"] = "Activar";
+$messages["label_default"] = "Default";
+?>
\ No newline at end of file


Property changes on: plugins/trunk/smileys/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/smileys/pluginsmileys.class.php
===================================================================
--- plugins/trunk/smileys/pluginsmileys.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/smileys/pluginsmileys.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -27,7 +27,7 @@
             $this->author = "The pLog Team";
             $this->desc = "The plugin offer smileys to comments and articles.";
 
-			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
+			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
 
             $this->init();  
         }

Added: plugins/trunk/templateeditor/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/templateeditor/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/templateeditor/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,53 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+//
+
+$messages["SiteTemplateEditor"] = "Editor de Plantillas";
+$messages["BlogTemplateEditor"] = "Editor de Plantillas";
+$messages["TemplateEditorConfig"] = "Configuraci&oacute;n del Editor de plantillas";
+
+$messages["templateeditor_backupfile"] = "Selecciona la fecha que quieres recuperar, el editor la cargar&aacute; autom&aacute;ticamente. Cada plantilla puede tener hasta 5 backups.";
+$messages["templateeditor_choose_backupfile"] = "Selecciona un backup para recuperar";
+$messages["templateeditor_currentfile"] = "Fichero actual";
+$messages["templateeditor_filecontent"] = "Modifica tu plantilla.";
+$messages["templateeditor_recover_from"] = "Recuperar de ";
+$messages["templateeditor_plugin_enabled"] = "Permitir a los usuarios usar el Editor de plantillas";
+$messages["templateeditor_maxbackupfiles"] = "M&aacute;xima cantidad de backups permitidos";
+$messages["templateeditor_allowedextension"] = "Extensiones permitidas para ficheros de plantillas";
+$messages["templateeditor_enter_new_templateset_name"] = "Ingresa el nuevo nombre de la plantilla:";
+$messages["templateeditor_enter_new_templatefile_name"] = "Ingresa el nuevo nombre del fichero de la plantilla:";
+
+$messages["error_no_files_selected"] = "No se seleccionaron ficheros para eliminar.";
+$messages["error_removing_template_file"] = "Hubo un error eliminando el fichero %s.";
+$messages["error_updating_template_file"] = "Hubo un error actualizando el fichero.";
+$messages["error_backup_template_file"] = "Hubo un error en el backup del fichero.";
+$messages["templateeditor_error_maxbackupfiles"] = "M&aacute;xima cantidad de backups debe ser mayor a 0!";
+$messages["templateeditor_error_allowedextension"] = "El campo Extensiones permitidas no debe quedar vac&iacute;o.";
+$messages["templateeditor_error_templatefile_name"] = 'El nombre del archivo es incorrecto. Los caracteres permitidos son a-z, A-Z, "_", "-" y ".", no se permiten espacios en el nombre del fichero.';
+$messages["templateeditor_error_templateset_type"] = 'Tipo de plantilla incorrecto.';
+$messages["templateeditor_error_templatefile_extension"] = "Extensi&oacute;n de fichero incorrecta.";
+$messages["error_duplicate_templatefile_name"] = "Nombre de fichero duplicado.";
+$messages["error_copying_templatefile"] = "Hubo un error copiando el fichero.";
+$messages["templateeditor_error_templateset_name"] = 'Nombre de plantilla incorrecto. Los caracteres permitidos son a-z, A-Z, "_" y "-", no se permiten espacios en el nombre de la plantilla.';
+$messages["error_duplicate_templateset_name"] = "Nombre de plantilla duplicado.";
+$messages["error_copying_templateset"] = "Hubo un error copiando la plantilla.";
+
+$messages["template_file_removed_ok"] = "El fichero %s fue eliminado correctamente.";
+$messages["template_files_removed_ok"] = "%s ficheros eliminados correctamente";
+$messages["templateeditor_file_saved_ok"] = "El fichero fue guardado correctamente.";
+$messages["templateeditor_settings_saved_ok"] = "La configuraci&oacute;n del Editor de plantillas fue guardada correctamente";
+$messages["templateeditor_templatefile_copyed_ok"] = "El fichero fue copiado correctamente.";
+$messages["templateeditor_templateset_copyed_ok"] = "La plantilla fue copiada correctamente.";
+
+$messages["label_configuration"] = "Configuraci&oacute;n";
+$messages["label_enable"] = "Activar";
+$messages["label_maxbackupfiles"] = "Cantidad de backups";
+$messages["label_allowedextension"] = "Extensiones permitidas";
+$messages["label_edit"] = "Editar";
+$messages["label_backupfile"] = "Recuperar Backup";
+
+$messages["edit"] = "Editar";
+$messages["copy"] = "Copiar";
+?>
\ No newline at end of file


Property changes on: plugins/trunk/templateeditor/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/templateeditor/plugintemplateeditor.class.php
===================================================================
--- plugins/trunk/templateeditor/plugintemplateeditor.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/templateeditor/plugintemplateeditor.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -17,7 +17,7 @@
             $config =& Config::getConfig();
             $this->pluginEnabled = $config->getValue( "plugin_templateeditor_enabled" );
 
-			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN" );
+			$this->locales = Array( "en_UK" , "zh_TW" , "zh_CN", "es_ES" );
 
 			$this->init();
 		}

Added: plugins/trunk/validatetrackback/locale/locale_es_ES.php
===================================================================
--- plugins/trunk/validatetrackback/locale/locale_es_ES.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/validatetrackback/locale/locale_es_ES.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -0,0 +1,17 @@
+<?php
+
+// Translation by Andres Bianciotto plog at a-b.com.ar
+// Date 09/Apr/2005
+//
+
+$messages["manageAntiSpamPlugins"] = "Anti Spam";
+$messages["validatetrackbackPluginSettings"] = "Validar Trackbacks";
+
+$messages["validatetrackback_plugin_enabled"] = "Activar este plugin";
+$messages["validatetrackback_plugin"] = "Plugin Validar Trackbacks";
+
+$messages["validatetrackback_settings_saved_ok"] = "La configuraci&oacute;n de Validar Trackbacks fue guardada correctamente";
+
+$messages["label_configuration"] = "Configuraci&oacute;n";
+$messages["label_enable"] = "Activar";
+?>
\ No newline at end of file


Property changes on: plugins/trunk/validatetrackback/locale/locale_es_ES.php
___________________________________________________________________
Name: svn:executable
   + *

Modified: plugins/trunk/validatetrackback/pluginvalidatetrackback.class.php
===================================================================
--- plugins/trunk/validatetrackback/pluginvalidatetrackback.class.php	2005-04-10 10:33:32 UTC (rev 1795)
+++ plugins/trunk/validatetrackback/pluginvalidatetrackback.class.php	2005-04-10 10:52:23 UTC (rev 1796)
@@ -19,7 +19,7 @@
 			$this->id = "validatetrackback";
 			$this->desc = "Provides validation of trackbacks.";
 			$this->author = "Paul Westbrook";
-			$this->locales = Array( "en_UK", "zh_TW" );
+			$this->locales = Array( "en_UK", "zh_TW", "es_ES" );
 			
 			$this->init();
 		}




More information about the pLog-svn mailing list