Browse Source

Fix typo: writeOpner -> writeOpener (#4060)

tags/0.6.7
Shohei Tanabe 1 year ago
parent
commit
f68b6b0e5e
No account linked to committer's email address

+ 1
- 1
web/app/components/app/configuration/features/chat-group/opening-statement/index.tsx View File

@@ -135,7 +135,7 @@ const OpeningStatement: FC<IOpeningStatementProps> = ({
<Button className='!h-8 !px-3 text-xs' onClick={handleConfirm} type="primary">{t('common.operation.save')}</Button>
</div>
) : (
<OperationBtn type='edit' actionName={hasValue ? '' : t('appDebug.openingStatement.writeOpner') as string} onClick={handleEdit} />
<OperationBtn type='edit' actionName={hasValue ? '' : t('appDebug.openingStatement.writeOpener') as string} onClick={handleEdit} />
)
) : null


+ 1
- 1
web/app/components/base/features/feature-panel/opening-statement/index.tsx View File

@@ -172,7 +172,7 @@ const OpeningStatement: FC<OpeningStatementProps> = ({
<Button className='!h-8 !px-3 text-xs' onClick={handleConfirm} type="primary">{t('common.operation.save')}</Button>
</div>
) : (
<OperationBtn type='edit' actionName={hasValue ? '' : t('appDebug.openingStatement.writeOpner') as string} onClick={handleEdit} />
<OperationBtn type='edit' actionName={hasValue ? '' : t('appDebug.openingStatement.writeOpener') as string} onClick={handleEdit} />
)
) : null


+ 1
- 1
web/i18n/de-DE/app-debug.ts View File

@@ -313,7 +313,7 @@ const translation = {
openingStatement: {
title: 'Gesprächseröffner',
add: 'Hinzufügen',
writeOpner: 'Eröffnung schreiben',
writeOpener: 'Eröffnung schreiben',
placeholder: 'Schreiben Sie hier Ihre Eröffnungsnachricht, Sie können Variablen verwenden, versuchen Sie {{Variable}} zu tippen.',
openingQuestion: 'Eröffnungsfragen',
noDataPlaceHolder:

+ 1
- 1
web/i18n/en-US/app-debug.ts View File

@@ -327,7 +327,7 @@ const translation = {
openingStatement: {
title: 'Conversation Opener',
add: 'Add',
writeOpner: 'Write opener',
writeOpener: 'Write opener',
placeholder: 'Write your opener message here, you can use variables, try type {{variable}}.',
openingQuestion: 'Opening Questions',
noDataPlaceHolder:

+ 1
- 1
web/i18n/fr-FR/app-debug.ts View File

@@ -327,7 +327,7 @@ const translation = {
openingStatement: {
title: 'Ouverture de Conversation',
add: 'Ajouter',
writeOpner: 'Écrire l\'introduction',
writeOpener: 'Écrire l\'introduction',
placeholder: 'Rédigez votre message d\'ouverture ici, vous pouvez utiliser des variables, essayez de taper {{variable}}.',
openingQuestion: 'Questions d\'ouverture',
noDataPlaceHolder:

+ 1
- 1
web/i18n/ja-JP/app-debug.ts View File

@@ -324,7 +324,7 @@ const translation = {
openingStatement: {
title: '会話開始',
add: '追加',
writeOpner: 'オープナーを書く',
writeOpener: 'オープナーを書く',
placeholder: 'ここにオープナーメッセージを書いてください。変数を使用できます。{{variable}} を入力してみてください。',
openingQuestion: '開始質問',
noDataPlaceHolder:

+ 1
- 1
web/i18n/pt-BR/app-debug.ts View File

@@ -327,7 +327,7 @@ const translation = {
openingStatement: {
title: 'Abertura da Conversa',
add: 'Adicionar',
writeOpner: 'Escrever abertura',
writeOpener: 'Escrever abertura',
placeholder: 'Escreva sua mensagem de abertura aqui, você pode usar variáveis, tente digitar {{variável}}.',
openingQuestion: 'Perguntas de Abertura',
noDataPlaceHolder:

+ 1
- 1
web/i18n/uk-UA/app-debug.ts View File

@@ -321,7 +321,7 @@ const translation = {
openingStatement: {
title: 'Вступ до розмови', // Conversation Opener
add: 'Додати', // Add
writeOpner: 'Напишіть вступне повідомлення', // Write opener
writeOpener: 'Напишіть вступне повідомлення', // Write opener
placeholder: 'Напишіть тут своє вступне повідомлення, ви можете використовувати змінні, спробуйте ввести {{variable}}.', // Write your opener message here...
openingQuestion: 'Відкриваючі питання', // Opening Questions
noDataPlaceHolder: 'Початок розмови з користувачем може допомогти ШІ встановити більш тісний зв’язок з ним у розмовних застосунках.', // ... conversational applications.

+ 1
- 1
web/i18n/vi-VN/app-debug.ts View File

@@ -327,7 +327,7 @@ const translation = {
openingStatement: {
title: 'Mở đầu Trò chuyện',
add: 'Thêm',
writeOpner: 'Viết câu mở đầu',
writeOpener: 'Viết câu mở đầu',
placeholder: 'Viết thông điệp mở đầu của bạn ở đây, bạn có thể sử dụng biến, hãy thử nhập {{biến}}.',
openingQuestion: 'Câu Hỏi Mở đầu',
noDataPlaceHolder:

+ 1
- 1
web/i18n/zh-Hans/app-debug.ts View File

@@ -323,7 +323,7 @@ const translation = {
openingStatement: {
title: '对话开场白',
add: '添加开场白',
writeOpner: '编写开场白',
writeOpener: '编写开场白',
placeholder: '在这里写下你的开场白,你可以使用变量,尝试输入 {{variable}}。',
openingQuestion: '开场问题',
noDataPlaceHolder:

+ 1
- 1
web/i18n/zh-Hant/app-debug.ts View File

@@ -323,7 +323,7 @@ const translation = {
openingStatement: {
title: '對話開場白',
add: '新增開場白',
writeOpner: '編寫開場白',
writeOpener: '編寫開場白',
placeholder: '在這裡寫下你的開場白,你可以使用變數,嘗試輸入 {{variable}}。',
openingQuestion: '開場問題',
noDataPlaceHolder:

Loading…
Cancel
Save