2023-05-15 08:51:32 +08:00
const translation = {
api : {
success : 'Success' ,
2023-12-18 15:41:24 +08:00
actionSuccess : 'Action succeeded' ,
2023-05-15 08:51:32 +08:00
saved : 'Saved' ,
create : 'Created' ,
remove : 'Removed' ,
} ,
operation : {
2023-05-25 16:59:47 +08:00
create : 'Create' ,
2023-05-15 08:51:32 +08:00
confirm : 'Confirm' ,
cancel : 'Cancel' ,
clear : 'Clear' ,
save : 'Save' ,
edit : 'Edit' ,
add : 'Add' ,
2024-01-23 19:31:56 +08:00
added : 'Added' ,
2023-05-15 08:51:32 +08:00
refresh : 'Restart' ,
2023-07-14 11:19:26 +08:00
reset : 'Reset' ,
2023-05-15 08:51:32 +08:00
search : 'Search' ,
change : 'Change' ,
remove : 'Remove' ,
send : 'Send' ,
copy : 'Copy' ,
lineBreak : 'Line break' ,
sure : 'I\'m sure' ,
2023-07-13 09:30:16 +08:00
download : 'Download' ,
2023-08-16 10:31:08 +08:00
delete : 'Delete' ,
settings : 'Settings' ,
2023-08-12 00:57:13 +08:00
setup : 'Setup' ,
getForFree : 'Get for free' ,
2023-08-14 12:46:28 +08:00
reload : 'Reload' ,
2023-08-17 15:49:22 +08:00
ok : 'OK' ,
2023-10-12 23:14:28 +08:00
log : 'Log' ,
2023-11-06 19:36:32 +08:00
learnMore : 'Learn More' ,
2023-12-18 15:41:24 +08:00
params : 'Params' ,
2024-04-24 15:02:29 +08:00
duplicate : 'Duplicate' ,
rename : 'Rename' ,
2023-05-15 08:51:32 +08:00
} ,
placeholder : {
input : 'Please enter' ,
select : 'Please select' ,
} ,
2024-02-16 00:15:22 +08:00
voice : {
language : {
zhHans : 'Chinese' ,
2024-04-29 17:55:52 +08:00
zhHant : 'Traditional Chinese' ,
2024-02-16 00:15:22 +08:00
enUS : 'English' ,
deDE : 'German' ,
frFR : 'French' ,
esES : 'Spanish' ,
itIT : 'Italian' ,
thTH : 'Thai.' ,
idID : 'Indonesian' ,
2024-02-16 20:05:14 +08:00
jaJP : 'Japanese' ,
koKR : 'Korean' ,
ptBR : 'Portuguese' ,
ruRU : 'Russian' ,
2024-02-22 16:06:17 +08:00
ukUA : 'Ukrainian' ,
2024-04-29 17:55:52 +08:00
viVN : 'Vietnamese' ,
2024-05-09 15:38:51 +08:00
plPL : 'Polish' ,
2024-02-16 00:15:22 +08:00
} ,
} ,
2023-05-15 08:51:32 +08:00
unit : {
char : 'chars' ,
} ,
actionMsg : {
2023-08-16 10:31:08 +08:00
noModification : 'No modifications at the moment.' ,
2023-05-15 08:51:32 +08:00
modifiedSuccessfully : 'Modified successfully' ,
2023-09-05 09:13:59 +08:00
modifiedUnsuccessfully : 'Modified unsuccessfully' ,
2023-05-15 08:51:32 +08:00
copySuccessfully : 'Copied successfully' ,
2023-08-17 15:49:22 +08:00
paySucceeded : 'Payment succeeded' ,
payCancelled : 'Payment cancelled' ,
2023-09-05 09:13:59 +08:00
generatedSuccessfully : 'Generated successfully' ,
generatedUnsuccessfully : 'Generated unsuccessfully' ,
2023-05-15 08:51:32 +08:00
} ,
model : {
params : {
temperature : 'Temperature' ,
temperatureTip :
'Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive.' ,
2023-08-12 00:57:13 +08:00
top_p : 'Top P' ,
top_pTip :
2023-05-15 08:51:32 +08:00
'Controls diversity via nucleus sampling: 0.5 means half of all likelihood-weighted options are considered.' ,
2023-08-12 00:57:13 +08:00
presence_penalty : 'Presence penalty' ,
presence_penaltyTip :
2023-09-15 11:14:14 +08:00
'How much to penalize new tokens based on whether they appear in the text so far.\nIncreases the model\'s likelihood to talk about new topics.' ,
2023-08-12 00:57:13 +08:00
frequency_penalty : 'Frequency penalty' ,
frequency_penaltyTip :
2023-09-15 11:14:14 +08:00
'How much to penalize new tokens based on their existing frequency in the text so far.\nDecreases the model\'s likelihood to repeat the same line verbatim.' ,
2023-08-12 00:57:13 +08:00
max_tokens : 'Max token' ,
max_tokensTip :
2023-12-14 09:55:30 +08:00
'Used to limit the maximum length of the reply, in tokens. \nLarger values may limit the space left for prompt words, chat logs, and Knowledge. \nIt is recommended to set it below two-thirds\ngpt-4-1106-preview, gpt-4-vision-preview max token (input 128k output 4k)' ,
2023-07-06 15:57:04 +08:00
maxTokenSettingTip : 'Your max token setting is high, potentially limiting space for prompts, queries, and data. Consider setting it below 2/3.' ,
2023-08-12 00:57:13 +08:00
setToCurrentModelMaxTokenTip : 'Max token is updated to the 80% maximum token of the current model {{maxToken}}.' ,
2023-10-12 23:14:28 +08:00
stop_sequences : 'Stop sequences' ,
stop_sequencesTip : 'Up to four sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence.' ,
stop_sequencesPlaceholder : 'Enter sequence and press Tab' ,
2023-05-15 08:51:32 +08:00
} ,
tone : {
Creative : 'Creative' ,
Balanced : 'Balanced' ,
Precise : 'Precise' ,
Custom : 'Custom' ,
} ,
2023-10-12 23:14:28 +08:00
addMoreModel : 'Go to settings to add more models' ,
2023-05-15 08:51:32 +08:00
} ,
menus : {
status : 'beta' ,
2023-05-25 16:59:47 +08:00
explore : 'Explore' ,
2024-01-23 19:31:56 +08:00
apps : 'Studio' ,
2023-05-15 08:51:32 +08:00
plugins : 'Plugins' ,
pluginsTips : 'Integrate third-party plugins or create ChatGPT-compatible AI-Plugins.' ,
2023-11-27 17:22:16 +08:00
datasets : 'Knowledge' ,
2023-05-15 08:51:32 +08:00
datasetsTips : 'COMING SOON: Import your own text data or write data in real-time via Webhook for LLM context enhancement.' ,
newApp : 'New App' ,
2023-11-27 17:22:16 +08:00
newDataset : 'Create Knowledge' ,
2024-01-23 19:31:56 +08:00
tools : 'Tools' ,
2023-05-15 08:51:32 +08:00
} ,
userProfile : {
settings : 'Settings' ,
workspace : 'Workspace' ,
createWorkspace : 'Create Workspace' ,
2023-11-20 11:07:45 +08:00
helpCenter : 'Help' ,
2024-04-07 13:37:32 +08:00
roadmapAndFeedback : 'Feedback' ,
2023-12-28 18:14:16 +08:00
community : 'Community' ,
2023-05-15 08:51:32 +08:00
about : 'About' ,
logout : 'Log out' ,
} ,
settings : {
accountGroup : 'ACCOUNT' ,
2023-12-13 20:21:11 +08:00
workplaceGroup : 'WORKSPACE' ,
2023-05-30 09:59:05 +08:00
account : 'My account' ,
members : 'Members' ,
2023-12-03 22:10:16 +08:00
billing : 'Billing' ,
2023-05-30 09:59:05 +08:00
integrations : 'Integrations' ,
language : 'Language' ,
provider : 'Model Provider' ,
2023-06-16 21:47:51 +08:00
dataSource : 'Data Source' ,
2023-07-27 13:27:34 +08:00
plugin : 'Plugins' ,
2023-11-08 13:03:50 +08:00
apiBasedExtension : 'API Extension' ,
2023-05-15 08:51:32 +08:00
} ,
account : {
avatar : 'Avatar' ,
name : 'Name' ,
email : 'Email' ,
2023-07-14 11:19:26 +08:00
password : 'Password' ,
passwordTip : 'You can set a permanent password if you don’ t want to use temporary login codes' ,
setPassword : 'Set a password' ,
resetPassword : 'Reset password' ,
currentPassword : 'Current password' ,
newPassword : 'New password' ,
confirmPassword : 'Confirm password' ,
notEqual : 'Two passwords are different.' ,
2023-05-15 08:51:32 +08:00
langGeniusAccount : 'Dify account' ,
langGeniusAccountTip : 'Your Dify account and associated user data.' ,
editName : 'Edit Name' ,
showAppLength : 'Show {{length}} apps' ,
} ,
members : {
team : 'Team' ,
2023-05-30 09:59:05 +08:00
invite : 'Add' ,
2023-05-15 08:51:32 +08:00
name : 'NAME' ,
lastActive : 'LAST ACTIVE' ,
role : 'ROLES' ,
pending : 'Pending...' ,
owner : 'Owner' ,
admin : 'Admin' ,
adminTip : 'Can build apps & manage team settings' ,
normal : 'Normal' ,
2023-07-14 11:19:26 +08:00
normalTip : 'Only can use apps, can not build apps' ,
2023-05-30 09:59:05 +08:00
inviteTeamMember : 'Add team member' ,
2023-06-16 07:25:50 +08:00
inviteTeamMemberTip : 'They can access your team data directly after signing in.' ,
2023-05-15 08:51:32 +08:00
email : 'Email' ,
emailInvalid : 'Invalid Email Format' ,
2023-08-31 01:18:31 +08:00
emailPlaceholder : 'Please input emails' ,
sendInvite : 'Send Invite' ,
invitedAsRole : 'Invited as {{role}} user' ,
2023-07-14 11:19:26 +08:00
invitationSent : 'Invitation sent' ,
invitationSentTip : 'Invitation sent, and they can sign in to Dify to access your team data.' ,
invitationLink : 'Invitation Link' ,
2023-08-31 01:18:31 +08:00
failedinvitationEmails : 'Below users were not invited successfully' ,
2023-05-15 08:51:32 +08:00
ok : 'OK' ,
removeFromTeam : 'Remove from team' ,
removeFromTeamTip : 'Will remove team access' ,
setAdmin : 'Set as administrator' ,
setMember : 'Set to ordinary member' ,
disinvite : 'Cancel the invitation' ,
deleteMember : 'Delete Member' ,
you : '(You)' ,
} ,
integrations : {
connected : 'Connected' ,
google : 'Google' ,
googleAccount : 'Login with Google account' ,
github : 'GitHub' ,
githubAccount : 'Login with GitHub account' ,
2023-05-30 09:59:05 +08:00
connect : 'Connect' ,
2023-05-15 08:51:32 +08:00
} ,
language : {
displayLanguage : 'Display Language' ,
timezone : 'Time Zone' ,
} ,
provider : {
2023-05-30 09:59:05 +08:00
apiKey : 'API Key' ,
enterYourKey : 'Enter your API key here' ,
invalidKey : 'Invalid OpenAI API key' ,
validatedError : 'Validation failed: ' ,
validating : 'Validating key...' ,
saveFailed : 'Save api key failed' ,
apiKeyExceedBill : 'This API KEY has no quota available, please read' ,
2023-05-15 08:51:32 +08:00
addKey : 'Add Key' ,
comingSoon : 'Coming Soon' ,
editKey : 'Edit' ,
invalidApiKey : 'Invalid API key' ,
azure : {
2023-05-19 13:24:45 +08:00
apiBase : 'API Base' ,
2023-05-22 17:39:28 +08:00
apiBasePlaceholder : 'The API Base URL of your Azure OpenAI Endpoint.' ,
2023-05-15 08:51:32 +08:00
apiKey : 'API Key' ,
apiKeyPlaceholder : 'Enter your API key here' ,
helpTip : 'Learn Azure OpenAI Service' ,
} ,
openaiHosted : {
openaiHosted : 'Hosted OpenAI' ,
onTrial : 'ON TRIAL' ,
exhausted : 'QUOTA EXHAUSTED' ,
desc : 'The OpenAI hosting service provided by Dify allows you to use models such as GPT-3.5. Before your trial quota is used up, you need to set up other model providers.' ,
callTimes : 'Call times' ,
usedUp : 'Trial quota used up. Add own Model Provider.' ,
useYourModel : 'Currently using own Model Provider.' ,
close : 'Close' ,
} ,
2023-07-17 00:14:32 +08:00
anthropicHosted : {
anthropicHosted : 'Anthropic Claude' ,
onTrial : 'ON TRIAL' ,
exhausted : 'QUOTA EXHAUSTED' ,
desc : 'Powerful model, which excels at a wide range of tasks from sophisticated dialogue and creative content generation to detailed instruction.' ,
callTimes : 'Call times' ,
usedUp : 'Trial quota used up. Add own Model Provider.' ,
useYourModel : 'Currently using own Model Provider.' ,
close : 'Close' ,
} ,
anthropic : {
using : 'The embedding capability is using' ,
enableTip : 'To enable the Anthropic model, you need to bind to OpenAI or Azure OpenAI Service first.' ,
notEnabled : 'Not enabled' ,
keyFrom : 'Get your API key from Anthropic' ,
} ,
2023-05-15 08:51:32 +08:00
encrypted : {
front : 'Your API KEY will be encrypted and stored using' ,
back : ' technology.' ,
2023-05-30 09:59:05 +08:00
} ,
2023-05-15 08:51:32 +08:00
} ,
2023-08-12 00:57:13 +08:00
modelProvider : {
2023-11-21 13:46:07 +08:00
notConfigured : 'The system model has not yet been fully configured, and some functions may be unavailable.' ,
2023-11-18 11:53:35 +08:00
systemModelSettings : 'System Model Settings' ,
systemModelSettingsLink : 'Why is it necessary to set up a system model?' ,
2023-08-12 00:57:13 +08:00
selectModel : 'Select your model' ,
setupModelFirst : 'Please set up your model first' ,
systemReasoningModel : {
key : 'System Reasoning Model' ,
2023-08-13 22:50:31 +08:00
tip : 'Set the default inference model to be used for creating applications, as well as features such as dialogue name generation and next question suggestion will also use the default inference model.' ,
2023-08-12 00:57:13 +08:00
} ,
embeddingModel : {
key : 'Embedding Model' ,
2023-11-27 17:22:16 +08:00
tip : 'Set the default model for document embedding processing of the Knowledge, both retrieval and import of the Knowledge use this Embedding model for vectorization processing. Switching will cause the vector dimension between the imported Knowledge and the question to be inconsistent, resulting in retrieval failure. To avoid retrieval failure, please do not switch this model at will.' ,
2023-12-18 15:41:24 +08:00
required : 'Embedding Model is required' ,
2023-08-12 00:57:13 +08:00
} ,
speechToTextModel : {
key : 'Speech-to-Text Model' ,
2023-08-13 22:50:31 +08:00
tip : 'Set the default model for speech-to-text input in conversation.' ,
2023-08-12 00:57:13 +08:00
} ,
2024-01-24 01:05:37 +08:00
ttsModel : {
2024-01-26 12:34:39 +08:00
key : 'Text-to-Speech Model' ,
tip : 'Set the default model for text-to-speech input in conversation.' ,
2024-01-24 01:05:37 +08:00
} ,
2023-11-18 11:53:35 +08:00
rerankModel : {
key : 'Rerank Model' ,
tip : 'Rerank model will reorder the candidate document list based on the semantic match with user query, improving the results of semantic ranking' ,
} ,
2023-08-12 00:57:13 +08:00
quota : 'Quota' ,
searchModel : 'Search model' ,
noModelFound : 'No model found for {{model}}' ,
models : 'Models' ,
showMoreModelProvider : 'Show more model provider' ,
selector : {
tip : 'This model has been removed. Please add a model or select another model.' ,
2023-11-18 11:53:35 +08:00
emptyTip : 'No available models' ,
emptySetting : 'Please go to settings to configure' ,
2023-11-21 13:46:07 +08:00
rerankTip : 'Please set up the Rerank model' ,
2023-08-12 00:57:13 +08:00
} ,
card : {
quota : 'QUOTA' ,
onTrial : 'On Trial' ,
paid : 'Paid' ,
quotaExhausted : 'Quota exhausted' ,
callTimes : 'Call times' ,
tokens : 'Tokens' ,
buyQuota : 'Buy Quota' ,
priorityUse : 'Priority use' ,
removeKey : 'Remove API Key' ,
tip : 'Priority will be given to the paid quota. The Trial quota will be used after the paid quota is exhausted.' ,
} ,
item : {
deleteDesc : '{{modelName}} are being used as system reasoning models. Some functions will not be available after removal. Please confirm.' ,
freeQuota : 'FREE QUOTA' ,
} ,
addApiKey : 'Add your API key' ,
invalidApiKey : 'Invalid API key' ,
encrypted : {
front : 'Your API KEY will be encrypted and stored using' ,
back : ' technology.' ,
} ,
2023-08-14 16:36:04 +08:00
freeQuota : {
howToEarn : 'How to earn' ,
} ,
2024-01-02 23:42:00 +08:00
addMoreModelProvider : 'ADD MORE MODEL PROVIDER' ,
addModel : 'Add Model' ,
modelsNum : '{{num}} Models' ,
showModels : 'Show Models' ,
showModelsNum : 'Show {{num}} Models' ,
collapse : 'Collapse' ,
config : 'Config' ,
modelAndParameters : 'Model and Parameters' ,
model : 'Model' ,
featureSupported : '{{feature}} supported' ,
callTimes : 'Call times' ,
2024-01-26 18:06:54 +08:00
credits : 'Message Credits' ,
2024-01-02 23:42:00 +08:00
buyQuota : 'Buy Quota' ,
getFreeTokens : 'Get free Tokens' ,
priorityUsing : 'Prioritize using' ,
2024-01-03 00:05:08 +08:00
deprecated : 'Deprecated' ,
confirmDelete : 'confirm deletion?' ,
quotaTip : 'Remaining available free tokens' ,
2024-01-25 18:04:22 +08:00
loadPresets : 'Load Presents' ,
parameters : 'PARAMETERS' ,
2023-08-12 00:57:13 +08:00
} ,
2023-06-16 21:47:51 +08:00
dataSource : {
add : 'Add a data source' ,
connect : 'Connect' ,
notion : {
title : 'Notion' ,
2023-11-27 17:22:16 +08:00
description : 'Using Notion as a data source for the Knowledge.' ,
2023-06-16 21:47:51 +08:00
connectedWorkspace : 'Connected workspace' ,
addWorkspace : 'Add workspace' ,
connected : 'Connected' ,
disconnected : 'Disconnected' ,
changeAuthorizedPages : 'Change authorized pages' ,
pagesAuthorized : 'Pages authorized' ,
sync : 'Sync' ,
remove : 'Remove' ,
selector : {
pageSelected : 'Pages Selected' ,
searchPages : 'Search pages...' ,
noSearchResult : 'No search resluts' ,
addPages : 'Add pages' ,
preview : 'PREVIEW' ,
} ,
} ,
} ,
2023-07-27 13:27:34 +08:00
plugin : {
serpapi : {
apiKey : 'API Key' ,
apiKeyPlaceholder : 'Enter your API key' ,
keyFrom : 'Get your SerpAPI key from SerpAPI Account Page' ,
} ,
} ,
2023-11-06 19:36:32 +08:00
apiBasedExtension : {
2024-01-02 23:42:00 +08:00
title : 'API extensions provide centralized API management, simplifying configuration for easy use across Dify\'s applications.' ,
2023-11-08 13:03:50 +08:00
link : 'Learn how to develop your own API Extension.' ,
2024-01-26 15:20:03 +08:00
linkUrl : 'https://docs.dify.ai/features/extension/api_based_extension' ,
2023-11-08 13:03:50 +08:00
add : 'Add API Extension' ,
2023-11-06 19:36:32 +08:00
selector : {
2023-11-08 13:03:50 +08:00
title : 'API Extension' ,
2024-01-02 23:42:00 +08:00
placeholder : 'Please select API extension' ,
2023-11-08 13:03:50 +08:00
manage : 'Manage API Extension' ,
2023-11-06 19:36:32 +08:00
} ,
modal : {
2023-11-08 13:03:50 +08:00
title : 'Add API Extension' ,
editTitle : 'Edit API Extension' ,
2023-11-06 19:36:32 +08:00
name : {
title : 'Name' ,
placeholder : 'Please enter the name' ,
} ,
apiEndpoint : {
title : 'API Endpoint' ,
placeholder : 'Please enter the API endpoint' ,
} ,
apiKey : {
title : 'API-key' ,
placeholder : 'Please enter the API-key' ,
lengthError : 'API-key length cannot be less than 5 characters' ,
} ,
} ,
2024-02-07 15:01:53 +08:00
type : 'Type' ,
2023-11-06 19:36:32 +08:00
} ,
2023-05-15 08:51:32 +08:00
about : {
2024-04-13 09:48:19 +08:00
changeLog : 'Changelog' ,
2023-05-15 08:51:32 +08:00
updateNow : 'Update now' ,
nowAvailable : 'Dify {{version}} is now available.' ,
latestAvailable : 'Dify {{version}} is the latest version available.' ,
} ,
appMenus : {
overview : 'Overview' ,
2024-01-23 19:31:56 +08:00
promptEng : 'Orchestrate' ,
2023-05-15 08:51:32 +08:00
apiAccess : 'API Access' ,
logAndAnn : 'Logs & Ann.' ,
2024-04-08 18:51:46 +08:00
logs : 'Logs' ,
2023-05-15 08:51:32 +08:00
} ,
environment : {
testing : 'TESTING' ,
development : 'DEVELOPMENT' ,
} ,
appModes : {
completionApp : 'Text Generator' ,
chatApp : 'Chat App' ,
} ,
datasetMenus : {
documents : 'Documents' ,
2023-11-18 11:53:35 +08:00
hitTesting : 'Retrieval Testing' ,
2023-05-15 08:51:32 +08:00
settings : 'Settings' ,
2023-11-27 17:22:16 +08:00
emptyTip : 'The Knowledge has not been associated, please go to the application or plug-in to complete the association.' ,
2023-05-15 08:51:32 +08:00
viewDoc : 'View documentation' ,
relatedApp : 'linked apps' ,
} ,
2023-07-07 17:50:42 +08:00
voiceInput : {
speaking : 'Speak now...' ,
converting : 'Converting to text...' ,
notAllow : 'microphone not authorized' ,
} ,
2023-08-12 00:57:13 +08:00
modelName : {
'gpt-3.5-turbo' : 'GPT-3.5-Turbo' ,
'gpt-3.5-turbo-16k' : 'GPT-3.5-Turbo-16K' ,
'gpt-4' : 'GPT-4' ,
'gpt-4-32k' : 'GPT-4-32K' ,
'text-davinci-003' : 'Text-Davinci-003' ,
'text-embedding-ada-002' : 'Text-Embedding-Ada-002' ,
'whisper-1' : 'Whisper-1' ,
'claude-instant-1' : 'Claude-Instant' ,
'claude-2' : 'Claude-2' ,
} ,
2023-08-30 17:32:32 +08:00
chat : {
renameConversation : 'Rename Conversation' ,
conversationName : 'Conversation name' ,
conversationNamePlaceholder : 'Please input conversation name' ,
conversationNameCanNotEmpty : 'Conversation name required' ,
2023-09-09 19:17:12 +08:00
citation : {
title : 'CITATIONS' ,
2023-11-27 17:22:16 +08:00
linkToDataset : 'Link to Knowledge' ,
2023-09-09 19:17:12 +08:00
characters : 'Characters:' ,
2023-11-18 11:53:35 +08:00
hitCount : 'Retrieval count:' ,
2023-09-09 19:17:12 +08:00
vectorHash : 'Vector hash:' ,
2023-11-18 11:53:35 +08:00
hitScore : 'Retrieval Score:' ,
2023-09-09 19:17:12 +08:00
} ,
2023-08-30 17:32:32 +08:00
} ,
2023-10-12 23:14:28 +08:00
promptEditor : {
placeholder : 'Write your prompt word here, enter \'{\' to insert a variable, enter \'/\' to insert a prompt content block' ,
context : {
item : {
title : 'Context' ,
desc : 'Insert context template' ,
} ,
modal : {
2023-11-27 17:22:16 +08:00
title : '{{num}} Knowledge in Context' ,
2023-10-12 23:14:28 +08:00
add : 'Add Context ' ,
footer : 'You can manage contexts in the Context section below.' ,
} ,
} ,
history : {
item : {
title : 'Conversation History' ,
desc : 'Insert historical message template' ,
} ,
modal : {
title : 'EXAMPLE' ,
user : 'Hello' ,
assistant : 'Hello! How can I assist you today?' ,
edit : 'Edit Conversation Role Names' ,
} ,
} ,
variable : {
item : {
2023-11-06 19:36:32 +08:00
title : 'Variables & External Tools' ,
desc : 'Insert Variables & External Tools' ,
2023-10-12 23:14:28 +08:00
} ,
2024-04-08 18:51:46 +08:00
outputToolDisabledItem : {
title : 'Variables' ,
desc : 'Insert Variables' ,
} ,
2023-10-12 23:14:28 +08:00
modal : {
add : 'New variable' ,
2023-11-06 19:36:32 +08:00
addTool : 'New tool' ,
2023-10-12 23:14:28 +08:00
} ,
} ,
query : {
item : {
title : 'Query' ,
desc : 'Insert user query template' ,
} ,
} ,
existed : 'Already exists in the prompt' ,
} ,
2023-11-13 22:32:39 +08:00
imageUploader : {
uploadFromComputer : 'Upload from Computer' ,
uploadFromComputerReadError : 'Image reading failed, please try again.' ,
uploadFromComputerUploadError : 'Image upload failed, please upload again.' ,
uploadFromComputerLimit : 'Upload images cannot exceed {{size}} MB' ,
pasteImageLink : 'Paste image link' ,
pasteImageLinkInputPlaceholder : 'Paste image link here' ,
pasteImageLinkInvalid : 'Invalid image link' ,
2023-11-16 11:56:11 +08:00
imageUpload : 'Image Upload' ,
2023-11-13 22:32:39 +08:00
} ,
2024-04-24 15:02:29 +08:00
tag : {
placeholder : 'All Tags' ,
addNew : 'Add new tag' ,
noTag : 'No tags' ,
noTagYet : 'No tags yet' ,
addTag : 'Add tags' ,
editTag : 'Edit tags' ,
manageTags : 'Manage Tags' ,
selectorPlaceholder : 'Type to search or create' ,
create : 'Create' ,
delete : 'Delete tag' ,
deleteTip : 'The tag is being used, delete it?' ,
created : 'Tag created successfully' ,
failed : 'Tag creation failed' ,
} ,
2023-05-15 08:51:32 +08:00
}
export default translation