<?php 
defined('C5_EXECUTE') or die(_("Access Denied."));
/**
 * Pirate Speak by John Liddiard (aka JohntheFish)
 * www.jlunderwater.co.uk, www.c5magic.co.uk
 * This software is licensed under the terms described in the concrete5.org marketplace.
 * Please find the add-on there for the latest license copy.
 */
 
class JlPirateSpeakPackage extends Package {

	protected $pkgHandle = 'jl_pirate_speak';
	protected $appVersionRequired = '5.5';
	protected $pkgVersion = '1.1';

	public function getPackageDescription() {
		return t('Translate to Pirate Speak with a template for the Content block or using a plugin for %sUniversal Content Puller%s or symbol for %sMagic Data%s, or use the enclosed helper for further development.',
					'<a href="http://www.concrete5.org/marketplace/addons/universal-content-puller/">',
					'</a>',
					'<a href="http://www.concrete5.org/marketplace/addons/magic-data/">',
					'</a>'
					);
	}

	public function getPackageName() {
		return t('Pirate Speak');
	}

	public function install() {
		$pkg = parent::install();
	}

}