From 01f2a51f5dda90d00b367f083868c8fb66a190a1 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Mon, 13 Feb 2006 10:57:53 +0000 Subject: [PATCH] Make the "on the fly synchronization" configurable --- include/functions_images.inc.php | 33 ++++++++++++----------- include/tpl/config_local.inc.php | 7 +++++ lang/UTF-8/serendipity_lang_bg.inc.php | 2 ++ lang/UTF-8/serendipity_lang_cn.inc.php | 4 ++- lang/UTF-8/serendipity_lang_cs.inc.php | 4 ++- lang/UTF-8/serendipity_lang_cz.inc.php | 4 ++- lang/UTF-8/serendipity_lang_da.inc.php | 4 ++- lang/UTF-8/serendipity_lang_de.inc.php | 4 ++- lang/UTF-8/serendipity_lang_en.inc.php | 4 ++- lang/UTF-8/serendipity_lang_es.inc.php | 32 +++++++++++----------- lang/UTF-8/serendipity_lang_fa.inc.php | 4 ++- lang/UTF-8/serendipity_lang_fi.inc.php | 4 ++- lang/UTF-8/serendipity_lang_fr.inc.php | 4 ++- lang/UTF-8/serendipity_lang_hu.inc.php | 2 ++ lang/UTF-8/serendipity_lang_is.inc.php | 4 ++- lang/UTF-8/serendipity_lang_it.inc.php | 4 ++- lang/UTF-8/serendipity_lang_ja.inc.php | 4 ++- lang/UTF-8/serendipity_lang_ko.inc.php | 4 ++- lang/UTF-8/serendipity_lang_nl.inc.php | 4 ++- lang/UTF-8/serendipity_lang_no.inc.php | 4 ++- lang/UTF-8/serendipity_lang_pt.inc.php | 4 ++- lang/UTF-8/serendipity_lang_pt_PT.inc.php | 2 ++ lang/UTF-8/serendipity_lang_ro.inc.php | 2 ++ lang/UTF-8/serendipity_lang_ru.inc.php | 4 ++- lang/UTF-8/serendipity_lang_se.inc.php | 2 ++ lang/UTF-8/serendipity_lang_ta.inc.php | 2 ++ lang/UTF-8/serendipity_lang_tn.inc.php | 4 ++- lang/UTF-8/serendipity_lang_tw.inc.php | 4 ++- lang/UTF-8/serendipity_lang_zh.inc.php | 4 ++- lang/addlang.txt | 6 ++--- lang/plugin_lang.php | 2 ++ lang/serendipity_lang_bg.inc.php | 2 ++ lang/serendipity_lang_cn.inc.php | 2 ++ lang/serendipity_lang_cs.inc.php | 2 ++ lang/serendipity_lang_cz.inc.php | 2 ++ lang/serendipity_lang_da.inc.php | 2 ++ lang/serendipity_lang_de.inc.php | 2 ++ lang/serendipity_lang_en.inc.php | 2 ++ lang/serendipity_lang_es.inc.php | 30 +++++++++++---------- lang/serendipity_lang_fa.inc.php | 2 ++ lang/serendipity_lang_fi.inc.php | 2 ++ lang/serendipity_lang_fr.inc.php | 2 ++ lang/serendipity_lang_hu.inc.php | 2 ++ lang/serendipity_lang_is.inc.php | 2 ++ lang/serendipity_lang_it.inc.php | 2 ++ lang/serendipity_lang_ja.inc.php | 2 ++ lang/serendipity_lang_ko.inc.php | 2 ++ lang/serendipity_lang_nl.inc.php | 2 ++ lang/serendipity_lang_no.inc.php | 2 ++ lang/serendipity_lang_pt.inc.php | 2 ++ lang/serendipity_lang_pt_PT.inc.php | 2 ++ lang/serendipity_lang_ro.inc.php | 2 ++ lang/serendipity_lang_ru.inc.php | 2 ++ lang/serendipity_lang_se.inc.php | 2 ++ lang/serendipity_lang_ta.inc.php | 2 ++ lang/serendipity_lang_tn.inc.php | 2 ++ lang/serendipity_lang_tw.inc.php | 2 ++ lang/serendipity_lang_zh.inc.php | 2 ++ 58 files changed, 185 insertions(+), 69 deletions(-) diff --git a/include/functions_images.inc.php b/include/functions_images.inc.php index 18565b9..258606f 100644 --- a/include/functions_images.inc.php +++ b/include/functions_images.inc.php @@ -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.
"; #DEBUG + if ($debug) echo "{$sFile['relpath']} is a directory.
"; array_push($paths, $sFile); } else { - echo "{$sFile['relpath']} is a file.
"; #DEBUG + if ($debug) echo "{$sFile['relpath']} is a file.
"; // Store the file in our array, remove any ending slashes $aFilesOnDisk[$sFile['relpath']] = 1; } unset($aResultSet[$sKey]); } sort($paths); - echo "

Got files:

" . print_r($aFilesOnDisk, true) . "

"; #DEBUG + if ($debug) echo "

Got files:

" . print_r($aFilesOnDisk, true) . "

"; $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 "

Got images:

" . print_r($aResultSet, true) . "

"; #DEBUG + if ($debug) echo "

Got images:

" . print_r($aResultSet, true) . "

"; 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 "

File name is $sFileName,
thumbnail is $sThumbNailFile

"; #DEBUG + if ($debug) echo "

File name is $sFileName,
thumbnail is $sThumbNailFile

"; unset($aResultSet[$sKey]); if (isset($aFilesOnDisk[$sFileName])){ unset($aFilesOnDisk[$sFileName]); } else { - echo "Deleting Image {$sFile['id']}
\n"; #DEBUG - #serendipity_deleteImage($sFile['id']); #DEBUGGING + if ($debug) "Deleting Image {$sFile['id']}
\n"; + serendipity_deleteImage($sFile['id']); ++$nCount; } @@ -1215,19 +1216,19 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa } if ($nCount > 0){ - echo "

Cleaned up ".$nCount." database entries

"; #DEBUG + if ($debug) echo "

Cleaned up ".$nCount." database entries

"; } serendipity_set_config_var('last_image_hash', $serendipity['current_image_hash'], 0); $aUnmatchedOnDisk = array_keys($aFilesOnDisk); - echo "

Got unmatched files:

" . print_r($aUnmatchedOnDisk, true) . "

"; #DEBUG + if ($debug) echo "

Got unmatched files:

" . print_r($aUnmatchedOnDisk, true) . "

"; $nCount = 0; foreach ($aUnmatchedOnDisk AS $sFile) { if (preg_match('@\.' . $serendipity['thumbSuffix'] . '\.@', $sFile)) { - echo "

Skipping thumbnailed file $sFile

"; #DEBUG + if ($debug) echo "

Skipping thumbnailed file $sFile

"; continue; } else { - echo "

Checking $sFile

"; #DEBUG + if ($debug) echo "

Checking $sFile

"; } // 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 "

Inserting image $sFileName from $sDirectory

" . print_r($aImageData, true) . "
into database

"; #DEBUG + if ($debug) echo "

Inserting image $sFileName from $sDirectory

" . print_r($aImageData, true) . "
into database

"; # 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 "

Inserted ".$nCount." images into the database

"; #DEBUG + if ($debug) echo "

Inserted ".$nCount." images into the database

"; } } else { - echo "

Media Gallery database is up to date

"; #DEBUG + if ($debug) echo "

Media Gallery database is up to date

"; } /* diff --git a/include/tpl/config_local.inc.php b/include/tpl/config_local.inc.php index bfd12d8..fd74173 100644 --- a/include/tpl/config_local.inc.php +++ b/include/tpl/config_local.inc.php @@ -500,6 +500,13 @@ 'type' => 'int', 'permission' => 'siteConfiguration', 'default' => 110), + + array('var' => 'onTheFlySynch', + 'title' => ONTHEFLYSYNCH, + 'description' => ONTHEFLYSYNCH_DESC, + 'type' => 'bool', + 'permission' => 'siteConfiguration', + 'default' => true), )); return $res; diff --git a/lang/UTF-8/serendipity_lang_bg.inc.php b/lang/UTF-8/serendipity_lang_bg.inc.php index a853340..d3034b4 100644 --- a/lang/UTF-8/serendipity_lang_bg.inc.php +++ b/lang/UTF-8/serendipity_lang_bg.inc.php @@ -791,6 +791,8 @@ @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 база данни'); diff --git a/lang/UTF-8/serendipity_lang_cn.inc.php b/lang/UTF-8/serendipity_lang_cn.inc.php index 9b4e6a9..abfcae9 100644 --- a/lang/UTF-8/serendipity_lang_cn.inc.php +++ b/lang/UTF-8/serendipity_lang_cn.inc.php @@ -1,4 +1,4 @@ - @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_cz.inc.php b/lang/UTF-8/serendipity_lang_cz.inc.php index 0b5cd3b..3b067dc 100644 --- a/lang/UTF-8/serendipity_lang_cz.inc.php +++ b/lang/UTF-8/serendipity_lang_cz.inc.php @@ -1,4 +1,4 @@ - @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_da.inc.php b/lang/UTF-8/serendipity_lang_da.inc.php index d730782..f140931 100644 --- a/lang/UTF-8/serendipity_lang_da.inc.php +++ b/lang/UTF-8/serendipity_lang_da.inc.php @@ -1,4 +1,4 @@ - @@ -809,3 +809,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_de.inc.php b/lang/UTF-8/serendipity_lang_de.inc.php index a712239..7e73e96 100644 --- a/lang/UTF-8/serendipity_lang_de.inc.php +++ b/lang/UTF-8/serendipity_lang_de.inc.php @@ -1,4 +1,4 @@ -, @@ -129,7 +129,7 @@ @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.'); @@ -373,7 +373,7 @@ @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 "sí" 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'); @@ -403,9 +403,9 @@ @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'); @@ -453,7 +453,7 @@ @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'); @@ -559,7 +559,7 @@ @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'); @@ -571,7 +571,7 @@ @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 here. Normalmente no se recomienda esto'); +@define('INSTALL_DBPERSISTENT_DESC', 'Activar el uso de conexiones persistentes a la base de datos, lee más en here. Normalmente no se recomienda'); @define('NO_IMAGES_FOUND', 'No se encontraron imágenes'); @define('PERSONAL_SETTINGS', 'Configuración personal'); @define('REFERER', 'Referer'); @@ -713,7 +713,7 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_fa.inc.php b/lang/UTF-8/serendipity_lang_fa.inc.php index e0b08c3..0bc6396 100644 --- a/lang/UTF-8/serendipity_lang_fa.inc.php +++ b/lang/UTF-8/serendipity_lang_fa.inc.php @@ -1,4 +1,4 @@ - @@ -809,3 +809,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_fi.inc.php b/lang/UTF-8/serendipity_lang_fi.inc.php index ffba68d..622c697 100644 --- a/lang/UTF-8/serendipity_lang_fi.inc.php +++ b/lang/UTF-8/serendipity_lang_fi.inc.php @@ -1,4 +1,4 @@ - @@ -807,3 +807,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_fr.inc.php b/lang/UTF-8/serendipity_lang_fr.inc.php index 92f042c..3195f9f 100644 --- a/lang/UTF-8/serendipity_lang_fr.inc.php +++ b/lang/UTF-8/serendipity_lang_fr.inc.php @@ -1,4 +1,4 @@ - @@ -814,3 +814,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_hu.inc.php b/lang/UTF-8/serendipity_lang_hu.inc.php index 9b30b8b..e659000 100644 --- a/lang/UTF-8/serendipity_lang_hu.inc.php +++ b/lang/UTF-8/serendipity_lang_hu.inc.php @@ -808,3 +808,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_is.inc.php b/lang/UTF-8/serendipity_lang_is.inc.php index 753c7ee..0265b15 100644 --- a/lang/UTF-8/serendipity_lang_is.inc.php +++ b/lang/UTF-8/serendipity_lang_is.inc.php @@ -1,4 +1,4 @@ - @@ -808,3 +808,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_it.inc.php b/lang/UTF-8/serendipity_lang_it.inc.php index 620b875..1d75bae 100644 --- a/lang/UTF-8/serendipity_lang_it.inc.php +++ b/lang/UTF-8/serendipity_lang_it.inc.php @@ -1,4 +1,4 @@ - @@ -809,3 +809,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_ja.inc.php b/lang/UTF-8/serendipity_lang_ja.inc.php index ca155d7..2ed4de5 100644 --- a/lang/UTF-8/serendipity_lang_ja.inc.php +++ b/lang/UTF-8/serendipity_lang_ja.inc.php @@ -1,4 +1,4 @@ -, 2004-2005. @@ -811,3 +811,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_ko.inc.php b/lang/UTF-8/serendipity_lang_ko.inc.php index 3a08e98..da77332 100644 --- a/lang/UTF-8/serendipity_lang_ko.inc.php +++ b/lang/UTF-8/serendipity_lang_ko.inc.php @@ -1,4 +1,4 @@ - @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_nl.inc.php b/lang/UTF-8/serendipity_lang_nl.inc.php index a126cea..15e81ed 100644 --- a/lang/UTF-8/serendipity_lang_nl.inc.php +++ b/lang/UTF-8/serendipity_lang_nl.inc.php @@ -1,4 +1,4 @@ - @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_no.inc.php b/lang/UTF-8/serendipity_lang_no.inc.php index 3d7185b..8c9b299 100644 --- a/lang/UTF-8/serendipity_lang_no.inc.php +++ b/lang/UTF-8/serendipity_lang_no.inc.php @@ -1,4 +1,4 @@ - @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_pt.inc.php b/lang/UTF-8/serendipity_lang_pt.inc.php index d5ec30a..67eb376 100644 --- a/lang/UTF-8/serendipity_lang_pt.inc.php +++ b/lang/UTF-8/serendipity_lang_pt.inc.php @@ -1,4 +1,4 @@ - @@ -812,3 +812,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_pt_PT.inc.php b/lang/UTF-8/serendipity_lang_pt_PT.inc.php index 4e69e5d..4d0cdf0 100644 --- a/lang/UTF-8/serendipity_lang_pt_PT.inc.php +++ b/lang/UTF-8/serendipity_lang_pt_PT.inc.php @@ -815,3 +815,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_ro.inc.php b/lang/UTF-8/serendipity_lang_ro.inc.php index 93daef2..2945f47 100644 --- a/lang/UTF-8/serendipity_lang_ro.inc.php +++ b/lang/UTF-8/serendipity_lang_ro.inc.php @@ -808,3 +808,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_ru.inc.php b/lang/UTF-8/serendipity_lang_ru.inc.php index c3c9e09..02f5507 100644 --- a/lang/UTF-8/serendipity_lang_ru.inc.php +++ b/lang/UTF-8/serendipity_lang_ru.inc.php @@ -1,4 +1,4 @@ - @@ -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.'); diff --git a/lang/UTF-8/serendipity_lang_se.inc.php b/lang/UTF-8/serendipity_lang_se.inc.php index 20071cf..6c6126d 100644 --- a/lang/UTF-8/serendipity_lang_se.inc.php +++ b/lang/UTF-8/serendipity_lang_se.inc.php @@ -807,3 +807,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_ta.inc.php b/lang/UTF-8/serendipity_lang_ta.inc.php index fef1a3b..610e74b 100644 --- a/lang/UTF-8/serendipity_lang_ta.inc.php +++ b/lang/UTF-8/serendipity_lang_ta.inc.php @@ -807,3 +807,5 @@ @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.'); diff --git a/lang/UTF-8/serendipity_lang_tn.inc.php b/lang/UTF-8/serendipity_lang_tn.inc.php index f1b4de1..5651c51 100644 --- a/lang/UTF-8/serendipity_lang_tn.inc.php +++ b/lang/UTF-8/serendipity_lang_tn.inc.php @@ -1,4 +1,4 @@ - @@ -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.'); diff --git a/lang/UTF-8/serendipity_lang_tw.inc.php b/lang/UTF-8/serendipity_lang_tw.inc.php index 167ed51..9950167 100644 --- a/lang/UTF-8/serendipity_lang_tw.inc.php +++ b/lang/UTF-8/serendipity_lang_tw.inc.php @@ -1,4 +1,4 @@ - @@ -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.'); diff --git a/lang/UTF-8/serendipity_lang_zh.inc.php b/lang/UTF-8/serendipity_lang_zh.inc.php index 295a984..a1ebeac 100644 --- a/lang/UTF-8/serendipity_lang_zh.inc.php +++ b/lang/UTF-8/serendipity_lang_zh.inc.php @@ -1,4 +1,4 @@ - $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.'); diff --git a/lang/serendipity_lang_bg.inc.php b/lang/serendipity_lang_bg.inc.php index c902923..e94fa9c 100644 --- a/lang/serendipity_lang_bg.inc.php +++ b/lang/serendipity_lang_bg.inc.php @@ -791,6 +791,8 @@ @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 áàçà äàííè'); diff --git a/lang/serendipity_lang_cn.inc.php b/lang/serendipity_lang_cn.inc.php index 10b5df4..af5a08f 100644 --- a/lang/serendipity_lang_cn.inc.php +++ b/lang/serendipity_lang_cn.inc.php @@ -808,3 +808,5 @@ @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.'); diff --git a/lang/serendipity_lang_cs.inc.php b/lang/serendipity_lang_cs.inc.php index 78777e9..8af5271 100644 --- a/lang/serendipity_lang_cs.inc.php +++ b/lang/serendipity_lang_cs.inc.php @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/serendipity_lang_cz.inc.php b/lang/serendipity_lang_cz.inc.php index 26b1275..8f7055d 100644 --- a/lang/serendipity_lang_cz.inc.php +++ b/lang/serendipity_lang_cz.inc.php @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/serendipity_lang_da.inc.php b/lang/serendipity_lang_da.inc.php index 2e7fa3f..2fc9fae 100644 --- a/lang/serendipity_lang_da.inc.php +++ b/lang/serendipity_lang_da.inc.php @@ -809,3 +809,5 @@ @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.'); diff --git a/lang/serendipity_lang_de.inc.php b/lang/serendipity_lang_de.inc.php index f7b9343..e9e80f5 100644 --- a/lang/serendipity_lang_de.inc.php +++ b/lang/serendipity_lang_de.inc.php @@ -808,3 +808,5 @@ @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.'); diff --git a/lang/serendipity_lang_en.inc.php b/lang/serendipity_lang_en.inc.php index 3439815..c1632a8 100644 --- a/lang/serendipity_lang_en.inc.php +++ b/lang/serendipity_lang_en.inc.php @@ -807,3 +807,5 @@ @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.'); diff --git a/lang/serendipity_lang_es.inc.php b/lang/serendipity_lang_es.inc.php index d97f6cb..5d48e21 100644 --- a/lang/serendipity_lang_es.inc.php +++ b/lang/serendipity_lang_es.inc.php @@ -129,7 +129,7 @@ @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.'); @@ -373,7 +373,7 @@ @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 "sí" 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'); @@ -403,9 +403,9 @@ @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'); @@ -453,7 +453,7 @@ @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'); @@ -559,7 +559,7 @@ @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'); @@ -571,7 +571,7 @@ @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 here. Normalmente no se recomienda esto'); +@define('INSTALL_DBPERSISTENT_DESC', 'Activar el uso de conexiones persistentes a la base de datos, lee más en here. Normalmente no se recomienda'); @define('NO_IMAGES_FOUND', 'No se encontraron imágenes'); @define('PERSONAL_SETTINGS', 'Configuración personal'); @define('REFERER', 'Referer'); @@ -713,7 +713,7 @@ @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.'); diff --git a/lang/serendipity_lang_fa.inc.php b/lang/serendipity_lang_fa.inc.php index 2352738..f714c57 100644 --- a/lang/serendipity_lang_fa.inc.php +++ b/lang/serendipity_lang_fa.inc.php @@ -809,3 +809,5 @@ @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.'); diff --git a/lang/serendipity_lang_fi.inc.php b/lang/serendipity_lang_fi.inc.php index a17b545..73eda22 100644 --- a/lang/serendipity_lang_fi.inc.php +++ b/lang/serendipity_lang_fi.inc.php @@ -807,3 +807,5 @@ @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.'); diff --git a/lang/serendipity_lang_fr.inc.php b/lang/serendipity_lang_fr.inc.php index 87ef8bc..f187c60 100644 --- a/lang/serendipity_lang_fr.inc.php +++ b/lang/serendipity_lang_fr.inc.php @@ -814,3 +814,5 @@ @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.'); diff --git a/lang/serendipity_lang_hu.inc.php b/lang/serendipity_lang_hu.inc.php index 5b3e10a..b874f74 100644 --- a/lang/serendipity_lang_hu.inc.php +++ b/lang/serendipity_lang_hu.inc.php @@ -808,3 +808,5 @@ @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.'); diff --git a/lang/serendipity_lang_is.inc.php b/lang/serendipity_lang_is.inc.php index 8e2bd4a..a777800 100644 --- a/lang/serendipity_lang_is.inc.php +++ b/lang/serendipity_lang_is.inc.php @@ -808,3 +808,5 @@ @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.'); diff --git a/lang/serendipity_lang_it.inc.php b/lang/serendipity_lang_it.inc.php index 0bc383b..9a10fd6 100644 --- a/lang/serendipity_lang_it.inc.php +++ b/lang/serendipity_lang_it.inc.php @@ -809,3 +809,5 @@ @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.'); diff --git a/lang/serendipity_lang_ja.inc.php b/lang/serendipity_lang_ja.inc.php index c648f4f..96b993a 100644 --- a/lang/serendipity_lang_ja.inc.php +++ b/lang/serendipity_lang_ja.inc.php @@ -811,3 +811,5 @@ @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.'); diff --git a/lang/serendipity_lang_ko.inc.php b/lang/serendipity_lang_ko.inc.php index 30ef6af..1311847 100644 --- a/lang/serendipity_lang_ko.inc.php +++ b/lang/serendipity_lang_ko.inc.php @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/serendipity_lang_nl.inc.php b/lang/serendipity_lang_nl.inc.php index be4470b..7d94c1c 100644 --- a/lang/serendipity_lang_nl.inc.php +++ b/lang/serendipity_lang_nl.inc.php @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/serendipity_lang_no.inc.php b/lang/serendipity_lang_no.inc.php index 3135d60..dea5974 100644 --- a/lang/serendipity_lang_no.inc.php +++ b/lang/serendipity_lang_no.inc.php @@ -810,3 +810,5 @@ @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.'); diff --git a/lang/serendipity_lang_pt.inc.php b/lang/serendipity_lang_pt.inc.php index 82f7ec2..732c500 100644 --- a/lang/serendipity_lang_pt.inc.php +++ b/lang/serendipity_lang_pt.inc.php @@ -812,3 +812,5 @@ @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.'); diff --git a/lang/serendipity_lang_pt_PT.inc.php b/lang/serendipity_lang_pt_PT.inc.php index 53634bd..150437a 100644 --- a/lang/serendipity_lang_pt_PT.inc.php +++ b/lang/serendipity_lang_pt_PT.inc.php @@ -815,3 +815,5 @@ @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.'); diff --git a/lang/serendipity_lang_ro.inc.php b/lang/serendipity_lang_ro.inc.php index 93daef2..2945f47 100644 --- a/lang/serendipity_lang_ro.inc.php +++ b/lang/serendipity_lang_ro.inc.php @@ -808,3 +808,5 @@ @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.'); diff --git a/lang/serendipity_lang_ru.inc.php b/lang/serendipity_lang_ru.inc.php index 9a24a89..e3ec56a 100644 --- a/lang/serendipity_lang_ru.inc.php +++ b/lang/serendipity_lang_ru.inc.php @@ -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.'); diff --git a/lang/serendipity_lang_se.inc.php b/lang/serendipity_lang_se.inc.php index 0375101..eabbc39 100644 --- a/lang/serendipity_lang_se.inc.php +++ b/lang/serendipity_lang_se.inc.php @@ -807,3 +807,5 @@ @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.'); diff --git a/lang/serendipity_lang_ta.inc.php b/lang/serendipity_lang_ta.inc.php index fef1a3b..610e74b 100644 --- a/lang/serendipity_lang_ta.inc.php +++ b/lang/serendipity_lang_ta.inc.php @@ -807,3 +807,5 @@ @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.'); diff --git a/lang/serendipity_lang_tn.inc.php b/lang/serendipity_lang_tn.inc.php index 7a54e95..c8c2fb3 100644 --- a/lang/serendipity_lang_tn.inc.php +++ b/lang/serendipity_lang_tn.inc.php @@ -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.'); diff --git a/lang/serendipity_lang_tw.inc.php b/lang/serendipity_lang_tw.inc.php index f500b0d..addbd97 100644 --- a/lang/serendipity_lang_tw.inc.php +++ b/lang/serendipity_lang_tw.inc.php @@ -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.'); diff --git a/lang/serendipity_lang_zh.inc.php b/lang/serendipity_lang_zh.inc.php index 647f89b..9b6ca26 100644 --- a/lang/serendipity_lang_zh.inc.php +++ b/lang/serendipity_lang_zh.inc.php @@ -808,3 +808,5 @@ @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.'); -- 2.39.5