Mercurial > minori
comparison include/core/anime.h @ 51:75c804f713b2
window: add about window,
*: use tr() when applicable (useful for i18n)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 25 Sep 2023 20:29:26 -0400 |
parents | cde8f67a7c7d |
children | 6481c5aed3e1 |
comparison
equal
deleted
inserted
replaced
50:10868c3fb2be | 51:75c804f713b2 |
---|---|
8 namespace Anime { | 8 namespace Anime { |
9 | 9 |
10 enum class ListStatus { | 10 enum class ListStatus { |
11 NOT_IN_LIST, | 11 NOT_IN_LIST, |
12 CURRENT, | 12 CURRENT, |
13 PLANNING, | |
14 COMPLETED, | 13 COMPLETED, |
14 PAUSED, | |
15 DROPPED, | 15 DROPPED, |
16 PAUSED | 16 PLANNING |
17 }; | 17 }; |
18 | 18 |
19 constexpr std::array<ListStatus, 5> ListStatuses{ListStatus::CURRENT, ListStatus::COMPLETED, ListStatus::PAUSED, | 19 constexpr std::array<ListStatus, 5> ListStatuses{ListStatus::CURRENT, ListStatus::COMPLETED, ListStatus::PAUSED, |
20 ListStatus::DROPPED, ListStatus::PLANNING}; | 20 ListStatus::DROPPED, ListStatus::PLANNING}; |
21 | 21 |