~ubuntu-branches/ubuntu/maverick/mahara/maverick-updates

« back to all changes in this revision

Viewing changes to htdocs/blocktype/externalfeed/lang/en.utf8/blocktype.externalfeed.php

  • Committer: Bazaar Package Importer
  • Author(s): Nigel McNie
  • Date: 2008-04-29 11:15:39 UTC
  • Revision ID: james.westby@ubuntu.com-20080429111539-b28eqkagavaub2zr
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Mahara: Electronic portfolio, weblog, resume builder and social networking
 
4
 * Copyright (C) 2006-2008 Catalyst IT Ltd (http://www.catalyst.net.nz)
 
5
 *
 
6
 * This program is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 *
 
19
 * @package    mahara
 
20
 * @subpackage blocktype-externalfeeds
 
21
 * @author     Catalyst IT Ltd
 
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL
 
23
 * @copyright  (C) 2006-2008 Catalyst IT Ltd http://catalyst.net.nz
 
24
 *
 
25
 */
 
26
 
 
27
defined('INTERNAL') || die();
 
28
 
 
29
$string['title'] = 'External Feed';
 
30
$string['description'] = 'Embed an external RSS or ATOM feed';
 
31
$string['feedlocation'] = 'Feed location';
 
32
$string['feedlocationdesc'] = 'URL of a valid RSS or ATOM feed';
 
33
$string['showfeeditemsinfull'] = 'Show feed items in full?';
 
34
$string['showfeeditemsinfulldesc'] = 'Whether to show a summary of the feed items, or show the description for each one too';
 
35
$string['invalidurl'] = 'That URL is invalid. You can only view feeds for http and https URLs.';
 
36
$string['invalidfeed'] = 'The feed appears to be invalid. The error reported was: %s';
 
37
$string['lastupdatedon'] = 'Last updated on %s';
 
38
$string['defaulttitledescription'] = 'If you leave this blank, the title of the feed will be used';
 
39
?>