forked from GitHub/dbot
71c2c52d47
Covers original functionality plus adds a new ~reading command. There is probably a lot of duplication in the module itself that can be cleaned up with some additional metaprogramming but *eh* I'm tired tonight.
24 lines
602 B
JSON
24 lines
602 B
JSON
{
|
|
"gr_book": {
|
|
"en": "[{title} by {author} - {rating}] - {link}"
|
|
},
|
|
"gr_summary": {
|
|
"en": "[{title}] - {summary} - {link}"
|
|
},
|
|
"gr_author": {
|
|
"en": "[{author}] - https://www.goodreads.com/author/show/{id}"
|
|
},
|
|
"gr_nobook": {
|
|
"en": "No book by that name was found."
|
|
},
|
|
"gr_noauthor": {
|
|
"en": "No author by that name was found."
|
|
},
|
|
"gr_not_reading": {
|
|
"en": "{user} is not currently reading any books."
|
|
},
|
|
"gr_is_reading": {
|
|
"en": "{user} is currently reading the following {count} books:"
|
|
}
|
|
}
|