fix: missing translation (#206)
for translators: need translate `Save & Submit` and `Cancel`
This commit is contained in:
		
							parent
							
								
									0e393b0bec
								
							
						
					
					
						commit
						bf8830e1a5
					
				|  | @ -114,7 +114,7 @@ export const ChatMessage: FC<Props> = ({ | ||||||
|                       onClick={handleEditMessage} |                       onClick={handleEditMessage} | ||||||
|                       disabled={messageContent.trim().length <= 0} |                       disabled={messageContent.trim().length <= 0} | ||||||
|                     > |                     > | ||||||
|                       Save & Submit |                       {t('Save & Submit')} | ||||||
|                     </button> |                     </button> | ||||||
|                     <button |                     <button | ||||||
|                       className="h-[40px] rounded-md border border-neutral-300 px-4 py-1 text-sm font-medium text-neutral-700 hover:bg-neutral-100 dark:border-neutral-700 dark:text-neutral-300 dark:hover:bg-neutral-800" |                       className="h-[40px] rounded-md border border-neutral-300 px-4 py-1 text-sm font-medium text-neutral-700 hover:bg-neutral-100 dark:border-neutral-700 dark:text-neutral-300 dark:hover:bg-neutral-800" | ||||||
|  | @ -123,7 +123,7 @@ export const ChatMessage: FC<Props> = ({ | ||||||
|                         setIsEditing(false); |                         setIsEditing(false); | ||||||
|                       }} |                       }} | ||||||
|                     > |                     > | ||||||
|                       Cancel |                       {t('Cancel')} | ||||||
|                     </button> |                     </button> | ||||||
|                   </div> |                   </div> | ||||||
|                 </div> |                 </div> | ||||||
|  |  | ||||||
|  | @ -16,6 +16,8 @@ | ||||||
|   "Error fetching models.": "Ошибка при получении списка моделей", |   "Error fetching models.": "Ошибка при получении списка моделей", | ||||||
|   "AI": "Бот", |   "AI": "Бот", | ||||||
|   "You": "Вы", |   "You": "Вы", | ||||||
|  |   "Cancel": "Отмена", | ||||||
|  |   "Save & Submit": "Сохранить и отправить", | ||||||
|   "Make sure your OpenAI API key is set in the bottom left of the sidebar.": "Убедитесь, что вы ввели API-ключ OpenAI.", |   "Make sure your OpenAI API key is set in the bottom left of the sidebar.": "Убедитесь, что вы ввели API-ключ OpenAI.", | ||||||
|   "If you completed this step, OpenAI may be experiencing issues.": "Если вы выполнили этот шаг, то возможно OpenAI может испытывать проблемы", |   "If you completed this step, OpenAI may be experiencing issues.": "Если вы выполнили этот шаг, то возможно OpenAI может испытывать проблемы", | ||||||
|   "Message limit is {{maxLength}} characters. You have entered {{valueLength}} characters.": "Лимит сообщения: {{maxLength}} символов. Вы ввели {{valueLength}} символов.", |   "Message limit is {{maxLength}} characters. You have entered {{valueLength}} characters.": "Лимит сообщения: {{maxLength}} символов. Вы ввели {{valueLength}} символов.", | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue