29 lines
1.7 KiB
PHP
29 lines
1.7 KiB
PHP
<?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 Aphonex Li <aphonex.li@gmail.com> #
|
||
# http://www.exten.cn #
|
||
##########################################################################
|
||
|
||
@define('PLUGIN_ENTRYLINKS_NAME', '文章连接');
|
||
@define('PLUGIN_ENTRYLINKS_BLAHBLAH', '显示文章内出现的连接');
|
||
@define('PLUGIN_ENTRYLINKS_NEWWIN', '弹出新窗口');
|
||
@define('PLUGIN_ENTRYLINKS_NEWWIN_BLAHBLAH', '文章里的连接弹出新窗口(预设:主窗口)');
|
||
@define('PLUGIN_ENTRYLINKS_REFERERS', '参照连接');
|
||
@define('PLUGIN_ENTRYLINKS_WORDWRAP', '自动换行');
|
||
@define('PLUGIN_ENTRYLINKS_WORDWRAP_BLAHBLAH', '要多少字后自动换行(预设:30)');
|
||
@define('PLUGIN_ENTRYLINKS_MAXREF', '参照连接数量');
|
||
@define('PLUGIN_ENTRYLINKS_MAXREF_BLAHBLAH', '要显示多少个参照连接(预设:15)');
|
||
@define('PLUGIN_ENTRYLINKS_ORDERBY', '排列参照连接');
|
||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', '要怎样排列参照连接(预设:连接数量)');
|
||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', '日期');
|
||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', '连接数量');
|
||
?>
|