Skip to content

Commit aecb6b2

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/openai-compatible-responses-api
2 parents 48d1a61 + f14e6ac commit aecb6b2

File tree

19 files changed

+65
-41
lines changed

19 files changed

+65
-41
lines changed

webview-ui/src/components/modes/ModesView.tsx

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -601,10 +601,12 @@ const ModesView = ({ onDone }: ModesViewProps) => {
601601
<Trans i18nKey="prompts:modes.createModeHelpText">
602602
<VSCodeLink
603603
href={buildDocLink("basic-usage/using-modes", "prompts_view_modes")}
604-
style={{ display: "inline" }}></VSCodeLink>
604+
style={{ display: "inline" }}
605+
aria-label="Learn about using modes"></VSCodeLink>
605606
<VSCodeLink
606607
href={buildDocLink("features/custom-modes", "prompts_view_modes")}
607-
style={{ display: "inline" }}></VSCodeLink>
608+
style={{ display: "inline" }}
609+
aria-label="Learn about customizing modes"></VSCodeLink>
608610
</Trans>
609611
</div>
610612

@@ -1166,6 +1168,16 @@ const ModesView = ({ onDone }: ModesViewProps) => {
11661168
}}
11671169
/>
11681170
),
1171+
"0": (
1172+
<VSCodeLink
1173+
href={buildDocLink(
1174+
"features/custom-instructions#global-rules-directory",
1175+
"prompts_mode_specific_global_rules",
1176+
)}
1177+
style={{ display: "inline" }}
1178+
aria-label="Learn about global custom instructions for modes"
1179+
/>
1180+
),
11691181
}}
11701182
/>
11711183
</div>
@@ -1291,7 +1303,8 @@ const ModesView = ({ onDone }: ModesViewProps) => {
12911303
"features/footgun-prompting",
12921304
"prompts_advanced_system_prompt",
12931305
)}
1294-
style={{ display: "inline" }}></VSCodeLink>
1306+
style={{ display: "inline" }}
1307+
aria-label="Read important information about overriding system prompts"></VSCodeLink>
12951308
),
12961309
"2": <strong />,
12971310
}}
@@ -1310,10 +1323,11 @@ const ModesView = ({ onDone }: ModesViewProps) => {
13101323
<Trans i18nKey="prompts:globalCustomInstructions.description">
13111324
<VSCodeLink
13121325
href={buildDocLink(
1313-
"features/custom-instructions#global-custom-instructions",
1326+
"features/custom-instructions#setting-up-global-rules",
13141327
"prompts_global_custom_instructions",
13151328
)}
1316-
style={{ display: "inline" }}></VSCodeLink>
1329+
style={{ display: "inline" }}
1330+
aria-label="Learn more about global custom instructions"></VSCodeLink>
13171331
</Trans>
13181332
</div>
13191333
<VSCodeTextArea
@@ -1352,6 +1366,16 @@ const ModesView = ({ onDone }: ModesViewProps) => {
13521366
}
13531367
/>
13541368
),
1369+
"0": (
1370+
<VSCodeLink
1371+
href={buildDocLink(
1372+
"features/custom-instructions#setting-up-global-rules",
1373+
"prompts_global_rules",
1374+
)}
1375+
style={{ display: "inline" }}
1376+
aria-label="Learn about setting up global custom instructions"
1377+
/>
1378+
),
13551379
}}
13561380
/>
13571381
</div>

webview-ui/src/i18n/locales/ca/prompts.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/de/prompts.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/en/prompts.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"title": "Mode-specific Custom Instructions (optional)",
5151
"resetToDefault": "Reset to default",
5252
"description": "Add behavioral guidelines specific to {{modeName}} mode.",
53-
"loadFromFile": "Custom instructions specific to {{mode}} mode can also be loaded from the <span>.roo/rules-{{slug}}/</span> folder in your workspace (.roorules-{{slug}} and .clinerules-{{slug}} are deprecated and will stop working soon)."
53+
"loadFromFile": "Custom instructions specific to {{mode}} mode can also be loaded from the <span>.roo/rules-{{slug}}/</span> folder in your workspace or from the global <0>.roo/rules-{{slug}}/</0> (.roorules-{{slug}} and .clinerules-{{slug}} are deprecated and will stop working soon)."
5454
},
5555
"exportMode": {
5656
"title": "Export Mode",
@@ -76,7 +76,7 @@
7676
"globalCustomInstructions": {
7777
"title": "Custom Instructions for All Modes",
7878
"description": "These instructions apply to all modes. They provide a base set of behaviors that can be enhanced by mode-specific instructions below. <0>Learn more</0>",
79-
"loadFromFile": "Instructions can also be loaded from the <span>.roo/rules/</span> folder in your workspace (.roorules and .clinerules are deprecated and will stop working soon)."
79+
"loadFromFile": "Instructions can also be loaded from the <span>.roo/rules/</span> folder in your workspace or from the global <0>.roo/rules/</0> (.roorules and .clinerules are deprecated and will stop working soon)."
8080
},
8181
"systemPrompt": {
8282
"preview": "Preview System Prompt",

webview-ui/src/i18n/locales/es/prompts.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/fr/prompts.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/hi/prompts.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/id/prompts.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/it/prompts.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/ja/prompts.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)