123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- $english = array(
-
- /**
- * Menu items and titles
- */
-
- 'poll' => "Poll",
- 'polls:add' => "New Poll",
- 'polls' => "Polls",
- 'polls:votes' => "votes",
- 'polls:user' => "%s's poll",
- 'polls:group_polls' => "Group polls",
- 'polls:group_polls:listing:title' => "%s's polls",
- 'polls:user:friends' => "%s's friends' poll",
- 'polls:your' => "Your polls",
- 'polls:not_me' => "%s's polls",
- 'polls:posttitle' => "%s's polls: %s",
- 'polls:friends' => "Friends' polls",
- 'polls:not_me_friends' => "%s's friend's polls",
- 'polls:yourfriends' => "Your friends' latest polls",
- 'polls:everyone' => "All site polls",
- 'polls:read' => "Read poll",
- 'polls:addpost' => "Create a poll",
- 'polls:editpost' => "Edit a poll: %s",
- 'polls:edit' => "Edit a poll",
- 'polls:text' => "Poll text",
- 'polls:strapline' => "%s",
- 'item:object:poll' => 'Polls',
- 'item:object:poll_choice' => "Poll choices",
- 'polls:question' => "Poll question",
- 'polls:responses' => "Response choices (10 max)",
- 'polls:results' => "[+] Show the results",
- 'polls:show_results' => "Show results",
- 'polls:show_poll' => "Show poll",
- 'polls:add_choice' => "Add response choice",
- 'polls:delete_choice' => "Delete this choice",
- 'polls:settings:group:title' => "Group polls",
- 'polls:settings:group_polls_default' => "yes, on by default",
- 'polls:settings:group_polls_not_default' => "yes, off by default",
- 'polls:settings:no' => "no",
- 'polls:settings:group_profile_display:title' => "If group polls are activated, where should polls content be displayed in group profiles?",
- 'polls:settings:group_profile_display_option:left' => "left",
- 'polls:settings:group_profile_display_option:right' => "right",
- 'polls:settings:group_profile_display_option:none' => "none",
- 'polls:settings:group_access:title' => "If group polls are activated, who gets to create polls?",
- 'polls:settings:group_access:admins' => "group owners and admins only",
- 'polls:settings:group_access:members' => "any group member",
- 'polls:settings:front_page:title' => "Admins can set a front page poll (requires theme support)",
- 'polls:none' => "No polls found.",
- 'polls:permission_error' => "You do not have permission to edit this poll.",
- 'polls:vote' => "Vote",
- 'polls:login' => "Please login if you would like to vote in this poll.",
- 'group:polls:empty' => "No polls",
- 'polls:settings:site_access:title' => "Who can create site-wide polls?",
- 'polls:settings:site_access:admins' => "Admins only",
- 'polls:settings:site_access:all' => "Any logged-in user",
- 'polls:can_not_create' => "You do not have permission to create polls.",
- 'polls:front_page_label' => "Place this poll on the front page.",
- /**
- * poll widget
- **/
- 'polls:latest_widget_title' => "Latest community polls",
- 'polls:latest_widget_description' => "Displays the most recent polls.",
- 'polls:my_widget_title' => "My polls",
- 'polls:my_widget_description' => "This widget will display your polls.",
- 'polls:widget:label:displaynum' => "How many polls you want to display?",
- 'polls:individual' => "Latest poll",
- 'poll_individual_group:widget:description' => "Display the latest poll for this group.",
- 'poll_individual:widget:description' => "Display your latest poll",
- 'polls:widget:no_polls' => "There are no polls for %s yet.",
- 'polls:widget:nonefound' => "No polls found.",
- 'polls:widget:think' => "Let %s know what you think!",
- 'polls:enable_polls' => "Enable polls",
- 'polls:group_identifier' => "(in %s)",
- 'polls:noun_response' => "response",
- 'polls:noun_responses' => "responses",
- 'polls:settings:yes' => "yes",
- 'polls:settings:no' => "no",
- // notifications
- 'polls:notify:summary' => 'New poll called %s',
- 'polls:notification' =>
- '
- %s created a poll.
- %s
- View and vote on the new poll:
- %s
- ',
-
- /**
- * poll river
- **/
- 'polls:settings:create_in_river:title' => "Show poll creation in activity river",
- 'polls:settings:vote_in_river:title' => "Show poll voting in activity river",
- 'polls:settings:send_notification:title' => "Send notification when poll is created",
- 'river:create:object:poll' => '%s created a poll %s',
- 'river:vote:object:poll' => '%s voted on the poll %s',
- 'river:comment:object:poll' => '%s commented on the poll %s',
- /**
- * Status messages
- */
-
- 'polls:added' => "Your poll was created.",
- 'polls:edited' => "Your poll was saved.",
- 'polls:responded' => "Thank you for responding, your vote was recorded.",
- 'polls:deleted' => "Your poll was successfully deleted.",
- 'polls:totalvotes' => "Total number of votes: ",
- 'polls:voted' => "Your vote has been cast for this poll. Thank you for voting on this poll.",
-
-
- /**
- * Error messages
- */
-
- 'polls:save:failure' => "Your poll could not be saved. Please try again.",
- 'polls:blank' => "Sorry: you need to fill in both the question and responses before you can make a poll.",
- 'polls:novote' => "Sorry: you need to choose an option to vote in this poll.",
- 'polls:notfound' => "Sorry: we could not find the specified poll.",
- 'polls:nonefound' => "No polls were found from %s",
- 'polls:notdeleted' => "Sorry: we could not delete this poll."
- );
-
- add_translation("en",$english);
- ?>
|