commit
20f1ee4cef
@ -329,7 +329,7 @@ class Cache_Lite
|
||||
}
|
||||
if ($this->_onlyMemoryCaching) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (($doNotTestCacheValidity) || (is_null($this->_refreshTime))) {
|
||||
if (file_exists($this->_file)) {
|
||||
@ -387,7 +387,7 @@ class Cache_Lite
|
||||
// if $res if false, we need to invalidate the cache
|
||||
@touch($this->_file, time() - 2*abs($this->_lifeTime));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$res = $this->_write($data);
|
||||
}
|
||||
@ -781,7 +781,7 @@ class Cache_Lite
|
||||
if ($this->_fileLocking) @flock($fp, LOCK_UN);
|
||||
@fclose($fp);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return $this->raiseError('Cache_Lite : Unable to write cache file : '.$this->_file, -1);
|
||||
}
|
||||
|
||||
|
18
docs/NEWS
18
docs/NEWS
@ -1,5 +1,14 @@
|
||||
Version 2.1 ()
|
||||
------------------------------------------------------------------------
|
||||
* Use CDATA encoded body for ATOM feed
|
||||
|
||||
* Fix: Ajax upload to ML now also works for non-images
|
||||
|
||||
* Added new theme "Clean-Blog". Clean Blog is a fully responsive,
|
||||
mobile first HTML5/CSS3 theme built on the Bootstrap
|
||||
framework.
|
||||
|
||||
* Fixed checkbox entryproperties re-sets (#376)
|
||||
|
||||
* Fixed media item delete handler (#371)
|
||||
|
||||
@ -104,11 +113,14 @@ Version 2.1 ()
|
||||
* Some small enhancements to the error reporting
|
||||
|
||||
|
||||
Version 2.0.3 ()
|
||||
Version 2.0.3 (January 4th, 2016)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
* Fix XSS in backend comment editing form for logged-in authors,
|
||||
thanks to Onur Yilmaz and Robert Abela from Netsparker.com
|
||||
|
||||
* Fix some backend entry form related event messages
|
||||
|
||||
|
||||
|
||||
Version 2.0.2 (July 24th, 2015)
|
||||
------------------------------------------------------------------------
|
||||
@ -897,7 +909,7 @@ Version 1.7 (May 11th, 2013)
|
||||
The Smarty security policy to us only serves as a restriction
|
||||
within .tpl files to not allow arbitrary PHP modifier/function calls.
|
||||
If in the future Smarty supports enforcing trustedDir checks on
|
||||
{include} calls seperately to smarty->fetch() calls, we'll also
|
||||
{include} calls separately to smarty->fetch() calls, we'll also
|
||||
add that to .tpl files.
|
||||
(garvinhicking)
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
stable:2.0.2
|
||||
beta:2.0.2
|
||||
stable:2.0.3
|
||||
beta:2.0.3
|
||||
|
@ -300,7 +300,7 @@ $data['c_type'] = $c_type;
|
||||
$i = 0;
|
||||
$comments = array();
|
||||
|
||||
if(is_array($sql)) {
|
||||
if (is_array($sql)) {
|
||||
foreach ($sql as $rs) {
|
||||
$i++;
|
||||
$comment = array(
|
||||
|
@ -447,7 +447,14 @@ function serendipity_die($html) {
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=' . $charset . '">
|
||||
</head>
|
||||
<body>' . $html . '</body>
|
||||
<body><div class="msg_notice">' . $html . '</div><style>.msg_notice {
|
||||
display: block;
|
||||
margin: 1.5em 0;
|
||||
padding: .5em;
|
||||
background: #f2dede;
|
||||
border: 1px solid #e4b9b9;
|
||||
color: #b94a48;
|
||||
}</style></body>
|
||||
</html>');
|
||||
}
|
||||
|
||||
|
@ -66,7 +66,7 @@ function serendipity_db_in_sql($col, &$search_ids, $type = ' OR ') {
|
||||
* @param boolean If true, errors will be reported. If false, errors will be ignored.
|
||||
* @param string A possible array key name, so that you can control the multi-dimensional mapping of an array by the key column
|
||||
* @param string A possible array field name, so that you can control the multi-dimensional mapping of an array by the key column and the field value.
|
||||
* @param boolean If true, the executed SQL error is known to fail, and should be disregarded (errors can be ignroed on DUPLICATE INDEX queries and the likes)
|
||||
* @param boolean If true, the executed SQL error is known to fail, and should be disregarded (errors can be ignored on DUPLICATE INDEX queries and the likes)
|
||||
* @return mixed Returns the result of the SQL query, depending on the input parameters
|
||||
*/
|
||||
function &serendipity_db_query($sql, $single = false, $result_type = "both", $reportErr = false, $assocKey = false, $assocVal = false, $expectError = false) {
|
||||
@ -75,7 +75,7 @@ function &serendipity_db_query($sql, $single = false, $result_type = "both", $re
|
||||
$result = $serendipity['dbConn']->query($sql, Adapter::QUERY_MODE_EXECUTE);
|
||||
$resultArray = $result->toArray();
|
||||
$resultArray = $resultArray[0];
|
||||
if(is_array($resultArray) && $result_type != "assoc") {
|
||||
if (is_array($resultArray) && $result_type != "assoc") {
|
||||
$i=0; # the underlying code expects additional numerical indices
|
||||
foreach ($resultArray as $key=>$value) {
|
||||
$resultArray[$i] = $value;
|
||||
|
@ -55,7 +55,7 @@ function serendipity_db_in_sql($col, &$search_ids, $type = ' OR ') {
|
||||
* @param boolean If true, errors will be reported. If false, errors will be ignored.
|
||||
* @param string A possible array key name, so that you can control the multi-dimensional mapping of an array by the key column
|
||||
* @param string A possible array field name, so that you can control the multi-dimensional mapping of an array by the key column and the field value.
|
||||
* @param boolean If true, the executed SQL error is known to fail, and should be disregarded (errors can be ignroed on DUPLICATE INDEX queries and the likes)
|
||||
* @param boolean If true, the executed SQL error is known to fail, and should be disregarded (errors can be ignored on DUPLICATE INDEX queries and the likes)
|
||||
* @return mixed Returns the result of the SQL query, depending on the input parameters
|
||||
*/
|
||||
function &serendipity_db_query($sql, $single = false, $result_type = "both", $reportErr = false, $assocKey = false, $assocVal = false, $expectError = false) {
|
||||
|
@ -55,7 +55,7 @@ function serendipity_db_in_sql($col, &$search_ids, $type = ' OR ') {
|
||||
* @param boolean If true, errors will be reported. If false, errors will be ignored.
|
||||
* @param string A possible array key name, so that you can control the multi-dimensional mapping of an array by the key column
|
||||
* @param string A possible array field name, so that you can control the multi-dimensional mapping of an array by the key column and the field value.
|
||||
* @param boolean If true, the executed SQL error is known to fail, and should be disregarded (errors can be ignroed on DUPLICATE INDEX queries and the likes)
|
||||
* @param boolean If true, the executed SQL error is known to fail, and should be disregarded (errors can be ignored on DUPLICATE INDEX queries and the likes)
|
||||
* @return mixed Returns the result of the SQL query, depending on the input parameters
|
||||
*/
|
||||
function &serendipity_db_query($sql, $single = false, $result_type = "both", $reportErr = false, $assocKey = false, $assocVal = false, $expectError = false) {
|
||||
|
@ -206,7 +206,7 @@ function serendipity_db_in_sql($col, &$search_ids, $type = ' OR ') {
|
||||
* @param boolean If true, errors will be reported. If false, errors will be ignored.
|
||||
* @param string A possible array key name, so that you can control the multi-dimensional mapping of an array by the key column
|
||||
* @param string A possible array field name, so that you can control the multi-dimensional mapping of an array by the key column and the field value.
|
||||
* @param boolean If true, the executed SQL error is known to fail, and should be disregarded (errors can be ignroed on DUPLICATE INDEX queries and the likes)
|
||||
* @param boolean If true, the executed SQL error is known to fail, and should be disregarded (errors can be ignored on DUPLICATE INDEX queries and the likes)
|
||||
* @return mixed Returns the result of the SQL query, depending on the input parameters
|
||||
*/
|
||||
function &serendipity_db_query($sql, $single = false, $result_type = "both", $reportErr = true, $assocKey = false, $assocVal = false, $expectError = false)
|
||||
|
@ -190,7 +190,7 @@ function serendipity_displayCommentForm($id, $url = '', $comments = NULL, $data
|
||||
|
||||
$commentform_data = array(
|
||||
'commentform_action' => $url,
|
||||
'commentform_id' => $id,
|
||||
'commentform_id' => (int)$id,
|
||||
'commentform_name' => isset($data['name']) ? serendipity_specialchars($data['name']) : (isset($serendipity['COOKIE']['name']) ? serendipity_specialchars($serendipity['COOKIE']['name']) : ''),
|
||||
'commentform_email' => isset($data['email']) ? serendipity_specialchars($data['email']) : (isset($serendipity['COOKIE']['email']) ? serendipity_specialchars($serendipity['COOKIE']['email']) : ''),
|
||||
'commentform_url' => isset($data['url']) ? serendipity_specialchars($data['url']) : (isset($serendipity['COOKIE']['url']) ? serendipity_specialchars($serendipity['COOKIE']['url']) : ''),
|
||||
|
@ -167,8 +167,8 @@ function &serendipity_fetchEntryCategories($entryid) {
|
||||
* Other "external" variables that affect this function are:
|
||||
* $serendipity['short_archives'] - Indicates if the short archive listing is wanted, without the full entry text
|
||||
* $serendipity['range'] - If $range is not used, the time restriction is fetched from this array, which holds a start timestamp and end timestamp.
|
||||
* $serendipity['GET']['category'] - The category ID to restrict fetching entries from (can be seperated by ";")
|
||||
* $serendipity['GET']['hide_category']- The category ID to NOT fetch entries from (can be seperated by ";")
|
||||
* $serendipity['GET']['category'] - The category ID to restrict fetching entries from (can be separated by ";")
|
||||
* $serendipity['GET']['hide_category']- The category ID to NOT fetch entries from (can be separated by ";")
|
||||
* $serendipity['GET']['viewAuthor'] - Only fetch entries by this author
|
||||
* $serendipity['GET']['page'] - The page number to show entries, for pagination
|
||||
*
|
||||
@ -207,7 +207,7 @@ function &serendipity_fetchEntryCategories($entryid) {
|
||||
function &serendipity_fetchEntries($range = null, $full = true, $limit = '', $fetchDrafts = false, $modified_since = false, $orderby = 'timestamp DESC', $filter_sql = '', $noCache = false, $noSticky = false, $select_key = null, $group_by = null, $returncode = 'array', $joinauthors = true, $joincategories = true, $joinown = null) {
|
||||
global $serendipity;
|
||||
|
||||
if ($serendipity['use_internal_cache']) {
|
||||
if ($serendipity['useInternalCache']) {
|
||||
$cache = serendipity_setupCache();
|
||||
|
||||
$args = func_get_args();
|
||||
@ -460,7 +460,7 @@ function &serendipity_fetchEntries($range = null, $full = true, $limit = '', $fe
|
||||
serendipity_fetchEntryData($ret);
|
||||
}
|
||||
|
||||
if ($serendipity['use_internal_cache']) {
|
||||
if ($serendipity['useInternalCache']) {
|
||||
$args = func_get_args();
|
||||
$args = array_values($args);
|
||||
$key = md5(serialize($args));
|
||||
@ -1087,7 +1087,7 @@ function serendipity_printEntries($entries, $extended = 0, $preview = false, $sm
|
||||
}
|
||||
|
||||
$dategroup[$key]['date'] = $entries[$x]['timestamp'];
|
||||
$dategroup[$key]['is_sticky'] = (isset($entries[$x]['is_sticky']) && serendipity_db_bool($entries[$x]['is_sticky']) ? true : false);
|
||||
$dategroup[$key]['is_sticky'] = (isset($entries[$x]['is_sticky']) && (serendipity_db_bool($entries[$x]['is_sticky']) ? true : false));
|
||||
$dategroup[$key]['entries'][] = &$entries[$x];
|
||||
}
|
||||
} elseif ($use_grouped_array === 'plugin') {
|
||||
@ -1254,7 +1254,7 @@ function serendipity_printEntries($entries, $extended = 0, $preview = false, $sm
|
||||
|
||||
$serendipity['smarty']->assignByRef('entries', $dategroup);
|
||||
|
||||
if ($serendipity['use_internal_cache']) {
|
||||
if ($serendipity['useInternalCache']) {
|
||||
$cache = serendipity_setupCache();
|
||||
|
||||
$args = func_get_args();
|
||||
@ -1448,7 +1448,7 @@ function serendipity_updertEntry($entry) {
|
||||
}
|
||||
|
||||
// New entries need an author
|
||||
$entry['author'] = $serendipity['user'];
|
||||
$entry['author'] = $serendipity['user'];
|
||||
if (!isset($entry['authorid']) || empty($entry['authorid'])) {
|
||||
$entry['authorid'] = $serendipity['authorid'];
|
||||
}
|
||||
@ -1457,11 +1457,11 @@ function serendipity_updertEntry($entry) {
|
||||
$entry['isdraft'] = 'true';
|
||||
}
|
||||
|
||||
if(!isset($entry['allow_comments'])){
|
||||
$entry['allow_comments']='false';
|
||||
if (!isset($entry['allow_comments'])) {
|
||||
$entry['allow_comments'] = 'false';
|
||||
}
|
||||
if(!isset($entry['moderate_comments'])){
|
||||
$entry['moderate_comments']='false';
|
||||
if (!isset($entry['moderate_comments'])) {
|
||||
$entry['moderate_comments'] = 'false';
|
||||
}
|
||||
|
||||
$res = serendipity_db_insert('entries', $entry);
|
||||
@ -1483,7 +1483,8 @@ function serendipity_updertEntry($entry) {
|
||||
//Some error message here
|
||||
return ENTRIES_NOT_SUCCESSFULLY_INSERTED;
|
||||
}
|
||||
$newEntry = 1;
|
||||
$newEntry = 1;
|
||||
|
||||
} else {
|
||||
/* we need to update */
|
||||
|
||||
@ -1519,7 +1520,9 @@ function serendipity_updertEntry($entry) {
|
||||
|
||||
foreach (array('title', 'body', 'extended', 'author') as $required_field) {
|
||||
// dashboard publishing a draft does not pass title, body, extended, and author, so we need to set it here
|
||||
if (! isset($entry[$required_field])) { $entry[$required_field] = $_entry[$required_field]; }
|
||||
if (!isset($entry[$required_field])) {
|
||||
$entry[$required_field] = $_entry[$required_field];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -46,7 +46,7 @@ function serendipity_isActiveFile($file) {
|
||||
* @param boolean Apply strict directory checks, or include subdirectories?
|
||||
* @return array Resultset of images
|
||||
*/
|
||||
function serendipity_fetchImagesFromDatabase($start=0, $limit=0, &$total=null, $order = false, $ordermode = false, $directory = '', $filename = '', $keywords = '', $filter = array(), $strict_directory = false) {
|
||||
function serendipity_fetchImagesFromDatabase($start=0, $limit=0, &$total=null, $order = false, $ordermode = false, $directory = '', $filename = '', $keywords = '', $filter = array(), $hideSubdirFiles = false) {
|
||||
global $serendipity;
|
||||
|
||||
$cond = array(
|
||||
@ -75,12 +75,19 @@ function serendipity_fetchImagesFromDatabase($start=0, $limit=0, &$total=null, $
|
||||
$limitsql = serendipity_db_limit_sql(serendipity_db_limit($start, $limit));
|
||||
}
|
||||
|
||||
if ($strict_directory) {
|
||||
$cond['parts']['directory'] = " AND i.path = '" . serendipity_db_escape_string($directory) . "'\n";
|
||||
} elseif (!empty($directory)) {
|
||||
$cond['parts']['directory'] = " AND i.path LIKE '" . serendipity_db_escape_string($directory) . "%'\n";
|
||||
if ($hideSubdirFiles == false) {
|
||||
if (!empty($directory)) {
|
||||
$cond['parts']['directory'] = " AND i.path LIKE '" . serendipity_db_escape_string($directory) . "%'\n";
|
||||
}
|
||||
// if in root, having no directory set, the query fetches all files by default, meaning we are done
|
||||
} else {
|
||||
if (!empty($directory)) {
|
||||
$cond['parts']['directory'] = " AND i.path LIKE '" . serendipity_db_escape_string($directory) . "%'\n";
|
||||
} else {
|
||||
$cond['parts']['directory'] = " AND i.path = ''\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (!empty($filename)) {
|
||||
$cond['parts']['filename'] = " AND (i.name like '%" . serendipity_db_escape_string($filename) . "%' OR
|
||||
i.realname like '%" . serendipity_db_escape_string($filename) . "%')\n";
|
||||
@ -1452,9 +1459,8 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
|
||||
global $serendipity;
|
||||
static $debug = false;
|
||||
|
||||
$extraParems = serendipity_generateImageSelectorParems();
|
||||
$rootDirStrict = ($serendipity['GET']['toggle_dir'] == 'yes') ? true : false; // default
|
||||
|
||||
$extraParems = serendipity_generateImageSelectorParems();
|
||||
|
||||
$serendipity['GET']['only_path'] = serendipity_uploadSecure($limit_path . $serendipity['GET']['only_path'], true);
|
||||
$serendipity['GET']['only_filename'] = serendipity_specialchars(str_replace(array('*', '?'), array('%', '_'), $serendipity['GET']['only_filename']));
|
||||
|
||||
@ -1601,6 +1607,7 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
|
||||
if (!isset($serendipity['GET']['filter'])) {
|
||||
serendipity_restoreVar($serendipity['COOKIE']['filter'], $serendipity['GET']['filter']);
|
||||
}
|
||||
|
||||
$serendipity['imageList'] = serendipity_fetchImagesFromDatabase(
|
||||
$start,
|
||||
$perPage,
|
||||
@ -1611,7 +1618,7 @@ function serendipity_displayImageList($page = 0, $lineBreak = NULL, $manage = fa
|
||||
(isset($serendipity['GET']['only_filename']) ? $serendipity['GET']['only_filename'] : ''),
|
||||
(isset($serendipity['GET']['keywords']) ? $serendipity['GET']['keywords'] : ''),
|
||||
(isset($serendipity['GET']['filter']) ? $serendipity['GET']['filter'] : ''),
|
||||
$rootDirStrict
|
||||
isset($serendipity['GET']['hideSubdirFiles'])
|
||||
);
|
||||
|
||||
$pages = ceil($totalImages / $perPage);
|
||||
@ -2945,7 +2952,7 @@ function serendipity_showMedia(&$file, &$paths, $url = '', $manage = false, $lin
|
||||
'filter' => $serendipity['GET']['filter'],
|
||||
'sort_order' => $order_fields,
|
||||
'simpleFilters' => $serendipity['simpleFilters'],
|
||||
'toggle_dir' => empty($serendipity['GET']['toggle_dir']) ? 'no' : $serendipity['GET']['toggle_dir'],
|
||||
'hideSubdirFiles' => $serendipity['GET']['hideSubdirFiles'],
|
||||
'authors' => serendipity_fetchUsers(),
|
||||
'sort_row_interval' => array(8, 16, 50, 100),
|
||||
'nr_files' => count($file),
|
||||
|
@ -494,6 +494,10 @@ function serendipity_printConfigTemplate($config, $from = false, $noForm = false
|
||||
$item['default'] = serendipity_probeInstallation($item['var']);
|
||||
}
|
||||
|
||||
if (in_array('ignore', $item['flags'])) {
|
||||
$item['ignore'] = true;
|
||||
}
|
||||
|
||||
if (in_array('ifEmpty', $item['flags']) && empty($value)) {
|
||||
$value = serendipity_query_default($item['var'], $item['default']);
|
||||
}
|
||||
|
@ -287,10 +287,10 @@ function serendipity_plugin_config(&$plugin, &$bag, &$name, &$desc, &$config_nam
|
||||
$hvalue = serendipity_specialchars($value);
|
||||
}
|
||||
|
||||
$radio = array();
|
||||
$select = array();
|
||||
$per_row = null;
|
||||
$text_rows = null;
|
||||
$radio = array();
|
||||
$select = array();
|
||||
$per_row = null;
|
||||
$text_rows = null;
|
||||
$input_type = null;
|
||||
|
||||
$data['is_multi_select'] = $is_multi_select = false;
|
||||
@ -310,7 +310,9 @@ function serendipity_plugin_config(&$plugin, &$bag, &$name, &$desc, &$config_nam
|
||||
|
||||
|
||||
switch ($ctype) {
|
||||
case 'seperator':
|
||||
case 'seperator':// compat, due being misspelled
|
||||
case 'separator':
|
||||
case 'suboption':
|
||||
$assign_plugin_config($data);
|
||||
|
||||
break;
|
||||
|
@ -67,6 +67,7 @@ function locateHiddenVariables($_args) {
|
||||
function serveComments() {
|
||||
global $serendipity;
|
||||
$serendipity['view'] = 'comments';
|
||||
$uri = $_SERVER['REQUEST_URI'];
|
||||
$_args = serendipity_getUriArguments($uri, true); // Need to also match "." character
|
||||
$timedesc = array();
|
||||
|
||||
@ -220,6 +221,7 @@ function serveAuthorPage($matches) {
|
||||
function serveCategory($matches) {
|
||||
global $serendipity;
|
||||
$serendipity['view'] = 'categories';
|
||||
$uri = $_SERVER['REQUEST_URI'];
|
||||
|
||||
$is_multicat = (isset($serendipity['POST']['isMultiCat']) && is_array($serendipity['POST']['multiCat']));
|
||||
if ($is_multicat) {
|
||||
@ -235,7 +237,6 @@ function serveCategory($matches) {
|
||||
|
||||
$serendipity['GET']['action'] = 'read';
|
||||
|
||||
|
||||
$_args = locateHiddenVariables($serendipity['uriArguments']);
|
||||
|
||||
if (!$is_multicat) {
|
||||
@ -250,7 +251,7 @@ function serveCategory($matches) {
|
||||
header('HTTP/1.0 404 Not found');
|
||||
header('Status: 404 Not found');
|
||||
} else {
|
||||
$serendipity['head_title'] = $cInfo['category_name'];
|
||||
$serendipity['head_title'] = $cInfo['category_name'];
|
||||
if (isset($serendipity['GET']['page'])) {
|
||||
$serendipity['head_title'] .= " - " . serendipity_specialchars($serendipity['GET']['page']);
|
||||
}
|
||||
@ -295,6 +296,7 @@ function serveFeed() {
|
||||
global $serendipity;
|
||||
$serendipity['view'] = 'feed';
|
||||
header('Content-Type: text/html; charset=utf-8');
|
||||
$uri = $_SERVER['REQUEST_URI'];
|
||||
|
||||
if (preg_match('@/(index|atom[0-9]*|rss|comments|trackbacks|comments_and_trackbacks|opml)\.(rss[0-9]?|rdf|rss|xml|atom)@', $uri, $vmatches)) {
|
||||
list($_GET['version'], $_GET['type']) = serendipity_discover_rss($vmatches[1], $vmatches[2]);
|
||||
@ -321,7 +323,9 @@ function serveFeed() {
|
||||
|
||||
function serveEntry($matches) {
|
||||
global $serendipity;
|
||||
|
||||
$serendipity['view'] = 'entry';
|
||||
$uri = $_SERVER['REQUEST_URI'];
|
||||
|
||||
if (isset($serendipity['GET']['id'])) {
|
||||
$matches[1] = (int)$serendipity['GET']['id'];
|
||||
@ -333,12 +337,14 @@ function serveEntry($matches) {
|
||||
serendipity_rememberComment();
|
||||
|
||||
if (!empty($serendipity['POST']['submit']) && !isset($_REQUEST['serendipity']['csuccess'])) {
|
||||
|
||||
$comment['url'] = $serendipity['POST']['url'];
|
||||
$comment['comment'] = trim($serendipity['POST']['comment']);
|
||||
$comment['name'] = $serendipity['POST']['name'];
|
||||
$comment['email'] = $serendipity['POST']['email'];
|
||||
$comment['subscribe'] = $serendipity['POST']['subscribe'];
|
||||
$comment['parent_id'] = $serendipity['POST']['replyTo'];
|
||||
|
||||
if (!empty($comment['comment'])) {
|
||||
if (serendipity_saveComment($serendipity['POST']['entry_id'], $comment, 'NORMAL')) {
|
||||
$sc_url = ($_SERVER['HTTPS'] == 'on' ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . (strstr($_SERVER['REQUEST_URI'], '?') ? '&' : '?') . 'serendipity[csuccess]=' . (isset($serendipity['csuccess']) ? $serendipity['csuccess'] : 'true');
|
||||
@ -351,7 +357,7 @@ function serveEntry($matches) {
|
||||
$serendipity['messagestack']['comments'][] = COMMENT_NOT_ADDED;
|
||||
}
|
||||
} else {
|
||||
$serendipity['messagestack']['comments'][] = sprintf(EMPTY_COMMENT, '', '');
|
||||
$serendipity['messagestack']['comments'][] = sprintf(EMPTY_COMMENT, '', '');
|
||||
}
|
||||
}
|
||||
|
||||
@ -487,7 +493,7 @@ function serveArchives() {
|
||||
if ($serendipity['GET']['action'] == 'read') {
|
||||
if ($serendipity['GET']['category']) {
|
||||
$cInfo = serendipity_fetchCategoryInfo($serendipity['GET']['category']);
|
||||
$serendipity['head_title'] = $cInfo['category_name'];
|
||||
$serendipity['head_title'] = $cInfo['category_name'];
|
||||
}
|
||||
$serendipity['head_subtitle'] .= sprintf(ENTRIES_FOR, $date);
|
||||
}
|
||||
|
@ -127,8 +127,8 @@ function serendipity_ifRemember($name, $value, $isDefault = false, $att = 'check
|
||||
* @access public
|
||||
* @param array Smarty parameter input array:
|
||||
* [FETCHING]
|
||||
* category: (int) The category ID (seperate multiple with ";") to fetch entries from
|
||||
* viewAuthor: (int) The author ID (seperate multiple with ";") to fetch entries from
|
||||
* category: (int) The category ID (separate multiple with ";") to fetch entries from
|
||||
* viewAuthor: (int) The author ID (separate multiple with ";") to fetch entries from
|
||||
* page: (int) The number of the page for paginating entries
|
||||
* id: (int) The ID of an entry. If given, only a single entry will be fetched. If left empty, multiple entries are fetched.
|
||||
* range: (mixed) Restricts fetching entries to a specific timespan. Behaves differently depending on the type:
|
||||
|
@ -10,6 +10,7 @@ include_once('serendipity_config.inc.php');
|
||||
|
||||
include_once(S9Y_INCLUDE_PATH . 'include/plugin_api.inc.php');
|
||||
|
||||
$uri = $_SERVER['REQUEST_URI']; // need to define this again here, as index.php (2.1) no longer includes this file
|
||||
$uri_addData = array(
|
||||
'startpage' => false,
|
||||
'uriargs' => implode('/', serendipity_getUriArguments($uri, true)),
|
||||
@ -121,7 +122,7 @@ switch ($serendipity['GET']['action']) {
|
||||
|
||||
// Welcome screen or whatever
|
||||
default:
|
||||
if ($serendipity['use_internal_cache']) {
|
||||
if ($serendipity['useInternalCache']) {
|
||||
$entries = serendipity_fetchEntries(null, true, $serendipity['fetchLimit']);
|
||||
if (! serendipity_printEntriesCached($entries)) {
|
||||
serendipity_printEntries($entries);
|
||||
|
@ -83,23 +83,21 @@ function errorHandlerCreateDOM(htmlStr) {
|
||||
break;
|
||||
|
||||
case 'external_plugin':
|
||||
switch ($eventData) {
|
||||
case 'admin/serendipity_editor.js':
|
||||
header('Content-Type: application/javascript');
|
||||
global $serendipity;
|
||||
if ($eventData == 'admin/serendipity_editor.js') {
|
||||
header('Content-Type: application/javascript');
|
||||
|
||||
echo serendipity_smarty_show('admin/serendipity_editor.js.tpl', null, 'JS', 'include/plugin_api.inc.php:external_plugin');
|
||||
break;
|
||||
echo serendipity_smarty_show('admin/serendipity_editor.js.tpl', null, 'JS', 'include/plugin_api.inc.php:external_plugin');
|
||||
}
|
||||
break;
|
||||
|
||||
case 'backend_save':
|
||||
case 'backend_publish':
|
||||
// this is preview_iframe.tpl updertHooks
|
||||
echo '<script>document.addEventListener("DOMContentLoaded", function() { if (window.parent.Modernizr.indexedDB) { window.parent.serendipity.eraseEntryEditorCache(); } });</script>';
|
||||
case 'backend_save':
|
||||
case 'backend_publish':
|
||||
// this is preview_iframe.tpl updertHooks [ NOT ONLY!! See freetags ]
|
||||
if ($_GET['serendipity']['is_iframe'] == 'true' && $_GET['serendipity']['iframe_mode'] == 'save') {
|
||||
echo "\n".'<script>document.addEventListener("DOMContentLoaded", function() { if (window.parent.Modernizr.indexedDB) { window.parent.serendipity.eraseEntryEditorCache(); } });</script>'."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
return true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1498,7 +1496,7 @@ class serendipity_plugin
|
||||
* You need to override this method in your child class.
|
||||
*
|
||||
* @access public
|
||||
* @param string The referenced varaiable that holds the sidebar title of your plugin.
|
||||
* @param string The referenced variable that holds the sidebar title of your plugin.
|
||||
* @return null
|
||||
*/
|
||||
function generate_content(&$title)
|
||||
@ -1523,7 +1521,7 @@ class serendipity_plugin
|
||||
if (is_null($_res)) {
|
||||
// A protected plugin by a specific owner may not have its values stored in $serendipity
|
||||
// because of the special authorid. To display such contents, we need to fetch it
|
||||
// seperately from the DB.
|
||||
// separately from the DB.
|
||||
$_res = serendipity_get_user_config_var($this->instance . '/' . $name, null, $defaultvalue);
|
||||
}
|
||||
|
||||
|
@ -32,6 +32,14 @@
|
||||
'permission' => 'siteConfiguration',
|
||||
'flags' => array('nosave', 'simpleInstall')),
|
||||
|
||||
array('var' => 'ignore_password',
|
||||
'title' => 'Ignore',
|
||||
'description' => 'Ignore, just to catch the browser filling in the wrong password',
|
||||
'type' => 'fullprotected',
|
||||
'default' => '',
|
||||
'permission' => 'siteConfiguration',
|
||||
'flags' => array('nosave', 'hideValue', 'simpleInstall', 'ignore')),
|
||||
|
||||
array('var' => 'dbPass',
|
||||
'title' => INSTALL_DBPASS,
|
||||
'description' => INSTALL_DBPASS_DESC,
|
||||
@ -412,6 +420,13 @@
|
||||
'type' => 'list',
|
||||
'default' => array('Off' => NO, 'error' => ERROR, 'debug' => DEBUG),
|
||||
'permission' => 'blogConfiguration'),
|
||||
|
||||
array('var' => 'useInternalCache',
|
||||
'title' => USE_CACHE,
|
||||
'description' => USE_CACHE_DESC,
|
||||
'type' => 'bool',
|
||||
'default' => false,
|
||||
'permission' => 'siteConfiguration'),
|
||||
));
|
||||
|
||||
$res['display'] =
|
||||
|
@ -82,3 +82,13 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
}
|
||||
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1094,3 +1094,13 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1133,3 +1133,13 @@ $i18n_filename_to = array (
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1134,3 +1134,13 @@ $i18n_filename_to = array (
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1101,3 +1101,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -685,7 +685,7 @@
|
||||
|
||||
@define('BACKEND_TITLE', 'Zusätzlicher Informationstext, der auf der Plugin-Oberfläche dargestellt wird');
|
||||
@define('BACKEND_TITLE_FOR_NUGGET', 'An dieser Stelle können Sie einen eigenen Text angeben, der auf der Plugin-Konfigurationsoberfläche zusätzlich angezeigt wird. Denn falls Sie mehrere HTML-Klötze mit leerem Titel angelegt haben, ist es gegebenenfalls schwierig, diese auseinanderzuhalten.');
|
||||
@define('CATEGORIES_ALLOW_SELECT', 'Besuchern erlauben, mehrere Kategorien gleichzeit darzustellen?');
|
||||
@define('CATEGORIES_ALLOW_SELECT', 'Besuchern erlauben, mehrere Kategorien gleichzeitig darzustellen?');
|
||||
@define('CATEGORIES_ALLOW_SELECT_DESC', 'Falls diese Option aktiviert ist, wird eine Auswahlbox neben jeder Kategorie angezeigt, damit Besucher mehrere Kategorien gleichzeitig auswählen können.');
|
||||
@define('PAGE_BROWSE_PLUGINS', 'Seite %s von %s, insgesamt %s Plugins.');
|
||||
@define('INSTALL_CAT_PERMALINKS', 'Permalinks');
|
||||
@ -950,7 +950,7 @@
|
||||
@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_ALT', 'Bildinhalt (Zusammenfassung für das ALT-Attribut)');
|
||||
@define('MEDIA_PROPERTY_ALT', 'Bildinhalt (im ALT-Attribut)');
|
||||
@define('MEDIA_TITLE', 'TITLE-Attribut (wird beim Überfahren mit der Maus angezeigt)');
|
||||
|
||||
@define('QUICKSEARCH_SORT', 'How should search-results be sorted?');
|
||||
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1098,8 +1098,18 @@
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');
|
||||
@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma separated list of places here. Available places are: ');
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1120,3 +1120,13 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1109,3 +1109,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1100,3 +1100,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1105,3 +1105,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1106,3 +1106,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1100,3 +1100,13 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1106,3 +1106,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1113,3 +1113,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1105,3 +1105,13 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1021,3 +1021,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1092,3 +1092,13 @@ $i18n_filename_to = array (
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1101,3 +1101,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1106,3 +1106,13 @@ $i18n_unknown = 'tw';
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1106,3 +1106,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1107,3 +1107,13 @@ $i18n_unknown = 'tw';
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1,10 +1,13 @@
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Multi move helper');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries be rewritten to point to the new location.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info helper');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories are based to their physical folder directory name. If you want to change or move directories with items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the MediaLibrary and after all, delete the now emptied old directory here. Or edit the old directory via the edit directory button below and rename it to whatever you like (existing subdir/ +) newname. This will move all directories and items and rename entry path too.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
@define('HIDE_SUBDIR_FILES', 'Hide Files of Subdirectories');
|
||||
@define('USE_CACHE', 'USe Cache');
|
||||
@define('USE_CACHE_DESC', 'Use an internal cache to not repeat database reads. This reduces the load on servers with medium to high traffic and improves page load time.');
|
@ -82,3 +82,13 @@ foreach($const['missing'] AS $file => $constants) {
|
||||
}
|
||||
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1094,3 +1094,13 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1133,3 +1133,13 @@ $i18n_filename_to = array (
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1134,3 +1134,13 @@ $i18n_filename_to = array (
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1101,3 +1101,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -685,7 +685,7 @@
|
||||
|
||||
@define('BACKEND_TITLE', 'Zusätzlicher Informationstext, der auf der Plugin-Oberfläche dargestellt wird');
|
||||
@define('BACKEND_TITLE_FOR_NUGGET', 'An dieser Stelle können Sie einen eigenen Text angeben, der auf der Plugin-Konfigurationsoberfläche zusätzlich angezeigt wird. Denn falls Sie mehrere HTML-Klötze mit leerem Titel angelegt haben, ist es gegebenenfalls schwierig, diese auseinanderzuhalten.');
|
||||
@define('CATEGORIES_ALLOW_SELECT', 'Besuchern erlauben, mehrere Kategorien gleichzeit darzustellen?');
|
||||
@define('CATEGORIES_ALLOW_SELECT', 'Besuchern erlauben, mehrere Kategorien gleichzeitig darzustellen?');
|
||||
@define('CATEGORIES_ALLOW_SELECT_DESC', 'Falls diese Option aktiviert ist, wird eine Auswahlbox neben jeder Kategorie angezeigt, damit Besucher mehrere Kategorien gleichzeitig auswählen können.');
|
||||
@define('PAGE_BROWSE_PLUGINS', 'Seite %s von %s, insgesamt %s Plugins.');
|
||||
@define('INSTALL_CAT_PERMALINKS', 'Permalinks');
|
||||
@ -950,7 +950,7 @@
|
||||
@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_ALT', 'Bildinhalt (Zusammenfassung für das ALT-Attribut)');
|
||||
@define('MEDIA_PROPERTY_ALT', 'Bildinhalt (im ALT-Attribut)');
|
||||
@define('MEDIA_TITLE', 'TITLE-Attribut (wird beim Überfahren mit der Maus angezeigt)');
|
||||
|
||||
@define('QUICKSEARCH_SORT', 'How should search-results be sorted?');
|
||||
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1098,8 +1098,18 @@
|
||||
@define('INSTALL_PASSWORD2_DESC', 'Password for admin login, enter again to verify.');
|
||||
@define('INSTALL_PASSWORD_INVALID', 'Your entered passwords for the administrator user do not match.');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR', 'Force specific backend popups');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma seperated list of places here. Available places are: ');
|
||||
@define('INSTALL_BACKENDPOPUP_GRANULAR_DESC', 'If you generally disable backend popups, you can specifically force using popups for specific places by entering a comma separated list of places here. Available places are: ');
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1120,3 +1120,13 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1109,3 +1109,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1100,3 +1100,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1105,3 +1105,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1106,3 +1106,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1100,3 +1100,13 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1106,3 +1106,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1113,3 +1113,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1104,3 +1104,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1105,3 +1105,13 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1021,3 +1021,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1092,3 +1092,13 @@ $i18n_filename_to = array (
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1101,3 +1101,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1106,3 +1106,13 @@ $i18n_unknown = 'tw';
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1106,3 +1106,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1107,3 +1107,13 @@ $i18n_unknown = 'tw';
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -1102,3 +1102,13 @@
|
||||
@define('JS_FAILURE', 'The Serendipity JavaScript-library could not be loaded. This can happen due to PHP or Plugin errors, or even a malformed browser cache. To check the exact error please open <a href="%1$s">%1$s</a> manually in your browser and check for error messages.');
|
||||
@define('THEMES_PREVIEW_BLOG', 'See demo on blog.s9y.org');
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
|
@ -15,7 +15,7 @@ class serendipity_event_entryproperties extends serendipity_event
|
||||
$propbag->add('description', PLUGIN_EVENT_ENTRYPROPERTIES_DESC);
|
||||
$propbag->add('stackable', false);
|
||||
$propbag->add('author', 'Garvin Hicking');
|
||||
$propbag->add('version', '1.38');
|
||||
$propbag->add('version', '1.39');
|
||||
$propbag->add('requirements', array(
|
||||
'serendipity' => '1.6',
|
||||
'smarty' => '2.6.27',
|
||||
@ -215,12 +215,21 @@ class serendipity_event_entryproperties extends serendipity_event
|
||||
$property = serendipity_fetchEntryProperties($eventData['id']);
|
||||
$supported_properties = serendipity_event_entryproperties::getSupportedProperties();
|
||||
|
||||
// cleanup properties first, if none disable_markups plugins were set or a previous selected was reset
|
||||
// Cleanup properties first, if none disable_markups plugins were set, or a previous selected one was re-set
|
||||
if (is_array($serendipity['POST']['properties']) && !is_array($serendipity['POST']['properties']['disable_markups'])) {
|
||||
$q = "DELETE FROM {$serendipity['dbPrefix']}entryproperties WHERE entryid = " . (int)$eventData['id'] . " AND property LIKE 'ep_disable_markup_%'";
|
||||
serendipity_db_query($q);
|
||||
}
|
||||
|
||||
// Special case for input type checkbox entryproperties
|
||||
$reset_properties = array('is_sticky', 'no_frontpage', 'hiderss');
|
||||
foreach($reset_properties AS $property) {
|
||||
if (!isset($serendipity['POST']['propertyform']) && is_array($serendipity['POST']['properties']) && !in_array($property, $serendipity['POST']['properties'])) {
|
||||
$q = "DELETE FROM {$serendipity['dbPrefix']}entryproperties WHERE entryid = " . (int)$eventData['id'] . " AND property = 'ep_{$property}'";
|
||||
serendipity_db_query($q);
|
||||
}
|
||||
}
|
||||
|
||||
// Special case for disable markups.
|
||||
if (is_array($properties['disable_markups'])) {
|
||||
$q = "DELETE FROM {$serendipity['dbPrefix']}entryproperties WHERE entryid = " . (int)$eventData['id'] . " AND property LIKE 'ep_disable_markup_%'";
|
||||
@ -238,7 +247,7 @@ class serendipity_event_entryproperties extends serendipity_event
|
||||
// possibly only wants to update entry metadata and left out any specific properties, which need to be kept.
|
||||
// An empty string like "" will properly remove an entryproperty, and POST values will always set an array index to an empty string.
|
||||
// $serendipipty['POST']['propertyform'] will be set whenever the entryeditor was properly displayed and unticked checkboxes shall remain.
|
||||
// (Not for checkboxes, but checkboxes are not used for entryproperties)
|
||||
// (Not for checkboxes, but checkboxes are not used for entryproperties) - (Edit: Well, actually we do have some, see reset special case checkboxed properties above!)
|
||||
if (!isset($properties[$prop_key]) && !isset($serendipity['POST']['propertyform'])) {
|
||||
continue;
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ class serendipity_event_nl2br extends serendipity_event
|
||||
$propbag->add('description', PLUGIN_EVENT_NL2BR_DESC);
|
||||
$propbag->add('stackable', false);
|
||||
$propbag->add('author', 'Serendipity Team');
|
||||
$propbag->add('version', '2.19');
|
||||
$propbag->add('version', '2.20');
|
||||
$propbag->add('requirements', array(
|
||||
'serendipity' => '0.8',
|
||||
'smarty' => '2.6.7',
|
||||
@ -209,7 +209,7 @@ class serendipity_event_nl2br extends serendipity_event
|
||||
|
||||
// check single entry for temporary disabled markups
|
||||
if ( !$eventData['properties']['ep_disable_markup_' . $this->instance] &&
|
||||
!in_array($this->instance, (array)$serendipity['POST']['properties']['disable_markups']) &&
|
||||
@!in_array($this->instance, $serendipity['POST']['properties']['disable_markups']) &&
|
||||
!$eventData['properties']['ep_no_textile'] && !isset($serendipity['POST']['properties']['ep_no_textile']) &&
|
||||
!$eventData['properties']['ep_no_markdown'] && !isset($serendipity['POST']['properties']['ep_no_markdown'])) {
|
||||
// yes, this markup shall be applied
|
||||
@ -219,6 +219,9 @@ class serendipity_event_nl2br extends serendipity_event
|
||||
$serendipity['nl2br']['entry_disabled_markup'] = true;
|
||||
}
|
||||
|
||||
/* PLEASE NOTE:
|
||||
$serendipity['POST']['properties']['disable_markups'] = array(false); is the only workable solution for (sidebar?) plugins (see sidebar plugins: guestbook, multilingual), to explicitly allow to apply nl2br to markup (if we want to)
|
||||
*/
|
||||
// don't run, if the textile, or markdown plugin already took care about markup
|
||||
if ($markup && $serendipity['nl2br']['entry_disabled_markup'] === false && (class_exists('serendipity_event_textile') || class_exists('serendipity_event_markdown'))) {
|
||||
return true;
|
||||
@ -244,7 +247,7 @@ class serendipity_event_nl2br extends serendipity_event
|
||||
foreach ($this->markup_elements as $temp) {
|
||||
if (serendipity_db_bool($this->get_config($temp['name'], true)) && isset($eventData[$temp['element']]) &&
|
||||
!$eventData['properties']['ep_disable_markup_' . $this->instance] &&
|
||||
!in_array($this->instance, (array)$serendipity['POST']['properties']['disable_markups']) &&
|
||||
@!in_array($this->instance, $serendipity['POST']['properties']['disable_markups']) &&
|
||||
!$eventData['properties']['ep_no_nl2br'] &&
|
||||
!isset($serendipity['POST']['properties']['ep_no_nl2br'])) {
|
||||
|
||||
@ -532,7 +535,7 @@ p.break {
|
||||
}
|
||||
|
||||
/**
|
||||
* Find next newline seperated by text from current position
|
||||
* Find next newline separated by text from current position
|
||||
* @param int start
|
||||
* $param array text
|
||||
*/
|
||||
|
@ -47,7 +47,7 @@ if (defined('USE_MEMSNAP')) {
|
||||
}
|
||||
|
||||
// The version string
|
||||
$serendipity['version'] = '2.1-alpha2';
|
||||
$serendipity['version'] = '2.1-alpha3';
|
||||
|
||||
|
||||
// Setting this to 'false' will enable debugging output. All alpha/beta/cvs snapshot versions will emit debug information by default. To increase the debug level (to enable Smarty debugging), set this flag to 'debug'.
|
||||
@ -450,8 +450,8 @@ if (defined('IN_serendipity_admin') && !isset($serendipity['use_autosave'])) {
|
||||
$serendipity['use_autosave'] = true;
|
||||
}
|
||||
|
||||
if (!isset($serendipity['use_internal_cache'])) {
|
||||
$serendipity['use_internal_cache'] = false;
|
||||
if (!isset($serendipity['useInternalCache'])) {
|
||||
$serendipity['useInternalCache'] = false;
|
||||
}
|
||||
|
||||
// You can set parameters which ImageMagick should use to generate the thumbnails
|
||||
|
@ -36,7 +36,7 @@
|
||||
</div>
|
||||
</fieldset>
|
||||
{else}
|
||||
<div class="clearfix {$zebra_class} form_{if $item.type == 'list'}select{elseif $item.type == 'multilist'}multiselect{elseif $item.type == 'textarea'}area{else}field{/if}{if $item.description != ''} has_info{/if}">
|
||||
<div class="clearfix {$zebra_class} form_{if $item.type == 'list'}select{elseif $item.type == 'multilist'}multiselect{elseif $item.type == 'textarea'}area{else}field{/if}{if $item.description != ''} has_info{/if}" {if $item.ignore}style="display: none;"{/if}>
|
||||
<label for="{$item.var}">{$item.title}{if $item.description != ''} <button class="toggle_info button_link" type="button" data-href="#{$item.var}_info"><span class="icon-info-circled"></span><b>i</b><span class="visuallyhidden"> {$CONST.MORE}</span></button>{/if}</label>
|
||||
{if $item.description != ''}
|
||||
<span id="{$item.var}_info" class="field_info additional_info">{$item.description}</span>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<!--[if lte IE 8]>
|
||||
<link rel="stylesheet" href="{serendipity_getFile file='admin/oldie.css'}">
|
||||
<![endif]-->
|
||||
<script src="{serendipity_getFile file='admin/js/modernizr-2.8.3.min.js'}"></script>
|
||||
<script src="{serendipity_getFile file='admin/js/modernizr.min.js'}"></script>
|
||||
{if $admin_vars.admin_installed}{serendipity_hookPlugin hook="backend_header" hookAll="true"}{/if}
|
||||
<script src="{serendipity_getFile file='admin/js/plugins.js'}"></script>
|
||||
<script src="{serendipity_getFile file='admin/serendipity_editor.js'}"></script>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<!--[if lte IE 8]>
|
||||
<link rel="stylesheet" href="{serendipity_getFile file='admin/oldie.css'}">
|
||||
<![endif]-->
|
||||
<script src="{serendipity_getFile file='admin/js/modernizr-2.8.3.min.js'}"></script>
|
||||
<script src="{serendipity_getFile file='admin/js/modernizr.min.js'}"></script>
|
||||
<script src="templates/jquery.js"></script>
|
||||
<script src="{serendipity_getFile file='admin/js/plugins.js'}"></script>
|
||||
<script src="templates/default/admin/serendipity_editor.js"></script>
|
||||
|
File diff suppressed because one or more lines are too long
3
templates/2k11/admin/js/modernizr.min.js
vendored
Normal file
3
templates/2k11/admin/js/modernizr.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -39,32 +39,19 @@
|
||||
<label for="serendipity[filter][fileCategory][Video]" class="media_selector button_link">{$CONST.VIDEO}</label>
|
||||
</fieldset>
|
||||
</li>
|
||||
<li id="media_dir_radio" class="media_select_strict">
|
||||
<div class="clearfix">
|
||||
<div class="form_radio">
|
||||
<input id="radio_link_no" name="serendipity[toggle_dir]" type="radio" value="no" {if $media.toggle_dir == 'no'}checked="checked"{/if}>
|
||||
<label for="radio_link_no">Strict {$CONST.NO}</label>
|
||||
</div>
|
||||
|
||||
<div class="form_radio">
|
||||
<input id="radio_link_yes" name="serendipity[toggle_dir]" type="radio" value="yes" {if $media.toggle_dir == 'yes'}checked="checked"{/if}>
|
||||
<label for="radio_link_yes">Strict {$CONST.YES}</label>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<fieldset id="media_pane_filter" class="additional_info filter_pane">
|
||||
<legend class="visuallyhidden">{$CONST.FILTERS}</legend>
|
||||
{* Keep in mind that $media.sort_order is different than $media.sortorder! The first is for building the key names; the second is the value that was set by POST! *}
|
||||
<div id="media_filter" class="clearfix">
|
||||
{foreach $media.sort_order AS $filter}
|
||||
{foreach $media.sort_order AS $filtername => $filter}
|
||||
|
||||
<div class="{cycle values="left,center,right"}">
|
||||
<div class="{cycle values="left,center,right"}{if $filter@iteration > 6} bp_filters{/if}">
|
||||
{if $filter.type == 'date' || $filter.type == 'intrange'}
|
||||
|
||||
<fieldset>
|
||||
<span class="wrap_legend"><legend>{$CONST.SORT_BY} ({$filter.desc})</legend></span>
|
||||
<span class="wrap_legend"><legend>{$filter.desc}</legend></span>
|
||||
{else}
|
||||
|
||||
<div class="form_{if $filter.type == 'authors'}select{else}field{/if}">
|
||||
@ -82,9 +69,9 @@
|
||||
|
||||
<div class="form_field">
|
||||
<label for="serendipity_filter_{$filter@key}_from" class="range-label">{$CONST.RANGE_FROM|lower}</label>
|
||||
<input id="serendipity_filter_{$filter@key}_from" name="serendipity[filter][{$filter@key}][from]" type="text" value="{$media.filter[$filter@key].from|escape}">
|
||||
<input id="serendipity_filter_{$filter@key}_from" name="serendipity[filter][{$filter@key}][from]" type="text" placeholder="{if $filtername == 'bp.RUN_LENGTH'}in{/if}" value="{$media.filter[$filter@key].from|escape}">
|
||||
<label for="serendipity_filter_{$filter@key}_to" class="range-label">{$CONST.RANGE_TO|lower}</label>
|
||||
<input id="serendipity_filter_{$filter@key}_to" name="serendipity[filter][{$filter@key}][to]" type="text" value="{$media.filter[$filter@key].to|escape}">
|
||||
<input id="serendipity_filter_{$filter@key}_to" name="serendipity[filter][{$filter@key}][to]" type="text" placeholder="{if $filtername == 'bp.RUN_LENGTH'}seconds{/if}" value="{$media.filter[$filter@key].to|escape}">
|
||||
</div>
|
||||
{elseif $filter.type == 'authors'}
|
||||
|
||||
@ -96,7 +83,7 @@
|
||||
{/foreach}
|
||||
|
||||
</select>
|
||||
{else}{* this is type string w/o being named *}
|
||||
{else}{* this is of type string w/o being named *}
|
||||
{* label is already set on loop start, when type is not date or intrange *}
|
||||
<input id="serendipity_filter_{$filter@key}" name="serendipity[filter][{$filter@key}]" type="text" value="{$media.filter[$filter@key]|escape}">
|
||||
{/if}
|
||||
@ -109,6 +96,17 @@
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
{if $filter@last AND !$media.simpleFilters}
|
||||
|
||||
<div class="right bp_filters">
|
||||
<div class="form_field">
|
||||
<label class="visuallyhidden">NOTE</label>
|
||||
<div class="bp_note">
|
||||
<span class="icon-info-circled"></span> mediaproperties metadata
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{/foreach}
|
||||
|
||||
<div id="media_filter_file" class="form_field {if $media.simpleFilters}center{else}left{/if}">
|
||||
@ -166,6 +164,15 @@
|
||||
|
||||
</select>
|
||||
</div>
|
||||
{if !$media.simpleFilters}
|
||||
<div class="form_field">
|
||||
<div class="form_radio">
|
||||
<input type="checkbox" id="hide_subdir_files" name="serendipity[hideSubdirFiles]" {if $media.hideSubdirFiles}checked{/if} value="on">
|
||||
<label for="hide_subdir_files">{$CONST.HIDE_SUBDIR_FILES}</label>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</li>
|
||||
</div>
|
||||
<div class="form_buttons">
|
||||
<input name="go" type="submit" value="{$CONST.GO}"> <input class="reset_media_filters" name="media_filters_reset" type="reset" value="Reset">
|
||||
@ -187,7 +194,7 @@
|
||||
|
||||
serendipity.SetCookie("only_filename", "{$media.only_filename}");
|
||||
|
||||
serendipity.SetCookie("serendipity_toggle_dir", "{$media.toggle_dir}");
|
||||
serendipity.SetCookie("hideSubdirFiles", "{$media.hideSubdirFiles}");
|
||||
{foreach $media.filter AS $k => $v}
|
||||
{if !is_array($media.filter[{$k}])}
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
<button type="submit">{$CONST.UPDATE_FAILACTION}</button>
|
||||
</form>
|
||||
</section>
|
||||
<hr class="seperator">
|
||||
<hr class="separator">
|
||||
{else if $update}
|
||||
<section id="dashboard_update">
|
||||
<h3>{$CONST.UPDATE_NOTIFICATION}</h3>
|
||||
@ -31,7 +31,7 @@
|
||||
<span class="msg_notice"><span class="icon-info-circled"></span> {$CONST.NEW_VERSION_AVAILABLE} {$curVersion}</span>
|
||||
{$updateButton}
|
||||
</section>
|
||||
<hr class="seperator">
|
||||
<hr class="separator">
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
|
@ -1,6 +1,11 @@
|
||||
{if $ctype == 'seperator'}
|
||||
<hr>
|
||||
{if ($ctype == 'separator' || $ctype == 'seperator')}{* compat - due to misspelled word 'seper...' *}
|
||||
|
||||
<hr class="config_separator">
|
||||
{elseif $ctype == 'suboption'}
|
||||
|
||||
<span class="config_suboption" title="has hidden suboption">+ </span>
|
||||
{elseif $ctype == 'select'}
|
||||
|
||||
<div class="clearfix form_select{if $cdesc != ''} has_info{/if}">
|
||||
<label for="serendipity_{$config_item}">{$cname}{if $cdesc != ''} <button class="toggle_info button_link" type="button" data-href="#{$config_item}_info"><span class="icon-info-circled"></span><span class="visuallyhidden"> {$CONST.MORE}</span></button>{/if}</label>
|
||||
{if $cdesc != ''}<span id="{$config_item}_info" class="field_info additional_info">{$cdesc}</span>{/if}
|
||||
@ -12,6 +17,7 @@
|
||||
</select>
|
||||
</div>
|
||||
{elseif $ctype == 'radio'}
|
||||
|
||||
<fieldset{if $cdesc != ''} class="has_info"{/if}>
|
||||
<span class="wrap_legend"><legend>{$cname}{if $cdesc != ''} <button class="toggle_info button_link" type="button" data-href="#{$config_item}_info"><span class="icon-info-circled"></span><span class="visuallyhidden"> {$CONST.MORE}</span></button>{/if}</legend></span>
|
||||
{if $cdesc != ''}<span id="{$config_item}_info" class="field_info additional_info">{$cdesc}</span>{/if}
|
||||
@ -26,31 +32,37 @@
|
||||
</div>
|
||||
</fieldset>
|
||||
{elseif $ctype == 'string'}
|
||||
|
||||
<div class="clearfix form_field{if $cdesc != ''} has_info{/if}">
|
||||
<label for="serendipity_{$config_item}">{$cname}{if $cdesc != ''} <button class="toggle_info button_link" type="button" data-href="#{$config_item}_info"><span class="icon-info-circled"></span><span class="visuallyhidden"> {$CONST.MORE}</span></button>{/if}</label>
|
||||
{if $cdesc != ''}<span id="{$config_item}_info" class="field_info additional_info">{$cdesc}</span>{/if}
|
||||
<input id="serendipity_{$config_item}" class="direction_{$lang_direction}" name="serendipity[{$postKey}][{$config_item}]" type="{$input_type}" value="{$hvalue}">
|
||||
</div>
|
||||
{elseif (($ctype == 'html') || ($ctype == 'text'))}
|
||||
|
||||
<div class="clearfix form_area{if $cdesc != ''} has_info{/if}">
|
||||
<label for="nuggets{$elcount}">{$cname}{if $cdesc != '' && !$backend_wysiwyg} <button class="toggle_info button_link" type="button" data-href="#nuggets{$elcount}_info"><span class="icon-info-circled"></span><span class="visuallyhidden"> {$CONST.MORE}</span></button>{/if}</label>
|
||||
{if $cdesc != ''}<span id="nuggets{$elcount}_info" class="field_info additional_info">{$cdesc}</span>{/if}
|
||||
<textarea id="nuggets{$elcount}" class="direction_{$lang_direction}" name="serendipity[{$postKey}][{$config_item}]" rows="{$text_rows}">{$hvalue}</textarea>
|
||||
</div>
|
||||
{elseif $ctype == 'content'}
|
||||
|
||||
<div class="clearfix">
|
||||
{$cbag_default}
|
||||
</div>
|
||||
{elseif $ctype == 'custom'}
|
||||
|
||||
<div class="clearfix custom_item">
|
||||
<input id="config_{$postKey}_{$config_item}" name="serendipity[{$postKey}][{$config_item}]" type="hidden" value="{$hvalue}">
|
||||
{$cbag_custom}
|
||||
</div>
|
||||
{elseif $ctype == 'hidden'}
|
||||
|
||||
<div class="clearfix">
|
||||
<input name="serendipity[{$postKey}][{$config_item}]" type="hidden" value="{$cbag_value}">
|
||||
</div>
|
||||
{elseif $ctype == 'media'}
|
||||
|
||||
<div class="clearfix form_field media_choose{if $cdesc != ''} has_info{/if}">
|
||||
<label for="serendipity[{$postKey}][{$config_item}]">{$cname}{if $cdesc != ''} <button class="toggle_info button_link" type="button" data-href="#{$postKey}_{$config_item}_info"><span class="icon-info-circled"></span><span class="visuallyhidden"> {$CONST.MORE}</span></button>{/if}</label>
|
||||
|
||||
@ -68,6 +80,7 @@
|
||||
</figure>
|
||||
</div>
|
||||
{elseif $ctype == 'sequence'}
|
||||
|
||||
<fieldset{if $cdesc != ''} class="has_info"{/if}>
|
||||
<span class="wrap_legend"><legend>{$cname}{if $cdesc != ''} <button class="toggle_info button_link" type="button" data-href="#{$config_item}_info"><span class="icon-info-circled"></span><span class="visuallyhidden"> {$CONST.MORE}</span></button>{/if}</legend></span>
|
||||
{if $cdesc != ''}<span id="{$config_item}_info" class="field_info additional_info">{$cdesc}</span>{/if}
|
||||
|
@ -51,7 +51,7 @@
|
||||
<input name="serendipity[type]" type="hidden" value="{$type|escape}">
|
||||
|
||||
<div class="clearfix">
|
||||
{if $only_group != UPGRADE}
|
||||
{if $only_group != 'UPGRADE'}
|
||||
<div id="plugin_groups" class="form_select">
|
||||
<label for="only_group">{$CONST.GROUP}</label>
|
||||
<select id="only_group" name="serendipity[only_group]">
|
||||
@ -81,7 +81,7 @@
|
||||
{foreach $pluggroups AS $pluggroup => $groupstack}
|
||||
{if $only_group && $pluggroup != $only_group}{continue}{/if}
|
||||
<h3>{foreach $groupnames as $available_group => $available_name}{if $pluggroup == $available_group}{$available_name}{/if}{/foreach}</h3>
|
||||
{if $only_group == UPGRADE && $pluggroups['UPGRADE']|@count > 1}
|
||||
{if $only_group == 'UPGRADE' && $pluggroups['UPGRADE']|@count > 1}
|
||||
<button id="updateAll">Update All</button>
|
||||
{/if}
|
||||
<ul class="plugins_installable plainList clearfix">
|
||||
|
@ -1565,6 +1565,43 @@ $(function() {
|
||||
$('#uploadform').submit(function(event) {
|
||||
if (! $('#imageurl').val()) {
|
||||
event.preventDefault();
|
||||
var sendDataToML = function(data, progressContainer, progress) {
|
||||
$.ajax({
|
||||
type: 'post',
|
||||
url: $('#uploadform').attr('action'),
|
||||
data: data,
|
||||
cache: false,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
xhrFields: {
|
||||
onprogress: function (e) {
|
||||
if (e.lengthComputable) {
|
||||
progress.value = e.loaded / e.total * 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
}).done(function(data) {
|
||||
progress.value = 100;
|
||||
progressContainer.className = "msg_success";
|
||||
$(progressContainer).find('.uploadIcon').replaceWith(successIcon.cloneNode(true));
|
||||
}).fail(function(data) {
|
||||
progressContainer.className = "msg_error";
|
||||
progress.disabled = true;
|
||||
progressContainer.innerHTML += "{$CONST.ERROR_UNKNOWN_NOUPLOAD}";
|
||||
$(progressContainer).find('.uploadIcon').replaceWith(errorIcon.cloneNode(true));
|
||||
}).always(function() {
|
||||
if ($('#ml_link').length == 0) {
|
||||
var mlLink = document.createElement('a');
|
||||
mlLink.id = "ml_link";
|
||||
mlLink.className = "button_link";
|
||||
mlLink.href = $('#uploadform').attr('action');
|
||||
mlLink.innerHTML = "{$CONST.MEDIA_LIBRARY}";
|
||||
$(mlLink).hide();
|
||||
$('.form_buttons').prepend(mlLink);
|
||||
$(mlLink).fadeIn();
|
||||
}
|
||||
});
|
||||
};
|
||||
$('.uploadform_userfile').each(function() {
|
||||
var files = this.files;
|
||||
for (var i = 0; i < files.length; i++) {
|
||||
@ -1573,86 +1610,58 @@ $(function() {
|
||||
reader.onload = function(readerEvent) {
|
||||
var image = new Image();
|
||||
var file = this.file;
|
||||
image.onload = function (imageEvent) {
|
||||
var canvas = document.createElement('canvas'),
|
||||
max_width = {if {serendipity_getConfigVar key='maxImgWidth'}}{serendipity_getConfigVar key='maxImgWidth'}{else}0{/if},
|
||||
max_height = {if {serendipity_getConfigVar key='maxImgHeight'}}{serendipity_getConfigVar key='maxImgHeight'}{else}0{/if},
|
||||
width = image.width,
|
||||
height = image.height;
|
||||
var type = file.type;
|
||||
var data = new FormData();
|
||||
data.append('serendipity[action]', 'admin');
|
||||
data.append('serendipity[adminModule]', 'media');
|
||||
data.append('serendipity[adminAction]', 'add');
|
||||
data.append('serendipity[token]', $('input[name*="serendipity[token]"]').val());
|
||||
data.append('serendipity[target_filename][1]', $('input[name*="serendipity[target_filename][1]"]').val());
|
||||
var progress = document.createElement('progress');
|
||||
var progressContainer = document.createElement('span');
|
||||
progressContainer.className = 'msg_notice';
|
||||
progress.max = 100;
|
||||
progress.value = 0;
|
||||
$(progressContainer).append(progressIcon);
|
||||
progressContainer.innerHTML += file.name + ": "
|
||||
$(progressContainer).append(progress);
|
||||
$('.form_buttons').append(progressContainer);
|
||||
if (type.substring(0, 6) == "image/") {
|
||||
image.onload = function (imageEvent) {
|
||||
var canvas = document.createElement('canvas'),
|
||||
max_width = {if {serendipity_getConfigVar key='maxImgWidth'}}{serendipity_getConfigVar key='maxImgWidth'}{else}0{/if},
|
||||
max_height = {if {serendipity_getConfigVar key='maxImgHeight'}}{serendipity_getConfigVar key='maxImgHeight'}{else}0{/if},
|
||||
width = image.width,
|
||||
height = image.height;
|
||||
|
||||
if (max_width > 0 && width > max_width) {
|
||||
height *= max_width / width;
|
||||
width = max_width;
|
||||
}
|
||||
if (max_height > 0 && height > max_height) {
|
||||
width *= max_height / height;
|
||||
height = max_height;
|
||||
}
|
||||
if (max_width > 0 && width > max_width) {
|
||||
height *= max_width / width;
|
||||
width = max_width;
|
||||
}
|
||||
if (max_height > 0 && height > max_height) {
|
||||
width *= max_height / height;
|
||||
height = max_height;
|
||||
}
|
||||
|
||||
canvas.width = width;
|
||||
canvas.height = height;
|
||||
canvas.getContext('2d').drawImage(image, 0, 0, width, height);
|
||||
var data = new FormData();
|
||||
data.append('serendipity[action]', 'admin');
|
||||
data.append('serendipity[adminModule]', 'media');
|
||||
data.append('serendipity[adminAction]', 'add');
|
||||
data.append('serendipity[token]', $('input[name*="serendipity[token]"]').val());
|
||||
data.append('serendipity[target_filename][1]', $('input[name*="serendipity[target_filename][1]"]').val());
|
||||
var type = file.type;
|
||||
if (type == "image/bmp") {
|
||||
{* bmp is not supported *}
|
||||
type = "image/png";
|
||||
data.append('serendipity[target_filename][1]', file.name.replace('.bmp', '.png'));
|
||||
canvas.width = width;
|
||||
canvas.height = height;
|
||||
canvas.getContext('2d').drawImage(image, 0, 0, width, height);
|
||||
|
||||
if (type == "image/bmp") {
|
||||
{* bmp is not supported *}
|
||||
type = "image/png";
|
||||
data.append('serendipity[target_filename][1]', file.name.replace('.bmp', '.png'));
|
||||
}
|
||||
canvas.toBlob(function(blob) {
|
||||
data.append('serendipity[userfile][1]', blob, file.name);
|
||||
sendDataToML(data, progressContainer, progress);
|
||||
}, type);
|
||||
}
|
||||
canvas.toBlob(function(blob) {
|
||||
data.append('serendipity[userfile][1]', blob, file.name);
|
||||
var progress = document.createElement('progress');
|
||||
var progressContainer = document.createElement('span');
|
||||
progressContainer.className = 'msg_notice';
|
||||
progress.max = 100;
|
||||
progress.value = 0;
|
||||
$(progressContainer).append(progressIcon);
|
||||
progressContainer.innerHTML += file.name + ": "
|
||||
$(progressContainer).append(progress);
|
||||
$('.form_buttons').append(progressContainer);
|
||||
$.ajax({
|
||||
type: 'post',
|
||||
url: $('#uploadform').attr('action'),
|
||||
data: data,
|
||||
cache: false,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
xhrFields: {
|
||||
onprogress: function (e) {
|
||||
if (e.lengthComputable) {
|
||||
progress.value = e.loaded / e.total * 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
}).done(function(data) {
|
||||
progress.value = 100;
|
||||
progressContainer.className = "msg_success";
|
||||
$(progressContainer).find('.uploadIcon').replaceWith(successIcon.cloneNode(true));
|
||||
}).fail(function(data) {
|
||||
progressContainer.className = "msg_error";
|
||||
progress.disabled = true;
|
||||
progressContainer.innerHTML += "{$CONST.ERROR_UNKNOWN_NOUPLOAD}";
|
||||
$(progressContainer).find('.uploadIcon').replaceWith(errorIcon.cloneNode(true));
|
||||
}).always(function() {
|
||||
if ($('#ml_link').length == 0) {
|
||||
var mlLink = document.createElement('a');
|
||||
mlLink.id = "ml_link";
|
||||
mlLink.className = "button_link";
|
||||
mlLink.href = $('#uploadform').attr('action');
|
||||
mlLink.innerHTML = "{$CONST.MEDIA_LIBRARY}";
|
||||
$(mlLink).hide();
|
||||
$('.form_buttons').prepend(mlLink);
|
||||
$(mlLink).fadeIn();
|
||||
}
|
||||
});
|
||||
}, type);
|
||||
image.src = readerEvent.target.result;
|
||||
} else {
|
||||
data.append('serendipity[userfile][1]', file, file.name);
|
||||
sendDataToML(data, progressContainer, progress);
|
||||
}
|
||||
image.src = readerEvent.target.result;
|
||||
}
|
||||
reader.readAsDataURL(reader.file);
|
||||
}
|
||||
|
@ -983,7 +983,16 @@ input[type=checkbox],
|
||||
#media_filter > .keywords {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
|
||||
#media_filter .bp_note,
|
||||
#media_filter .bp_filters input {
|
||||
background-color: rgba(0, 87, 128, 0.08);
|
||||
}
|
||||
#media_filter .bp_note {
|
||||
margin-top: 2.25em;
|
||||
display: inline-block;
|
||||
padding: 1px;
|
||||
border: 1px solid #CCC;
|
||||
}
|
||||
#media_filter_path .form_select {
|
||||
margin: 0 0 0 .125em;
|
||||
}
|
||||
@ -1201,11 +1210,24 @@ summary {
|
||||
|
||||
#workspace,
|
||||
.plugin_data,
|
||||
.plugin_data summary,
|
||||
.serendipity_statistics > .wide_box {
|
||||
.plugin_data summary {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.serendipity_statistics > .wide_box {
|
||||
min-height: .01%;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.serendipity_statistics > .wide_box table {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.serendipity_statistics > .wide_box tr {
|
||||
font-size: .8125em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_customfields label {
|
||||
margin-right: 1em;
|
||||
}
|
||||
@ -1790,9 +1812,13 @@ form > .button_link:first-of-type,
|
||||
}
|
||||
|
||||
.compact_categories .cat_view_pad,
|
||||
.seperator {
|
||||
.separator, .seperator {
|
||||
display: none !important;
|
||||
visibility: hidden;
|
||||
}/* compat - due to misspelled word 'seper...' */
|
||||
|
||||
.config_separator {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.mfp-content #edit_entry_category .form_check label {
|
||||
|
@ -9,7 +9,7 @@
|
||||
<!--[if lte IE 8]>
|
||||
<link rel="stylesheet" href="{serendipity_getFile file='admin/oldie.css'}">
|
||||
<![endif]-->
|
||||
<script src="{serendipity_getFile file='admin/js/modernizr-2.8.3.min.js'}"></script>
|
||||
<script src="{serendipity_getFile file='admin/js/modernizr.min.js'}"></script>
|
||||
{if $admin_vars.admin_installed}{serendipity_hookPlugin hook="backend_header" hookAll="true"}{/if}
|
||||
<script src="{$serendipityHTTPPath}{$templatePath}jquery.js"></script>
|
||||
<script src="{serendipity_getFile file="admin/js/plugins.js"}"></script>
|
||||
|
@ -26,7 +26,7 @@
|
||||
{else}
|
||||
<link rel="stylesheet" href="{$serendipityHTTPPath}{$serendipityRewritePrefix}serendipity.css">
|
||||
{/if}
|
||||
<script src="{serendipity_getFile file="admin/js/modernizr-2.8.3.min.js"}"></script>
|
||||
<script src="{serendipity_getFile file="admin/js/modernizr.min.js"}"></script>
|
||||
{serendipity_hookPlugin hook="backend_header" hookAll="true"}
|
||||
<script src="{serendipity_getFile file='admin/js/plugins.js'}"></script>
|
||||
<script src="{serendipity_getFile file='admin/serendipity_editor.js'}"></script>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user