* Added ability to rename "feeds" in teh syndication plugin and
add a big image on top (onli)
This commit is contained in:
parent
2ec6288154
commit
054dfb65c9
@ -3,6 +3,9 @@
|
||||
Version 1.4 ()
|
||||
------------------------------------------------------------------------
|
||||
|
||||
* Added ability to rename "feeds" in teh syndication plugin and
|
||||
add a big image on top (onli)
|
||||
|
||||
* Added more parameters to {serendipity_printComments} function:
|
||||
"block" (smarty block variable name),
|
||||
"template" (smarty template file to render)
|
||||
|
@ -753,6 +753,9 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
'fb_title',
|
||||
'fb_alt',
|
||||
'fb_img',
|
||||
'big_img',
|
||||
'feed_name',
|
||||
'comment_name',
|
||||
)
|
||||
);
|
||||
$propbag->add('groups', array('FRONTEND_VIEWS'));
|
||||
@ -966,6 +969,26 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
$propbag->add('default', '');
|
||||
break;
|
||||
|
||||
case 'big_img':
|
||||
$propbag->add('type', 'string');
|
||||
$propbag->add('name', SYNDICATION_PLUGIN_BIGIMG);
|
||||
$propbag->add('description', SYNDICATION_PLUGIN_BIGIMG_DESC);
|
||||
$propbag->add('default', '');
|
||||
break;
|
||||
|
||||
case 'feed_name':
|
||||
$propbag->add('type', 'string');
|
||||
$propbag->add('name', SYNDICATION_PLUGIN_FEEDNAME);
|
||||
$propbag->add('description', SYNDICATION_PLUGIN_FEEDNAME_DESC);
|
||||
$propbag->add('default', '');
|
||||
break;
|
||||
|
||||
case 'comment_name':
|
||||
$propbag->add('type', 'string');
|
||||
$propbag->add('name', SYNDICATION_PLUGIN_COMMENTNAME);
|
||||
$propbag->add('description', SYNDICATION_PLUGIN_COMMENTNAME_DESC);
|
||||
$propbag->add('default', '');
|
||||
break;
|
||||
|
||||
default:
|
||||
return false;
|
||||
@ -980,13 +1003,37 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
$title = $this->get_config('title');
|
||||
$icon = serendipity_getTemplateFile($this->get_config('iconURL', 'img/xml.gif'));
|
||||
|
||||
?><ul><?php
|
||||
$custom_feed = trim($this->get_config('feed_name'));
|
||||
$custom_comm = trim($this->get_config('comment_name'));
|
||||
$custom_img = trim($this->get_config('big_img'));
|
||||
|
||||
if (empty($custom_feed) || $custom_feed == 'default' || $custom_feed == 'none' || $custom_feed == 'empty') {
|
||||
$FEED = 'feed';
|
||||
} else {
|
||||
$FEED = $custom_feed;
|
||||
}
|
||||
|
||||
if (empty($custom_comm) || $custom_comm == 'default' || $custom_comm == 'none' || $custom_comm == 'empty') {
|
||||
$COMMENTS = COMMENTS;
|
||||
} else {
|
||||
$COMMENTS = $custom_comm;
|
||||
}
|
||||
|
||||
if (!empty($custom_img) && $custom_img != 'default' && $custom_img != 'none' && $custom_img != 'empty') {
|
||||
?>
|
||||
<div style="padding-bottom: 2px;">
|
||||
<a class="serendipity_xml_icon" href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss2', 'serendipityHTTPPath') ?>"><img src="<?php echo $custom_img; ?>" alt="XML" style="border: 0px" /></a>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
?><ul><?php
|
||||
|
||||
if (serendipity_db_bool($this->get_config('show_0.91', true))) {
|
||||
?>
|
||||
<li>
|
||||
<a class="serendipity_xml_icon" href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss', 'serendipityHTTPPath') ?>"><img src="<?php echo $icon; ?>" alt="XML" style="border: 0px" /></a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss', 'serendipityHTTPPath') ?>">RSS 0.91 feed</a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss', 'serendipityHTTPPath') ?>">RSS 0.91 <?php echo $FEED; ?></a>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
@ -995,7 +1042,7 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
?>
|
||||
<li>
|
||||
<a class="serendipity_xml_icon" href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss1', 'serendipityHTTPPath') ?>"><img src="<?php echo $icon; ?>" alt="XML" style="border: 0px" /></a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss1', 'serendipityHTTPPath') ?>">RSS 1.0 feed</a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss1', 'serendipityHTTPPath') ?>">RSS 1.0 <?php echo $FEED; ?></a>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
@ -1004,7 +1051,7 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
?>
|
||||
<li>
|
||||
<a class="serendipity_xml_icon" href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss2', 'serendipityHTTPPath') ?>"><img src="<?php echo $icon; ?>" alt="XML" style="border: 0px" /></a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss2', 'serendipityHTTPPath') ?>">RSS 2.0 feed</a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/index.rss2', 'serendipityHTTPPath') ?>">RSS 2.0 <?php echo $FEED; ?></a>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
@ -1013,7 +1060,7 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
?>
|
||||
<li>
|
||||
<a class="serendipity_xml_icon" href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/atom03.xml', 'serendipityHTTPPath') ?>"><img src="<?php echo $icon; ?>" alt="ATOM/XML" style="border: 0px" /></a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/atom03.xml', 'serendipityHTTPPath') ?>">ATOM 0.3 feed</a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/atom03.xml', 'serendipityHTTPPath') ?>">ATOM 0.3 <?php echo $FEED; ?></a>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
@ -1022,7 +1069,7 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
?>
|
||||
<li>
|
||||
<a class="serendipity_xml_icon" href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/atom10.xml', 'serendipityHTTPPath') ?>"><img src="<?php echo $icon; ?>" alt="ATOM/XML" style="border: 0px" /></a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/atom10.xml', 'serendipityHTTPPath') ?>">ATOM 1.0 feed</a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/atom10.xml', 'serendipityHTTPPath') ?>">ATOM 1.0 <?php echo $FEED; ?></a>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
@ -1031,7 +1078,7 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
?>
|
||||
<li>
|
||||
<a class="serendipity_xml_icon" href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/comments.rss2', 'serendipityHTTPPath') ?>"><img src="<?php echo $icon; ?>" alt="XML" style="border: 0px" /></a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/comments.rss2', 'serendipityHTTPPath') ?>"><span style="white-space: nowrap">RSS 2.0 <?php echo COMMENTS; ?></span></a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/comments.rss2', 'serendipityHTTPPath') ?>"><span style="white-space: nowrap">RSS 2.0 <?php echo $COMMENTS; ?></span></a>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
@ -1040,7 +1087,7 @@ class serendipity_syndication_plugin extends serendipity_plugin {
|
||||
?>
|
||||
<li>
|
||||
<a class="serendipity_xml_icon" href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/opml.xml', 'serendipityHTTPPath') ?>"><img src="<?php echo $icon; ?>" alt="XML" style="border: 0px" /></a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/opml.xml', 'serendipityHTTPPath') ?>">OPML 1.0 feed</a>
|
||||
<a href="<?php echo serendipity_rewriteURL(PATH_FEEDS .'/opml.xml', 'serendipityHTTPPath') ?>">OPML 1.0 <?php echo $FEED; ?></a>
|
||||
</li>
|
||||
<?php
|
||||
}
|
||||
|
@ -123,3 +123,9 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -926,3 +926,9 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 2384 2008-11-26 12:33:29Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -937,3 +937,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cs.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cs.inc.php 2384 2008-11-26 12:33:29Z 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>
|
||||
@ -945,3 +945,9 @@ $i18n_filename_to = array (
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cz.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cz.inc.php 2384 2008-11-26 12:33:29Z 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>
|
||||
@ -945,3 +945,9 @@ $i18n_filename_to = array (
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_da.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_da.inc.php 2384 2008-11-26 12:33:29Z 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>
|
||||
@ -934,3 +934,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_de.inc.php 2379 2008-11-24 10:08:53Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_de.inc.php 2384 2008-11-26 12:33:29Z 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
|
||||
@ -933,3 +933,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Dokumentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Lokale Dokumentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Versionsgeschichte');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_en.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_en.inc.php 2384 2008-11-26 12:33:29Z 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 : */
|
||||
@ -933,3 +933,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_es.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_es.inc.php 2384 2008-11-26 12:33:29Z 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>,
|
||||
@ -953,3 +953,9 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -937,3 +937,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 2384 2008-11-26 12:33:29Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Mauri Sahlberg <mos@iki.fi>
|
||||
@ -935,3 +935,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 2384 2008-11-26 12:33:29Z 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>
|
||||
@ -942,3 +942,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -933,3 +933,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_is.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_is.inc.php 2384 2008-11-26 12:33:29Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Örn Arnarson <orn@arnarson.net>
|
||||
@ -936,3 +936,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -939,3 +939,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 2384 2008-11-26 12:33:29Z garvinhicking $
|
||||
# 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.
|
||||
@ -939,3 +939,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 2384 2008-11-26 12:33:29Z garvinhicking $
|
||||
# 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>
|
||||
@ -938,3 +938,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 2384 2008-11-26 12:33:29Z 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>
|
||||
@ -937,3 +937,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_no.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_no.inc.php 2384 2008-11-26 12:33:29Z 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>
|
||||
@ -938,3 +938,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -934,3 +934,9 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 2384 2008-11-26 12:33:29Z 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 Agner Olson <agner@agner.net>
|
||||
@ -940,3 +940,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -947,3 +947,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -936,3 +936,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -939,3 +939,9 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -854,3 +854,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -935,3 +935,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -935,3 +935,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 2384 2008-11-26 12:33:29Z 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>
|
||||
@ -939,3 +939,9 @@ $i18n_unknown = 'tw';
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -939,3 +939,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 2384 2008-11-26 12:33:29Z 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>
|
||||
@ -940,3 +940,9 @@ $i18n_unknown = 'tw';
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 2378 2008-11-21 12:20:07Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 2384 2008-11-26 12:33:29Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -936,3 +936,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -1,3 +1,6 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -123,3 +123,9 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -926,3 +926,9 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -937,3 +937,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -945,3 +945,9 @@ $i18n_filename_to = array (
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -945,3 +945,9 @@ $i18n_filename_to = array (
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -934,3 +934,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -933,3 +933,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Dokumentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Lokale Dokumentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Versionsgeschichte');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -933,3 +933,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -953,3 +953,9 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -937,3 +937,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -935,3 +935,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -942,3 +942,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -933,3 +933,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -936,3 +936,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -939,3 +939,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -939,3 +939,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -938,3 +938,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -937,3 +937,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -938,3 +938,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -934,3 +934,9 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -940,3 +940,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -947,3 +947,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -936,3 +936,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -939,3 +939,9 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -854,3 +854,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -935,3 +935,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -935,3 +935,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -939,3 +939,9 @@ $i18n_unknown = 'tw';
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -939,3 +939,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -940,3 +940,9 @@ $i18n_unknown = 'tw';
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
@ -936,3 +936,9 @@
|
||||
@define('PLUGIN_DOCUMENTATION', 'Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME_DESC', 'Enter an optional custom name for the comment feed');
|
||||
|
Loading…
x
Reference in New Issue
Block a user