. * * PHP version 5 * @copyright cgo IT, 2012-2013 * @author Carsten Götzinger (info@cgo-it.de) * @package aeo * @license GNU/LGPL * @filesource */ /** * Name */ $GLOBALS['TL_LANG']['tl_settings']['rateit'] = "Rate It"; /** * legends */ $GLOBALS['TL_LANG']['tl_settings']['rateit_legend'] = 'Rate It-Settings'; /** * fields */ $GLOBALS['TL_LANG']['tl_settings']['rating_type'] = array('Type', 'Type of representation. Possible options are the "hearts" or "stars".'); $GLOBALS['TL_LANG']['tl_settings']['rating_count'] = array('Number of hearts/stars', 'Number of hearts/stars which are shown.'); $GLOBALS['TL_LANG']['tl_settings']['rating_textposition'] = array('Text position', 'Specifies whether the text should appear above or below the hearts or stars.'); $GLOBALS['TL_LANG']['tl_settings']['rating_listsize'] = array('number of entries', 'Number of entries displayed per page in the representation of ratings in the backend.'); $GLOBALS['TL_LANG']['tl_settings']['allow_duplicate_ratings'] = array('Allow Duplicate votes', 'The same ip address may vote more than once for the same rating?'); $GLOBALS['TL_LANG']['tl_settings']['allow_duplicate_ratings_for_members'] = array('Allow Duplicate votes for members', 'A logged in frontend user may vote more than once for the same rating?'); $GLOBALS['TL_LANG']['tl_settings']['rating_template'] = array('Template', 'Here you can select the template for the rating.'); $GLOBALS['TL_LANG']['tl_settings']['rating_description'] = array('Label', 'Label for ratings. Variables are replaced
available variables:
%current% - current rating
%max% - max. possible rating
%type% - type of rating (hearts/stars)
%count% - number of votes
[singular|plural] - Text for votes

examples:
%current%/%max% (%count% [vote|votes]) returns 3.7/5 stars (7 votes)
%count% [Like|Likes] returns 1 Like or 4 Likes'); /** * options */ $GLOBALS['TL_LANG']['tl_settings']['hearts'] = array('hearts', 'Illustration with hearts'); $GLOBALS['TL_LANG']['tl_settings']['stars'] = array('stars', 'Illustration with stars'); $GLOBALS['TL_LANG']['tl_settings']['1'] = array('1', '1'); $GLOBALS['TL_LANG']['tl_settings']['5'] = array('5', '5'); $GLOBALS['TL_LANG']['tl_settings']['10'] = array('10', '10'); $GLOBALS['TL_LANG']['tl_settings']['before'] = array('above', 'Display the text above the hearts/stars'); $GLOBALS['TL_LANG']['tl_settings']['after'] = array('below', 'Display the text below the heart / star'); ?>