You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.5 KiB
66 lines
2.5 KiB
<?php
|
|
|
|
/**
|
|
* ECSHOP Vote management
|
|
* ============================================================================
|
|
* All right reserved (C) 2005-2016 Shanghai Yi Shang Chuang Technology
|
|
* Development Ltd.
|
|
* Web site: http://www.ecmoban.com
|
|
* ----------------------------------------------------------------------------
|
|
* This is a free/open source software;it means that you can modify, use and
|
|
* republish the program code, on the premise of that your behavior is not for
|
|
* commercial purposes.
|
|
* ============================================================================
|
|
* $Author: liubo $
|
|
* $Id: vote.php 17217 2011-01-19 06:29:08Z liubo $
|
|
*/
|
|
|
|
/* to survey field */
|
|
$_LANG['vote_id'] = 'ID';
|
|
$_LANG['vote_name'] = 'Name';
|
|
$_LANG['show_position'] = 'Display the position.';
|
|
$_LANG['begin_date'] = 'Start date';
|
|
$_LANG['end_date'] = 'Deadline';
|
|
$_LANG['can_multi'] = 'Multiple-select';
|
|
$_LANG['is_multi'] = 'Yes';
|
|
$_LANG['no_multi'] = 'No';
|
|
$_LANG['show_index'] = 'Home';
|
|
$_LANG['goodslist'] = 'Product list page.';
|
|
|
|
$_LANG['no_vote_name'] = 'Please add online vote';
|
|
$_LANG['no_option_name'] = 'There is no option in the vote';
|
|
|
|
$_LANG['list_vote'] = 'Online Vote List.';
|
|
$_LANG['add_vote'] = 'Add Vote Name';
|
|
$_LANG['edit_vote'] = 'Edit vote';
|
|
$_LANG['list_vote_option'] = 'Vote option';
|
|
$_LANG['add_vote_option'] = 'Add vote option';
|
|
$_LANG['vote_option'] = 'Vote option';
|
|
$_LANG['vote_name_empty'] = 'Vote name is can\'t be blank!';
|
|
$_LANG['date_error'] = 'Start date should not later than the end date!';
|
|
$_LANG['back_list'] = 'Return to vote list.';
|
|
$_LANG['continue_add_option'] = 'Continue add vote option.';
|
|
$_LANG['continue_add_vote'] = 'Continue add vote';
|
|
$_LANG['edit_option_order'] = 'edit the order of options';
|
|
|
|
|
|
/* prompting message */
|
|
$_LANG['vote_name_exist'] = 'Vote name is existed!';
|
|
$_LANG['vote_option_exist'] = 'Vote option is existed!';
|
|
$_LANG['add_option_error'] = 'Error!';
|
|
|
|
/* js languages field */
|
|
$_LANG['js_languages']['vote_name_empty'] = 'Vote name can\'t be blank!';
|
|
$_LANG['js_languages']['option_name_empty'] = 'Vote name option can\'t be blank!';
|
|
$_LANG['js_languages']['drop_confirm'] = 'Are you sure delete the record?';
|
|
$_LANG['js_languages']['drop'] = 'Delete';
|
|
|
|
/* option of vote field */
|
|
$_LANG['option_id'] = 'Option ID';
|
|
$_LANG['vote_id'] = 'Vote ID';
|
|
$_LANG['option_name'] = 'Vote option';
|
|
$_LANG['vote_count'] = 'Total votes';
|
|
$_LANG['option_order'] = 'Options Order';
|
|
$_LANG['option_name_empty'] = 'Vote option can\'t be blank!';
|
|
|
|
?>
|