Skip to content

Commit d1b239c

Browse files
committed
update text
1 parent 377f85f commit d1b239c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"remixUiTabs.tooltipText3": "Select .sol or .yul file to compile OR a .ts or .js file to run",
55
"remixUiTabs.tooltipText4": "To explain a contract, choose a .sol file",
66
"remixUiTabs.tooltipText5": "Explain the contract(s) in current file [BETA]",
7-
"remixUiTabs.tooltipText6": "Enable Remix AI Copilot [BETA]",
8-
"remixUiTabs.tooltipText7": "Disable Remix AI Copilot [BETA]",
7+
"remixUiTabs.tooltipText6": "Enable RemixAI Copilot [BETA]",
8+
"remixUiTabs.tooltipText7": "Disable RemixAI Copilot [BETA]",
99
"remixUiTabs.tooltipText8": "Remix AI Tools Documentation",
10-
"remixUiTabs.tooltipTextDisabledCopilot": "To use Remix AI Copilot, choose a .sol file",
10+
"remixUiTabs.tooltipTextDisabledCopilot": "To use RemixAI Copilot, choose a .sol file",
1111
"remixUiTabs.zoomOut": "Zoom out",
1212
"remixUiTabs.zoomIn": "Zoom in"
1313
}

libs/remix-ui/statusbar/src/lib/components/aiStatus.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ export default function AIStatus(props: AIStatusProps) {
3131
}, [props.plugin.isAiActive, props.plugin.isAiActive])
3232
return (
3333
<CustomTooltip
34-
tooltipText={copilotActive ? "Remix Copilot enabled" : "Remix Copilot disabled. To enable, open a .sol file and toggle the switch at the left-top of the editor"}
34+
tooltipText={copilotActive ? "RemixAI Copilot enabled" : "RemixAI Copilot disabled. To enable, open a .sol file and toggle the switch at the left-top of the editor"}
3535
>
3636
<div className="d-flex flex-row pr-2 text-white justify-content-center align-items-center">
3737
<span className={copilotActive === false ? "small mx-1 text-white semi-bold" : "small mx-1 text-white semi-bold" }>
38-
{copilotActive === false ? 'Remix Copilot (disabled)' : 'Remix Copilot (enabled)'}
38+
{copilotActive === false ? 'RemixAI Copilot (disabled)' : 'RemixAI Copilot (enabled)'}
3939
</span>
4040
</div>
4141
</CustomTooltip>

0 commit comments

Comments
 (0)