]> git.mjollnir.org Git - s9y.git/commitdiff
Make the "on the fly synchronization" configurable
authorgarvinhicking <garvinhicking>
Mon, 13 Feb 2006 10:57:53 +0000 (10:57 +0000)
committergarvinhicking <garvinhicking>
Mon, 13 Feb 2006 10:57:53 +0000 (10:57 +0000)
58 files changed:
include/functions_images.inc.php
include/tpl/config_local.inc.php
lang/UTF-8/serendipity_lang_bg.inc.php
lang/UTF-8/serendipity_lang_cn.inc.php
lang/UTF-8/serendipity_lang_cs.inc.php
lang/UTF-8/serendipity_lang_cz.inc.php
lang/UTF-8/serendipity_lang_da.inc.php
lang/UTF-8/serendipity_lang_de.inc.php
lang/UTF-8/serendipity_lang_en.inc.php
lang/UTF-8/serendipity_lang_es.inc.php
lang/UTF-8/serendipity_lang_fa.inc.php
lang/UTF-8/serendipity_lang_fi.inc.php
lang/UTF-8/serendipity_lang_fr.inc.php
lang/UTF-8/serendipity_lang_hu.inc.php
lang/UTF-8/serendipity_lang_is.inc.php
lang/UTF-8/serendipity_lang_it.inc.php
lang/UTF-8/serendipity_lang_ja.inc.php
lang/UTF-8/serendipity_lang_ko.inc.php
lang/UTF-8/serendipity_lang_nl.inc.php
lang/UTF-8/serendipity_lang_no.inc.php
lang/UTF-8/serendipity_lang_pt.inc.php
lang/UTF-8/serendipity_lang_pt_PT.inc.php
lang/UTF-8/serendipity_lang_ro.inc.php
lang/UTF-8/serendipity_lang_ru.inc.php
lang/UTF-8/serendipity_lang_se.inc.php
lang/UTF-8/serendipity_lang_ta.inc.php
lang/UTF-8/serendipity_lang_tn.inc.php
lang/UTF-8/serendipity_lang_tw.inc.php
lang/UTF-8/serendipity_lang_zh.inc.php
lang/addlang.txt
lang/plugin_lang.php
lang/serendipity_lang_bg.inc.php
lang/serendipity_lang_cn.inc.php
lang/serendipity_lang_cs.inc.php
lang/serendipity_lang_cz.inc.php
lang/serendipity_lang_da.inc.php
lang/serendipity_lang_de.inc.php
lang/serendipity_lang_en.inc.php
lang/serendipity_lang_es.inc.php
lang/serendipity_lang_fa.inc.php
lang/serendipity_lang_fi.inc.php
lang/serendipity_lang_fr.inc.php
lang/serendipity_lang_hu.inc.php
lang/serendipity_lang_is.inc.php
lang/serendipity_lang_it.inc.php
lang/serendipity_lang_ja.inc.php
lang/serendipity_lang_ko.inc.php
lang/serendipity_lang_nl.inc.php
lang/serendipity_lang_no.inc.php
lang/serendipity_lang_pt.inc.php
lang/serendipity_lang_pt_PT.inc.php
lang/serendipity_lang_ro.inc.php
lang/serendipity_lang_ru.inc.php
lang/serendipity_lang_se.inc.php
lang/serendipity_lang_ta.inc.php
lang/serendipity_lang_tn.inc.php
lang/serendipity_lang_tw.inc.php
lang/serendipity_lang_zh.inc.php

index 18565b9495b1477ad8a7933a49d6eb233b69ca3c..258606f51881659195c7e6f4a9548d1d4f6e627d 100644 (file)
@@ -1113,6 +1113,8 @@ function serendipity_calculate_aspect_size($width, $height, $newwidth) {
  */
 function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = false, $url = NULL, $show_upload = false, $limit_path = NULL) {
     global $serendipity;
+    static $debug = false;
+
     $sort_row_interval = array(8, 16, 50, 100);
     $sortParams        = array('perpage', 'order', 'ordermode');
     $importParams      = array('adminModule', 'htmltarget', 'filename_only', 'textarea', 'subpage');
@@ -1164,19 +1166,18 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
 
        foreach ($aResultSet AS $sKey => $sFile) {
                if ($sFile['directory']) {
-                   echo "{$sFile['relpath']} is a directory.<br />"; #DEBUG
+                   if ($debug) echo "{$sFile['relpath']} is a directory.<br />";
                        array_push($paths, $sFile);
                } else {
-                   echo "{$sFile['relpath']} is a file.<br />"; #DEBUG
+                   if ($debug) echo "{$sFile['relpath']} is a file.<br />";
                    // Store the file in our array, remove any ending slashes
                        $aFilesOnDisk[$sFile['relpath']] = 1;
                }
                unset($aResultSet[$sKey]);
        }
        sort($paths);
-       echo "<p>Got files: <pre>" . print_r($aFilesOnDisk, true) . "</pre></p>"; #DEBUG
+       if ($debug) echo "<p>Got files: <pre>" . print_r($aFilesOnDisk, true) . "</pre></p>";
        $serendipity['current_image_hash'] = md5(serialize($aFilesOnDisk));
-       $serendipity['current_image_hash'] = md5(time()); #DEBUGGING
 
        $nTimeStart = microtime_float();
        // MTG 21/01/06: request all images from the database, delete any which don't exist
@@ -1184,10 +1185,10 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
        // in the database
        
        $nCount = 0;
-       if (serendipity_checkPermission('adminImagesSync') && $serendipity['current_image_hash'] != $serendipity['last_image_hash']) {
+       if ($serendipity['onTheFlySynch'] && serendipity_checkPermission('adminImagesSync') && $serendipity['current_image_hash'] != $serendipity['last_image_hash']) {
                $aResultSet = serendipity_db_query("SELECT path, name, extension, thumbnail_name, id 
                                                      FROM {$serendipity['dbPrefix']}images", false, 'assoc');
-       echo "<p>Got images: <pre>" . print_r($aResultSet, true) . "</pre></p>"; #DEBUG
+       if ($debug) echo "<p>Got images: <pre>" . print_r($aResultSet, true) . "</pre></p>";
                if (is_array($aResultSet)) {
                        foreach ($aResultSet AS $sKey => $sFile) {      
                                serendipity_plugin_api::hook_event('backend_thumbnail_filename_select', $sFile);
@@ -1199,14 +1200,14 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
                                }
 
                                $sFileName = $sFile['path'] . $sFile['name'] . '.' . $sFile['extension'];
-                               echo "<p>File name is $sFileName,<br />thumbnail is $sThumbNailFile</p>"; #DEBUG
+                               if ($debug) echo "<p>File name is $sFileName,<br />thumbnail is $sThumbNailFile</p>";
                                unset($aResultSet[$sKey]);
 
                                if (isset($aFilesOnDisk[$sFileName])){
                                        unset($aFilesOnDisk[$sFileName]);
                                } else {
-                    echo "Deleting Image {$sFile['id']}<br />\n"; #DEBUG
-                    #serendipity_deleteImage($sFile['id']); #DEBUGGING
+                    if ($debug) "Deleting Image {$sFile['id']}<br />\n";
+                    serendipity_deleteImage($sFile['id']);
                                        ++$nCount;
                                }
 
@@ -1215,19 +1216,19 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
                }
 
                if ($nCount > 0){
-                       echo "<p>Cleaned up ".$nCount." database entries</p>"; #DEBUG
+                       if ($debug) echo "<p>Cleaned up ".$nCount." database entries</p>";
                }
 
                serendipity_set_config_var('last_image_hash', $serendipity['current_image_hash'], 0); 
                $aUnmatchedOnDisk = array_keys($aFilesOnDisk);  
-       echo "<p>Got unmatched files: <pre>" . print_r($aUnmatchedOnDisk, true) . "</pre></p>"; #DEBUG
+       if ($debug) echo "<p>Got unmatched files: <pre>" . print_r($aUnmatchedOnDisk, true) . "</pre></p>";
                $nCount = 0;
                foreach ($aUnmatchedOnDisk AS $sFile) {
                    if (preg_match('@\.' . $serendipity['thumbSuffix'] . '\.@', $sFile)) {
-                       echo "<p>Skipping thumbnailed file $sFile</p>"; #DEBUG
+                       if ($debug) echo "<p>Skipping thumbnailed file $sFile</p>";
                        continue;
                    } else {
-                       echo "<p>Checking $sFile</p>"; #DEBUG
+                       if ($debug) echo "<p>Checking $sFile</p>";
                    }
                    
                        // MTG: 21/01/06: put files which have just 'turned up' into the database
@@ -1242,7 +1243,7 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
                                        $sFileName  = substr($sFile, $nPos);
                                        $sDirectory = substr($sFile, 0, $nPos);
                                }
-                               echo "<p>Inserting image $sFileName from $sDirectory <pre>" . print_r($aImageData, true) . "</pre> into database</p>"; #DEBUG
+                               if ($debug) echo "<p>Inserting image $sFileName from $sDirectory <pre>" . print_r($aImageData, true) . "</pre> into database</p>";
                                # TODO: Check if the thumbnail generation goes fine with Marty's code
                 serendipity_makeThumbnail($sFileName, $sDirectory);
                                serendipity_insertImageInDatabase($sFileName, $sDirectory);
@@ -1251,10 +1252,10 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
                }
 
                if ($nCount > 0) {
-                       echo "<p>Inserted ".$nCount." images into the database</p>"; #DEBUG
+                       if ($debug) echo "<p>Inserted ".$nCount." images into the database</p>";
                }
        } else {
-               echo "<p>Media Gallery database is up to date</p>"; #DEBUG
+               if ($debug) echo "<p>Media Gallery database is up to date</p>";
        }
 
        /*
index bfd12d80d1cc8f675df1b58345dcc58cfad93acb..fd7417343c07187f2ec72050d5aa011a70c322e7 100644 (file)
                                           'type'        => 'int',
                                           'permission'  => 'siteConfiguration',
                                           'default'     => 110),
+
+                                    array('var'         => 'onTheFlySynch',
+                                          'title'       => ONTHEFLYSYNCH,
+                                          'description' => ONTHEFLYSYNCH_DESC,
+                                          'type'        => 'bool',
+                                          'permission'  => 'siteConfiguration',
+                                          'default'     => true),
                             ));
 
     return $res;
index a853340bf631617266975951a941cc3db9563419..d3034b4c82b1e73bdd167e37ab819a087fe39e45 100644 (file)
 @define('CATEGORIES_HIDE_PARENT', 'Скриване на избраната родителска категория ?');
 @define('CATEGORIES_HIDE_PARENT_DESC', 'Ако ограничите извеждането на статии само до определени категории, по подразбиране ще се вижда родителската категория. Ако забраните тази възможност, родителската категория няма да се показва.');
 @define('WARNING_NO_GROUPS_SELECTED', 'Внимание: Вие не сте избрали нито една група, към която да членувате. Това би могло ефективно да ви изолира от системата за управление на групите, с всичките права и органичения, която тя управлява. По тази причина вашето членство в групи не е променено.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
 @define('INSTALL_RSSFETCHLIMIT', 'Брой статии за показване в RSS емисии');
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Брой на статиите, които да бъдат извеждани в RSS емисии.');
 @define('INSTAL_DB_UTF8', 'Разрешаване на прекодирането на символите при работа с MySQL база данни');
index 9b4e6a941a19c69ee7df2362941856b5adbd69ca..abfcae98064086ebce038cb5430fca7568fef7ec 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cn.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_cn.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index a8742f80bda55d88c05bf08fcdbdad127a20318f..2268da103dd70662ebbee149f895459d3e0ea028 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cs.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_cs.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) 2005 Josef Klimosz <ok2wo@centrum.cz>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 0b5cd3ba4420f934bd268d4766744a36eb46c277..3b067dc8bb845e25571d70b8b1438e6efcb02264 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cz.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_cz.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) 2004 Josef Klimosz <ok2wo@centrum.cz>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index d730782675dcb946fc2430e4ed506cec8d6ea6aa..f140931a489e43d9f5aa8bf5fd141629c0a75ded 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_da.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_da.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Tom Sommer, <ts@dreamcoder.dk>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index a7122392edac3ec78858689924e7e90f2ddc7e20..7e73e963394b0aa63f74ca3bac7b698bf02a6c64 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_de.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_de.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) Jannis Hermanns, Garvin Hicking and others
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 888dc5888600e09fbf8c498611d4663b267b982a..3624cff9d799b0d6c74893077a5124477f734dd2 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_en.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_en.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 5600123be7b8fd235cb07632e3c0bb50fa08f2e4..874f78b60ad1fd74db17dac8bf22f92237f329cc 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_es.inc.php 891 2006-01-30 09:41:19Z garvinhicking $
+<?php # $Id: serendipity_lang_es.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Luis Cervantes <LuisCervantes@ono.com>,
 @define('THUMBNAIL_USING_OWN', 'Usando %s como su miniatura debido al escaso tamaño.');
 @define('THUMBNAIL_FAILED_COPY', 'Querías usar %s como tu miniatura, ¡pero ha fallado la copia!');
 @define('AUTHOR', 'Autor');
-@define('LAST_UPDATED', 'última actualización');
+@define('LAST_UPDATED', 'Ã\9altima actualización');
 @define('TRACKBACK_SPECIFIC', 'URI de referencia para esta entrada');
 @define('DIRECT_LINK', 'Enlace directo a esta entrada');
 @define('COMMENT_ADDED', 'Tu comentario ha sido añadido correctamente.');
 @define('INSTALL_POPUP', 'Activar el uso de ventanas emergentes');
 @define('INSTALL_POPUP_DESC', '¿Quieres que el blog use una ventana emergente para los comentarios, referencias, etc.?');
 @define('INSTALL_EMBED', '¿Está Serendipity insertado en otra web?');
-@define('INSTALL_EMBED_DESC', 'Si quieres insertar Serendipity dentro de otra página, ajusta a "true" para eliminar cualquier cabecera y sólo mostrar los contenidos. Puedes hacer uso de la opción indexFile y usar una clase donde pongas las cabeceras normales de tu página web. ¡Lee el fichero README para más información!');
+@define('INSTALL_EMBED_DESC', 'Si quieres insertar Serendipity dentro de otra página, ajusta a "" para eliminar cualquier cabecera y sólo mostrar los contenidos. Puedes hacer uso de la opción indexFile y usar una clase donde pongas las cabeceras normales de tu página web. ¡Lee el fichero README para más información!');
 @define('INSTALL_TOP_AS_LINKS', '¿Mostrar Salidas/Sitios asociados como enlaces?');
 @define('INSTALL_TOP_AS_LINKS_DESC', '"no": Las Salidas y los Sitios asociados se muestran como texto sin formato para prevenir spam en google. "yes": Las Salidas y Sitios asociando se muestran como enlaces. "default": Usar el valor de la configuración global (recomendado).');
 @define('INSTALL_BLOCKREF', 'Sitios asociados bloqueados');
 @define('USERCONF_EMAIL', 'Correo electrónico');
 @define('USERCONF_EMAIL_DESC', 'La dirección de correo electrónico personal');
 @define('USERCONF_SENDCOMMENTS', '¿Enviar avisos de comentarios?');
-@define('USERCONF_SENDCOMMENTS_DESC', '¿Recibir correos electrónicos cuando ponen comentarios en las entradas?');
+@define('USERCONF_SENDCOMMENTS_DESC', '¿Desea que se le envíen notificaciones mediante correo electrónico cuando se reciban comentarios a las entradas?');
 @define('USERCONF_SENDTRACKBACKS', '¿Enviar avisos de referencias?');
-@define('USERCONF_SENDTRACKBACKS_DESC', '¿Recibir correos electrónicos cuando hacen referencias a las entradas?');
+@define('USERCONF_SENDTRACKBACKS_DESC', '¿Desea que se le envíen notificaciones mediante correo electrónico cuando se hagan referencias a las entradas?');
 @define('USERCONF_ALLOWPUBLISH', 'Derechos: ¿Publicar entradas?');
 @define('USERCONF_ALLOWPUBLISH_DESC', '¿El usuario puede publicar entradas?');
 @define('XML_IMAGE_TO_DISPLAY', 'Botón XML');
 @define('PLUGIN_SUPERUSER_HTTPS', 'Usar https para conectar');
 @define('PLUGIN_SUPERUSER_HTTPS_DESC', 'Hacer que el enlace para conectar apunte a una conexión https. ¡Tu servidor web necesita soporte para esto!');
 @define('INSTALL_SHOW_EXTERNAL_LINKS', '¿Poder hacer click en los enlaces externos?');
-@define('INSTALL_SHOW_EXTERNAL_LINKS_DESC', '"no": Enlaces externos no verificados (Top Salidas, Top Sitios asociados, Comentarios de usuarios) no se muestran/se muestran como texto sin formato donde se pueda para prevenir spam de google (recomendado). "yes": Enlaces externos no verificados se muestran como enlaces. ¡Puede ser modificado en la configuración del plugin de la barra lateral!');
+@define('INSTALL_SHOW_EXTERNAL_LINKS_DESC', '"no": Enlaces externos no verificados (Top Salidas, Top Sitios asociados, Comentarios de usuarios) no se muestran/se muestran como texto sin formato donde se pueda para prevenir spam de google (recomendado). "sí": Enlaces externos no verificados se muestran como enlaces. ¡Puede ser modificado en la configuración de la extensión de la barra lateral!');
 @define('PAGE_BROWSE_COMMENTS', 'Página %s de %s, total %s comentarios');
 @define('FILTERS', 'Filtros');
 @define('FIND_ENTRIES', 'Encontrar entradas');
 @define('IMPORT_FAILED', 'Importación fallida');
 @define('IMPORT_DONE', 'Importación completada con éxito');
 @define('IMPORT_WEBLOG_APP', 'Aplicación weblog');
-@define('EXPORT_FEED', 'Exportar el feed RSS completo');
+@define('EXPORT_FEED', 'Exportar la sindicación RSS completa');
 @define('STATUS', 'Estatus después de importar');
 @define('IMPORT_GENERIC_RSS', 'Importar RSS genérico');
 @define('ACTIVATE_AUTODISCOVERY', 'Enviar referencias a los enlaces encontrados en la entrada');
 @define('INSTALL_SHOWFUTURE', 'Mostrar entradas futuras');
 @define('INSTALL_SHOWFUTURE_DESC', 'Si se activa, mostrará todas las entradas con fecha futura en tu blog. La acción predeterminada es no mostrar esas entradas y sólo hacerlo cuando llegue la fecha de publicación.');
 @define('INSTALL_DBPERSISTENT', 'Usar conexiones persistentes');
-@define('INSTALL_DBPERSISTENT_DESC', 'Activar el uso de conexiones persistentes a la base de datos, lee más en <a href="http://php.net/manual/features.persistent-connections.php" target="_blank">here</a>. Normalmente no se recomienda esto');
+@define('INSTALL_DBPERSISTENT_DESC', 'Activar el uso de conexiones persistentes a la base de datos, lee más en <a href="http://php.net/manual/features.persistent-connections.php" target="_blank">here</a>. Normalmente no se recomienda');
 @define('NO_IMAGES_FOUND', 'No se encontraron imágenes');
 @define('PERSONAL_SETTINGS', 'Configuración personal');
 @define('REFERER', 'Referer');
 @define('GROUP', 'Grupo');
 @define('CREATE_NEW_GROUP', 'Crear nuevo grupo');
 @define('DELETE_GROUP', 'Estás apunto de eliminar el grupo #%d %s. ¿Estás seguro?');
-@define('USERLEVEL_OBSOLETE', 'AVISO: El atributo userlevel es ahora utilizado sólo con propósitos de compatibilidad con versiones anteriores de extensiones y autorización. ¡Los privilegios de usuarios son ahora manejados por membresías!');
+@define('USERLEVEL_OBSOLETE', 'AVISO: El atributo de nivel de acceso es ahora utilizado sólo con propósitos de compatibilidad con versiones anteriores de extensiones y autorización. ¡Los privilegios de usuarios son ahora manejados por membresías!');
 @define('SYNDICATION_PLUGIN_FEEDBURNERID', 'ID FeedBurner');
 @define('SYNDICATION_PLUGIN_FEEDBURNERID_DESC', 'El ID del feed que deseas publicar');
 @define('SYNDICATION_PLUGIN_FEEDBURNERIMG', 'Imagen FeedBurner');
@@ -810,18 +810,20 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
 @define('AUTHORS_ALLOW_SELECT_DESC', 'Si esta opción es activada, un checkbox estará al lado de cada autor en en el plugin lateral. Los usuarios pueden seleccionar estas casillas para ver las entradas de acuerdo a su selección.');
 @define('AUTHOR_PLUGIN_DESC', 'Muestra una lista de autores');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Activar Smarty-Templates?');
-@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Si esta opción es activada, el plugin utiliza las características de Smarty-Templating para producir el contenido del listado de las categorías. Si activas esto, puedes cambiar el diseño a través del archivo "plugin_categories.tpl". Toma en cuenta que esta opción tendrá un impacto en el "performance", si no necesitas diseños particulares, déjalo deshabilitado.');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Si esta opción es activada, el plugin utiliza las características de Smarty-Templating para producir el contenido del listado de las categorías. Si activas esto, puedes cambiar el diseño a través del archivo "plugin_categories.tpl". Toma en cuenta que esta opción tendrá un impacto en el desempeño, si no necesitas diseños particulares, déjalo deshabilitado.');
 @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Mostrar número de entradas por categoría?');
 @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Mostrar número de artículos del autor?');
 @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Si esta opción es activada, el número de artículos del autor se muestra al lado del nombre del autor en paréntesis.');
-@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available');
+@define('CUSTOM_ADMIN_INTERFACE', 'Interfaz de la suite de administración personalizada');
 @define('COMMENT_NOT_ADDED', 'Tu comentario no ha podido ser añadido debido a que, o bien, en esta entrada ha sido deshabilitado el envío de comentarios, ingresaste datos erróneos, o tu comentario ha sido capturado por medidas anti-spam.');
 @define('INSTALL_TRACKREF', 'Activar registro de "referrers"?');
 @define('INSTALL_TRACKREF_DESC', 'Activando el registro de "referrers" podrás ver cuales sitios envían visitas a tus artículos. Últimamente esto esta siendo abusado frecuentemente por spammers, así que puedes deshabilitarlo si quieres.');
 @define('CATEGORIES_HIDE_PARENT', 'Ocular la categoría padre seleccionada?');
 @define('CATEGORIES_HIDE_PARENT_DESC', 'Si restringes el listado de categorías a una categoría especifica, por defecto verás la categoría padre (superior) dentro del listado generado. Si deshabilitas esta opción, el nombre de la categoría padre no será mostrado.');
 @define('WARNING_NO_GROUPS_SELECTED', 'Advertencia: No haz seleccionado ningún grupo de miembros. Esto efectivamente te dejaría fuera de la gerencia del grupo de usuarios, por lo tanto, tu membresía de grupo no fue cambiada.');
-@define('INSTALL_RSSFETCHLIMIT', 'Entries to display in Feeds');
-@define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
-@define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
-@define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('INSTALL_RSSFETCHLIMIT', 'Entradas a mostrar en las sindicaciones');
+@define('INSTALL_RSSFETCHLIMIT_DESC', 'Número de entradas a mostrar por cada página.');
+@define('INSTAL_DB_UTF8', 'Activar conversión del juego de caracteres en la BD');
+@define('INSTAL_DB_UTF8_DESC', 'Envía una consulta MySQL "SET NAMES" para definir el juego de caracteres requerido por la base de datos. Actívalo o desactívalo sí ves caracteres extraños en tu blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index e0b08c34b4fb63ebaee802d6ab8c484468e3471c..0bc6396fe3fdad42dcccc2203f97b3d0cc476325 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fa.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_fa.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved. See LICENSE file for licensing details
 # this translation, translated by Omid Mottaghi <http://oxygenws.com>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index ffba68d0d4a8ccdf61077d01ecc19715af7aa648..622c6972a1acdeccedd4a7a24a338f40242b75f4 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fi.inc.php 881 2006-01-27 18:29:15Z garvinhicking $
+<?php # $Id: serendipity_lang_fi.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation by Mauri Sahlberg <mos@iki.fi>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 92f042c490562b5a805667dd1772bc618bf17fc0..3195f9ff122db3fff90375a91e4f3e7d5fe5af75 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fr.inc.php 909 2006-02-07 09:47:36Z garvinhicking $
+<?php # $Id: serendipity_lang_fr.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation by Sebastian Mordziol <argh@php-tools.net>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 9b30b8b650b6500295ecc8fcd1ba876e5fbda9fc..e659000ec55b71134bfaf5fe5806b2284fe08f24 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 753c7eefc24a1d8239e86556d33d7ad2c48567de..0265b15f27370d8a13145969afb872737f08ec43 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_is.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_is.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation by Örn Arnarson <orn@arnarson.net>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 620b875c569f1ae48a21da66f37fd09d5ddaab2e..1d75baeb98b9d0ed1cc28adcbe37787028bcfff0 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_it.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_it.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Alessandro Pellizzari <alex@amiran.it>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index ca155d7f84cbc6413455e217298f52a977b00f81..2ed4de5e0da4589375135310b932155677fd15b9 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ja.inc.php 887 2006-01-30 04:39:48Z elf2000 $
+<?php # $Id: serendipity_lang_ja.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) Tadashi Jokagi <elf2000@users.sourceforge.net>, 2004-2005.
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 3a08e9800a0bfe5b115608ae4cdb6cc07244c5a8..da7733253ca7cff2b3ee446999ecfaf6084dda53 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ko.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_ko.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by: Wesley Hwang-Chung <wesley96@gmail.com>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index a126ceab33e87f7001941f6c763e79953e73c753..15e81ed1b322001edc029e371b2754ae2d41a491 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_nl.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_nl.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Christiaan Heerze <webmaster@heimp.nl>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 3d7185bccd51f3a5df2960d5289062098f40e5ce..8c9b29954b0b1820942b54e69e31e058d34cd99c 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_no.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_no.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Jo Christian Oterhals <oterhals@gmail.com>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index d5ec30a44dc338f76f78bfa2226db88f913e7d4e..67eb376b415a6fc07449cb3622e3f81862037b53 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_pt.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_pt.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Agner Olson <agner@agner.net>
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 4e69e5dee5f87441de1bc62f1070ae5ee28676c0..4d0cdf001fd1bc3f4a799dff0901c3ee1aadb4b4 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 93daef2e9d8d7dbf59c6919b792e5d6a188acf58..2945f472ce0aeb96580ef5babe44899e5e903e01 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index c3c9e092e209216ff7a19de29ab30766be87fedb..02f55071a17a54d76c48dee16b1c85befb27abc8 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ru.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_ru.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation by Nightly <nightly@reys.net>
@@ -811,3 +811,5 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 20071cf162852745e8be2ddd8a0db4b0f89e913b..6c6126dfe6b86be9ba8bfd30a016a16eaebb59ad 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index fef1a3b1a66dd9022fcc30832fe8867a5aa3469e..610e74be8b739c2e070890fa83d9c4e8c9800400 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index f1b4de120e62c21892399c3534556f7e2017ffef..5651c51eb47a3d5027370dd957e8c90e3335c89a 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_tn.inc.php 914 2006-02-08 05:10:24Z capriskye $
+<?php # $Id: serendipity_lang_tn.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by CapriSkye <admin@capriskye.com>
@@ -810,3 +810,5 @@ $i18n_unknown = 'tw';
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 167ed5115757814e085e5745a9bcfbc60c9382ef..9950167c0acd16d6689c5a61777e3f2c5a3bb750 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_tw.inc.php 914 2006-02-08 05:10:24Z capriskye $
+<?php # $Id: serendipity_lang_tw.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translated by CapriSkye <admin@capriskye.com>
@@ -810,3 +810,5 @@ $i18n_unknown = 'tw';
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 295a984264ba27f2c43ec510af62bd84ad012ebe..a1ebeace99a05859711331f382015fe9dc5139e2 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_zh.inc.php 878 2006-01-25 19:26:58Z garvinhicking $
+<?php # $Id: serendipity_lang_zh.inc.php 938 2006-02-13 03:11:43Z slothman $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 /* vim: set sts=4 ts=4 expandtab : */
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 1642caf193f73c7da62168b59efb228d0837f93e..d524bb8c4466f479434f2fbb60e799197cb5bcc2 100644 (file)
@@ -1,4 +1,2 @@
-@define('INSTALL_RSSFETCHLIMIT', 'Entries to display in Feeds');
-@define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the frontend.');
-@define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
-@define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index bd846a0136f92547683769297b922e0b7c3d09e7..3b441f7d573215faf7299be07e61ad03f37f224c 100644 (file)
@@ -83,3 +83,5 @@ foreach($const['missing'] AS $file => $constants) {
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the  RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index c90292328777cb78e66f7a32e8121db8f0ea3f81..e94fa9c236132817d8cf47669e8d3a32114f2720 100644 (file)
 @define('CATEGORIES_HIDE_PARENT', 'Ñêðèâàíå íà èçáðàíàòà ðîäèòåëñêà êàòåãîðèÿ ?');
 @define('CATEGORIES_HIDE_PARENT_DESC', 'Àêî îãðàíè÷èòå èçâåæäàíåòî íà ñòàòèè ñàìî äî îïðåäåëåíè êàòåãîðèè, ïî ïîäðàçáèðàíå ùå ñå âèæäà ðîäèòåëñêàòà êàòåãîðèÿ. Àêî çàáðàíèòå òàçè âúçìîæíîñò, ðîäèòåëñêàòà êàòåãîðèÿ íÿìà äà ñå ïîêàçâà.');
 @define('WARNING_NO_GROUPS_SELECTED', 'Âíèìàíèå: Âèå íå ñòå èçáðàëè íèòî åäíà ãðóïà, êúì êîÿòî äà ÷ëåíóâàòå. Òîâà áè ìîãëî åôåêòèâíî äà âè èçîëèðà îò ñèñòåìàòà çà óïðàâëåíèå íà ãðóïèòå, ñ âñè÷êèòå ïðàâà è îðãàíè÷åíèÿ, êîÿòî òÿ óïðàâëÿâà. Ïî òàçè ïðè÷èíà âàøåòî ÷ëåíñòâî â ãðóïè íå å ïðîìåíåíî.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
 @define('INSTALL_RSSFETCHLIMIT', 'Áðîé ñòàòèè çà ïîêàçâàíå â RSS åìèñèè');
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Áðîé íà ñòàòèèòå, êîèòî äà áúäàò èçâåæäàíè â RSS åìèñèè.');
 @define('INSTAL_DB_UTF8', 'Ðàçðåøàâàíå íà ïðåêîäèðàíåòî íà ñèìâîëèòå ïðè ðàáîòà ñ MySQL áàçà äàííè');
index 10b5df495f7f5cd84da7539cb3c43211644aa419..af5a08f926b8c3d64a081363979950ae01f82b79 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 78777e9edfeb46a1d6f82a0a49e797f4cddbc052..8af5271e899d88b1b030785637fd2d5ade36eacd 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 26b127575ebf3358f236acd831422771100acd97..8f7055d1dccb57fab48a3d73f2c6c4ed383a4c64 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 2e7fa3f75cfd7d9b5f5da37c74583ceee6c7e715..2fc9faef05891d34220a0d23a7d703e3d0d554ff 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index f7b93430dca65360c5fb914136fac3c32d7c8020..e9e80f55fa7002434721c8c080e8bf9477d0abfc 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 34398156128712671a7abfb17788340bb084dc67..c1632a8d21da67411cddf82ac3721ca42e219d90 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index d97f6cb60bf67e9d66f857b76aa7c0308439398d..5d48e21073671239d554593ae8cbe7d076aa66fc 100644 (file)
 @define('THUMBNAIL_USING_OWN', 'Usando %s como su miniatura debido al escaso tamaño.');
 @define('THUMBNAIL_FAILED_COPY', 'Querías usar %s como tu miniatura, ¡pero ha fallado la copia!');
 @define('AUTHOR', 'Autor');
-@define('LAST_UPDATED', 'última actualización');
+@define('LAST_UPDATED', 'Última actualización');
 @define('TRACKBACK_SPECIFIC', 'URI de referencia para esta entrada');
 @define('DIRECT_LINK', 'Enlace directo a esta entrada');
 @define('COMMENT_ADDED', 'Tu comentario ha sido añadido correctamente.');
 @define('INSTALL_POPUP', 'Activar el uso de ventanas emergentes');
 @define('INSTALL_POPUP_DESC', '¿Quieres que el blog use una ventana emergente para los comentarios, referencias, etc.?');
 @define('INSTALL_EMBED', '¿Está Serendipity insertado en otra web?');
-@define('INSTALL_EMBED_DESC', 'Si quieres insertar Serendipity dentro de otra página, ajusta a "true" para eliminar cualquier cabecera y sólo mostrar los contenidos. Puedes hacer uso de la opción indexFile y usar una clase donde pongas las cabeceras normales de tu página web. ¡Lee el fichero README para más información!');
+@define('INSTALL_EMBED_DESC', 'Si quieres insertar Serendipity dentro de otra página, ajusta a "" para eliminar cualquier cabecera y sólo mostrar los contenidos. Puedes hacer uso de la opción indexFile y usar una clase donde pongas las cabeceras normales de tu página web. ¡Lee el fichero README para más información!');
 @define('INSTALL_TOP_AS_LINKS', '¿Mostrar Salidas/Sitios asociados como enlaces?');
 @define('INSTALL_TOP_AS_LINKS_DESC', '"no": Las Salidas y los Sitios asociados se muestran como texto sin formato para prevenir spam en google. "yes": Las Salidas y Sitios asociando se muestran como enlaces. "default": Usar el valor de la configuración global (recomendado).');
 @define('INSTALL_BLOCKREF', 'Sitios asociados bloqueados');
 @define('USERCONF_EMAIL', 'Correo electrónico');
 @define('USERCONF_EMAIL_DESC', 'La dirección de correo electrónico personal');
 @define('USERCONF_SENDCOMMENTS', '¿Enviar avisos de comentarios?');
-@define('USERCONF_SENDCOMMENTS_DESC', '¿Recibir correos electrónicos cuando ponen comentarios en las entradas?');
+@define('USERCONF_SENDCOMMENTS_DESC', '¿Desea que se le envíen notificaciones mediante correo electrónico cuando se reciban comentarios a las entradas?');
 @define('USERCONF_SENDTRACKBACKS', '¿Enviar avisos de referencias?');
-@define('USERCONF_SENDTRACKBACKS_DESC', '¿Recibir correos electrónicos cuando hacen referencias a las entradas?');
+@define('USERCONF_SENDTRACKBACKS_DESC', '¿Desea que se le envíen notificaciones mediante correo electrónico cuando se hagan referencias a las entradas?');
 @define('USERCONF_ALLOWPUBLISH', 'Derechos: ¿Publicar entradas?');
 @define('USERCONF_ALLOWPUBLISH_DESC', '¿El usuario puede publicar entradas?');
 @define('XML_IMAGE_TO_DISPLAY', 'Botón XML');
 @define('PLUGIN_SUPERUSER_HTTPS', 'Usar https para conectar');
 @define('PLUGIN_SUPERUSER_HTTPS_DESC', 'Hacer que el enlace para conectar apunte a una conexión https. ¡Tu servidor web necesita soporte para esto!');
 @define('INSTALL_SHOW_EXTERNAL_LINKS', '¿Poder hacer click en los enlaces externos?');
-@define('INSTALL_SHOW_EXTERNAL_LINKS_DESC', '"no": Enlaces externos no verificados (Top Salidas, Top Sitios asociados, Comentarios de usuarios) no se muestran/se muestran como texto sin formato donde se pueda para prevenir spam de google (recomendado). "yes": Enlaces externos no verificados se muestran como enlaces. ¡Puede ser modificado en la configuración del plugin de la barra lateral!');
+@define('INSTALL_SHOW_EXTERNAL_LINKS_DESC', '"no": Enlaces externos no verificados (Top Salidas, Top Sitios asociados, Comentarios de usuarios) no se muestran/se muestran como texto sin formato donde se pueda para prevenir spam de google (recomendado). "sí": Enlaces externos no verificados se muestran como enlaces. ¡Puede ser modificado en la configuración de la extensión de la barra lateral!');
 @define('PAGE_BROWSE_COMMENTS', 'Página %s de %s, total %s comentarios');
 @define('FILTERS', 'Filtros');
 @define('FIND_ENTRIES', 'Encontrar entradas');
 @define('IMPORT_FAILED', 'Importación fallida');
 @define('IMPORT_DONE', 'Importación completada con éxito');
 @define('IMPORT_WEBLOG_APP', 'Aplicación weblog');
-@define('EXPORT_FEED', 'Exportar el feed RSS completo');
+@define('EXPORT_FEED', 'Exportar la sindicación RSS completa');
 @define('STATUS', 'Estatus después de importar');
 @define('IMPORT_GENERIC_RSS', 'Importar RSS genérico');
 @define('ACTIVATE_AUTODISCOVERY', 'Enviar referencias a los enlaces encontrados en la entrada');
 @define('INSTALL_SHOWFUTURE', 'Mostrar entradas futuras');
 @define('INSTALL_SHOWFUTURE_DESC', 'Si se activa, mostrará todas las entradas con fecha futura en tu blog. La acción predeterminada es no mostrar esas entradas y sólo hacerlo cuando llegue la fecha de publicación.');
 @define('INSTALL_DBPERSISTENT', 'Usar conexiones persistentes');
-@define('INSTALL_DBPERSISTENT_DESC', 'Activar el uso de conexiones persistentes a la base de datos, lee más en <a href="http://php.net/manual/features.persistent-connections.php" target="_blank">here</a>. Normalmente no se recomienda esto');
+@define('INSTALL_DBPERSISTENT_DESC', 'Activar el uso de conexiones persistentes a la base de datos, lee más en <a href="http://php.net/manual/features.persistent-connections.php" target="_blank">here</a>. Normalmente no se recomienda');
 @define('NO_IMAGES_FOUND', 'No se encontraron imágenes');
 @define('PERSONAL_SETTINGS', 'Configuración personal');
 @define('REFERER', 'Referer');
 @define('GROUP', 'Grupo');
 @define('CREATE_NEW_GROUP', 'Crear nuevo grupo');
 @define('DELETE_GROUP', 'Estás apunto de eliminar el grupo #%d %s. ¿Estás seguro?');
-@define('USERLEVEL_OBSOLETE', 'AVISO: El atributo userlevel es ahora utilizado sólo con propósitos de compatibilidad con versiones anteriores de extensiones y autorización. ¡Los privilegios de usuarios son ahora manejados por membresías!');
+@define('USERLEVEL_OBSOLETE', 'AVISO: El atributo de nivel de acceso es ahora utilizado sólo con propósitos de compatibilidad con versiones anteriores de extensiones y autorización. ¡Los privilegios de usuarios son ahora manejados por membresías!');
 @define('SYNDICATION_PLUGIN_FEEDBURNERID', 'ID FeedBurner');
 @define('SYNDICATION_PLUGIN_FEEDBURNERID_DESC', 'El ID del feed que deseas publicar');
 @define('SYNDICATION_PLUGIN_FEEDBURNERIMG', 'Imagen FeedBurner');
@@ -810,18 +810,20 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
 @define('AUTHORS_ALLOW_SELECT_DESC', 'Si esta opción es activada, un checkbox estará al lado de cada autor en en el plugin lateral. Los usuarios pueden seleccionar estas casillas para ver las entradas de acuerdo a su selección.');
 @define('AUTHOR_PLUGIN_DESC', 'Muestra una lista de autores');
 @define('CATEGORY_PLUGIN_TEMPLATE', 'Activar Smarty-Templates?');
-@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Si esta opción es activada, el plugin utiliza las características de Smarty-Templating para producir el contenido del listado de las categorías. Si activas esto, puedes cambiar el diseño a través del archivo "plugin_categories.tpl". Toma en cuenta que esta opción tendrá un impacto en el "performance", si no necesitas diseños particulares, déjalo deshabilitado.');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Si esta opción es activada, el plugin utiliza las características de Smarty-Templating para producir el contenido del listado de las categorías. Si activas esto, puedes cambiar el diseño a través del archivo "plugin_categories.tpl". Toma en cuenta que esta opción tendrá un impacto en el desempeño, si no necesitas diseños particulares, déjalo deshabilitado.');
 @define('CATEGORY_PLUGIN_SHOWCOUNT', 'Mostrar número de entradas por categoría?');
 @define('AUTHORS_SHOW_ARTICLE_COUNT', 'Mostrar número de artículos del autor?');
 @define('AUTHORS_SHOW_ARTICLE_COUNT_DESC', 'Si esta opción es activada, el número de artículos del autor se muestra al lado del nombre del autor en paréntesis.');
-@define('CUSTOM_ADMIN_INTERFACE', 'Custom admin interface available');
+@define('CUSTOM_ADMIN_INTERFACE', 'Interfaz de la suite de administración personalizada');
 @define('COMMENT_NOT_ADDED', 'Tu comentario no ha podido ser añadido debido a que, o bien, en esta entrada ha sido deshabilitado el envío de comentarios, ingresaste datos erróneos, o tu comentario ha sido capturado por medidas anti-spam.');
 @define('INSTALL_TRACKREF', 'Activar registro de "referrers"?');
 @define('INSTALL_TRACKREF_DESC', 'Activando el registro de "referrers" podrás ver cuales sitios envían visitas a tus artículos. Últimamente esto esta siendo abusado frecuentemente por spammers, así que puedes deshabilitarlo si quieres.');
 @define('CATEGORIES_HIDE_PARENT', 'Ocular la categoría padre seleccionada?');
 @define('CATEGORIES_HIDE_PARENT_DESC', 'Si restringes el listado de categorías a una categoría especifica, por defecto verás la categoría padre (superior) dentro del listado generado. Si deshabilitas esta opción, el nombre de la categoría padre no será mostrado.');
 @define('WARNING_NO_GROUPS_SELECTED', 'Advertencia: No haz seleccionado ningún grupo de miembros. Esto efectivamente te dejaría fuera de la gerencia del grupo de usuarios, por lo tanto, tu membresía de grupo no fue cambiada.');
-@define('INSTALL_RSSFETCHLIMIT', 'Entries to display in Feeds');
-@define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
-@define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
-@define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('INSTALL_RSSFETCHLIMIT', 'Entradas a mostrar en las sindicaciones');
+@define('INSTALL_RSSFETCHLIMIT_DESC', 'Número de entradas a mostrar por cada página.');
+@define('INSTAL_DB_UTF8', 'Activar conversión del juego de caracteres en la BD');
+@define('INSTAL_DB_UTF8_DESC', 'Envía una consulta MySQL "SET NAMES" para definir el juego de caracteres requerido por la base de datos. Actívalo o desactívalo sí ves caracteres extraños en tu blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 235273837c0cd883b78a31ea0f4681e3ffaff441..f714c5798b8ff96fc7d563ee6ad69561d6aeb746 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index a17b545128dcc3d73bab9277bdba1a7c3aceb706..73eda2280024d022922d793ed25e6207e675f508 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 87ef8bcf73cf2e3b78daa4637cbbabde8c77deb9..f187c606116151c93346bc3e579f643554ed2ecb 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 5b3e10af76653e8dd424398d5240f821d364a544..b874f741aa17041aa05d20e0f8024fd607e74c40 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 8e2bd4ab12ea06d85f18ae0397543222b7a3c344..a777800545595aef0dd28108e2cf8442bc037786 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 0bc383beeb537f62a1b3efbd76bab31064274e91..9a10fd673a3a5a5d0817aca8503bf7aa697d2d95 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index c648f4fbe52e13d8f57ba974412c3b9e2936ad2a..96b993a9623806e56bfc579017c5ada40190b69e 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 30ef6af96e22a08fdf5fb234b2b5c7ba7c3c6578..1311847dbb132b42c7511cbcf8bfae38705b898d 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index be4470b74dde53f8ddc76bc107422e44aee5d00d..7d94c1cfa54f8dd93fe9b8c370581216074edd7b 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 3135d6095476537cbc6c50743f555f703fbdb1b4..dea59741a2a20971cca05741678cc769bf69f296 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 82f7ec25da7928026b258efe240a9ee0ae770d74..732c500958ab2843dca2defd6ad4c39aed6f832a 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 53634bd3cdb458e521fdb11af89b919bfa63f6aa..150437abab85a69fb5e3e0ef1a9adf155931bb05 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 93daef2e9d8d7dbf59c6919b792e5d6a188acf58..2945f472ce0aeb96580ef5babe44899e5e903e01 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 9a24a89fc70da34f20214bcbfe1217d9ee95043b..e3ec56a48aded7ff259efc1b6b42f82139ab5f1d 100644 (file)
@@ -811,3 +811,5 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 03751016a38a9e18377b4c28d7c42b130ccff6dc..eabbc39b830c41e114bbc9454febdbf446e22a8b 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index fef1a3b1a66dd9022fcc30832fe8867a5aa3469e..610e74be8b739c2e070890fa83d9c4e8c9800400 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 7a54e956c03ee0fe132de4b09be8906e68f79992..c8c2fb378becb9becdfbef684b583502af0d3c80 100644 (file)
@@ -810,3 +810,5 @@ $i18n_unknown = 'tw';
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index f500b0d90dd1c7a04b5dc2cea5dfa2a6cb898a3a..addbd97c666c5aaafa2ee1b13ca56c8414fe2979 100644 (file)
@@ -810,3 +810,5 @@ $i18n_unknown = 'tw';
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');
index 647f89ba8ec1bd83fe9d7e7fd66909c385a71b23..9b6ca26c873b6617274f84777793b281a7395ac2 100644 (file)
 @define('INSTALL_RSSFETCHLIMIT_DESC', 'Number of entries to display for each page on the RSS Feed.');
 @define('INSTAL_DB_UTF8', 'Enable DB-charset conversion');
 @define('INSTAL_DB_UTF8_DESC', 'Issues a MySQL "SET NAMES" query to indicate the required charset for the database. Turn this on or off, if you see weird characters in your blog.');
+@define('ONTHEFLYSYNCH', 'Enable on-the-fly media synchronization');
+@define('ONTHEFLYSYNCH_DESC', 'If enabled, Serendipity will compare the media database with the files stored on your server and synchronize the database and directory contents.');