Skip to content

Commit 3706741

Browse files
authored
RI-6967: change free to free trial wherever found
1 parent d97025c commit 3706741

File tree

8 files changed

+22
-21
lines changed

8 files changed

+22
-21
lines changed

l10n/bundle.l10n.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@
3939
"Structured querying and full-text search": "Structured querying and full-text search",
4040
"Native support for JSON": "Native support for JSON",
4141
"Scalable and fully managed": "Scalable and fully managed",
42-
"Free database to get started immediately": "Free database to get started immediately",
42+
"Free trial database to get started immediately": "Free trial database to get started immediately",
4343
"Cloud": "Cloud",
4444
"Get started with": "Get started with",
45-
"Free Cloud database": "Free Cloud database",
45+
"Free Trial Cloud database": "Free Trial Cloud database",
4646
"Get your": "Get your",
4747
"The database will be created automatically and can be changed from Redis Cloud.": "The database will be created automatically and can be changed from Redis Cloud.",
4848
"Create": "Create",
4949
"Includes native support for JSON, Query and Search and more.": "Includes native support for JSON, Query and Search and more.",
50-
"Get free Redis Cloud database": "Get free Redis Cloud database",
51-
"Create free Redis Cloud database": "Create free Redis Cloud database",
50+
"Get free trial Redis Cloud database": "Get free trial Redis Cloud database",
51+
"Create free trial Redis Cloud database": "Create free trial Redis Cloud database",
5252
"Try Redis Cloud database: your ultimate Redis starting point": "Try Redis Cloud database: your ultimate Redis starting point",
5353
"key(s)": "key(s)",
5454
"({0}{1} Scanned)": "({0}{1} Scanned)",
@@ -288,8 +288,8 @@
288288
"This may take several seconds, but it is totally worth it!": "This may take several seconds, but it is totally worth it!",
289289
"Processing Cloud API keys…": "Processing Cloud API keys…",
290290
"Processing Cloud subscriptions…": "Processing Cloud subscriptions…",
291-
"Creating a free Cloud database…": "Creating a free Cloud database…",
292-
"Importing a free Cloud database…": "Importing a free Cloud database…",
291+
"Creating a free trial Cloud database…": "Creating a free trial Cloud database…",
292+
"Importing a free trial Cloud database…": "Importing a free trial Cloud database…",
293293
"This may take several minutes, but it is totally worth it!": "This may take several minutes, but it is totally worth it!",
294294
"You can now use your Redis Stack database in Redis Cloud": "You can now use your Redis Stack database in Redis Cloud",
295295
" with pre-loaded sample data": " with pre-loaded sample data",
@@ -299,8 +299,8 @@
299299
"You already have a free Redis Cloud subscription.": "You already have a free Redis Cloud subscription.",
300300
"Do you want to import your existing database into Redis Insight?": "Do you want to import your existing database into Redis Insight?",
301301
"Import": "Import",
302-
"Your subscription does not have a free Redis Cloud database.": "Your subscription does not have a free Redis Cloud database.",
303-
"Do you want to create a free database in your existing subscription?": "Do you want to create a free database in your existing subscription?",
302+
"Your subscription does not have a free trial Redis Cloud database.": "Your subscription does not have a free trial Redis Cloud database.",
303+
"Do you want to create a free trial database in your existing subscription?": "Do you want to create a free trial database in your existing subscription?",
304304
"Keys are the foundation of Redis.": "Keys are the foundation of Redis.",
305305
"Add key": "Add key",
306306
"No results found.": "No results found.",
@@ -365,9 +365,9 @@
365365
"Release Notes": "Release Notes",
366366
"Redis for VS Code extension updated to {0}.": "Redis for VS Code extension updated to {0}.",
367367
"Choose a cloud vendor": "Choose a cloud vendor",
368-
"Select a cloud vendor and region to complete the final step towards your free Redis database.": "Select a cloud vendor and region to complete the final step towards your free Redis database.",
368+
"Select a cloud vendor and region to complete the final step towards your free trial Redis database.": "Select a cloud vendor and region to complete the final step towards your free trial Redis database.",
369369
"No credit card is required.": "No credit card is required.",
370370
"Region": "Region",
371371
"No regions available, try another vendor.": "No regions available, try another vendor.",
372372
"Create database": "Create database"
373-
}
373+
}

src/webviews/src/components/notifications/infinite-messages/InfiniteMessages.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export const INFINITE_MESSAGES = {
5252
<span className="text-[15px]">
5353
{ (step === CloudJobStep.Credentials || !step) && l10n.t('Processing Cloud API keys…')}
5454
{ step === CloudJobStep.Subscription && l10n.t('Processing Cloud subscriptions…')}
55-
{ step === CloudJobStep.Database && l10n.t('Creating a free Cloud database…')}
56-
{ step === CloudJobStep.Import && l10n.t('Importing a free Cloud database…')}
55+
{ step === CloudJobStep.Database && l10n.t('Creating a free trial Cloud database…')}
56+
{ step === CloudJobStep.Import && l10n.t('Importing a free trial Cloud database…')}
5757
</span>
5858
<Spacer size="m" />
5959
<div>
@@ -158,10 +158,10 @@ export const INFINITE_MESSAGES = {
158158
>
159159
<Spinner type="clip" size="20px" className="min-w-5" />
160160
<div className="ml-2">
161-
<div className="text-[15px]">{l10n.t('Your subscription does not have a free Redis Cloud database.')}</div>
161+
<div className="text-[15px]">{l10n.t('Your subscription does not have a free trial Redis Cloud database.')}</div>
162162
<Spacer size="s" />
163163
<div>
164-
{l10n.t('Do you want to create a free database in your existing subscription?')}
164+
{l10n.t('Do you want to create a free trial database in your existing subscription?')}
165165
</div>
166166
<Spacer size="m" />
167167
<div className="flex justify-between">

src/webviews/src/modules/oauth/oauth-create-free-db/OAuthCreateFreeDb.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ const OAuthCreateFreeDb = ({ source, compressed }: Props) => {
4545

4646
const description = !compressed
4747
? l10n.t('Includes native support for JSON, Query and Search and more.')
48-
: l10n.t('Get free Redis Cloud database')
48+
: l10n.t('Get free trial Redis Cloud database')
4949

5050
return (
5151
<>
52-
{!compressed && <h2 className="pt-8 text-[16px]">{l10n.t('Create free Redis Cloud database')}</h2>}
52+
{!compressed && <h2 className="pt-8 text-[16px]">{l10n.t('Create free trial Redis Cloud database')}</h2>}
5353
<RiButton
5454
className={cx(styles.link, { [styles.compressed]: compressed })}
5555
onClick={handleClick}

src/webviews/src/modules/oauth/oauth-select-plan/OAuthSelectPlan.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ const OAuthSelectPlan = () => {
152152

153153
<div className={styles.subTitle}>
154154
{l10n.t(
155-
'Select a cloud vendor and region to complete the final step towards your free Redis database.',
155+
'Select a cloud vendor and region to complete the final step towards your free trial Redis database.',
156156
)}
157157
&nbsp;
158158
{l10n.t(

src/webviews/src/modules/oauth/oauth-sso/oauth-create-db/OAuthCreateDb.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const OAuthCreateDb = (props: Props) => {
9595
{(form: React.ReactNode) => (
9696
<>
9797
<div className={styles.subTitle}>{l10n.t('Get started with')}</div>
98-
<div className={styles.title}><h2>{l10n.t('Free Cloud database')}</h2></div>
98+
<div className={styles.title}><h2>{l10n.t('Free Trial Cloud database')}</h2></div>
9999
{form}
100100
<div>
101101
<OAuthRecommendedSettings value={isRecommended} onChange={handleChangeRecommendedSettings} />
@@ -107,7 +107,7 @@ const OAuthCreateDb = (props: Props) => {
107107
) : (
108108
<>
109109
<div className={styles.subTitle}>{l10n.t('Get your')}</div>
110-
<div className={styles.title}><h2>{l10n.t('Free Cloud database')}</h2></div>
110+
<div className={styles.title}><h2>{l10n.t('Free Trial Cloud database')}</h2></div>
111111
<Spacer size="xl" />
112112
<div >
113113
{l10n.t('The database will be created automatically and can be changed from Redis Cloud.')}

src/webviews/src/modules/oauth/oauth-sso/oauth-create-db/styles.module.scss

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
.title {
1616
@apply text-[28px] font-bold;
17+
text-align: center;
1718
}
1819
}
1920

src/webviews/src/modules/oauth/shared/oauth-advantages/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ export const OAUTH_ADVANTAGES_ITEMS = [
1111
title: l10n.t('Scalable and fully managed'),
1212
},
1313
{
14-
title: l10n.t('Free database to get started immediately'),
14+
title: l10n.t('Free trial database to get started immediately'),
1515
},
1616
]

src/webviews/src/utils/core/errors.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export const parseCustomError = (err: CustomError | string = DEFAULT_ERROR_MESSA
177177
title = 'Database already exists'
178178
message = (
179179
<>
180-
You already have a free Redis Cloud database running.
180+
You already have a free trial Redis Cloud database running.
181181
<Spacer size="s" />
182182
Check out your
183183
<a

0 commit comments

Comments
 (0)