Skip to content

Commit e9eedf2

Browse files
committed
RemixAi link
1 parent 3cb087a commit e9eedf2

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

apps/remix-ide/src/app/tabs/locales/en/remixApp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"remixApp.enterText4": "Prototyping - trying out concepts and techniques",
99
"remixApp.enterText5": "Developing projects - Remix as your main dev tool",
1010
"remixApp.enterText6": "Production - only deployments",
11-
"remixApp.matomoText1": "Remix features an AI coding assistant called RemixAI, that needs your approval to use.",
11+
"remixApp.matomoText1": "Remix features an AI coding assistant called <a>RemixAI</a>, that needs your approval to use.",
1212
"remixApp.matomoText2": "We also use <a>Matomo</a>, an open-source analytics platform, that helps us improve your experience.",
1313
"remixApp.matomoTitle": "AI and Analytics Preferences",
1414
"remixApp.accept": "Accept",

libs/remix-ui/app/src/lib/remix-app/components/modals/matomo.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,16 @@ const MatomoDialog = (props: MatomoDialogProps) => {
2626
return (
2727
<>
2828
<p>
29-
<FormattedMessage id="remixApp.matomoText1" /><br/>
29+
<FormattedMessage
30+
id="remixApp.matomoText1"
31+
values={{
32+
a: (chunks) => (
33+
<a href="https://remix-ide.readthedocs.io/en/latest/ai.html" target="_blank" rel="noreferrer">
34+
{chunks}
35+
</a>
36+
),
37+
}}
38+
/><br/>
3039
<FormattedMessage
3140
id="remixApp.matomoText2"
3241
values={{

0 commit comments

Comments
 (0)