diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-16 15:46:07 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-16 15:46:07 +0000 |
commit | 99a301cd791d767c2b6ee9e2ff608ad9cbf1d281 (patch) | |
tree | 13fb4d61b2269de6af4c8fe51fc8e884f292ecea /mod/ecml/languages/en.php | |
parent | c32f43bcac8ff4493ce387b078a57ba4fdd57063 (diff) | |
download | elgg-99a301cd791d767c2b6ee9e2ff608ad9cbf1d281.tar.gz elgg-99a301cd791d767c2b6ee9e2ff608ad9cbf1d281.tar.bz2 |
ECML now only requires a single square bracket.
git-svn-id: http://code.elgg.org/elgg/trunk@5775 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/ecml/languages/en.php')
-rw-r--r-- | mod/ecml/languages/en.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/mod/ecml/languages/en.php b/mod/ecml/languages/en.php index 2d1b873ad..2b9b9118b 100644 --- a/mod/ecml/languages/en.php +++ b/mod/ecml/languages/en.php @@ -19,45 +19,45 @@ $english = array( // keywords 'ecml:keywords:desc:entity' => 'Displays a list of any Elgg entity.', - 'ecml:keywords:usage:entity' => '[[entity]] supports all options in elgg_get_entities()', + 'ecml:keywords:usage:entity' => '[entity] supports all options in elgg_get_entities()', 'ecml:keywords:desc:view' => 'Displays any Elgg view.', - 'ecml:keywords:usage:view' => '[[view src="valid/view" arg1=value1 arg2=value2]]', + 'ecml:keywords:usage:view' => '[view src="valid/view" arg1=value1 arg2=value2]', 'ecml:keywords:desc:googlemaps' => 'Embed a Google Map.', - 'ecml:keywords:usage:entity' => '[[googlemaps src="URL"]] Use the link code from Google Maps as the src.', + 'ecml:keywords:usage:entity' => '[googlemaps src="URL"] Use the link code from Google Maps as the src.', 'ecml:keywords:desc:slideshare' => 'Embed a Slideshare slide.', - 'ecml:keywords:usage:entity' => '[[slideshare id="slideshare_id"]] Use the Wordpress.com embed code, but make sure there are two [s and ]s surrounding it!', + 'ecml:keywords:usage:entity' => '[slideshare id="slideshare_id"] Use the Wordpress.com embed code.', 'ecml:keywords:desc:vimeo' => 'Embed a Vimeo video.', - 'ecml:keywords:usage:videmo' => '[[videmo src="URL"]] Use a standard Vimeo URL as the source.', + 'ecml:keywords:usage:videmo' => '[videmo src="URL"] Use a standard Vimeo URL as the source.', 'ecml:keywords:desc:youtube' => 'Embed a YouTube video.', - 'ecml:keywords:usage:entity' => '[[youtube src="URL"]] Use a standard YouTube URL as the source.', + 'ecml:keywords:usage:entity' => '[youtube src="URL"] Use a standard YouTube URL as the source.', // keyword help 'ecml:keywords_title' => 'Keywords', 'ecml:keywords_instructions' => 'Keywords are replaced with content when viewed. They must be surrounded by - two square brackets ([[ and ]]). You can build your own or use the ones listed below. + square brackets ([ and ]). You can build your own or use the ones listed below. Hover over a keyword to read its description.', 'ecml:keywords_instructions_more' => ' <p>You can build your own keywords for views and entities.</p> - <p>[[entity: type=type, subtype=subtype, owner=username, limit=number]]<br /> + <p>[entity: type=type, subtype=subtype, owner=username, limit=number]<br /> EX: To show 5 blog posts by admin:<br /> - [[entity: type=object, subtype=blog, owner=admin, limit=5]]</p> + [entity: type=object, subtype=blog, owner=admin, limit=5]</p> <p>You can also specify a valid Elgg view:<br /> - [[view: elgg_view, name=value]]</p> + [view: elgg_view, name=value]</p> <p>Ex: To show a text input with a default value:<br /> - [[view: input/text, value=This is a default value]]</p>', + [view: input/text, value=This is a default value]</p>', // admin 'ecml:admin:admin' => 'ECML Permissions', |