[story#79046,0.5h] update lang config.
This commit is contained in:
@@ -129,6 +129,10 @@ $lang->ai->prompts->draftedBy = 'Drafted By';
|
||||
$lang->ai->prompts->lastEditor = 'Last Editor';
|
||||
$lang->ai->prompts->modelNeutral = 'Model Neutral';
|
||||
|
||||
$lang->ai->prompts->viewTypeList = array();
|
||||
$lang->ai->prompts->viewTypeList['list'] = 'List View';
|
||||
$lang->ai->prompts->viewTypeList['card'] = 'Card View';
|
||||
|
||||
$lang->ai->prompts->summary = 'There are %s zenTao agents on this page.';
|
||||
$lang->ai->prompts->fieldSeparator = ', ';
|
||||
|
||||
|
||||
@@ -129,6 +129,10 @@ $lang->ai->prompts->draftedBy = 'Drafted By';
|
||||
$lang->ai->prompts->lastEditor = 'Last Editor';
|
||||
$lang->ai->prompts->modelNeutral = 'Model Neutral';
|
||||
|
||||
$lang->ai->prompts->viewTypeList = array();
|
||||
$lang->ai->prompts->viewTypeList['list'] = 'List View';
|
||||
$lang->ai->prompts->viewTypeList['card'] = 'Card View';
|
||||
|
||||
$lang->ai->prompts->summary = 'There are %s zenTao agents on this page.';
|
||||
$lang->ai->prompts->fieldSeparator = ', ';
|
||||
|
||||
|
||||
@@ -129,6 +129,10 @@ $lang->ai->prompts->draftedBy = 'Drafted By';
|
||||
$lang->ai->prompts->lastEditor = 'Last Editor';
|
||||
$lang->ai->prompts->modelNeutral = 'Model Neutral';
|
||||
|
||||
$lang->ai->prompts->viewTypeList = array();
|
||||
$lang->ai->prompts->viewTypeList['list'] = 'List View';
|
||||
$lang->ai->prompts->viewTypeList['card'] = 'Card View';
|
||||
|
||||
$lang->ai->prompts->summary = 'There are %s zenTao agents on this page.';
|
||||
$lang->ai->prompts->fieldSeparator = ', ';
|
||||
|
||||
|
||||
@@ -74,7 +74,7 @@ sidebar
|
||||
)
|
||||
);
|
||||
|
||||
$buildDropdown = function($prompt) use ($lang, $config)
|
||||
$buildDropdown = function($prompt) use ($config)
|
||||
{
|
||||
$items = array();
|
||||
|
||||
@@ -139,7 +139,7 @@ $promptCard = function($prompt) use ($lang, $buildDropdown)
|
||||
$draftTag = $prompt->status === 'draft'
|
||||
? span(
|
||||
setClass('draft-tag'),
|
||||
'未发布'
|
||||
$lang->ai->prompts->statuses['draft']
|
||||
)
|
||||
: null;
|
||||
return div(
|
||||
@@ -166,7 +166,7 @@ $promptCard = function($prompt) use ($lang, $buildDropdown)
|
||||
),
|
||||
span(
|
||||
setClass('created-date'),
|
||||
sprintf('创建时间:%s', $prompt->createdDate)
|
||||
sprintf($lang->ai->prompts->createdDate . ':%s', substr($prompt->createdDate, 0, 10))
|
||||
)
|
||||
)
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user