-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mark episodes as watched after click, Customizable quick rewind,
Documented AwerySettings, Fix crash if media has no lists, Enable Material You by default if it is supported on the device
- Loading branch information
1 parent
b2d9be0
commit d3c442f
Showing
21 changed files
with
479 additions
and
116 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
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
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
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
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 |
---|---|---|
@@ -1,11 +1,145 @@ | ||
{ | ||
"action": { | ||
"title": "Action", | ||
"variants": [ "action", "экшен" ], | ||
"is_adult": false | ||
}, | ||
|
||
"comedy": { | ||
"title": "Comedy", | ||
"variants": [ "comedy", "комедия" ], | ||
"is_adult": false | ||
}, | ||
|
||
"drama": { | ||
"title": "Drama", | ||
"variants": [ "drama", "драма" ], | ||
"is_adult": false | ||
}, | ||
|
||
"fantasy": { | ||
"title": "Fantasy", | ||
"variants": [ "fantasy", "фэнтези" ], | ||
"is_adult": false | ||
}, | ||
|
||
"horror": { | ||
"title": "Horror", | ||
"variants": [ "horror", "хоррор" ], | ||
"is_adult": false | ||
}, | ||
|
||
"mystery": { | ||
"title": "Mystery", | ||
"variants": [ "mystery", "мистика" ], | ||
"is_adult": false | ||
}, | ||
|
||
"romance": { | ||
"title": "Romance", | ||
"variants": [ "romance", "романтика" ], | ||
"is_adult": false | ||
}, | ||
|
||
"sci-fi": { | ||
"title": "Sci-Fi", | ||
"variants": [ "sci-fi", "фантастика" ], | ||
"is_adult": false | ||
}, | ||
|
||
"thriller": { | ||
"title": "Thriller", | ||
"variants": [ "thriller", "триллер" ], | ||
"is_adult": false | ||
}, | ||
|
||
"western": { | ||
"title": "Western", | ||
"variants": [ "western", "вестерн" ], | ||
"is_adult": false | ||
}, | ||
|
||
"adventure": { | ||
"title": "Adventure", | ||
"variants": [ "adventure", "приключения", "приключение" ], | ||
"is_adult": false | ||
}, | ||
|
||
"biography": { | ||
"title": "Biography", | ||
"variants": [ "biography", "биография" ], | ||
"is_adult": false | ||
}, | ||
|
||
"crime": { | ||
"title": "Crime", | ||
"variants": [ "crime", "криминал" ], | ||
"is_adult": false | ||
}, | ||
|
||
"documentary": { | ||
"title": "Documentary", | ||
"variants": [ "documentary", "документальное" ], | ||
"is_adult": false | ||
}, | ||
|
||
"history": { | ||
"title": "History", | ||
"variants": [ "history", "история" ], | ||
"is_adult": false | ||
}, | ||
|
||
"music": { | ||
"title": "Music", | ||
"variants": [ "music", "музыка" ], | ||
"is_adult": false | ||
}, | ||
|
||
"reality": { | ||
"title": "Reality", | ||
"variants": [ "reality", "реалити" ], | ||
"is_adult": false | ||
}, | ||
|
||
"war": { | ||
"title": "War", | ||
"variants": [ "war", "война" ], | ||
"is_adult": false | ||
}, | ||
|
||
"animation": { | ||
"title": "Animation", | ||
"variants": [ "animation", "anime", "анимация", "аниме" ], | ||
"is_adult": false | ||
}, | ||
|
||
"anime": { | ||
"title": "Anime", | ||
"variants": [ "anime", "аниме" ], | ||
"is_adult": false | ||
}, | ||
|
||
"cgi": { | ||
"title": "CGI", | ||
"variants": [ "cgi" ], | ||
"is_adult": false | ||
}, | ||
|
||
"gay": { | ||
"title": "Gay", | ||
"variants": [ "yaoi", "gay", "boys love" ] | ||
"variants": [ "yaoi", "gay", "boys love", "сёнен-ай" ], | ||
"is_adult": false | ||
}, | ||
|
||
"lesbian": { | ||
"title": "Lesbian", | ||
"variants": [ "lesbian", "yuri" ] | ||
"variants": [ "lesbian", "yuri", "сёдзе-ай" ], | ||
"is_adult": false | ||
}, | ||
|
||
"lgbt": { | ||
"title": "LGBT", | ||
"variants": [ "lgbt", "lesbian", "gay", "bisexual", "transgender", "lgbtq", "лгбт" ], | ||
"is_adult": false | ||
} | ||
} |
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
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
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
Oops, something went wrong.