* Removed inline styles of the s9y media insertion, they will now
properly utilize CSS classes (defined in the new file style_fallback.css). Also added support for entering "ALT" attributes to an <img> tag, can be used as a media property if you add "ALT" to the list of "Media properties" in the main configuration. (garvinhicking)
This commit is contained in:
@ -58,11 +58,20 @@ function IEWrap(txtarea, lft, rgt) {
|
||||
}
|
||||
|
||||
function wrapSelection(txtarea, lft, rgt) {
|
||||
if (txtarea.scrollTop) {
|
||||
scrollPos = txtarea.scrollTop;
|
||||
}
|
||||
|
||||
if (document.all) {
|
||||
IEWrap(txtarea, lft, rgt);
|
||||
} else if (document.getElementById) {
|
||||
mozWrap(txtarea, lft, rgt);
|
||||
}
|
||||
|
||||
if (scrollPos) {
|
||||
txtarea.focus();
|
||||
txtarea.scrollTop = scrollPos;
|
||||
}
|
||||
}
|
||||
|
||||
function wrapSelectionWithLink(txtarea) {
|
||||
@ -270,6 +279,7 @@ function serendipity_imageSelector_done(textarea)
|
||||
var insert = '';
|
||||
var img = '';
|
||||
var src = '';
|
||||
var alt = '';
|
||||
var f = document.forms['serendipity[selForm]'].elements;
|
||||
|
||||
if (f['serendipity[linkThumbnail]'] && f['serendipity[linkThumbnail]'][0].checked == true) {
|
||||
@ -308,11 +318,9 @@ function serendipity_imageSelector_done(textarea)
|
||||
}
|
||||
}
|
||||
|
||||
if (document.getElementById('serendipity_imagecomment').value != '') {
|
||||
styled = false;
|
||||
} else {
|
||||
styled = true;
|
||||
}
|
||||
alt = f['serendipity[alt]'].value;
|
||||
|
||||
styled = false; // Templates now do this.
|
||||
|
||||
imgID = 0;
|
||||
if (f['imgID']) {
|
||||
@ -325,12 +333,12 @@ function serendipity_imageSelector_done(textarea)
|
||||
|
||||
floating = 'center';
|
||||
if (f['serendipity[align]'][0].checked == true) {
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_center\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"\" />";
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_center\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"" + alt + "\" />";
|
||||
} else if (f['serendipity[align]'][1].checked == true) {
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_left\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="float: left; border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"\" />";
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_left\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="float: left; border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"" + alt + "\" />";
|
||||
floating = 'left';
|
||||
} else if (f['serendipity[align]'][2].checked == true) {
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_right\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="float: right; border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"\" />";
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_right\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="float: right; border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"" + alt + "\" />";
|
||||
floating = 'right';
|
||||
}
|
||||
|
||||
|
@ -3,6 +3,13 @@
|
||||
Version 1.5 ()
|
||||
------------------------------------------------------------------------
|
||||
|
||||
* Removed inline styles of the s9y media insertion, they will now
|
||||
properly utilize CSS classes (defined in the new file
|
||||
style_fallback.css). Also added support for entering "ALT"
|
||||
attributes to an <img> tag, can be used as a media property if
|
||||
you add "ALT" to the list of "Media properties" in the
|
||||
main configuration. (garvinhicking)
|
||||
|
||||
* Filter entries only by authors that have written at least
|
||||
one article (garvinhicking)
|
||||
|
||||
|
@ -583,6 +583,7 @@ function serendipity_emit_htmlarea_code($item, $jsname, $spawnMulti = false) {
|
||||
(defined('LANG_DIRECTION') ? LANG_DIRECTION : 'ltr')
|
||||
),
|
||||
|
||||
file_get_contents(serendipity_getTemplateFile('style_fallback.css', 'serendipityPath')) .
|
||||
file_get_contents(serendipity_getTemplateFile('htmlarea.css', 'serendipityPath'))
|
||||
);
|
||||
?>
|
||||
|
@ -659,7 +659,7 @@ function serendipity_makeThumbnail($file, $directory = '', $size = false, $thumb
|
||||
}
|
||||
$newSize = $r['width'] . 'x' . $r['height'];
|
||||
if ($fdim['mime'] == 'application/pdf') {
|
||||
$cmd = escapeshellcmd($serendipity['convert']) . ' -antialias -flatten -scale '. serendipity_escapeshellarg($newSize) .' '. serendipity_escapeshellarg($infile) .' '. serendipity_escapeshellarg($outfile . '.png');
|
||||
$cmd = escapeshellcmd($serendipity['convert']) . ' -antialias -flatten -scale '. serendipity_escapeshellarg($newSize) .' "'. serendipity_escapeshellarg($infile) .'[0]" '. serendipity_escapeshellarg($outfile . '.png');
|
||||
} else {
|
||||
if (!$force_resize && serendipity_ini_bool(ini_get('safe_mode')) === false) {
|
||||
$newSize .= '>'; // Tell imagemagick to not enlarge small images, only works if safe_mode is off (safe_mode turns > in to \>)
|
||||
@ -2384,6 +2384,7 @@ function serendipity_parseMediaProperties(&$dprops, &$keywords, &$media, &$props
|
||||
'COPYRIGHT' => array('Creator'),
|
||||
'TITLE' => array('Title', 'ObjectName'),
|
||||
'COMMENT1' => array('Description'),
|
||||
'ALT' => array('Title', 'ObjectName'),
|
||||
'COMMENT2' => array('Keywords', 'PhotoLocation')
|
||||
);
|
||||
}
|
||||
@ -2414,6 +2415,11 @@ function serendipity_parseMediaProperties(&$dprops, &$keywords, &$media, &$props
|
||||
$default_iptc_val = $media['realname'];
|
||||
}
|
||||
|
||||
case 'ALT':
|
||||
if (!isset($default_iptc_val)) {
|
||||
$default_iptc_val = '';
|
||||
}
|
||||
|
||||
case 'COMMENT1':
|
||||
if (!isset($default_iptc_val)) {
|
||||
$default_iptc_val = '';
|
||||
|
@ -607,7 +607,7 @@
|
||||
'description' => MEDIA_PROP_DESC . MEDIA_PROP_MULTIDESC,
|
||||
'type' => 'string',
|
||||
'permission' => 'blogConfiguration',
|
||||
'default' => 'DPI:IMAGE;RUN_LENGTH:VIDEO:AUDIO;DATE;COPYRIGHT;TITLE;COMMENT1:MULTI;COMMENT2:MULTI'),
|
||||
'default' => 'DPI:IMAGE;RUN_LENGTH:VIDEO:AUDIO;DATE;COPYRIGHT;TITLE;COMMENT1:MULTI;COMMENT2:MULTI;ALT'),
|
||||
|
||||
array('var' => 'mediaKeywords',
|
||||
'title' => MEDIA_KEYWORDS,
|
||||
|
@ -134,3 +134,6 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -939,3 +939,6 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'Ако установите тази опция на "Force", ще можете да пренасочвате RSS емисиите към всеки webservice, не само към FeedBurner. Вижте опцията "Feedburner ID" по-долу за да въведете абсолютен URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Коментарът очаква одобрение от потребителя');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_cn.inc.php 2544 2009-07-10 13:50:13Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -948,3 +948,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -956,3 +956,6 @@ $i18n_filename_to = array (
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'Pokud nastavíte tuto volbu na "Vynutit", můžete přesměrovat RSS kanál na jakoukoliv webovou službu, nejen na FeedBurner. Podívejte se níže na volbu "Feedburner ID" pro zadání absolutní adresy.');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Čeká na potvrzení uživatelem');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -956,3 +956,6 @@ $i18n_filename_to = array (
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'Pokud nastavíte tuto volbu na "Vynutit", můžete přesměrovat RSS kanál na jakoukoliv webovou službu, nejen na FeedBurner. Podívejte se níže na volbu "Feedburner ID" pro zadání absolutní adresy.');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Čeká na potvrzení uživatelem');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_da.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_da.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -945,3 +945,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_de.inc.php 2526 2009-06-15 09:19:59Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_de.inc.php 2544 2009-07-10 13:50:13Z 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
|
||||
@ -949,3 +949,6 @@
|
||||
@define('INSTALL_OFFSET_ON_SERVER_TIME', 'Worauf basiert die Zeitdifferenz zur Server-Zeitzone?');
|
||||
@define('INSTALL_OFFSET_ON_SERVER_TIME_DESC', 'Eintragszeiten nach Server-Zeitzone eintragen oder nicht. YES wählt die Server-Zeitzone als Basis, NO wählt GMT.');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Nur notwendig wenn Spartacus zur Plugin-Installation über das Internet genutzt werden soll)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribut (Bildinhalt oder Kurzbeschreibung)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Bildinhalt (Zusammenfassung für das ALT-Attribut)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_en.inc.php 2505 2009-05-05 10:27:08Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_en.inc.php 2544 2009-07-10 13:50:13Z 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 : */
|
||||
@ -946,3 +946,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_es.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_es.inc.php 2544 2009-07-10 13:50:13Z 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>,
|
||||
@ -964,3 +964,6 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fa.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fa.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -948,3 +948,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fi.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -946,3 +946,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_fr.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -953,3 +953,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -944,3 +944,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_is.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_is.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -947,3 +947,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -950,3 +950,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 2467 2009-02-14 13:29:41Z elf2000 $
|
||||
<?php # $Id: serendipity_lang_ja.inc.php 2544 2009-07-10 13:50:13Z 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.
|
||||
@ -950,3 +950,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'ユーザーの確認を保留しています');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ko.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -949,3 +949,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_nl.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -948,3 +948,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_no.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_no.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -949,3 +949,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -945,3 +945,6 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_pt.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -951,3 +951,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -958,3 +958,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -947,3 +947,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_ru.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_ru.inc.php 2544 2009-07-10 13:50:13Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translation by Nightly <nightly@reys.net>
|
||||
@ -950,3 +950,6 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -865,3 +865,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -946,3 +946,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -946,3 +946,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_tn.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -950,3 +950,6 @@ $i18n_unknown = 'tw';
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -950,3 +950,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_tw.inc.php 2544 2009-07-10 13:50:13Z 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>
|
||||
@ -951,3 +951,6 @@ $i18n_unknown = 'tw';
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 2463 2009-02-11 12:35:44Z garvinhicking $
|
||||
<?php # $Id: serendipity_lang_zh.inc.php 2544 2009-07-10 13:50:13Z garvinhicking $
|
||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||
# All rights reserved. See LICENSE file for licensing details
|
||||
# Translated by
|
||||
@ -947,3 +947,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -1 +1,3 @@
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -134,3 +134,6 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -939,3 +939,6 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><> "Force", <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> RSS <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> webservice, <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> FeedBurner. <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "Feedburner ID" <20><>-<2D><><EFBFBD><EFBFBD> <20><> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -948,3 +948,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -956,3 +956,6 @@ $i18n_filename_to = array (
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'Pokud nastav<61>te tuto volbu na "Vynutit", m<><6D>ete p<>esm<73>rovat RSS kan<61>l na jakoukoliv webovou slu<6C>bu, nejen na FeedBurner. Pod<6F>vejte se n<><6E>e na volbu "Feedburner ID" pro zad<61>n<EFBFBD> absolutn<74> adresy.');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', '<27>ek<65> na potvrzen<65> u<>ivatelem');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -956,3 +956,6 @@ $i18n_filename_to = array (
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'Pokud nastav<61>te tuto volbu na "Vynutit", m<><6D>ete p<>esm<73>rovat RSS kan<61>l na jakoukoliv webovou slu<6C>bu, nejen na FeedBurner. Pod<6F>vejte se n<><6E>e na volbu "Feedburner ID" pro zad<61>n<EFBFBD> absolutn<74> adresy.');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', '<27>ek<65> na potvrzen<65> u<>ivatelem');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -945,3 +945,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -949,3 +949,6 @@
|
||||
@define('INSTALL_OFFSET_ON_SERVER_TIME', 'Worauf basiert die Zeitdifferenz zur Server-Zeitzone?');
|
||||
@define('INSTALL_OFFSET_ON_SERVER_TIME_DESC', 'Eintragszeiten nach Server-Zeitzone eintragen oder nicht. YES w<>hlt die Server-Zeitzone als Basis, NO w<>hlt GMT.');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Nur notwendig wenn Spartacus zur Plugin-Installation <20>ber das Internet genutzt werden soll)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribut (Bildinhalt oder Kurzbeschreibung)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Bildinhalt (Zusammenfassung f<>r das ALT-Attribut)');
|
||||
|
||||
|
@ -946,3 +946,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -964,3 +964,6 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -948,3 +948,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -946,3 +946,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -953,3 +953,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -944,3 +944,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -947,3 +947,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -950,3 +950,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -950,3 +950,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'ユーザーの確認を保留しています');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -949,3 +949,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -948,3 +948,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -949,3 +949,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -945,3 +945,6 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -951,3 +951,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -958,3 +958,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -947,3 +947,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -950,3 +950,6 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -865,3 +865,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -946,3 +946,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -946,3 +946,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -950,3 +950,6 @@ $i18n_unknown = 'tw';
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -950,3 +950,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -951,3 +951,6 @@ $i18n_unknown = 'tw';
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -947,3 +947,6 @@
|
||||
@define('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'If you set this option to "Force" you can forward the RSS feed to any webservice, not only FeedBurner. Look at the option "Feedburner ID" below to enter an absolute URL)');
|
||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||
@define('MEDIA_ALT', 'ALT-Attribute (depiction or short description)');
|
||||
@define('MEDIA_PROPERTY_COMMENT1', 'Depiction (summary for ALT-Attribute)');
|
||||
|
||||
|
@ -67,7 +67,13 @@ if (IS_installed === false) {
|
||||
}
|
||||
|
||||
|
||||
// First all of our fallback classes, so they can be overridden by the usual template.
|
||||
$out = serendipity_printStylesheet(
|
||||
serendipity_getTemplateFile('style_fallback.css', 'serendipityPath'),
|
||||
serendipity_getTemplateFile('style_fallback.css', '')
|
||||
);
|
||||
|
||||
$out .= serendipity_printStylesheet(
|
||||
serendipity_getTemplateFile($css_file, 'serendipityPath'),
|
||||
serendipity_getTemplateFile($css_file, '')
|
||||
);
|
||||
|
@ -90,7 +90,7 @@ if (!isset($serendipity['RSSfetchLimit'])) {
|
||||
}
|
||||
|
||||
if (!isset($serendipity['mediaProperties'])) {
|
||||
$serendipity['mediaProperties'] = 'DPI;COPYRIGHT;TITLE;COMMENT1:MULTI;COMMENT2:MULTI';
|
||||
$serendipity['mediaProperties'] = 'DPI;COPYRIGHT;TITLE;COMMENT1:MULTI;COMMENT2:MULTI;ALT';
|
||||
}
|
||||
|
||||
if (!isset($serendipity['use_PEAR'])) {
|
||||
|
@ -279,6 +279,7 @@ function serendipity_imageSelector_done(textarea)
|
||||
var insert = '';
|
||||
var img = '';
|
||||
var src = '';
|
||||
var alt = '';
|
||||
var f = document.forms['serendipity[selForm]'].elements;
|
||||
|
||||
if (f['serendipity[linkThumbnail]'] && f['serendipity[linkThumbnail]'][0].checked == true) {
|
||||
@ -317,11 +318,9 @@ function serendipity_imageSelector_done(textarea)
|
||||
}
|
||||
}
|
||||
|
||||
if (document.getElementById('serendipity_imagecomment').value != '') {
|
||||
styled = false;
|
||||
} else {
|
||||
styled = true;
|
||||
}
|
||||
alt = f['serendipity[alt]'].value;
|
||||
|
||||
styled = false; // Templates now do this.
|
||||
|
||||
imgID = 0;
|
||||
if (f['imgID']) {
|
||||
@ -334,12 +333,12 @@ function serendipity_imageSelector_done(textarea)
|
||||
|
||||
floating = 'center';
|
||||
if (f['serendipity[align]'][0].checked == true) {
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_center\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"\" />";
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_center\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"" + alt + "\" />";
|
||||
} else if (f['serendipity[align]'][1].checked == true) {
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_left\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="float: left; border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"\" />";
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_left\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="float: left; border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"" + alt + "\" />";
|
||||
floating = 'left';
|
||||
} else if (f['serendipity[align]'][2].checked == true) {
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_right\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="float: right; border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"\" />";
|
||||
img = "<!-- s9ymdb:" + imgID + " --><img class=\"serendipity_image_right\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" " + (styled ? 'style="float: right; border: 0px; padding-left: 5px; padding-right: 5px;"' : '') + ' src="' + img + "\" alt=\"" + alt + "\" />";
|
||||
floating = 'right';
|
||||
}
|
||||
|
||||
|
@ -251,6 +251,12 @@
|
||||
<textarea id="serendipity_imagecomment" name="serendipity[imagecomment]" rows="5" cols="40">{$media.file.props.base_property.COMMENT1|@escape}</textarea>
|
||||
{serendipity_hookPlugin hookAll=true hook='frontend_image_selector_imagecomment' eventData=$media.file}
|
||||
<br />
|
||||
|
||||
<b>{$CONST.MEDIA_ALT}:</b>
|
||||
<br />
|
||||
<input size="30" class="input_textbox" type="text" id="serendipity_alt" name="serendipity[alt]" value="{$media.file.props.base_property.ALT|@escape}" /></textarea>
|
||||
{serendipity_hookPlugin hookAll=true hook='frontend_image_selector_alt' eventData=$media.file}
|
||||
<br />
|
||||
{/if}
|
||||
|
||||
{serendipity_hookPlugin hookAll=true hook='frontend_image_selector_more' eventData=$media.file}
|
||||
|
91
templates/default/style_fallback.css
Normal file
91
templates/default/style_fallback.css
Normal file
@ -0,0 +1,91 @@
|
||||
/* This is the templates/default/style_fallback.css file.
|
||||
It emits CSS rules that all templates should have.
|
||||
Classes are declared on top of the file, so if you
|
||||
want to make changes in your own template, you
|
||||
should override the rules on the bottom of your
|
||||
style.css template.
|
||||
IT IS NOT ADVISED TO CREATE YOUR OWN style_fallback.css FILE! */
|
||||
|
||||
/* Default image classes for left/right/usual layout */
|
||||
.serendipity_image_center {
|
||||
border: 0px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.serendipity_image_left {
|
||||
float: left;
|
||||
border: 0px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.serendipity_image_right {
|
||||
float: right;
|
||||
border: 0px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
/* Default listing without spacers */
|
||||
.plainList {
|
||||
list-style: none;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
/* Messages: Centered, important, notice */
|
||||
.serendipity_center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_msg_important {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.serendipity_msg_notice {
|
||||
color: green;
|
||||
}
|
||||
|
||||
/* Embedded images with comments inside the s9y image manager */
|
||||
.serendipity_imageComment_center,
|
||||
.serendipity_imageComment_left,
|
||||
.serendipity_imageComment_right {
|
||||
border: 1px solid #DDDDDD;
|
||||
background-color: #EFEFEF;
|
||||
margin: 3px;
|
||||
padding: 3px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_center {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_img,
|
||||
.serendipity_imageComment_img img {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_txt {
|
||||
border-top: 1px solid #DDDDDD;
|
||||
margin: 0px;
|
||||
padding: 3px;
|
||||
clear: both;
|
||||
font-size: 8pt;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* END OF style_fallback.css */
|
Reference in New Issue
Block a user