added to MediaLB multidelete[]
This commit is contained in:
@@ -10,6 +10,10 @@ if (!serendipity_checkPermission('adminImages')) {
|
|||||||
|
|
||||||
$data = array();
|
$data = array();
|
||||||
|
|
||||||
|
if (!is_object($serendipity['smarty'])) {
|
||||||
|
serendipity_smarty_init();
|
||||||
|
}
|
||||||
|
|
||||||
switch ($serendipity['GET']['adminAction']) {
|
switch ($serendipity['GET']['adminAction']) {
|
||||||
case 'imgedit':
|
case 'imgedit':
|
||||||
$data['case_imgedit'] = true;
|
$data['case_imgedit'] = true;
|
||||||
@@ -92,20 +96,39 @@ switch ($serendipity['GET']['adminAction']) {
|
|||||||
flush();
|
flush();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'DoDelete':
|
case 'doDelete':
|
||||||
if (!serendipity_checkFormToken() || !serendipity_checkPermission('adminImagesDelete')) {
|
if (!serendipity_checkFormToken() || !serendipity_checkPermission('adminImagesDelete')) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$data['case_DoDelete'] = true;
|
$messages = array();
|
||||||
$file = $serendipity['GET']['fname'];
|
$data['switched_output'] = true;
|
||||||
serendipity_deleteImage($serendipity['GET']['fid']);
|
$data['is_doDelete'] = true;
|
||||||
|
$messages[] = serendipity_deleteImage($serendipity['GET']['fid']);
|
||||||
|
$messages[] = sprintf(RIP_ENTRY, $serendipity['GET']['fid']);
|
||||||
|
|
||||||
ob_start();
|
showMediaLibrary($messages);
|
||||||
showMediaLibrary();
|
unset($messages);
|
||||||
$data['showML_DD'] = ob_get_contents();
|
|
||||||
ob_end_clean();
|
case 'doMultiDelete':
|
||||||
|
if (!serendipity_checkFormToken() || !serendipity_checkPermission('adminImagesDelete')) {
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
$messages = array();
|
||||||
|
$parts = explode(',', $serendipity['GET']['id']);
|
||||||
|
$data['switched_output'] = true;
|
||||||
|
$data['is_doMultiDelete'] = true;
|
||||||
|
foreach($parts AS $id) {
|
||||||
|
$id = (int)$id;
|
||||||
|
if ($id > 0) {
|
||||||
|
$image = serendipity_fetchImageFromDatabase($id);
|
||||||
|
$messages[] = serendipity_deleteImage((int)$id);
|
||||||
|
$messages[] = sprintf(RIP_ENTRY, $image['id'] . ' - ' . htmlspecialchars($image['realname']));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
showMediaLibrary($messages);
|
||||||
|
unset($messages);
|
||||||
|
|
||||||
case 'delete':
|
case 'delete':
|
||||||
$file = serendipity_fetchImageFromDatabase($serendipity['GET']['fid']);
|
$file = serendipity_fetchImageFromDatabase($serendipity['GET']['fid']);
|
||||||
@@ -115,16 +138,41 @@ switch ($serendipity['GET']['adminAction']) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$data['case_delete'] = true;
|
$data['case_delete'] = true;
|
||||||
|
$data['is_delete'] = true;
|
||||||
if (!isset($serendipity['adminFile'])) {
|
if (!isset($serendipity['adminFile'])) {
|
||||||
$serendipity['adminFile'] = 'serendipity_admin.php';
|
$serendipity['adminFile'] = 'serendipity_admin.php';
|
||||||
}
|
}
|
||||||
$abortLoc = $serendipity['serendipityHTTPPath'] . $serendipity['adminFile'] . '?serendipity[adminModule]=images';
|
$abortLoc = $serendipity['serendipityHTTPPath'] . $serendipity['adminFile'] . '?serendipity[adminModule]=images';
|
||||||
$newLoc = $abortLoc . '&serendipity[adminAction]=DoDelete&serendipity[fid]=' . (int)$serendipity['GET']['fid'] . '&' . serendipity_setFormToken('url');
|
$newLoc = $abortLoc . '&serendipity[adminAction]=doDelete&serendipity[fid]=' . (int)$serendipity['GET']['fid'] . '&' . serendipity_setFormToken('url');
|
||||||
$data['file'] = $file['name'] . '.' . $file['extension'];
|
$data['file'] = $file['name'] . '.' . $file['extension'];
|
||||||
$data['abortLoc'] = $abortLoc;
|
$data['abortLoc'] = $abortLoc;
|
||||||
$data['newLoc'] = $newLoc;
|
$data['newLoc'] = $newLoc;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'multidelete':
|
||||||
|
if (!serendipity_checkFormToken() || !is_array($serendipity['POST']['multiDelete'])) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
$ids = '';
|
||||||
|
$data['rip_image'] = array();
|
||||||
|
$data['case_multidelete'] = true;
|
||||||
|
$data['is_multidelete'] = true;
|
||||||
|
foreach($serendipity['POST']['multiDelete'] AS $idx => $id) {
|
||||||
|
$ids .= (int)$id . ',';
|
||||||
|
$image = serendipity_fetchImageFromDatabase($id);
|
||||||
|
$data['rip_image'][] = sprintf(DELETE_SURE, $image['id'] . ' - ' . htmlspecialchars($image['realname']));
|
||||||
|
}
|
||||||
|
if (!isset($serendipity['adminFile'])) {
|
||||||
|
$serendipity['adminFile'] = 'serendipity_admin.php';
|
||||||
|
}
|
||||||
|
$abortLoc = $serendipity['serendipityHTTPPath'] . $serendipity['adminFile'] . '?serendipity[adminModule]=images';
|
||||||
|
$newLoc = $serendipity['serendipityHTTPPath'] . $serendipity['adminFile'] . '?' . serendipity_setFormToken('url') . '&serendipity[action]=admin&serendipity[adminModule]=images&serendipity[adminAction]=doMultiDelete&serendipity[id]=' . $ids;
|
||||||
|
$data['switched_output'] = true;
|
||||||
|
$data['abortLoc'] = $abortLoc;
|
||||||
|
$data['newLoc'] = $newLoc;
|
||||||
|
break;
|
||||||
|
|
||||||
case 'rename':
|
case 'rename':
|
||||||
$data['case_rename'] = true;
|
$data['case_rename'] = true;
|
||||||
$serendipity['GET']['fid'] = (int)$serendipity['GET']['fid'];
|
$serendipity['GET']['fid'] = (int)$serendipity['GET']['fid'];
|
||||||
@@ -543,7 +591,6 @@ switch ($serendipity['GET']['adminAction']) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
serendipity_smarty_init();
|
|
||||||
$mediaFiles = array(
|
$mediaFiles = array(
|
||||||
'token' => serendipity_setFormToken(),
|
'token' => serendipity_setFormToken(),
|
||||||
'form_hidden' => $form_hidden,
|
'form_hidden' => $form_hidden,
|
||||||
@@ -684,10 +731,6 @@ function showMediaLibrary($messages=false, $addvar_check = false) {
|
|||||||
$data['get']['fid'] = $serendipity['GET']['fid']; // don't trust {$smarty.get.vars} if not proofed, as we often change GET vars via serendipty['GET'] by runtime
|
$data['get']['fid'] = $serendipity['GET']['fid']; // don't trust {$smarty.get.vars} if not proofed, as we often change GET vars via serendipty['GET'] by runtime
|
||||||
$data['get']['only_path'] = $serendipity['GET']['only_path']; // we dont need other GET vars in images.inc.tpl
|
$data['get']['only_path'] = $serendipity['GET']['only_path']; // we dont need other GET vars in images.inc.tpl
|
||||||
|
|
||||||
if (!is_object($serendipity['smarty'])) {
|
|
||||||
serendipity_smarty_init();
|
|
||||||
}
|
|
||||||
|
|
||||||
$serendipity['smarty']->assign($data);
|
$serendipity['smarty']->assign($data);
|
||||||
|
|
||||||
$tfile = dirname(__FILE__) . "/tpl/images.inc.tpl";
|
$tfile = dirname(__FILE__) . "/tpl/images.inc.tpl";
|
||||||
|
|||||||
@@ -47,11 +47,6 @@
|
|||||||
{/if}
|
{/if}
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{if $case_DoDelete}
|
|
||||||
{** delete & showMediaLibrary($messages) **}
|
|
||||||
{$showML_DD}
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
{if $case_delete}
|
{if $case_delete}
|
||||||
<div class="image_notify_delete">{$CONST.ABOUT_TO_DELETE_FILE|sprintf:"$file"}</div>
|
<div class="image_notify_delete">{$CONST.ABOUT_TO_DELETE_FILE|sprintf:"$file"}</div>
|
||||||
<form method="get" id="delete_image">
|
<form method="get" id="delete_image">
|
||||||
@@ -63,6 +58,21 @@
|
|||||||
</form>
|
</form>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
{if $switched_output}
|
||||||
|
<form method="get" id="delete_images">
|
||||||
|
{if ( $is_delete || $is_multidelete )}
|
||||||
|
<p><span class="msg_notice">{$CONST.ABOUT_TO_DELETE_FILES}</span></p>
|
||||||
|
{foreach $rip_image AS $ripimg}
|
||||||
|
<span class="msg_dialog_ripentry">{$ripimg}</span><br />
|
||||||
|
{/foreach}
|
||||||
|
<ul class="dialog_delrip">
|
||||||
|
<li><a class="link_abort" href="{$smarty.server.HTTP_REFERER|escape}">{$CONST.NOT_REALLY}</a></li>
|
||||||
|
<li><a class="link_confirm" href="{$newLoc}">{$CONST.DUMP_IT}</a></li>
|
||||||
|
</ul>
|
||||||
|
{/if}
|
||||||
|
</form>
|
||||||
|
{/if}
|
||||||
|
|
||||||
{if $case_rename}
|
{if $case_rename}
|
||||||
{if $go_back}
|
{if $go_back}
|
||||||
<br />
|
<br />
|
||||||
|
|||||||
@@ -315,13 +315,14 @@ function serendipity_updateImageInDatabase($updates, $id) {
|
|||||||
function serendipity_deleteImage($id) {
|
function serendipity_deleteImage($id) {
|
||||||
global $serendipity;
|
global $serendipity;
|
||||||
$dThumb = array();
|
$dThumb = array();
|
||||||
|
$messages = '';
|
||||||
|
|
||||||
$file = serendipity_fetchImageFromDatabase($id);
|
$file = serendipity_fetchImageFromDatabase($id);
|
||||||
|
|
||||||
if (!is_array($file)) {
|
if (!is_array($file)) {
|
||||||
printf(FILE_NOT_FOUND . '<br />', $id);
|
$messages .= sprintf(FILE_NOT_FOUND . '<br />', $id);
|
||||||
return false;
|
//return false;
|
||||||
}
|
} else {
|
||||||
|
|
||||||
$dFile = $file['path'] . $file['name'] . (empty($file['extension']) ? '' : '.' . $file['extension']);
|
$dFile = $file['path'] . $file['name'] . (empty($file['extension']) ? '' : '.' . $file['extension']);
|
||||||
|
|
||||||
@@ -341,9 +342,9 @@ function serendipity_deleteImage($id) {
|
|||||||
if (!$file['hotlink']) {
|
if (!$file['hotlink']) {
|
||||||
if (file_exists($serendipity['serendipityPath'] . $serendipity['uploadPath'] . $dFile)) {
|
if (file_exists($serendipity['serendipityPath'] . $serendipity['uploadPath'] . $dFile)) {
|
||||||
if (@unlink($serendipity['serendipityPath'] . $serendipity['uploadPath'] . $dFile)) {
|
if (@unlink($serendipity['serendipityPath'] . $serendipity['uploadPath'] . $dFile)) {
|
||||||
printf(DELETE_FILE . '<br />', $dFile);
|
$messages .= sprintf(DELETE_FILE . '<br />', $dFile);
|
||||||
} else {
|
} else {
|
||||||
printf(DELETE_FILE_FAIL . '<br />', $dFile);
|
$messages .= sprintf(DELETE_FILE_FAIL . '<br />', $dFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
serendipity_plugin_api::hook_event('backend_media_delete', $dThumb);
|
serendipity_plugin_api::hook_event('backend_media_delete', $dThumb);
|
||||||
@@ -352,18 +353,21 @@ function serendipity_deleteImage($id) {
|
|||||||
$dfThumb = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $dfnThumb;
|
$dfThumb = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $dfnThumb;
|
||||||
|
|
||||||
if (@unlink($dfThumb)) {
|
if (@unlink($dfThumb)) {
|
||||||
printf(DELETE_THUMBNAIL . '<br />', $dfnThumb);
|
$messages .= sprintf(DELETE_THUMBNAIL . '<br />', $dfnThumb);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
printf(FILE_NOT_FOUND . '<br />', $dFile);
|
$messages .= sprintf(FILE_NOT_FOUND . '<br />', $dFile);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
printf(DELETE_HOTLINK_FILE . '<br />', $file['name']);
|
$messages .= sprintf(DELETE_HOTLINK_FILE . '<br />', $file['name']);
|
||||||
}
|
}
|
||||||
|
|
||||||
serendipity_db_query("DELETE FROM {$serendipity['dbPrefix']}images WHERE id = ". (int)$id);
|
serendipity_db_query("DELETE FROM {$serendipity['dbPrefix']}images WHERE id = ". (int)$id);
|
||||||
serendipity_db_query("DELETE FROM {$serendipity['dbPrefix']}mediaproperties WHERE mediaid = ". (int)$id);
|
serendipity_db_query("DELETE FROM {$serendipity['dbPrefix']}mediaproperties WHERE mediaid = ". (int)$id);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $messages;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -2825,7 +2829,10 @@ function serendipity_showMedia(&$file, &$paths, $url = '', $manage = false, $lin
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!is_object($serendipity['smarty'])) {
|
||||||
serendipity_smarty_init();
|
serendipity_smarty_init();
|
||||||
|
}
|
||||||
|
|
||||||
$media = array(
|
$media = array(
|
||||||
'manage' => $manage,
|
'manage' => $manage,
|
||||||
'lineBreak' => $lineBreak,
|
'lineBreak' => $lineBreak,
|
||||||
|
|||||||
@@ -960,3 +960,6 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -969,3 +969,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -998,3 +998,6 @@ $i18n_filename_to = array (
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Čeká na potvrzení');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Čeká na potvrzení');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Neodebíráno');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Neodebíráno');
|
||||||
@define('SUMMARY', 'Souhrn');
|
@define('SUMMARY', 'Souhrn');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -998,3 +998,6 @@ $i18n_filename_to = array (
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Čeká na potvrzení');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Čeká na potvrzení');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Neodebíráno');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Neodebíráno');
|
||||||
@define('SUMMARY', 'Souhrn');
|
@define('SUMMARY', 'Souhrn');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -966,3 +966,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -969,3 +969,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were translated on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'Sie beabsichtigen mehrere Dateien auf einmal zu löschen.<br />Wenn Sie diese in ihren Einträge verwenden, wird das Löschen Lücken erzeugen.<br />Soll trotzdem fortgefahren werden?<br /><br />');
|
||||||
|
|||||||
@@ -967,3 +967,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -985,3 +985,6 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -969,3 +969,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -967,3 +967,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -974,3 +974,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_hu.inc.php 93 2005-05-12 10:49:41Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Márton Pósz <ful_s@AT@passwd.hu> and Hrotkó Gábor <roti@al.pmmf.hu>
|
# Translation (c) by Márton Pósz <ful_s@AT@passwd.hu> and Hrotkó Gábor <roti@al.pmmf.hu>
|
||||||
@@ -965,3 +965,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -968,3 +968,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id:/\([a-zA-Z]\)\?/$1?/cgserendipity_lang_it.inc.php 825 2006-01-03 10:02:22Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Alessandro Pellizzari <alex@amiran.it>
|
# Translation (c) by Alessandro Pellizzari <alex@amiran.it>
|
||||||
@@ -971,3 +971,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -971,3 +971,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -970,3 +970,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -969,3 +969,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -970,3 +970,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_en.inc.php 1515 2006-12-13 10:30:13Z CoSTa $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
/* vim: set sts=4 ts=4 expandtab : */
|
/* vim: set sts=4 ts=4 expandtab : */
|
||||||
@@ -966,3 +966,6 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -972,3 +972,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -979,3 +979,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_ro.inc.php,v 1.148 2005/04/18 09:37:42 alexandruszasz Exp $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation by Alexandru Szasz <alexxed@gmail.com>
|
# Translation by Alexandru Szasz <alexxed@gmail.com>
|
||||||
@@ -968,3 +968,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -971,3 +971,6 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_en.inc.php 568 2005-10-18 19:01:10Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Arabic issue was translated by Way http://www.flyingway.com UTF-8
|
# Arabic issue was translated by Way http://www.flyingway.com UTF-8
|
||||||
@@ -886,3 +886,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_en.inc.php,v 1.148 2005/04/08 22:50:24 garvinhicking Exp $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation by Torbjörn Hedberg <torbjorn@sm.luth.se>
|
# Translation by Torbjörn Hedberg <torbjorn@sm.luth.se>
|
||||||
@@ -967,3 +967,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_en.inc.php 825 2006-01-03 10:02:22Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
/* vim: set sts=4 ts=4 expandtab : */
|
/* vim: set sts=4 ts=4 expandtab : */
|
||||||
@@ -967,3 +967,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -971,3 +971,6 @@ $i18n_unknown = 'tw';
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_en.inc.php 769 2005-12-10 21:11:44Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
#Translated to Turkish 2006-03-03 Ahmet USAL - ahmetusal@gmail.com - /*http://www.edirnekizilay.org*/
|
#Translated to Turkish 2006-03-03 Ahmet USAL - ahmetusal@gmail.com - /*http://www.edirnekizilay.org*/
|
||||||
@@ -971,3 +971,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -972,3 +972,7 @@ $i18n_unknown = 'tw';
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -968,3 +968,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -960,3 +960,6 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -969,3 +969,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -998,3 +998,6 @@ $i18n_filename_to = array (
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Èeká na potvrzení');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Èeká na potvrzení');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Neodebíráno');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Neodebíráno');
|
||||||
@define('SUMMARY', 'Souhrn');
|
@define('SUMMARY', 'Souhrn');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -997,4 +997,8 @@ $i18n_filename_to = array (
|
|||||||
@define('ACTIVE_COMMENT_SUBSCRIPTION', 'Odebíráno');
|
@define('ACTIVE_COMMENT_SUBSCRIPTION', 'Odebíráno');
|
||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Èeká na potvrzení');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Èeká na potvrzení');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Neodebíráno');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Neodebíráno');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
@define('SUMMARY', 'Souhrn');
|
@define('SUMMARY', 'Souhrn');
|
||||||
@@ -966,3 +966,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -969,3 +969,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were translated on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'Sie beabsichtigen mehrere Dateien auf einmal zu löschen.<br />Wenn Sie diese in ihren Einträge verwenden, wird das Löschen Lücken erzeugen.<br />Soll trotzdem fortgefahren werden?<br /><br />');
|
||||||
|
|||||||
@@ -967,3 +967,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -985,3 +985,7 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -969,3 +969,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -967,3 +967,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -974,3 +974,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_hu.inc.php 93 2005-05-12 10:49:41Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Márton Pósz <ful_s@AT@passwd.hu> and Hrotkó Gábor <roti@al.pmmf.hu>
|
# Translation (c) by Márton Pósz <ful_s@AT@passwd.hu> and Hrotkó Gábor <roti@al.pmmf.hu>
|
||||||
@@ -965,3 +965,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -968,3 +968,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id:/\([a-zA-Z]\)\?/$1?/cgserendipity_lang_it.inc.php 825 2006-01-03 10:02:22Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation (c) by Alessandro Pellizzari <alex@amiran.it>
|
# Translation (c) by Alessandro Pellizzari <alex@amiran.it>
|
||||||
@@ -971,3 +971,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -971,3 +971,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -970,3 +970,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -969,3 +969,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -970,3 +970,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -966,3 +966,6 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -972,3 +972,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -979,3 +979,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -968,3 +968,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -971,3 +971,6 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -886,3 +886,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_en.inc.php,v 1.148 2005/04/08 22:50:24 garvinhicking Exp $
|
<?php # $Id$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
# Translation by Torbjörn Hedberg <torbjorn@sm.luth.se>
|
# Translation by Torbjörn Hedberg <torbjorn@sm.luth.se>
|
||||||
@@ -967,3 +967,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_en.inc.php 825 2006-01-03 10:02:22Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
/* vim: set sts=4 ts=4 expandtab : */
|
/* vim: set sts=4 ts=4 expandtab : */
|
||||||
@@ -967,3 +967,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -971,3 +971,7 @@ $i18n_unknown = 'tw';
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?php # $Id: serendipity_lang_en.inc.php 769 2005-12-10 21:11:44Z garvinhicking $
|
<?php # $Id:$
|
||||||
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
||||||
# All rights reserved. See LICENSE file for licensing details
|
# All rights reserved. See LICENSE file for licensing details
|
||||||
#Translated to Turkish 2006-03-03 Ahmet USAL - ahmetusal@gmail.com - /*http://www.edirnekizilay.org*/
|
#Translated to Turkish 2006-03-03 Ahmet USAL - ahmetusal@gmail.com - /*http://www.edirnekizilay.org*/
|
||||||
@@ -971,3 +971,7 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -972,3 +972,7 @@ $i18n_unknown = 'tw';
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|
||||||
|
|||||||
@@ -968,3 +968,6 @@
|
|||||||
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
@define('PENDING_COMMENT_SUBSCRIPTION', 'Pending confirmation');
|
||||||
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
@define('NO_COMMENT_SUBSCRIPTION', 'Not subscribed');
|
||||||
@define('SUMMARY', 'Summary');
|
@define('SUMMARY', 'Summary');
|
||||||
|
|
||||||
|
// Next lines were added on 2012/05/29
|
||||||
|
@define('ABOUT_TO_DELETE_FILES', 'You are about to delete a bunch of files at once.<br />If you are using these in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
{if $file.is_image AND NOT $file.hotlink}<a href="?serendipity[adminModule]=images&serendipity[adminAction]=rotateCW&serendipity[fid]={$file.id}"><img class="serendipityImageButton" title="{$CONST.IMAGE_ROTATE_RIGHT}" alt="{$CONST.IMAGE_ROTATE_RIGHT}" src="{$media.rotatecwIMG}" border="0" /></a><br />{/if}
|
{if $file.is_image AND NOT $file.hotlink}<a href="?serendipity[adminModule]=images&serendipity[adminAction]=rotateCW&serendipity[fid]={$file.id}"><img class="serendipityImageButton" title="{$CONST.IMAGE_ROTATE_RIGHT}" alt="{$CONST.IMAGE_ROTATE_RIGHT}" src="{$media.rotatecwIMG}" border="0" /></a><br />{/if}
|
||||||
<a href="?serendipity[adminModule]=images&serendipity[adminAction]=properties&serendipity[fid]={$file.id}"><img class="serendipityImageButton" title="{$CONST.MEDIA_PROP}" alt="{$CONST.MEDIA_PROP}" src="{$media.configureIMG}" border="0" /></a><br />
|
<a href="?serendipity[adminModule]=images&serendipity[adminAction]=properties&serendipity[fid]={$file.id}"><img class="serendipityImageButton" title="{$CONST.MEDIA_PROP}" alt="{$CONST.MEDIA_PROP}" src="{$media.configureIMG}" border="0" /></a><br />
|
||||||
<a href="?serendipity[adminModule]=images&serendipity[adminAction]=delete&serendipity[fid]={$file.id}"><img class="serendipityImageButton" title="{$CONST.MEDIA_DELETE}" alt="{$CONST.MEDIA_DELETE}" src="{$media.deleteIMG}" border="0" /></a><br />
|
<a href="?serendipity[adminModule]=images&serendipity[adminAction]=delete&serendipity[fid]={$file.id}"><img class="serendipityImageButton" title="{$CONST.MEDIA_DELETE}" alt="{$CONST.MEDIA_DELETE}" src="{$media.deleteIMG}" border="0" /></a><br />
|
||||||
|
<input class="input_checkbox" type="checkbox" name="serendipity[multiDelete][]" value="{$file.id}" />
|
||||||
{/if}
|
{/if}
|
||||||
</td>
|
</td>
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
|
|||||||
@@ -145,6 +145,25 @@
|
|||||||
{if $media.nr_files < 1}
|
{if $media.nr_files < 1}
|
||||||
<div align="center">- {$CONST.NO_IMAGES_FOUND} -</div>
|
<div align="center">- {$CONST.NO_IMAGES_FOUND} -</div>
|
||||||
{else}
|
{else}
|
||||||
|
<script type="text/javascript">
|
||||||
|
{literal}
|
||||||
|
function invertSelection() {
|
||||||
|
var f = document.formMultiDelete;
|
||||||
|
for (var i = 0; i < f.elements.length; i++) {
|
||||||
|
if (f.elements[i].type == 'checkbox') {
|
||||||
|
f.elements[i].checked = !(f.elements[i].checked);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{/literal}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<form action="?" method="post" name="formMultiDelete" id="formMultiDelete">
|
||||||
|
{$media.token}
|
||||||
|
<input type="hidden" name="serendipity[action]" value="admin" />
|
||||||
|
<input type="hidden" name="serendipity[adminModule]" value="media" />
|
||||||
|
<input type="hidden" name="serendipity[adminAction]" value="multidelete" />
|
||||||
|
|
||||||
<table border="0" width="100%">
|
<table border="0" width="100%">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="{$media.lineBreak}">
|
<td colspan="{$media.lineBreak}">
|
||||||
@@ -187,5 +206,13 @@
|
|||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="right">
|
||||||
|
<input type="button" name="toggle" value="{$CONST.INVERT_SELECTIONS}" onclick="invertSelection()" class="serendipityPrettyButton input_button" />
|
||||||
|
<input type="submit" name="toggle" value="{$CONST.DELETE_SELECTED_ENTRIES}" class="serendipityPrettyButton input_button" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
</form>
|
||||||
{/if}
|
{/if}
|
||||||
Reference in New Issue
Block a user