summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dialogs/rdf.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/dialogs/rdf.cpp b/src/dialogs/rdf.cpp
index e75dc1e6f..a145e0834 100644
--- a/src/dialogs/rdf.cpp
+++ b/src/dialogs/rdf.cpp
@@ -164,6 +164,19 @@ struct rdf_double_t rdf_license_freeart [] = {
{ NULL, NULL }
};
+struct rdf_double_t rdf_license_ofl [] = {
+ { "cc:permits", "http://scripts.sil.org/pub/OFL/Reproduction", },
+ { "cc:permits", "http://scripts.sil.org/pub/OFL/Distribution", },
+ { "cc:permits", "http://scripts.sil.org/pub/OFL/Embedding", },
+ { "cc:permits", "http://scripts.sil.org/pub/OFL/DerivativeWorks", },
+ { "cc:requires", "http://scripts.sil.org/pub/OFL/Notice", },
+ { "cc:requires", "http://scripts.sil.org/pub/OFL/Attribution", },
+ { "cc:requires", "http://scripts.sil.org/pub/OFL/ShareAlike", },
+ { "cc:requires", "http://scripts.sil.org/pub/OFL/DerivativeRenaming", },
+ { "cc:requires", "http://scripts.sil.org/pub/OFL/BundlingWhenSelling", },
+ { NULL, NULL }
+};
+
struct rdf_license_t rdf_licenses [] = {
{ N_("CC Attribution"),
"http://creativecommons.org/licenses/by/3.0/",
@@ -205,6 +218,11 @@ struct rdf_license_t rdf_licenses [] = {
rdf_license_freeart,
},
+ { N_("Open Font License"),
+ "http://scripts.sil.org/OFL",
+ rdf_license_ofl,
+ },
+
{ NULL, NULL, rdf_license_empty, }
};