-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80bcc65
commit 66ccd12
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# ➕ Adding Quotes | ||
|
||
> No need for experience in VueJS and NodeJS is needed to add a new language. **You'll only be working with JSON files 🎉** | ||
## 📝 Guidelines | ||
|
||
### Where is this seen? | ||
![Main Screenshot](screenshots/main_screenshot.png) | ||
|
||
This is seen below the word of the day. This is randomized so that you'll get a different quote each day! It's meant to serve as an inspiration for language learning. | ||
|
||
### Adding Quote | ||
You'll need to add the new quote in the `server/data/quotes.json` file. | ||
|
||
Example: | ||
```sh | ||
{ | ||
"sentence": "Languages, just like people, are worlds within themselves. They have the incredible ability to provide us with a clearer, more profound and detailed perspective of a culture and its views on life, nature, and death.", | ||
"author": "Orge Castellano" | ||
} | ||
``` | ||
|
||
Here's a small checklist to make sure your Pull Request is accepted! | ||
|
||
## ✅ Checklist | ||
- [ ] The quote(s) added are not ❌ duplicates. | ||
- [ ] The sentence attribute does not have inner quotation marks, and is ended with a period. | ||
- [ ] Copy pasted the raw JSON `quotes.json` file to [JSONLint](https://jsonlint.com/) and made sure that the modified JSON file is valid. |