CreativeCommons.vala 282 B

12345678910
  1. namespace Publicate.Licences {
  2. public abstract class CreativeCommons : Licence {
  3. public override string generate_copyright (string holder, string year) {
  4. return @"Copyright © $year $holder, This work is licensed under a $name License.";
  5. }
  6. }
  7. }