Skip to content
Draft
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
2 changes: 1 addition & 1 deletion src/components/lint/lint-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export function LintView() {
<h2 className="text-sm font-semibold">{t("lint.title")}</h2>
{showResults && items.length > 0 && (
<span className="rounded-full bg-amber-500/20 px-2 py-0.5 text-xs font-medium text-amber-600 dark:text-amber-400">
{items.length === 1 ? t("lint.issues", { count: items.length }) : t("lint.issues_plural", { count: items.length })}
{t("lint.issues", { count: items.length })}
</span>
)}
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/settings/sections/interface-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ interface Props {
const UI_LANGUAGES = [
{ value: "en", label: "English" },
{ value: "zh", label: "中文" },
{ value: "ko", label: "한국어" },
]

const THEMES = [
Expand Down
18 changes: 9 additions & 9 deletions src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"research": {
"title": "Deep Research",
"notConfigured": "Deep Research sources are not configured. Go to Settings → External Information Sources to configure Web Search or AnyTXT.",
"activeBadge": "{{running}} active{{queued, plural, =0 {} other {, {{queued}} queued}}}",
"activeBadge": "{{running}} active, {{queued}} queued",
"inputPlaceholder": "Enter a research topic...",
"emptyTitle": "No research tasks yet",
"emptyHint": "Enter a topic above or click Deep Research in Review",
Expand Down Expand Up @@ -193,8 +193,8 @@
"deleteFileConfirm": "Click again to delete {{name}}",
"confirm": "Confirm",
"loadingMore": "Loading more sources...",
"sourceCount": "{{count}} source",
"sourceCount_plural": "{{count}} sources"
"sourceCount_one": "{{count}} source",
"sourceCount_other": "{{count}} sources"
},
"chat": {
"selectionEdit": {
Expand Down Expand Up @@ -294,8 +294,8 @@
"generatedOutputs": "Generated outputs",
"generatedOutput": "Output",
"openGeneratedOutputFolder": "Open output folder",
"generatedOutputCount": "{{count}} file",
"generatedOutputCount_plural": "{{count}} files",
"generatedOutputCount_one": "{{count}} file",
"generatedOutputCount_other": "{{count}} files",
"closeGeneratedOutputs": "Close generated outputs",
"closeGeneratedOutputPreview": "Close generated output preview",
"closeReferencePreview": "Close reference preview",
Expand Down Expand Up @@ -381,8 +381,8 @@
"no-outlinks": "No Outbound Links",
"semantic": "Semantic Issue"
},
"issues": "{{count}} issue",
"issues_plural": "{{count}} issues"
"issues_one": "{{count}} issue",
"issues_other": "{{count}} issues"
},
"review": {
"title": "Review",
Expand Down Expand Up @@ -677,8 +677,8 @@
"customSerpApiHint": "Custom engine will be sent as the SerpApi `engine` parameter.",
"testProvider": "Test search",
"testRunning": "Testing...",
"testSuccess": "Search test succeeded ({{count}} result).",
"testSuccess_plural": "Search test succeeded ({{count}} results).",
"testSuccess_one": "Search test succeeded ({{count}} result).",
"testSuccess_other": "Search test succeeded ({{count}} results).",
"testNoResults": "Connection worked, but this test query returned no results.",
"testFailed": "Search test failed: {{message}}",
"firecrawlIpBlocked": "Firecrawl anonymous search is blocked for this IP. Choose another Web Search provider or try a different network.",
Expand Down
Loading