Add check for "plugins" directory writability
This commit is contained in:
@ -363,7 +363,7 @@ if ( (int)$serendipity['GET']['step'] == 0 ) {
|
|||||||
<td colspan="2" style="font-weight: bold"><?php echo PERMISSIONS ?></td>
|
<td colspan="2" style="font-weight: bold"><?php echo PERMISSIONS ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $basedir ?></td>
|
<td style="vertical-align: top"><?php echo $basedir ?></td>
|
||||||
<td width="200"><?php
|
<td width="200"><?php
|
||||||
$basewritable = False;
|
$basewritable = False;
|
||||||
if ( is_writable($basedir) ) {
|
if ( is_writable($basedir) ) {
|
||||||
@ -385,6 +385,7 @@ if ( (int)$serendipity['GET']['step'] == 0 ) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$showWritableNote) {
|
if (!$showWritableNote) {
|
||||||
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
||||||
}
|
}
|
||||||
@ -392,7 +393,7 @@ if ( (int)$serendipity['GET']['step'] == 0 ) {
|
|||||||
?></td>
|
?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $basedir . PATH_SMARTY_COMPILE?></td>
|
<td style="vertical-align: top"><?php echo $basedir . PATH_SMARTY_COMPILE?></td>
|
||||||
<td width="200"><?php
|
<td width="200"><?php
|
||||||
if ( is_writable($basedir . PATH_SMARTY_COMPILE) ) {
|
if ( is_writable($basedir . PATH_SMARTY_COMPILE) ) {
|
||||||
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
||||||
@ -408,7 +409,7 @@ if ( (int)$serendipity['GET']['step'] == 0 ) {
|
|||||||
?></td>
|
?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $basedir . 'archives/'?></td>
|
<td style="vertical-align: top"><?php echo $basedir . 'archives/'?></td>
|
||||||
<td width="200"><?php
|
<td width="200"><?php
|
||||||
if ( is_writable($basedir . 'archives/') ) {
|
if ( is_writable($basedir . 'archives/') ) {
|
||||||
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
||||||
@ -423,9 +424,20 @@ if ( (int)$serendipity['GET']['step'] == 0 ) {
|
|||||||
}
|
}
|
||||||
?></td>
|
?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="vertical-align: top"><?php echo $basedir . 'plugins/'?></td>
|
||||||
|
<td width="200"><?php
|
||||||
|
if ( is_writable($basedir . 'plugins/') ) {
|
||||||
|
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
||||||
|
} else {
|
||||||
|
echo serendipity_installerResultDiagnose(S9Y_I_WARNING, NOT_WRITABLE . NOT_WRITABLE_SPARTACUS);
|
||||||
|
}
|
||||||
|
?></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<?php if ( is_dir($basedir .'uploads/') ) { ?>
|
<?php if ( is_dir($basedir .'uploads/') ) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $basedir . 'uploads/'?></td>
|
<td style="vertical-align: top"><?php echo $basedir . 'uploads/'?></td>
|
||||||
<td width="200"><?php
|
<td width="200"><?php
|
||||||
if ( is_writable($basedir . 'uploads/') ) {
|
if ( is_writable($basedir . 'uploads/') ) {
|
||||||
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
echo serendipity_installerResultDiagnose(S9Y_I_SUCCESS, WRITABLE);
|
||||||
@ -443,7 +455,7 @@ if ( (int)$serendipity['GET']['step'] == 0 ) {
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if (function_exists('is_executable')) { ?>
|
<?php if (function_exists('is_executable')) { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Execute Imagemagick binary </td>
|
<td style="vertical-align: top">Execute Imagemagick binary </td>
|
||||||
<td><?php
|
<td><?php
|
||||||
if ($binary = serendipity_query_default('convert', false)) {
|
if ($binary = serendipity_query_default('convert', false)) {
|
||||||
if (is_executable($binary)) {
|
if (is_executable($binary)) {
|
||||||
|
@ -256,7 +256,7 @@ function serendipity_initPermalinks() {
|
|||||||
@define('PAT_FILENAME', '0-9a-z\.\_!;,\+\-\%');
|
@define('PAT_FILENAME', '0-9a-z\.\_!;,\+\-\%');
|
||||||
@define('PAT_FILENAME_MATCH', '[' . PAT_FILENAME . ']+');
|
@define('PAT_FILENAME_MATCH', '[' . PAT_FILENAME . ']+');
|
||||||
@define('PAT_DIRNAME_MATCH', '[' . PAT_FILENAME . '/]*');
|
@define('PAT_DIRNAME_MATCH', '[' . PAT_FILENAME . '/]*');
|
||||||
@define('PAT_CSS', '@/(serendipity\.css|serendipity_admin\.css)@');
|
@define('PAT_CSS', '@/(serendipity\.css|serendipity_admin\.css)$@');
|
||||||
@define('PAT_FEED', '@/(index|atom[0-9]*|rss|b2rss|b2rdf).(rss|rdf|rss2|xml)@');
|
@define('PAT_FEED', '@/(index|atom[0-9]*|rss|b2rss|b2rdf).(rss|rdf|rss2|xml)@');
|
||||||
@define('PAT_COMMENTSUB', '@/([0-9]+)[_\-][' . PAT_FILENAME . ']*\.html@i');
|
@define('PAT_COMMENTSUB', '@/([0-9]+)[_\-][' . PAT_FILENAME . ']*\.html@i');
|
||||||
|
|
||||||
|
@ -133,3 +133,4 @@ 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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -938,3 +938,4 @@ $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('SYNDICATION_PLUGIN_FEEDBURNERID_FORWARD2', 'Ако установите тази опция на "Force", ще можете да пренасочвате RSS емисиите към всеки webservice, не само към FeedBurner. Вижте опцията "Feedburner ID" по-долу за да въведете абсолютен URL)');
|
||||||
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Коментарът очаква одобрение от потребителя');
|
@define('COMMENTS_FILTER_NEED_CONFIRM', 'Коментарът очаква одобрение от потребителя');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -947,3 +947,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -955,3 +955,4 @@ $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('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('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)');
|
||||||
|
@ -955,3 +955,4 @@ $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('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('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)');
|
||||||
|
@ -944,3 +944,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_de.inc.php 2490 2009-03-24 10:33:32Z garvinhicking $
|
<?php # $Id: serendipity_lang_de.inc.php 2526 2009-06-15 09:19:59Z garvinhicking $
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) Jannis Hermanns, Garvin Hicking and others
|
# Translation (c) Jannis Hermanns, Garvin Hicking and others
|
||||||
@ -948,3 +948,4 @@
|
|||||||
@define('DELETE_FILE_FAIL', 'Kann das Bild namens <b>%s</b> nicht löschen');
|
@define('DELETE_FILE_FAIL', 'Kann das Bild namens <b>%s</b> nicht löschen');
|
||||||
@define('INSTALL_OFFSET_ON_SERVER_TIME', 'Worauf basiert die Zeitdifferenz zur Server-Zeitzone?');
|
@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('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)');
|
||||||
|
@ -945,3 +945,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -963,3 +963,4 @@ 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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -947,3 +947,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -945,3 +945,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -952,3 +952,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -943,3 +943,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -946,3 +946,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'ユーザーの確認を保留しています');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -948,3 +948,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -947,3 +947,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -948,3 +948,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -944,3 +944,4 @@ $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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -950,3 +950,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -957,3 +957,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -946,3 +946,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@ $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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -864,3 +864,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -945,3 +945,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -945,3 +945,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@ $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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -950,3 +950,4 @@ $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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -946,3 +946,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -1 +1 @@
|
|||||||
@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)');
|
||||||
|
@ -133,3 +133,4 @@ 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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -938,3 +938,4 @@ $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('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('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)');
|
||||||
|
@ -947,3 +947,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -955,3 +955,4 @@ $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('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('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)');
|
||||||
|
@ -955,3 +955,4 @@ $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('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('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)');
|
||||||
|
@ -944,3 +944,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -948,3 +948,4 @@
|
|||||||
@define('DELETE_FILE_FAIL', 'Kann das Bild namens <b>%s</b> nicht l<>schen');
|
@define('DELETE_FILE_FAIL', 'Kann das Bild namens <b>%s</b> nicht l<>schen');
|
||||||
@define('INSTALL_OFFSET_ON_SERVER_TIME', 'Worauf basiert die Zeitdifferenz zur Server-Zeitzone?');
|
@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('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)');
|
||||||
|
@ -945,3 +945,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -963,3 +963,4 @@ 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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -947,3 +947,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -945,3 +945,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -952,3 +952,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -943,3 +943,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -946,3 +946,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'ユーザーの確認を保留しています');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -948,3 +948,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -947,3 +947,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -948,3 +948,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -944,3 +944,4 @@ $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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -950,3 +950,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -957,3 +957,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -946,3 +946,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@ $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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -864,3 +864,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -945,3 +945,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -945,3 +945,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@ $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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -949,3 +949,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -950,3 +950,4 @@ $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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
@ -946,3 +946,4 @@
|
|||||||
|
|
||||||
@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('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('COMMENTS_FILTER_NEED_CONFIRM', 'Pending user confirmation');
|
||||||
|
@define('NOT_WRITABLE_SPARTACUS', ' (Only required when you plan to use Spartacus plugin for remote plugin download)');
|
||||||
|
Reference in New Issue
Block a user