Skip to content

Commit 58fd31f

Browse files
authored
Merge pull request #500 from appwrite/fix-sentence-case
Change everything to sentence case
2 parents 9ba663e + d555195 commit 58fd31f

File tree

69 files changed

+116
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+116
-116
lines changed

src/lib/components/eventModal.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
</script>
247247

248248
<Modal bind:show onSubmit={create} size="big">
249-
<svelte:fragment slot="header">Create Event</svelte:fragment>
249+
<svelte:fragment slot="header">Create event</svelte:fragment>
250250
<slot />
251251
<div>
252252
<p class="u-text">Choose a service</p>

src/lib/pages/domains/delete.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
icon="exclamation"
3939
state="warning"
4040
headerDivider={false}>
41-
<svelte:fragment slot="header">Delete Domain</svelte:fragment>
41+
<svelte:fragment slot="header">Delete domain</svelte:fragment>
4242
{#if selectedDomain}
4343
<p data-private>
4444
Are you sure you want to delete <b>{selectedDomain.domain}</b>? You will no longer be

src/routes/console/account/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
</Form>
156156
<CardGrid danger>
157157
<div>
158-
<Heading tag="h6" size="7">Delete Account</Heading>
158+
<Heading tag="h6" size="7">Delete account</Heading>
159159
</div>
160160
<p>
161161
Your account will be permanently deleted and access will be lost to any of your teams

src/routes/console/account/delete.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
icon="exclamation"
3636
state="warning"
3737
headerDivider={false}>
38-
<svelte:fragment slot="header">Delete Account</svelte:fragment>
38+
<svelte:fragment slot="header">Delete account</svelte:fragment>
3939
<p>Are you sure you want to delete your account?</p>
4040
<svelte:fragment slot="footer">
4141
<Button text on:click={() => (showDelete = false)}>Cancel</Button>

src/routes/console/createOrganization.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</script>
4444

4545
<Modal {error} onSubmit={create} size="big" bind:show>
46-
<svelte:fragment slot="header">Create New Organization</svelte:fragment>
46+
<svelte:fragment slot="header">Create new organization</svelte:fragment>
4747
<FormList>
4848
<InputText
4949
id="organization-name"

src/routes/console/organization-[organization]/createProject.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</script>
4646

4747
<Modal {error} onSubmit={create} size="big" bind:show>
48-
<svelte:fragment slot="header">Create Project</svelte:fragment>
48+
<svelte:fragment slot="header">Create project</svelte:fragment>
4949
<FormList>
5050
<InputText id="name" label="Name" bind:value={name} required autofocus={true} />
5151
{#if !showCustomId}

src/routes/console/organization-[organization]/deleteMember.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
state="warning"
5151
headerDivider={false}>
5252
<svelte:fragment slot="header">
53-
{isUser ? 'Leave Organization' : 'Delete Member'}
53+
{isUser ? 'Leave organization' : 'Delete member'}
5454
</svelte:fragment>
5555
<p data-private>
5656
{isUser

src/routes/console/organization-[organization]/deleteOrganization.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
icon="exclamation"
4343
state="warning"
4444
headerDivider={false}>
45-
<svelte:fragment slot="header">Delete Organization</svelte:fragment>
45+
<svelte:fragment slot="header">Delete organization</svelte:fragment>
4646
<p>
4747
Are you sure you want to delete <b>{$organization.name}</b>? All projects ({$organization.total})
4848
and data associated with this organization will be deleted. This action is irreversible.

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

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

6565
<CardGrid danger>
6666
<div>
67-
<Heading tag="h6" size="7">Delete Organization</Heading>
67+
<Heading tag="h6" size="7">Delete organization</Heading>
6868
</div>
6969
<p>
7070
The organization will be permanently deleted, including all projects and data

src/routes/console/project-[project]/auth/createTeam.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</script>
4343

4444
<Modal {error} size="big" bind:show={showCreate} onSubmit={create}>
45-
<svelte:fragment slot="header">Create Team</svelte:fragment>
45+
<svelte:fragment slot="header">Create team</svelte:fragment>
4646
<FormList>
4747
<InputText
4848
id="name"

0 commit comments

Comments
 (0)