Skip to content

Commit 49d039e

Browse files
Merge pull request #619 from appwrite/fix-templates-wizard-name
Update incorrect copy on Branch step of the template wizard
2 parents 8f7012d + a8eff05 commit 49d039e

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

src/lib/wizards/functions/steps/gitConfiguration.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
</script>
2727

2828
<WizardStep>
29-
<svelte:fragment slot="title">Git</svelte:fragment>
29+
<svelte:fragment slot="title">Branch</svelte:fragment>
3030
<svelte:fragment slot="subtitle">
31-
Configure the Git repository that will trigger your function deployments when updated.
31+
Choose the Git branch that will trigger your function deployments when updated.
3232
</svelte:fragment>
3333

3434
<Box radius="small">

src/routes/auth/magic-url/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
});
2323
</script>
2424

25-
<Heading tag="h1" size="1">Missing Redirect URL</Heading>
25+
<Heading tag="h1" size="1">Missing redirect URL</Heading>
2626
<p>
2727
Your Magic URL login flow is missing a proper redirect URL. Please check the
2828
<a href="https://appwrite.io/docs/references/cloud/client-web/account#createMagicURLSession"

src/routes/auth/oauth2/failure/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
{:catch}
3434
<article class="card u-padding-16">
3535
<div class="u-flex u-flex-vertical u-gap-16">
36-
<Heading tag="h1" size="4">Missing Redirect URL</Heading>
36+
<Heading tag="h1" size="4">Missing redirect URL</Heading>
3737
<p class="text">
3838
Your OAuth login flow is missing a proper redirect URL. Please check the
3939
<a

src/routes/auth/oauth2/success/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
{:catch}
3434
<article class="card u-padding-16">
3535
<div class="u-flex u-flex-vertical u-gap-16">
36-
<Heading tag="h1" size="4">Missing Redirect URL</Heading>
36+
<Heading tag="h1" size="4">Missing redirect URL</Heading>
3737
<p class="text">
3838
Your OAuth login flow is missing a proper redirect URL. Please check the
3939
<a

src/routes/console/project-[project]/auth/settings/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
{#if $authMethods && $OAuthProviders}
4848
<Container>
4949
<CardGrid>
50-
<Heading tag="h2" size="7">Auth Methods</Heading>
50+
<Heading tag="h2" size="7">Auth methods</Heading>
5151
<p>Enable the authentication methods you wish to use.</p>
5252
<svelte:fragment slot="aside">
5353
<form class="form">

src/routes/console/project-[project]/auth/teams/team-[team]/updatePrefs.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
<Form onSubmit={updatePrefs}>
5858
<CardGrid>
59-
<Heading tag="h6" size="7">Team Preferences</Heading>
59+
<Heading tag="h6" size="7">Team preferences</Heading>
6060
<p>
6161
You can update your team's preferences by storing shared information on the teams's
6262
objects so they can easily be shared across members.

src/routes/console/project-[project]/functions/function-[function]/settings/updatePermissions.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
<Form onSubmit={updatePermissions}>
6767
<CardGrid>
68-
<Heading tag="h6" size="7" id="permissions">Execute Access</Heading>
68+
<Heading tag="h6" size="7" id="permissions">Execute access</Heading>
6969
<p>
7070
Choose who can execute this function using the client API. Learn more about <a
7171
href="https://appwrite.io/docs/advanced/platform/permissions"

src/routes/console/project-[project]/overview/keys/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</script>
2525

2626
<div class="common-section u-flex u-gap-12">
27-
<Heading tag="h3" size="7">API Keys</Heading>
27+
<Heading tag="h3" size="7">API keys</Heading>
2828
<span class="u-margin-inline-start-auto">
2929
<Button on:click={createApiKey}>
3030
<span class="icon-plus" aria-hidden="true" />

src/routes/console/project-[project]/overview/keys/[key]/updateExpirationDate.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
<Form onSubmit={updateExpire}>
4747
<CardGrid>
48-
<Heading tag="h6" size="7">Expiration Date</Heading>
48+
<Heading tag="h6" size="7">Expiration date</Heading>
4949
<p class="text">Set a date after which your API key will expire.</p>
5050
<svelte:fragment slot="aside">
5151
{#if isExpired}

src/routes/console/project-[project]/overview/platforms/[platform]/android.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
<Form onSubmit={updateHostname}>
4848
<CardGrid>
49-
<Heading tag="h6" size="7">Package Name</Heading>
49+
<Heading tag="h6" size="7">Package name</Heading>
5050
<p class="text">
5151
Your package name is generally the applicationId in your app-level build.gradle file.
5252
</p>

0 commit comments

Comments
 (0)