mirror of
https://github.com/BillyOutlast/UNIT3D.git
synced 2026-02-04 03:01:20 +01:00
38 lines
1.6 KiB
PHP
38 lines
1.6 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' => 'Añadir opción',
|
|
'already-voted-error' => 'Ya has votado en esta encuesta. Tu voto no ha sido contado.',
|
|
'already-voted-result' => 'Ya has votado en esta encuesta. Aquí están los resultados.',
|
|
'expired-voted-result' => 'Esta encuesta ha caducado. Aquí están los resultados.',
|
|
'create-poll' => 'Crear encuesta',
|
|
'current' => 'Encuesta(s) actual(es)',
|
|
'delete-option' => 'Opción de eliminar',
|
|
'edit-poll' => 'Editar encuesta',
|
|
'multiple-choice' => 'Esta es una encuesta de múltiple opción. Selecciona tantas respuestas como desees.',
|
|
'option' => 'Opción',
|
|
'poll' => 'Encuesta',
|
|
'polls' => 'Encuestas',
|
|
'results' => 'Resultados de la Encuesta',
|
|
'title' => 'Título',
|
|
'total' => 'Votos totales',
|
|
'vote' => 'Votar',
|
|
'vote-counted' => 'Tu voto ha sido contado.',
|
|
'vote-now' => '¡Vota ahora!',
|
|
'votes' => 'Votos',
|
|
'close-date' => 'Cerrar la encuesta después de',
|
|
];
|