Mercurial > minori
annotate include/gui/translate/anime.h @ 101:c537996cf67b
*: multitude of config changes
1. theme is now configurable from the settings menu
(but you have to restart for it to apply)
2. config is now stored in an INI file, with no method of
conversion from json (this repo is private-ish anyway)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 03 Nov 2023 14:06:02 -0400 |
parents | c4bb49c2f6eb |
children | f88eda79c60a |
rev | line source |
---|---|
10 | 1 #include "core/anime.h" |
2 | |
3 namespace Translate { | |
4 | |
15 | 5 std::string ToString(const Anime::ListStatus status); |
6 std::string ToString(const Anime::SeriesFormat format); | |
7 std::string ToString(const Anime::SeriesSeason season); | |
8 std::string ToString(const Anime::SeriesStatus status); | |
90
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
9 std::string ToString(const Anime::Services service); |
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
10 Anime::Services ToService(const std::string& str); |
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
11 std::string ToString(const Anime::TitleLanguage language); |
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
12 Anime::TitleLanguage ToLanguage(const std::string& str); |
10 | 13 |
14 } // namespace Translate |