1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<?php # $Id: $
##########################################################################
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity #
# Developer Team) All rights reserved. See LICENSE file for licensing #
# details #
# #
# (c) 2003 Jannis Hermanns <J@hacked.it> #
# http://www.jannis.to/programming/serendipity.html #
# #
# Translated by #
# (c) 2006 Demin Yin <damon@deminy.net> #
# http://www.deminy.net #
##########################################################################
@define('PLUGIN_COMMENTS_BLAHBLAH', '显示最新的评论');
@define('PLUGIN_COMMENTS_WORDWRAP', '自动换行');
@define('PLUGIN_COMMENTS_WORDWRAP_BLAHBLAH', '多少字符之后自动换行?(默认:30)');
@define('PLUGIN_COMMENTS_MAXCHARS', '显示长度');
@define('PLUGIN_COMMENTS_MAXCHARS_BLAHBLAH', '每个评论要显示多少字符?(默认:120)');
@define('PLUGIN_COMMENTS_MAXENTRIES', '评论数量');
@define('PLUGIN_COMMENTS_MAXENTRIES_BLAHBLAH', '要显示多少个评论?(默认:15)');
@define('PLUGIN_COMMENTS_ABOUT', '%s 关于 %s');
?>
|