Merge pull request #246456 from marcovergueira/add-pt-pt-language
hunspellDicts: add pt_PT
This commit is contained in:
commit
711fa5f19e
1 changed files with 12 additions and 2 deletions
|
@ -915,13 +915,23 @@ rec {
|
||||||
license = with lib.licenses; [ gpl2Plus lgpl2Plus mpl10 asl20 cc-by-sa-25 ];
|
license = with lib.licenses; [ gpl2Plus lgpl2Plus mpl10 asl20 cc-by-sa-25 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Portugese
|
/* PORTUGUESE */
|
||||||
|
|
||||||
pt_BR = pt-br;
|
pt_BR = pt-br;
|
||||||
pt-br = mkDictFromLibreOffice {
|
pt-br = mkDictFromLibreOffice {
|
||||||
shortName = "pt-br";
|
shortName = "pt-br";
|
||||||
dictFileName = "pt_BR";
|
dictFileName = "pt_BR";
|
||||||
shortDescription = "Brazillian Portugese (Brazil)";
|
shortDescription = "Portuguese (Brazil)";
|
||||||
readmeFile = "README_pt_BR.txt";
|
readmeFile = "README_pt_BR.txt";
|
||||||
license = with lib.licenses; [ lgpl3 ];
|
license = with lib.licenses; [ lgpl3 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pt_PT = pt-pt;
|
||||||
|
pt-pt = mkDictFromLibreOffice {
|
||||||
|
shortName = "pt-pt";
|
||||||
|
dictFileName = "pt_PT";
|
||||||
|
shortDescription = "Portuguese (Portugal)";
|
||||||
|
readmeFile = "README_pt_PT.txt";
|
||||||
|
license = with lib.licenses; [ gpl2 lgpl21 mpl11 ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue