mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Add a better ordering to languages.
This is kind of arbitrary, but here's my reasoning: - Japanese goes first, because it's the original language. - ja-kanji and roomaji follow because obviously we don't want to split Japanese up. - Korean and Chinese go next to keep Asian languages together. - Then English, because it's the main language other than Japanese. - Then French and German, because they translate their Pokémon names??? idk it feels intuitive to me. Plus I guess their IDs are next. - Then Spanish and Italian, because they're the only official languages left. - Czech goes last because it's unofficial.
This commit is contained in:
parent
c13ba0e58a
commit
6efd25d31d
1 changed files with 10 additions and 10 deletions
|
@ -1,12 +1,12 @@
|
|||
id,iso639,iso3166,identifier,official,order
|
||||
1,ja,jp,ja,1,1
|
||||
2,ja,jp,roomaji,1,2
|
||||
3,ko,kr,ko,1,
|
||||
4,zh,cn,zh,1,
|
||||
5,fr,fr,fr,1,
|
||||
6,de,de,de,1,
|
||||
7,es,es,es,1,
|
||||
8,it,it,it,1,
|
||||
9,en,us,en,1,0
|
||||
10,cs,cz,cs,0,
|
||||
11,ja,jp,ja-kanji,1,
|
||||
2,ja,jp,roomaji,1,3
|
||||
3,ko,kr,ko,1,4
|
||||
4,zh,cn,zh,1,5
|
||||
5,fr,fr,fr,1,7
|
||||
6,de,de,de,1,8
|
||||
7,es,es,es,1,9
|
||||
8,it,it,it,1,10
|
||||
9,en,us,en,1,6
|
||||
10,cs,cz,cs,0,11
|
||||
11,ja,jp,ja-kanji,1,2
|
||||
|
|
|
Loading…
Reference in a new issue