mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
22 lines
647 B
PHP
22 lines
647 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$lang_polloverview = array
|
||
|
|
(
|
||
|
|
'std_error' => "Fehler",
|
||
|
|
'head_poll_overview' => "Umfrageübersicht",
|
||
|
|
'text_polls_overview' => "Umfrageübersicht",
|
||
|
|
'col_id' => "ID",
|
||
|
|
'col_added' => "Hinzugefügt",
|
||
|
|
'col_question' => "Frage",
|
||
|
|
'text_no_users_voted' => "Entschuldigung...Es gibt keine Benutzer, die abgestimmt haben!",
|
||
|
|
'text_no_poll_id' => "Entschuldigung...Es gibt keine Umfragen mit dieser ID!",
|
||
|
|
'text_poll_question' => "Umfragefragen",
|
||
|
|
'col_option_no' => "Option Nein",
|
||
|
|
'col_options' => "Optionen",
|
||
|
|
'text_polls_user_overview' => "Umfrage Benutzerübersicht",
|
||
|
|
'col_username' => "Benutzername",
|
||
|
|
'col_selection' => "Auswahl",
|
||
|
|
);
|
||
|
|
|
||
|
|
?>
|