bug 688779 - restore en-US hyphenation to the Android product. r=dougt

This commit is contained in:
Jonathan Kew 2011-09-29 10:37:56 +01:00
Родитель d2b70213ac
Коммит a95d1d9086
2 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -623,6 +623,16 @@ abstract public class GeckoApp
unpackFile(zip, buf, entry, entry.getName());
}
}
// copy any hyphenation dictionaries file into a hyphenation/ directory
Enumeration<? extends ZipEntry> hyphenEntries = zip.entries();
while (hyphenEntries.hasMoreElements()) {
ZipEntry entry = hyphenEntries.nextElement();
if (entry.getName().startsWith("hyphenation/")) {
Log.i("GeckoAppJava", "installing hyphenation : " + entry.getName());
unpackFile(zip, buf, entry, entry.getName());
}
}
}
void removeFiles() throws IOException {

Просмотреть файл

@ -267,6 +267,7 @@ DIST_FILES = \
components \
defaults \
modules \
hyphenation/hyph_en_US.dic \
res \
lib \
lib.id \