]> git.mjollnir.org Git - s9y.git/commitdiff
Patch by Anthem to allow Calendar to use event hooks for showing other
authorgarvinhicking <garvinhicking>
Wed, 10 Aug 2005 10:59:40 +0000 (10:59 +0000)
committergarvinhicking <garvinhicking>
Wed, 10 Aug 2005 10:59:40 +0000 (10:59 +0000)
plugin's outputs.

58 files changed:
docs/NEWS
include/plugin_internal.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_tn.inc.php
lang/UTF-8/serendipity_lang_tw.inc.php
lang/UTF-8/serendipity_lang_zh.inc.php
lang/addlang.txt
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_tn.inc.php
lang/serendipity_lang_tw.inc.php
lang/serendipity_lang_zh.inc.php
templates/default-rtl/plugin_calendar.tpl
templates/default/plugin_calendar.tpl
templates/wp/plugin_calendar.tpl

index 6f06344d24bc2e37455bf014aeed9d3d6a827b87..e5c4af0ce60ff73f3743a324812ac706717ac9b2 100644 (file)
--- a/docs/NEWS
+++ b/docs/NEWS
@@ -3,6 +3,11 @@
 Version 0.9 ()
 ------------------------------------------------------------------------
 
+    * New Plugin API Hook "frontend_calendar" which allows to hook into
+      sidebar calendar creation. Needs to be enabled in the calendar
+      plugin configuration and needs a patch to the plugin_calendar.tpl
+      file which is done in all bundled themes. (Anthem)
+
     * Atom 1.0 feed support (garvinhicking)
 
     * MoveableType importer now also recognizes comments and trackbacks.
index 971d3671c2e0689d09dc7765b07880704d1f2d5a..ceafc56b1d35b0020ec5aae4f52897fe9e1a25c5 100644 (file)
@@ -9,7 +9,7 @@ class serendipity_calendar_plugin extends serendipity_plugin {
     {
         $propbag->add('name',        CALENDAR);
         $propbag->add('description', QUICKJUMP_CALENDAR);
-        $propbag->add('configuration', array('beginningOfWeek'));
+        $propbag->add('configuration', array('beginningOfWeek', 'enableExtEvents'));
         $propbag->add('stackable',     false);
         $propbag->add('author',        'Serendipity Team');
         $propbag->add('version',       '1.0');
@@ -32,6 +32,13 @@ class serendipity_calendar_plugin extends serendipity_plugin {
                 $propbag->add('default',     1);
                 break;
 
+            case 'enableExtEvents':
+                $propbag->add('type',        'boolean');
+                $propbag->add('name',        CALENDAR_ENABLE_EXTERNAL_EVENTS);
+                $propbag->add('description', CALENDAR_EXTEVENT_DESC);
+                $propbag->add('default',     false);
+                break;
+
             default:
                 return false;
         }
@@ -257,9 +264,19 @@ class serendipity_calendar_plugin extends serendipity_plugin {
                 if (($x > 0 || $y >= $firstDayWeekDay) && $currDay <= $nrOfDays) {
                     $printDay = $currDay;
     
-                    if ($today_year == $year && $today_month == $month && $today_day == $currDay) {
+                    if ($today_day == $currDay && $today_month == $month && $today_year == $year) {
                         $cellProps['Today'] = 1;
                     }
+
+                    if (isset($externalevents[$currDay])) {
+                        if (isset($externalevents[$currDay]['Class'])) {
+                            $cellProps[$externalevents[$currDay]['Class']] = 1;
+                        }
+                        if (isset($externalevents[$currDay]['Title'])) {
+                            $cellProps['Title'] = htmlspecialchars($externalevents[$currDay]['Title']);
+                        }
+                    }
+
                     if (isset($activeDays[$currDay]) && $activeDays[$currDay] > 1) {
                         $cellProps['Active'] = 1;
                         $cellProps['Link']   = serendipity_archiveDateUrl(sprintf('%4d/%02d/%02d', $year, $month, $currDay) . $add_query );
index 9b8c446cc75d4c0dab13d725b029abfcbcffdb53..3452909f8d7c2c187312f0a9ee3d034409142bd9 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_bg.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_bg.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) 2004 Bogomil Shopov <bogomil@spisanie.com>
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index c2334f4aadf4d3ac4a1bbb1cfbba517ea8e480fe..89277a3a2bfbfefac4ddcff40ce63097350a95eb 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cn.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_cn.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index a39ef0bdb0a0cb0dd6c20a79e68fc816fd08080d..3f979d6e31bf741a33b1e36d0bac4e78ac5ee5ba 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cs.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_cs.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 90a4094b1c064f95fa78257517f74932be3ac3fa..38113b2e10ef743fc471d0d3a5d1e3cedf657df3 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_cz.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_cz.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index fad1a8d120087f6fb845d426021aefb09e283bd1..dc7aa5445f2ed9a7c25bdc53f6d586b101c723c9 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_da.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_da.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index d4bb9b7d30ccdccc7aab6d32396969f0fb229a23..b4be716944256ef1ca9358d1f5073c3ea7d08e2c 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_de.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_de.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 8b133378c4e12f4dc4baaad54f3e3fddb369ea8b..835aa2343b850933c5fff2523970ddb647a40c44 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_en.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_en.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 292619c56cd299592e64f868741d2407f8c767a9..de6d921803b9668a347ac1bf8b1dcaa15a214398 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_es.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_es.inc.php 369 2005-08-04 13:20:46Z garvinhicking $
 # 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('CHECK_N_SAVE', 'Revisa y guarda');
 @define('DIRECTORY_WRITE_ERROR', 'No puedes escribir en el directorio %s. Comprueba los permisos.');
 @define('DIRECTORY_CREATE_ERROR', 'El directorio %s no existe y no puede ser creado. Créalo manualmente.');
-@define('DIRECTORY_RUN_CMD', ' -> ejecuta <i>%s %s</i>');
+@define('DIRECTORY_RUN_CMD', ' - ejecuta <i>%s %s</i>');
 @define('CANT_EXECUTE_BINARY', 'No se puede ejecutar %s');
 @define('FILE_WRITE_ERROR', 'No se puede escribir el fichero %s.');
 @define('FILE_CREATE_YOURSELF', 'Crea el fichero tu mismo o verifica los permisos');
 @define('XML_IMAGE_TO_DISPLAY', 'Botón XML');
 @define('XML_IMAGE_TO_DISPLAY_DESC','Enlaces a feeds XML se mostrarán con esta imagen. Déjalo vacío para el valor predeterminado, introduce \'none\' para desactivar.');
 @define('ENTRY_SAVED', 'Tu entrada ha sido guardada');
-@define('SUCCESS', 'éxito');
+@define('SUCCESS', 'Ã\89xito');
 
 @define('NUMBER_FORMAT_DECIMALS', '2');
 @define('NUMBER_FORMAT_DECPOINT', ',');
 @define('ERROR_FILE_FORBIDDEN', 'No te está permitido transferir ficheros con contenido activo');
 @define('ADMIN', 'Administración');
 @define('ADMIN_FRONTPAGE', 'Página principal');
-@define('QUOTE', 'Quote');
+@define('QUOTE', 'Cuota');
 @define('IFRAME_SAVE', 'Serendipity está guardando tu entrada, creando referencias y llevando a cabo las posibles llamadas XML-RPC. Esto puede durar un tiempo..');
 @define('IFRAME_SAVE_DRAFT', 'Se ha guardado un borrador de esta entrada');
 @define('IFRAME_PREVIEW', 'Serendipity está creando la vista previa de tu entrada...');
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index bde0e6aefb802747d7280ba11c111ad4428c7863..ae0e2997e9755fdc89e72cb30633bec5f784076f 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fa.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_fa.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index d5a91058386cb19e525c776623e68e978cbc936a..7f9383eb4dd8a74b4efeb4aca2a9188c350a7f5d 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fi.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_fi.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index ccab66e2264cea618dde28a0a8161642aac27af3..de763d1a3ac073d1bc0d5e39cc55edb337c873d0 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_fr.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_fr.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 31013cc37d1a5cf7a0f5eac383655a22551cf5d4..3bf837352045f593473f96fe10cc8f83f8c60006 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 0795b803d2bfcadd8c19a24442d870674c7e5fbc..33017e773b3cf61d6d903974d04f85994f820d0f 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_is.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_is.inc.php 378 2005-08-08 09:49:36Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 94eb0be623e0bb23668208043c755b26d62ce67b..3030bd31c4b16b4bd335afeeea979dd8bed20f04 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_it.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_it.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 34ad54fa3ea1d5e264eb80a6923079f8fae3f57e..adb61cfa8bc9d7e4325251bd0878d3a7d43fa5e0 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ja.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
+<?php # $Id: serendipity_lang_ja.inc.php 354 2005-08-03 05:32:25Z elf2000 $
 # 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.
@@ -774,4 +774,5 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('CHARSET_NATIVE', 'ネイティブ');
 @define('INSTALL_CHARSET', '文字コード選択');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
-?>
\ No newline at end of file
+?>@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index abdde6f621284a7da2b7675c1b79dc3c36e54822..6d20a06de497ac8c5978d0cd37cdab3f6ea315eb 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ko.inc.php 349 2005-08-02 03:30:32 +0900 (Tue, 02 Aug 2005) garvinhicking $
+<?php # $Id: serendipity_lang_ko.inc.php 352 2005-08-02 00:39:41Z wesley $
 # 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('CHARSET_NATIVE', '지역 전용');
 @define('INSTALL_CHARSET', '문자열 종류 선택');
 @define('INSTALL_CHARSET_DESC', '여기서 문자열을 UTF-8로 할 것인지 지역 전용 (ISO, EUC 등)으로 할 것인지 정할 수 있습니다. 일부 언어는 UTF-8 버전만 제공되므로 "지역 전용"을 설정해도 변화가 없습니다. 새로 설치한 경우 UTF-8을 권장합니다. 이미 특별 문자를 사용하여 글을 작성했을 경우 이 설정을 변경하지 마십시오. 글자가 깨질 수 있습니다. 이 설정에 대해서는 http://www.s9y.org/index.php?node=46 에 더 자세하게 소개가 되어 있습니다.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 9a54edc080ce53cb61187c65883328cddf65f7d4..c7867a65fc5dca2372eee2906b1101922a8bca30 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_nl.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_nl.inc.php 378 2005-08-08 09:49:36Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 6137095247355159ef0084942d7ab1ca70e302cb..4595c2023f34d77f35deda4ec574b41fdec813ac 100644 (file)
@@ -1,12 +1,12 @@
-<?php # $Id: serendipity_lang_no.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_no.inc.php 376 2005-08-05 07:27:58Z garvinhicking $
 # 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>
 /* vim: set sts=4 ts=4 expandtab : */
 
 @define('LANG_CHARSET', 'UTF-8');
-@define('DATE_LOCALES', 'norwegian, no, no_NO');
-@define('DATE_FORMAT_ENTRY', '%A d. %e. %B %Y');
+@define('DATE_LOCALES', 'norwegian, no, no_NO, no_NO.UTF-8, no_NO.ISO8859-1, no_');
+@define('DATE_FORMAT_ENTRY', '%A - %e. %B %Y');
 @define('DATE_FORMAT_SHORT', '%d.%m.%Y %H:%M');
 @define('WYSIWYG_LANG', 'no');
 @define('LANG_DIRECTION', 'ltr');
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 16ffa4c2709583cc10e8fd342e874b0401b86dae..4cb8672acc0a54d98e251c598a8f458901b5e061 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_pt.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_pt.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Ranulfo Netto <rcnetto@yahoo.com>
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 54f6b77c71a473644b41638e2ab6122f7b4a81a4..24d20b90d6535bde533adfce31406622fdb2f508 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index d55b108c3c885ec4d0c140a6a76256f31f3067df..781b19b2b29827a270522e668f96e4186b192b9a 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index d9690573a1e48e3fbf0e506bd539d5eeb0efdead..5315d5a2d3eacb79a0c5724d7bc21db3867dda74 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_ru.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_ru.inc.php 378 2005-08-08 09:49:36Z garvinhicking $
 # 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 : */
@@ -27,7 +27,6 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('LOGOUT', 'Выйти');
 @define('LOGGEDOUT', 'Сеанс завершён.');
 @define('CREATE', 'Создать');
-@define('EDIT_THIS_CAT', 'Редактирование "%s"');
 @define('SAVE', 'Сохранить');
 @define('NAME', 'Имя');
 @define('CREATE_NEW_CAT', 'Создать новую категорию');
@@ -605,6 +604,7 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('TEMPLATE_SET', '\'%s\' был установлен вашим шаблоном по умолчанию');
 @define('SEARCH_ERROR', 'Функция поиска не работает как ожидается. Свяжитесь с администратором этого блога: это может происходить из-за отсутствующих индексов в вашей базе данных. На MySQL системах ваш аккаунт базы данных должен иметь привилегии, чтобы выполнить следующий запрос: <pre>CREATE FULLTEXT INDEX entry_idx on %sentries (title,body,extended)</pre> Собственно ошибка, полученная от базы данных, была следующая: <pre>%s</pre>');
 
+@define('EDIT_THIS_CAT', 'Редактировать "%s"');
 @define('CATEGORY_REMAINING', 'Удалить данную категорию и установить для всех её записей следующую категорию');
 @define('CATEGORY_INDEX', 'Ниже вы видите список категорий, к которым вы можете отнести вашу запись');
 @define('NO_CATEGORIES', 'Без категорий');
@@ -772,3 +772,5 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index b2de609f47042ddb0762f67dc8d7f666ce430fe3..2cfc3b9b14b6981499d124f50bdb9b53d99dbe24 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index a468fec21a75344265587a3549ad04c948491442..335cffd5de0d5e6a2b94317bbf9cf7947c284cc0 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_tn.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_tn.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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>
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index e0da9bcbf76de6600eac826ea843839057134c49..12650f0af26324e3eb01437f8ce1b754837510c4 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_tw.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_tw.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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>
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 7508133e5dc8ea1d09e2a985d3f4f8fbbd2849a7..3b16c2444688ede8a785585f7701401be0e2d7a4 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_zh.inc.php 342 2005-07-31 21:20:56Z garvinhicking $
+<?php # $Id: serendipity_lang_zh.inc.php 349 2005-08-01 18:30:32Z garvinhicking $
 # 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('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 7f022738c6a4772b521de0c144199151afb87bfd..ba48a7e1b18a69b942e034b19a128dc898da3739 100644 (file)
@@ -1,3 +1,2 @@
-@define('CHARSET_NATIVE', 'Native');
-@define('INSTALL_CHARSET', 'Charset selection');
-@define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index ce60df6bba29150cb11483315e06626f352d6cb3..1e7483f407ac19a9188336c8fc289deb9eb523c4 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 2dca4d7bdca877292699ab238ceaf41ccd59dd1f..d24d01560b676edc360f3b0cbf59dea1cefd1ae9 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 17fc32e81178c2dd240aefe04be72d61d91cf04c..4448044b9e547a81a2ff56ef4629c7621c95da73 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index d07301cc06aaf9aee7b0c34bfff41470dbc4d323..29dd00ca001ddc5babde8dc004dac09a5e38d339 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 1792f56e3825b74a3cb2fec6ef34b499edb96930..9b017db6df7e16f1951911881bac95f561813fc5 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 713188a3bf994ebb4b79aeea66d8b522af20a337..ff3d097da7324ae66854d731b9e552664d0b8afa 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index a6f659f82305917fdf3bcf23728018bfc4bcf9e9..89064d18594b981259e8965967704b4795443c4e 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 0fb77440cc9474a1079252a9ef915f862578d49a..921b10f8d8bf1a7d603b25835db97f5a21a37aa9 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 446b7b35d29fdf5f8adfdb48a247b9c7f8e3ea22..7daf8862a3d9e728c40afbd7dd0e05c3812d8d6e 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index b8645f36ec293eb271585568b349807a2947706d..9d385cfd544ec5da84a7b0ecbef24f4b14a95df0 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index f748c446310717a4eaee5ce62d7cb23cea351143..32e419a8082753235133dd8e0212bddaeebfe0cc 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 65a1b38218afb61f23ce9abf0080643c249b58e7..89a11ccef49011622dc5b5fdfae57644092839c8 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 20f8a93dd60248042d8ad18431441efa27cf929d..593101994a7f6f6cfefd5c17a48ea380b389c28e 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 36f0f204e7e399ca2237c2ed7920eff3c65a739e..e49f6bc5f9e84b21e809a66259422c1c3b282d23 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index e9eb38fcfec038d2d0591932692ab544adeeffa8..47ecf8fb0c5cb225bd3dd74466a4464c6768e375 100644 (file)
@@ -774,4 +774,5 @@ Serendipity のアップグレードステージを無視しました。正し
 @define('CHARSET_NATIVE', 'ネイティブ');
 @define('INSTALL_CHARSET', '文字コード選択');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
-?>
\ No newline at end of file
+?>@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 79647e8a6c23d2744a96dda73cd696db4fb7f6cc..cffe92606bba64431ed72c6562b39416bc8e5a6e 100644 (file)
 @define('CHARSET_NATIVE', '지역 전용');
 @define('INSTALL_CHARSET', '문자열 종류 선택');
 @define('INSTALL_CHARSET_DESC', '여기서 문자열을 UTF-8로 할 것인지 지역 전용 (ISO, EUC 등)으로 할 것인지 정할 수 있습니다. 일부 언어는 UTF-8 버전만 제공되므로 "지역 전용"을 설정해도 변화가 없습니다. 새로 설치한 경우 UTF-8을 권장합니다. 이미 특별 문자를 사용하여 글을 작성했을 경우 이 설정을 변경하지 마십시오. 글자가 깨질 수 있습니다. 이 설정에 대해서는 http://www.s9y.org/index.php?node=46 에 더 자세하게 소개가 되어 있습니다.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 283403322e94a1ce957ce28ebe4e3ee297a4e77a..bb47bdd24d479781e37e043c5a9ad3f1c8c361b8 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 7c0683aeb34d66b2704c4f719737ac425da8cbee..be8f537d41014ec04c8af23fa6054534ae991d9c 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index f2a0625525596088e359f599ac8c00cff409b204..3fea5c5285d4016eff8d91f48a89c70de87f13ff 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index a0aa36bfb662ff10f03dcc02767f6de6aa92a528..2885b4fbec4681e41fe025a2810c904c5eeb1b1f 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index d55b108c3c885ec4d0c140a6a76256f31f3067df..781b19b2b29827a270522e668f96e4186b192b9a 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index c7fc425a0b08b462c404a864880f4033acb353e7..65927cbea45238b1dac902eb2da809953b4be82a 100644 (file)
@@ -772,3 +772,5 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index b3447583a69c24474e0bdf7b8eeffe5c1e82b91b..3d85ad2883f5b159f06e4b27b5d545134a56cf3e 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 4649ba96dc987cf83294829e9128f103abb2b2bd..37a97afb1e323d941d191b7d9657f418602035a1 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 53fd3a1aa8d007ebe1cbbafff752438e0932b58f..c25e3ed4c2d13e10996fb3bba6a5c1b03a82fb44 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index bbb8dce6dd8aaaa540f478eb7eba4a66c90affdd..acea701a5a5c3d96ef195157e3db7ebd85060a13 100644 (file)
 @define('CHARSET_NATIVE', 'Native');
 @define('INSTALL_CHARSET', 'Charset selection');
 @define('INSTALL_CHARSET_DESC', 'Here you can toggle UTF-8 or native (ISO, EUC, ...) charactersets. Some languages only have UTF-8 translations so that setting the charset to "Native" will have no effects. UTF-8 is suggested for new installations. Do not change this setting if you have already made entries with special characters - this may lead to corrupt characters. Be sure to read more on http://www.s9y.org/index.php?node=46 about this issue.');
+@define('CALENDAR_ENABLE_EXTERNAL_EVENTS', 'Enable Plugin API hook');
+@define('CALENDAR_EXTEVENT_DESC', 'If enabled, plugins can hook into the calendar to display their own events highlighted. Only enable if you have installed plugins that need this, otherwise it just decreases performance.');
index 47fdfd32d2426f917585d976de584299dafb0b34..84c325cf808aa70a63ad697748dd3a8dbc73e5f5 100644 (file)
@@ -26,7 +26,7 @@
     {foreach from=$plugin_calendar_weeks item="week"}
         <tr class="serendipity_calendar">
         {foreach from=$week.days item="day"}
-            <td class="serendipity_calendarDay {$day.classes}">{if isset($day.properties.Active) and $day.properties.Active}<a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>
+            <td class="serendipity_calendarDay {$day.classes}"{if isset($day.properties.Title)} title="{$day.properties.Title}"{/if}>{if isset($day.properties.Active) and $day.properties.Active}<a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>\r
         {/foreach}
         </tr>
     {/foreach}
index 996001a06bba8656258bfc2ae1c065c21cb90c5d..9f3a56356906827b4bbbb348354a75ad2910da87 100644 (file)
@@ -26,7 +26,7 @@
     {foreach from=$plugin_calendar_weeks item="week"}
         <tr class="serendipity_calendar">
         {foreach from=$week.days item="day"}
-            <td class="serendipity_calendarDay {$day.classes}">{if isset($day.properties.Active) and $day.properties.Active}<a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>
+            <td class="serendipity_calendarDay {$day.classes}"{if isset($day.properties.Title)} title="{$day.properties.Title}"{/if}>{if isset($day.properties.Active) and $day.properties.Active}<a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>\r
         {/foreach}
         </tr>
     {/foreach}
index c638a006efed658a7874f2e56a3055bcbcd04509..7f38fc8cabcaf6ec91ae20ef607dd555b94488cb 100644 (file)
@@ -24,7 +24,7 @@
     {foreach from=$plugin_calendar_weeks item="week"}
       <tr>
         {foreach from=$week.days item="day"}
-          <td>{if isset($day.properties.Active) and $day.properties.Active}<a href="{$day.properties.Link}">{/if}{$day.name|@default:"&nbsp;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>
+            <td class="serendipity_calendarDay {$day.classes}"{if isset($day.properties.Title)} title="{$day.properties.Title}"{/if}>{if isset($day.properties.Active) and $day.properties.Active}<a href="{$day.properties.Link}">{/if}{$day.name|@default:"&#160;"}{if isset($day.properties.Active) and $day.properties.Active}</a>{/if}</td>\r
         {/foreach}
       </tr>
     {/foreach}