From 972c7a13f66012092e3e4db89b76ee7e85166991 Mon Sep 17 00:00:00 2001 From: Oliver Tacke Date: Thu, 28 Jun 2018 11:44:01 +0200 Subject: [PATCH] HFP-2074 Remove CC prefix in license names Now that the optgroup feature is in place, the prefix is obsolete --- h5p.classes.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/h5p.classes.php b/h5p.classes.php index 184082e..9d21c50 100644 --- a/h5p.classes.php +++ b/h5p.classes.php @@ -4174,37 +4174,37 @@ class H5PContentValidator { 'options' => [ (object) array( 'value' => 'CC BY', - 'label' => $this->h5pF->t('CC Attribution'), + 'label' => $this->h5pF->t('Attribution'), 'versions' => $cc_versions ), (object) array( 'value' => 'CC BY-SA', - 'label' => $this->h5pF->t('CC Attribution-ShareAlike'), + 'label' => $this->h5pF->t('Attribution-ShareAlike'), 'versions' => $cc_versions ), (object) array( 'value' => 'CC BY-ND', - 'label' => $this->h5pF->t('CC Attribution-NoDerivs'), + 'label' => $this->h5pF->t('Attribution-NoDerivs'), 'versions' => $cc_versions ), (object) array( 'value' => 'CC BY-NC', - 'label' => $this->h5pF->t('CC Attribution-NonCommercial'), + 'label' => $this->h5pF->t('Attribution-NonCommercial'), 'versions' => $cc_versions ), (object) array( 'value' => 'CC BY-NC-SA', - 'label' => $this->h5pF->t('CC Attribution-NonCommercial-ShareAlike'), + 'label' => $this->h5pF->t('Attribution-NonCommercial-ShareAlike'), 'versions' => $cc_versions ), (object) array( 'value' => 'CC BY-NC-ND', - 'label' => $this->h5pF->t('CC Attribution-NonCommercial-NoDerivs'), + 'label' => $this->h5pF->t('Attribution-NonCommercial-NoDerivs'), 'versions' => $cc_versions ), (object) array( 'value' => 'CC0 1.0', - 'label' => $this->h5pF->t('CC Public Domain Dedication') + 'label' => $this->h5pF->t('Public Domain Dedication') ), (object) array( 'value' => 'CC PDM',