Mercurial > minori
annotate include/gui/translate/anime.h @ 137:69db40272acd
dep/animia: [WIP] huge refactor
this WILL NOT compile, because lots of code has been changed
and every API in the original codebase has been removed.
note that this api setup is not exactly permanent...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 10 Nov 2023 13:52:47 -0500 |
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 |