Skip to content

Commit 13b123a

Browse files
author
Vincent (Wen Yu) Ge
committed
Fix quote type, fix grammar, link to docs
1 parent e79e9b2 commit 13b123a

File tree

11 files changed

+33
-24
lines changed

11 files changed

+33
-24
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We would ❤️ for you to contribute to Appwrite and help make it better! We wa
44

55
## How to Start?
66

7-
If you are worried about or dont know where to start, check out the next section that explains what kind of help is needed and how you can get involved. You can reach out with any questions on our [Discord](https://appwrite.io/discord) server. You can also submit an issue and a maintainer can guide you!
7+
If you are worried about or don't know where to start, check out the next section that explains what kind of help is needed and how you can get involved. You can reach out with any questions on our [Discord](https://appwrite.io/discord) server. You can also submit an issue and a maintainer can guide you!
88

99
## Repo Structure
1010

@@ -242,7 +242,7 @@ When blogging, speaking about, or creating tutorials about one of Appwrite's man
242242

243243
### Presenting at Meetups
244244

245-
Presenting at meetups and conferences about your Appwrite projects is another excellent way to get the word out about Appwrite. Your unique challenges and successes in building things with Appwrite can provide great speaking material. Wed love to review your talk abstract/CFP, so get in touch with us if youd like some help!
245+
Presenting at meetups and conferences about your Appwrite projects is another excellent way to get the word out about Appwrite. Your unique challenges and successes in building things with Appwrite can provide great speaking material. We'd love to review your talk abstract/CFP, so get in touch with us if you'd like some help!
246246

247247
### Sending Feedback & Reporting Bugs
248248

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Console 2.0 is designed to be accessible, from design to code. Console 2.0 is al
3131

3232
### Scalability and Collaboration
3333

34-
The new console is more maintainable and welcoming to community contributions. Console 2.0 is built using Svelte instead of our own library. Its better documented and well-known, making it easier for developers to contribute to Appwrite.
34+
The new console is more maintainable and welcoming to community contributions. Console 2.0 is built using Svelte instead of our own library. It's better documented and well-known, making it easier for developers to contribute to Appwrite.
3535

3636
## Contributing
3737

src/routes/console/(migration-wizard)/step2.svelte

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@
99
<WizardStep>
1010
<svelte:fragment slot="title">Select resources</svelte:fragment>
1111
<svelte:fragment slot="subtitle">
12-
Select the resources you need to migrate to Appwrite. Some resources can be migrated, but with limitations. <a
12+
Select the resources you need to migrate to Appwrite. Some resources can be migrated, but
13+
with limitations. <a
1314
class="link"
1415
href="https://appwrite.io/docs/migrations"
1516
target="_blank"
1617
rel="noopener noreferrer">
1718
Learn about which resources are supported</a
18-
>.
19+
>.
1920
</svelte:fragment>
2021
<ResourceForm {provider} {formData} projectSdk={getSdkForProject($selectedProject)} />
2122
</WizardStep>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
{:else if data.search}
8080
<EmptySearch>
8181
<div class="u-text-center">
82-
<b>Sorry, we couldnt find ‘{data.search}</b>
82+
<b>Sorry, we couldn't find ‘{data.search}'</b>
8383
<p>There are no teams that match your search.</p>
8484
</div>
8585
<Button secondary href={`/console/project-${$page.params.project}/auth/teams`}>

src/routes/console/project-[project]/auth/teams/team-[team]/members/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
{:else if data.search}
9696
<EmptySearch>
9797
<div class="u-text-center">
98-
<b>Sorry, we couldnt find ‘{data.search}</b>
98+
<b>Sorry, we couldn't find ‘{data.search}'</b>
9999
<p>There are no members that match your search.</p>
100100
</div>
101101
<Button

src/routes/console/project-[project]/functions/wizard/step2.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<WizardStep>
88
<svelte:fragment slot="title">Permissions</svelte:fragment>
99
<svelte:fragment slot="subtitle">
10-
Choose which users have permission to execute this function using Client SDKs. For more information, check out
11-
the <a
10+
Choose which users have permission to execute this function using Client SDKs. For more
11+
information, check out the <a
1212
href="https://appwrite.io/docs/permissions"
1313
target="_blank"
1414
rel="noopener noreferrer"

src/routes/console/project-[project]/functions/wizard/step3.svelte

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<svelte:fragment slot="title">Events</svelte:fragment>
2121
<svelte:fragment slot="subtitle">
2222
Set the events that will trigger your function. Maximum 100 events allowed.<a
23-
href="https://appwrite.io/docs/events"
24-
target="_blank"
25-
rel="noopener noreferrer"
26-
class="link">
27-
Learn more about events.
28-
</a>.
23+
href="https://appwrite.io/docs/events"
24+
target="_blank"
25+
rel="noopener noreferrer"
26+
class="link">
27+
Learn more about events.
28+
</a>.
2929
</svelte:fragment>
3030

3131
{#if $createFunction?.events?.length}

src/routes/console/project-[project]/settings/migrations/(import)/step1.svelte

+7-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,13 @@
5656
<WizardStep>
5757
<svelte:fragment slot="title">Select source</svelte:fragment>
5858
<svelte:fragment slot="subtitle">
59-
Select a source platform with the project you want to migrate.
59+
Select a source platform with the project you want to migrate. <a
60+
class="link"
61+
href="https://appwrite.io/docs/migrations"
62+
target="_blank"
63+
rel="noopener noreferrer">
64+
Learn about which platforms are supported</a
65+
>.
6066
</svelte:fragment>
6167
<div class="u-flex u-flex-vertical u-gap-8">
6268
{#each Object.entries(providers) as [key, value]}

src/routes/console/project-[project]/settings/migrations/(import)/step2.svelte

+8-6
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@
99
<WizardStep>
1010
<svelte:fragment slot="title">Select source</svelte:fragment>
1111
<svelte:fragment slot="subtitle">
12-
Select the resources you need to migrate to Appwrite. Some resources can be migrated, but with limitations. <a
13-
href="https://appwrite.io/docs/client/teams"
14-
target="_blank"
15-
rel="noopener noreferrer">
16-
Learn about which resources are supported</a
17-
>.
12+
Select the resources you need to migrate to Appwrite. Some resources can be migrated, but
13+
with limitations. <a
14+
class="link"
15+
href="https://appwrite.io/docs/migrations"
16+
target="_blank"
17+
rel="noopener noreferrer">
18+
Learn about which resources are supported</a
19+
>.
1820
</svelte:fragment>
1921
<ResourceForm {formData} {provider} projectSdk={sdk.forProject} />
2022
</WizardStep>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140

141141
<CardGrid>
142142
<Heading tag="h3" size="7">Import project data</Heading>
143-
<p class="text">Import data from other products or from a different Appwrite instance</p>
143+
<p class="text">Import data from other products or from a different Appwrite instance.</p>
144144
<svelte:fragment slot="aside">
145145
{#if data.migrations.length}
146146
<div class="u-flex">

src/routes/console/project-[project]/storage/bucket-[bucket]/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
{:else if data.search}
201201
<EmptySearch>
202202
<div class="u-text-center">
203-
<b>Sorry, we couldnt find ‘{data.search}</b>
203+
<b>Sorry, we couldn't find ‘{data.search}'</b>
204204
<p>There are no files that match your search.</p>
205205
</div>
206206
<div class="u-flex u-gap-16">

0 commit comments

Comments
 (0)