mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-12 14:39:31 -06:00
38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
return [
|
|
'add-option' => 'Add Option',
|
|
'already-voted-error' => 'You have already voted on this poll. Your vote has not been counted.',
|
|
'already-voted-result' => 'You have already voted on this poll. Here are the results.',
|
|
'expired-voted-result' => 'This poll is expired. Here are the results.',
|
|
'create-poll' => 'Create Poll',
|
|
'current' => 'Current Poll(s)',
|
|
'delete-option' => 'Delete Option',
|
|
'edit-poll' => 'Edit Poll',
|
|
'multiple-choice' => 'This is a multiple choice poll. Select as many answers as you like.',
|
|
'option' => 'Option',
|
|
'poll' => 'Poll',
|
|
'polls' => 'Polls',
|
|
'results' => 'Poll Results',
|
|
'title' => 'Title',
|
|
'total' => 'Total Votes Ever',
|
|
'vote' => 'Vote',
|
|
'vote-counted' => 'Your vote has been counted.',
|
|
'vote-now' => 'Get Your Vote In Now!',
|
|
'votes' => 'Votes',
|
|
'close-date' => 'Close Poll after',
|
|
];
|