2015-01-19 13:49:11 +00:00
|
|
|
|
/* hunspell dictionaries */
|
|
|
|
|
|
2018-02-28 13:32:52 +00:00
|
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, unzip, coreutils, bash, which, zip, ispell, perl, hunspell }:
|
2015-01-19 13:49:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
mkDict =
|
2017-04-07 18:02:33 +01:00
|
|
|
|
{ name, readmeFile, dictFileName, ... }@args:
|
|
|
|
|
stdenv.mkDerivation (rec {
|
|
|
|
|
inherit name;
|
2015-01-19 13:49:11 +00:00
|
|
|
|
installPhase = ''
|
|
|
|
|
# hunspell dicts
|
|
|
|
|
install -dm755 "$out/share/hunspell"
|
|
|
|
|
install -m644 ${dictFileName}.dic "$out/share/hunspell/"
|
|
|
|
|
install -m644 ${dictFileName}.aff "$out/share/hunspell/"
|
|
|
|
|
# myspell dicts symlinks
|
|
|
|
|
install -dm755 "$out/share/myspell/dicts"
|
|
|
|
|
ln -sv "$out/share/hunspell/${dictFileName}.dic" "$out/share/myspell/dicts/"
|
|
|
|
|
ln -sv "$out/share/hunspell/${dictFileName}.aff" "$out/share/myspell/dicts/"
|
|
|
|
|
# docs
|
|
|
|
|
install -dm755 "$out/share/doc"
|
|
|
|
|
install -m644 ${readmeFile} $out/share/doc/${name}.txt
|
|
|
|
|
'';
|
2017-04-07 18:02:33 +01:00
|
|
|
|
} // args);
|
|
|
|
|
|
|
|
|
|
mkDictFromRla =
|
|
|
|
|
{ shortName, shortDescription, dictFileName }:
|
|
|
|
|
mkDict rec {
|
|
|
|
|
inherit dictFileName;
|
|
|
|
|
version = "2.2";
|
|
|
|
|
name = "hunspell-dict-${shortName}-rla-${version}";
|
|
|
|
|
readmeFile = "README.txt";
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "sbosio";
|
|
|
|
|
repo = "rla-es";
|
|
|
|
|
rev = "v${version}";
|
|
|
|
|
sha256 = "0n9ms092k7vg7xpd3ksadxydbrizkb7js7dfxr08nbnnb9fgy0i8";
|
|
|
|
|
};
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "Hunspell dictionary for ${shortDescription} from rla";
|
|
|
|
|
homepage = https://github.com/sbosio/rla-es;
|
|
|
|
|
license = with licenses; [ gpl3 lgpl3 mpl11 ];
|
|
|
|
|
maintainers = with maintainers; [ renzo ];
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
|
|
|
|
phases = "unpackPhase patchPhase buildPhase installPhase";
|
|
|
|
|
buildInputs = [ bash coreutils unzip which zip ];
|
|
|
|
|
patchPhase = ''
|
|
|
|
|
substituteInPlace ortograf/herramientas/make_dict.sh \
|
|
|
|
|
--replace /bin/bash bash \
|
|
|
|
|
--replace /dev/stderr stderr.log
|
|
|
|
|
|
|
|
|
|
substituteInPlace ortograf/herramientas/remover_comentarios.sh \
|
|
|
|
|
--replace /bin/bash bash \
|
|
|
|
|
'';
|
|
|
|
|
buildPhase = ''
|
|
|
|
|
cd ortograf/herramientas
|
|
|
|
|
bash -x ./make_dict.sh -l ${dictFileName} -2
|
|
|
|
|
unzip ${dictFileName}.zip \
|
|
|
|
|
${dictFileName}.dic ${dictFileName}.aff ${readmeFile}
|
|
|
|
|
'';
|
|
|
|
|
};
|
2015-01-19 13:49:11 +00:00
|
|
|
|
|
|
|
|
|
mkDictFromDicollecte =
|
|
|
|
|
{ shortName, shortDescription, longDescription, dictFileName }:
|
|
|
|
|
mkDict rec {
|
|
|
|
|
inherit dictFileName;
|
2015-03-25 18:09:09 +00:00
|
|
|
|
version = "5.3";
|
2015-01-19 13:49:11 +00:00
|
|
|
|
name = "hunspell-dict-${shortName}-dicollecte-${version}";
|
|
|
|
|
readmeFile = "README_dict_fr.txt";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "http://www.dicollecte.org/download/fr/hunspell-french-dictionaries-v${version}.zip";
|
2015-03-25 18:09:09 +00:00
|
|
|
|
sha256 = "0ca7084jm7zb1ikwzh1frvpb97jn27i7a5d48288h2qlfp068ik0";
|
2015-01-19 13:49:11 +00:00
|
|
|
|
};
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
inherit longDescription;
|
|
|
|
|
description = "Hunspell dictionary for ${shortDescription} from Dicollecte";
|
2017-08-02 22:50:51 +01:00
|
|
|
|
homepage = https://www.dicollecte.org/home.php?prj=fr;
|
2015-01-19 13:49:11 +00:00
|
|
|
|
license = licenses.mpl20;
|
|
|
|
|
maintainers = with maintainers; [ renzo ];
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
2017-04-07 18:02:33 +01:00
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
phases = "unpackPhase installPhase";
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
unpackCmd = ''
|
|
|
|
|
unzip $src ${dictFileName}.dic ${dictFileName}.aff ${readmeFile}
|
|
|
|
|
'';
|
2015-01-19 13:49:11 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
mkDictFromWordlist =
|
|
|
|
|
{ shortName, shortDescription, dictFileName, src }:
|
|
|
|
|
mkDict rec {
|
|
|
|
|
inherit src dictFileName;
|
|
|
|
|
version = "2014.11.17";
|
|
|
|
|
name = "hunspell-dict-${shortName}-wordlist-${version}";
|
|
|
|
|
readmeFile = "README_" + dictFileName + ".txt";
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "Hunspell dictionary for ${shortDescription} from Wordlist";
|
2015-03-25 18:09:40 +00:00
|
|
|
|
homepage = http://wordlist.aspell.net/;
|
2015-01-19 13:49:11 +00:00
|
|
|
|
license = licenses.bsd3;
|
|
|
|
|
maintainers = with maintainers; [ renzo ];
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
2017-04-07 18:02:33 +01:00
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
phases = "unpackPhase installPhase";
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
unpackCmd = ''
|
|
|
|
|
unzip $src ${dictFileName}.dic ${dictFileName}.aff ${readmeFile}
|
|
|
|
|
'';
|
2015-01-19 13:49:11 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-04-07 18:02:33 +01:00
|
|
|
|
mkDictFromLinguistico =
|
2015-01-19 13:49:11 +00:00
|
|
|
|
{ shortName, shortDescription, dictFileName, src }:
|
|
|
|
|
mkDict rec {
|
|
|
|
|
inherit src dictFileName;
|
|
|
|
|
version = "2.4";
|
|
|
|
|
name = "hunspell-dict-${shortName}-linguistico-${version}";
|
|
|
|
|
readmeFile = dictFileName + "_README.txt";
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 22:50:51 +01:00
|
|
|
|
homepage = https://sourceforge.net/projects/linguistico/;
|
2015-01-19 13:49:11 +00:00
|
|
|
|
license = licenses.gpl3;
|
|
|
|
|
maintainers = with maintainers; [ renzo ];
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
2017-04-07 18:02:33 +01:00
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
phases = "unpackPhase patchPhase installPhase";
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
prePatch = ''
|
|
|
|
|
# Fix dic file empty lines (FS#22275)
|
|
|
|
|
sed '/^\/$/d' -i ${dictFileName}.dic
|
|
|
|
|
'';
|
|
|
|
|
unpackCmd = ''
|
|
|
|
|
unzip $src ${dictFileName}.dic ${dictFileName}.aff ${readmeFile}
|
|
|
|
|
'';
|
2015-01-19 13:49:11 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-05-20 19:10:23 +01:00
|
|
|
|
mkDictFromXuxen =
|
|
|
|
|
{ shortName, srcs, shortDescription, longDescription, dictFileName }:
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "hunspell-dict-${shortName}-xuxen-${version}";
|
|
|
|
|
version = "5-2015.11.10";
|
|
|
|
|
|
|
|
|
|
inherit srcs;
|
|
|
|
|
|
|
|
|
|
phases = ["unpackPhase" "installPhase"];
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
# Copy files stripping until first dash (path and hash)
|
|
|
|
|
unpackCmd = "cp $curSrc \${curSrc##*-}";
|
|
|
|
|
installPhase = ''
|
|
|
|
|
# hunspell dicts
|
|
|
|
|
install -dm755 "$out/share/hunspell"
|
|
|
|
|
install -m644 ${dictFileName}.dic "$out/share/hunspell/"
|
|
|
|
|
install -m644 ${dictFileName}.aff "$out/share/hunspell/"
|
|
|
|
|
# myspell dicts symlinks
|
|
|
|
|
install -dm755 "$out/share/myspell/dicts"
|
|
|
|
|
ln -sv "$out/share/hunspell/${dictFileName}.dic" "$out/share/myspell/dicts/"
|
|
|
|
|
ln -sv "$out/share/hunspell/${dictFileName}.aff" "$out/share/myspell/dicts/"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
homepage = http://xuxen.eus/;
|
|
|
|
|
description = shortDescription;
|
|
|
|
|
longDescription = longDescription;
|
|
|
|
|
license = licenses.gpl2;
|
|
|
|
|
maintainers = with maintainers; [ zalakain ];
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2018-02-28 13:32:52 +00:00
|
|
|
|
mkDictFromJ3e =
|
|
|
|
|
{ shortName, shortDescription, dictFileName }:
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "hunspell-dict-${shortName}-j3e-${version}";
|
|
|
|
|
version = "20161207";
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://j3e.de/ispell/igerman98/dict/igerman98-${version}.tar.bz2";
|
|
|
|
|
sha256 = "1a3055hp2bc4q4nlg3gmg0147p3a1zlfnc65xiv2v9pyql1nya8p";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
buildInputs = [ ispell perl hunspell ];
|
|
|
|
|
|
|
|
|
|
phases = ["unpackPhase" "installPhase"];
|
|
|
|
|
installPhase = ''
|
|
|
|
|
patchShebangs bin
|
|
|
|
|
make hunspell/${dictFileName}.aff hunspell/${dictFileName}.dic
|
|
|
|
|
# hunspell dicts
|
|
|
|
|
install -dm755 "$out/share/hunspell"
|
|
|
|
|
install -m644 hunspell/${dictFileName}.dic "$out/share/hunspell/"
|
|
|
|
|
install -m644 hunspell/${dictFileName}.aff "$out/share/hunspell/"
|
|
|
|
|
# myspell dicts symlinks
|
|
|
|
|
install -dm755 "$out/share/myspell/dicts"
|
|
|
|
|
ln -sv "$out/share/hunspell/${dictFileName}.dic" "$out/share/myspell/dicts/"
|
|
|
|
|
ln -sv "$out/share/hunspell/${dictFileName}.aff" "$out/share/myspell/dicts/"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
homepage = https://www.j3e.de/ispell/igerman98/index_en.html;
|
|
|
|
|
description = shortDescription;
|
|
|
|
|
license = with licenses; [ gpl2 gpl3 ];
|
|
|
|
|
maintainers = with maintainers; [ timor ];
|
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-19 13:49:11 +00:00
|
|
|
|
in {
|
|
|
|
|
|
|
|
|
|
/* ENGLISH */
|
|
|
|
|
|
|
|
|
|
en-us = mkDictFromWordlist {
|
|
|
|
|
shortName = "en-us";
|
|
|
|
|
shortDescription = "English (United States)";
|
|
|
|
|
dictFileName = "en_US";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = mirror://sourceforge/wordlist/speller/2014.11.17/hunspell-en_US-2014.11.17.zip;
|
|
|
|
|
sha256 = "4ce88a1af457ce0e256110277a150e5da798213f611929438db059c1c81e20f2";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
en-ca = mkDictFromWordlist {
|
|
|
|
|
shortName = "en-ca";
|
|
|
|
|
shortDescription = "English (Canada)";
|
|
|
|
|
dictFileName = "en_CA";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = mirror://sourceforge/wordlist/speller/2014.11.17/hunspell-en_CA-2014.11.17.zip;
|
|
|
|
|
sha256 = "59950448440657a6fc3ede15720c1b86c0b66c4ec734bf1bd9157f6a1786673b";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
en-gb-ise = mkDictFromWordlist {
|
|
|
|
|
shortName = "en-gb-ise";
|
|
|
|
|
shortDescription = "English (United Kingdom, 'ise' ending)";
|
|
|
|
|
dictFileName = "en_GB-ise";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = mirror://sourceforge/wordlist/speller/2014.11.17/hunspell-en_GB-ise-2014.11.17.zip;
|
|
|
|
|
sha256 = "97f3b25102fcadd626ae4af3cdd97f017ce39264494f98b1f36ad7d96b9d5a94";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
en-gb-ize = mkDictFromWordlist {
|
|
|
|
|
shortName = "en-gb-ize";
|
|
|
|
|
shortDescription = "English (United Kingdom, 'ize' ending)";
|
|
|
|
|
dictFileName = "en_GB-ize";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = mirror://sourceforge/wordlist/speller/2014.11.17/hunspell-en_GB-ize-2014.11.17.zip;
|
|
|
|
|
sha256 = "84270673ed7c014445f3ba02f9efdb0ac44cea9ee0bfec76e3e10feae55c4e1c";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2017-04-07 18:02:33 +01:00
|
|
|
|
/* SPANISH */
|
|
|
|
|
|
|
|
|
|
es-any = mkDictFromRla {
|
|
|
|
|
shortName = "es-any";
|
|
|
|
|
shortDescription = "Spanish (any variant)";
|
|
|
|
|
dictFileName = "es_ANY";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-ar = mkDictFromRla {
|
|
|
|
|
shortName = "es-ar";
|
|
|
|
|
shortDescription = "Spanish (Argentina)";
|
|
|
|
|
dictFileName = "es_AR";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-bo = mkDictFromRla {
|
|
|
|
|
shortName = "es-bo";
|
|
|
|
|
shortDescription = "Spanish (Bolivia)";
|
|
|
|
|
dictFileName = "es_BO";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-cl = mkDictFromRla {
|
|
|
|
|
shortName = "es-cl";
|
|
|
|
|
shortDescription = "Spanish (Chile)";
|
|
|
|
|
dictFileName = "es_CL";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-co = mkDictFromRla {
|
|
|
|
|
shortName = "es-co";
|
|
|
|
|
shortDescription = "Spanish (Colombia)";
|
|
|
|
|
dictFileName = "es_CO";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-cr = mkDictFromRla {
|
|
|
|
|
shortName = "es-cr";
|
|
|
|
|
shortDescription = "Spanish (Costra Rica)";
|
|
|
|
|
dictFileName = "es_CR";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-cu = mkDictFromRla {
|
|
|
|
|
shortName = "es-cu";
|
|
|
|
|
shortDescription = "Spanish (Cuba)";
|
|
|
|
|
dictFileName = "es_CU";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-do = mkDictFromRla {
|
|
|
|
|
shortName = "es-do";
|
|
|
|
|
shortDescription = "Spanish (Dominican Republic)";
|
|
|
|
|
dictFileName = "es_DO";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-ec = mkDictFromRla {
|
|
|
|
|
shortName = "es-ec";
|
|
|
|
|
shortDescription = "Spanish (Ecuador)";
|
|
|
|
|
dictFileName = "es_EC";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-es = mkDictFromRla {
|
|
|
|
|
shortName = "es-es";
|
|
|
|
|
shortDescription = "Spanish (Spain)";
|
|
|
|
|
dictFileName = "es_ES";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-gt = mkDictFromRla {
|
|
|
|
|
shortName = "es-gt";
|
|
|
|
|
shortDescription = "Spanish (Guatemala)";
|
|
|
|
|
dictFileName = "es_GT";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-hn = mkDictFromRla {
|
|
|
|
|
shortName = "es-hn";
|
|
|
|
|
shortDescription = "Spanish (Honduras)";
|
|
|
|
|
dictFileName = "es_HN";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-mx = mkDictFromRla {
|
|
|
|
|
shortName = "es-mx";
|
|
|
|
|
shortDescription = "Spanish (Mexico)";
|
|
|
|
|
dictFileName = "es_MX";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-ni = mkDictFromRla {
|
|
|
|
|
shortName = "es-ni";
|
|
|
|
|
shortDescription = "Spanish (Nicaragua)";
|
|
|
|
|
dictFileName = "es_NI";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-pa = mkDictFromRla {
|
|
|
|
|
shortName = "es-pa";
|
|
|
|
|
shortDescription = "Spanish (Panama)";
|
|
|
|
|
dictFileName = "es_PA";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-pe = mkDictFromRla {
|
|
|
|
|
shortName = "es-pe";
|
|
|
|
|
shortDescription = "Spanish (Peru)";
|
|
|
|
|
dictFileName = "es_PE";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-pr = mkDictFromRla {
|
|
|
|
|
shortName = "es-pr";
|
|
|
|
|
shortDescription = "Spanish (Puerto Rico)";
|
|
|
|
|
dictFileName = "es_PR";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-py = mkDictFromRla {
|
|
|
|
|
shortName = "es-py";
|
|
|
|
|
shortDescription = "Spanish (Paraguay)";
|
|
|
|
|
dictFileName = "es_PY";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-sv = mkDictFromRla {
|
|
|
|
|
shortName = "es-sv";
|
|
|
|
|
shortDescription = "Spanish (El Salvador)";
|
|
|
|
|
dictFileName = "es_SV";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-uy = mkDictFromRla {
|
|
|
|
|
shortName = "es-uy";
|
|
|
|
|
shortDescription = "Spanish (Uruguay)";
|
|
|
|
|
dictFileName = "es_UY";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es-ve = mkDictFromRla {
|
|
|
|
|
shortName = "es-ve";
|
|
|
|
|
shortDescription = "Spanish (Venezuela)";
|
|
|
|
|
dictFileName = "es_VE";
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-19 13:49:11 +00:00
|
|
|
|
/* FRENCH */
|
|
|
|
|
|
|
|
|
|
fr-any = mkDictFromDicollecte {
|
|
|
|
|
shortName = "fr-any";
|
|
|
|
|
dictFileName = "fr-toutesvariantes";
|
|
|
|
|
shortDescription = "French (any variant)";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Ce dictionnaire contient les nouvelles et les anciennes graphies des
|
|
|
|
|
mots concernés par la réforme de 1990.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fr-classique = mkDictFromDicollecte {
|
|
|
|
|
shortName = "fr-classique";
|
|
|
|
|
dictFileName = "fr-classique";
|
|
|
|
|
shortDescription = "French (classic)";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Ce dictionnaire est une extension du dictionnaire «Moderne» et propose
|
|
|
|
|
en sus des graphies alternatives, parfois encore très usitées, parfois
|
|
|
|
|
tombées en désuétude.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fr-moderne = mkDictFromDicollecte {
|
|
|
|
|
shortName = "fr-moderne";
|
|
|
|
|
dictFileName = "fr-moderne";
|
|
|
|
|
shortDescription = "French (modern)";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Ce dictionnaire propose une sélection des graphies classiques et
|
|
|
|
|
réformées, suivant la lente évolution de l’orthographe actuelle. Ce
|
|
|
|
|
dictionnaire contient les graphies les moins polémiques de la réforme.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fr-reforme1990 = mkDictFromDicollecte {
|
|
|
|
|
shortName = "fr-reforme1990";
|
|
|
|
|
dictFileName = "fr-reforme1990";
|
|
|
|
|
shortDescription = "French (1990 reform)";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Ce dictionnaire ne connaît que les graphies nouvelles des mots concernés
|
|
|
|
|
par la réforme de 1990.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* ITALIAN */
|
|
|
|
|
|
2017-04-07 18:02:33 +01:00
|
|
|
|
it-it = mkDictFromLinguistico rec {
|
2015-01-19 13:49:11 +00:00
|
|
|
|
shortName = "it-it";
|
|
|
|
|
dictFileName = "it_IT";
|
|
|
|
|
shortDescription = "Hunspell dictionary for 'Italian (Italy)' from Linguistico";
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = mirror://sourceforge/linguistico/italiano_2_4_2007_09_01.zip;
|
2017-01-24 16:56:11 +00:00
|
|
|
|
sha256 = "0m9frz75fx456bczknay5i446gdcp1smm48lc0qfwzhz0j3zcdrd";
|
2015-01-19 13:49:11 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
2017-05-20 19:10:23 +01:00
|
|
|
|
|
|
|
|
|
/* BASQUE */
|
|
|
|
|
|
|
|
|
|
eu-es = mkDictFromXuxen {
|
|
|
|
|
shortName = "eu-es";
|
|
|
|
|
dictFileName = "eu_ES";
|
|
|
|
|
shortDescription = "Basque (Xuxen 5)";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Itxura berritzeaz gain, testuak zuzentzen laguntzeko zenbait hobekuntza
|
|
|
|
|
egin dira Xuxen.eus-en. Lexikoari dagokionez, 18645 sarrera berri erantsi
|
|
|
|
|
ditugu, eta proposamenak egiteko sistema ere aldatu dugu. Esate baterako,
|
|
|
|
|
gaizki idatzitako hitz baten inguruko proposamenak eskuratzeko, euskaraz
|
|
|
|
|
idaztean egiten ditugun akats arruntenak hartu dira kontuan. Sistemak
|
|
|
|
|
ematen dituen proposamenak ordenatzeko, berriz, aipatutako irizpidea
|
|
|
|
|
erabiltzeaz gain, Internetetik automatikoki eskuratutako euskarazko corpus
|
|
|
|
|
bateko datuen arabera ordenatu daitezke emaitzak. Erabiltzaileak horrela
|
|
|
|
|
ordenatu nahi baditu proposamenak, hautatu egin behar du aukera hori
|
|
|
|
|
testu-kutxaren azpian dituen aukeren artean. Interesgarria da proposamenak
|
|
|
|
|
ordenatzeko irizpide hori, hala sistemak formarik erabilienak proposatuko
|
|
|
|
|
baitizkigu gutxiago erabiltzen direnen aurretik.
|
|
|
|
|
'';
|
|
|
|
|
srcs = [
|
|
|
|
|
(fetchurl {
|
|
|
|
|
url = "http://xuxen.eus/static/hunspell/eu_ES.aff";
|
|
|
|
|
sha256 = "12w2j6phzas2rdzc7f20jnk93sm59m2zzfdgxv6p8nvcvbrkmc02";
|
|
|
|
|
})
|
|
|
|
|
(fetchurl {
|
|
|
|
|
url = "http://xuxen.eus/static/hunspell/eu_ES.dic";
|
|
|
|
|
sha256 = "0lw193jr7ldvln5x5z9p21rz1by46h0say9whfcw2kxs9vprd5b3";
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
};
|
2018-02-28 13:32:52 +00:00
|
|
|
|
|
|
|
|
|
/* GERMAN */
|
|
|
|
|
|
|
|
|
|
de-de = mkDictFromJ3e {
|
|
|
|
|
shortName = "de-de";
|
|
|
|
|
shortDescription = "German (Germany)";
|
|
|
|
|
dictFileName = "de_DE";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
de-at = mkDictFromJ3e {
|
|
|
|
|
shortName = "de-at";
|
|
|
|
|
shortDescription = "German (Austria)";
|
|
|
|
|
dictFileName = "de_AT";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
de-ch = mkDictFromJ3e {
|
|
|
|
|
shortName = "de-ch";
|
|
|
|
|
shortDescription = "German (Switzerland)";
|
|
|
|
|
dictFileName = "de_CH";
|
|
|
|
|
};
|
2015-01-19 13:49:11 +00:00
|
|
|
|
}
|