diff --git a/uvote/page/user_main_poll/user_main_poll.php b/uvote/page/user_main_poll/user_main_poll.php
index 892aabe..e4377d9 100644
--- a/uvote/page/user_main_poll/user_main_poll.php
+++ b/uvote/page/user_main_poll/user_main_poll.php
@@ -41,7 +41,7 @@ class user_main_poll extends SYSTEM\PAGE\Page {
$var['disclaimer'] = 'Keine differenzierten Ergebnisse für den Bundestag verfügbar';
$var['choice'] = switchers::tablerow_class($info['bt_choice']);
$var['choice_full'] = switchers::tablerow_class($info['bt_choice']);
- if ($var['choice_full'] == ''){
+ if ($var['choice_full'] == 'open'){
$var['choice_full'] = 'noch nicht';
}
return SYSTEM\PAGE\replace::replaceFile(SYSTEM\SERVERPATH(new PPAGE(),'user_main_poll/tpl/table_bt_choice.tpl'), $var);
diff --git a/uvote/sql/mysql/schema_uvote_votes_tag.sql b/uvote/sql/mysql/schema_uvote_votes_tag.sql
new file mode 100644
index 0000000..bc939af
--- /dev/null
+++ b/uvote/sql/mysql/schema_uvote_votes_tag.sql
@@ -0,0 +1,7 @@
+CREATE TABLE `uvote_votes_tag` (
+ `poll_ID` INT(10) NULL DEFAULT NULL,
+ `tag` CHAR(50) NULL DEFAULT NULL,
+ `group` INT(11) NULL DEFAULT NULL
+)
+COLLATE='utf8_general_ci'
+ENGINE=InnoDB;
diff --git a/uvote/sql/mysql/system.api.sql b/uvote/sql/mysql/system.api.sql
index 7be07d0..1042d64 100644
--- a/uvote/sql/mysql/system.api.sql
+++ b/uvote/sql/mysql/system.api.sql
@@ -1 +1,12 @@
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (100, 0, 2, 11, 'vote', 'poll_ID', 'UINT');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (101, 0, 2, 11, 'vote', 'vote', 'UINT');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (103, 0, 2, 10, 'load_tab', 'cat', 'ALL');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (102, 0, 2, 10, 'load_tab', 'set', 'ALL');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (111, 0, 2, 10, 'load_list', 'time', 'ALL');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (110, 0, 2, 10, 'load_list', 'filter', 'STRING');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (106, 0, 2, 11, 'vote_sub', 'vote', 'UINT');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (113, 0, 2, 10, 'load_list_text_search', 'text', 'STRING');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (12, 0, 0, 10, NULL, 'party', NULL);
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (105, 0, 2, 11, 'vote_sub', 'poll_ID', 'UINT');
INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (130, 1, 2, 1, 'user_main_poll', 'poll_ID', 'UINT');
+INSERT INTO `system_api` (`ID`, `group`, `type`, `parentID`, `parentValue`, `name`, `verify`) VALUES (104, 1, 2, 1, 'user_main_poll_sub', 'poll_ID', 'ALL');
diff --git a/uvote/sql/mysql/system_page.sql b/uvote/sql/mysql/system_page.sql
index f4fa8fa..8c9c550 100644
--- a/uvote/sql/mysql/system_page.sql
+++ b/uvote/sql/mysql/system_page.sql
@@ -1,3 +1,11 @@
-INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (10, 1, 'user_list', 'start', -1, 0, 0, '#user_list', './?page=user_list', 'init_user_list', 'user_list');
-INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (11, 1, 'user_main', 'start', -1, 0, 0, '#user_main', './?page=user_main', 'init_user_main', 'user_main');
-INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (25, 1, 'poll', 'start', 11, 0, 1, '#tab_main', './?page=user_main_poll&poll_ID=${poll}', 'init_poll', 'user_main_poll');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (11, 1, 'user_main', 'start', -1, 0, 0, '#user_main', './?page=user_main_start', 'init_user_main_start', 'user_main_start');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (20, 1, 'list', 'list', -1, 1, 0, '#user_main', './?page=user_main_votelist', 'init_user_main_votelist', 'user_main_votelist');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (21, 1, 'analysis', 'analysis', -1, 1, 0, '#user_main', './?page=user_main_analysis', 'init_user_main_analysis', 'user_main_analysis');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (22, 1, 'my', 'start', 11, 1, 1, '#user_main', './?page=user_main_options', 'init_user_main_options', 'user_main_options');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (23, 1, 'start', 'start', 11, 0, 1, '#user_main', './?page=user_main_start', 'init_user_main_start', 'user_main_start');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (25, 1, 'poll', 'start', 11, 0, 1, '#user_main', './?page=user_main_poll&poll_ID=${poll}', 'init_user_main_poll', 'user_main_poll');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (26, 1, 'imp', 'start', 11, 0, 1, '#user_main', './?page=user_main_impressum', 'init_user_main_impressum', 'user_main_impressum');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (27, 1, 'news', 'start', 11, 0, 1, '#loggedout_text', './?page=user_main_loggedout_news', '', '');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (28, 1, 'start', 'start', 11, 0, 1, '#loggedout_text', './?page=user_main_loggedout_start', '', '');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (29, 1, 'register', 'start', 11, 0, 1, '#user_main', './?page=default_register', '', '');
+INSERT INTO `system_page` (`id`, `group`, `name`, `state`, `parent_id`, `login`, `type`, `div`, `url`, `func`, `php_class`) VALUES (30, 1, 'poll_sub', 'start', 11, 0, 1, '#user_main', './?page=user_main_poll_sub&poll_ID=${poll}', 'init_user_main_poll_sub', 'user_main_poll_sub');
diff --git a/uvote/sql/mysql/system_text.sql b/uvote/sql/mysql/system_text.sql
index c1d4766..41f66dc 100644
--- a/uvote/sql/mysql/system_text.sql
+++ b/uvote/sql/mysql/system_text.sql
@@ -1,129 +1,203 @@
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_mail', 'deDE', 'z.B.: a.thoteles@polis.ath', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_mail', 'enUS', 'a.thoteles@polis.ath', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_name', 'deDE', 'z.B.: ari_384', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_name', 'enUS', 'ari_384', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_pass', 'deDE', 'CCCLXXXIV-MMXIV', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_pass', 'enUS', 'CCCLXXXIV-MMXIV', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('birthyear', 'deDE', 'Dein Geburtsjahr', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('bulletin_bars_title', 'deDE', 'Abstimmungsergebnisse', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('bulletin_party_choice_title', 'deDE', 'Entscheidung nach Fraktionen', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('children', 'deDE', 'Hast du Kinder?', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('fade', 'deDE', 'Überblick', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('female', 'deDE', 'weiblich', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('gender', 'deDE', 'Dein Geschlecht', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_1', 'deDE', '1. Inhalt des Onlineangebotes
Der Autor übernimmt keinerlei Gewähr für die Aktualität, Korrektheit, Vollständigkeit oder Qualität der bereitgestellten Informationen. Haftungsansprüche gegen den Autor, welche sich auf Schäden materieller oder ideeller Art beziehen, die durch die Nutzung oder Nichtnutzung der dargebotenen Informationen bzw. durch die Nutzung fehlerhafter und unvollständiger Informationen verursacht wurden, sind grundsätzlich ausgeschlossen, sofern seitens des Autors kein nachweislich vorsätzliches oder grob fahrlässiges Verschulden vorliegt.
Alle Angebote sind freibleibend und unverbindlich. Der Autor behält es sich ausdräcklich vor, Teile der Seiten oder das gesamte Angebot ohne gesonderte Ankändigung zu verändern, zu ergänzen, zu löschen oder die Veröffentlichung zeitweise oder endgültig einzustellen.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_2', 'deDE', '2. Verweise und Links
Bei direkten oder indirekten Verweisen auf fremde Webseiten (Hyperlinks), die außerhalb des Verantwortungsbereiches des Autors liegen, würde eine Haftungsverpflichtung ausschließlich in dem Fall in Kraft treten, in dem der Autor von den Inhalten Kenntnis hat und es ihm technisch möglich und zumutbar wäre, die Nutzung im Falle rechtswidriger Inhalte zu verhindern.
Der Autor erklärt hiermit ausdrücklich, dass zum Zeitpunkt der Linksetzung keine illegalen Inhalte auf den zu verlinkenden Seiten erkennbar waren. Auf die aktuelle und zukünftige Gestaltung, die Inhalte oder die Urheberschaft der verlinkten/verknüpften Seiten hat der Autor keinerlei Einfluss. Deshalb distanziert er sich hiermit ausdrücklich von allen Inhalten aller verlinkten /verknüpften Seiten, die nach der Linksetzung verändert wurden. Diese Feststellung gilt für alle innerhalb des eigenen Internetangebotes gesetzten Links und Verweise sowie für Fremdeinträge in vom Autor eingerichteten Gästebüchern, Diskussionsforen, Linkverzeichnissen, Mailinglisten und in allen anderen Formen von Datenbanken, auf deren Inhalt externe Schreibzugriffe möglich sind. Für illegale, fehlerhafte oder unvollständige Inhalte und insbesondere für Schäden, die aus der Nutzung oder Nichtnutzung solcherart dargebotener Informationen entstehen, haftet allein der Anbieter der Seite, auf welche verwiesen wurde, nicht derjenige, der über Links auf die jeweilige Veröffentlichung lediglich verweist.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_3', 'deDE', '3. Urheber- und Kennzeichenrecht
Der Autor ist bestrebt, in allen Publikationen die Urheberrechte der verwendeten Grafiken, Tondokumente, Videosequenzen und Texte zu beachten, von ihm selbst erstellte Grafiken, Tondokumente, Videosequenzen und Texte zu nutzen oder auf lizenzfreie Grafiken, Tondokumente, Videosequenzen und Texte zurückzugreifen.
Alle innerhalb des Internetangebotes genannten und ggf. durch Dritte geschätzten Marken- und Warenzeichen unterliegen uneingeschränkt den Bestimmungen des jeweils gültigen Kennzeichenrechts und den Besitzrechten der jeweiligen eingetragenen Eigentümer. Allein aufgrund der bloßen Nennung ist nicht der Schluss zu ziehen, dass Markenzeichen nicht durch Rechte Dritter geschützt sind!
Das Copyright für veröffentlichte, vom Autor selbst erstellte Objekte bleibt allein beim Autor der Seiten. Eine Vervielfältigung oder Verwendung solcher Grafiken, Tondokumente, Videosequenzen und Texte in anderen elektronischen oder gedruckten Publikationen ist ohne ausdrückliche Zustimmung des Autors nicht gestattet.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_4', 'deDE', '4. Datenschutz
Sofern innerhalb des Internetangebotes die Möglichkeit zur Eingabe persönlicher oder geschäftlicher Daten (Emailadressen, Namen, Anschriften) besteht, so erfolgt die Preisgabe dieser Daten seitens des Nutzers auf ausdrücklich freiwilliger Basis. Die Inanspruchnahme und Bezahlung aller angebotenen Dienste ist - soweit technisch möglich und zumutbar - auch ohne Angabe solcher Daten bzw. unter Angabe anonymisierter Daten oder eines Pseudonyms gestattet. Die Nutzung der im Rahmen des Impressums oder vergleichbarer Angaben veröffentlichten Kontaktdaten wie Postanschriften, Telefon- und Faxnummern sowie Emailadressen durch Dritte zur Übersendung von nicht ausdrücklich angeforderten Informationen ist nicht gestattet. Rechtliche Schritte gegen die Versender von sogenannten Spam-Mails bei Verstössen gegen dieses Verbot sind ausdrücklich vorbehalten.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_5', 'deDE', '5. Rechtswirksamkeit dieses Haftungsausschlusses
Dieser Haftungsausschluss ist als Teil des Internetangebotes zu betrachten, von dem aus auf diese Seite verwiesen wurde. Sofern Teile oder einzelne Formulierungen dieses Textes der geltenden Rechtslage nicht, nicht mehr oder nicht vollständig entsprechen sollten, bleiben die übrigen Teile des Dokumentes in ihrem Inhalt und ihrer Gültigkeit davon unberührt.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_header', 'deDE', 'Webcraft Media G.b.R.
Ansprechpartner
Tobias Rechel
Bahnhofstraße 59
69115 Heidelberg
t.rechel@gmx.de
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('locale', 'deDE', 'Sprache', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('locale', 'enUS', 'language', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('location', 'deDE', 'Dein Bundesland', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('login', 'deDE', 'Einloggen', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('login', 'enUS', 'login', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('mail_format_wrong', 'deDE', 'Keine valide E-Mail Addresse', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('mail_format_wrong', 'enUS', 'no valid e-mail address', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('male', 'deDE', 'männlich', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('myvote_bodytext', 'deDE', 'An dieser Stelle habt ihr die Möglichkeit, an der Qualität von
uVote mitzuwirken.
\n
Diese zusätzlichen Daten ermöglichen uns eine genauere
Analyse der Abstimmungen,
und verbessern damit die Qualität unserer Ergebnisse.
Die Angabe von persöhnlichen Daten erfolgt gemäß unserer
Datenschutzbestimmung freiwillig.
Einmal angegebene Daten können jederzeit über die Eingabemaske
widerrufen werden.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('no', 'deDE', 'Nein', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('none', 'deDE', 'keins von beidem', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('no_data', 'deDE', 'keine Angabe', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('openvote_help_text', 'deDE', 'Hier kannst du zum ', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('openvote_help_text1', 'deDE', ' abstimmen.
Statistiken, Daten und Abstimmungsergebnisse werden dir angezeigt,
sobald du das erste mal deine Stimme abgegeben hast.', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register', 'deDE', 'Registrieren', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register', 'enUS', 'Account create', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_email_required', 'deDE', 'Bitte E-Mail Addresse angeben', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_email_required', 'enUS', 'e-mail address required', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_password_dont_match', 'deDE', 'Passwörter stimmen nicht überein', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_password_dont_match', 'enUS', 'passwords don\'t match', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_password_required', 'deDE', 'Passwort benötigt', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_password_required', 'enUS', 'password required', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_password_too_short', 'deDE', 'Das Passwort ist zu kurz', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_password_too_short', 'enUS', 'password too short', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_user_name_required', 'deDE', 'Benutzernamen angeben', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_user_name_required', 'enUS', 'username required', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_user_name_too_long', 'deDE', 'Benutzername ist zu lang', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_user_name_too_long', 'enUS', 'username too long', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_user_name_too_short', 'deDE', 'Der Benutzername ist zu kurz', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_user_name_too_short', 'enUS', 'username too short', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_user_password_too_long', 'deDE', 'Passwort ist zu lang', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register_user_password_too_long', 'enUS', 'password too long', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('submit', 'deDE', 'Absenden', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_bars_user', 'deDE', '
uVote', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_body_text', 'deDE', 'An dieser Stelle findest du deinen persöhnlichen politischen Kompass.
Hier kannst du deine Meinung mit der aktuellen Politik vergleichen, analysieren und bewerten.
Schwimmst du gegen den Strom? Vertreten die Parlamentarier deine Meinung?
Finde es hier heraus
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_party_table_desc', 'deDE', 'Ergebnis, aufgeschlüsselt nach Fraktionen', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urVote_title', 'deDE', 'Hier findest du die Analyse deiner persöhnlichen Daten', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urVote_title', 'enUS', 'Test', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urVote_user_party_compare', 'deDE', 'Gesamtübereinstimmung mit den Bundestagsfraktionen
(auf %-Zahlen klicken fuer Details)', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_email_login', 'deDE', 'E-Mail', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_email_login', 'enUS', 'e-Mail', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_email_register', 'deDE', 'E-Mail', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_email_register', 'enUS', 'e-mail', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_name_login', 'deDE', 'Benutzername', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_name_login', 'enUS', 'username', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_name_register', 'deDE', 'Dein Benutzername', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_name_register', 'enUS', 'username', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_login', 'deDE', 'Passwort', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_login', 'enUS', 'password', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_register', 'deDE', 'Passwort', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_register', 'enUS', 'password', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_register_repeat', 'deDE', 'Passwort wiederholen', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_register_repeat', 'enUS', 'repeat password', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('uVote_overall_votes_title', 'deDE', '
Insgesamt
\n
abgegebene Stimmen
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
-INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('welcome_text', 'deDE', '
Willkommen auf uVote.
Zurzeit befinden wir uns in der "prä-Beta" Phase.
Das heisst, dass einige Funktionen im Moment noch nicht vollständig funktionieren,
bzw. sogar noch nicht implementiert sind.
Um so wichtiger ist es, dass ihr uns durch Feedback helft die Seite intuitiv und einfach zu gestalten,
Fehler zu finden und zu beheben, und ganz generell die erhobenen Daten unseren Nutzern
möglichst einfach wiedergeben zu können.
Daher freuen wir uns über jede auch noch so kleine Anregung und hoffen,
dass euch
uVote in Zukunft als politischer Kompass gute Dienste leisten kann.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('yes', 'deDE', 'Ja', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('welcome_text_loggedin', 'deDE', '
und willkommen in der Beta.
Wo stehst du politisch? Passen die Entscheidungen deiner Fraktionen dazu? Und was genau arbeiten die Abgeordneten im Bundestag eigentlich?
Das alles, und viel mehr erfährst du hier.
', 13, 13, '2015-10-16 13:20:03', '2015-10-16 13:20:03');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('welcome_text', 'deDE', '
Über das Projekt
was kann uvote?
uvote.eu misst die Arbeit des Bundestags und dessen Fraktionen und ermöglicht dir den Vergleich mit deiner eigenen politischen Agenda.
wie funktioniert das?
Die Auswertung deiner Daten liefert objektive Messwerte der Übereinstimmung deiner politischen Meinung mit den Entscheidungen des Bundestags und der Parteien.
wo ist der Vorteil?
Anstatt die Parteien an ihren Programmen oder Aussagen zu messen, basieren die Daten von uvote.eu auf den tatsächlich getroffenen Entscheidungen. Mit uvote hast du ohne selbst Aufwand zu betreiben das reale Verhalten deiner Vertreter im Blick, und den schnellen Vergleich mit deiner eigenen Meinung an der Hand.', 0, 13, '2015-10-16 13:04:58', '2015-10-16 13:04:58');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('votelist_disclaimer', 'deDE', 'Hier findest du alle Gesetze und Anträge des Bundestags. ', 13, 13, '2015-10-23 16:26:16', '2015-10-23 16:26:16');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('uVote_overall_votes_title', 'deDE', '
Insgesamt
\n
abgegebene Stimmen
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_register_repeat', 'enUS', 'repeat password', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_register_repeat', 'deDE', 'Passwort wiederholen', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_register', 'enUS', 'password', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_register', 'deDE', 'Passwort', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_login', 'enUS', 'password', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_password_login', 'deDE', 'Passwort', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_name_register', 'enUS', 'username', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_name_register', 'deDE', 'Dein Benutzername', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_name_login', 'enUS', 'username', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_name_login', 'deDE', 'Benutzername', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_email_register', 'enUS', 'e-mail', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_email_register', 'deDE', 'E-Mail', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_email_login', 'enUS', 'e-Mail', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('user_email_login', 'deDE', 'E-Mail', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urVote_user_party_compare', 'deDE', 'Gesamtübereinstimmung mit den Bundestagsfraktionen
(auf %-Zahlen klicken fuer Details)', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urVote_title', 'enUS', 'Test', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urVote_title', 'deDE', 'Hier findest du die Analysetools von uvote', 0, 13, '2015-10-15 01:44:29', '2015-10-15 01:44:29');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_party_table_desc', 'deDE', 'Ergebnis, aufgeschlüsselt nach Fraktionen', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_info_info_3', 'deDE', '
gibt Einblick in den mathematischen Hintergrund der Berechnung.
', 13, 13, '2015-10-15 01:42:25', '2015-10-15 01:42:25');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_info_info_2', 'deDE', '
erklärt die Zusammensetzung und Methode der Ausgabe.
', 13, 13, '2015-10-15 01:38:13', '2015-10-15 01:38:13');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_info_info_1', 'deDE', '
info
in der rechten Spalte befinden sich zu jeder Grafik zwei kurze Erläuterungen.
', 13, 13, '2015-10-15 01:42:47', '2015-10-15 01:42:47');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_body_text', 'deDE', '
Die Auswertung der Daten
Der Analysetab bietet dir viele Möglichkeiten dein Entscheidungsverhalten mit dem der Fraktionen des Bundestags, des Bundestags selbst oder der uvote.eu community zu vergleichen.
Die Auswertung beinhaltet sowohl bilanzierte als auch prozedurale darstellung. Der erste Abschnitt befasst sich mit den Übereinstimmung deiner Daten. Im zweiten Abschnitt werden die Daten aus der Gesamtperspektive der uvote community beleuchtet. Der dritte Abschnitt fasst die Daten aus der Perspektive des Bundestags ins Auge.
Die wichtigsten tabs zur Analyse der eigenen Position finden sich unter "Gesamtsituation" & "Bilanz: Fraktionen".
', 0, 13, '2015-10-24 14:14:10', '2015-10-24 14:14:10');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('urvote_bars_user', 'deDE', '
uVote', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('submit', 'deDE', 'Absenden', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register', 'enUS', 'Account create', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('register', 'deDE', 'Registrieren', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('openvote_help_text1', 'deDE', ' abstimmen.
Statistiken, Daten und Abstimmungsergebnisse werden dir angezeigt,
sobald du das erste mal deine Stimme abgegeben hast.', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('openvote_help_text', 'deDE', 'Hier kannst du zum ', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('no_data', 'deDE', 'keine Angabe', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('none', 'deDE', 'keins von beidem', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('no', 'deDE', 'Nein', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('myvote_bodytext', 'deDE', 'An dieser Stelle habt ihr die Möglichkeit, an der Qualität von
uVote mitzuwirken.
\n
Diese zusätzlichen Daten ermöglichen uns eine genauere
Analyse der Abstimmungen,
und verbessern damit die Qualität unserer Ergebnisse.
Die Angabe von persöhnlichen Daten erfolgt gemäß unserer
Datenschutzbestimmung freiwillig.
Einmal angegebene Daten können jederzeit über die Eingabemaske
widerrufen werden.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('male', 'deDE', 'männlich', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('mail_format_wrong', 'enUS', 'no valid e-mail address', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('mail_format_wrong', 'deDE', 'Keine valide E-Mail Addresse', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('login', 'enUS', 'login', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('login', 'deDE', 'Einloggen', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('location', 'deDE', 'Dein Bundesland', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('locale', 'enUS', 'language', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('locale', 'deDE', 'Sprache', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_header', 'deDE', 'Webcraft Media G.b.R.
Ansprechpartner
Tobias Rechel
Bahnhofstraße 59
69115 Heidelberg
t.rechel@gmx.de
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_5', 'deDE', '5. Rechtswirksamkeit dieses Haftungsausschlusses
Dieser Haftungsausschluss ist als Teil des Internetangebotes zu betrachten, von dem aus auf diese Seite verwiesen wurde. Sofern Teile oder einzelne Formulierungen dieses Textes der geltenden Rechtslage nicht, nicht mehr oder nicht vollständig entsprechen sollten, bleiben die übrigen Teile des Dokumentes in ihrem Inhalt und ihrer Gültigkeit davon unberührt.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_4', 'deDE', '4. Datenschutz
Sofern innerhalb des Internetangebotes die Möglichkeit zur Eingabe persönlicher oder geschäftlicher Daten (Emailadressen, Namen, Anschriften) besteht, so erfolgt die Preisgabe dieser Daten seitens des Nutzers auf ausdrücklich freiwilliger Basis. Die Inanspruchnahme und Bezahlung aller angebotenen Dienste ist - soweit technisch möglich und zumutbar - auch ohne Angabe solcher Daten bzw. unter Angabe anonymisierter Daten oder eines Pseudonyms gestattet. Die Nutzung der im Rahmen des Impressums oder vergleichbarer Angaben veröffentlichten Kontaktdaten wie Postanschriften, Telefon- und Faxnummern sowie Emailadressen durch Dritte zur Übersendung von nicht ausdrücklich angeforderten Informationen ist nicht gestattet. Rechtliche Schritte gegen die Versender von sogenannten Spam-Mails bei Verstössen gegen dieses Verbot sind ausdrücklich vorbehalten.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_3', 'deDE', '3. Urheber- und Kennzeichenrecht
Der Autor ist bestrebt, in allen Publikationen die Urheberrechte der verwendeten Grafiken, Tondokumente, Videosequenzen und Texte zu beachten, von ihm selbst erstellte Grafiken, Tondokumente, Videosequenzen und Texte zu nutzen oder auf lizenzfreie Grafiken, Tondokumente, Videosequenzen und Texte zurückzugreifen.
Alle innerhalb des Internetangebotes genannten und ggf. durch Dritte geschätzten Marken- und Warenzeichen unterliegen uneingeschränkt den Bestimmungen des jeweils gültigen Kennzeichenrechts und den Besitzrechten der jeweiligen eingetragenen Eigentümer. Allein aufgrund der bloßen Nennung ist nicht der Schluss zu ziehen, dass Markenzeichen nicht durch Rechte Dritter geschützt sind!
Das Copyright für veröffentlichte, vom Autor selbst erstellte Objekte bleibt allein beim Autor der Seiten. Eine Vervielfältigung oder Verwendung solcher Grafiken, Tondokumente, Videosequenzen und Texte in anderen elektronischen oder gedruckten Publikationen ist ohne ausdrückliche Zustimmung des Autors nicht gestattet.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_2', 'deDE', '2. Verweise und Links
Bei direkten oder indirekten Verweisen auf fremde Webseiten (Hyperlinks), die außerhalb des Verantwortungsbereiches des Autors liegen, würde eine Haftungsverpflichtung ausschließlich in dem Fall in Kraft treten, in dem der Autor von den Inhalten Kenntnis hat und es ihm technisch möglich und zumutbar wäre, die Nutzung im Falle rechtswidriger Inhalte zu verhindern.
Der Autor erklärt hiermit ausdrücklich, dass zum Zeitpunkt der Linksetzung keine illegalen Inhalte auf den zu verlinkenden Seiten erkennbar waren. Auf die aktuelle und zukünftige Gestaltung, die Inhalte oder die Urheberschaft der verlinkten/verknüpften Seiten hat der Autor keinerlei Einfluss. Deshalb distanziert er sich hiermit ausdrücklich von allen Inhalten aller verlinkten /verknüpften Seiten, die nach der Linksetzung verändert wurden. Diese Feststellung gilt für alle innerhalb des eigenen Internetangebotes gesetzten Links und Verweise sowie für Fremdeinträge in vom Autor eingerichteten Gästebüchern, Diskussionsforen, Linkverzeichnissen, Mailinglisten und in allen anderen Formen von Datenbanken, auf deren Inhalt externe Schreibzugriffe möglich sind. Für illegale, fehlerhafte oder unvollständige Inhalte und insbesondere für Schäden, die aus der Nutzung oder Nichtnutzung solcherart dargebotener Informationen entstehen, haftet allein der Anbieter der Seite, auf welche verwiesen wurde, nicht derjenige, der über Links auf die jeweilige Veröffentlichung lediglich verweist.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('impressum_1', 'deDE', '1. Inhalt des Onlineangebotes
Der Autor übernimmt keinerlei Gewähr für die Aktualität, Korrektheit, Vollständigkeit oder Qualität der bereitgestellten Informationen. Haftungsansprüche gegen den Autor, welche sich auf Schäden materieller oder ideeller Art beziehen, die durch die Nutzung oder Nichtnutzung der dargebotenen Informationen bzw. durch die Nutzung fehlerhafter und unvollständiger Informationen verursacht wurden, sind grundsätzlich ausgeschlossen, sofern seitens des Autors kein nachweislich vorsätzliches oder grob fahrlässiges Verschulden vorliegt.
Alle Angebote sind freibleibend und unverbindlich. Der Autor behält es sich ausdräcklich vor, Teile der Seiten oder das gesamte Angebot ohne gesonderte Ankändigung zu verändern, zu ergänzen, zu löschen oder die Veröffentlichung zeitweise oder endgültig einzustellen.
', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('gender', 'deDE', 'Dein Geschlecht', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('female', 'deDE', 'weiblich', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('fade', 'deDE', 'Überblick', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('children', 'deDE', 'Hast du Kinder?', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('bulletin_party_choice_title', 'deDE', 'Entscheidung nach Fraktionen', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('bulletin_bars_title', 'deDE', 'Abstimmungsergebnisse', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('birthyear', 'deDE', 'Dein Geburtsjahr', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('Beta-News-1', 'deDE', '
Beta-News #1
Liebe uvote.eu user,
zur Eröffnung der BETA-Phase fehlen nur noch einige kleine Details. Nachdem dieser Newsfeed implementiert wurde, und die Infotexte den Statistiken beiwohnen ist es nun noch ein kleiner Schritt bis zur Fertigstellung der "working BETA".
Was gibt es noch zu tun?
Vor der endgültigen Veröffentlichung der BETA müssen noch einige kleine Schritte implementiert werden.
- Die Informationen die nicht-eingeloggten usern angezeigt werden, werden um ein wachsendes About erweitert.
- Der Tab "community-statistik" unter "Auswerten" wird weitere Angaben über das Stimmverhalten der community bekommen.
- Die Statistikausgabe wird erneut überprüft auf mathematische Korrektheit.
(- Ein Filtersystem für die Poll-Listen wird eingeführt)
Features die folgen
Weitere Features die während der BETA implementiert werden sollen:
- Filtersystem (s.o.)
- comment/ diskursfunktion für einzelne Polls
- Statistik zu Zustimmungsraten mit uvote für einzelne Polls
- Verkapselung der Datensätze nach Legislaturperioden
Wir hoffen der Start der BETA wird ein gelungener Auftakt für die Revolution in der politischen Meinungsforschung und bürgerlichen Selbstoptimierung. Haltet die Augen nach Updates offen, weitere Informationen werden hier an dieser Stelle erscheinen.
Viel Spaß in der BETA und Danke für deine Mithilfe bei uvote.eu.
special thx an dorn & billy, die das alles möglich machen.
', 13, 13, '2015-10-16 13:09:30', '2015-10-16 13:09:30');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_pass', 'enUS', 'CCCLXXXIV-MMXIV', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_pass', 'deDE', 'CCCLXXXIV-MMXIV', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_name', 'enUS', 'ari_384', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_name', 'deDE', 'z.B.: ari_384', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_mail', 'enUS', 'a.thoteles@polis.ath', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('ari_mail', 'deDE', 'z.B.: a.thoteles@polis.ath', 0, 0, '2015-05-23 09:44:14', '0000-00-00 00:00:00');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_user_to_party_overall', 'deDE', '
Balkenbreite:
Übereinstimmungen
/
teilgenommene-Abstimmungen
*100
', 13, 13, '2015-10-14 18:23:30', '2015-10-14 18:23:30');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_uservera_to_party_pro', 'deDE', '
Balkenbreite:
Übereinstimmung(
pro-Stimmen)
/
[Übereinstimmung(
pro-Stimmen)
+
pro-Stimmen-gesamt]
*100', 13, 13, '2015-10-24 13:24:29', '2015-10-24 13:24:29');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_party_donut', 'deDE', '
Slice:
[Übereinstimmung
/
teilgenommene-Abstimmungen]
/
[Übereinstimmung
/
teilgenommene-Abstimmungen]-
gesamt
*100
', 13, 13, '2015-10-14 18:29:49', '2015-10-14 18:29:49');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_overtime_party', 'deDE', '
Werte der Graphen
y =
[Übereinstimmungen-zeitpunkt(x)
+ Übereinstimmungen-zeitpunkt(0 bis x)]
/
[Übereinstimmungen-Zeitpunkt(x)
+ Nicht-Übereinstimmungen-Zeitpunkt(x)]
+ [Übereinstimmungen-Zeitpunkt(0 bis x)
+ Nicht-Übereinstimmungen-Zeitpunkt(0 bis x)]
* 100', 13, 13, '2015-10-14 18:24:08', '2015-10-14 18:24:08');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_overtime_bt', 'deDE', '
Wert des Graphen
y =
[Übereinstimmungen-zeitpunkt(x)
+ Übereinstimmungen-zeitpunkt(0 bis x)]
/
[Übereinstimmungen-Zeitpunkt(x)
+ Nicht-Übereinstimmungen-Zeitpunkt(x)]
+ [Übereinstimmungen-Zeitpunkt(0 bis x)
+ Nicht-Übereinstimmungen-Zeitpunkt(0 bis x)]
* 100', 13, 13, '2015-10-14 20:02:01', '2015-10-14 20:02:01');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_community_to_fr', 'deDE', '
Balkenbreite:
Übereinstimmungen
/
Abstimmungen
*100', 13, 13, '2015-10-15 02:06:25', '2015-10-15 02:06:25');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_community', 'deDE', '
Balkenbreite:
pro-Stimmen
/
[
pro-Stimmen +
contra-Stimmen + Enthaltungen]
*100
Total:
pro-Stimmen +
contra-Stimmen + Enthaltungen', 13, 13, '2015-10-14 20:48:16', '2015-10-14 20:48:16');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_choices_bt', 'deDE', '
Balkenbreite:
Übereinstimmungen
/
Abstimmungen
*100', 13, 13, '2015-10-24 14:07:25', '2015-10-24 14:07:25');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_bt_by_vote', 'deDE', '
Balkenbreite pro:
Übereinstimmung(
pro-Stimmen)
/
[Übereinstimmung(
pro-Stimmen)
+
pro-Stimmen-gesamt]
* 100
Balkenbreite contra:
s.o.
Balkenbreite Enthaltung:
s.o.
', 13, 13, '2015-10-24 13:24:19', '2015-10-24 13:24:19');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_bt_basic', 'deDE', '
Balkenbreite:
pro-Stimmen
/
[
pro-Stimmen +
contra-Stimmen + Enthaltungen]
*100
Total:
pro-Stimmen +
contra-Stimmen + Enthaltungen', 13, 13, '2015-10-23 17:32:16', '2015-10-23 17:32:16');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_bt', 'deDE', '
Balkenbreite:
Übereinstimmungen
/
teilgenommene-Abstimmungen
*100
', 13, 13, '2015-10-14 18:38:27', '2015-10-14 18:38:27');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_basic_stats', 'deDE', '
Balkenbreite:
pro-Stimmen
/
[
pro-Stimmen +
contra-Stimmen + Enthaltungen]
*100
Total:
pro-Stimmen
+
contra-Stimmen
+ Enthaltungen', 13, 13, '2015-10-14 20:49:09', '2015-10-14 20:49:09');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_math_basic votes', 'deDE', 'Balken 1.:
aktuelle-teilgenommene-Abstimmungen /
aktuelle-Abstimmungen-
gesamt
Balken 2.:
teilgenommene-Abstimmungen
/ Abstimmungen
-gesamt
', 13, 13, '2015-10-13 01:34:34', '2015-10-13 01:34:34');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_user_to_party_overall', 'deDE', '
Deine Übereinstimmungsrate mit den Bundestagsfraktionen. Hier kannst du ablesen wer am ehesten deinen Gesetzgebungspräferenzen entsprechend entscheidet.
Klick auf die ? um die genauen Übereinstimmungen zu sehen. Die Balken zeigen die Rate der Übereinstimmung deiner Entscheidungen mit den Entscheidungen der Bundestagsfraktionen.
', 13, 13, '2015-10-24 14:17:04', '2015-10-24 14:17:04');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_uservera_to_party_pro', 'deDE', 'Die Balken zeigen die Übereinstimmung deiner
pro-Stimmen mit den
pro-Stimmen der jeweiligen
Bundestagsfraktion.', 13, 13, '2015-10-12 22:10:24', '2015-10-12 22:10:24');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_uservera_to_party_ent', 'deDE', 'Die Balken zeigen die Übereinstimmung deiner
Enthaltungen mit den
Enthaltungen der jeweiligen
Bundestagsfraktion.', 13, 13, '2015-10-14 18:32:51', '2015-10-14 18:32:51');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_uservera_to_party_con', 'deDE', 'Die Balken zeigen die Übereinstimmung deiner
contra-Stimmen mit den
contra-Stimmen der jeweiligen
Bundestagsfraktion.', 13, 13, '2015-10-14 18:31:56', '2015-10-14 18:31:56');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_party_donut', 'deDE', '
Der linke Donut setzt deine Übereinstimmung mit den Fraktionen im Bundestag ins Verhältnis. Er zeigt quasi "deinen" Bundestag. Der rechte Donut zeigt das gleiche Verhältnis zwischen Bundestag und der uvote.eu community. Der Donut in der Mitte repräsentiert die tatsächliche Sitzverteilung im deutschen Bundestag.
', 13, 13, '2015-10-23 17:33:23', '2015-10-23 17:33:23');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_overtime_party', 'deDE', '
Die Graphen zeigen die Übereinstimmung deines Stimmverhaltens mit dem der Bundestagsfraktionen über Zeit an. Der letzte Punktwert des Graphen markiert deine Bilanzstatistik mit der jeweiligen Fraktion (Siehe 1. Tab).
Eine Übereinstimmung leigt vor, wenn Du und die Fraktion zu einem Poll beide mit pro, bzw. contra, bzw. Enthaltung gestimmt habt.
Die Höhe des Graphen gibt das Verhältnis zwischen Übereinstimmungen und Nicht-Übereinstimmungen zum jeweiligen Zeitpunkt an.
Die zeitlichen Referenzpunkte für Übereinstimmung ergeben sich aus dem Zeitstempel der Abstimmung des Bundestages, nicht deiner Abstimmung. Eine Abstimmung über vergangene Polls erzeugen einen Datenpunkt mit dem Zeitwert des Gesetzes, nicht deiner Stimmabgabe.
', 13, 13, '2015-10-14 20:46:35', '2015-10-14 20:46:35');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_overtime_bt', 'deDE', 'Der Graph zeigt die Übereinstimmungsrate mit dem Bundestag über Zeit. Eine ausführliche Erklärung zur Zusammensetzung der Entwicklung findest du im Infotext zu
Entwicklung: Fraktionen.', 13, 13, '2015-10-14 20:50:42', '2015-10-14 20:50:42');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_community_to_fr', 'deDE', 'Die Balken zeigen die Rate der Übereinstimmung der community Mehrheit mit den Entscheidungen der Bundestagsfraktionen. Darüber ob uvote pro oder contra gestimmt hat entscheidet die Mehrheit (50%+1).
? analog "Bilanz: Fraktionen" werden noch implementiert.', 13, 13, '2015-10-15 02:04:46', '2015-10-15 02:04:46');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_community', 'deDE', 'Die Balken zeigen alle abgegebenen Stimmen der Nutzer auf uvote.eu an. Der
absolute Wert ist auf dem Balken vermerkt, die Balkenlänge setzt die Stimmen ins
Verhältnis.', 13, 13, '2015-10-14 20:03:36', '2015-10-14 20:03:36');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_choices_bt', 'deDE', '
Die Balken zeigen die Übereinstimmung des Stimmverhaltens der Fraktionen mit den endgültigen Entscheidungen des Bundestags.
Je geringer die Übereinstimmung mit einer Fraktion ist, desto stärker agiert die Partei oppsositionär.
Umgekehrt zeigt ein hoher Grad an Übereinstimmung dass die jeweilige Fraktion hinter den gefassten Beschlüssen des Hauses steht.
', 13, 13, '2015-10-24 14:03:47', '2015-10-24 14:03:47');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_bt_by_vote', 'deDE', '
Die Balken zeigen die Übereinstimmung deiner pro- und contra-Stimmen mit den Beschlüssen des Bundestages. Der theoretisch mögliche, aber praktisch irrelevante Fall einer Enthaltung des Bundestages und damit möglichen Übereinstimmung bei einer Enthaltung ist ebenfalls vorgesehen.
', 13, 13, '2015-10-14 18:54:57', '2015-10-14 18:54:57');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_bt_basic', 'deDE', '
Die Balken zeigen alle Beschlüsse des Bundestags an. Der absolute Wert ist auf dem Balken vermerkt, die Balkenlänge setzt die Entscheidungen ins Verhältnis.
', 13, 13, '2015-10-17 04:34:04', '2015-10-17 04:34:04');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_bt', 'deDE', '
Der Balken zeigt die Rate der Übereinstimmung deines Stimmverhaltens mit den Beschlüssen den Bundestages.
', 13, 13, '2015-10-24 14:18:23', '2015-10-24 14:18:23');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_basic_votes', 'deDE', 'Abstimmungen haben einen festgesetzten Zeitraum in dem sie als aktuell markiert sind. In diesem Zeitraum stellen sie aktive Verhandlungspapiere des Bundestags dar. Der Balken zeigt deine Abstimmungsquote bei den aktuellen Abstimmungen.
', 13, 13, '2015-10-13 01:17:46', '2015-10-13 01:17:46');
+INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('analysis_help_basic_stats', 'deDE', 'Die Balken zeigen deine abgegebenen Stimmen an. Der
absolute Wert ist auf dem Balken vermerkt, die Balkenlänge setzt die Stimmen ins
Verhältnis.
', 13, 13, '2015-10-14 20:03:57', '2015-10-14 20:03:57');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('ari_pass', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_party_table_desc', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urVote_user_party_compare', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('yes', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('no_data', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('openvote_help_text', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_body_text', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('openvote_help_text1', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_bars_user', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_user_party_compare_sub', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('ari_name', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('uVote_overall_votes_title', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('welcome_text', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urVote_title', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_3', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_5', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_4', 'uvote');
+
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_basic_stats', 'domestic');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('ari_mail', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_2', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('ari_name', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('ari_pass', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('birthyear', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('bulletin_bars_title', 'uvote');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('bulletin_party_choice_title', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_1', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('gender', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('female', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('fade', 'uvote');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('children', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('submit', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('fade', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('female', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('gender', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_1', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_2', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_3', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_4', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_5', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_header', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('locale', 'uvote_register');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('location', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('login', 'uvote_register');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('mail_format_wrong', 'uvote_register');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('male', 'uvote');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('myvote_bodytext', 'uvote');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('no', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('male', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('birthyear', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('location', 'uvote');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('none', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('bulletin_bars_title', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('impressum_header', 'uvote');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_password_register', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('locale', 'uvote_register');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('no_data', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('openvote_help_text', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('openvote_help_text1', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('submit', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_bars_user', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_body_text', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_info_info_1', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_info_info_2', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_info_info_3', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_party_table_desc', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urVote_title', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urVote_user_party_compare', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('urvote_user_party_compare_sub', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_email_login', 'uvote_register');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_email_register', 'uvote_register');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_name_login', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_password_register_repeat', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_password_login', 'uvote_register');
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_name_register', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register_user_password_too_long', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('login', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register_email_required', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register_password_dont_match', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register_password_required', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register_password_too_short', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register_user_name_required', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register_user_name_too_long', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('register_user_name_too_short', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('mail_format_wrong', 'uvote_register');
-INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_email_login', 'uvote_register');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_password_login', 'uvote_register');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_password_register', 'uvote_register');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('user_password_register_repeat', 'uvote_register');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('uVote_overall_votes_title', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('votelist_disclaimer', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('welcome_text', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('welcome_text_loggedin', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('yes', 'uvote');
+
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_basic_stats', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_basic_stats', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_basic_votes', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_basic_votes', 'tags');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_bt', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_bt', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_bt_basic', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_bt_basic', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_bt_by_vote', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_bt_by_vote', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_choices_bt', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_choices_bt', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_community', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_community', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_community_to_fr', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_community_to_fr', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_overtime_bt', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_overtime_bt', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_overtime_party', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_overtime_party', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_party_donut', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_party_donut', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_uservera_to_party_con', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_uservera_to_party_con', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_uservera_to_party_ent', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_uservera_to_party_ent', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_uservera_to_party_pro', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_user_to_party_overall', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_user_to_party_overall', 'help');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_user_to_party_overall', 'help&apos');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_help_user_to_party_overall', 'uvote');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_basic votes', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_basic votes', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_basic_stats', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_basic_stats', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_bt', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_bt', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_bt_basic', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_bt_basic', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_bt_by_vote', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_bt_by_vote', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_choices_bt', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_choices_bt', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_community', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_community', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_community_to_fr', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_community_to_fr', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_overtime_bt', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_overtime_bt', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_overtime_party', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_overtime_party', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_party_donut', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_party_donut', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_uservera_to_party_pro', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_uservera_to_party_pro', 'math');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_user_to_party_overall', 'domestic');
+INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('analysis_math_user_to_party_overall', 'math');
diff --git a/uvote/sql/mysql/uvote_votes.sql b/uvote/sql/mysql/uvote_votes.sql
new file mode 100644
index 0000000..5818bae
--- /dev/null
+++ b/uvote/sql/mysql/uvote_votes.sql
@@ -0,0 +1,26 @@
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (32, 1, 'Asylverfahrensbeschleunigungsgesetz', 'Sozialpolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/061/1806185.pdf', 1);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (33, 1, 'Gesetz zur schnelleren Entlastung der Länder und Kommunen bei der Aufnahme und Unterbringung von Asylbewerbern', 'Sozialpolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/061/1806172.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (34, 1, 'Gesetz zur Verbesserung der Unterbringung, Versorgung und Betreuung ausländischer Kinder und Jugendlicher', 'Sozialpolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/059/1805921.pdf', 1);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (35, 1, 'Gesetz zu dem Protokoll von Nagoya vom 29. Oktober 2010 über den Zugang zu genetischen Ressourcen und die ausgewogene und gerechte Aufteilung der sich aus ihrer Nutzung ergebenden Vorteile zum Übereinkommen über die biologische Vielfalt', 'Gesellschaftspolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/052/1805219.pdf', 1);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (43, 1, 'Vierzehntes Gesetz zur Änderung des Atomgesetzes', 'Wirtschaftspolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/058/1805865.pdf', 1);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (44, 1, 'Gesetz zur Bereinigung des Rechts der Lebenspartner', 'Gesellschaftspolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/059/1805901.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (45, 1, 'Gesetz zur abschließenden Beendigung der verfassungswidrigen Diskriminierung eingetragener Lebenspartnerschaften ', 'Gesellschaftspolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/030/1803031.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (46, 1, 'Gesetz zur Bekämpfung der Korruption', 'Innenpolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/043/1804350.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (47, 1, 'Gesetz zur Änderung des Unterhaltsrechts und des Unterhaltsverfahrensrechts', 'Gesellschaftspolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/059/1805918.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (48, 1, 'Änderung des Energieverbrauchskennzeichnungsgesetzes', 'Wirtschaftspolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/059/1805925.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (49, 1, 'Änderung des Bundeszentralregistergesetzes', 'Innenpolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/061/1806186.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (50, 1, 'Gesetz zur Einführung einer Speicherpflicht und einer Höchstspeicherfrist für Verkehrsdaten ', 'Innenpolitik', '', NULL, '2015-10-01', '2015-11-01', NULL, 'http://dip21.bundestag.de/dip21/btd/18/051/1805171.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (51, 1, 'Gesetz zur Verbesserung der Hospiz- und Palliativversorgung in Deutschland (HPG)', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/051/1805170.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (52, 1, 'Gesetz über die Feststellung eines Zweiten Nachtrags zum Bundeshaushaltsplan für das Haushaltsjahr 2015 ', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/060/1806090.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (53, 1, 'Gesetz zur Verlängerung der Befristung von Vorschriften nach den Terrorismusbekämpfungsgesetzen', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/059/1805924.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (54, 1, 'Gesetz über die Einführung von Gruppenverfahren', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/014/1801464.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (55, 1, ' Gesetz zur Reform der Strukturen der Krankenhausversorgung ', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/053/1805372.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (56, 1, 'Gesetzes zur Aufhebung des Betreuungsgeldgesetzes', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/000/1800005.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (57, 1, 'Zweites Gesetz zur Änderung agrarmarktrechtlicher Bestimmungen', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/061/1806160.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (58, 1, 'Gesetz zu dem Übereinkommen vom 29. Juni 2015 zur Gründung der Asiatischen Infrastruktur-Investitionsbank', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/061/1806163.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (59, 1, 'Gesetz über die Feststellung des Wirtschaftsplans des ERP-Sondervermögens für das Jahr 2016 ', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/061/1806159.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (60, 1, 'Gesetz zur Auswahl und zum Anschluss von Telekommunikationsendgeräten', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/062/1806280.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (61, 1, 'Gesetz zur Änderung des Gesetzes gegen den unlauteren Wettbewerb', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/045/1804535.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (62, 1, 'Gesetz zur Neuorganisation der Zollverwaltung', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/052/1805294.pdf', NULL);
+INSERT INTO `uvote_votes` (`ID`, `group`, `title`, `p_fields`, `text`, `initiative`, `time_start`, `time_end`, `quick`, `iframe_link`, `bt_choice`) VALUES (63, 1, 'Besoldungsänderungsgesetz (7. BesÄndG)', NULL, '', NULL, '2015-10-15', '2015-11-15', NULL, 'http://dip21.bundestag.de/dip21/btd/18/061/1806156.pdf', NULL);
+
diff --git a/uvote/sql/mysql/uvote_votes_per_party.sql b/uvote/sql/mysql/uvote_votes_per_party.sql
new file mode 100644
index 0000000..6bb6176
--- /dev/null
+++ b/uvote/sql/mysql/uvote_votes_per_party.sql
@@ -0,0 +1,56 @@
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (32, 'cdu', 248, 0, 254, 255, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (32, 'csu', 53, 0, 56, 56, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (32, 'gruene', 1, 10, 59, 63, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (32, 'linke', 0, 57, 57, 64, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (32, 'spd', 173, 1, 182, 193, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (34, 'cdu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (34, 'csu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (34, 'gruene', 0, 0, 0, 0, 3, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (34, 'linke', 0, 0, 0, 0, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (34, 'spd', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (35, 'linke', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (35, 'gruene', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (35, 'csu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (35, 'cdu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (35, 'spd', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (43, 'cdu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (43, 'csu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (43, 'gruene', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (43, 'linke', 0, 0, 0, 0, 3, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (43, 'spd', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (44, 'cdu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (44, 'csu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (44, 'gruene', 0, 0, 0, 0, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (44, 'linke', 0, 0, 0, 0, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (44, 'spd', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (45, 'cdu', 0, 0, 0, 0, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (45, 'csu', 0, 0, 0, 0, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (45, 'gruene', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (45, 'linke', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (45, 'spd', 0, 0, 0, 0, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (46, 'cdu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (46, 'csu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (46, 'gruene', 0, 0, 0, 0, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (46, 'linke', 0, 0, 0, 0, 2, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (46, 'spd', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (47, 'cdu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (47, 'csu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (47, 'gruene', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (47, 'linke', 0, 0, 0, 0, 3, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (47, 'spd', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (48, 'cdu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (48, 'csu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (48, 'gruene', 0, 0, 0, 0, 3, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (48, 'linke', 0, 0, 0, 0, 3, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (48, 'spd', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (49, 'cdu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (49, 'csu', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (49, 'gruene', 0, 0, 0, 0, 3, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (49, 'linke', 0, 0, 0, 0, 3, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (49, 'spd', 0, 0, 0, 0, 1, 0);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (50, 'cdu', 229, 0, 229, 254, 1, NULL);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (50, 'csu', 46, 0, 46, 56, 1, NULL);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (50, 'gruene', 0, 53, 53, 63, 2, NULL);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (50, 'linke', 0, 52, 52, 64, 2, NULL);
+INSERT INTO `uvote_votes_per_party` (`poll_ID`, `party`, `votes_pro`, `votes_contra`, `nr_attending`, `total`, `choice`, `bt_choice`) VALUES (50, 'spd', 129, 43, 179, 193, 1, NULL);
+
diff --git a/uvote/sql/mysql/uvote_votes_tag.sql b/uvote/sql/mysql/uvote_votes_tag.sql
new file mode 100644
index 0000000..4ec6329
--- /dev/null
+++ b/uvote/sql/mysql/uvote_votes_tag.sql
@@ -0,0 +1,46 @@
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (32, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (32, 'Asylpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (33, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (33, 'Asylpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (34, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (34, 'Asylpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (35, 'Wirtschaftspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (35, 'Außenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (43, 'Wirtschaftspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (43, 'Energiepolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (45, 'Sozialpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (46, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (46, 'Wirtschaftspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (47, 'Sozialpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (47, 'Familienpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (48, 'Wirtschaftspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (48, 'Verbraucherschutz', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (48, 'Energiepolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (49, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (50, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (50, 'Netzpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (51, 'Sozialpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (51, 'Gesundheitspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (52, 'Haushaltspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (53, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (53, 'Verteidigungspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (55, 'Sozialpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (55, 'Gesundheitspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (56, 'Sozialpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (56, 'Familienpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (57, 'Wirtschaftspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (58, 'Wirtschaftspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (58, 'Finanzpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (58, 'Außenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (59, 'Haushaltspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (60, 'Wirtschaftspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (61, 'Wirtschaftspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (61, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (62, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (63, 'Verwaltungspolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (54, 'Verbraucherschutz', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (54, 'Innenpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (44, 'Familienpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (44, 'Sozialpolitik', 1);
+INSERT INTO `uvote_votes_tag` (`poll_ID`, `tag`, `group`) VALUES (45, 'Familienpolitik', 1);
+