Jürgen Schmidt wrote:
to push this forward I plan to bundle the following
dictionaries/spellchecker/thesaurus for
Polish -> http://extensions.openoffice.org/en/project/pl-dict
Swedish -> http://extensions.openoffice.org/en/project/SweThes
Norwegian Bokmal ->
http://extensions.openoffice.org/en/project/Norwegian_dictionaries
Korean -> NOT FOUND
I haven't compared to the ones you listed (and it seems for example that
Swedish is only a thesaurus here), but I extracted from the 3.3.0
packages the dictionaries (already packaged as OXT) that we used in
3.3.0. You can find them at
http://people.apache.org/~pescetti/ooo-330-dictionaries/
They all passed the basic test of clean installation in OpenOffice 3.4.1
and spellcheck of a machine-translated sentence.
Indeed Korean shipped with no dictionary in 3.3.0 (no language pack
either, but I checked the full build too); and indeed the extension it
is linked to is no longer online, but search engines reveal that there
is still a version at
http://extensions.openoffice.org/en/node/4237
which installs cleanly.
Below you find a script to do the same for other languages if you need,
and if you prefer to take dictionaries from the shipped binaries rather
than going back to the HG repository and digging. But it won't always
work, since for example the "nb" version contains a dictionary for "no"
(which means "nb"+"nn") and this breaks some assumptions, so you may
need to do some steps manually at times.
Regards,
Andrea.
for LG in pl sv nb ko ; do \
wget
http://archive.apache.org/dist/incubator/ooo/localized/$LG/3.3.0/OOo_3.3.0_Linux_x86_langpack-rpm_$LG.tar.gz
&& \
tar zxvf OOo_3.3.0_Linux_x86_langpack-rpm_$LG.tar.gz && \
rpm2cpio
OOO330_m20_native_packed-1_$LG.9567/RPMS/openoffice.org3-dict-$LG-3.3.0-9567.i586.rpm
| cpio -ivd && \
cd opt/openoffice.org3/share/extensions/dict-$LG && \
zip -r ../../../../../dict-$LG-ooo330.oxt * && \
cd ../../../../../ ;
done