21 lines
688 B
PHP
21 lines
688 B
PHP
<?php
|
|
/**
|
|
* 共有语言
|
|
*/
|
|
$lang['article_article_article_class'] = '文章分类';
|
|
$lang['article_article_new_article'] = '最新文章';
|
|
$lang['article_article_no_new_article'] = '没有最新文章';
|
|
$lang['article_article_not_found'] = '没有符合条件的文章';
|
|
/**
|
|
* 列表页
|
|
*/
|
|
$lang['article_article_class_not_exists'] = '该文章分类并不存在';
|
|
/**
|
|
* 显示页
|
|
*/
|
|
$lang['article_show_not_exists'] = '该文章并不存在';
|
|
$lang['article_show_delete'] = '该文章已随所属类别被删除';
|
|
$lang['article_show_article_content'] = '文章内容';
|
|
$lang['article_show_previous'] = '上一篇';
|
|
$lang['article_show_next'] = '下一篇';
|
|
return $lang; |