Merge pull request #246456 from marcovergueira/add-pt-pt-language

hunspellDicts: add pt_PT
This commit is contained in:
Weijia Wang 2023-09-07 09:02:04 +02:00 committed by GitHub
commit 711fa5f19e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -915,13 +915,23 @@ rec {
license = with lib.licenses; [ gpl2Plus lgpl2Plus mpl10 asl20 cc-by-sa-25 ];
};
# Portugese
/* PORTUGUESE */
pt_BR = pt-br;
pt-br = mkDictFromLibreOffice {
shortName = "pt-br";
dictFileName = "pt_BR";
shortDescription = "Brazillian Portugese (Brazil)";
shortDescription = "Portuguese (Brazil)";
readmeFile = "README_pt_BR.txt";
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 ];
};
}