]> gitweb.fperrin.net Git - Dictionary.git/commitdiff
Irish/Gaelic fixes.
authorThad Hughes <thad.hughes@gmail.com>
Tue, 6 Mar 2012 00:55:51 +0000 (16:55 -0800)
committerThad Hughes <thad.hughes@gmail.com>
Tue, 6 Mar 2012 00:55:51 +0000 (16:55 -0800)
res/raw/help.html
res/values/languages.xml
src/com/hughes/android/dictionary/engine/Language.java

index cea9635eaf2b6d2e85377d79b938d45a6448ed9e..e0906f3396e104718ad7fb321246e8887d8bfe98 100644 (file)
@@ -9,6 +9,9 @@
 </head>
 <body>
 <!-- Don't use links in the text below, it crashes the app. -->
+<h2>Dictionary data</h2>
+Most dictionary data comes from http://wiktionary.org (mostly from en.wiktionary.org).
+If you want to add or fix an entry, please do it there.
 <h2>Dictionary manager</h2>
 This screen lists all the available and installed dictionaries.
 <ul>
index 31383bb9f9539566a91c66008cd8e7407564f068..d589baa56cf2056f14f703eebd07cc81d36a6d50 100644 (file)
@@ -20,6 +20,7 @@
   <string name="ET">Estonian</string>
   <string name="FI">Finnish</string>
   <string name="FR">French</string>
+  <string name="GD">Scottish Gaelic</string>
   <string name="DE">German</string>
   <string name="EL">Greek</string>
   <string name="haw">Hawaiian</string>
@@ -28,7 +29,7 @@
   <string name="HU">Hungarian</string>
   <string name="IS">Icelandic</string>
   <string name="ID">Indonesian</string>
-  <string name="GA">Gaelic (Irish, Scottish)</string>
+  <string name="GA">Irish</string>
   <string name="IT">Italian</string>
   <string name="LA">Latin</string>
   <string name="LV">Latvian</string>
index 8136120abfbcc268801f59edf537e6373ced75d0..802fd0ac2b134cc087797a2281d9cb743c155efe 100644 (file)
@@ -70,7 +70,8 @@ public class Language {
     isoCodeToResources.put("HU", new LanguageResources("Hungarian", R.string.HU));\r
     isoCodeToResources.put("IS", new LanguageResources("Icelandic", R.string.IS));\r
     isoCodeToResources.put("ID", new LanguageResources("Indonesian", R.string.ID));\r
-    isoCodeToResources.put("GA", new LanguageResources("Gaelic (Irish, Scottish)", R.string.GA));\r
+    isoCodeToResources.put("GA", new LanguageResources("Irish", R.string.GA));\r
+    isoCodeToResources.put("GD", new LanguageResources("Scottish Gaelic", R.string.GD));\r
     isoCodeToResources.put("IT", new LanguageResources("Italian", R.string.IT));\r
     isoCodeToResources.put("LA", new LanguageResources("Latin", R.string.LA));\r
     isoCodeToResources.put("LV", new LanguageResources("Latvian", R.string.LV));\r