Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion webview-ui/src/components/chat/MultipleChoiceForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Button } from "@/components/ui"
import { cn } from "@/lib/utils"
import { useAppTranslation } from "@src/i18n/TranslationContext"
import type { MultipleChoiceData, MultipleChoiceResponse } from "@roo-code/types"
import { Trans } from "react-i18next"

interface MultipleChoiceFormProps {
data: MultipleChoiceData
Expand Down Expand Up @@ -261,7 +262,10 @@ export const MultipleChoiceForm = ({ data, onSubmit, isAnswered = false }: Multi
{/* Hint text */}
{!submitted && (
<div className="text-[10px] text-vscode-descriptionForeground leading-snug opacity-75">
{t("chat:multipleChoice.skipHint")}
<Trans
i18nKey="chat:multipleChoice.skipHint"
components={{ code: <span style={{ color: "#E64545" }}></span> }}
/>
</div>
)}
</div>
Expand Down
2 changes: 1 addition & 1 deletion webview-ui/src/i18n/costrict-i18n/locales/en/chat.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
"headerTitle": "CoStrict has the following questions for you:",
"userSkipped": "Skipped",
"userConfirmed": "Confirmed",
"skipHint": "If none of the options meet your needs, you can click \"Skip\" or type your requirements in the input box below",
"skipHint": "If none of the options meet your needs, <code>you can directly describe your requirements in the input box below</code>; <code>click \"Skip\" to skip this questionnaire</code>",
"loading": "Preparing questions..."
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webview-ui/src/i18n/locales/en/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@
"capabilities": "Configure the capabilities and pricing for your custom OpenAI-compatible model. Be careful when specifying the model capabilities, as they can affect how Roo Code performs.",
"maxTokens": {
"label": "Max Output Tokens",
"description": "Maximum number of tokens the model can generate in a response. (Specify -1 to allow the server to set the max tokens.)"
"description": "Maximum number of tokens the model can generate in a response."
},
"contextWindow": {
"label": "Context Window Size",
Expand Down
2 changes: 1 addition & 1 deletion webview-ui/src/i18n/locales/zh-CN/settings.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webview-ui/src/i18n/locales/zh-TW/settings.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.