Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv30900
Modified Files:
serendipity_admin_images.inc.php serendipity_functions.inc.php
serendipity_lang_en.inc.php
Log Message:
* Minor layout change to images-manager
* Changed layout for displaying of "comments not allowed" notice
* Changed a few sentences in the _en lang file
Index: serendipity_admin_images.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_images.inc.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- serendipity_admin_images.inc.php 8 Aug 2003 10:00:19 -0000 1.11
+++ serendipity_admin_images.inc.php 13 Oct 2003 20:35:34 -0000 1.12
@@ -77,6 +77,7 @@
<img class="serendipityImageButton" alt="<?php echo IMAGE_FULLSIZE; ?>" src="<?php echo $serendipity['serendipityHTTPPath']; ?>pixel/zoom.png" border="0" onClick="F1 = window.open('<?php echo $serendipity['serendipityHTTPPath'] . $serendipity['uploadHTTPPath'] . $files[$x]; ?>','Zoom','height=<?php echo ($i[1] + 20); ?>,width=<?php echo ($i[0] + 20); ?>,toolbar=no,menubar=no,location=no');" />
<img class="serendipityImageButton" alt="<?php echo IMAGE_RENAME; ?>" src="<?php echo $serendipity['serendipityHTTPPath']; ?>pixel/rename.png" border="0" onClick="rename('<?php echo addslashes($files[$x]); ?>')" />
+ <br>
<img class="serendipityImageButton" alt="<?php echo IMAGE_RESIZE; ?>" src="<?php echo $serendipity['serendipityHTTPPath']; ?>pixel/scale.png" border="0" onClick="location.href='?serendipity[adminModule]=images&serendipity[adminAction]=scaleSelect&serendipity[fname]=<?php echo rawurlencode($files[$x]); ?>';" />
<img class="serendipityImageButton" alt="<?php echo IMAGE_DELETE; ?>" src="<?php echo $serendipity['serendipityHTTPPath']; ?>pixel/delete.png" border="0" onClick="location.href='?serendipity[adminModule]=images&serendipity[adminAction]=delete&serendipity[fname]=<?php echo rawurlencode($files[$x]); ?>';" />
</td>
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -d -r1.164 -r1.165
--- serendipity_functions.inc.php 13 Oct 2003 12:15:08 -0000 1.164
+++ serendipity_functions.inc.php 13 Oct 2003 20:35:34 -0000 1.165
@@ -762,7 +762,7 @@
} else {
?>
<br />
- <div class="serendipity_comment_source"><?php echo COMMENTS_CLOSED; ?></div>
+ <div style="color: #FF0000" align="center"><?php echo COMMENTS_CLOSED; ?></div>
<?php
}
}
Index: serendipity_lang_en.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_lang_en.inc.php,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- serendipity_lang_en.inc.php 13 Oct 2003 12:15:44 -0000 1.43
+++ serendipity_lang_en.inc.php 13 Oct 2003 20:35:34 -0000 1.44
@@ -174,10 +174,10 @@
@define('TRACKBACK_SPECIFIC', 'Trackback specific URI for this entry');
@define('DIRECT_LINK', 'Direct link to this entry');
@define('COMMENT_ADDED', 'Your comment was successfully added. Click %shere to return%s to the comments, and %shere to close%s this window.');
-@define('COMMENT_NOT_ADDED', 'Your comment could not be added, because the comments are closed for this entry. Click %shere to return%s to the comments, and %shere to close%s this window.');
-@define('COMMENTS_DISABLE', 'Do not allow comments for this entry');
-@define('COMMENTS_ENABLE', 'Allow comments for this entry');
-@define('COMMENTS_CLOSED', 'Comments have been closed by the blog-owner for this entry.');
+@define('COMMENT_NOT_ADDED', 'Your comment could not be added, because comments for this entry has been disabled. Click %shere to return%s to the comments, and %shere to close%s this window.');
+@define('COMMENTS_DISABLE', 'Do not allow comments to this entry');
+@define('COMMENTS_ENABLE', 'Allow comments to this entry');
+@define('COMMENTS_CLOSED', 'Comments to this entry has been disabled by the author');
@define('EMPTY_COMMENT', 'Your comment did not contain anything, please %sgo back%s and try again');
@define('ENTRIES_FOR', 'Entries for %s');
@define('TOPICS_FOR', 'Topics for %s');
|