From 6efd25d31dd2b34ab5c867d7d149a6a7941afd59 Mon Sep 17 00:00:00 2001 From: "Lynn \"Zhorken\" Vaughan" Date: Mon, 19 May 2014 22:11:13 -0400 Subject: [PATCH] Add a better ordering to languages. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- pokedex/data/csv/languages.csv | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pokedex/data/csv/languages.csv b/pokedex/data/csv/languages.csv index 5344ec8..69c2938 100644 --- a/pokedex/data/csv/languages.csv +++ b/pokedex/data/csv/languages.csv @@ -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