diff options
author | Bill Napier <> | 2009-04-23 17:14:22 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-04-23 17:14:22 -0700 |
commit | 78b1511d96f0b2123bfadf51c5c1ccf33cdd2b3d (patch) | |
tree | 26e5bad7b183a25a53581a012c4a80798ff27987 | |
parent | 620986a358c522178ddfc5c0088b2a5e1768e5ae (diff) | |
download | frameworks_base-78b1511d96f0b2123bfadf51c5c1ccf33cdd2b3d.zip frameworks_base-78b1511d96f0b2123bfadf51c5c1ccf33cdd2b3d.tar.gz frameworks_base-78b1511d96f0b2123bfadf51c5c1ccf33cdd2b3d.tar.bz2 |
AI 147541: Add cs as default language for cz.
BUG=1781746
Automated import of CL 147541
-rw-r--r-- | telephony/java/com/android/internal/telephony/gsm/MccTable.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/telephony/java/com/android/internal/telephony/gsm/MccTable.java b/telephony/java/com/android/internal/telephony/gsm/MccTable.java index 53145fb..4507fe3 100644 --- a/telephony/java/com/android/internal/telephony/gsm/MccTable.java +++ b/telephony/java/com/android/internal/telephony/gsm/MccTable.java @@ -62,11 +62,11 @@ public final class MccTable entryForMcc(int mcc) { int index; - + MccEntry m; m = new MccEntry(mcc, null, 0); - + index = Collections.binarySearch(table, m); if (index < 0) { @@ -154,7 +154,7 @@ public final class MccTable /* * The table below is built from two resources: - * + * * 1) ITU "Mobile Network Code (MNC) for the international * identification plan for mobile terminals and mobile users" * which is available as an annex to the ITU operational bulletin @@ -167,7 +167,7 @@ public final class MccTable * * FIXME(mkf) this should be stored in a more efficient representation */ - + table.add(new MccEntry(202,"gr",2)); //Greece table.add(new MccEntry(204,"nl",2,"Europe/Amsterdam")); //Netherlands (Kingdom of the) table.add(new MccEntry(206,"be",2)); //Belgium @@ -183,7 +183,7 @@ public final class MccTable table.add(new MccEntry(225,"va",2,"Europe/Rome","it")); //Vatican City State table.add(new MccEntry(226,"ro",2)); //Romania table.add(new MccEntry(228,"ch",2,"Europe/Zurich","en")); //Switzerland (Confederation of) - table.add(new MccEntry(230,"cz",2,"Europe/Prague")); //Czech Republic + table.add(new MccEntry(230,"cz",2,"Europe/Prague","cs")); //Czech Republic table.add(new MccEntry(231,"sk",2)); //Slovak Republic table.add(new MccEntry(232,"at",2,"Europe/Vienna","de")); //Austria table.add(new MccEntry(234,"gb",2,"Europe/London","en")); //United Kingdom of Great Britain and Northern Ireland |