Skip to content

Commit

Permalink
circle
Browse files Browse the repository at this point in the history
  • Loading branch information
nmsderp authored Feb 5, 2024
1 parent a5e5307 commit ed4d3dc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/playground/render-interface.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ const Footer = () => (
<div className={styles.footerText}>
<FormattedMessage
// eslint-disable-next-line max-len
defaultMessage="PenguinMod, Snail IDE, and TurboWarp are not affiliated with Scratch, the Scratch Team, or the Scratch Foundation."
description="Disclaimer that PenguinMod, Snail IDE, and TurboWarp are not connected to Scratch"
defaultMessage="PenguinMod, Snail IDE, Circle IDE, and TurboWarp are not affiliated with Scratch, the Scratch Team, or the Scratch Foundation."
description="Disclaimer that PenguinMod, Snail IDE, Circle IDE, and TurboWarp are not connected to Scratch"
id="tw.footer.disclaimer"
/>
</div>
Expand Down Expand Up @@ -244,9 +244,9 @@ class Interface extends React.Component {
}
handleUpdateProjectTitle(title, isDefault) {
if (isDefault || !title) {
document.title = `Snail IDE - ${this.props.intl.formatMessage(messages.defaultTitle)}`;
document.title = `Circle IDE - ${this.props.intl.formatMessage(messages.defaultTitle)}`;
} else {
document.title = `${title} - Snail IDE`;
document.title = `${title} - Circle IDE`;
}
}
render() {
Expand Down Expand Up @@ -303,7 +303,7 @@ class Interface extends React.Component {
{isHomepage ? (
<React.Fragment>
<div className={styles.remixWarningBox}>
<p>If you would like your extension removed/added to Snail IDE, please contact us in some way.</p>
<p>If you would like your extension removed/added to Circle IDE, please contact us in some way.</p>
</div>
{/* project not approved message */}
{(window.LastFetchedProject) != null && (window.LastFetchedProject.accepted == false) ? (
Expand Down Expand Up @@ -375,7 +375,7 @@ class Interface extends React.Component {
<p>
<FormattedMessage
// eslint-disable-next-line max-len
defaultMessage="Snail IDE is a mod of Penguinmod to add new blocks and features either in extensions or in Snail IDE's main toolbox. PenguinMod is a Scratch mod that compiles projects to JavaScript to make them run really fast. Try it out by choosing an uploaded project below or making your own in the editor."
defaultMessage="Circle IDE is a mod of Snail IDE to add new blocks and features either in extensions or in Circle IDE's main toolbox. Snail IDE is a mod of PenguinMod to expand on the toolset even more."
description="Description of PenguinMod and TurboWarp"
id="tw.home.description"
/>
Expand Down Expand Up @@ -441,4 +441,4 @@ const WrappedInterface = compose(
TWPackagerIntegrationHOC
)(ConnectedInterface);

export default WrappedInterface;
export default WrappedInterface;

1 comment on commit ed4d3dc

@Rubiidev-18
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 was too lazy to change branding.

Please sign in to comment.