From 19a135d9f86201d325a475faeada5e5386fdd978 Mon Sep 17 00:00:00 2001
From: ctrlcctrlv <admin@8chan.co>
Date: Sat, 19 Apr 2014 23:02:42 +0200
Subject: [PATCH 01/14] use all boards for search.php if boards are not
 specified

---
 inc/functions.php | 22 ++++++++++++++++------
 search.php        |  6 +++++-
 2 files changed, 21 insertions(+), 7 deletions(-)

diff --git a/inc/functions.php b/inc/functions.php
index 1393f580..cb198e6c 100644
--- a/inc/functions.php
+++ b/inc/functions.php
@@ -612,17 +612,27 @@ function hasPermission($action = null, $board = null, $_mod = null) {
 	return true;
 }
 
-function listBoards() {
+function listBoards($just_uri = false) {
 	global $config;
 
-	if ($config['cache']['enabled'] && ($boards = cache::get('all_boards')))
+	$just_uri ? $cache_name = 'all_boards_uri' : $cache_name = 'all_boards';
+
+	if ($config['cache']['enabled'] && ($boards = cache::get($cache_name)))
 		return $boards;
 
-	$query = query("SELECT * FROM ``boards`` ORDER BY `uri`") or error(db_error());
-	$boards = $query->fetchAll();
-
+	if (!$just_uri) {
+		$query = query("SELECT ``boards``.`uri` uri, ``boards``.`title` title, ``boards``.`subtitle` subtitle, ``board_create``.`time` time FROM ``boards`` LEFT JOIN ``board_create`` ON ``boards``.`uri` = ``board_create``.`uri` ORDER BY ``boards``.`uri`") or error(db_error());
+		$boards = $query->fetchAll();
+	} else {
+		$boards = array();
+		$query = query("SELECT `uri` FROM ``boards``") or error(db_error());
+		while ($board = $query->fetchColumn()) {
+			$boards[] = $board;
+		}
+	}
+ 
 	if ($config['cache']['enabled'])
-		cache::set('all_boards', $boards);
+		cache::set($cache_name, $boards);
 
 	return $boards;
 }
diff --git a/search.php b/search.php
index beb8743d..394aa3ff 100644
--- a/search.php
+++ b/search.php
@@ -9,7 +9,11 @@
 	$queries_per_minutes_all = $config['search']['queries_per_minutes_all'];
 	$search_limit = $config['search']['search_limit'];
 	
-	$boards = $config['search']['boards'];
+	if (isset($config['search']['boards'])) {
+		$boards = $config['search']['boards'];
+	} else {
+		$boards = listBoards(TRUE);
+	}
 	
 	$body = Element('search_form.html', Array('boards' => $boards, 'board' => isset($_GET['board']) ? $_GET['board'] : false, 'search' => isset($_GET['search']) ? str_replace('"', '&quot;', utf8tohtml($_GET['search'])) : false));
 	

From 6e107b50967d4b2ba51f81929098986d33ba585a Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sat, 19 Apr 2014 23:06:59 +0200
Subject: [PATCH 02/14] fix previous commit

---
 inc/functions.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inc/functions.php b/inc/functions.php
index cb198e6c..14f874c5 100644
--- a/inc/functions.php
+++ b/inc/functions.php
@@ -621,7 +621,7 @@ function listBoards($just_uri = false) {
 		return $boards;
 
 	if (!$just_uri) {
-		$query = query("SELECT ``boards``.`uri` uri, ``boards``.`title` title, ``boards``.`subtitle` subtitle, ``board_create``.`time` time FROM ``boards`` LEFT JOIN ``board_create`` ON ``boards``.`uri` = ``board_create``.`uri` ORDER BY ``boards``.`uri`") or error(db_error());
+		$query = query("SELECT * FROM ``boards`` ORDER BY `uri`") or error(db_error());
 		$boards = $query->fetchAll();
 	} else {
 		$boards = array();

From d0c828b5f4a742f36dbd4df83d9c7c9c678a06e6 Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sat, 19 Apr 2014 23:33:54 +0200
Subject: [PATCH 03/14] treeview.js: initial commit

---
 js/treeview.js | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 js/treeview.js

diff --git a/js/treeview.js b/js/treeview.js
new file mode 100644
index 00000000..78ad620b
--- /dev/null
+++ b/js/treeview.js
@@ -0,0 +1,45 @@
+/*
+ * treeview.js
+ * https://github.com/vichan-devel/vichan/blob/master/js/treeview.js
+ *
+ * Released under the MIT license
+ * Copyright (c) 2014 Marcin Łabanowski <marcin@6irc.net>
+ *
+ * Usage:
+ *   $config['additional_javascript'][] = 'js/jquery.min.js';
+ *   $config['additional_javascript'][] = 'js/treeview.js';
+ *
+ */
+
+if (active_page == 'thread')
+$(function() {
+        $('hr:first').before('<div id="treeview" style="text-align:right"><a class="unimportant" href="javascript:void(0)"></a></div>');
+        $('div#treeview a')
+                .text(_('Tree view'))
+                .click(function(e) {
+			e.preventDefault();
+
+			$('.post.reply').each(function(){
+				var references = [];
+				$(this).find('.body a').each(function(){
+					if ($(this).html().match('^&gt;&gt;[0-9]+$')) {
+						references.push(parseInt($(this).html().replace('&gt;&gt;', '')));
+					}
+				});
+
+				var maxref = references.reduce(function(a,b) { return a > b ? a : b; }, 0);
+
+				var parent_post = $("#reply_"+maxref);
+				if (parent_post.length == 0) return;
+
+				var margin = parseInt(parent_post.css("margin-left"))+32;
+
+				var post = $(this);
+				var br = post.next();
+
+				post.detach().css("margin-left", margin).insertAfter(parent_post.next());
+				br.detach().insertAfter(post);
+
+			});
+		});
+});

From 15dd0faeab1e172a86806dd25c844ecb3a01fba4 Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sat, 19 Apr 2014 23:44:11 +0200
Subject: [PATCH 04/14] load german locale from transifex

---
 inc/locale/de_DE/LC_MESSAGES/javascript.js |   2 +-
 inc/locale/de_DE/LC_MESSAGES/javascript.po | 225 +++++++++++----------
 inc/locale/de_DE/LC_MESSAGES/tinyboard.mo  | Bin 488 -> 8809 bytes
 inc/locale/de_DE/LC_MESSAGES/tinyboard.po  | 211 +++++++++----------
 4 files changed, 220 insertions(+), 218 deletions(-)

diff --git a/inc/locale/de_DE/LC_MESSAGES/javascript.js b/inc/locale/de_DE/LC_MESSAGES/javascript.js
index e4e2cd8e..5d4b7c7f 100644
--- a/inc/locale/de_DE/LC_MESSAGES/javascript.js
+++ b/inc/locale/de_DE/LC_MESSAGES/javascript.js
@@ -1 +1 @@
-l10n = [];
\ No newline at end of file
+l10n = {"Style: ":"Stil","File":"Datei","hide":"ausblenden","show":"zeigen","Show locked threads":"Geschlo\u00dfene F\u00e4den anzeigen","Hide locked threads":"Geschlo\u00dfene F\u00e4den ausblenden","URL":"URL","Select":"w\u00e4hlen","Remote":"Remote","Embed":"Eingebettet","Oekaki":"Oekaki","hidden":"ausgeblendet","Show images":"Bilder anzeigen","Hide images":"Bilder ausblenden","Password":"Passwort","Delete file only":"Nur die Datei l\u00f6schen","Delete":"L\u00f6schen","Reason":"Grund","Report":"Melden","Click reply to view.":"Klicke 'antworten' um den Faden anzusehen","Click to expand":"Klicken zum auspacken","Hide expanded replies":"Ausgepackte F\u00e4den ausblenden","Brush size":"Pinselgr\u00f6\u00dfe","Set text":"Text setzen","Clear":"Leeren","Save":"Speichern","Load":"Laden","Get color":"Farbe w\u00e4hlen","Fill":"F\u00fcllen","Enter some text":"Text eingeben","Enter font or leave empty":"Font w\u00e4hlen oder leer lassen","Forced anonymity":"Erzwungene Anonymit\u00e4t","enabled":"erlaubt","disabled":"verboten","Sun":"So","Mon":"Mo","Tue":"Di","Wed":"Mi","Thu":"Do","Fri":"Fr","Sat":"Sa","Catalog":"Katalog","Submit":"Best\u00e4tigen","Quick reply":"Schnelllantwort","Return":"Zur\u00fcck","Expand all images":"Alle Bilder vergr\u00f6\u00dfern","Hello!":"Hallo,","{0} users":"{0} User","(hide threads from this board)":"(F\u00e4den dieses Brett's ausblenden)","(show threads from this board)":"(F\u00e4den dieses Brett's anzeigen) ","No more threads to display":"Keine F\u00e4den vorhanden","Loading...":"L\u00e4dt","Save as original filename":"Original-Dateiname speichern","Reported post(s).":"Gemeldete Posts","An unknown error occured!":"Ein unbekannter Fehler ist aufgetretten","Something went wrong... An unknown error occured!":"Irgendwas stimmt nicht... Ein unbekannter Fehler ist aufgetretten ","Working...":"Funktioniert...","Posting... (#%)":"Posting... (#%)","Posted...":"Gepostet...","An unknown error occured when posting!":"Beim posten ist ein unbekannter Fehler aufgetretten!","Posting...":"Postet...","Upload URL":"Upload URL","Spoiler Image":"Bilder spoilern","Comment":"Kommentar","Quick Reply":"Schnellantwort","Stop watching this thread":"Faden nicht l\u00e4nger verfolgen","Watch this thread":"Faden verfolgen","Unpin this board":"Brett nicht mehr anpinnen","Pin this board":"Brett anpinnen","Stop watching this board":"Brett nicht mehr verfolgen","Watch this board":"Brett verfolgen","Sunday":"Sonntag","Monday":"Montag","Tuesday":"Dienstag","Wednesday":"Mittwoch","Thursday":"Donnerstag","Friday":"Freitag","Saturday":"Samstag","January":"Januar","February":"Februar","March":"M\u00e4rz","April":"April","May":"Mai","June":"Juni","July":"Juli","August":"August","September":"September","October":"Oktober","November":"November","December":"Dezember","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dez","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Dein Browser unterst\u00fctzt keine HTML5-Videos.","[play once]":"[Abspielen]","[loop]":"[Schleife]","WebM Settings":"WebM Einstellungen","Default volume":"Standardlautst\u00e4rke"};
\ No newline at end of file
diff --git a/inc/locale/de_DE/LC_MESSAGES/javascript.po b/inc/locale/de_DE/LC_MESSAGES/javascript.po
index 0ca7e9af..e4423450 100644
--- a/inc/locale/de_DE/LC_MESSAGES/javascript.po
+++ b/inc/locale/de_DE/LC_MESSAGES/javascript.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# zzrutkjf <fgnthjrj@byom.de>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
-"Last-Translator: czaks <marcin@6irc.net>\n"
+"PO-Revision-Date: 2014-04-19 20:23+0000\n"
+"Last-Translator: zzrutkjf <fgnthjrj@byom.de>\n"
 "Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,22 +20,22 @@ msgstr ""
 
 #: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41
 msgid "Style: "
-msgstr ""
+msgstr "Stil"
 
 #: ../../../../js/hide-images.js:50 ../../../../js/upload-selection.js:51
 #: ../../../../js/quick-post-controls.js:30 ../../../../js/hide-images.js:51
 #: ../../../../js/quick-post-controls.js:32
 #: ../../../../js/upload-selection.js:61
 msgid "File"
-msgstr ""
+msgstr "Datei"
 
 #: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51
 msgid "hide"
-msgstr ""
+msgstr "ausblenden"
 
 #: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57
 msgid "show"
-msgstr ""
+msgstr "zeigen"
 
 #: ../../../../js/toggle-locked-threads.js:39
 #: ../../../../js/toggle-locked-threads.js:54
@@ -43,7 +44,7 @@ msgstr ""
 #: ../../../../js/toggle-locked-threads.js:41
 #: ../../../../js/toggle-locked-threads.js:56
 msgid "Show locked threads"
-msgstr ""
+msgstr "Geschloßene Fäden anzeigen"
 
 #: ../../../../js/toggle-locked-threads.js:39
 #: ../../../../js/toggle-locked-threads.js:54
@@ -52,98 +53,98 @@ msgstr ""
 #: ../../../../js/toggle-locked-threads.js:41
 #: ../../../../js/toggle-locked-threads.js:56
 msgid "Hide locked threads"
-msgstr ""
+msgstr "Geschloßene Fäden ausblenden"
 
 #: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45
 msgid "URL"
-msgstr ""
+msgstr "URL"
 
 #: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60
 msgid "Select"
-msgstr ""
+msgstr "wählen"
 
 #: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63
 msgid "Remote"
-msgstr ""
+msgstr "Remote"
 
 #: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66
 msgid "Embed"
-msgstr ""
+msgstr "Eingebettet"
 
 #: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69
 msgid "Oekaki"
-msgstr ""
+msgstr "Oekaki"
 
 #: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42
 msgid "hidden"
-msgstr ""
+msgstr "ausgeblendet"
 
 #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70
 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71
 msgid "Show images"
-msgstr ""
+msgstr "Bilder anzeigen"
 
 #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70
 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71
 msgid "Hide images"
-msgstr ""
+msgstr "Bilder ausblenden"
 
 #: ../../../../js/quick-post-controls.js:27
 #: ../../../../js/quick-post-controls.js:29
 msgid "Password"
-msgstr ""
+msgstr "Passwort"
 
 #: ../../../../js/quick-post-controls.js:29
 #: ../../../../js/quick-post-controls.js:31
 msgid "Delete file only"
-msgstr ""
+msgstr "Nur die Datei löschen"
 
 #: ../../../../js/quick-post-controls.js:31
 #: ../../../../js/quick-post-controls.js:33
 msgid "Delete"
-msgstr ""
+msgstr "Löschen"
 
 #: ../../../../js/quick-post-controls.js:35
 #: ../../../../js/quick-post-controls.js:37
 msgid "Reason"
-msgstr ""
+msgstr "Grund"
 
 #: ../../../../js/quick-post-controls.js:37
 #: ../../../../js/quick-post-controls.js:39
 msgid "Report"
-msgstr ""
+msgstr "Melden"
 
 #: ../../../../js/expand.js:20 ../../../../js/expand.js:22
 msgid "Click reply to view."
-msgstr ""
+msgstr "Klicke 'antworten' um den Faden anzusehen"
 
 #: ../../../../js/expand.js:20 ../../../../js/expand.js:22
 msgid "Click to expand"
-msgstr ""
+msgstr "Klicken zum auspacken"
 
 #: ../../../../js/expand.js:44 ../../../../js/expand.js:46
 msgid "Hide expanded replies"
-msgstr ""
+msgstr "Ausgepackte Fäden ausblenden"
 
 #: ../../../../js/oekaki.js:10
 msgid "Brush size"
-msgstr ""
+msgstr "Pinselgröße"
 
 #: ../../../../js/oekaki.js:10
 msgid "Set text"
-msgstr ""
+msgstr "Text setzen"
 
 #: ../../../../js/oekaki.js:10
 msgid "Clear"
-msgstr ""
+msgstr "Leeren"
 
 #: ../../../../js/oekaki.js:10
 msgid "Save"
-msgstr ""
+msgstr "Speichern"
 
 #: ../../../../js/oekaki.js:10
 msgid "Load"
-msgstr ""
+msgstr "Laden"
 
 #: ../../../../js/oekaki.js:11
 msgid "Toggle eraser"
@@ -151,11 +152,11 @@ msgstr ""
 
 #: ../../../../js/oekaki.js:11
 msgid "Get color"
-msgstr ""
+msgstr "Farbe wählen"
 
 #: ../../../../js/oekaki.js:11
 msgid "Fill"
-msgstr ""
+msgstr "Füllen"
 
 #: ../../../../js/oekaki.js:12
 msgid "Use oekaki instead of file?"
@@ -167,11 +168,11 @@ msgstr ""
 
 #: ../../../../js/oekaki.js:152
 msgid "Enter some text"
-msgstr ""
+msgstr "Text eingeben"
 
 #: ../../../../js/oekaki.js:153
 msgid "Enter font or leave empty"
-msgstr ""
+msgstr "Font wählen oder leer lassen"
 
 #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65
 #: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60
@@ -179,70 +180,70 @@ msgstr ""
 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67
 #: ../../../../js/forced-anon.js:71
 msgid "Forced anonymity"
-msgstr ""
+msgstr "Erzwungene Anonymität"
 
 #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65
 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66
 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67
 msgid "enabled"
-msgstr ""
+msgstr "erlaubt"
 
 #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69
 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70
 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71
 msgid "disabled"
-msgstr ""
+msgstr "verboten"
 
 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
 #: ../../../../js/local-time.js:30
 msgid "Sun"
-msgstr ""
+msgstr "So"
 
 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
 #: ../../../../js/local-time.js:30
 msgid "Mon"
-msgstr ""
+msgstr "Mo"
 
 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
 #: ../../../../js/local-time.js:30
 msgid "Tue"
-msgstr ""
+msgstr "Di"
 
 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
 #: ../../../../js/local-time.js:30
 msgid "Wed"
-msgstr ""
+msgstr "Mi"
 
 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
 #: ../../../../js/local-time.js:30
 msgid "Thu"
-msgstr ""
+msgstr "Do"
 
 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
 #: ../../../../js/local-time.js:30
 msgid "Fri"
-msgstr ""
+msgstr "Fr"
 
 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
 #: ../../../../js/local-time.js:30
 msgid "Sat"
-msgstr ""
+msgstr "Sa"
 
 #: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32
 #: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33
 #: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52
 msgid "Catalog"
-msgstr ""
+msgstr "Katalog"
 
 #: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21
 #: ../../../../js/quick-reply-old.js:23
 msgid "Submit"
-msgstr ""
+msgstr "Bestätigen"
 
 #: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31
 #: ../../../../js/quick-reply-old.js:33
 msgid "Quick reply"
-msgstr ""
+msgstr "Schnelllantwort"
 
 #: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33
 #: ../../../../js/quick-reply-old.js:35
@@ -253,116 +254,116 @@ msgstr ""
 #: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33
 #: ../../../../js/quick-reply-old.js:35
 msgid "Return"
-msgstr ""
+msgstr "Zurück"
 
 #: ../../../../js/expand-all-images.js:20
 #: ../../../../js/expand-all-images.js:21
 #: ../../../../js/expand-all-images.js:22
 msgid "Expand all images"
-msgstr ""
+msgstr "Alle Bilder vergrößern"
 
 #: ../../../../templates/main.js:6
 msgid "Hello!"
-msgstr ""
+msgstr "Hallo,"
 
 #: ../../../../templates/main.js:18
 #, python-brace-format
 msgid "{0} users"
-msgstr ""
+msgstr "{0} User"
 
 #: ../../../../templates/themes/ukko/ukko.js:28
 #: ../../../../templates/themes/ukko/ukko.js:39
 #: ../../../../templates/themes/ukko/ukko.js:29
 #: ../../../../templates/themes/ukko/ukko.js:40
 msgid "(hide threads from this board)"
-msgstr ""
+msgstr "(Fäden dieses Brett's ausblenden)"
 
 #: ../../../../templates/themes/ukko/ukko.js:32
 #: ../../../../templates/themes/ukko/ukko.js:44
 #: ../../../../templates/themes/ukko/ukko.js:33
 #: ../../../../templates/themes/ukko/ukko.js:45
 msgid "(show threads from this board)"
-msgstr ""
+msgstr "(Fäden dieses Brett's anzeigen) "
 
 #: ../../../../templates/themes/ukko/ukko.js:57
 #: ../../../../templates/themes/ukko/ukko.js:58
 msgid "No more threads to display"
-msgstr ""
+msgstr "Keine Fäden vorhanden"
 
 #: ../../../../templates/themes/ukko/ukko.js:79
 #: ../../../../templates/themes/ukko/ukko.js:80
 msgid "Loading..."
-msgstr ""
+msgstr "Lädt"
 
 #: ../../../../js/download-original.js:32
 #: ../../../../js/download-original.js:33
 msgid "Save as original filename"
-msgstr ""
+msgstr "Original-Dateiname speichern"
 
 #: ../../../../js/ajax-post-controls.js:43
 msgid "Reported post(s)."
-msgstr ""
+msgstr "Gemeldete Posts"
 
 #: ../../../../js/ajax-post-controls.js:53
 msgid "An unknown error occured!"
-msgstr ""
+msgstr "Ein unbekannter Fehler ist aufgetretten"
 
 #: ../../../../js/ajax-post-controls.js:60
 msgid "Something went wrong... An unknown error occured!"
-msgstr ""
+msgstr "Irgendwas stimmt nicht... Ein unbekannter Fehler ist aufgetretten "
 
 #: ../../../../js/ajax-post-controls.js:68
 msgid "Working..."
-msgstr ""
+msgstr "Funktioniert..."
 
 #: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45
 msgid "Posting... (#%)"
-msgstr ""
+msgstr "Posting... (#%)"
 
 #: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109
 msgid "Posted..."
-msgstr ""
+msgstr "Gepostet..."
 
 #: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111
 msgid "An unknown error occured when posting!"
-msgstr ""
+msgstr "Beim posten ist ein unbekannter Fehler aufgetretten!"
 
 #: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135
 msgid "Posting..."
-msgstr ""
+msgstr "Postet..."
 
 #: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224
 #: ../../../../js/quick-reply.js:225
 msgid "Upload URL"
-msgstr ""
+msgstr "Upload URL"
 
 #: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267
 #: ../../../../js/quick-reply.js:268
 msgid "Spoiler Image"
-msgstr ""
+msgstr "Bilder spoilern"
 
 #: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278
 #: ../../../../js/quick-reply.js:279
 msgid "Comment"
-msgstr ""
+msgstr "Kommentar"
 
 #: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406
 #: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407
 #: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408
 msgid "Quick Reply"
-msgstr ""
+msgstr "Schnellantwort"
 
 #: ../../../../js/watch.js:249 ../../../../js/watch.js:250
 #: ../../../../js/watch.js:288 ../../../../js/watch.js:289
 #: ../../../../js/watch.js:330 ../../../../js/watch.js:331
 msgid "Stop watching this thread"
-msgstr ""
+msgstr "Faden nicht länger verfolgen"
 
 #: ../../../../js/watch.js:249 ../../../../js/watch.js:250
 #: ../../../../js/watch.js:288 ../../../../js/watch.js:289
 #: ../../../../js/watch.js:330 ../../../../js/watch.js:331
 msgid "Watch this thread"
-msgstr ""
+msgstr "Faden verfolgen"
 
 #: ../../../../js/watch.js:260 ../../../../js/watch.js:261
 #: ../../../../js/watch.js:269 ../../../../js/watch.js:299
@@ -370,7 +371,7 @@ msgstr ""
 #: ../../../../js/watch.js:341 ../../../../js/watch.js:342
 #: ../../../../js/watch.js:350
 msgid "Unpin this board"
-msgstr ""
+msgstr "Brett nicht mehr anpinnen"
 
 #: ../../../../js/watch.js:260 ../../../../js/watch.js:261
 #: ../../../../js/watch.js:269 ../../../../js/watch.js:299
@@ -378,7 +379,7 @@ msgstr ""
 #: ../../../../js/watch.js:341 ../../../../js/watch.js:342
 #: ../../../../js/watch.js:350
 msgid "Pin this board"
-msgstr ""
+msgstr "Brett anpinnen"
 
 #: ../../../../js/watch.js:262 ../../../../js/watch.js:267
 #: ../../../../js/watch.js:268 ../../../../js/watch.js:301
@@ -386,7 +387,7 @@ msgstr ""
 #: ../../../../js/watch.js:343 ../../../../js/watch.js:348
 #: ../../../../js/watch.js:349
 msgid "Stop watching this board"
-msgstr ""
+msgstr "Brett nicht mehr verfolgen"
 
 #: ../../../../js/watch.js:262 ../../../../js/watch.js:267
 #: ../../../../js/watch.js:268 ../../../../js/watch.js:301
@@ -394,7 +395,7 @@ msgstr ""
 #: ../../../../js/watch.js:343 ../../../../js/watch.js:348
 #: ../../../../js/watch.js:349
 msgid "Watch this board"
-msgstr ""
+msgstr "Brett verfolgen"
 
 #: ../../../../js/wpaint.js:113
 msgid "Click on any image on this site to load it into oekaki applet"
@@ -402,155 +403,155 @@ msgstr ""
 
 #: ../../../../js/local-time.js:29
 msgid "Sunday"
-msgstr ""
+msgstr "Sonntag"
 
 #: ../../../../js/local-time.js:29
 msgid "Monday"
-msgstr ""
+msgstr "Montag"
 
 #: ../../../../js/local-time.js:29
 msgid "Tuesday"
-msgstr ""
+msgstr "Dienstag"
 
 #: ../../../../js/local-time.js:29
 msgid "Wednesday"
-msgstr ""
+msgstr "Mittwoch"
 
 #: ../../../../js/local-time.js:29
 msgid "Thursday"
-msgstr ""
+msgstr "Donnerstag"
 
 #: ../../../../js/local-time.js:29
 msgid "Friday"
-msgstr ""
+msgstr "Freitag"
 
 #: ../../../../js/local-time.js:29
 msgid "Saturday"
-msgstr ""
+msgstr "Samstag"
 
 #: ../../../../js/local-time.js:31
 msgid "January"
-msgstr ""
+msgstr "Januar"
 
 #: ../../../../js/local-time.js:31
 msgid "February"
-msgstr ""
+msgstr "Februar"
 
 #: ../../../../js/local-time.js:31
 msgid "March"
-msgstr ""
+msgstr "März"
 
 #: ../../../../js/local-time.js:31
 msgid "April"
-msgstr ""
+msgstr "April"
 
 #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32
 msgid "May"
-msgstr ""
+msgstr "Mai"
 
 #: ../../../../js/local-time.js:31
 msgid "June"
-msgstr ""
+msgstr "Juni"
 
 #: ../../../../js/local-time.js:31
 msgid "July"
-msgstr ""
+msgstr "Juli"
 
 #: ../../../../js/local-time.js:31
 msgid "August"
-msgstr ""
+msgstr "August"
 
 #: ../../../../js/local-time.js:31
 msgid "September"
-msgstr ""
+msgstr "September"
 
 #: ../../../../js/local-time.js:31
 msgid "October"
-msgstr ""
+msgstr "Oktober"
 
 #: ../../../../js/local-time.js:31
 msgid "November"
-msgstr ""
+msgstr "November"
 
 #: ../../../../js/local-time.js:31
 msgid "December"
-msgstr ""
+msgstr "Dezember"
 
 #: ../../../../js/local-time.js:32
 msgid "Jan"
-msgstr ""
+msgstr "Jan"
 
 #: ../../../../js/local-time.js:32
 msgid "Feb"
-msgstr ""
+msgstr "Feb"
 
 #: ../../../../js/local-time.js:32
 msgid "Mar"
-msgstr ""
+msgstr "Mar"
 
 #: ../../../../js/local-time.js:32
 msgid "Apr"
-msgstr ""
+msgstr "Apr"
 
 #: ../../../../js/local-time.js:32
 msgid "Jun"
-msgstr ""
+msgstr "Jun"
 
 #: ../../../../js/local-time.js:32
 msgid "Jul"
-msgstr ""
+msgstr "Jul"
 
 #: ../../../../js/local-time.js:32
 msgid "Aug"
-msgstr ""
+msgstr "Aug"
 
 #: ../../../../js/local-time.js:32
 msgid "Sep"
-msgstr ""
+msgstr "Sep"
 
 #: ../../../../js/local-time.js:32
 msgid "Oct"
-msgstr ""
+msgstr "Okt"
 
 #: ../../../../js/local-time.js:32
 msgid "Nov"
-msgstr ""
+msgstr "Nov"
 
 #: ../../../../js/local-time.js:32
 msgid "Dec"
-msgstr ""
+msgstr "Dez"
 
 #: ../../../../js/local-time.js:33
 msgid "AM"
-msgstr ""
+msgstr "AM"
 
 #: ../../../../js/local-time.js:34
 msgid "PM"
-msgstr ""
+msgstr "PM"
 
 #: ../../../../js/local-time.js:35
 msgid "am"
-msgstr ""
+msgstr "am"
 
 #: ../../../../js/local-time.js:36
 msgid "pm"
-msgstr ""
+msgstr "pm"
 
 #: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48
 msgid "Your browser does not support HTML5 video."
-msgstr ""
+msgstr "Dein Browser unterstützt keine HTML5-Videos."
 
 #: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192
 msgid "[play once]"
-msgstr ""
+msgstr "[Abspielen]"
 
 #: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193
 msgid "[loop]"
-msgstr ""
+msgstr "[Schleife]"
 
 #: ../../../../js/webm-settings.js:42
 msgid "WebM Settings"
-msgstr ""
+msgstr "WebM Einstellungen"
 
 #: ../../../../js/webm-settings.js:44
 msgid "Expand videos inline"
@@ -562,4 +563,4 @@ msgstr ""
 
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
-msgstr ""
+msgstr "Standardlautstärke"
diff --git a/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo b/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo
index ed1a6c240b64aa2a160de04d53ac59a51dfa5e46..4b188f2a0910d0dac94127ba1dffdc69d8986dcd 100644
GIT binary patch
literal 8809
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

delta 105
zcmaFq@`Bmoo)F7a1|VPrVi_P-0b*t#)&XJ=umIw9KuJp=4N?OGlP?IDvs)+_8CaPb
lO!gBI7fY^6%q~{2$xSRu&dhT#%PdOP%S$cUTra}P2mmJo6F~p~

diff --git a/inc/locale/de_DE/LC_MESSAGES/tinyboard.po b/inc/locale/de_DE/LC_MESSAGES/tinyboard.po
index e72e1068..1636fa8a 100644
--- a/inc/locale/de_DE/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/de_DE/LC_MESSAGES/tinyboard.po
@@ -2,13 +2,14 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # Translators:
+# zzrutkjf <fgnthjrj@byom.de>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
-"Last-Translator: czaks <marcin@6irc.net>\n"
+"PO-Revision-Date: 2014-04-19 21:43+0000\n"
+"Last-Translator: zzrutkjf <fgnthjrj@byom.de>\n"
 "Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,8 +24,8 @@ msgstr ""
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 msgid "second"
 msgid_plural "seconds"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Sekunde"
+msgstr[1] "Sekunden"
 
 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602
 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610
@@ -33,8 +34,8 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 msgid "minute"
 msgid_plural "minutes"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Minute"
+msgstr[1] "Minuten"
 
 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604
 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612
@@ -43,8 +44,8 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
 msgid "hour"
 msgid_plural "hours"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Stunde"
+msgstr[1] "Stunden"
 
 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606
 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614
@@ -53,8 +54,8 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
 msgid "day"
 msgid_plural "days"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Tag"
+msgstr[1] "Tage"
 
 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608
 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616
@@ -63,8 +64,8 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
 msgid "week"
 msgid_plural "weeks"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Woche"
+msgstr[1] "Wochen"
 
 #: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611
 #: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619
@@ -73,14 +74,14 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
 msgid "year"
 msgid_plural "years"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Jahr"
+msgstr[1] "Jahre"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
 #: ../../../../inc/functions.php:708
 msgid "Banned!"
-msgstr ""
+msgstr "Gebannt!"
 
 #. There is no previous page.
 #: ../../../../inc/functions.php:1125 ../../../../inc/functions.php:1139
@@ -90,7 +91,7 @@ msgstr ""
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
 msgid "Previous"
-msgstr ""
+msgstr "Vorheriges"
 
 #. There is no next page.
 #: ../../../../inc/functions.php:1144 ../../../../inc/functions.php:1153
@@ -100,77 +101,77 @@ msgstr ""
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
 #: ../../../../inc/functions.php:1234
 msgid "Next"
-msgstr ""
+msgstr "Nächstes"
 
 #: ../../../../inc/display.php:93 ../../../../inc/display.php:105
 #: ../../../../inc/display.php:108
 msgid "Error"
-msgstr ""
+msgstr "Fehler"
 
 #: ../../../../inc/display.php:94 ../../../../inc/display.php:106
 #: ../../../../inc/display.php:109
 msgid "An error has occured."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten"
 
 #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62
 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122
 #: ../../../../inc/display.php:125
 msgid "Login"
-msgstr ""
+msgstr "Login"
 
 #: ../../../../inc/display.php:229 ../../../../inc/display.php:241
 #: ../../../../inc/display.php:244
 #, php-format
 msgid "Post too long. Click <a href=\"%s\">here</a> to view the full text."
-msgstr ""
+msgstr "Post zu lang. Klicke <a href=\"%s\">hier</a> um alles anzuzeigen."
 
 #: ../../../../inc/display.php:368 ../../../../inc/display.php:473
 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495
 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498
 msgid "Ban"
-msgstr ""
+msgstr "Bannen"
 
 #: ../../../../inc/display.php:372 ../../../../inc/display.php:477
 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499
 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502
 msgid "Ban & Delete"
-msgstr ""
+msgstr "Bannen & Löschen"
 
 #: ../../../../inc/display.php:376 ../../../../inc/display.php:481
 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503
 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506
 msgid "Delete file"
-msgstr ""
+msgstr "Datei löschen"
 
 #: ../../../../inc/display.php:376 ../../../../inc/display.php:481
 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503
 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506
 msgid "Are you sure you want to delete this file?"
-msgstr ""
+msgstr "Bist du sicher dass du diese Datei löschen willst?"
 
 #: ../../../../inc/display.php:380 ../../../../inc/display.php:485
 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507
 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510
 msgid "Spoiler File"
-msgstr ""
+msgstr "Datei spoilern"
 
 #: ../../../../inc/display.php:380 ../../../../inc/display.php:485
 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507
 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510
 msgid "Are you sure you want to spoiler this file?"
-msgstr ""
+msgstr "Bist du sicher das du diese Datei spoilern willst?"
 
 #: ../../../../inc/display.php:384 ../../../../inc/display.php:401
 #: ../../../../inc/display.php:404
 msgid "Move reply to another board"
-msgstr ""
+msgstr "Antwort in ein anderes Brett verschieben"
 
 #: ../../../../inc/display.php:388 ../../../../inc/display.php:512
 #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494
 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534
 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537
 msgid "Edit post"
-msgstr ""
+msgstr "Post editieren"
 
 #. line 5
 #: ../../../../inc/display.php:461
@@ -179,22 +180,22 @@ msgstr ""
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36
 #: ../../../../inc/display.php:486
 msgid "Delete"
-msgstr ""
+msgstr "Löschen"
 
 #: ../../../../inc/display.php:461 ../../../../inc/display.php:483
 #: ../../../../inc/display.php:486
 msgid "Are you sure you want to delete this?"
-msgstr ""
+msgstr "Bist du sicher dass du das löschen willst?"
 
 #: ../../../../inc/display.php:465 ../../../../inc/display.php:487
 #: ../../../../inc/display.php:490
 msgid "Delete all posts by IP"
-msgstr ""
+msgstr "Alle Posts dieser IP löschen"
 
 #: ../../../../inc/display.php:465 ../../../../inc/display.php:487
 #: ../../../../inc/display.php:490
 msgid "Are you sure you want to delete all posts by this IP address?"
-msgstr ""
+msgstr "Bist du sicher dass du alle Posts dieser IP löschen willst?"
 
 #: ../../../../inc/display.php:469 ../../../../inc/display.php:491
 #: ../../../../inc/display.php:494
@@ -211,37 +212,37 @@ msgstr ""
 #: ../../../../inc/display.php:490 ../../../../inc/display.php:512
 #: ../../../../inc/display.php:515
 msgid "Make thread not sticky"
-msgstr ""
+msgstr "Faden nicht mehr anpinnen"
 
 #: ../../../../inc/display.php:492 ../../../../inc/display.php:514
 #: ../../../../inc/display.php:517
 msgid "Make thread sticky"
-msgstr ""
+msgstr "Faden anpinnen"
 
 #: ../../../../inc/display.php:496 ../../../../inc/display.php:518
 #: ../../../../inc/display.php:521
 msgid "Allow thread to be bumped"
-msgstr ""
+msgstr "Faden darf gestoßen werden"
 
 #: ../../../../inc/display.php:498 ../../../../inc/display.php:520
 #: ../../../../inc/display.php:523
 msgid "Prevent thread from being bumped"
-msgstr ""
+msgstr "Faden darf nicht gestoßen werden"
 
 #: ../../../../inc/display.php:503 ../../../../inc/display.php:525
 #: ../../../../inc/display.php:528
 msgid "Unlock thread"
-msgstr ""
+msgstr "Faden aufmachen"
 
 #: ../../../../inc/display.php:505 ../../../../inc/display.php:527
 #: ../../../../inc/display.php:530
 msgid "Lock thread"
-msgstr ""
+msgstr "Faden schließen"
 
 #: ../../../../inc/display.php:508 ../../../../inc/display.php:530
 #: ../../../../inc/display.php:533
 msgid "Move thread to another board"
-msgstr ""
+msgstr "Faden in anderes Brett verschieben"
 
 #. How long before Tinyboard forgets about a mute?
 #. 2 weeks
@@ -250,7 +251,7 @@ msgstr ""
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
 #: ../../../../inc/config.php:474
 msgid "You have been muted for unoriginal content."
-msgstr ""
+msgstr "Du wurdest für unorginellen Inhalt stumm gestellt"
 
 #. The names on the post buttons. (On most imageboards, these are both just
 #. "Post").
@@ -260,13 +261,13 @@ msgstr ""
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
 #: ../../../../inc/config.php:776
 msgid "New Topic"
-msgstr ""
+msgstr "Neuer Faden"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
 #: ../../../../inc/config.php:777
 msgid "New Reply"
-msgstr ""
+msgstr "Neue Antwort"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
@@ -275,7 +276,7 @@ msgstr ""
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
-msgstr ""
+msgstr "Alle Warenzeichen, Urheberrechte, Kommentare und Bilder auf dieser Seite sind Eigentum und in der Verantwortung der jeweiligen Parteien."
 
 #. * ====================
 #. *  Error messages
@@ -283,7 +284,7 @@ msgstr ""
 #. Error messages
 #: ../../../../inc/config.php:866
 msgid "Lurk some more before posting."
-msgstr ""
+msgstr "Lauer meer bevor du pfostierst"
 
 #. * ====================
 #. *  Error messages
@@ -297,137 +298,137 @@ msgstr ""
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
 #: ../../../../inc/config.php:967
 msgid "You look like a bot."
-msgstr ""
+msgstr "Du bist wie ein Bot"
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
 #: ../../../../inc/config.php:968
 msgid "Your browser sent an invalid or no HTTP referer."
-msgstr ""
+msgstr "Dein Browser sendet fehlerhafte oder keine HTTP-Referer"
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
 #: ../../../../inc/config.php:969
 #, php-format
 msgid "The %s field was too long."
-msgstr ""
+msgstr "Das %s Feld war zu lang."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
 #: ../../../../inc/config.php:970
 msgid "The body was too long."
-msgstr ""
+msgstr "Text zu lang."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
 #: ../../../../inc/config.php:971
 msgid "The body was too short or empty."
-msgstr ""
+msgstr "Text zu kurz oder leer."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
 #: ../../../../inc/config.php:972
 msgid "You must upload an image."
-msgstr ""
+msgstr "Du musst ein Bild hochladen"
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
 #: ../../../../inc/config.php:973
 msgid "The server failed to handle your upload."
-msgstr ""
+msgstr "Der Server kann nicht mit der hochgeladenen Datei umgehen."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:974
 msgid "Unsupported image format."
-msgstr ""
+msgstr "Dateiformat nicht erlaubt."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:975
 msgid "Invalid board!"
-msgstr ""
+msgstr "Fehlendes Brett!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:976
 msgid "Thread specified does not exist."
-msgstr ""
+msgstr "Der angegebene Faden existiert nicht."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:977
 msgid "Thread locked. You may not reply at this time."
-msgstr ""
+msgstr "Faden geschloßen. Posten ist zur Zeit nicht möglcih"
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:978
 msgid "Thread has reached its maximum reply limit."
-msgstr ""
+msgstr "Der Faden hat die maximale Anzahl an Posts erreicht."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:979
 msgid "Thread has reached its maximum image limit."
-msgstr ""
+msgstr "Der Faden hat die maximale Anzahl an Bildern erreicht. "
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:980
 msgid "You didn't make a post."
-msgstr ""
+msgstr "Du hast nicht gepostet."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:981
 msgid "Flood detected; Post discarded."
-msgstr ""
+msgstr "Spam-Flut erkannt; Post abewehrt."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:982
 msgid "Your request looks automated; Post discarded."
-msgstr ""
+msgstr "Deine Aktivitäten scheinen automatisiert zu sein; Post abgewehrt."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:983
 msgid "Unoriginal content!"
-msgstr ""
+msgstr "Unorigineller Inhalt!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:984
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
-msgstr ""
+msgstr "Unorigineller Inhalt! Du wurdest für %d Sekunden auf stumm geschaltet."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:985
 #, php-format
 msgid "You are muted! Expires in %d seconds."
-msgstr ""
+msgstr "Du bist noch %d Sekunden auf stumm geschaltet."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:986
 #, php-format
 msgid "Your IP address is listed in %s."
-msgstr ""
+msgstr "Deine IP-Adresse ist aufgeführt in %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:987
 msgid "Too many links; flood detected."
-msgstr ""
+msgstr "Zu viele Verlinkungen; Spam-Flut erkannt."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:988
 msgid "Too many cites; post discarded."
-msgstr ""
+msgstr "Zu viele Zitate; Spam-Flut erkannt."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
@@ -439,70 +440,70 @@ msgstr ""
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:990
 msgid "You didn't select anything to delete."
-msgstr ""
+msgstr "Du hast nichts zum löschen ausgewählt."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:991
 msgid "You didn't select anything to report."
-msgstr ""
+msgstr "Du hast nichts zum melden ausgwählt."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:992
 msgid "You can't report that many posts at once."
-msgstr ""
+msgstr "Du kannst nicht so viele Posts auf ein mal melden."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:993
 msgid "Wrong password…"
-msgstr ""
+msgstr "Falsches Passwort."
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:994
 msgid "Invalid image."
-msgstr ""
+msgstr "Ungültiges Bild."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:995
 msgid "Unknown file extension."
-msgstr ""
+msgstr "Unbekannte Dateiendung."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:996
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
-msgstr ""
+msgstr "Maximale Dateigröße: %maxsz% bytes<br>Deine Dateigröße: %filesz% bytes"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:997
 msgid "The file was too big."
-msgstr ""
+msgstr "Die Datei ist zu groß."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:998
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
-msgstr ""
+msgstr "Diese Datei <a href=\"%s\">existiert bereits</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:999
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
-msgstr ""
+msgstr "Diese Datei <a href=\"%s\">existiert bereits</a> in diesem Faden!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:1000
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
-msgstr ""
+msgstr "Du musst noch %s warten bevor du das löschen kannst."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
@@ -514,13 +515,13 @@ msgstr ""
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:1002
 msgid "Couldn't make sense of the URL of the video you tried to embed."
-msgstr ""
+msgstr "Es macht keinen Sinn diese Video-URL einzubetten."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:1003
 msgid "You seem to have mistyped the verification."
-msgstr ""
+msgstr "Du hast das Captcha falsch eingegeben."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
@@ -530,19 +531,19 @@ msgstr ""
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
 "users."
-msgstr ""
+msgstr "Du darfst maximal %s User zur gleichen Zeit unbannen. Du wolltest %u User unbannen.."
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:1007
 msgid "Invalid username and/or password."
-msgstr ""
+msgstr "Falscher Nutzername und/oder Passwort."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:1008
 msgid "You are not a mod…"
-msgstr ""
+msgstr "Du bist kein Mod."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
@@ -550,77 +551,77 @@ msgstr ""
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
-msgstr ""
+msgstr "Falscher Nutzername und/oder Passwort. Vielleicht hat sich ihr Benutzer geändert."
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:1010
 msgid "Invalid/malformed cookies."
-msgstr ""
+msgstr "Ungültige Cookies."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
 #: ../../../../inc/config.php:1011
 msgid "Your browser didn't submit an input when it should have."
-msgstr ""
+msgstr "Dein Browser übermittelt keine Daten wenn er sollte."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
 #: ../../../../inc/config.php:1012
 #, php-format
 msgid "The %s field is required."
-msgstr ""
+msgstr "Das Feld %s darf nicht leer bleiben."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1013
 #, php-format
 msgid "The %s field was invalid."
-msgstr ""
+msgstr "Das Feld %s beinhaltet einen Fehler."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1014
 #, php-format
 msgid "There is already a %s board."
-msgstr ""
+msgstr "Ein %s-Brett existiert bereits."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1015
 msgid "You don't have permission to do that."
-msgstr ""
+msgstr "Du hast nicht die Berechtigung das zu tun."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1016
 msgid "That post doesn't exist…"
-msgstr ""
+msgstr "Dieser Post existiert nicht..."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1017
 msgid "Page not found."
-msgstr ""
+msgstr "Seite nicht gefunden."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1018
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
-msgstr ""
+msgstr "Der Mod <a href=\"?/users/%d\">existiert bereits</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019
 msgid "That theme doesn't exist!"
-msgstr ""
+msgstr "Dieses Theme existiert nicht"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1020
 msgid "Invalid security token! Please go back and try again."
-msgstr ""
+msgstr "Falsche Sicherheitszeichen! Bitte gehe zurück und probiere es erneut!"
 
 #. Default public ban message. In public ban messages, %length% is replaced
 #. with "for x days" or
@@ -632,46 +633,46 @@ msgstr ""
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
 #: ../../../../inc/config.php:1187
 msgid "USER WAS BANNED FOR THIS POST"
-msgstr ""
+msgstr "USER WURDE FÜR DIESEN POST GEBANNT"
 
 #: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64
 msgid "Confirm action"
-msgstr ""
+msgstr "Bestätigungsaktion"
 
 #: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108
 msgid "Could not find current version! (Check .installed)"
-msgstr ""
+msgstr "Die aktuelle Version wurde nicht gefunden! (Überprüfe .installed)"
 
 #: ../../../../inc/mod/pages.php:162
 msgid "Dashboard"
-msgstr ""
+msgstr "Übersicht"
 
 #: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265
 msgid "There are no boards to search!"
-msgstr ""
+msgstr "Keine Bretter zum suchen vorhanden!"
 
 #. $results now contains the search results
 #: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334
 msgid "Search results"
-msgstr ""
+msgstr "Suchergebnisse"
 
 #: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438
 msgid "Edit board"
-msgstr ""
+msgstr "Brett ändern"
 
 #: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491
 msgid "Couldn't open board after creation."
-msgstr ""
+msgstr "Brett kann nicht geöffnet werden."
 
 #: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511
 msgid "New board"
-msgstr ""
+msgstr "Neues Brett"
 
 #. line 37
 #: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121
 msgid "Noticeboard"
-msgstr ""
+msgstr "Informationen"
 
 #: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194

From 7f10c09313d508ece9fb6f272c6911560e5e8a94 Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sun, 20 Apr 2014 00:58:33 +0200
Subject: [PATCH 05/14] update locales

---
 inc/locale/cs_CZ/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo  | Bin 18887 -> 18887 bytes
 inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po  | 211 +++++---
 inc/locale/de_DE/LC_MESSAGES/javascript.js |   2 +-
 inc/locale/de_DE/LC_MESSAGES/javascript.po |  12 +-
 inc/locale/de_DE/LC_MESSAGES/tinyboard.mo  | Bin 8809 -> 18846 bytes
 inc/locale/de_DE/LC_MESSAGES/tinyboard.po  | 571 ++++++++++++---------
 inc/locale/en/LC_MESSAGES/javascript.po    |   8 +-
 inc/locale/en/LC_MESSAGES/tinyboard.po     | 230 ++++++---
 inc/locale/en_AU/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/en_AU/LC_MESSAGES/tinyboard.mo  | Bin 491 -> 491 bytes
 inc/locale/en_AU/LC_MESSAGES/tinyboard.po  | 211 +++++---
 inc/locale/es_ES/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/es_ES/LC_MESSAGES/tinyboard.mo  | Bin 21714 -> 21714 bytes
 inc/locale/es_ES/LC_MESSAGES/tinyboard.po  | 211 +++++---
 inc/locale/fi_FI/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo  | Bin 21716 -> 21716 bytes
 inc/locale/fi_FI/LC_MESSAGES/tinyboard.po  | 211 +++++---
 inc/locale/fr_FR/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo  | Bin 23514 -> 23514 bytes
 inc/locale/fr_FR/LC_MESSAGES/tinyboard.po  | 211 +++++---
 inc/locale/hu_HU/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo  | Bin 23947 -> 23940 bytes
 inc/locale/hu_HU/LC_MESSAGES/tinyboard.po  | 213 +++++---
 inc/locale/lt_LT/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo  | Bin 12317 -> 12317 bytes
 inc/locale/lt_LT/LC_MESSAGES/tinyboard.po  | 211 +++++---
 inc/locale/pl_PL/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo  | Bin 23664 -> 23664 bytes
 inc/locale/pl_PL/LC_MESSAGES/tinyboard.po  | 211 +++++---
 inc/locale/pt_BR/LC_MESSAGES/javascript.po |  10 +-
 inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo  | Bin 23214 -> 23211 bytes
 inc/locale/pt_BR/LC_MESSAGES/tinyboard.po  | 213 +++++---
 inc/locale/ru_RU/LC_MESSAGES/javascript.po |  10 +-
 inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo  | Bin 14693 -> 14693 bytes
 inc/locale/ru_RU/LC_MESSAGES/tinyboard.po  | 213 +++++---
 inc/locale/sk_SK/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo  | Bin 23787 -> 23787 bytes
 inc/locale/sk_SK/LC_MESSAGES/tinyboard.po  | 211 +++++---
 inc/locale/tr_TR/LC_MESSAGES/javascript.po |   8 +-
 inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo  | Bin 21727 -> 21727 bytes
 inc/locale/tr_TR/LC_MESSAGES/tinyboard.po  | 211 +++++---
 42 files changed, 2276 insertions(+), 1185 deletions(-)

diff --git a/inc/locale/cs_CZ/LC_MESSAGES/javascript.po b/inc/locale/cs_CZ/LC_MESSAGES/javascript.po
index f5dd202a..0cee0212 100644
--- a/inc/locale/cs_CZ/LC_MESSAGES/javascript.po
+++ b/inc/locale/cs_CZ/LC_MESSAGES/javascript.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n"
 "MIME-Version: 1.0\n"
@@ -563,3 +563,7 @@ msgstr ""
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr ""
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo
index 28f611f4cfc7a1a3ba4c9c9db665f74404643c0b..8550e03c38ca4d321c7f22bdcb9612e3bdb5abba 100644
GIT binary patch
delta 35
rcmX>;neq5!#tj#BIE)Mw3=FJHEGOU8QDnDNFfy_-HQCIldrSrZ*ue_e

delta 35
rcmX>;neq5!#tj#BI1DWm3@xpUOeWvdQDnDJFfy<*HQ3CkdrSrZ*@X(*

diff --git a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po
index 14c1801c..ebc65709 100644
--- a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po
@@ -1,13 +1,14 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n"
 "MIME-Version: 1.0\n"
@@ -21,6 +22,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "sekunda"
@@ -32,6 +34,7 @@ msgstr[2] "sekund"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "minuta"
@@ -43,6 +46,7 @@ msgstr[2] "minut"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "hodina"
@@ -54,6 +58,7 @@ msgstr[2] "hodin"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "den"
@@ -65,6 +70,7 @@ msgstr[2] "dnů"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "týden"
@@ -76,6 +82,7 @@ msgstr[2] "týdnů"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "rok"
@@ -84,7 +91,7 @@ msgstr[2] "let"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Máš ban!"
 
@@ -95,6 +102,7 @@ msgstr "Máš ban!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Předchozí"
 
@@ -104,7 +112,8 @@ msgstr "Předchozí"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Další"
 
@@ -254,7 +263,7 @@ msgstr "Přesunout vlákno na jiný board"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Byl jsi umlčen za neoriginální obsah."
 
@@ -264,20 +273,20 @@ msgstr "Byl jsi umlčen za neoriginální obsah."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Nové téma"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Nová odpověď"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -301,237 +310,237 @@ msgstr "Než něco pošleš, zjisti si, jak to tu chodí."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Vypadáš jako robot."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Tvůj prohlížeč neposlal žádný nebo poslal neplatný HTTP referer."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "Pole %s je příliš dlouhé."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "Tělo je příliš dlouhé."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "Tělo je příliš krátké nebo prázdné."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Musíš nahrát obrázek."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "Server nedokázal zpracovat tvůj upload."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Nepodporovaný formát obrázku."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Neplatný board!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Dané vlákno neexistuje."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Vlákno bylo zamknuto. Teď na něj nemůžeš odpovídat."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "Vlákno dosáhlo limit na počet odpovědí."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "Vlákno dosáhlo limit na počet obrázků."
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Nic jsi neposlal."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Detekován flood; příspěvek zahozen."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Tvůj požadavek vypadá strojově; příspěvek zahozen."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Neoriginální obsah!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Neoriginální obsah! Byl jsi na %d sekund umlčen."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Byl jsi umlčen! Mluvit budeš moct až za %d sekund."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Tvoje IP adresa figuruje v %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Příliš mnoho odkazů; detekován flood."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Příliš mnoho citací; příspěvek zahozen."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Příliš mnoho odkazů napříč boardy; příspěvek zahozen."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Nevybral jsi nic ke smazání."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Nevybral jsi nic k nahlášení."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Nemůžeš nahlásit tolik příspěvků najednou."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Špatné heslo…"
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Neplatný obrázek."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Neznámá přípona souboru."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Maximální velikost souboru: %maxsz% bajtů<br>Velikost tvého souboru: %filesz% bajtů"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Soubor je příliš velký."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Tenhle soubor <a href=\"%s\">už tu je</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Tenhle soubor <a href=\"%s\">tu už v tomhle vláknu je</a>!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Než to budeš moct smazat, budeš muset počkat ještě %s."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "Detekován MIME type detection XSS exploit (IE); příspěvek zahozen."
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "Nechápu URL videa, co jsi zkusil vložit."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Asi jsi se upsal u ověření."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -540,19 +549,19 @@ msgstr "Najednou můžeš odbanovat jen %s uživatel. Zkusil jsi jich odbanovat
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Neplatné uživatelské jméno a/nebo heslo."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Nejsi moderátor…"
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -560,71 +569,71 @@ msgstr "Neplatné uživatelské jméno a/nebo heslo. Tvůj uživatel mohl být s
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Neplatné cookies."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Tvůj prohlížeč něco neposlal, i když by měl."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Pole %s je povinné."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "Pole %s je neplatné."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Board %s už tu je."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Na to nemáš oprávnění."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Ten příspěvek neexistuje…"
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Stránka nenalezena."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Tento moderátor <a href=\"?/users/%d\">už existuje</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Toto téma neexistuje!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Neplatný bezpečností token! Vrať se, prosím, a zkus to znova."
 
@@ -636,7 +645,7 @@ msgstr "Neplatný bezpečností token! Vrať se, prosím, a zkus to znova."
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "UŽIVATEL ZA PŘÍSPĚVEK DOSTAL BAN"
 
@@ -711,6 +720,9 @@ msgstr "Log moderací"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -883,10 +895,13 @@ msgstr "Smazat příspěvek"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Soubor"
 
@@ -905,6 +920,7 @@ msgstr "Soubor"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -912,6 +928,7 @@ msgstr "Soubor"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Heslo"
 
@@ -956,6 +973,11 @@ msgstr "Heslo"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1248,22 +1270,28 @@ msgid "Verification"
 msgstr "Ověření"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr ""
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Vložit"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Flagy"
 
@@ -1289,11 +1317,15 @@ msgstr "Flagy"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Přilepené"
 
@@ -1319,11 +1351,15 @@ msgstr "Přilepené"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Zamknout"
 
@@ -1349,21 +1385,27 @@ msgstr "Zamknout"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "Čisté HTML"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Pro smazání souboru.)"
 
@@ -1372,14 +1414,15 @@ msgid "Post search is disabled"
 msgstr "Vyhledávání příspěvků není povolené."
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Před dalším pokusem o vyhledávání chvíli počkej, prosím."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "Dotaz je příliš široký."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
@@ -1387,7 +1430,7 @@ msgstr[0] "%d výsledek v"
 msgstr[1] "%d výsledky v"
 msgstr[2] "%d výsledků v"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Žádné výsledky."
 
@@ -1423,12 +1466,15 @@ msgstr "Žádné výsledky."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Hledat"
 
@@ -1455,6 +1501,7 @@ msgstr ""
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1631,6 +1678,11 @@ msgstr ""
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1660,6 +1712,8 @@ msgstr "Personál"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1708,6 +1762,7 @@ msgstr "Nová poznámka"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1772,6 +1827,11 @@ msgstr "bez důvodu"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1816,6 +1876,7 @@ msgstr "všechny boardy"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1843,6 +1904,7 @@ msgstr "Nastavit"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1878,6 +1940,7 @@ msgstr "nikdy"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1940,6 +2003,7 @@ msgstr "Čas"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1991,6 +2055,7 @@ msgstr "Nový ban"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2075,19 +2140,19 @@ msgstr ""
 msgid "There are no reports."
 msgstr "Nic nebylo nahlášeno."
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr ""
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr ""
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr ""
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr ""
 
@@ -2453,3 +2518,13 @@ msgstr ""
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr ""
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/de_DE/LC_MESSAGES/javascript.js b/inc/locale/de_DE/LC_MESSAGES/javascript.js
index 5d4b7c7f..b4e6d440 100644
--- a/inc/locale/de_DE/LC_MESSAGES/javascript.js
+++ b/inc/locale/de_DE/LC_MESSAGES/javascript.js
@@ -1 +1 @@
-l10n = {"Style: ":"Stil","File":"Datei","hide":"ausblenden","show":"zeigen","Show locked threads":"Geschlo\u00dfene F\u00e4den anzeigen","Hide locked threads":"Geschlo\u00dfene F\u00e4den ausblenden","URL":"URL","Select":"w\u00e4hlen","Remote":"Remote","Embed":"Eingebettet","Oekaki":"Oekaki","hidden":"ausgeblendet","Show images":"Bilder anzeigen","Hide images":"Bilder ausblenden","Password":"Passwort","Delete file only":"Nur die Datei l\u00f6schen","Delete":"L\u00f6schen","Reason":"Grund","Report":"Melden","Click reply to view.":"Klicke 'antworten' um den Faden anzusehen","Click to expand":"Klicken zum auspacken","Hide expanded replies":"Ausgepackte F\u00e4den ausblenden","Brush size":"Pinselgr\u00f6\u00dfe","Set text":"Text setzen","Clear":"Leeren","Save":"Speichern","Load":"Laden","Get color":"Farbe w\u00e4hlen","Fill":"F\u00fcllen","Enter some text":"Text eingeben","Enter font or leave empty":"Font w\u00e4hlen oder leer lassen","Forced anonymity":"Erzwungene Anonymit\u00e4t","enabled":"erlaubt","disabled":"verboten","Sun":"So","Mon":"Mo","Tue":"Di","Wed":"Mi","Thu":"Do","Fri":"Fr","Sat":"Sa","Catalog":"Katalog","Submit":"Best\u00e4tigen","Quick reply":"Schnelllantwort","Return":"Zur\u00fcck","Expand all images":"Alle Bilder vergr\u00f6\u00dfern","Hello!":"Hallo,","{0} users":"{0} User","(hide threads from this board)":"(F\u00e4den dieses Brett's ausblenden)","(show threads from this board)":"(F\u00e4den dieses Brett's anzeigen) ","No more threads to display":"Keine F\u00e4den vorhanden","Loading...":"L\u00e4dt","Save as original filename":"Original-Dateiname speichern","Reported post(s).":"Gemeldete Posts","An unknown error occured!":"Ein unbekannter Fehler ist aufgetretten","Something went wrong... An unknown error occured!":"Irgendwas stimmt nicht... Ein unbekannter Fehler ist aufgetretten ","Working...":"Funktioniert...","Posting... (#%)":"Posting... (#%)","Posted...":"Gepostet...","An unknown error occured when posting!":"Beim posten ist ein unbekannter Fehler aufgetretten!","Posting...":"Postet...","Upload URL":"Upload URL","Spoiler Image":"Bilder spoilern","Comment":"Kommentar","Quick Reply":"Schnellantwort","Stop watching this thread":"Faden nicht l\u00e4nger verfolgen","Watch this thread":"Faden verfolgen","Unpin this board":"Brett nicht mehr anpinnen","Pin this board":"Brett anpinnen","Stop watching this board":"Brett nicht mehr verfolgen","Watch this board":"Brett verfolgen","Sunday":"Sonntag","Monday":"Montag","Tuesday":"Dienstag","Wednesday":"Mittwoch","Thursday":"Donnerstag","Friday":"Freitag","Saturday":"Samstag","January":"Januar","February":"Februar","March":"M\u00e4rz","April":"April","May":"Mai","June":"Juni","July":"Juli","August":"August","September":"September","October":"Oktober","November":"November","December":"Dezember","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dez","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Dein Browser unterst\u00fctzt keine HTML5-Videos.","[play once]":"[Abspielen]","[loop]":"[Schleife]","WebM Settings":"WebM Einstellungen","Default volume":"Standardlautst\u00e4rke"};
\ No newline at end of file
+l10n = {"Style: ":"Stil","File":"Datei","hide":"ausblenden","show":"zeigen","Show locked threads":"Geschlo\u00dfene F\u00e4den anzeigen","Hide locked threads":"Geschlo\u00dfene F\u00e4den ausblenden","URL":"URL","Select":"w\u00e4hlen","Remote":"Remote","Embed":"Eingebettet","Oekaki":"Oekaki","hidden":"ausgeblendet","Show images":"Bilder anzeigen","Hide images":"Bilder ausblenden","Password":"Passwort","Delete file only":"Nur die Datei l\u00f6schen","Delete":"L\u00f6schen","Reason":"Grund","Report":"Melden","Click reply to view.":"Klicke 'antworten' um den Faden anzusehen","Click to expand":"Klicken zum auspacken","Hide expanded replies":"Ausgepackte F\u00e4den ausblenden","Brush size":"Pinselgr\u00f6\u00dfe","Set text":"Text setzen","Clear":"Leeren","Save":"Speichern","Load":"Laden","Get color":"Farbe w\u00e4hlen","Fill":"F\u00fcllen","Enter some text":"Text eingeben","Enter font or leave empty":"Font w\u00e4hlen oder leer lassen","Forced anonymity":"Erzwungene Anonymit\u00e4t","enabled":"erlaubt","disabled":"unerlaubt","Sun":"So","Mon":"Mo","Tue":"Di","Wed":"Mi","Thu":"Do","Fri":"Fr","Sat":"Sa","Catalog":"Katalog","Submit":"Best\u00e4tigen","Quick reply":"Schnelllantwort","Return":"Zur\u00fcck","Expand all images":"Alle Bilder vergr\u00f6\u00dfern","Hello!":"Hallo,","{0} users":"{0} User","(hide threads from this board)":"(F\u00e4den dieses Brett's ausblenden)","(show threads from this board)":"(F\u00e4den dieses Brett's anzeigen) ","No more threads to display":"Keine F\u00e4den vorhanden","Loading...":"L\u00e4dt","Save as original filename":"Original-Dateiname speichern","Reported post(s).":"Gemeldete Posts","An unknown error occured!":"Ein unbekannter Fehler ist aufgetretten","Something went wrong... An unknown error occured!":"Irgendwas stimmt nicht... Ein unbekannter Fehler ist aufgetretten ","Working...":"Funktioniert...","Posting... (#%)":"Posting... (#%)","Posted...":"Gepostet...","An unknown error occured when posting!":"Beim posten ist ein unbekannter Fehler aufgetretten!","Posting...":"Postet...","Upload URL":"Upload URL","Spoiler Image":"Bilder spoilern","Comment":"Kommentar","Quick Reply":"Schnellantwort","Stop watching this thread":"Faden nicht l\u00e4nger verfolgen","Watch this thread":"Faden verfolgen","Unpin this board":"Brett nicht mehr anpinnen","Pin this board":"Brett anpinnen","Stop watching this board":"Brett nicht mehr verfolgen","Watch this board":"Brett verfolgen","Sunday":"Sonntag","Monday":"Montag","Tuesday":"Dienstag","Wednesday":"Mittwoch","Thursday":"Donnerstag","Friday":"Freitag","Saturday":"Samstag","January":"Januar","February":"Februar","March":"M\u00e4rz","April":"April","May":"Mai","June":"Juni","July":"Juli","August":"August","September":"September","October":"Oktober","November":"November","December":"Dezember","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dez","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Dein Browser unterst\u00fctzt keine HTML5-Videos.","[play once]":"[Abspielen]","[loop]":"[Schleife]","WebM Settings":"WebM Einstellungen","Default volume":"Standardlautst\u00e4rke"};
\ No newline at end of file
diff --git a/inc/locale/de_DE/LC_MESSAGES/javascript.po b/inc/locale/de_DE/LC_MESSAGES/javascript.po
index e4423450..9f6c31f6 100644
--- a/inc/locale/de_DE/LC_MESSAGES/javascript.po
+++ b/inc/locale/de_DE/LC_MESSAGES/javascript.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-19 20:23+0000\n"
-"Last-Translator: zzrutkjf <fgnthjrj@byom.de>\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
+"Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -192,7 +192,7 @@ msgstr "erlaubt"
 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70
 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71
 msgid "disabled"
-msgstr "verboten"
+msgstr "unerlaubt"
 
 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
 #: ../../../../js/local-time.js:30
@@ -564,3 +564,7 @@ msgstr ""
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr "Standardlautstärke"
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo b/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo
index 4b188f2a0910d0dac94127ba1dffdc69d8986dcd..877b5d5d3d4153bd3ffb15f7d6224351045e41da 100644
GIT binary patch
literal 18846
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
COeA&y

delta 2949
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
ZmKI>EkwWS6n2CdRYlh+(SII`J{{cU2)Dr*z

diff --git a/inc/locale/de_DE/LC_MESSAGES/tinyboard.po b/inc/locale/de_DE/LC_MESSAGES/tinyboard.po
index 1636fa8a..8bab3ba8 100644
--- a/inc/locale/de_DE/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/de_DE/LC_MESSAGES/tinyboard.po
@@ -1,15 +1,16 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 # zzrutkjf <fgnthjrj@byom.de>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-19 21:43+0000\n"
-"Last-Translator: zzrutkjf <fgnthjrj@byom.de>\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
+"Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,6 +23,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "Sekunde"
@@ -32,6 +34,7 @@ msgstr[1] "Sekunden"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "Minute"
@@ -42,6 +45,7 @@ msgstr[1] "Minuten"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "Stunde"
@@ -52,6 +56,7 @@ msgstr[1] "Stunden"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "Tag"
@@ -62,6 +67,7 @@ msgstr[1] "Tage"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "Woche"
@@ -72,6 +78,7 @@ msgstr[1] "Wochen"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "Jahr"
@@ -79,7 +86,7 @@ msgstr[1] "Jahre"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Gebannt!"
 
@@ -90,6 +97,7 @@ msgstr "Gebannt!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Vorheriges"
 
@@ -99,7 +107,8 @@ msgstr "Vorheriges"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Nächstes"
 
@@ -249,7 +258,7 @@ msgstr "Faden in anderes Brett verschieben"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Du wurdest für unorginellen Inhalt stumm gestellt"
 
@@ -259,20 +268,20 @@ msgstr "Du wurdest für unorginellen Inhalt stumm gestellt"
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Neuer Faden"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Neue Antwort"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -296,237 +305,237 @@ msgstr "Lauer meer bevor du pfostierst"
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Du bist wie ein Bot"
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Dein Browser sendet fehlerhafte oder keine HTTP-Referer"
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "Das %s Feld war zu lang."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "Text zu lang."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "Text zu kurz oder leer."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Du musst ein Bild hochladen"
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "Der Server kann nicht mit der hochgeladenen Datei umgehen."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Dateiformat nicht erlaubt."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Fehlendes Brett!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Der angegebene Faden existiert nicht."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Faden geschloßen. Posten ist zur Zeit nicht möglcih"
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "Der Faden hat die maximale Anzahl an Posts erreicht."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "Der Faden hat die maximale Anzahl an Bildern erreicht. "
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Du hast nicht gepostet."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Spam-Flut erkannt; Post abewehrt."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Deine Aktivitäten scheinen automatisiert zu sein; Post abgewehrt."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Unorigineller Inhalt!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Unorigineller Inhalt! Du wurdest für %d Sekunden auf stumm geschaltet."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Du bist noch %d Sekunden auf stumm geschaltet."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Deine IP-Adresse ist aufgeführt in %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Zu viele Verlinkungen; Spam-Flut erkannt."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Zu viele Zitate; Spam-Flut erkannt."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Du hast nichts zum löschen ausgewählt."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Du hast nichts zum melden ausgwählt."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Du kannst nicht so viele Posts auf ein mal melden."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Falsches Passwort."
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Ungültiges Bild."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Unbekannte Dateiendung."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Maximale Dateigröße: %maxsz% bytes<br>Deine Dateigröße: %filesz% bytes"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Die Datei ist zu groß."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Diese Datei <a href=\"%s\">existiert bereits</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Diese Datei <a href=\"%s\">existiert bereits</a> in diesem Faden!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Du musst noch %s warten bevor du das löschen kannst."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "Es macht keinen Sinn diese Video-URL einzubetten."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Du hast das Captcha falsch eingegeben."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -535,19 +544,19 @@ msgstr "Du darfst maximal %s User zur gleichen Zeit unbannen. Du wolltest %u Use
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Falscher Nutzername und/oder Passwort."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Du bist kein Mod."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -555,71 +564,71 @@ msgstr "Falscher Nutzername und/oder Passwort. Vielleicht hat sich ihr Benutzer
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Ungültige Cookies."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Dein Browser übermittelt keine Daten wenn er sollte."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Das Feld %s darf nicht leer bleiben."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "Das Feld %s beinhaltet einen Fehler."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Ein %s-Brett existiert bereits."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Du hast nicht die Berechtigung das zu tun."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Dieser Post existiert nicht..."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Seite nicht gefunden."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Der Mod <a href=\"?/users/%d\">existiert bereits</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Dieses Theme existiert nicht"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Falsche Sicherheitszeichen! Bitte gehe zurück und probiere es erneut!"
 
@@ -631,7 +640,7 @@ msgstr "Falsche Sicherheitszeichen! Bitte gehe zurück und probiere es erneut!"
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "USER WURDE FÜR DIESEN POST GEBANNT"
 
@@ -677,14 +686,14 @@ msgstr "Informationen"
 #: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194
 msgid "News"
-msgstr ""
+msgstr "Neuigkeiten"
 
 #: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681
 #: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75
 msgid "Moderation log"
-msgstr ""
+msgstr "Mod-Log"
 
 #. line 104
 #. line 20
@@ -706,103 +715,106 @@ msgstr ""
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:64
 msgid "IP"
-msgstr ""
+msgstr "IP"
 
 #. line 171
 #: ../../../../inc/mod/pages.php:848 ../../../../inc/mod/pages.php:1367
 #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440
 msgid "New ban"
-msgstr ""
+msgstr "Neuer Bann"
 
 #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256
 msgid "Ban list"
-msgstr ""
+msgstr "Bannliste"
 
 #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165
 msgid "Move reply"
-msgstr ""
+msgstr "Antwort verschieben"
 
 #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191
 msgid "Target and source board are the same."
-msgstr ""
+msgstr "Quell- und Zielbrett sind das selbe."
 
 #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357
 msgid "Impossible to move thread; there is only one board."
-msgstr ""
+msgstr "Verschieben nicht möglich; nur ein Brett vorhanden."
 
 #. line 39
 #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361
 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114
 msgid "Move thread"
-msgstr ""
+msgstr "Faden verschieben"
 
 #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751
 #: ../../../../inc/mod/pages.php:1775
 msgid "Edit user"
-msgstr ""
+msgstr "User editieren"
 
 #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274
 msgid "Manage users"
-msgstr ""
+msgstr "Userübersicht"
 
 #. deleted?
 #: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899
 #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021
 msgid "New PM for"
-msgstr ""
+msgstr "Neue PN an"
 
 #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952
 msgid "Private message"
-msgstr ""
+msgstr "Private Nachricht"
 
 #. line 68
 #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200
 msgid "PM inbox"
-msgstr ""
+msgstr "PNs"
 
 #: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967
 #: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309
 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115
 msgid "Rebuild"
-msgstr ""
+msgstr "wiederherstellen"
 
 #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238
 msgid "Report queue"
-msgstr ""
+msgstr "Gemeldete Posts"
 
 #: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210
 #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350
 msgid "Config editor"
-msgstr ""
+msgstr "Einstellungen"
 
 #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367
 msgid "Themes directory doesn't exist!"
-msgstr ""
+msgstr "Themenkatalog existiert nicht!"
 
 #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369
 msgid "Cannot open themes directory; check permissions."
-msgstr ""
+msgstr "Themenkatalog kann nicht geöffnet werden; überprüfe deine Berechtigungen."
 
 #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291
 msgid "Manage themes"
-msgstr ""
+msgstr "Themen-Manager"
 
 #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453
 #, php-format
 msgid "Installed theme: %s"
-msgstr ""
+msgstr "Installiertes Theme: %s"
 
 #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464
 #, php-format
@@ -829,33 +841,33 @@ msgstr ""
 #. Print error
 #: ../../../../inc/database.php:72 ../../../../inc/database.php:94
 msgid "Database error: "
-msgstr ""
+msgstr "Datenbankfehler:"
 
 #: ../../../../banned.php:4
 msgid "Banned?"
-msgstr ""
+msgstr "Gebannt?"
 
 #: ../../../../banned.php:5
 msgid "You are not banned."
-msgstr ""
+msgstr "Du bist nicht gebannt."
 
 #. line 6
 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41
 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44
 msgid "Go back"
-msgstr ""
+msgstr "Geh zurück"
 
 #. line 13
 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56
 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59
 msgid "Error information"
-msgstr ""
+msgstr "Fehlerinformationen"
 
 #. line 2
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25
 msgid "Delete Post"
-msgstr ""
+msgstr "Post löschen"
 
 #. line 3
 #. line 84
@@ -878,12 +890,15 @@ msgstr ""
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
-msgstr ""
+msgstr "Datei"
 
 #. line 132
 #. line 14
@@ -900,6 +915,7 @@ msgstr ""
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -907,8 +923,9 @@ msgstr ""
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
-msgstr ""
+msgstr "Passwort"
 
 #. line 8
 #. line 108
@@ -951,6 +968,11 @@ msgstr ""
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -960,13 +982,13 @@ msgstr ""
 #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141
 msgid "Reason"
-msgstr ""
+msgstr "Grund"
 
 #. line 10
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47
 msgid "Report"
-msgstr ""
+msgstr "Melden"
 
 #: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149
 #: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134
@@ -978,7 +1000,7 @@ msgstr ""
 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120
 #: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138
 msgid "Return to dashboard"
-msgstr ""
+msgstr "Zurück zur Übersicht"
 
 #. line 39
 #. line 33
@@ -986,7 +1008,7 @@ msgstr ""
 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146
 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134
 msgid "Posting mode: Reply"
-msgstr ""
+msgstr "Post-Modus: Antworten"
 
 #: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147
 #: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200
@@ -995,12 +1017,12 @@ msgstr ""
 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138
 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186
 msgid "Return"
-msgstr ""
+msgstr "Zurück"
 
 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61
 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64
 msgid "(No news to show.)"
-msgstr ""
+msgstr "(Nichts neues)"
 
 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146
@@ -1008,7 +1030,7 @@ msgstr ""
 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144
 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88
 msgid "no subject"
-msgstr ""
+msgstr "Kein Betreff"
 
 #. line 44
 #. line 56
@@ -1019,7 +1041,7 @@ msgstr ""
 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153
 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94
 msgid "by"
-msgstr ""
+msgstr "von"
 
 #. line 50
 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95
@@ -1027,7 +1049,7 @@ msgstr ""
 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157
 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98
 msgid "at"
-msgstr ""
+msgstr "an"
 
 #. line 28
 #. line 26
@@ -1036,13 +1058,13 @@ msgstr ""
 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88
 msgid "1 reply"
 msgid_plural "%count% replies"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "1 Antwort"
+msgstr[1] "%count% Antworten"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105
 msgid "File:"
-msgstr ""
+msgstr "Datei:"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127
@@ -1054,7 +1076,7 @@ msgstr ""
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209
 #: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128
 msgid "Spoiler Image"
-msgstr ""
+msgstr "Bilder spoilern"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495
@@ -1063,7 +1085,7 @@ msgstr ""
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304
 msgid "Reply"
-msgstr ""
+msgstr "Antwort"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509
@@ -1072,7 +1094,7 @@ msgstr ""
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318
 msgid "View All"
-msgstr ""
+msgstr "Alle anzeigen"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526
@@ -1082,8 +1104,8 @@ msgstr ""
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335
 msgid "Last 1 Post"
 msgid_plural "Last %count% Posts"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Letzter Post"
+msgstr[1] "Letzten %count% Posts"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
@@ -1093,8 +1115,8 @@ msgstr[1] ""
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372
 msgid "1 post"
 msgid_plural "%count% posts"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "1 Post"
+msgstr[1] "%count% Posts"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569
@@ -1104,7 +1126,7 @@ msgstr[1] ""
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378
 msgid "and"
-msgstr ""
+msgstr "und"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581
@@ -1114,8 +1136,8 @@ msgstr ""
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390
 msgid "1 image reply"
 msgid_plural "%count% image replies"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "1 Bild"
+msgstr[1] "%count% Bilder"
 
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586
@@ -1124,7 +1146,7 @@ msgstr[1] ""
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395
 msgid "omitted. Click reply to view."
-msgstr ""
+msgstr "nicht angezeigt. (Klicke 'Antworten' zum anzeigen.)"
 
 #. line 7
 #. line 14
@@ -1152,7 +1174,7 @@ msgstr ""
 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:33
 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40
 msgid "Name"
-msgstr ""
+msgstr "Name"
 
 #. line 15
 #. line 24
@@ -1167,7 +1189,7 @@ msgstr ""
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91
 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47
 msgid "Email"
-msgstr ""
+msgstr "Email"
 
 #. line 23
 #. line 46
@@ -1194,13 +1216,13 @@ msgstr ""
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:150
 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:61
 msgid "Subject"
-msgstr ""
+msgstr "Betreff"
 
 #. line 27
 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68
 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71
 msgid "Update"
-msgstr ""
+msgstr "Update"
 
 #. line 32
 #. line 57
@@ -1215,7 +1237,7 @@ msgstr ""
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181
 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79
 msgid "Comment"
-msgstr ""
+msgstr "Kommentar"
 
 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97
 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100
@@ -1236,27 +1258,33 @@ msgstr ""
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229
 msgid "Verification"
-msgstr ""
+msgstr "Captcha"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
-msgstr ""
+msgstr "oder URL"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
-msgstr ""
+msgstr "Eingebettet"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
-msgstr ""
+msgstr "Länderflaggen"
 
 #. line 116
 #. line 117
@@ -1280,13 +1308,17 @@ msgstr ""
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
-msgstr ""
+msgstr "Pinn"
 
 #. line 120
 #. line 121
@@ -1310,13 +1342,17 @@ msgstr ""
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
-msgstr ""
+msgstr "Geschloßen"
 
 #. line 124
 #. line 125
@@ -1340,46 +1376,53 @@ msgstr ""
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
-msgstr ""
+msgstr "Roh-HTML"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
-msgstr ""
+msgstr "(zum Löschen von Posts, optional)"
 
 #: ../../../../search.php:5
 msgid "Post search is disabled"
-msgstr ""
+msgstr "Post-Suche nicht erlaubt"
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
-msgstr ""
+msgstr "Bitte warte kurz bevor du erneut suchst."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
-msgstr ""
+msgstr "Anfrage zu groß"
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%d Ergebniss in"
+msgstr[1] "%d Ergebnisse in"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
-msgstr ""
+msgstr "Keine Ergebnisse"
 
 #. line 115
 #. line 16
@@ -1413,31 +1456,34 @@ msgstr ""
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
-msgstr ""
+msgstr "Suche"
 
 #: ../../../../inc/mod/pages.php:939
 msgid "Ban appeal not found!"
-msgstr ""
+msgstr "Bannbeschwerde nicht gefunden!"
 
 #: ../../../../inc/mod/pages.php:989
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265
 msgid "Ban appeals"
-msgstr ""
+msgstr "Bannbeschwerden"
 
 #: ../../../../inc/mod/pages.php:1833
 msgid "New user"
-msgstr ""
+msgstr "Neuer User"
 
 #: ../../../../inc/mod/pages.php:1888
 msgid "Impossible to promote/demote user."
-msgstr ""
+msgstr "Fördern/degradieren des Users nicht möglich."
 
 #: ../../../../inc/mod/pages.php:2612
 msgid "Debug: APC"
@@ -1445,6 +1491,7 @@ msgstr ""
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1462,77 +1509,77 @@ msgstr ""
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139
 msgid "Boards"
-msgstr ""
+msgstr "Bretter"
 
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215
 msgid "edit"
-msgstr ""
+msgstr "bearbeiten"
 
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97
 msgid "Create new board"
-msgstr ""
+msgstr "Neues Brett erstellen"
 
 #. line 32
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108
 msgid "Messages"
-msgstr ""
+msgstr "Nachrichten"
 
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188
 msgid "View all noticeboard entries"
-msgstr ""
+msgstr "Alle Neuigkeiten anzeigen"
 
 #. line 76
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222
 msgid "Administration"
-msgstr ""
+msgstr "Administration"
 
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282
 msgid "Change password"
-msgstr ""
+msgstr "Passwort ändern"
 
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318
 msgid "Configuration"
-msgstr ""
+msgstr "Konfiguration"
 
 #. line 127
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357
 msgid "Other"
-msgstr ""
+msgstr "Andere"
 
 #. line 139
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391
 msgid "Debug"
-msgstr ""
+msgstr "Debug"
 
 #. line 141
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396
 msgid "Anti-spam"
-msgstr ""
+msgstr "Anti Spam"
 
 #. line 142
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400
 msgid "Recent posts"
-msgstr ""
+msgstr "Letzte Posts"
 
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407
 msgid "SQL"
-msgstr ""
+msgstr "SQL"
 
 #. line 164
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446
 msgid "User account"
-msgstr ""
+msgstr "User-Account"
 
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454
 msgid "Logout"
-msgstr ""
+msgstr "Ausloggen"
 
 #. line 3
 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27
 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27
 msgid "New post"
-msgstr ""
+msgstr "Neue Posts"
 
 #. line 16
 #. line 28
@@ -1541,17 +1588,17 @@ msgstr ""
 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55
 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83
 msgid "Body"
-msgstr ""
+msgstr "Text"
 
 #. line 21
 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63
 msgid "Post to noticeboard"
-msgstr ""
+msgstr "In die Neuigkeiten posten"
 
 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90
 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118
 msgid "delete"
-msgstr ""
+msgstr "löschen"
 
 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123
@@ -1566,12 +1613,12 @@ msgstr ""
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415
 msgid "deleted?"
-msgstr ""
+msgstr "gelöscht?"
 
 #. line 33
 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91
 msgid "Post news entry"
-msgstr ""
+msgstr "Neuigkeiten-Beitrag posten"
 
 #. line 24
 #. line 63
@@ -1621,6 +1668,11 @@ msgstr ""
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1632,7 +1684,7 @@ msgstr ""
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371
 msgid "Staff"
-msgstr ""
+msgstr "Personal"
 
 #. line 25
 #. line 68
@@ -1650,11 +1702,13 @@ msgstr ""
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
 msgid "Note"
-msgstr ""
+msgstr "Notiz"
 
 #. line 26
 #. line 22
@@ -1667,23 +1721,23 @@ msgstr ""
 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67
 msgid "Date"
-msgstr ""
+msgstr "Datum"
 
 #. line 25
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96
 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88
 msgid "Actions"
-msgstr ""
+msgstr "Aktion"
 
 #. line 49
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154
 msgid "remove"
-msgstr ""
+msgstr "entfernen"
 
 #. line 76
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208
 msgid "New note"
-msgstr ""
+msgstr "Neue Notiz"
 
 #. line 94
 #. line 7
@@ -1698,25 +1752,26 @@ msgstr ""
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
-msgstr ""
+msgstr "Status"
 
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44
 msgid "Expired"
-msgstr ""
+msgstr "Ausgelaufen"
 
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50
 msgid "Active"
-msgstr ""
+msgstr "Aktiv"
 
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91
 msgid "no reason"
-msgstr ""
+msgstr "kein Grund"
 
 #. line 118
 #. line 184
@@ -1762,6 +1817,11 @@ msgstr ""
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1773,7 +1833,7 @@ msgstr ""
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263
 msgid "Board"
-msgstr ""
+msgstr "Brett"
 
 #. line 71
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323
@@ -1784,7 +1844,7 @@ msgstr ""
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227
 msgid "all boards"
-msgstr ""
+msgstr "Alle Bretter"
 
 #. line 128
 #. line 11
@@ -1806,12 +1866,13 @@ msgstr ""
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149
 msgid "Set"
-msgstr ""
+msgstr "übernehmen"
 
 #. line 132
 #. line 13
@@ -1833,12 +1894,13 @@ msgstr ""
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157
 msgid "Expires"
-msgstr ""
+msgstr "Auslauf"
 
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173
@@ -1846,7 +1908,7 @@ msgstr ""
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267
 msgid "never"
-msgstr ""
+msgstr "nie"
 
 #. line 142
 #. line 14
@@ -1868,31 +1930,32 @@ msgstr ""
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161
 msgid "Seen"
-msgstr ""
+msgstr "Gesehen"
 
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295
 msgid "Yes"
-msgstr ""
+msgstr "Ja"
 
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301
 msgid "No"
-msgstr ""
+msgstr "Nein"
 
 #. line 163
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419
 msgid "Remove ban"
-msgstr ""
+msgstr "Bann entfernen"
 
 #. line 183
 #. line 5
@@ -1909,7 +1972,7 @@ msgstr ""
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259
 msgid "Time"
-msgstr ""
+msgstr "Zeit"
 
 #. line 185
 #. line 89
@@ -1930,21 +1993,22 @@ msgstr ""
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267
 msgid "Action"
-msgstr ""
+msgstr "Aktion"
 
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73
 msgid "(or subnet)"
-msgstr ""
+msgstr "(oder Subnetz)"
 
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88
 msgid "hidden"
-msgstr ""
+msgstr "ausgeblendet"
 
 #. line 41
 #. line 27
@@ -1952,22 +2016,22 @@ msgstr ""
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117
 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92
 msgid "Message"
-msgstr ""
+msgstr "Nachricht"
 
 #. line 46
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133
 msgid "public; attached to post"
-msgstr ""
+msgstr "öffentlich; angebracht zum posten"
 
 #. line 58
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150
 msgid "Length"
-msgstr ""
+msgstr "Länge"
 
 #. line 88
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212
 msgid "New Ban"
-msgstr ""
+msgstr "Neuer Bann"
 
 #. line 2
 #. line 5
@@ -1981,33 +2045,34 @@ msgstr ""
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
-msgstr ""
+msgstr "Phrase"
 
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38
 msgid "Posts"
-msgstr ""
+msgstr "Posts"
 
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49
 msgid "IP address notes"
-msgstr ""
+msgstr "IP-Adressen-Noziz"
 
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62
 msgid "Bans"
-msgstr ""
+msgstr "Banns"
 
 #. line 18
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88
 msgid ""
 "(Search is case-insensitive and based on keywords. To match exact phrases, "
 "use \"quotes\". Use an asterisk (*) for wildcard.)"
-msgstr ""
+msgstr "(Suche beinhaltet Groß- und Kleinschreibung. Um genauere Suchergebnisse zu erhalten benutze \"Anführungszeichen\" und (*) als Platzhalter.)"
 
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25
 msgid "There are no active bans."
-msgstr ""
+msgstr "Zurzeit gibt es keine Banns"
 
 #. line 8
 #. line 47
@@ -2016,7 +2081,7 @@ msgstr ""
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137
 msgid "IP address/mask"
-msgstr ""
+msgstr "IP-Adresse/Maske"
 
 #. line 12
 #. line 51
@@ -2025,12 +2090,12 @@ msgstr ""
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153
 msgid "Duration"
-msgstr ""
+msgstr "Dauer"
 
 #. line 92
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269
 msgid "Unban selected"
-msgstr ""
+msgstr "Gewählte User unbannen"
 
 #. line 6
 #. line 4
@@ -2044,122 +2109,122 @@ msgstr ""
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45
 msgid "Username"
-msgstr ""
+msgstr "Nutzername"
 
 #. line 23
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60
 msgid "Continue"
-msgstr ""
+msgstr "Fortfahren"
 
 #. line 80
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210
 msgid "Appeal time"
-msgstr ""
+msgstr "Beschwerdedauer"
 
 #. line 84
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220
 msgid "Appeal reason"
-msgstr ""
+msgstr "Beschwerdegrund"
 
 #: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31
 msgid "There are no reports."
-msgstr ""
+msgstr "Keine Meldungen"
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
-msgstr ""
+msgstr "Dieser Bann existiert nicht oder ist nicht für dich bestimmt."
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
-msgstr ""
+msgstr "Du darfst keinen Bann mit dieser Dauer aussprechen"
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
-msgstr ""
+msgstr "Du kannst diesen Bann nicht erneut beschweren"
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
-msgstr ""
+msgstr "Es gibt bereits eine Beschwerde für diesen Bann"
 
 #: ../../../../inc/image.php:24 ../../../../inc/image.php:62
 msgid "Unsupported file format: "
-msgstr ""
+msgstr "Dateiformat nicht erlaubt:"
 
 #: ../../../../inc/image.php:282 ../../../../inc/image.php:288
 msgid "Failed to redraw image!"
-msgstr ""
+msgstr "Bild kann nicht neu generiert werden!"
 
 #: ../../../../inc/image.php:324 ../../../../inc/image.php:343
 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342
 #: ../../../../inc/image.php:366
 msgid "Failed to resize image!"
-msgstr ""
+msgstr "Größe des Bildes kann nicht geändert werden!"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35
 msgid "You were banned! ;_;"
-msgstr ""
+msgstr "Zugang war gesperrt. ;_;"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41
 msgid "You are banned! ;_;"
-msgstr ""
+msgstr "Zugang gesperrt. ;_;"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52
 msgid "You were banned from"
-msgstr ""
+msgstr "Du wurdest gesperrt"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58
 msgid "You have been banned from"
-msgstr ""
+msgstr "Die Sperrung gilt auf"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82
 msgid "for the following reason:"
-msgstr ""
+msgstr "aus folgendem Grund:"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88
 msgid "for an unspecified reason."
-msgstr ""
+msgstr "aus einem unbekannten Grund."
 
 #. line 32
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110
 msgid "Your ban was filed on"
-msgstr ""
+msgstr "Gesperrt seit"
 
 #. line 51
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156
 msgid "has since expired. Refresh the page to continue."
-msgstr ""
+msgstr "ist abgelaufen. Lade die Seite neu um fortzfahren."
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129
 msgid "expires"
-msgstr ""
+msgstr "läuft ab"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133
 msgid "from now, which is on"
-msgstr ""
+msgstr "ab jetzt,"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183
 msgid "will not expire"
-msgstr ""
+msgstr "unbefristet"
 
 #. line 78
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192
 msgid "Your IP address is"
-msgstr ""
+msgstr "Deine IP-Adresse lautet"
 
 #. line 86
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215
 msgid "You were banned for the following post on"
-msgstr ""
+msgstr "Du wurdest für den follgenden Post gebannt"
 
 #. line 95
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239
 msgid "You submitted an appeal for this ban on"
-msgstr ""
+msgstr "Du hast bereits eine Beschwerde gegen diesen Bann eingereicht am"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245
 msgid "It is still pending"
-msgstr ""
+msgstr "Antwort steht noch aus"
 
 #. line 101
 #. line 112
@@ -2176,18 +2241,18 @@ msgstr ""
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289
 msgid "You appealed this ban on"
-msgstr ""
+msgstr "Du beschwertest dich über diesen Bann am"
 
 #. line 103
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265
 msgid "and it was denied. You may not appeal this ban again."
-msgstr ""
+msgstr "und sie wurde abgelehnt. Du kannst dich nicht noch mal über diesen Bann beschweren."
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272
 msgid ""
 "You have submitted the maximum number of ban appeals allowed. You may not "
 "appeal this ban again."
-msgstr ""
+msgstr "Du hast die maximale Anzahl an Bannbeschwerden eingereicht. Du kannst dich nicht noch mal über diesen Bann beschweren."
 
 #. line 114
 #. line 121
@@ -2204,7 +2269,7 @@ msgstr ""
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318
 msgid "and it was denied."
-msgstr ""
+msgstr "und sie wurde abgelehnt. "
 
 #. line 116
 #. line 123
@@ -2221,16 +2286,16 @@ msgstr ""
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323
 msgid "You may appeal this ban again. Please enter your reasoning below."
-msgstr ""
+msgstr "Du kannst dich noch mal über diesen Bann beschweren. Bitte nenne hier deinen Grund."
 
 #. line 119
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310
 msgid "You last appealed this ban on"
-msgstr ""
+msgstr "Du hast dich zuletzt über diesen Bann beschwert am"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332
 msgid "You may appeal this ban. Please enter your reasoning below."
-msgstr ""
+msgstr "Du kannst dich über diesen Bann beschweren. Bitte nenne hier deinen Grund."
 
 #. line 4
 #. line 16
@@ -2244,54 +2309,54 @@ msgstr ""
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255
 msgid "IP address"
-msgstr ""
+msgstr "IP-Adresse"
 
 #. line 3
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26
 msgid "ID"
-msgstr ""
+msgstr "ID"
 
 #. line 5
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34
 msgid "Type"
-msgstr ""
+msgstr "Typ"
 
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45
 msgid "Last action"
-msgstr ""
+msgstr "Letzte Aktion"
 
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80
 msgid "Unknown"
-msgstr ""
+msgstr "Unbekannt"
 
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94
 msgid "none"
-msgstr ""
+msgstr "keine"
 
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174
 msgid "Promote"
-msgstr ""
+msgstr "Hochstufen"
 
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187
 msgid "Demote"
-msgstr ""
+msgstr "Degradieren"
 
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191
 msgid "Are you sure you want to demote yourself?"
-msgstr ""
+msgstr "Bist du sicher dass du dich selber degradieren willst?"
 
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204
 msgid "log"
-msgstr ""
+msgstr "Log"
 
 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226
 msgid "PM"
-msgstr ""
+msgstr "PN"
 
 #. line 6
 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36
 msgid "Thread ID"
-msgstr ""
+msgstr "Faden-ID"
 
 #. line 14
 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51
@@ -2443,3 +2508,13 @@ msgstr ""
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr ""
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/en/LC_MESSAGES/javascript.po b/inc/locale/en/LC_MESSAGES/javascript.po
index d7a37b88..032acb0f 100644
--- a/inc/locale/en/LC_MESSAGES/javascript.po
+++ b/inc/locale/en/LC_MESSAGES/javascript.po
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: vichan 4.4.98\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -563,3 +563,7 @@ msgstr ""
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr ""
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/en/LC_MESSAGES/tinyboard.po b/inc/locale/en/LC_MESSAGES/tinyboard.po
index 242939f4..63edda4b 100644
--- a/inc/locale/en/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/en/LC_MESSAGES/tinyboard.po
@@ -2,15 +2,17 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: vichan 4.4.98-pre\n"
+"Project-Id-Version: vichan 4.4.98\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: en\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -21,6 +23,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] ""
@@ -31,6 +34,7 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] ""
@@ -41,6 +45,7 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] ""
@@ -51,40 +56,37 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] ""
 msgstr[1] ""
 
-
-
 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608
 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] ""
 msgstr[1] ""
 
-
-
 #: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611
 #: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] ""
 msgstr[1] ""
 
-
-
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr ""
 
@@ -95,6 +97,7 @@ msgstr ""
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr ""
 
@@ -104,7 +107,8 @@ msgstr ""
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr ""
 
@@ -254,7 +258,7 @@ msgstr ""
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr ""
 
@@ -263,20 +267,20 @@ msgstr ""
 #. The names on the post buttons. (On most imageboards, these are both just "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr ""
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr ""
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -302,237 +306,237 @@ msgstr ""
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr ""
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr ""
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr ""
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr ""
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr ""
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr ""
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr ""
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr ""
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr ""
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr ""
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr ""
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr ""
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr ""
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr ""
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr ""
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr ""
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr ""
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr ""
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr ""
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr ""
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr ""
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr ""
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr ""
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr ""
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr ""
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr ""
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr ""
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr ""
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr ""
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr ""
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr ""
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr ""
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -541,90 +545,90 @@ msgstr ""
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr ""
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr ""
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or changed."
 msgstr ""
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr ""
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr ""
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr ""
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr ""
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr ""
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr ""
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr ""
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr ""
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr ""
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr ""
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr ""
 
@@ -635,7 +639,7 @@ msgstr ""
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr ""
 
@@ -710,6 +714,9 @@ msgstr ""
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -882,10 +889,13 @@ msgstr ""
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr ""
 
@@ -904,6 +914,7 @@ msgstr ""
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -911,6 +922,7 @@ msgstr ""
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr ""
 
@@ -955,6 +967,11 @@ msgstr ""
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1043,8 +1060,6 @@ msgid_plural "%count% replies"
 msgstr[0] ""
 msgstr[1] ""
 
-
-
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105
 msgid "File:"
@@ -1091,8 +1106,6 @@ msgid_plural "Last %count% Posts"
 msgstr[0] ""
 msgstr[1] ""
 
-
-
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574
@@ -1104,8 +1117,6 @@ msgid_plural "%count% posts"
 msgstr[0] ""
 msgstr[1] ""
 
-
-
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580
@@ -1127,8 +1138,6 @@ msgid_plural "%count% image replies"
 msgstr[0] ""
 msgstr[1] ""
 
-
-
 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586
 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597
@@ -1251,22 +1260,28 @@ msgid "Verification"
 msgstr ""
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr ""
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr ""
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr ""
 
@@ -1292,11 +1307,15 @@ msgstr ""
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr ""
 
@@ -1322,11 +1341,15 @@ msgstr ""
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr ""
 
@@ -1352,21 +1375,27 @@ msgstr ""
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr ""
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr ""
 
@@ -1375,23 +1404,22 @@ msgid "Post search is disabled"
 msgstr ""
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr ""
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr ""
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
 msgstr[0] ""
 msgstr[1] ""
 
-
-
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr ""
 
@@ -1427,12 +1455,15 @@ msgstr ""
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr ""
 
@@ -1459,6 +1490,7 @@ msgstr ""
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1635,6 +1667,11 @@ msgstr ""
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1664,6 +1701,8 @@ msgstr ""
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1712,6 +1751,7 @@ msgstr ""
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1776,6 +1816,11 @@ msgstr ""
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1820,6 +1865,7 @@ msgstr ""
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1847,6 +1893,7 @@ msgstr ""
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1882,6 +1929,7 @@ msgstr ""
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1944,6 +1992,7 @@ msgstr ""
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1995,6 +2044,7 @@ msgstr ""
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2079,19 +2129,19 @@ msgstr ""
 msgid "There are no reports."
 msgstr ""
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr ""
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr ""
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr ""
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr ""
 
@@ -2457,3 +2507,13 @@ msgstr ""
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr ""
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/en_AU/LC_MESSAGES/javascript.po b/inc/locale/en_AU/LC_MESSAGES/javascript.po
index 322d0ff5..72fbbd61 100644
--- a/inc/locale/en_AU/LC_MESSAGES/javascript.po
+++ b/inc/locale/en_AU/LC_MESSAGES/javascript.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
@@ -563,3 +563,7 @@ msgstr ""
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr ""
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/en_AU/LC_MESSAGES/tinyboard.mo b/inc/locale/en_AU/LC_MESSAGES/tinyboard.mo
index ea3d466ea7819569afbcfa6c49080ad4daaf0bc0..94eb500cdb3cfa181af04f5cfeb50dc0f4c4db0e 100644
GIT binary patch
delta 30
lcmaFO{F-?}8;6mBf`NgRiRHvTMRrRCBO@zQla1R<83B@#2*>~c

delta 30
lcmaFO{F-?}8;7BVf}y3Ak;%k9MRp4XBLgc_gN@rv83B_?2+IHf

diff --git a/inc/locale/en_AU/LC_MESSAGES/tinyboard.po b/inc/locale/en_AU/LC_MESSAGES/tinyboard.po
index 0f1cdf12..ae4a07eb 100644
--- a/inc/locale/en_AU/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/en_AU/LC_MESSAGES/tinyboard.po
@@ -1,13 +1,14 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
@@ -21,6 +22,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] ""
@@ -31,6 +33,7 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] ""
@@ -41,6 +44,7 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] ""
@@ -51,6 +55,7 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] ""
@@ -61,6 +66,7 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] ""
@@ -71,6 +77,7 @@ msgstr[1] ""
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] ""
@@ -78,7 +85,7 @@ msgstr[1] ""
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr ""
 
@@ -89,6 +96,7 @@ msgstr ""
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr ""
 
@@ -98,7 +106,8 @@ msgstr ""
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr ""
 
@@ -248,7 +257,7 @@ msgstr ""
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr ""
 
@@ -258,20 +267,20 @@ msgstr ""
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr ""
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr ""
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -295,237 +304,237 @@ msgstr ""
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr ""
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr ""
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr ""
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr ""
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr ""
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr ""
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr ""
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr ""
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr ""
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr ""
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr ""
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr ""
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr ""
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr ""
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr ""
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr ""
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr ""
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr ""
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr ""
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr ""
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr ""
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr ""
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr ""
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr ""
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr ""
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr ""
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr ""
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr ""
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr ""
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr ""
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr ""
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr ""
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -534,19 +543,19 @@ msgstr ""
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr ""
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr ""
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -554,71 +563,71 @@ msgstr ""
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr ""
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr ""
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr ""
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr ""
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr ""
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr ""
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr ""
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr ""
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr ""
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr ""
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr ""
 
@@ -630,7 +639,7 @@ msgstr ""
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr ""
 
@@ -705,6 +714,9 @@ msgstr ""
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -877,10 +889,13 @@ msgstr ""
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr ""
 
@@ -899,6 +914,7 @@ msgstr ""
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -906,6 +922,7 @@ msgstr ""
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr ""
 
@@ -950,6 +967,11 @@ msgstr ""
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1238,22 +1260,28 @@ msgid "Verification"
 msgstr ""
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr ""
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr ""
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr ""
 
@@ -1279,11 +1307,15 @@ msgstr ""
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr ""
 
@@ -1309,11 +1341,15 @@ msgstr ""
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr ""
 
@@ -1339,21 +1375,27 @@ msgstr ""
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr ""
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr ""
 
@@ -1362,21 +1404,22 @@ msgid "Post search is disabled"
 msgstr ""
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr ""
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr ""
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr ""
 
@@ -1412,12 +1455,15 @@ msgstr ""
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr ""
 
@@ -1444,6 +1490,7 @@ msgstr ""
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1620,6 +1667,11 @@ msgstr ""
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1649,6 +1701,8 @@ msgstr ""
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1697,6 +1751,7 @@ msgstr ""
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1761,6 +1816,11 @@ msgstr ""
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1805,6 +1865,7 @@ msgstr ""
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1832,6 +1893,7 @@ msgstr ""
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1867,6 +1929,7 @@ msgstr ""
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1929,6 +1992,7 @@ msgstr ""
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1980,6 +2044,7 @@ msgstr ""
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2064,19 +2129,19 @@ msgstr ""
 msgid "There are no reports."
 msgstr ""
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr ""
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr ""
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr ""
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr ""
 
@@ -2442,3 +2507,13 @@ msgstr ""
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr ""
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/es_ES/LC_MESSAGES/javascript.po b/inc/locale/es_ES/LC_MESSAGES/javascript.po
index 985cb8d2..15f4cb48 100644
--- a/inc/locale/es_ES/LC_MESSAGES/javascript.po
+++ b/inc/locale/es_ES/LC_MESSAGES/javascript.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n"
 "MIME-Version: 1.0\n"
@@ -563,3 +563,7 @@ msgstr ""
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr ""
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo b/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo
index 0fda05cc47afee765e26e1c205265803d13c49a2..24c9cdb736058a4ca869c3b15e15b55cac086eba 100644
GIT binary patch
delta 35
rcmcb#lJU|?#tr=@97YBT1_o9pmXoKOD6(5B7#Ufanrz;0BCG%a*xL%c

delta 35
rcmcb#lJU|?#tr=@9EKJOhL%=FCX=U|D6(597#UcZ8f@NgBCG%a*`Er(

diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po
index 03263fdd..94ccfd50 100644
--- a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po
@@ -1,13 +1,14 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n"
 "MIME-Version: 1.0\n"
@@ -21,6 +22,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "segundo"
@@ -31,6 +33,7 @@ msgstr[1] "segundos"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "minuto"
@@ -41,6 +44,7 @@ msgstr[1] "minutos"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "hora"
@@ -51,6 +55,7 @@ msgstr[1] "horas"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "día"
@@ -61,6 +66,7 @@ msgstr[1] "días"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "semana"
@@ -71,6 +77,7 @@ msgstr[1] "semanas"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "año"
@@ -78,7 +85,7 @@ msgstr[1] "años"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Baneado!"
 
@@ -89,6 +96,7 @@ msgstr "Baneado!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Anterior"
 
@@ -98,7 +106,8 @@ msgstr "Anterior"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Siguiente"
 
@@ -248,7 +257,7 @@ msgstr "Mover hilo a otro tablón"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Fuiste muteado por contenido poco original."
 
@@ -258,20 +267,20 @@ msgstr "Fuiste muteado por contenido poco original."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Nuevo Hilo"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Nueva Respuesta"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -295,237 +304,237 @@ msgstr "Lurkea algo más antes de postear."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Pareces un bot."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Tu navegador envió o no una referencia no HTTP."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "El campo %s es muy largo."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "El mensaje es muy largo."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "El mensaje es muy corto o está vacío."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Debes subir una imagen."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "El servidor falló al subir tu imagen."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Formato de imagen no soportado."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Tablón inválido!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Hilo específicado no existe."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Hilo cerrado. No puedes responder en este momento."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "El hilo llegó al límite de respuestas."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "El hilo llegó al máximo de imágenes permitido"
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "No has hecho ningún post."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Flood detectado; Post descartado."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Tu respuesta parece automática; Post descartado."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Contenido poco original!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Contenido poco original! Fuiste muteado durante %d segundos."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Estás muteado! Expira en %d segundos."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Tu dirección IP está listada en %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Muchos links; flood detectado."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Muchas citas; post descartado."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Muchos links de otros tablones; post descartado."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "No has seleccionado nada para eliminar."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "No has seleccionado nada para reportar."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "No puedes reportar varios posts a la vez."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Contraseña incorrecta..."
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Imagen no válida."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Extensión del archivo desconocida."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Peso máximo del archivo: %maxsz% bytes<br>Tu archivo pesa %filesz% bytes"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "El archivo es muy grande."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Ese archivo <a href=\"%s\">ya existe</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Ese archivo <a href=\"%s\">ya existe</a> en este hilo!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Tienes que esperar otros %s antes de eliminar eso."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "MIME type detection XSS exploit (IE) detectado; post descartado."
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "No tiene sentido la URL del vídeo que has intentado incrustar."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Parece que escribiste mal la verificación."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -534,19 +543,19 @@ msgstr "Sólo estás permitido desbanear %s usuarios a la vez. Has intentado des
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Nombre de usuario y/o contraseña no válida."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "No eres un mod..."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -554,71 +563,71 @@ msgstr "Nombre de usuario y/o contraseña no válida. Puede que tu usuario fue e
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Cookies no válidas/malformadas."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Tu navegador no mostró ninguna entrada cuando debería tenerla."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Es necesario el campo %s."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "No es válido el campo %s."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Ya hay el tablón %s."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "No tienes permisos para hacer eso."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Ese post no existe..."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Página no encontrada."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Ese mod <a href=\"?/users/%d\">ya existe</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Ese hilo no existe!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de nuevo."
 
@@ -630,7 +639,7 @@ msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "USUARIO FUE BANEADO DE ESTE POST"
 
@@ -705,6 +714,9 @@ msgstr "Log de moderación"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -877,10 +889,13 @@ msgstr "Eleminar Post"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Archivo"
 
@@ -899,6 +914,7 @@ msgstr "Archivo"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -906,6 +922,7 @@ msgstr "Archivo"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Contraseña"
 
@@ -950,6 +967,11 @@ msgstr "Contraseña"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1238,22 +1260,28 @@ msgid "Verification"
 msgstr "Verificación"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "O URL"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Incrustar"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Banderas"
 
@@ -1279,11 +1307,15 @@ msgstr "Banderas"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Marca"
 
@@ -1309,11 +1341,15 @@ msgstr "Marca"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Bloquear"
 
@@ -1339,21 +1375,27 @@ msgstr "Bloquear"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "HTML puro"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Para eliminar archivo.)"
 
@@ -1362,21 +1404,22 @@ msgid "Post search is disabled"
 msgstr "El buscador de posts está desactivado"
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Espera un poco antes de volver a buscar, por favor."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "Query muy extenso."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
 msgstr[0] "%d resultado en"
 msgstr[1] "%d resultados en"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Ningún resultado."
 
@@ -1412,12 +1455,15 @@ msgstr "Ningún resultado."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Buscar"
 
@@ -1444,6 +1490,7 @@ msgstr "Depurar: APC"
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1620,6 +1667,11 @@ msgstr "Postear nueva entrada"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1649,6 +1701,8 @@ msgstr "Staff"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1697,6 +1751,7 @@ msgstr "Nueva nota"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1761,6 +1816,11 @@ msgstr "Sin razón"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1805,6 +1865,7 @@ msgstr "Todos los tablones"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1832,6 +1893,7 @@ msgstr "Conjunto"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1867,6 +1929,7 @@ msgstr "nunca"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1929,6 +1992,7 @@ msgstr "Tiempo"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1980,6 +2044,7 @@ msgstr "Nuevo Ban"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2064,19 +2129,19 @@ msgstr "Apelar razón"
 msgid "There are no reports."
 msgstr "No hay ningún reporte."
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr "Ese ban no existe o no es para ti."
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr "No puedes apelar el ban de esa longitud."
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr "No puedes volver a apelar este ban."
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr "Ya hay una apelación para este ban."
 
@@ -2442,3 +2507,13 @@ msgstr ""
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr ""
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/fi_FI/LC_MESSAGES/javascript.po b/inc/locale/fi_FI/LC_MESSAGES/javascript.po
index c8f7a4b8..280a9143 100644
--- a/inc/locale/fi_FI/LC_MESSAGES/javascript.po
+++ b/inc/locale/fi_FI/LC_MESSAGES/javascript.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n"
 "MIME-Version: 1.0\n"
@@ -563,3 +563,7 @@ msgstr ""
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr ""
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo
index e64124879c37aba2b408fc4933c896e16dbd39bc..e8545e5ba929148e9edc00b785b4f05c84608ef0 100644
GIT binary patch
delta 35
rcmcbzlJUw)#tr=@97YBT1_o9pmXoKOD6(5B7#Ufanrz;0BB}rY*<}jC

delta 35
rcmcbzlJUw)#tr=@9EKJOhL%=FCX=U|D6(597#UcZ8f@NgBB}rY+9?Xf

diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po
index 35f03f22..111155de 100644
--- a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po
@@ -1,13 +1,14 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n"
 "MIME-Version: 1.0\n"
@@ -21,6 +22,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "segundo"
@@ -31,6 +33,7 @@ msgstr[1] "segundos"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "minuto"
@@ -41,6 +44,7 @@ msgstr[1] "minutos"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "hora"
@@ -51,6 +55,7 @@ msgstr[1] "horas"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "día"
@@ -61,6 +66,7 @@ msgstr[1] "días"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "semana"
@@ -71,6 +77,7 @@ msgstr[1] "semanas"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "año"
@@ -78,7 +85,7 @@ msgstr[1] "años"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Baneado!"
 
@@ -89,6 +96,7 @@ msgstr "Baneado!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Anterior"
 
@@ -98,7 +106,8 @@ msgstr "Anterior"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Siguiente"
 
@@ -248,7 +257,7 @@ msgstr "Mover hilo a otro tablón"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Fuiste muteado por contenido poco original."
 
@@ -258,20 +267,20 @@ msgstr "Fuiste muteado por contenido poco original."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Nuevo Hilo"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Nueva Respuesta"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -295,237 +304,237 @@ msgstr "Lurkea algo más antes de postear."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Pareces un bot."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Tu navegador envió o no una referencia no HTTP."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "El campo %s es muy largo."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "El mensaje es muy largo."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "El mensaje es muy corto o está vacío."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Debes subir una imagen."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "El servidor falló al subir tu imagen."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Formato de imagen no soportado."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Tablón inválido!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Hilo específicado no existe."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Hilo cerrado. No puedes responder en este momento."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "El hilo llegó al límite de respuestas."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "El hilo llegó al máximo de imágenes permitido"
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "No has hecho ningún post."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Flood detectado; Post descartado."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Tu respuesta parece automática; Post descartado."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Contenido poco original!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Contenido poco original! Fuiste muteado durante %d segundos."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Estás muteado! Expira en %d segundos."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Tu dirección IP está listada en %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Muchos links; flood detectado."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Muchas citas; post descartado."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Muchos links de otros tablones; post descartado."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "No has seleccionado nada para eliminar."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "No has seleccionado nada para reportar."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "No puedes reportar varios posts a la vez."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Contraseña incorrecta..."
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Imagen no válida."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Extensión del archivo desconocida."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Peso máximo del archivo: %maxsz% bytes<br>Tu archivo pesa %filesz% bytes"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "El archivo es muy grande."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Ese archivo <a href=\"%s\">ya existe</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Ese archivo <a href=\"%s\">ya existe</a> en este hilo!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Tienes que esperar otros %s antes de eliminar eso."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "MIME type detection XSS exploit (IE) detectado; post descartado."
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "No tiene sentido la URL del vídeo que has intentado incrustar."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Parece que escribiste mal la verificación."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -534,19 +543,19 @@ msgstr "Sólo estás permitido desbanear %s usuarios a la vez. Has intentado des
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Nombre de usuario y/o contraseña no válida."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "No eres un mod..."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -554,71 +563,71 @@ msgstr "Nombre de usuario y/o contraseña no válida. Puede que tu usuario fue e
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Cookies no válidas/malformadas."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Tu navegador no mostró ninguna entrada cuando debería tenerla."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Es necesario el campo %s."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "No es válido el campo %s."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Ya hay el tablón %s."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "No tienes permisos para hacer eso."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Ese post no existe..."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Página no encontrada."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Ese mod <a href=\"?/users/%d\">ya existe</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Ese hilo no existe!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de nuevo."
 
@@ -630,7 +639,7 @@ msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "USUARIO FUE BANEADO DE ESTE POST"
 
@@ -705,6 +714,9 @@ msgstr "Log de moderación"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -877,10 +889,13 @@ msgstr "Eleminar Post"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Archivo"
 
@@ -899,6 +914,7 @@ msgstr "Archivo"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -906,6 +922,7 @@ msgstr "Archivo"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Contraseña"
 
@@ -950,6 +967,11 @@ msgstr "Contraseña"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1238,22 +1260,28 @@ msgid "Verification"
 msgstr "Verificación"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "O URL"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Incrustar"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Banderas"
 
@@ -1279,11 +1307,15 @@ msgstr "Banderas"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Marca"
 
@@ -1309,11 +1341,15 @@ msgstr "Marca"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Bloquear"
 
@@ -1339,21 +1375,27 @@ msgstr "Bloquear"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "HTML puro"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Para eliminar archivo.)"
 
@@ -1362,21 +1404,22 @@ msgid "Post search is disabled"
 msgstr "El buscador de posts está desactivado"
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Espera un poco antes de volver a buscar, por favor."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "Query muy extenso."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
 msgstr[0] "%d resultado en"
 msgstr[1] "%d resultados en"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Ningún resultado."
 
@@ -1412,12 +1455,15 @@ msgstr "Ningún resultado."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Buscar"
 
@@ -1444,6 +1490,7 @@ msgstr "Depurar: APC"
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1620,6 +1667,11 @@ msgstr "Postear nueva entrada"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1649,6 +1701,8 @@ msgstr "Staff"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1697,6 +1751,7 @@ msgstr "Nueva nota"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1761,6 +1816,11 @@ msgstr "Sin razón"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1805,6 +1865,7 @@ msgstr "Todos los tablones"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1832,6 +1893,7 @@ msgstr "Conjunto"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1867,6 +1929,7 @@ msgstr "nunca"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1929,6 +1992,7 @@ msgstr "Tiempo"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1980,6 +2044,7 @@ msgstr "Nuevo Ban"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2064,19 +2129,19 @@ msgstr "Apelar razón"
 msgid "There are no reports."
 msgstr "No hay ningún reporte."
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr "Ese ban no existe o no es para ti."
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr "No puedes apelar el ban de esa longitud."
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr "No puedes volver a apelar este ban."
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr "Ya hay una apelación para este ban."
 
@@ -2442,3 +2507,13 @@ msgstr ""
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr ""
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/fr_FR/LC_MESSAGES/javascript.po b/inc/locale/fr_FR/LC_MESSAGES/javascript.po
index af8acd1c..0f5567ed 100644
--- a/inc/locale/fr_FR/LC_MESSAGES/javascript.po
+++ b/inc/locale/fr_FR/LC_MESSAGES/javascript.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n"
 "MIME-Version: 1.0\n"
@@ -564,3 +564,7 @@ msgstr ""
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr "Volume par défaut"
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo
index 10ee18353b64c3d5df0788037cfe7c5538a4cc26..ac16357c097a0f6ab28cdb3e3ce5bef6f6ccd674 100644
GIT binary patch
delta 35
rcmcb$o$=Oo#tlo&IE)Mw3=FJHEGMruQ)IVPFfy_-HQ9XCj8zo?;^Ye_

delta 35
rcmcb$o$=Oo#tlo&I1DWm3@xpUOeU{2Q)IVLFfy<*HQ0RBj8zo?<ERTN

diff --git a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po
index 8022462c..c8520390 100644
--- a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po
@@ -1,6 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 # kaf <admin@cable6.net>, 2014
 # CHAFIK <admin@cable6.net>, 2014
@@ -8,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n"
 "MIME-Version: 1.0\n"
@@ -23,6 +24,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "seconde"
@@ -33,6 +35,7 @@ msgstr[1] "secondes"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "minute"
@@ -43,6 +46,7 @@ msgstr[1] "minutes"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "heure"
@@ -53,6 +57,7 @@ msgstr[1] "heures"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "jour"
@@ -63,6 +68,7 @@ msgstr[1] "jours"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "semaine"
@@ -73,6 +79,7 @@ msgstr[1] "semaines"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "année"
@@ -80,7 +87,7 @@ msgstr[1] "années"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Banni!"
 
@@ -91,6 +98,7 @@ msgstr "Banni!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Précédent"
 
@@ -100,7 +108,8 @@ msgstr "Précédent"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Suivant"
 
@@ -250,7 +259,7 @@ msgstr "Déplacer le fil sur une autre planche"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Vous avez été rendu muet pour cause de contenu non-original."
 
@@ -260,20 +269,20 @@ msgstr "Vous avez été rendu muet pour cause de contenu non-original."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Nouveau Fil"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Nouvelle réponse"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -297,237 +306,237 @@ msgstr "Rôde plus avant de poster."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Tu ressembles à un bot."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Votre navigateur nous a envoyé un référant invalide ou aucun référant."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "Le champ %s comporte trop de caractères."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "Vous avez atteint la limite de caractères pour le texte."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "Ce texte est trop court ou vide."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Vous devez mettre en ligne une image."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "Le serveur a échoué la mise en ligne de votre image."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Format d'image non-supporté."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Planche invalide."
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Le fil spécifié n'existe pas."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Fil verrouillé."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "Le fil a atteint le nombre de réponses maximum."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "Le fil a atteint le nombre d'images maximum."
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Vous n'avez pas écrit de message."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Flood détecté ; Message ignoré."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Votre requête semble automatisée ; Message ignoré."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Ce contenu n'est pas original."
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Ce contenu n'est pas original. Vous avez été muté pour %d secondes."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Tu as été muté. Interdiction de poster pendant %d secondes."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Votre addresse IP est listée en %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Trop de liens ; Flood détecté."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Trop de citations ; Message ignoré."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Trop de liens cross-planches ; message ignoré."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Vous n'avez rien sélectionné à supprimer."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Vous n'avez rien sélectionné à reporter."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Vous ne pouvez pas reporter autant de messages à la fois."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Mot de passe incorrect."
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Image invalide."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Fichier d'extension inconnu."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Maximum de la taille d'un fichier requis : %maxsz% octets<br>La taille de votre fichier : %filesz% octets"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Ce fichier est trop volumineux."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Le fichier <a href=\"%s\">a déjà été mis en ligne ici : </a>"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Ce fichier <a href=\"%s\">existe déjà</a> dans ce fil."
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Vous devez attendre encore %s avant de supprimer votre message."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "Exploitation XSS de type MIME (IE) détecté; Message ignoré."
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "L'URL de votre vidéo est fausse."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Vous semblez avoir fait une erreur lors de votre vérification."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -536,19 +545,19 @@ msgstr "Vous n'êtes autorisé à débannir que %s utilisateur en même temps. V
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Identifiant et/ou mot de passe inválide(s)."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Vous n'êtes pas modérateurs."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -556,71 +565,71 @@ msgstr "Identifiant et/ou mot de passe inválide(s). L'identifiant a pu être su
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Cookies inválides ou mal formés."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Votre navigateur n'a pas envoyé de données lorsqu'il devait le faire."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Le champ %s est obligatoire."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "Le champ %s est invalide."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Il existe déjà une planche %s."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Vous n'avez pas la permission de le faire."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Ce message n'existe pas."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Page introuvable."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Le modo <a href=\"?/users/%d\"> existe déjà : </a>"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Ce thème n'existe pas."
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Le Token de securité est invalide. Veuillez retourner à la page précédent et recommencer."
 
@@ -632,7 +641,7 @@ msgstr "Le Token de securité est invalide. Veuillez retourner à la page préc
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "L'UTILISATEUR A ÉTÉ BANNI POUR CE MESSAGE"
 
@@ -707,6 +716,9 @@ msgstr "Modération"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -879,10 +891,13 @@ msgstr "Supprimer message"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Fichier"
 
@@ -901,6 +916,7 @@ msgstr "Fichier"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -908,6 +924,7 @@ msgstr "Fichier"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Mot de passe"
 
@@ -952,6 +969,11 @@ msgstr "Mot de passe"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1240,22 +1262,28 @@ msgid "Verification"
 msgstr "Vérification"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "Ou URL"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Insérer"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Drapeaux"
 
@@ -1281,11 +1309,15 @@ msgstr "Drapeaux"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Épinglé"
 
@@ -1311,11 +1343,15 @@ msgstr "Épinglé"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Verrouiller"
 
@@ -1341,21 +1377,27 @@ msgstr "Verrouiller"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "HTML Brut"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Pour supprimer le fichier)"
 
@@ -1364,21 +1406,22 @@ msgid "Post search is disabled"
 msgstr "La recherche de message est désactivé"
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Merci de patienter un moment avant d'effectuer une nouvelle recherche."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "Requête trop large."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
 msgstr[0] "%d résultat en"
 msgstr[1] "%d résultats en"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Aucun résultat."
 
@@ -1414,12 +1457,15 @@ msgstr "Aucun résultat."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Rechercher"
 
@@ -1446,6 +1492,7 @@ msgstr "Débogue: APC"
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1622,6 +1669,11 @@ msgstr "Poster une nouvelle"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1651,6 +1703,8 @@ msgstr "Staff"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1699,6 +1753,7 @@ msgstr "Nouvelle note"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1763,6 +1818,11 @@ msgstr "Pas de justification"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1807,6 +1867,7 @@ msgstr "Toutes les planches"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1834,6 +1895,7 @@ msgstr "Configurer"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1869,6 +1931,7 @@ msgstr "jamais"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1931,6 +1994,7 @@ msgstr ""
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1982,6 +2046,7 @@ msgstr "Nouveau ban"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2066,19 +2131,19 @@ msgstr "Raison de la contestation"
 msgid "There are no reports."
 msgstr "Il n'y a pas de reports."
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr "Ce ban n'existe pas ou n'est pas pour vous."
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr "Vous ne pouvez pas contester un ban de cette durée."
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr "Vous ne pouvez pas contester à nouveau ce ban."
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr "Il y a déjà une contestation en attente pour ce ban."
 
@@ -2444,3 +2509,13 @@ msgstr "Supprimer l'utilisateur"
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr "Voir plus de log pour cet utilisateur."
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/hu_HU/LC_MESSAGES/javascript.po b/inc/locale/hu_HU/LC_MESSAGES/javascript.po
index 801e1970..331dca68 100644
--- a/inc/locale/hu_HU/LC_MESSAGES/javascript.po
+++ b/inc/locale/hu_HU/LC_MESSAGES/javascript.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -564,3 +564,7 @@ msgstr "Videók lebegő lejátszása "
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr "Alap hangerő"
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo
index 5c2f7be563fb873ded8395c90237c2cdbd7aec13..061268e3c2ca5a7c323425b82d904beead6d398d 100644
GIT binary patch
delta 2643
zcmXZceN5F=9LMo<MIOA#lah#*Tm%(E=z=K9b4iMch6D(hxtjyW3M@d>VE&p9R5Ni+
zYDueHjz2WqELIZaL)n96p}Ex*Q<pm1$PHSp{%~`>Kc1gszRo$n-|w97`JV5&dj>tb
z20h2dd!3Ix#_Y{9Cczj}u-KRw3}7s_VlQ^$B+SV+W-hM6Ik*+$@F0fc07l|joPd`w
z3U9d2|HfVPJvqiq#*Q50-2b4Pfr$(paUUE<EqD&s;x(+s>|A3~unTA4X;dKB-F|4E
zF{$)tV-S|30;|GgtV0F74;9$qJjX^lz<?tD8Xv$R48dUx!{2c{jv#+#l>fBT)O=&6
zVjf0drQ5G{``b~O-0Rwdq4ZDS3jD^Qv6M!1fsMQh^+5+};`cETkE0g2f{J_u72sV|
z=EfB=2S(z<n1ISe0X~QgsD*c;=HG+Lq;rVI<225r7MS#y-B|)op`VWWuo#tzQcS>V
zOvg6#;!#xX^kV}4gb(2;Y6BBlWIFm$@0TDMcgz|ZN^Jm@(mK?Ft*9Mt$0XeCdIW>%
zpLd`Cf;zh2Pz&95pL>_s@1s!j#iEWj9>-zI{c*>bG#X0XLR7I7V;WW>g>QDFc76(#
z%CoN5P*wa77GqeE&B$upNPj0P6Mv$19{z+e3ve!Kp7j{V`erkYVBCk}@h#L*bh{pQ
z?Z;%szeCnEW9Y+73P@F5fx0!DP_?rI71+C|4BSFx>JBRKf6>tyd6(H@nS**zfitll
z70?@~%)E(O=mXS3pQ9%H(S80a>TGYJQa$Q=7nR{qq6xt`)N@}k=O0949s^31A49PW
zHBk+QVJ+&zM%4S8QGstm73tfk?~bA-{uGt+FEJUf;xr6dZhuD-a0dOh<>X)2sha^^
zi;qwfok11jIn;z#P!s-v3M}YJdt?!)ql!UgCJ}WD@=%#9L+!i{HSbnb=3YT<XuspW
z(2ZKC7roezdf^NzGe4m2^&M34cvsi}eCVf~XQRf~thC=XpcZa%?Z652-@$PF5cRv^
z9HXIyPhc2+k6QR52IFN^s;;BnyNC19yUG?<K4#H>)%6tW{r^xInevp)tRK}cMjhRA
zw(l5+MiK)DP^meI^YCX>%J1P^oK|WxQH0uQ9crR>RJ9*KKYoJR$W2^?cTfS&T5XGb
z9V);*7)AY=BQ#XygP4e?F#~U*iYK<rW~30k^p~ODD???Z)g9k~ns_fpVlOJtFE9r$
zVmwAXZQo17Fx~%^G@`H)RXiIp8rv}fJ5j~+p8LE9Q|J$1Cf-JV3e5C!J5K<$p(a#@
zwqOi)p&t*UZp|<{iu5lUThLQsOb>3uOpLFzzkua9pMEE5M_-{ba|v}co;B7K)J7^W
z73;7OyYLYVs<K6#hPm`hs>uIR8m}{;)LlSLJc_e%YPAid04LLL!B~6^AH{>HD!za^
zlB?)LPmNt*CN81B9vkowW@GePdkad|lK&tEY8cSYp2d7@L8Y({bqo4YM{v^hTU0F!
zp{~_s)UCORI^z+HLGLs6DC04UemZKNdenC>IW&~QHq-<??t@-b0H5I`97Gk{kn1pN
zg4?L08AC0cw9dX)gxXLk>b*L5{6$m%?dZY2vB@KeVHtj(-=Ceic>j&8#EguL>;;)A
ze*Sq&0?jR{<xPRc<`)7jo0_tH8(t1P-|Wk62sCY|Z!BC`-?SmEv9_fzf6>ZW{{sv9
BM6&<@

delta 2650
zcmXZdeN5F=9LMp4h+b~-a0LW25ybE!LV(akQ1by%Bc%dU0<`OV!g0|dWlZhoe5h$s
zO~tjSC9QHf{=jhS!ICf^${s9B&8?=Ay3*MqHf*(8?~mu_oUe1v@Ao_Bd%ov;uG@};
zy>KL~bFkO>Ak3JSfHA4Yn9@nc#N#SV#7)?NtvC#46d99&3ve7dI06q~6!u^Yp20}G
zgt7RW`}}X*M&DCxOdPfp8|Tgk?F`(_z#;d+QPhHGu^O*o6;7XQOeVHrGM+*Oa^3Am
zPcbHoeinvfH7c+r=*JK$;C-mTI;S``(jEpB@t1fPp2Hz{1wHsH4#qy@uNmMU?KFR?
zF-cg0(OB#D>)rl#R3`VjcHmI@$FU5*a%hy&NP5slz6A9_3u@xGF%6HR7U)Gq-iHcs
z&@`L5Nc0(FhT|yoqcTy73D|^McqeN9-Kb1D2WiZpaUQk6i0O7`ejHA}5cOd>DiaGa
z6`#ah+=5;_jH;b(OvNAYUK~JeAdW>wVgU7i1(I>cET*B<u0o|Wgj#SDYKPl#EbekW
zgc0=5yU%|@9o;Xeg>JdeeKYO%iKzLKQAeAOgD~&TxMNHK4W(`hs#wY~8*7omH@i?f
zKZ#1^8P{v5D*gxOU`&b4$Rb=xe<vyvf1-9CKZ~_62Q|+M9Krf#BaH~$hlBAo)KRp%
zcDi<>pYd;yHO*~I!D0$XRb7L+HBX~zX9p^<H&Ge5iON(zD)4{N(HZ$>+hWN^J*dGk
zxE2-A9#m#tK`rzSYN1b26MpYL{~2|*H&Lk`a2-Sx%5XFe!4%Z<adSBTa2gXCP^tnr
z6su4Z1<`}`s1Kh)y}uC^_-0g*zK;6tFlyqDQ7Qi%{dg7c!Kk_Rcf^m$^ta3<|GG}?
z4Cq?Chnna#su<6rChSE`_&X{v??d*;5>Q7q5|x?ps9R8i%48L4=ONU*4k~lcqc-%a
z2J}KZYN0OlVmIoA)2PgRhq~AOsN(UJ*#O324&|JM8ecrme%FMWcY|vSM$&%+qwrnS
zFRt@G4J~{eJ@_qZ;fol7mr<#@j(RU*KF5VVB&%i?2Jl7Klc@LqLuF)Cxy@_<)h|aK
zU7hVa<~bT;8Q70X%?X@<KcZ3|@reCTCl!^6GSp5(sEM|ss(nA^;D@M<+`vNYM+G?H
zQCsB8Pyz17SnAIlqM<53hG}>T^YAA6G5Il@k=f{_KOgm86)Gc}-0>Z#iT7d*cA*0O
z42$t1j>d!v`(6QhbpI=9#9}R~cpA`$TQM42QN{C?`@91)>Gxnh-a>u~%$Q0$&nnc0
zno${g7UQuEbFdS2Yp$T9NdKa-9z6^A4+l46KBhlze*vp;BK=m>j=n%;<`QP0XQ4F@
zwUHXk!VorK8;(csB3r}-IGKLMBJy8K<7Ebvx(ld@2QVE+SJ^;HF^>KQOvIP)emsDx
z;tQxFxr!<1dBQG`fivl^zz`n9B222bx1ge${D(6TWI#Jxj#F_1Duo}RZb3Kd2u`?u
zjjDxnsB3i@b!%>*&bSZb(N|-SG93f-3sLi|MSb^-LqjRtf|{Vieb9vp;1e8%$56#~
z&h-jvf?KGgxs6&lv(~;>hT70V)O#U!d_5|Ftr&(~f5hEL^W+w$<W4He%iq%*NSl<K
zQ<V2WW)6S64+qyZWmPr?8`jkao7OZIrPSAjmabVEY-|j!T%IzyZgq1*^Xg^w(^fV%
NX4eP10)_ML`yclhOoIRb

diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
index af478a3f..916c7468 100644
--- a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
@@ -1,6 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 # limbobarrage <ijynyjdl@grr.la>, 2014
 # cicus <mercurio@index.hu>, 2014
@@ -8,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-19 10:26+0000\n"
-"Last-Translator: limbobarrage <ijynyjdl@grr.la>\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
+"Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,6 +24,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "másodperc"
@@ -33,6 +35,7 @@ msgstr[1] "másodperc"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "perc"
@@ -43,6 +46,7 @@ msgstr[1] "perc"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "óra"
@@ -53,6 +57,7 @@ msgstr[1] "óra"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "nap"
@@ -63,6 +68,7 @@ msgstr[1] "nap"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "hét"
@@ -73,6 +79,7 @@ msgstr[1] "hét"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "év"
@@ -80,7 +87,7 @@ msgstr[1] "év"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Bannolva!"
 
@@ -91,6 +98,7 @@ msgstr "Bannolva!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Előző"
 
@@ -100,7 +108,8 @@ msgstr "Előző"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Következő"
 
@@ -250,7 +259,7 @@ msgstr "Szálat áthelyez másik táblára"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Némítva lettél nem eredeti tartalom miatt."
 
@@ -260,20 +269,20 @@ msgstr "Némítva lettél nem eredeti tartalom miatt."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Új Szál"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Új Hozzászólás"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -297,237 +306,237 @@ msgstr "Ólálkodj többet mielőtt beleszólsz."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Úgy látszik nem vagy ember."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "A böngésződ nem, vagy érvénytelen HTTP hivatkozást küldött."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "A %s mező túl rövid lett."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "A body túl hosszú lett."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "A body túl rövid lett, vagy üres."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Fel kell töltened egy képet."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "A szerver képtelen a feltöltésed kezelni."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Nem támogatott képformátum."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Érvénytelen tábla!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "A megadott szál nem létezik."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Szál lezárva. Egyelőre nem válaszolhatsz."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "A szál elérte a maximális hozzászólások számát."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "A szál elérte a maximális képfeltöltések számát."
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Nem küldtél semmit."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Flood érzékelve. Üzenet elvetve."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Az küldeményed automatizáltnak tűnik. Üzenet elvetve."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Nem eredeti tartalom!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Nem eredeti tartalom! El lettél némítva %d másodpercre."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Némítva lettél! Lejár: %d másodperc múlva."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Az IP címed listázva van itt: %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Túl sok hivatkozás; flood érzékelve."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Túl sok idézés; üzenet elvetve."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Túl sok tábla keresztlinkelés; üzenet elvetve."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Nem választottál ki semmit törlésre."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Nem választottál ki semmit jelentésre."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Nem jelenthetsz ilyen sok hozzászólást egyszerre."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Rossz jelszó..."
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Érvénytelen kép."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Ismeretlen fájlkiterjesztés."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Maximális fájlméret: %maxsz% Byte<br>A fájlod mérete: %filesz% Byte"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "A fájl túl nagy."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "A fájl <a href=\"%s\">már fel lett töltve egyszer</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "A fájl <a href=\"%s\">már fel lett töltve egyszer</a> ebben a szálban!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Várnod kell %s másodpercet mielőtt törlöd."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "MIME típus találat XSS exploit (IE) érzékelve; üzenet elvetve."
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "A videó URL-je amelyet beilleszteni próbáltál, nem értelmezhető."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Úgy látszik elírtad az ellenőrzést."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -536,19 +545,19 @@ msgstr "Csak %s felhasználó kitiltását vonhatod vissza egyszerre. Te %u felh
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Érvénytelen felhasználónév és/vagy jelszó."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Nem vagy moderátor..."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -556,71 +565,71 @@ msgstr "Érvénytelen felhasználónév és/vagy jelszó. A fiókod talán tör
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Érvénytelen vagy hibás sütik."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "A böngésződ nem küldött bemenetet amikor kellett volna."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "A %s mező szükséges."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "A %s mező érvénytelen."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Már létezik %s tábla."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Ehhez a funkcióhoz nincs jogosultságod."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "A hozzászólás nem létezik."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Oldal nem található."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Ez a moderátor <a href=\"?/users/%d\">már létezik</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Ez a téma már létezik!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Érvénytelen biztonsági azonosító! Lépj vissza és próbáld újra."
 
@@ -632,7 +641,7 @@ msgstr "Érvénytelen biztonsági azonosító! Lépj vissza és próbáld újra.
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "BÁNTOTTUK"
 
@@ -707,6 +716,9 @@ msgstr "Moderációs napló"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -879,10 +891,13 @@ msgstr "Hozzászólást Töröl"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Fájl"
 
@@ -901,6 +916,7 @@ msgstr "Fájl"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -908,6 +924,7 @@ msgstr "Fájl"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Jelszó"
 
@@ -952,6 +969,11 @@ msgstr "Jelszó"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1240,22 +1262,28 @@ msgid "Verification"
 msgstr "Megerősítés"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "Vagy URL"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Beilleszt"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Zászlók"
 
@@ -1281,11 +1309,15 @@ msgstr "Zászlók"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Ragacs"
 
@@ -1311,11 +1343,15 @@ msgstr "Ragacs"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Zár"
 
@@ -1341,21 +1377,27 @@ msgstr "Zár"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "Nyers HTML"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Fájl törléshez.)"
 
@@ -1364,21 +1406,22 @@ msgid "Post search is disabled"
 msgstr "Üzenetek közötti keresés kikapcsolva"
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Légyszíves várj egy kicsit mielőtt újra használnád a keresőt."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "A bevitt adat túl széles."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
 msgstr[0] "%d találat itt:"
 msgstr[1] "%d találat itt:"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Nincs megjelenítendő eredmény."
 
@@ -1414,12 +1457,15 @@ msgstr "Nincs megjelenítendő eredmény."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Keres"
 
@@ -1446,6 +1492,7 @@ msgstr "Hibakeresés: APC"
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1622,6 +1669,11 @@ msgstr "Küld a hírek bejegyzésbe"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1651,6 +1703,8 @@ msgstr "Személyzet"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1699,6 +1753,7 @@ msgstr "Új jegyzet"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1763,6 +1818,11 @@ msgstr "nincs indok"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1807,6 +1867,7 @@ msgstr "minden tábla"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1834,6 +1895,7 @@ msgstr "Beállít"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1869,6 +1931,7 @@ msgstr "soha"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1931,6 +1994,7 @@ msgstr "Idő"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1982,6 +2046,7 @@ msgstr "Új Kitiltás"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2066,19 +2131,19 @@ msgstr "Fellebbezés indoka"
 msgid "There are no reports."
 msgstr "Nincsenek jelentések"
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr "A kitiltás nem létezik illetve nem téged érint."
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr "Nem fellebbezhetsz meg egy ilyen időtartamú kitiltást."
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr "Nem fellebbezheted meg ezt a kitiltást többször."
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr "Már van benyújtott fellebbezés a kitiltásra."
 
@@ -2444,3 +2509,13 @@ msgstr "Felhasználót töröl"
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr "Több naplóbejegyzés mutatása a felhasználótól"
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/lt_LT/LC_MESSAGES/javascript.po b/inc/locale/lt_LT/LC_MESSAGES/javascript.po
index 5c6988cc..d65b27d9 100644
--- a/inc/locale/lt_LT/LC_MESSAGES/javascript.po
+++ b/inc/locale/lt_LT/LC_MESSAGES/javascript.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n"
 "MIME-Version: 1.0\n"
@@ -564,3 +564,7 @@ msgstr ""
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr ""
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo
index e6c8fa94cdc001b73542649acdfa32fca81ee01e..540ba0765969788b2a535e7b203fe32b2689019f 100644
GIT binary patch
delta 61
zcmbQ6FgIbtD;WbL0|f&ED-%m?Aj^O&z+X2gwJftZGe1w)C9x#cO2Np$&_vh3MAy(#
P!N|zU)MT@iEVD2GKd%s%

delta 61
zcmbQ6FgIbtD;Wbr3k5?<D<cza10w?it^j}CpwzO=;>`R!U6;g?R4WA|149#C0~1}K
PIwJ!sQ-jS?vdqE&L5mQY

diff --git a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po
index e3e8c9a9..f70838dd 100644
--- a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po
@@ -1,13 +1,14 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n"
 "MIME-Version: 1.0\n"
@@ -21,6 +22,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] ""
@@ -32,6 +34,7 @@ msgstr[2] ""
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] ""
@@ -43,6 +46,7 @@ msgstr[2] ""
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] ""
@@ -54,6 +58,7 @@ msgstr[2] ""
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] ""
@@ -65,6 +70,7 @@ msgstr[2] ""
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] ""
@@ -76,6 +82,7 @@ msgstr[2] ""
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] ""
@@ -84,7 +91,7 @@ msgstr[2] ""
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr ""
 
@@ -95,6 +102,7 @@ msgstr ""
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Atgal"
 
@@ -104,7 +112,8 @@ msgstr "Atgal"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Pirmyn"
 
@@ -254,7 +263,7 @@ msgstr ""
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr ""
 
@@ -264,20 +273,20 @@ msgstr ""
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr ""
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr ""
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -301,237 +310,237 @@ msgstr "Panaršyk ilgiau prieš rašydamas."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Tu atrodai kaip botas."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Tavo naršyklė nusiuntė netinkama arba nėra HTTP referer."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "Laukas %s buvo per ilgas."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "Kūnas buvo per ilgas."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "Kūnas buvo per trumpas arba tuščias."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Tu privalai įkelti paveiksliuką."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "Serveriui nepavyko apdoroti tavo įkėlimo."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Nepalaikomas paveiksliuko formatas."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Neteisinga lenta!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Nurodyta diskusija neegzistuoja."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Diskusija užrakinta. Šiuo metu negali parašyti atsiliepimo."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr ""
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr ""
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Tu nesukūrei komentaro."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Perpildymas aptiktas; komentaras išmestas."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Tavo užklausa atrodo automatizuota; komentaras išmestas."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Neoriginalus turinys!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Neoriginalus turinys! Tu buvai užtildytas %d sekundėms."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Tu esi užtildytas! Užtildymas pasibaigs po %d sekundžių."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Tavo IP adresas yra įtrauktas į %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Per daug nuorodų; aptiktas perpildimas."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Per daug citatų; komentaras išmestas."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Per daug tarplentinių nuorodų; komentaras išmestas."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Tu nepasirinkai nieko, ką ištrinti."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Tu nepasirinkai nieko, ką pranešti."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Tu negali pranešti tiek komentarų iškart."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Neteisingas slaptažodis..."
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Neteisingas paveiksliukas."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Nežinoma failo plėtinys."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Maksimalus failo didys: %maxsz% baitai<br>Tavo failo didys: %filesz% baitai"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Failas buvo per didelis."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Tas failas <a href=\"%s\">jau egzistuoja</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Tas failas <a href=\"%s\">jau egzistuoja</a> šioje diskusijoje!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Tu turėsi palaukti dar %s prieš ištrindamas šitai."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "MIME tipo detekcija XSS eksploitas (IE) aptiktas; komentaras išmestas."
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "Tavo video URL, kurį bandei patalpinti, buvo nesuprastas."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Atrodo tu įvedei neteisingą patvirtinimą."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -540,19 +549,19 @@ msgstr ""
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Neteisingas slapyvardis ir/ar slaptažodis."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Tu nesi moderatorius..."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -560,71 +569,71 @@ msgstr "Neteisingas slapyvardis ir/ar slaptažodis. Tavo vartotojas buvo ištrin
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Neteisingi/netaip suformuoti slapukai."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Tavo naršyklė nepateikė įvesties, kai turėjo."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Laukas %s reikalingas."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "Laukas %s buvo neteisingas."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Jau egzistuoja %s lenta."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Tu neturi teisių tai padaryti."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Tas komentaras neegzistuoja..."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Nerastas puslapis."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Tas moderatorius <a href=\"?/users/%d\">jau egzistuoja</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Ta tema neegzistuoja!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Neteisinga apsaugos žymė! Prašome sugrįžti ir bandyti vėl."
 
@@ -636,7 +645,7 @@ msgstr "Neteisinga apsaugos žymė! Prašome sugrįžti ir bandyti vėl."
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr ""
 
@@ -711,6 +720,9 @@ msgstr "Moderacijos žurnalas"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -883,10 +895,13 @@ msgstr "Ištrinti komentarą"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Failas"
 
@@ -905,6 +920,7 @@ msgstr "Failas"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -912,6 +928,7 @@ msgstr "Failas"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Slaptažodis"
 
@@ -956,6 +973,11 @@ msgstr "Slaptažodis"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1248,22 +1270,28 @@ msgid "Verification"
 msgstr "Patvirtinimas"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr ""
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Įterpti"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Vėliavos"
 
@@ -1289,11 +1317,15 @@ msgstr "Vėliavos"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Sticky"
 
@@ -1319,11 +1351,15 @@ msgstr "Sticky"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Užrakinti"
 
@@ -1349,21 +1385,27 @@ msgstr "Užrakinti"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "Grynas HTML"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Failų trynimui.)"
 
@@ -1372,14 +1414,15 @@ msgid "Post search is disabled"
 msgstr ""
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr ""
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr ""
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
@@ -1387,7 +1430,7 @@ msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr ""
 
@@ -1423,12 +1466,15 @@ msgstr ""
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Ieškoti"
 
@@ -1455,6 +1501,7 @@ msgstr ""
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1631,6 +1678,11 @@ msgstr "Patalpinti naujienų įvęstį"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1660,6 +1712,8 @@ msgstr "Administracija"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1708,6 +1762,7 @@ msgstr "Nauja pastaba"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1772,6 +1827,11 @@ msgstr "jokios priežasties"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1816,6 +1876,7 @@ msgstr "visos lentos"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1843,6 +1904,7 @@ msgstr "Nustatyti"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1878,6 +1940,7 @@ msgstr "niekada"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1940,6 +2003,7 @@ msgstr ""
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1991,6 +2055,7 @@ msgstr "Naujas draudimas"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2075,19 +2140,19 @@ msgstr ""
 msgid "There are no reports."
 msgstr "Nėra pranešimų."
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr ""
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr ""
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr ""
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr ""
 
@@ -2453,3 +2518,13 @@ msgstr ""
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr ""
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/pl_PL/LC_MESSAGES/javascript.po b/inc/locale/pl_PL/LC_MESSAGES/javascript.po
index 838345aa..24be9d84 100644
--- a/inc/locale/pl_PL/LC_MESSAGES/javascript.po
+++ b/inc/locale/pl_PL/LC_MESSAGES/javascript.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n"
 "MIME-Version: 1.0\n"
@@ -564,3 +564,7 @@ msgstr "Puszczaj wideo po najechaniu"
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr "Domyślna głośność"
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo
index 0c996585f972e2f816bfe997de8adc917ae8c70f..beab2d6b56a58a6f1f1bbb363f2b85f924c99c2a 100644
GIT binary patch
delta 63
zcmeycgYm--#tpa34U7yF3=FJHEVY3w1Fisn-JsO6%;L=aJYAQ>l2j`NBLhPdT>}$c
RLrVoCBP&yr&0H2~Dgc+w5_tds

delta 63
zcmeycgYm--#tpa34Gb+53@xpUOtcM*3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEO>_-R
Sbb;!O46IBIHgj2|sQ>_(sS<nu

diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po
index 5fb3d3e5..11198592 100644
--- a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po
@@ -1,14 +1,15 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 # czaks <marcin@6irc.net>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n"
 "MIME-Version: 1.0\n"
@@ -22,6 +23,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "sekunda"
@@ -33,6 +35,7 @@ msgstr[2] "sekund"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "minuta"
@@ -44,6 +47,7 @@ msgstr[2] "minut"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "godzina"
@@ -55,6 +59,7 @@ msgstr[2] "godzin"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "dzień"
@@ -66,6 +71,7 @@ msgstr[2] "dni"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "tydzień"
@@ -77,6 +83,7 @@ msgstr[2] "tygodni"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "rok"
@@ -85,7 +92,7 @@ msgstr[2] "lat"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Zbanowany!"
 
@@ -96,6 +103,7 @@ msgstr "Zbanowany!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Wstecz"
 
@@ -105,7 +113,8 @@ msgstr "Wstecz"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Dalej"
 
@@ -255,7 +264,7 @@ msgstr "Przenieś wątek na inny board"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Zostałeś wyciszony za nieoryginalną treść."
 
@@ -265,20 +274,20 @@ msgstr "Zostałeś wyciszony za nieoryginalną treść."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Nowy wątek"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Odpowiedz"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -302,237 +311,237 @@ msgstr "Nie postuj pierwszego dnia."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Wyglądasz jak bot."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Twoja przeglądarka przesłała niepoprawny, bądź nie przesłała informacji o odsyłaczu w nagłówku"
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "Pole %s jest za długie"
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "Zawartość jest za długa."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "Zawartość jest za krótka, bądź pusta."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Musisz wysłać obrazek."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "Nie udało się obsłużyć twojego pliku."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Niewspierany format obrazka."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Niepoprawny board!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Wybrany wątek nie istnieje."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Wątek jest zablokowany. Nie możesz w nim teraz postować."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "Ten temat osiągnął swój maksymalny limit odpowiedzi."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "Ten temat osiągnął swój maksymalny limit obrazków."
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Nie zrobiłeś posta."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Wykryto flood; Post odrzucony."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Twoje żądanie wygląda na zautomatyzowane; Post odrzucony."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Nieoryginalna treść!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Nieoryginalna treść! Zostałeś wyciszony na %d sekund."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Jesteś wyciszony! Wygasa w ciągu %d sekund."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Twój adres IP jest na liście %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Zbyt dużo linków; wykryto flood."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Zbyt dużo cytatów; post odrzucony."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Zbyt dużo linków między boardami; post odrzucony."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Nie wybrano nic do usunięcia."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Nie wybrano nic do zgłoszenia."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Nie możesz raportować tyle postów na raz."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Niepoprawne hasło"
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Niepoprawny obrazek."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Nieznane rozszerzenie pliku."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Maksymalny rozmiar pliku: %maxsz% bajtów<br>Rozmiar twojego pliku: %filesz% bajtów"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Plik jest za duży."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Ten plik <a href=\"%s\">już istnieje</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Ten plik <a href=\"%s\">już istnieje</a> w tym temacie!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Musisz poczekać kolejne %s przed usunięciem tego."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "Wykryto próbę wykorzystania luki wykrywania typu MIME (XSS w IE); post odrzucony"
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "Nie można było zrozumieć URL-a wideo, którego próbowano zapostować."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Wygląda na to, że przepisano źle weryfikację."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -541,19 +550,19 @@ msgstr "Możesz odbanować tylko %s użytkowników na raz. Próbowałeś odbanow
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Błędna nazwa użytkownika, bądź hasło"
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Nie jesteś moderatorem"
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -561,71 +570,71 @@ msgstr "Niepoprawna nazwa użytkownika, bądź hasło. Twoje konto mogło zosta
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Niepoprawne/zmodyfikowane pliki cookie."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Twoja przeglądarka nie wysłała pola, kiedy powinna."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Pole %s jest wymagane."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "Pole %s jest niepoprawne."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Już istnieje board %s"
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Nie masz uprawnień do wykonania tej czynności."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Ten post nie istnieje..."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Strona nie znaleziona."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Ten moderator <a href=\"?/users/%d\">już istnieje</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Ten dodatek nie istnieje!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Niepoprawny token bezpieczeństwa! Proszę cofnąć i spróbować ponownie."
 
@@ -637,7 +646,7 @@ msgstr "Niepoprawny token bezpieczeństwa! Proszę cofnąć i spróbować ponown
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "UŻYTKOWNIK ZOSTAŁ ZBANOWANY ZA TEGO POSTA"
 
@@ -712,6 +721,9 @@ msgstr "Log moderacji"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -884,10 +896,13 @@ msgstr "Usuń post"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Plik"
 
@@ -906,6 +921,7 @@ msgstr "Plik"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -913,6 +929,7 @@ msgstr "Plik"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Hasło"
 
@@ -957,6 +974,11 @@ msgstr "Hasło"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1249,22 +1271,28 @@ msgid "Verification"
 msgstr "Weryfikacja"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "Lub URL"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Osadź"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Flagi"
 
@@ -1290,11 +1318,15 @@ msgstr "Flagi"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Przyklejony"
 
@@ -1320,11 +1352,15 @@ msgstr "Przyklejony"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Zablokowany"
 
@@ -1350,21 +1386,27 @@ msgstr "Zablokowany"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "Czysty HTML"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(do usuwania postów)"
 
@@ -1373,14 +1415,15 @@ msgid "Post search is disabled"
 msgstr "Wyszukiwanie postów jest wyłączone"
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Proszę poczekać chwilę przed ponownym szukaniem."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "Zapytanie zbyt szerokie."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
@@ -1388,7 +1431,7 @@ msgstr[0] "%d wynik na"
 msgstr[1] "%d wyniki na"
 msgstr[2] "%d wyników na"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Brak wyników."
 
@@ -1424,12 +1467,15 @@ msgstr "Brak wyników."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Szukaj"
 
@@ -1456,6 +1502,7 @@ msgstr "Debug: APC"
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1632,6 +1679,11 @@ msgstr "Zapostuj newsa"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1661,6 +1713,8 @@ msgstr "Ekipa"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1709,6 +1763,7 @@ msgstr "Nowa notka"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1773,6 +1828,11 @@ msgstr "brak powodu"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1817,6 +1877,7 @@ msgstr "wszystkie boardy"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1844,6 +1905,7 @@ msgstr "Ustawione"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1879,6 +1941,7 @@ msgstr "nigdy"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1941,6 +2004,7 @@ msgstr "Czas"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1992,6 +2056,7 @@ msgstr "Nowy ban"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2076,19 +2141,19 @@ msgstr "Powód apelacji"
 msgid "There are no reports."
 msgstr "Nie ma żadnych raportów."
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr "Ten ban nie istnieje, lub nie należy do Ciebie."
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr "Nie możesz apelować o zdjęcie bana o tej długości."
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr "Nie możesz ponownie apelować o zdjęcie tego bana."
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr "W tej chwili oczekuje apelacja o zdjęcie tego bana."
 
@@ -2454,3 +2519,13 @@ msgstr "Usuń użytkownika"
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr "Zobacz więcej logów tego użytkownika"
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/pt_BR/LC_MESSAGES/javascript.po b/inc/locale/pt_BR/LC_MESSAGES/javascript.po
index 8575b37c..019d1636 100644
--- a/inc/locale/pt_BR/LC_MESSAGES/javascript.po
+++ b/inc/locale/pt_BR/LC_MESSAGES/javascript.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 22:49+0000\n"
-"Last-Translator: anaodev <xmas@yopmail.com>\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
+"Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -566,3 +566,7 @@ msgstr "Reproduz vídeos em foco"
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr "Volume padrão"
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo
index 02bcbce5092fcf657bfd3f6f570cd81876975de4..cfe67c7ea0a683906b84f7ddeb2638feec49ad3b 100644
GIT binary patch
delta 2673
zcmXZdeN5F=9LMp4U62Ps5flxy3$zIF!sU8Xo&+L514JWHv@yF8D++<`z3FD<wQM>}
z%Z%0&VYB|Q2ay8*NnMMXIoH-uSUJmut+LjpGx<lh*89`%@Xza<bI<Rb^ZlOh@5kVY
zs83Hs4Y}eYLs7;YSYeFY7*k$sOd4*%4BU=~u@4i_Ut)|8D^b6PtOqfM{xO`1BN&aR
za5j!wFJLeIt2iG!OHIVgp|QKvm^kc1JurYtIEbt9G_J&$GGmrtwY3{F>A#EFcnXQd
z{DL~b0v^(Oi&4Ml<6LaQL~LIfaZVg!Kqr3=<8e1?fmczH^<gZ&hY#RKsEl00g?P*U
zo>cDi(@+5v;ykQG1-b#X{u5Y*!3d2S8YfVxokmT}uW%NqK&7e?m7#Xj6?LNv_o5EE
zAGPoy)bsD74mN1V&!GamXn((q8T2E6)6m9ol}@V4P#ZL$7J3{N`Ln2qcVY_eL#1>8
zb+A#Kh2LR1UP7gQ3Ux)%_dER@R7O`I2a1?-8j7SAm8yEwh5^*VPvIgAqZ<#QA{j=_
zJBdp58T8;qoPkl~R~xxd8A?EnCtFi-Hv5}28j36j75OssV?E~JF4RUxQN{B)Dl=y=
z87Hs^|G>rQra<bj0+peCxBv%n34V(zzMC3nf6Cd3XrVO|mAYKi$&1m26{yr!BlTt;
zMIB@Swcv5ofli|``8_t{Z>RuDDKurY8Wl(*MwGe$jk~Z1wa`ISBm?Ne)2Ml)s5>4*
zEp)~9uc0=WLKWe^_V>72XT20_CTd;*>I#c$$-g$JWIz$up!&_I6K=*B+=|f{#u>N+
zb<h`3SN4ki{X>kQ|1qZG5a!}Hs2aMCYcO$@F?Zr4tH{41*~WnGXcy{)@1Rn9#P)|#
z51c~H{{drg694}Wpf<dPI(Xb_CsP@yE6GJYSBm<*#`aqxcEV%UFe=r1P#e67dfoc*
z4ji)m5samO4t=C#4E3FG)jOF=M+K0H%B&A{HC4912DMM5m4-Izv=c(8RPV%@_%deU
ze*61z%%lG$>Mi*l@4@s2=k=>XWwHl#pk7qwKCt5_QAIqCnR@?k(C{%Zmy6LI)nEa(
zp&Q>o73YZUkK6tf>I*in(b>p{_tJk5mFggBo#*ZNXP8fa0`ErGTFvABb7?5zWtfe{
zs0dq8Z$U4rD34+e9z%UvColo8<1Cy;Js-Qyx#Oj%;;cZ*!fZqZau~JlR~X0s=8774
z4OJ{RQFrTl$f@!~)K#RT=4GP}=s{&{6PDt3RB;WXYUM2I0Oze&aXJ0lsA4T_BLBLp
zS{gyzg8g^_`4?@vA9hmq336BFl64xD>P73FFIuhj8BAfkAD7|~5{vm6mAQPrM#|g<
z)Q733nf&v)HfQOnh+;Q57NA!XQJ>7csD;14d3Y9ez@KnFrfqbJDj!vBby$e)NPU{O
zPzU)H^_;)Oc`LeG$bS?A5e5?RMbv>_Lw#t*P^lb8UCEEAtC&Px#h<9R=O62BbkmR8
z<Qy~$b?_oA#s<{<J*e05K!k=;`8H~UuW=5ZM-}B|Ou|V_!yBlgi{0!jl!~hAbW|<W
zp$_;YCSwok`Ik`ZzK+`G2rBU58!3NfxB9$pueZcsoagm<z47bTdYam|b%Z*)yFAr_
zaC?c{=PmSmynat%vD@b>xzC^H<uAS=5DI(N2LoN9&Oo?3SmJKm5qLV}F54Oiwsmw>
SF7F7o<#)A*hf9jWS^ok5)k2{F

delta 2676
zcmXZdeN5F=9LMp4A{PM_Lcq}QBBX_&_uj5NT<`%9fdWC(0(+QOrKH5`?nQjq>SmS=
zCs~=%$}(!!ANGKf+CM34F*E1d8VW0CxwMtE)pRER=z4$p9sYTpbME<_bH3m6{rxz6
zEavlLF}<+~(Y_dCx{8c(8)M2#jLE<?I1RVsLF~pvED9Lo!%Ece9oBsqN52<ccml`a
zDV&4@*7Mj&|0<?qsMJJFGL2oO#*D{q)B`;@5szRE_TzjUUuH}mR$IfEP5(X2!Ba>q
z<~P&<rt*;1%SQd~#k+7NPQdl^qt1yt7|_X|#{}GkTHtk5WZf8#?_(u?g38DU-i^2H
z?<otMekLjaKc-<ND$r)s`p;kmZjREZqVW|fwRcbxy$hWMDp09fhRV=-)D?v>7I&i#
zx)-(Ze$?|HpbmD#j-N#Zc)|XD38&GI{!K$0CoOVPwGg#I18SkCQIT&&MZ5!3u?v;b
z9@N1GFbRLasdy2U`cc#s#g{w%JXA&l$bq7!oQ5K)MWt#fYQuG?h1>8R+=6c0kBa0t
zYTijys!wA9UcfOJOMbPH3zeaXsPW0x44lONCX<FD%R@z8h<;p(vv4PBqr<4;`4W|x
z)0l$8Sd7;&3v(!t2eAT`p)Q<)M=%e+M-|^qjkCWQyV!|nnl%@dx_s2h%P<xzP^qm(
z>dmZ09i#`f;8E0p`cawu5m(|Lr~npJIT@`+1+omIO5Hjd(=mctXdfz)9*o6))Vu-I
z9S@?e=CbXNpf(sq6=BR0=l3Mkdg<0&)I1;R3QL!ee{E37fFiCz^_x&9d;;Te6OO|z
zI0m0XE&KxN%3ig<e~fYTKgG$|hxg-ms2aMC^_X1Ewd0f3<X@3&V?cMb6LrD^sMH>^
z{o|+yPNC-igmHKU|Njo4HoS#8cv6j%sp+UI$wxi60QGx~?LQW^6I!fWP^s=jZSXeg
zbvuY-vCsBTU_AY^=p!YAsPBa9AtzH=r~q<NnVpBankw6GMC}t@O+y=n?1T<fs&}9Z
zU%?r;*ZzJKXVd>0^_KjJGcl{qdHt$TnT((gv<H>BkL>tKR1pthw%-36G<*!CaWT51
z8k~zyp&Q>q73T@tAF};X)E8{ZQfH%icpv>bRH`?l)`{BjFK`b1Va!EWgXVGn`7{)9
zA?9EiD#F#Mw_p#dC=cT->_vTAhcOYaV-ns$J)hX<-0@sgaaJH@VOF66`4F}4H#naC
z&1E%k1XV0IQFrTF=2Uqy>MF8O^JbzB=s{)dapWJQ*^Vl%<EUCWgF3)D>s2hIe;ZY-
z{^evxcU4OxjBD@!p2q-&A9hmq8FE+VqV*0c)$SF}7p>OXj;V|v#C+^SVlls>GUw%M
zq|7y=K1`97<e$&AIYUoHl=z6F4?UWQ`eg1#Eqn~q@C@pJzhF9MKI#;e7gcQa=*9I&
zeVTVr2l*ZKTv3zrR)m|#e+&aJGB5#OLLKN0)Q4semC7O1mHdpliYutA_zU&+{A<09
zZu+s!&Oz@*9lR7vumLr{6ZJa27Nwz7zKh!6TTI4tsG_`t6Y&aW;0;vKC9ZN7%0N|h
z7OEENQ3re$Q!s*h{$<p<Z=&`&gbKXxpVVtPtG&f;Z%M%CpY8E^JPC~r1<PAHS|hEY
zjRlK??JWVf&*SwMc>D#-^F0voFps~4x?rTeU`05%F|r}p9tsEC!HvPtx|R-i+19pT
XWYM<JrnX?~hB<3PZGA<>?KA!Z>!n8C

diff --git a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po
index 56fc2234..c27903ea 100644
--- a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po
@@ -1,6 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 # anaodev <xmas@yopmail.com>, 2014
 # hitmonkey <sac@55ch.org>, 2014
@@ -9,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 23:04+0000\n"
-"Last-Translator: anaodev <xmas@yopmail.com>\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
+"Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,6 +25,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "segundos"
@@ -34,6 +36,7 @@ msgstr[1] "segundos"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "segundos"
@@ -44,6 +47,7 @@ msgstr[1] "minutos"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "hora"
@@ -54,6 +58,7 @@ msgstr[1] "horas"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "dia"
@@ -64,6 +69,7 @@ msgstr[1] "dias"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "semana"
@@ -74,6 +80,7 @@ msgstr[1] "semanas"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "ano"
@@ -81,7 +88,7 @@ msgstr[1] "anos"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Banido!"
 
@@ -92,6 +99,7 @@ msgstr "Banido!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Anterior"
 
@@ -101,7 +109,8 @@ msgstr "Anterior"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Proximo"
 
@@ -251,7 +260,7 @@ msgstr "Mover tópico para outra board"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Você foi silenciado por conteúdo repetido."
 
@@ -261,20 +270,20 @@ msgstr "Você foi silenciado por conteúdo repetido."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Novo tópico"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Responder"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -298,237 +307,237 @@ msgstr "Lurke mais antes de postar."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Você não parece humano."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Seu browser enviou um referial HTTP inválido ou não enviou o referencial."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "O campo %s é longo demais."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "O corpo do texto é longo demais."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "O corpo do texto é pequeno demais ou inexistente."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Você deve fazer upload de uma imagem."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "O servidor não conseguiu processar seu upload."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Formato de arquivo não aceito"
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Board inválida!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "O tópico especificado não existe.."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Tópico trancado, você não pode responde-lo."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "O tópico atingiu o limite de respostas."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "O tópico alcançou o limite máximo de imagens"
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Você não escreveu uma mensagem."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Flood detectado; Sua mensagem foi descartada."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Sua requisição parece automatizada; Mensagem descartada."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Conteudo não original!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Conteudo não original! Você está impedido de postar por %d segundos."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Você está impedido de postar! Expira em %d segundos."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Seu IP está listado em %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Links demais; Flood detectado."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Citações demais; Post descartado."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Links entre boards demais; Post descartado."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Você não selecionou nada para deletar."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Você não selecionou nada para denunciar."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Você não pode denunciar tantas mensagens ao mesmo tempo."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Senha incorreta…"
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Imagem inválida."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Extenção de arquivo desconhecida."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Tamanho maximo de arquivos: %maxsz% bytes<br>O tamanho do seu arquivo: %filesz% bytes"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Seu arquivo é grande demais."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "O arquivo <a href=\"%s\">já existe</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "O arquivo <a href=\"%s\">já existe</a> neste tópico!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Você terá que esperar %s segundos antes de deletar isso."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "Exploit XSS do tipo MIME (IE) detectado; mensagem descartada."
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "Não foi possivel processar a URL do video que você tentou integrar."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Você errou o codigo de verificação."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -537,19 +546,19 @@ msgstr "Você só tem permissão para retirar o ban de %s usuários por vez, e v
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Login e/ou senha inválido(s)."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Você não é mod…"
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -557,71 +566,71 @@ msgstr "Login e/ou senha inválido(s). Seu login deve ter sido mudado ou removid
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Cookies inválidos ou mal formados."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Seu browser não enviou nada, quando ele deveria."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "O campo %s é necessário."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "O campo %s é inválido."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "A board %s já existe."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Você não tem permissão para fazer isso."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Esse post não existe..."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Pagina não encontrada."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Este mod <a href=\"?/users/%d\">já existe</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Este tema não existe!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Token de segurança inválido! Retorne e tente novamente"
 
@@ -633,7 +642,7 @@ msgstr "Token de segurança inválido! Retorne e tente novamente"
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "O USUÁRIO FOI BANIDO POR ESTA MENSAGEM"
 
@@ -708,6 +717,9 @@ msgstr "Log da moderação"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -880,10 +892,13 @@ msgstr "Deletar Mensagem"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Arquivo"
 
@@ -902,6 +917,7 @@ msgstr "Arquivo"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -909,6 +925,7 @@ msgstr "Arquivo"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Senha"
 
@@ -953,6 +970,11 @@ msgstr "Senha"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1241,22 +1263,28 @@ msgid "Verification"
 msgstr "Verificação"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "Ou URL"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Inserir"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Sinalizações"
 
@@ -1282,11 +1310,15 @@ msgstr "Sinalizações"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Fixar"
 
@@ -1312,11 +1344,15 @@ msgstr "Fixar"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Trancar"
 
@@ -1342,21 +1378,27 @@ msgstr "Trancar"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "HTML Puro"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Para excluir arquivos)"
 
@@ -1365,21 +1407,22 @@ msgid "Post search is disabled"
 msgstr "A pesquisa de mensagens está desativada."
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Aguarde um momento antes de pesquisar novamente, por favor."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "Pesquisa pouco especifica."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
 msgstr[0] "%d resultado em"
 msgstr[1] "%d resultados em"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Sem resultados."
 
@@ -1415,12 +1458,15 @@ msgstr "Sem resultados."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Procurar"
 
@@ -1447,6 +1493,7 @@ msgstr "Debug: APC"
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1623,6 +1670,11 @@ msgstr "Postar nova notícia"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1652,6 +1704,8 @@ msgstr "Equipe"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1700,6 +1754,7 @@ msgstr "Nova nota"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1764,6 +1819,11 @@ msgstr "sem razão especificada"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1808,6 +1868,7 @@ msgstr "todas as boards"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1835,6 +1896,7 @@ msgstr "Configurar"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1870,6 +1932,7 @@ msgstr "nunca"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1932,6 +1995,7 @@ msgstr "Tempo"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1983,6 +2047,7 @@ msgstr "Nova Expulsão"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2067,19 +2132,19 @@ msgstr "Motivo de apelo"
 msgid "There are no reports."
 msgstr "Não há denúncias no momento."
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr "Este ban não existe, ou não é pra você."
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr "Você não pode apelar um ban desta duração."
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr "Você não pode apelar novamente."
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr "Já existe um apelo pendente a este ban."
 
@@ -2445,3 +2510,13 @@ msgstr "Deletar usuário"
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr "Ver mais logs deste usuário."
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/ru_RU/LC_MESSAGES/javascript.po b/inc/locale/ru_RU/LC_MESSAGES/javascript.po
index 41cff4e2..2208e32b 100644
--- a/inc/locale/ru_RU/LC_MESSAGES/javascript.po
+++ b/inc/locale/ru_RU/LC_MESSAGES/javascript.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-19 11:20+0000\n"
-"Last-Translator: Assada <assada@mail.ua>\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
+"Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -564,3 +564,7 @@ msgstr "Проиграть при наведении"
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr "Громкость"
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo
index 84bf548626574a4a5bffc3cfe5db1fd55cfbc6f1..eb57a241b045576a93ecda1db4ecbc50c5ccd39e 100644
GIT binary patch
delta 57
zcmaD_^t5P$oE(Rdfr5d7m5JqKH92J#BO@!*$-Z(DV#!sB*~JPrxrs%|nRyOonMKKZ
Nd8s9vtL0uv0RRJs5|jV{

delta 57
zcmaD_^t5P$oE(Rtg@U1_m66G0H92J#LqjWr$-Z(DVvfbdi7AN+Hi=-`AvZBIN3S$-
JbG6(nDF6Xs5_tds

diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po
index 1f21aef0..ed9c37f8 100644
--- a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po
@@ -1,6 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 # Assada <assada@mail.ua>, 2014
 # cookiezeater <cookiezeater@mail.ru>, 2014
@@ -8,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-19 11:04+0000\n"
-"Last-Translator: Assada <assada@mail.ua>\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
+"Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,6 +24,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "секунда"
@@ -34,6 +36,7 @@ msgstr[2] "секунд"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "минута"
@@ -45,6 +48,7 @@ msgstr[2] "минут"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "час"
@@ -56,6 +60,7 @@ msgstr[2] "часа"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "день"
@@ -67,6 +72,7 @@ msgstr[2] "дней"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "неделя"
@@ -78,6 +84,7 @@ msgstr[2] "недель"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "год"
@@ -86,7 +93,7 @@ msgstr[2] "лет"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Забанен!"
 
@@ -97,6 +104,7 @@ msgstr "Забанен!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Предыдущий"
 
@@ -106,7 +114,8 @@ msgstr "Предыдущий"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Следующий"
 
@@ -256,7 +265,7 @@ msgstr "Переместить тред в другую доску"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr ""
 
@@ -266,20 +275,20 @@ msgstr ""
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Новый тред"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Новый ответ"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -303,237 +312,237 @@ msgstr ""
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Ты похож на бота."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Твой браузер послал ошибочный HTTP referer. Ну или совсем его не отправил."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "Поле %s слишком длинное."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "Содержимое очень большое."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "Содержимое очень короткое или отсутствует"
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Ты должен загрузить изображение."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr ""
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Не поддерживаемый формат изображения."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Неверная доска."
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr ""
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Тред закрыт. Ты не можешь писать сюда."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "Тред достиг максимального количества ответов."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "Тред достиг максимального количества изображений."
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Ты не можешь создать тред."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Обнаружен флуд. Пост отклонен."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Ваш запрос похож на автоматический. Пост отклонен."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Не оригинальный контент."
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr ""
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr ""
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr ""
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Слишком много ссылок. Обнаружен флуд."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Слишком много отсылок на доски. Отклонено."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Ты не выбрал ничего для удаления."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Ты ничего не выбрал для жалобы."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr ""
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Ошибка пароля. "
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Неверное изображение"
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Неизвестное расширение файла."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Максимальный размер файла: %maxsz% байт<br> А твой файл: %filesz% байт."
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Этот файл слишком большой."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Этот файл <a href=\"%s\">уже существует</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Этот файл <a href=\"%s\">уже существует</a> в этом треде."
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr ""
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr ""
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr ""
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr ""
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -542,19 +551,19 @@ msgstr ""
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Ошибочный логин и\\или пароль."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Ты не модератор..."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -562,71 +571,71 @@ msgstr ""
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr ""
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr ""
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Необходимо заполнить поле %s"
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "Поле %s заполнено с ошибкой. "
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr ""
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "У тебя нет прав для этого."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Такого поста не существует."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Страница не найдена."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr ""
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Этой темы не существует."
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Ошибка безопасности. Вернись назад и попробуй снова."
 
@@ -638,7 +647,7 @@ msgstr "Ошибка безопасности. Вернись назад и по
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "АВТОР ЭТОГО ПОСТА ЗАБЛОКИРОВАН"
 
@@ -713,6 +722,9 @@ msgstr "Логи модерации"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -885,10 +897,13 @@ msgstr "удалить пост"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Файл"
 
@@ -907,6 +922,7 @@ msgstr "Файл"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -914,6 +930,7 @@ msgstr "Файл"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Пaроль"
 
@@ -958,6 +975,11 @@ msgstr "Пaроль"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1250,22 +1272,28 @@ msgid "Verification"
 msgstr "Подтверждение"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "Или URL"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Вставить медиа"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Флаги"
 
@@ -1291,11 +1319,15 @@ msgstr "Флаги"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Sticky"
 
@@ -1321,11 +1353,15 @@ msgstr "Sticky"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Lock"
 
@@ -1351,21 +1387,27 @@ msgstr "Lock"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "Сырой HTML"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Для удаления файлов.)"
 
@@ -1374,14 +1416,15 @@ msgid "Post search is disabled"
 msgstr ""
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr ""
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr ""
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
@@ -1389,7 +1432,7 @@ msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Нет результатов"
 
@@ -1425,12 +1468,15 @@ msgstr "Нет результатов"
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Поиск"
 
@@ -1457,6 +1503,7 @@ msgstr ""
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1633,6 +1680,11 @@ msgstr ""
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1662,6 +1714,8 @@ msgstr ""
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1710,6 +1764,7 @@ msgstr "Новая заметка"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1774,6 +1829,11 @@ msgstr "без причины"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1818,6 +1878,7 @@ msgstr "все доски"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1845,6 +1906,7 @@ msgstr ""
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1880,6 +1942,7 @@ msgstr "никогда"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1942,6 +2005,7 @@ msgstr "Время"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1993,6 +2057,7 @@ msgstr "Новый бан"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2077,19 +2142,19 @@ msgstr ""
 msgid "There are no reports."
 msgstr ""
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr ""
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr ""
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr ""
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr ""
 
@@ -2455,3 +2520,13 @@ msgstr "Удалить"
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr "Показать все логи этого пользователя."
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/sk_SK/LC_MESSAGES/javascript.po b/inc/locale/sk_SK/LC_MESSAGES/javascript.po
index 94b33a8a..3a238142 100644
--- a/inc/locale/sk_SK/LC_MESSAGES/javascript.po
+++ b/inc/locale/sk_SK/LC_MESSAGES/javascript.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n"
 "MIME-Version: 1.0\n"
@@ -564,3 +564,7 @@ msgstr "Spustiť videá pri ukázaní na ne"
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr "Pôvodná hlasitosť"
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo
index 7adfd76e9fba87cc0b7fcdd3ca48ca1c90a3b74c..318c4df73ff6f80a3668fb9b595ebc9c3097067d 100644
GIT binary patch
delta 63
zcmaF8lkxRV#tpa34U7yF3=FJHEVY3w1Fisn-JsO6%;L=aJYAQ>l2j`NBLhPdT>}$c
RLrVoCBP&yr&0H1_RREUN66^o~

delta 63
zcmaF8lkxRV#tpa34Gb+53@xpUOtcM*3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEO>_-R
Sbb;!O46IBIHgj1#Q~>~(u@dh9

diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po
index 266e3eba..e237a5e3 100644
--- a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po
@@ -1,14 +1,15 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 # dubcheck <admin@alokal.eu>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n"
 "MIME-Version: 1.0\n"
@@ -22,6 +23,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "sekunda"
@@ -33,6 +35,7 @@ msgstr[2] "sekúnd"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "minúta"
@@ -44,6 +47,7 @@ msgstr[2] "minút"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "hodina"
@@ -55,6 +59,7 @@ msgstr[2] "hodín"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "deň"
@@ -66,6 +71,7 @@ msgstr[2] "dní"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "týždeň"
@@ -77,6 +83,7 @@ msgstr[2] "týždňov"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "rok"
@@ -85,7 +92,7 @@ msgstr[2] "rokov"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Zabanovaný!"
 
@@ -96,6 +103,7 @@ msgstr "Zabanovaný!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Späť"
 
@@ -105,7 +113,8 @@ msgstr "Späť"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "Ďalej"
 
@@ -255,7 +264,7 @@ msgstr "Presunúť vlákno na inú dosku"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Bol si zablokovaný pre neoriginálny obsah."
 
@@ -265,20 +274,20 @@ msgstr "Bol si zablokovaný pre neoriginálny obsah."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Nové vlákno"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Odpoveď"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -302,237 +311,237 @@ msgstr "Ešte tu chvíľu slieď predtým, než budeš prispievať."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Vyzeráš ako bot."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Tvoj prehliadač odoslal vadný alebo žiadny HTTP referer."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "Pole %s bolo príliš dlhé."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "Telo správy bolo príliš dlhé."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "Telo správy bolo prikrátke alebo prázdne."
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Musíš odoslať obrázok."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "Serveru sa nepodarilo poradiť si s Tvojím uploadom."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Nepodporovaný formát súboru."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Nesprávna doska!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Špecifikované vlákno neexistuje."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Zamknuté vlákno. Teraz nie je možné naň odpovedať."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "Vlákno dosiahlo svoj maximálny limit pre odpovede."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "Vlákno dosiahlo svoj maximálny limit pre obrázky."
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Príspevok nebol vytvorený."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Detekovaný flood; Príspevok zrušený."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Požiadavka vyzerá byť automatizovaná; Príspevok zrušený."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Neoriginálny obsah!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Neoriginálny obsah! Bol si zablokovaný na %d sekúnd."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Si zablokovaný! Vyprší za %d sekúnd."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "Tvoja IP je spomínaná v %s."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Priveľa odkazov; Flood detekovaný."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Priveľa citátov; Príspevok zrušený."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Priveľa medzidoskových odkazov; Príspevok zrušený."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Nevybral si nič pre odstránenie."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Nevybral si nič pre nahlásenie."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Nie je možné nahlásiť tak veľa príspevkov naraz."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Neplatné heslo…"
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Neplatný obrázok."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Neznámy formát súboru."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Maximálna veľkosť súboru: %maxsz% bajtov<br>Veľkosť Tvojho súboru: %filesz% bajtov."
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Súbor bol príliš veľký."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr "Súbor <a href=\"%s\">už existuje</a>!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr "Tento súbor <a href=\"%s\">už existuje</a> v tomto vlákne!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Budeš musieť čakať ešte %s než to odstrániš."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "XSS exploit detekcie MIME typu (IE) detekovaný; Post zrušený."
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "Nie je možné správne vložiť zadané video."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Vyzerá to, že bola zle opísaná verifikácia."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -541,19 +550,19 @@ msgstr "Môžeš naraz odbanovať iba %s užívateľov. Snažil si sa odbanovať
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Neplatné užívateľské meno a/alebo heslo."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Niesi moderátor…"
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -561,71 +570,71 @@ msgstr "Neplatné užívateľské meno a/alebo heslo. Tvoj účet mohol byť zme
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Neplatné/modifikované cookies."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Tvoj prehliadač neodovzdal vstup vtedy, kedy mal."
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "Pole %s je povinné."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "Pole %s je neplatné."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Doska %s už existuje."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Nemáš na to povolenie."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Príspevok neexistuje…"
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Stránka nebola nájdená."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "Moderátor <a href=\"?/users/%d\">už existuje</a>!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Zadaná téma neexistuje!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Neplatný bezpečnostný token! Prosím, vráť sa a skús to znova."
 
@@ -637,7 +646,7 @@ msgstr "Neplatný bezpečnostný token! Prosím, vráť sa a skús to znova."
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "UŽÍVATEĽ BOL ZA TENTO PRÍSPEVOK ZABANOVANÝ"
 
@@ -712,6 +721,9 @@ msgstr "Log moderácie"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -884,10 +896,13 @@ msgstr "Odstrániť príspevok"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Súbor"
 
@@ -906,6 +921,7 @@ msgstr "Súbor"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -913,6 +929,7 @@ msgstr "Súbor"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Heslo"
 
@@ -957,6 +974,11 @@ msgstr "Heslo"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1249,22 +1271,28 @@ msgid "Verification"
 msgstr "Verifikácia"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "Alebo adresa"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Vlož"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Vlajky"
 
@@ -1290,11 +1318,15 @@ msgstr "Vlajky"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Pripnuté"
 
@@ -1320,11 +1352,15 @@ msgstr "Pripnuté"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Zamknuté"
 
@@ -1350,21 +1386,27 @@ msgstr "Zamknuté"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "Čisté HTML"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Pre odstránenie príspevku.)"
 
@@ -1373,14 +1415,15 @@ msgid "Post search is disabled"
 msgstr "Vyhľadávanie príspevkov je vypnuté"
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Prosím, chvíľu počkaj pred ďalším vyhľadávaním."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "Príliš všeobecný dotaz."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
@@ -1388,7 +1431,7 @@ msgstr[0] "%d výsledok v"
 msgstr[1] "%d výsledky v"
 msgstr[2] "%d výsledkov v"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Žiadne výsledky."
 
@@ -1424,12 +1467,15 @@ msgstr "Žiadne výsledky."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Hľadať"
 
@@ -1456,6 +1502,7 @@ msgstr "Debug: APC"
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1632,6 +1679,11 @@ msgstr "Prispieť do noviniek"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1661,6 +1713,8 @@ msgstr "Tím"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1709,6 +1763,7 @@ msgstr "Nová poznámka"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1773,6 +1828,11 @@ msgstr "bez dôvodu"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1817,6 +1877,7 @@ msgstr "všetky dosky"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1844,6 +1905,7 @@ msgstr "sada"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1879,6 +1941,7 @@ msgstr "nikdy"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1941,6 +2004,7 @@ msgstr "Čas"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1992,6 +2056,7 @@ msgstr "Nový ban"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2076,19 +2141,19 @@ msgstr "Dôvod odvolania sa"
 msgid "There are no reports."
 msgstr "Žiadne nahlásenia"
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr "Ban neexistuje, alebo nie je pre Teba."
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr "Nie je možné sa odvolať na takto dlhý ban."
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr "Nie je možné sa znova odvolať na tento ban."
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr "Čakajúce odvolanie sa na tento ban už existuje."
 
@@ -2454,3 +2519,13 @@ msgstr "Odstrániť užívateľa"
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr "Zobraziť viac záznamov tohto užívateľa"
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""
diff --git a/inc/locale/tr_TR/LC_MESSAGES/javascript.po b/inc/locale/tr_TR/LC_MESSAGES/javascript.po
index dcd0fe57..ce5c756d 100644
--- a/inc/locale/tr_TR/LC_MESSAGES/javascript.po
+++ b/inc/locale/tr_TR/LC_MESSAGES/javascript.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 18:51+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:53+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -564,3 +564,7 @@ msgstr "Mouse üstüne gelince videolar oynasın"
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
 msgstr "Ses"
+
+#: ../../../../js/treeview.js:18
+msgid "Tree view"
+msgstr ""
diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo
index 174ee280ae3546d8a4d7c69c794497d21ff71a05..f5f1f6e99143255e5a37d4c965632a42ae3eae73 100644
GIT binary patch
delta 63
zcmcb=lJWjZ#tpa34U7yF3=FJHEVY3w1Fisn-JsO6%;L=aJYAQ>l2j`NBLhPdT>}$c
RLrVoCBP&yr&0H2&WdMm`5}*J8

delta 63
zcmcb=lJWjZ#tpa34Gb+53@xpUOtcM*3=Fse{B?s;%QA~I^Ye6F5=&C86pRcEO>_-R
Sbb;!O46IBIHgj2Al>q>YJrbh;

diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po
index 30c9cab2..e3435ab9 100644
--- a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po
@@ -1,14 +1,15 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
+# 
 # Translators:
 # Tunai <tunayuyar39@gmail.com>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-18 19:24+0200\n"
-"PO-Revision-Date: 2014-04-18 20:50+0000\n"
+"POT-Creation-Date: 2014-04-20 00:49+0200\n"
+"PO-Revision-Date: 2014-04-19 22:54+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n"
 "MIME-Version: 1.0\n"
@@ -22,6 +23,7 @@ msgstr ""
 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
+#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
 msgid "second"
 msgid_plural "seconds"
 msgstr[0] "saniye"
@@ -31,6 +33,7 @@ msgstr[0] "saniye"
 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
+#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
 msgid "minute"
 msgid_plural "minutes"
 msgstr[0] "dakika"
@@ -40,6 +43,7 @@ msgstr[0] "dakika"
 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
+#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
 msgid "hour"
 msgid_plural "hours"
 msgstr[0] "saat"
@@ -49,6 +53,7 @@ msgstr[0] "saat"
 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
+#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
 msgid "day"
 msgid_plural "days"
 msgstr[0] "gün"
@@ -58,6 +63,7 @@ msgstr[0] "gün"
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
+#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
 msgid "week"
 msgid_plural "weeks"
 msgstr[0] "hafta"
@@ -67,13 +73,14 @@ msgstr[0] "hafta"
 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
+#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
 msgid "year"
 msgid_plural "years"
 msgstr[0] "yıl"
 
 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
-#: ../../../../inc/functions.php:708
+#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
 msgid "Banned!"
 msgstr "Ban!"
 
@@ -84,6 +91,7 @@ msgstr "Ban!"
 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
+#: ../../../../inc/functions.php:1234
 msgid "Previous"
 msgstr "Geri"
 
@@ -93,7 +101,8 @@ msgstr "Geri"
 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
-#: ../../../../inc/functions.php:1234
+#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
+#: ../../../../inc/functions.php:1248
 msgid "Next"
 msgstr "İleri"
 
@@ -243,7 +252,7 @@ msgstr "Konuyu başka bir tahtaya taşı"
 #. If you want to alter the algorithm a bit. Default value is 2.
 #. (n^x where x is the number of previous mutes)
 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
-#: ../../../../inc/config.php:474
+#: ../../../../inc/config.php:474 ../../../../inc/config.php:475
 msgid "You have been muted for unoriginal content."
 msgstr "Özgün içerik koymamaktan susturuldunuz."
 
@@ -253,20 +262,20 @@ msgstr "Özgün içerik koymamaktan susturuldunuz."
 #. "Post").
 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
-#: ../../../../inc/config.php:776
+#: ../../../../inc/config.php:776 ../../../../inc/config.php:792
 msgid "New Topic"
 msgstr "Yeni Konu"
 
 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
-#: ../../../../inc/config.php:777
+#: ../../../../inc/config.php:777 ../../../../inc/config.php:793
 msgid "New Reply"
 msgstr "Cevapla"
 
 #. Additional lines added to the footer of all pages.
 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
-#: ../../../../inc/config.php:788
+#: ../../../../inc/config.php:788 ../../../../inc/config.php:804
 msgid ""
 "All trademarks, copyrights, comments, and images on this page are owned by "
 "and are the responsibility of their respective parties."
@@ -290,237 +299,237 @@ msgstr "Katılmadan önce biraz daha dolaşın bakalım."
 #. Error messages
 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
-#: ../../../../inc/config.php:967
+#: ../../../../inc/config.php:967 ../../../../inc/config.php:983
 msgid "You look like a bot."
 msgstr "Bot gibi duruyorsunuz burdan."
 
 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
-#: ../../../../inc/config.php:968
+#: ../../../../inc/config.php:968 ../../../../inc/config.php:984
 msgid "Your browser sent an invalid or no HTTP referer."
 msgstr "Tarayıcınız geçersiz bir HTTP referansı yolladı."
 
 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
-#: ../../../../inc/config.php:969
+#: ../../../../inc/config.php:969 ../../../../inc/config.php:985
 #, php-format
 msgid "The %s field was too long."
 msgstr "%s çok uzun."
 
 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
-#: ../../../../inc/config.php:970
+#: ../../../../inc/config.php:970 ../../../../inc/config.php:986
 msgid "The body was too long."
 msgstr "İçerik çok uzun."
 
 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
-#: ../../../../inc/config.php:971
+#: ../../../../inc/config.php:971 ../../../../inc/config.php:987
 msgid "The body was too short or empty."
 msgstr "İçerik çok kısa ya da bış"
 
 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
-#: ../../../../inc/config.php:972
+#: ../../../../inc/config.php:972 ../../../../inc/config.php:988
 msgid "You must upload an image."
 msgstr "Bir resim yüklemelisiniz."
 
 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
-#: ../../../../inc/config.php:973
+#: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
 msgstr "Sunucumuz yüklemenizi kaldıramadı."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
-#: ../../../../inc/config.php:974
+#: ../../../../inc/config.php:974 ../../../../inc/config.php:990
 msgid "Unsupported image format."
 msgstr "Desteklenmeyen resim formatı."
 
 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
-#: ../../../../inc/config.php:975
+#: ../../../../inc/config.php:975 ../../../../inc/config.php:991
 msgid "Invalid board!"
 msgstr "Geçersiz tahta!"
 
 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
-#: ../../../../inc/config.php:976
+#: ../../../../inc/config.php:976 ../../../../inc/config.php:992
 msgid "Thread specified does not exist."
 msgstr "Böyle bir konu yok."
 
 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
-#: ../../../../inc/config.php:977
+#: ../../../../inc/config.php:977 ../../../../inc/config.php:993
 msgid "Thread locked. You may not reply at this time."
 msgstr "Konu kilitlendi. Şu an cevaplayamassınız."
 
 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
-#: ../../../../inc/config.php:978
+#: ../../../../inc/config.php:978 ../../../../inc/config.php:994
 msgid "Thread has reached its maximum reply limit."
 msgstr "Konu azami cevap sayısına ulaştı."
 
 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
-#: ../../../../inc/config.php:979
+#: ../../../../inc/config.php:979 ../../../../inc/config.php:995
 msgid "Thread has reached its maximum image limit."
 msgstr "Konu azami resim limitine ulaştı."
 
 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
-#: ../../../../inc/config.php:980
+#: ../../../../inc/config.php:980 ../../../../inc/config.php:996
 msgid "You didn't make a post."
 msgstr "Bi'şey yapmadınız."
 
 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
-#: ../../../../inc/config.php:981
+#: ../../../../inc/config.php:981 ../../../../inc/config.php:997
 msgid "Flood detected; Post discarded."
 msgstr "Floodcu pezevenk."
 
 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
-#: ../../../../inc/config.php:982
+#: ../../../../inc/config.php:982 ../../../../inc/config.php:998
 msgid "Your request looks automated; Post discarded."
 msgstr "Robot gibi görünüyorsunuz."
 
 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
-#: ../../../../inc/config.php:983
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:999
 msgid "Unoriginal content!"
 msgstr "Özgün olmayan içerik!"
 
 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
-#: ../../../../inc/config.php:984
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
 #, php-format
 msgid "Unoriginal content! You have been muted for %d seconds."
 msgstr "Özgün olmayan içerik! %d saniye susturuldunuz."
 
 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
-#: ../../../../inc/config.php:985
+#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
 #, php-format
 msgid "You are muted! Expires in %d seconds."
 msgstr "Susturuldunuz! %d saniyeye geçer."
 
 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
-#: ../../../../inc/config.php:986
+#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
 #, php-format
 msgid "Your IP address is listed in %s."
 msgstr "IP adresiniz %s listesinde."
 
 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
-#: ../../../../inc/config.php:987
+#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
 msgid "Too many links; flood detected."
 msgstr "Çok fazla link var, flood gibi."
 
 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
-#: ../../../../inc/config.php:988
+#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
 msgid "Too many cites; post discarded."
 msgstr "Çok fazla alıntı var."
 
 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
-#: ../../../../inc/config.php:989
+#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
 msgid "Too many cross-board links; post discarded."
 msgstr "Çok fazla çapraz tahta linki."
 
 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
-#: ../../../../inc/config.php:990
+#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
 msgid "You didn't select anything to delete."
 msgstr "Silmek için bir şey seçmediniz."
 
 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
-#: ../../../../inc/config.php:991
+#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
 msgid "You didn't select anything to report."
 msgstr "Şikayet edecek bir şey seçmediniz."
 
 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
-#: ../../../../inc/config.php:992
+#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
 msgid "You can't report that many posts at once."
 msgstr "Bu kadar çok girdiyi bir kerede şikayet edemezsiniz."
 
 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
-#: ../../../../inc/config.php:993
+#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
 msgid "Wrong password…"
 msgstr "Yanlış şifre..."
 
 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
-#: ../../../../inc/config.php:994
+#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
 msgid "Invalid image."
 msgstr "Geçersiz resim."
 
 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
-#: ../../../../inc/config.php:995
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
 msgid "Unknown file extension."
 msgstr "Bilinmeyen dosya uzantısı."
 
 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
-#: ../../../../inc/config.php:996
+#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
 msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
 msgstr "Azami dosya boyutu: %maxsz% byte <br> Dosyanızın boyutu %filesz% byte"
 
 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
-#: ../../../../inc/config.php:997
+#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
 msgid "The file was too big."
 msgstr "Dosyanız çok büyük."
 
 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
-#: ../../../../inc/config.php:998
+#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a>!"
 msgstr " <a href=\"%s\"> Bu dosya </a> zaten var.!"
 
 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
 #, php-format
 msgid "That file <a href=\"%s\">already exists</a> in this thread!"
 msgstr " <a href=\"%s\">Bu dosya </a> bu konuda zaten var!"
 
 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
-#: ../../../../inc/config.php:1000
+#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
 #, php-format
 msgid "You'll have to wait another %s before deleting that."
 msgstr "Silmeden önce %s kadar beklemelisiniz."
 
 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
-#: ../../../../inc/config.php:1001
+#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
 msgid "MIME type detection XSS exploit (IE) detected; post discarded."
 msgstr "FATAL ÖRÖR"
 
 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
-#: ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
 msgid "Couldn't make sense of the URL of the video you tried to embed."
 msgstr "Gömmeye çalıştığınız video linkinden bişey anlayamadık."
 
 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
-#: ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
 msgid "You seem to have mistyped the verification."
 msgstr "Doğrulamayı yanlış girmiş gibisin."
 
 #. Moderator errors
 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
 #, php-format
 msgid ""
 "You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -529,19 +538,19 @@ msgstr "Bir seferde sadece %s kullanıcının banını kaldırabilirsiniz. Siz %
 
 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
 msgid "Invalid username and/or password."
 msgstr "Geçersiz kullanıcı adı ve/veya şifre."
 
 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
-#: ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
 msgid "You are not a mod…"
 msgstr "Mod değilsiniz ki..."
 
 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
-#: ../../../../inc/config.php:1009
+#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
 msgid ""
 "Invalid username and/or password. Your user may have been deleted or "
 "changed."
@@ -549,71 +558,71 @@ msgstr "Geçersiz kullanıcı adı ve/veya şifre. Kullanıcı hesabınız silin
 
 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../inc/config.php:1010
+#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
 msgid "Invalid/malformed cookies."
 msgstr "Geçersiz ya da bayatlamış kurabiye."
 
 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
-#: ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
 msgid "Your browser didn't submit an input when it should have."
 msgstr "Tarayıcınız zamanında göndermesi gerekeni göndermedi"
 
 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
-#: ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
 #, php-format
 msgid "The %s field is required."
 msgstr "%s gerekli."
 
 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
-#: ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
 #, php-format
 msgid "The %s field was invalid."
 msgstr "%s geçersiz."
 
 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
 msgstr "Zaten %s böyle bir tahta var."
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
-#: ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
 msgid "You don't have permission to do that."
 msgstr "Bunu yapmak için izniniz yok."
 
 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
-#: ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
 msgid "That post doesn't exist…"
 msgstr "Böyle bir girdi yok..."
 
 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
 msgstr "Sayfa bulunamadı."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
-#: ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
 #, php-format
 msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
 msgstr "<a href=\"?/users/%d\">Böyle bir mod</a>! zaten var!"
 
 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
 msgstr "Böyle bir tema yok."
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
-#: ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
 msgid "Invalid security token! Please go back and try again."
 msgstr "Güvenlik kodu yanlış! Lütfen tekrar deneyin."
 
@@ -625,7 +634,7 @@ msgstr "Güvenlik kodu yanlış! Lütfen tekrar deneyin."
 #. "permanently" (with %LENGTH% being the uppercase equivalent).
 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
-#: ../../../../inc/config.php:1187
+#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
 msgid "USER WAS BANNED FOR THIS POST"
 msgstr "KULLANICI BU GİRDİ SEBEBİYLE BANLANDI"
 
@@ -700,6 +709,9 @@ msgstr "Moderasyon logları"
 #. line 18
 #. line 104
 #. line 20
+#. line 104
+#. line 20
+#. line 18
 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@@ -872,10 +884,13 @@ msgstr "Girdiyi sil"
 #. line 3
 #. line 84
 #. line 3
+#. line 97
+#. line 3
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
 msgid "File"
 msgstr "Dosya"
 
@@ -894,6 +909,7 @@ msgstr "Dosya"
 #. line 14
 #. line 131
 #. line 14
+#. line 144
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@@ -901,6 +917,7 @@ msgstr "Dosya"
 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
 msgid "Password"
 msgstr "Şifre"
 
@@ -945,6 +962,11 @@ msgstr "Şifre"
 #. line 8
 #. line 108
 #. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@@ -1229,22 +1251,28 @@ msgid "Verification"
 msgstr "Onaylama"
 
 #. line 90
+#. line 103
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
 msgid "Or URL"
 msgstr "ya da Link"
 
 #. line 100
+#. line 113
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
 msgstr "Göm"
 
 #. line 112
 #. line 111
+#. line 124
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
 msgstr "Bayrak"
 
@@ -1270,11 +1298,15 @@ msgstr "Bayrak"
 #. line 116
 #. line 115
 #. line 116
+#. line 128
+#. line 129
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
 msgid "Sticky"
 msgstr "Yapışkan"
 
@@ -1300,11 +1332,15 @@ msgstr "Yapışkan"
 #. line 120
 #. line 119
 #. line 120
+#. line 132
+#. line 133
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
 msgstr "Kilitli"
 
@@ -1330,21 +1366,27 @@ msgstr "Kilitli"
 #. line 124
 #. line 123
 #. line 124
+#. line 136
+#. line 137
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
 msgid "Raw HTML"
 msgstr "Sadece HTML"
 
 #. line 137
 #. line 136
 #. line 141
+#. line 154
 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
 msgid "(For file deletion.)"
 msgstr "(Dosya silmek için.)"
 
@@ -1353,20 +1395,21 @@ msgid "Post search is disabled"
 msgstr "Arama kullanılabilir değil."
 
 #: ../../../../search.php:25 ../../../../search.php:31
+#: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
 msgstr "Arama yapmadan önce biraz bekleyin."
 
-#: ../../../../search.php:131
+#: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
 msgstr "Çok geniş arama."
 
-#: ../../../../search.php:152
+#: ../../../../search.php:152 ../../../../search.php:156
 #, php-format
 msgid "%d result in"
 msgid_plural "%d results in"
 msgstr[0] "%d sonuç"
 
-#: ../../../../search.php:163
+#: ../../../../search.php:163 ../../../../search.php:167
 msgid "No results."
 msgstr "Sonuç yok."
 
@@ -1402,12 +1445,15 @@ msgstr "Sonuç yok."
 #. line 16
 #. line 2
 #. line 13
+#. line 115
+#. line 16
 #: ../../../../search.php:168
 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
+#: ../../../../search.php:172
 msgid "Search"
 msgstr "Arama"
 
@@ -1434,6 +1480,7 @@ msgstr "Debug: APC"
 
 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1037
 msgid ""
 "Your code contained PHP syntax errors. Please go back and correct them. PHP "
 "says: "
@@ -1610,6 +1657,11 @@ msgstr "Haber gönder"
 #. line 63
 #. line 152
 #. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@@ -1639,6 +1691,8 @@ msgstr "Yönetim"
 #. line 18
 #. line 25
 #. line 68
+#. line 25
+#. line 68
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@@ -1687,6 +1741,7 @@ msgstr "Yeni not"
 #. line 94
 #. line 7
 #. line 94
+#. line 7
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
 msgid "Status"
@@ -1751,6 +1806,11 @@ msgstr "sebepsizce"
 #. line 118
 #. line 184
 #. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@@ -1795,6 +1855,7 @@ msgstr "tüm tahtalar"
 #. line 43
 #. line 50
 #. line 128
+#. line 43
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@@ -1822,6 +1883,7 @@ msgstr "Ayarla"
 #. line 47
 #. line 52
 #. line 132
+#. line 47
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@@ -1857,6 +1919,7 @@ msgstr "hiç bir zaman"
 #. line 57
 #. line 53
 #. line 142
+#. line 57
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@@ -1919,6 +1982,7 @@ msgstr "Zaman"
 #. line 89
 #. line 137
 #. line 185
+#. line 89
 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@@ -1970,6 +2034,7 @@ msgstr "Yeni Ban"
 #. line 5
 #. line 2
 #. line 5
+#. line 2
 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
 msgid "Phrase:"
@@ -2054,19 +2119,19 @@ msgstr "Müracaat sebebi"
 msgid "There are no reports."
 msgstr "Şikayet yok."
 
-#: ../../../../post.php:802 ../../../../post.php:811
+#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
 msgid "That ban doesn't exist or is not for you."
 msgstr "Böyle bir ban yok, ya da sizin için değil"
 
-#: ../../../../post.php:806 ../../../../post.php:815
+#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
 msgid "You cannot appeal a ban of this length."
 msgstr "Bu kadar uzun ban için müracaat yapamassınız"
 
-#: ../../../../post.php:813 ../../../../post.php:822
+#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
 msgid "You cannot appeal this ban again."
 msgstr "Tekrar müracaat edemezsiniz."
 
-#: ../../../../post.php:818 ../../../../post.php:827
+#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
 msgid "There is already a pending appeal for this ban."
 msgstr "Zaten bu ban için bir müracaat var."
 
@@ -2432,3 +2497,13 @@ msgstr "Kullanıcıyı sil"
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
 msgstr "Bu kullanıcı için daha fazla log görüntüle"
+
+#. line 84
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
+msgid "Flag"
+msgstr ""
+
+#. line 87
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
+msgid "None"
+msgstr ""

From dc93b06d9061ef88d9c0d796a5aa8e0d44c62c70 Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sun, 20 Apr 2014 02:27:54 +0200
Subject: [PATCH 06/14] update copyright footers in themes

---
 templates/themes/basic/index.html     | 7 ++++++-
 templates/themes/catalog/catalog.html | 7 ++++++-
 templates/themes/categories/news.html | 7 ++++++-
 templates/themes/frameset/news.html   | 7 ++++++-
 templates/themes/recent/recent.html   | 7 ++++++-
 5 files changed, 30 insertions(+), 5 deletions(-)

diff --git a/templates/themes/basic/index.html b/templates/themes/basic/index.html
index 89022420..6425e0c1 100644
--- a/templates/themes/basic/index.html
+++ b/templates/themes/basic/index.html
@@ -32,7 +32,12 @@
 	</div>
 	
 	<hr/>
-	<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p>
+        <footer>
+                <p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> + 
+                        <a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
+                <br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group    
+                <br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
+        </footer>
 </body>
 </html>
 {% endfilter %}
diff --git a/templates/themes/catalog/catalog.html b/templates/themes/catalog/catalog.html
index d6b76eff..3bfd3e23 100644
--- a/templates/themes/catalog/catalog.html
+++ b/templates/themes/catalog/catalog.html
@@ -31,7 +31,12 @@
 	</ul>
 	
 	<hr/>
-	<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2013 Tinyboard Development Group</p>
+	<footer>
+		<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> + 
+			<a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
+		<br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group    
+		<br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
+	</footer>
         <script type="text/javascript">
                 ready();
         </script>
diff --git a/templates/themes/categories/news.html b/templates/themes/categories/news.html
index b3bea2b1..e75f9dea 100644
--- a/templates/themes/categories/news.html
+++ b/templates/themes/categories/news.html
@@ -31,7 +31,12 @@
 		{% endif %}
 	</div>
 	
-	<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p>
+        <footer>
+                <p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> + 
+                        <a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
+                <br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group    
+                <br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
+        </footer>
 </body>
 </html>
 {% endfilter %}
diff --git a/templates/themes/frameset/news.html b/templates/themes/frameset/news.html
index 2af5e10d..17290305 100644
--- a/templates/themes/frameset/news.html
+++ b/templates/themes/frameset/news.html
@@ -30,7 +30,12 @@
 		{% endif %}
 	</div>
 	
-	<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p>
+        <footer>
+                <p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> + 
+                        <a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
+                <br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group    
+                <br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
+        </footer>
 </body>
 </html>
 {% endfilter %}
diff --git a/templates/themes/recent/recent.html b/templates/themes/recent/recent.html
index 844b3c56..b807515b 100644
--- a/templates/themes/recent/recent.html
+++ b/templates/themes/recent/recent.html
@@ -52,7 +52,12 @@
 	</div>
 	
 	<hr/>
-	<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p>
+	<footer>
+		<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> + 
+			<a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
+		<br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group    
+		<br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
+	</footer>
 </body>
 </html>
 {% endfilter %}

From 34cc94738e15d582295cac25b1fbc8aa51322975 Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sun, 20 Apr 2014 02:49:25 +0200
Subject: [PATCH 07/14] tag for 4.4.98 fixes #47

---
 install.php | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/install.php b/install.php
index 5a4a9ef8..16ef9fcb 100644
--- a/install.php
+++ b/install.php
@@ -1,7 +1,7 @@
 <?php
 
 // Installation/upgrade file	
-define('VERSION', '4.4.98-pre');
+define('VERSION', '4.4.98');
 
 require 'inc/functions.php';
 
@@ -518,6 +518,9 @@ if (file_exists($config['has_installed'])) {
 				
 				break;
 			}
+		case '4.4.98-pre':
+			if (!$twig) load_twig();
+			$twig->clearCacheFiles();
 		case false:
 			// TODO: enhance Tinyboard -> vichan upgrade path.
 			query("CREATE TABLE IF NOT EXISTS ``search_queries`` (  `ip` varchar(39) NOT NULL,  `time` int(11) NOT NULL,  `query` text NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8;") or error(db_error());

From be122f2a15e8ec5404a8b3af9154ff6907284e3f Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sun, 20 Apr 2014 21:29:15 +0200
Subject: [PATCH 08/14] update locales hu_HU, pl_PL and sk_SK from transifex

---
 inc/locale/hu_HU/LC_MESSAGES/javascript.js |   2 +-
 inc/locale/hu_HU/LC_MESSAGES/javascript.po |  31 +++++-----
 inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo  | Bin 23940 -> 24079 bytes
 inc/locale/hu_HU/LC_MESSAGES/tinyboard.po  |  64 ++++++++++-----------
 inc/locale/pl_PL/LC_MESSAGES/javascript.js |   2 +-
 inc/locale/pl_PL/LC_MESSAGES/javascript.po |   4 +-
 inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo  | Bin 23664 -> 23717 bytes
 inc/locale/pl_PL/LC_MESSAGES/tinyboard.po  |   6 +-
 inc/locale/sk_SK/LC_MESSAGES/javascript.js |   2 +-
 inc/locale/sk_SK/LC_MESSAGES/javascript.po |   6 +-
 inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo  | Bin 23787 -> 23847 bytes
 inc/locale/sk_SK/LC_MESSAGES/tinyboard.po  |   8 +--
 12 files changed, 63 insertions(+), 62 deletions(-)

diff --git a/inc/locale/hu_HU/LC_MESSAGES/javascript.js b/inc/locale/hu_HU/LC_MESSAGES/javascript.js
index 42a11587..2baee865 100644
--- a/inc/locale/hu_HU/LC_MESSAGES/javascript.js
+++ b/inc/locale/hu_HU/LC_MESSAGES/javascript.js
@@ -1 +1 @@
-l10n = {"Style: ":"St\u00edlus:","File":"F\u00e1jl","hide":"elrejt","show":"mutat","Show locked threads":"Mutassa a lez\u00e1rt sz\u00e1lakat","Hide locked threads":"Rejtse el a lez\u00e1rt sz\u00e1lakat","URL":"URL","Select":"Kiv\u00e1laszt","Remote":"T\u00e1vir\u00e1ny\u00edt","Embed":"Be\u00e1gyaz","Oekaki":"Rajzod","hidden":"rejtett","Show images":"K\u00e9pek mutat\u00e1sa","Hide images":"K\u00e9pek elrejt\u00e9se","Password":"Jelsz\u00f3","Delete file only":"Csak a f\u00e1jlt t\u00f6r\u00f6lje","Delete":"T\u00f6rl\u00e9s","Reason":"Indok","Report":"Jelent","Click reply to view.":"Kattints a v\u00e1laszra a megjelen\u00edt\u00e9shez","Click to expand":"Kattints a nagyobb m\u00e9rethez","Hide expanded replies":"Rejtse el a nagy m\u00e9ret\u0171 v\u00e1laszokat","Brush size":"Ecsetm\u00e9ret","Set text":"Sz\u00f6veg megad\u00e1sa","Clear":"T\u00f6r\u00f6l","Save":"Ment\u00e9s","Load":"Bet\u00f6lt\u00e9s","Toggle eraser":"Rad\u00edr \u00e1tkapcsol\u00e1sa","Get color":"Sz\u00ednt kiv\u00e1laszt","Fill":"KIt\u00f6lt","Use oekaki instead of file?":"Szeretn\u00e9d a rajzodat haszn\u00e1lni f\u00e1jl helyett?","Edit in oekaki":"A rajzod szerkeszt\u00e9se","Enter some text":"\u00cdrj be sz\u00f6veget","Enter font or leave empty":"Adj meg bet\u0171t\u00edpust, vagy hagyd \u00fcresen","Forced anonymity":"Er\u0151ltetett anonimit\u00e1s","enabled":"enged\u00e9lyezett","disabled":"tiltott","Sun":"Va","Mon":"H\u00e9","Tue":"Ke","Wed":"Sze","Thu":"Cs\u00fc","Fri":"P\u00e9","Sat":"Szo","Catalog":"Katal\u00f3gus","Submit":"Elk\u00fcld","Quick reply":"Gyors v\u00e1lasz","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Hozz\u00e1sz\u00f3l\u00e1s m\u00f3dja: V\u00e1lasz a <small>&gt;&gt;{0}<\/small>","Return":"Vissza","Expand all images":"\u00d6sszes k\u00e9p nagy m\u00e9ret\u0171re","Hello!":"Szia!","{0} users":"(0) felhaszn\u00e1l\u00f3","(hide threads from this board)":"(sz\u00e1lak elrejt\u00e9se err\u0151l a t\u00e1bl\u00e1r\u00f3l)","(show threads from this board)":"(sz\u00e1lak mutat\u00e1sa err\u0151l a t\u00e1bl\u00e1r\u00f3l)","No more threads to display":"Nincs t\u00f6bb megjelen\u00edtend\u0151 sz\u00e1l","Loading...":"Bet\u00f6lt\u00e9s...","Save as original filename":"Ment\u00e9s eredeti f\u00e1jln\u00e9vvel","Reported post(s).":"Jelentett hozz\u00e1sz\u00f3l\u00e1s(ok).","An unknown error occured!":"Ismeretlen hiba t\u00f6rt\u00e9nt!","Something went wrong... An unknown error occured!":"V\u00e9g\u00e9rv\u00e9nyesen...  Valami elveszett!","Working...":"Feldolgoz\u00e1s...","Posting... (#%)":"K\u00fcld\u00e9s... (#%)","Posted...":"Elk\u00fcldve...","An unknown error occured when posting!":"Ismeretlen hiba t\u00f6rt\u00e9nt k\u00fcld\u00e9s k\u00f6zben!","Posting...":"K\u00fcld\u00e9s...","Upload URL":"URL Felt\u00f6lt\u00e9se","Spoiler Image":"Spoiler K\u00e9p","Comment":"Komment","Quick Reply":"Gyors v\u00e1lasz","Stop watching this thread":"Sz\u00e1l figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this thread":"Figyelje ezt a sz\u00e1lat","Unpin this board":"T\u00e1bla kiemel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Pin this board":"T\u00e1bla kiemel\u00e9se","Stop watching this board":"T\u00e1bla figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this board":"Figyelje ezt a t\u00e1bl\u00e1t","Click on any image on this site to load it into oekaki applet":"Kattints a k\u00edv\u00e1nt k\u00e9pre ezen az oldalon a rajzprogramba bet\u00f6lt\u00e9shez","Sunday":"Vas\u00e1rnap","Monday":"H\u00e9tf\u0151","Tuesday":"Kedd","Wednesday":"Szerda","Thursday":"Cs\u00fct\u00f6rt\u00f6k","Friday":"P\u00e9ntek","Saturday":"Szombat","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"M\u00e1rcius","April":"\u00c1prilis","May":"M\u00e1jus","June":"J\u00fanius","July":"J\u00falius","August":"Augusztus","September":"Szeptember","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"M\u00e1r","Apr":"\u00c1pr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Szep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"D\u00e9lel\u0151tt","PM":"D\u00e9lut\u00e1n","am":"d\u00e9lel\u0151tt","pm":"d\u00e9lut\u00e1n","Your browser does not support HTML5 video.":"A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a HTML5 vide\u00f3t.","[play once]":"[lej\u00e1tsz\u00e1s egyszer]","[loop]":"[ism\u00e9tl\u00e9s]","WebM Settings":"WebM be\u00e1ll\u00edt\u00e1sok","Expand videos inline":"Vide\u00f3k kinagy\u00edt\u00e1sa bel\u00fcl","Play videos on hover":"Vide\u00f3k lebeg\u0151 lej\u00e1tsz\u00e1sa ","Default volume":"Alap hanger\u0151"};
\ No newline at end of file
+l10n = {"Style: ":"St\u00edlus:","File":"F\u00e1jl","hide":"elrejt","show":"mutat","Show locked threads":"Mutassa a lez\u00e1rt sz\u00e1lakat","Hide locked threads":"Rejtse el a lez\u00e1rt sz\u00e1lakat","URL":"URL","Select":"Kiv\u00e1laszt","Remote":"K\u00fcls\u0151 link","Embed":"Be\u00e1gyaz","Oekaki":"Saj\u00e1t rajz","hidden":"rejtett","Show images":"Mutassa a k\u00e9peket","Hide images":"Rejtse el a k\u00e9peket","Password":"Jelsz\u00f3","Delete file only":"Csak a f\u00e1jlt t\u00f6r\u00f6lje","Delete":"T\u00f6rl\u00e9s","Reason":"Ok","Report":"Jelent","Click reply to view.":"Kattints a v\u00e1laszra a megjelen\u00edt\u00e9shez","Click to expand":"Kattints a nagyobb m\u00e9rethez","Hide expanded replies":"Rejtse el a nagy m\u00e9ret\u0171 v\u00e1laszokat","Brush size":"Ecsetm\u00e9ret","Set text":"Sz\u00f6veg megad\u00e1sa","Clear":"T\u00f6r\u00f6l","Save":"Ment\u00e9s","Load":"Bet\u00f6lt\u00e9s","Toggle eraser":"Rad\u00edrt kapcsol","Get color":"Sz\u00ednt kiv\u00e1laszt","Fill":"KIt\u00f6lt","Use oekaki instead of file?":"Szeretn\u00e9d a rajzodat haszn\u00e1lni f\u00e1jl helyett?","Edit in oekaki":"A rajzod szerkeszt\u00e9se","Enter some text":"\u00cdrj be sz\u00f6veget","Enter font or leave empty":"Adj meg bet\u0171t\u00edpust, vagy hagyd \u00fcresen","Forced anonymity":"Er\u0151ltetett anonimit\u00e1s","enabled":"enged\u00e9lyezett","disabled":"tiltott","Sun":"Va","Mon":"H\u00e9","Tue":"Ke","Wed":"Sze","Thu":"Cs\u00fc","Fri":"P\u00e9","Sat":"Szo","Catalog":"Katal\u00f3gus","Submit":"Elk\u00fcld","Quick reply":"Gyors v\u00e1lasz","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Hozz\u00e1sz\u00f3l\u00e1s m\u00f3dja: V\u00e1lasz erre: <small>&gt;&gt;{0}<\/small>","Return":"Vissza","Expand all images":"\u00d6sszes k\u00e9p nagy m\u00e9ret\u0171re","Hello!":"Szia!","{0} users":"(0) felhaszn\u00e1l\u00f3","(hide threads from this board)":"(sz\u00e1lak elrejt\u00e9se err\u0151l a t\u00e1bl\u00e1r\u00f3l)","(show threads from this board)":"(sz\u00e1lak mutat\u00e1sa err\u0151l a t\u00e1bl\u00e1r\u00f3l)","No more threads to display":"Nincs t\u00f6bb megjelen\u00edtend\u0151 sz\u00e1l","Loading...":"Bet\u00f6lt\u00e9s...","Save as original filename":"Ment\u00e9s eredeti f\u00e1jln\u00e9vvel","Reported post(s).":"Jelentett hozz\u00e1sz\u00f3l\u00e1s(ok).","An unknown error occured!":"Ismeretlen hiba t\u00f6rt\u00e9nt!","Something went wrong... An unknown error occured!":"V\u00e9g\u00e9rv\u00e9nyesen...  Valami elveszett!","Working...":"Feldolgoz\u00e1s...","Posting... (#%)":"K\u00fcld\u00e9s... (#%)","Posted...":"Elk\u00fcldve...","An unknown error occured when posting!":"Ismeretlen hiba t\u00f6rt\u00e9nt k\u00fcld\u00e9s k\u00f6zben!","Posting...":"K\u00fcld\u00e9s...","Upload URL":"URL Felt\u00f6lt\u00e9se","Spoiler Image":"Spoiler K\u00e9p","Comment":"Hozz\u00e1sz\u00f3l\u00e1s","Quick Reply":"Gyors v\u00e1lasz","Stop watching this thread":"Sz\u00e1l figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this thread":"Figyelje ezt a sz\u00e1lat","Unpin this board":"T\u00e1bla kiemel\u00e9s megsz\u00fcntet\u00e9se","Pin this board":"Emelje ki a t\u00e1bl\u00e1t","Stop watching this board":"T\u00e1bla figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this board":"Figyelje ezt a t\u00e1bl\u00e1t","Click on any image on this site to load it into oekaki applet":"Kattints a k\u00edv\u00e1nt k\u00e9pre ezen az oldalon a rajzprogramba bet\u00f6lt\u00e9shez","Sunday":"Vas\u00e1rnap","Monday":"H\u00e9tf\u0151","Tuesday":"Kedd","Wednesday":"Szerda","Thursday":"Cs\u00fct\u00f6rt\u00f6k","Friday":"P\u00e9ntek","Saturday":"Szombat","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"M\u00e1rcius","April":"\u00c1prilis","May":"M\u00e1jus","June":"J\u00fanius","July":"J\u00falius","August":"Augusztus","September":"Szeptember","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"M\u00e1r","Apr":"\u00c1pr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Szep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"D\u00e9lel\u0151tt","PM":"D\u00e9lut\u00e1n","am":"d\u00e9lel\u0151tt","pm":"d\u00e9lut\u00e1n","Your browser does not support HTML5 video.":"A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a HTML5 vide\u00f3t.","[play once]":"[lej\u00e1tsz\u00e1s egyszer]","[loop]":"[ism\u00e9tl\u00e9s]","WebM Settings":"WebM be\u00e1ll\u00edt\u00e1sok","Expand videos inline":"Vide\u00f3k kinagy\u00edt\u00e1sa sz\u00e1lon bel\u00fcl","Play videos on hover":"Vide\u00f3k lej\u00e1tsz\u00e1sa ha az eg\u00e9rmutat\u00f3 f\u00f6l\u00e9j\u00fck \u00e9r","Default volume":"Alap hanger\u0151","Tree view":"Fa n\u00e9zet"};
\ No newline at end of file
diff --git a/inc/locale/hu_HU/LC_MESSAGES/javascript.po b/inc/locale/hu_HU/LC_MESSAGES/javascript.po
index 331dca68..7b1bba38 100644
--- a/inc/locale/hu_HU/LC_MESSAGES/javascript.po
+++ b/inc/locale/hu_HU/LC_MESSAGES/javascript.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 # limbobarrage <ijynyjdl@grr.la>, 2014
+# cicus <mercurio@index.hu>, 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-20 00:49+0200\n"
-"PO-Revision-Date: 2014-04-19 22:53+0000\n"
-"Last-Translator: czaks <marcin@6irc.net>\n"
+"PO-Revision-Date: 2014-04-20 15:00+0000\n"
+"Last-Translator: cicus <mercurio@index.hu>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -65,7 +66,7 @@ msgstr "Kiválaszt"
 
 #: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63
 msgid "Remote"
-msgstr "Távirányít"
+msgstr "Külső link"
 
 #: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66
 msgid "Embed"
@@ -73,7 +74,7 @@ msgstr "Beágyaz"
 
 #: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69
 msgid "Oekaki"
-msgstr "Rajzod"
+msgstr "Saját rajz"
 
 #: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42
 msgid "hidden"
@@ -82,12 +83,12 @@ msgstr "rejtett"
 #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70
 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71
 msgid "Show images"
-msgstr "Képek mutatása"
+msgstr "Mutassa a képeket"
 
 #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70
 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71
 msgid "Hide images"
-msgstr "Képek elrejtése"
+msgstr "Rejtse el a képeket"
 
 #: ../../../../js/quick-post-controls.js:27
 #: ../../../../js/quick-post-controls.js:29
@@ -107,7 +108,7 @@ msgstr "Törlés"
 #: ../../../../js/quick-post-controls.js:35
 #: ../../../../js/quick-post-controls.js:37
 msgid "Reason"
-msgstr "Indok"
+msgstr "Ok"
 
 #: ../../../../js/quick-post-controls.js:37
 #: ../../../../js/quick-post-controls.js:39
@@ -148,7 +149,7 @@ msgstr "Betöltés"
 
 #: ../../../../js/oekaki.js:11
 msgid "Toggle eraser"
-msgstr "Radír átkapcsolása"
+msgstr "Radírt kapcsol"
 
 #: ../../../../js/oekaki.js:11
 msgid "Get color"
@@ -249,7 +250,7 @@ msgstr "Gyors válasz"
 #: ../../../../js/quick-reply-old.js:35
 #, python-brace-format
 msgid "Posting mode: Replying to <small>&gt;&gt;{0}</small>"
-msgstr "Hozzászólás módja: Válasz a <small>&gt;&gt;{0}</small>"
+msgstr "Hozzászólás módja: Válasz erre: <small>&gt;&gt;{0}</small>"
 
 #: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33
 #: ../../../../js/quick-reply-old.js:35
@@ -345,7 +346,7 @@ msgstr "Spoiler Kép"
 #: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278
 #: ../../../../js/quick-reply.js:279
 msgid "Comment"
-msgstr "Komment"
+msgstr "Hozzászólás"
 
 #: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406
 #: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407
@@ -371,7 +372,7 @@ msgstr "Figyelje ezt a szálat"
 #: ../../../../js/watch.js:341 ../../../../js/watch.js:342
 #: ../../../../js/watch.js:350
 msgid "Unpin this board"
-msgstr "Tábla kiemelésének megszüntetése"
+msgstr "Tábla kiemelés megszüntetése"
 
 #: ../../../../js/watch.js:260 ../../../../js/watch.js:261
 #: ../../../../js/watch.js:269 ../../../../js/watch.js:299
@@ -379,7 +380,7 @@ msgstr "Tábla kiemelésének megszüntetése"
 #: ../../../../js/watch.js:341 ../../../../js/watch.js:342
 #: ../../../../js/watch.js:350
 msgid "Pin this board"
-msgstr "Tábla kiemelése"
+msgstr "Emelje ki a táblát"
 
 #: ../../../../js/watch.js:262 ../../../../js/watch.js:267
 #: ../../../../js/watch.js:268 ../../../../js/watch.js:301
@@ -555,11 +556,11 @@ msgstr "WebM beállítások"
 
 #: ../../../../js/webm-settings.js:44
 msgid "Expand videos inline"
-msgstr "Videók kinagyítása belül"
+msgstr "Videók kinagyítása szálon belül"
 
 #: ../../../../js/webm-settings.js:45
 msgid "Play videos on hover"
-msgstr "Videók lebegő lejátszása "
+msgstr "Videók lejátszása ha az egérmutató föléjük ér"
 
 #: ../../../../js/webm-settings.js:46
 msgid "Default volume"
@@ -567,4 +568,4 @@ msgstr "Alap hangerő"
 
 #: ../../../../js/treeview.js:18
 msgid "Tree view"
-msgstr ""
+msgstr "Fa nézet"
diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo
index 061268e3c2ca5a7c323425b82d904beead6d398d..73c3276abdc9e328d63692168ff85b72e1359e57 100644
GIT binary patch
delta 7358
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
O^|!lRh5mjw&iF6tfsV=m

delta 7234
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

diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
index 916c7468..36664917 100644
--- a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-20 00:49+0200\n"
-"PO-Revision-Date: 2014-04-19 22:54+0000\n"
-"Last-Translator: czaks <marcin@6irc.net>\n"
+"PO-Revision-Date: 2014-04-20 14:56+0000\n"
+"Last-Translator: cicus <mercurio@index.hu>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -133,7 +133,7 @@ msgstr "Bejelentkezés"
 #: ../../../../inc/display.php:244
 #, php-format
 msgid "Post too long. Click <a href=\"%s\">here</a> to view the full text."
-msgstr "Hozzászólás túl hosszú. Kattints <a href=\"%s\">ide</a> hogy lásd a teljes szöveget."
+msgstr "A hozzászólás túl hosszú. Kattints <a href=\"%s\">ide</a> hogy lásd a teljes szöveget."
 
 #: ../../../../inc/display.php:368 ../../../../inc/display.php:473
 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495
@@ -163,7 +163,7 @@ msgstr "Biztos, hogy törölni akarod ezt a fájlt?"
 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507
 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510
 msgid "Spoiler File"
-msgstr "Spoiler fájl"
+msgstr "Fájl spoilerezése"
 
 #: ../../../../inc/display.php:380 ../../../../inc/display.php:485
 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507
@@ -222,7 +222,7 @@ msgstr "Biztos, hogy törölni akarod az összes hozzászólást erről az IP-r
 #: ../../../../inc/display.php:490 ../../../../inc/display.php:512
 #: ../../../../inc/display.php:515
 msgid "Make thread not sticky"
-msgstr "Nem ragacsolt szál készítése"
+msgstr "Nem ragacsolt szál indítása"
 
 #: ../../../../inc/display.php:492 ../../../../inc/display.php:514
 #: ../../../../inc/display.php:517
@@ -242,17 +242,17 @@ msgstr "A szál nem bumpolható"
 #: ../../../../inc/display.php:503 ../../../../inc/display.php:525
 #: ../../../../inc/display.php:528
 msgid "Unlock thread"
-msgstr "Szálat felnyit"
+msgstr "Szál feloldása"
 
 #: ../../../../inc/display.php:505 ../../../../inc/display.php:527
 #: ../../../../inc/display.php:530
 msgid "Lock thread"
-msgstr "Szálat lezár"
+msgstr "Szál lezárása"
 
 #: ../../../../inc/display.php:508 ../../../../inc/display.php:530
 #: ../../../../inc/display.php:533
 msgid "Move thread to another board"
-msgstr "Szálat áthelyez másik táblára"
+msgstr "Szál áthelyezése másik táblára"
 
 #. How long before Tinyboard forgets about a mute?
 #. 2 weeks
@@ -294,7 +294,7 @@ msgstr "Minden védjegy, védett tartalom, hozzászólás és kép ezen az oldal
 #. Error messages
 #: ../../../../inc/config.php:866
 msgid "Lurk some more before posting."
-msgstr "Ólálkodj többet mielőtt beleszólsz."
+msgstr "Leselkedj többet mielőtt beleszólsz."
 
 #. * ====================
 #. *  Error messages
@@ -345,7 +345,7 @@ msgstr "Fel kell töltened egy képet."
 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
 msgid "The server failed to handle your upload."
-msgstr "A szerver képtelen a feltöltésed kezelni."
+msgstr "A szerver képtelen kezelni a feltöltésed."
 
 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
@@ -594,7 +594,7 @@ msgstr "A %s mező érvénytelen."
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
 #, php-format
 msgid "There is already a %s board."
-msgstr "Már létezik %s tábla."
+msgstr "Már létezik ez a tábla: %s "
 
 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
@@ -612,7 +612,7 @@ msgstr "A hozzászólás nem létezik."
 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
 msgid "Page not found."
-msgstr "Oldal nem található."
+msgstr "Az oldal nem található."
 
 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
@@ -625,7 +625,7 @@ msgstr "Ez a moderátor <a href=\"?/users/%d\">már létezik</a>!"
 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
 msgid "That theme doesn't exist!"
-msgstr "Ez a téma már létezik!"
+msgstr "Nincs ilyen téma!"
 
 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
@@ -850,7 +850,7 @@ msgstr "Kitiltva?"
 
 #: ../../../../banned.php:5
 msgid "You are not banned."
-msgstr "Ki vagy tiltva."
+msgstr "Nem vagy kitiltva."
 
 #. line 6
 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41
@@ -868,7 +868,7 @@ msgstr "Hiba részletei"
 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25
 msgid "Delete Post"
-msgstr "Hozzászólást Töröl"
+msgstr "Hozzászólás Törölése"
 
 #. line 3
 #. line 84
@@ -1190,7 +1190,7 @@ msgstr "Név"
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91
 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47
 msgid "Email"
-msgstr "Drótposta"
+msgstr "Elektronikus levélcím"
 
 #. line 23
 #. line 46
@@ -1275,7 +1275,7 @@ msgstr "Vagy URL"
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
 msgid "Embed"
-msgstr "Beilleszt"
+msgstr "Beágyaz"
 
 #. line 112
 #. line 111
@@ -1285,7 +1285,7 @@ msgstr "Beilleszt"
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
 msgid "Flags"
-msgstr "Zászlók"
+msgstr "Jelölések"
 
 #. line 116
 #. line 117
@@ -1353,7 +1353,7 @@ msgstr "Ragacs"
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
 msgid "Lock"
-msgstr "Zár"
+msgstr "Lezár"
 
 #. line 124
 #. line 125
@@ -1408,7 +1408,7 @@ msgstr "Üzenetek közötti keresés kikapcsolva"
 #: ../../../../search.php:25 ../../../../search.php:31
 #: ../../../../search.php:29 ../../../../search.php:35
 msgid "Wait a while before searching again, please."
-msgstr "Légyszíves várj egy kicsit mielőtt újra használnád a keresőt."
+msgstr "Légy szíves várj egy kicsit mielőtt újra használnád a keresőt."
 
 #: ../../../../search.php:131 ../../../../search.php:135
 msgid "Query too broad."
@@ -1619,7 +1619,7 @@ msgstr "törölve?"
 #. line 33
 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91
 msgid "Post news entry"
-msgstr "Küld a hírek bejegyzésbe"
+msgstr "Küldd a hírek bejegyzésbe"
 
 #. line 24
 #. line 63
@@ -2022,7 +2022,7 @@ msgstr "Üzenet"
 #. line 46
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133
 msgid "public; attached to post"
-msgstr "nyilvános: üzenethez csatolva"
+msgstr "nyilvános; üzenethez csatolva"
 
 #. line 58
 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150
@@ -2171,11 +2171,11 @@ msgstr "Ki vagy tiltva! ;__;"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52
 msgid "You were banned from"
-msgstr "Ki lettél tiltva a"
+msgstr "Ki lettél tiltva innen: "
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58
 msgid "You have been banned from"
-msgstr "Ki vagy tiltva a"
+msgstr "Ki vagy tiltva innen:"
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82
 msgid "for the following reason:"
@@ -2247,13 +2247,13 @@ msgstr "Megfellebbezted a kitiltást"
 #. line 103
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265
 msgid "and it was denied. You may not appeal this ban again."
-msgstr "és el lett utasítva. Nem fellebbezhetsz többet a ban ellen."
+msgstr "és el lett utasítva. Nem fellebbezhetsz többet a kitiltás ellen."
 
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272
 msgid ""
 "You have submitted the maximum number of ban appeals allowed. You may not "
 "appeal this ban again."
-msgstr "A maximálisan engedélyett számú fellebbezést felhasználtad a ban ellen. Többet nem fellebehetsz ellene."
+msgstr "A maximálisan engedélyett számú fellebbezést felhasználtad a kitiltás ellen. Többet nem fellebehetsz ellene."
 
 #. line 114
 #. line 121
@@ -2287,7 +2287,7 @@ msgstr "és meg lett tagadva."
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323
 msgid "You may appeal this ban again. Please enter your reasoning below."
-msgstr "Még fellebbezhetsz a ban ellen. Írd meg az indokot alább!"
+msgstr "Még fellebbezhetsz a kitiltás ellen. Írd meg az indokot alább!"
 
 #. line 119
 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310
@@ -2432,7 +2432,7 @@ msgstr "Innen"
 #. line 34
 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105
 msgid "Delete forever"
-msgstr "Törlés mindig"
+msgstr "Törlés örökre"
 
 #. line 39
 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119
@@ -2442,7 +2442,7 @@ msgstr "Válasz idézettel"
 #. line 18
 #: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62
 msgid "Send message"
-msgstr "Üzenetet elküld"
+msgstr "Üzenet küldése"
 
 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25
 msgid "There are no themes available."
@@ -2508,14 +2508,14 @@ msgstr "Felhasználót töröl"
 
 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
 msgid "View more logs for this user."
-msgstr "Több naplóbejegyzés mutatása a felhasználótól"
+msgstr "Több naplóbejegyzés mutatása ettől a felhasználótól."
 
 #. line 84
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
 msgid "Flag"
-msgstr ""
+msgstr "Megjelöl"
 
 #. line 87
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
 msgid "None"
-msgstr ""
+msgstr "Egyik sem"
diff --git a/inc/locale/pl_PL/LC_MESSAGES/javascript.js b/inc/locale/pl_PL/LC_MESSAGES/javascript.js
index 2a748d09..3c149bb5 100644
--- a/inc/locale/pl_PL/LC_MESSAGES/javascript.js
+++ b/inc/locale/pl_PL/LC_MESSAGES/javascript.js
@@ -1 +1 @@
-l10n = {"Style: ":"Styl: ","File":"Plik","hide":"ukryj","show":"poka\u017c","Show locked threads":"Poka\u017c zablokowane tematy","Hide locked threads":"Schowaj zablokowane tematy","URL":"URL","Select":"Wybierz","Remote":"Zdalny","Embed":"Osad\u017a","Oekaki":"Oekaki","hidden":"ukryte","Show images":"Poka\u017c obrazki","Hide images":"Ukryj obrazki","Password":"Has\u0142o","Delete file only":"Usu\u0144 tylko plik","Delete":"Usu\u0144","Reason":"Pow\u00f3d","Report":"Zg\u0142oszenie","Click reply to view.":"Kliknij Odpowied\u017a aby zobaczy\u0107.","Click to expand":"Kliknij aby rozwin\u0105\u0107","Hide expanded replies":"Schowaj rozwini\u0119te odpowiedzi","Brush size":"Rozmiar p\u0119dzla","Set text":"Ustaw tekst","Clear":"Wyczy\u015b\u0107","Save":"Zapisz","Load":"Za\u0142aduj","Toggle eraser":"Prze\u0142\u0105cz gumk\u0119","Get color":"Wybierz kolor","Fill":"Wype\u0142nij","Use oekaki instead of file?":"U\u017cy\u0107 oekaki zamiast pliku?","Edit in oekaki":"Edytuj w oekaki","Enter some text":"Podaj jaki\u015b tekst","Enter font or leave empty":"Podaj czcionk\u0119, b\u0105d\u017a pozostaw puste","Forced anonymity":"Wymuszona anonimowo\u015b\u0107","enabled":"w\u0142\u0105czona","disabled":"wy\u0142\u0105czona","Sun":"nie","Mon":"pon","Tue":"wto","Wed":"\u015bro","Thu":"czw","Fri":"pi\u0105","Sat":"sob","Catalog":"Katalog","Submit":"Wy\u015blij","Quick reply":"Szybka odpowied\u017a","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Tryb postowania: Odpowied\u017a na <small>&gt;&gt;{0}<\/small>","Return":"Powr\u00f3t","Expand all images":"Rozwi\u0144 wszystkie obrazki","Hello!":"Witaj!","{0} users":"{0} u\u017cytkownik\u00f3w","(hide threads from this board)":"(schowaj w\u0105tki z tego boardu)","(show threads from this board)":"(poka\u017c w\u0105tki z tego boardu)","No more threads to display":"Nie ma wi\u0119cej w\u0105tk\u00f3w do wy\u015bwietlenia","Loading...":"\u0141adowanie...","Save as original filename":"Zapisz z oryginaln\u0105 nazw\u0105 pliku","Reported post(s).":"Zaraportowano post(y).","An unknown error occured!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Something went wrong... An unknown error occured!":"Co\u015b posz\u0142o \u017ale... wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Working...":"Przetwarzanie...","Posting... (#%)":"Postowanie... (#%)","Posted...":"Zapostowano...","An unknown error occured when posting!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas postowania!","Posting...":"Postowanie...","Upload URL":"Wy\u015blij URL","Spoiler Image":"Schowaj obrazek","Comment":"Komentarz","Quick Reply":"Szybka odpowied\u017a","Stop watching this thread":"Przesta\u0144 obserwowa\u0107 ten w\u0105tek","Watch this thread":"Obserwuj ten w\u0105tek","Unpin this board":"Odepnij ten board","Pin this board":"Przypnij ten board","Stop watching this board":"Przesta\u0144 oberwowa\u0107 ten board","Watch this board":"Obserwuj ten board","Click on any image on this site to load it into oekaki applet":"Kliknij w jakikolwiek obrazek na tej stronie aby za\u0142adowa\u0107 go do apletu oekaki","Sunday":"Niedziela","Monday":"Poniedzia\u0142ek","Tuesday":"Wtorek","Wednesday":"\u015aroda","Thursday":"Czwartek","Friday":"Pi\u0105tek","Saturday":"Sobota","January":"stycznia","February":"lutego","March":"marca","April":"kwietnia","May":"maj","June":"czerwca","July":"lipca","August":"sierpnia","September":"wrze\u015bnia","October":"pa\u017adziernika","November":"listopada","December":"grudnia","Jan":"sty","Feb":"lut","Mar":"mar","Apr":"kwi","Jun":"cze","Jul":"lip","Aug":"sie","Sep":"wrz","Oct":"pa\u017a","Nov":"lis","Dec":"gru","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Twoja przegl\u0105darka nie obs\u0142uguje wideo HTML5.","[play once]":"[pu\u015b\u0107 raz]","[loop]":"[zap\u0119tl]","WebM Settings":"Ustawienia WebM","Expand videos inline":"Rozwi\u0144 wideo w miejscu","Play videos on hover":"Puszczaj wideo po najechaniu","Default volume":"Domy\u015blna g\u0142o\u015bno\u015b\u0107"};
\ No newline at end of file
+l10n = {"Style: ":"Styl: ","File":"Plik","hide":"ukryj","show":"poka\u017c","Show locked threads":"Poka\u017c zablokowane tematy","Hide locked threads":"Schowaj zablokowane tematy","URL":"URL","Select":"Wybierz","Remote":"Zdalny","Embed":"Osad\u017a","Oekaki":"Oekaki","hidden":"ukryte","Show images":"Poka\u017c obrazki","Hide images":"Ukryj obrazki","Password":"Has\u0142o","Delete file only":"Usu\u0144 tylko plik","Delete":"Usu\u0144","Reason":"Pow\u00f3d","Report":"Zg\u0142oszenie","Click reply to view.":"Kliknij Odpowied\u017a aby zobaczy\u0107.","Click to expand":"Kliknij aby rozwin\u0105\u0107","Hide expanded replies":"Schowaj rozwini\u0119te odpowiedzi","Brush size":"Rozmiar p\u0119dzla","Set text":"Ustaw tekst","Clear":"Wyczy\u015b\u0107","Save":"Zapisz","Load":"Za\u0142aduj","Toggle eraser":"Prze\u0142\u0105cz gumk\u0119","Get color":"Wybierz kolor","Fill":"Wype\u0142nij","Use oekaki instead of file?":"U\u017cy\u0107 oekaki zamiast pliku?","Edit in oekaki":"Edytuj w oekaki","Enter some text":"Podaj jaki\u015b tekst","Enter font or leave empty":"Podaj czcionk\u0119, b\u0105d\u017a pozostaw puste","Forced anonymity":"Wymuszona anonimowo\u015b\u0107","enabled":"w\u0142\u0105czona","disabled":"wy\u0142\u0105czona","Sun":"nie","Mon":"pon","Tue":"wto","Wed":"\u015bro","Thu":"czw","Fri":"pi\u0105","Sat":"sob","Catalog":"Katalog","Submit":"Wy\u015blij","Quick reply":"Szybka odpowied\u017a","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Tryb postowania: Odpowied\u017a na <small>&gt;&gt;{0}<\/small>","Return":"Powr\u00f3t","Expand all images":"Rozwi\u0144 wszystkie obrazki","Hello!":"Witaj!","{0} users":"{0} u\u017cytkownik\u00f3w","(hide threads from this board)":"(schowaj w\u0105tki z tego boardu)","(show threads from this board)":"(poka\u017c w\u0105tki z tego boardu)","No more threads to display":"Nie ma wi\u0119cej w\u0105tk\u00f3w do wy\u015bwietlenia","Loading...":"\u0141adowanie...","Save as original filename":"Zapisz z oryginaln\u0105 nazw\u0105 pliku","Reported post(s).":"Zaraportowano post(y).","An unknown error occured!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Something went wrong... An unknown error occured!":"Co\u015b posz\u0142o \u017ale... wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Working...":"Przetwarzanie...","Posting... (#%)":"Postowanie... (#%)","Posted...":"Zapostowano...","An unknown error occured when posting!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas postowania!","Posting...":"Postowanie...","Upload URL":"Wy\u015blij URL","Spoiler Image":"Schowaj obrazek","Comment":"Komentarz","Quick Reply":"Szybka odpowied\u017a","Stop watching this thread":"Przesta\u0144 obserwowa\u0107 ten w\u0105tek","Watch this thread":"Obserwuj ten w\u0105tek","Unpin this board":"Odepnij ten board","Pin this board":"Przypnij ten board","Stop watching this board":"Przesta\u0144 oberwowa\u0107 ten board","Watch this board":"Obserwuj ten board","Click on any image on this site to load it into oekaki applet":"Kliknij w jakikolwiek obrazek na tej stronie aby za\u0142adowa\u0107 go do apletu oekaki","Sunday":"Niedziela","Monday":"Poniedzia\u0142ek","Tuesday":"Wtorek","Wednesday":"\u015aroda","Thursday":"Czwartek","Friday":"Pi\u0105tek","Saturday":"Sobota","January":"stycznia","February":"lutego","March":"marca","April":"kwietnia","May":"maj","June":"czerwca","July":"lipca","August":"sierpnia","September":"wrze\u015bnia","October":"pa\u017adziernika","November":"listopada","December":"grudnia","Jan":"sty","Feb":"lut","Mar":"mar","Apr":"kwi","Jun":"cze","Jul":"lip","Aug":"sie","Sep":"wrz","Oct":"pa\u017a","Nov":"lis","Dec":"gru","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Twoja przegl\u0105darka nie obs\u0142uguje wideo HTML5.","[play once]":"[pu\u015b\u0107 raz]","[loop]":"[zap\u0119tl]","WebM Settings":"Ustawienia WebM","Expand videos inline":"Rozwi\u0144 wideo w miejscu","Play videos on hover":"Puszczaj wideo po najechaniu","Default volume":"Domy\u015blna g\u0142o\u015bno\u015b\u0107","Tree view":"Widok drzewa"};
\ No newline at end of file
diff --git a/inc/locale/pl_PL/LC_MESSAGES/javascript.po b/inc/locale/pl_PL/LC_MESSAGES/javascript.po
index 24be9d84..30a74ccb 100644
--- a/inc/locale/pl_PL/LC_MESSAGES/javascript.po
+++ b/inc/locale/pl_PL/LC_MESSAGES/javascript.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-20 00:49+0200\n"
-"PO-Revision-Date: 2014-04-19 22:53+0000\n"
+"PO-Revision-Date: 2014-04-19 22:59+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n"
 "MIME-Version: 1.0\n"
@@ -567,4 +567,4 @@ msgstr "Domyślna głośność"
 
 #: ../../../../js/treeview.js:18
 msgid "Tree view"
-msgstr ""
+msgstr "Widok drzewa"
diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo
index beab2d6b56a58a6f1f1bbb363f2b85f924c99c2a..37876dd1589a8a69aafadffca9affe68fc2f8ce5 100644
GIT binary patch
delta 6862
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

delta 6820
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
QX*fC{IiSIB*bCAB2Z9E?ssI20

diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po
index 11198592..c252d6c0 100644
--- a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-20 00:49+0200\n"
-"PO-Revision-Date: 2014-04-19 22:54+0000\n"
+"PO-Revision-Date: 2014-04-19 23:00+0000\n"
 "Last-Translator: czaks <marcin@6irc.net>\n"
 "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n"
 "MIME-Version: 1.0\n"
@@ -2523,9 +2523,9 @@ msgstr "Zobacz więcej logów tego użytkownika"
 #. line 84
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
 msgid "Flag"
-msgstr ""
+msgstr "Flaga"
 
 #. line 87
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
 msgid "None"
-msgstr ""
+msgstr "Brak"
diff --git a/inc/locale/sk_SK/LC_MESSAGES/javascript.js b/inc/locale/sk_SK/LC_MESSAGES/javascript.js
index cd450cda..32372761 100644
--- a/inc/locale/sk_SK/LC_MESSAGES/javascript.js
+++ b/inc/locale/sk_SK/LC_MESSAGES/javascript.js
@@ -1 +1 @@
-l10n = {"Style: ":"\u0160t\u00fdl:","File":"S\u00fabor","hide":"skry\u0165","show":"uk\u00e1za\u0165","Show locked threads":"Zobrazi\u0165 zamknut\u00e9 vl\u00e1kna","Hide locked threads":"Skry\u0165 zamknut\u00e9 vl\u00e1kna","URL":"Adresa","Select":"Vybra\u0165","Remote":"Vzdialen\u00fd","Embed":"Vlo\u017ei\u0165","Oekaki":"Oekaki","hidden":"skryt\u00fd","Show images":"Zobrazi\u0165 obr\u00e1zky","Hide images":"Skry\u0165 obr\u00e1zky","Password":"Heslo","Delete file only":"Odstr\u00e1ni\u0165 iba s\u00fabor","Delete":"Odstr\u00e1ni\u0165","Reason":"D\u00f4vod","Report":"Nahl\u00e1si\u0165","Click reply to view.":"Klikni na Odpove\u010f pre ich zobrazenie.","Click to expand":"Klikni sem pre zobrazenie","Hide expanded replies":"Skry\u0165 zobrazen\u00e9 odpovede","Brush size":"Ve\u013ekos\u0165 \u0161tetca","Set text":"Nastavi\u0165 text","Clear":"Vy\u010disti\u0165","Save":"Ulo\u017ei\u0165","Load":"Na\u010d\u00edta\u0165","Toggle eraser":"Zmeni\u0165 gumu","Get color":"Vybra\u0165 farbu","Fill":"Vyplni\u0165","Use oekaki instead of file?":"Pou\u017ei\u0165 miesto s\u00faboru oekaki?","Edit in oekaki":"Upravi\u0165 v oekaki","Enter some text":"Nap\u00ed\u0161 nejak\u00fd text","Enter font or leave empty":"Vlo\u017e p\u00edsmo alebo nechaj pr\u00e1zdne","Forced anonymity":"Vyn\u00faten\u00e1 anonymita","enabled":"zapnut\u00e1","disabled":"vypnut\u00e1","Sun":"Ne","Mon":"Po","Tue":"Ut","Wed":"St","Thu":"\u0160t","Fri":"Pi","Sat":"So","Catalog":"Katal\u00f3g","Submit":"Odosla\u0165","Quick reply":"R\u00fdchla odpove\u010f","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Re\u017eim prispievania: Odpove\u010f na <small>&gt;&gt;{0}<\/small>","Return":"N\u00e1vrat","Expand all images":"Otvori\u0165 v\u0161etky obr\u00e1zky","Hello!":"Ahoj!","{0} users":"{0} u\u017e\u00edvate\u013eov","(hide threads from this board)":"(skry\u0165 vl\u00e1kna z tejto dosky)","(show threads from this board)":"(zobrazi\u0165 vl\u00e1kna z tejto dosky)","No more threads to display":"\u017diadne \u010fal\u0161ie vl\u00e1kna na zobrazenie","Loading...":"Na\u010d\u00edtanie...","Save as original filename":"Ulo\u017ei\u0165 s p\u00f4vodn\u00fdm n\u00e1zvom","Reported post(s).":"Pr\u00edspevok nahl\u00e1sen\u00fd.","An unknown error occured!":"Nastala nezn\u00e1ma chyba!","Something went wrong... An unknown error occured!":"Stalo sa nie\u010do zl\u00e9... Nastala nezn\u00e1ma chyba!","Working...":"Pracujem...","Posting... (#%)":"Odosielam...  (#%)","Posted...":"Odoslan\u00e9...","An unknown error occured when posting!":"Pri odosielan\u00ed nastala nezn\u00e1ma chyba!","Posting...":"Odosielam...","Upload URL":"Adresa s\u00faboru","Spoiler Image":"Skryt\u00fd obr\u00e1zok","Comment":"Koment\u00e1r","Quick Reply":"R\u00fdchla odpove\u010f","Stop watching this thread":"Zastavi\u0165 sledovanie tohto vl\u00e1kna","Watch this thread":"Sledova\u0165 toto vl\u00e1kno","Unpin this board":"Odopn\u00fa\u0165 t\u00fato dosku","Pin this board":"Pripn\u00fa\u0165 t\u00fato dosku","Stop watching this board":"Zastavi\u0165 sledovanie tejto dosky","Watch this board":"Sledova\u0165 t\u00fato dosku","Click on any image on this site to load it into oekaki applet":"Klikni na ak\u00fdko\u013evek obr\u00e1zok na tejto str\u00e1nke pre jeho na\u010d\u00edtanie do Oekaki","Sunday":"Nede\u013ea","Monday":"Pondelok","Tuesday":"Utorok","Wednesday":"Streda","Thursday":"\u0160tvrtok","Friday":"Piatok","Saturday":"Sobota","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"Marec","April":"Apr\u00edl","May":"M\u00e1j","June":"J\u00fan","July":"J\u00fal","August":"August","September":"September","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"J\u00fan","Jul":"J\u00fal","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"Doobeda","PM":"Poobede","am":"doobeda","pm":"poobede","Your browser does not support HTML5 video.":"Tvoj prehliada\u010d nepodporuje HTML5 vide\u00e1.","[play once]":"[hra\u0165 raz]","[loop]":"[slu\u010dka]","WebM Settings":"Nastavenia WebM","Expand videos inline":"Otvori\u0165 vide\u00e1 v riadku","Play videos on hover":"Spusti\u0165 vide\u00e1 pri uk\u00e1zan\u00ed na ne","Default volume":"P\u00f4vodn\u00e1 hlasitos\u0165"};
\ No newline at end of file
+l10n = {"Style: ":"\u0160t\u00fdl:","File":"S\u00fabor","hide":"skry\u0165","show":"uk\u00e1za\u0165","Show locked threads":"Zobrazi\u0165 zamknut\u00e9 vl\u00e1kna","Hide locked threads":"Skry\u0165 zamknut\u00e9 vl\u00e1kna","URL":"Adresa","Select":"Vybra\u0165","Remote":"Vzdialen\u00fd","Embed":"Vlo\u017ei\u0165","Oekaki":"Oekaki","hidden":"skryt\u00fd","Show images":"Zobrazi\u0165 obr\u00e1zky","Hide images":"Skry\u0165 obr\u00e1zky","Password":"Heslo","Delete file only":"Odstr\u00e1ni\u0165 iba s\u00fabor","Delete":"Odstr\u00e1ni\u0165","Reason":"D\u00f4vod","Report":"Nahl\u00e1si\u0165","Click reply to view.":"Klikni na Odpove\u010f pre ich zobrazenie.","Click to expand":"Klikni sem pre zobrazenie","Hide expanded replies":"Skry\u0165 zobrazen\u00e9 odpovede","Brush size":"Ve\u013ekos\u0165 \u0161tetca","Set text":"Nastavi\u0165 text","Clear":"Vy\u010disti\u0165","Save":"Ulo\u017ei\u0165","Load":"Na\u010d\u00edta\u0165","Toggle eraser":"Zmeni\u0165 gumu","Get color":"Vybra\u0165 farbu","Fill":"Vyplni\u0165","Use oekaki instead of file?":"Pou\u017ei\u0165 miesto s\u00faboru oekaki?","Edit in oekaki":"Upravi\u0165 v oekaki","Enter some text":"Nap\u00ed\u0161 nejak\u00fd text","Enter font or leave empty":"Vlo\u017e p\u00edsmo alebo nechaj pr\u00e1zdne","Forced anonymity":"Vyn\u00faten\u00e1 anonymita","enabled":"zapnut\u00e1","disabled":"vypnut\u00e1","Sun":"Ne","Mon":"Po","Tue":"Ut","Wed":"St","Thu":"\u0160t","Fri":"Pi","Sat":"So","Catalog":"Katal\u00f3g","Submit":"Odosla\u0165","Quick reply":"R\u00fdchla odpove\u010f","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Re\u017eim prispievania: Odpove\u010f na <small>&gt;&gt;{0}<\/small>","Return":"N\u00e1vrat","Expand all images":"Otvori\u0165 v\u0161etky obr\u00e1zky","Hello!":"Ahoj!","{0} users":"{0} u\u017e\u00edvate\u013eov","(hide threads from this board)":"(skry\u0165 vl\u00e1kna z tejto dosky)","(show threads from this board)":"(zobrazi\u0165 vl\u00e1kna z tejto dosky)","No more threads to display":"\u017diadne \u010fal\u0161ie vl\u00e1kna na zobrazenie","Loading...":"Na\u010d\u00edtanie...","Save as original filename":"Ulo\u017ei\u0165 s p\u00f4vodn\u00fdm n\u00e1zvom","Reported post(s).":"Pr\u00edspevok nahl\u00e1sen\u00fd.","An unknown error occured!":"Nastala nezn\u00e1ma chyba!","Something went wrong... An unknown error occured!":"Stalo sa nie\u010do zl\u00e9... Nastala nezn\u00e1ma chyba!","Working...":"Pracujem...","Posting... (#%)":"Odosielam...  (#%)","Posted...":"Odoslan\u00e9...","An unknown error occured when posting!":"Pri odosielan\u00ed nastala nezn\u00e1ma chyba!","Posting...":"Odosielam...","Upload URL":"Adresa s\u00faboru","Spoiler Image":"Skryt\u00fd obr\u00e1zok","Comment":"Koment\u00e1r","Quick Reply":"R\u00fdchla odpove\u010f","Stop watching this thread":"Zastavi\u0165 sledovanie tohto vl\u00e1kna","Watch this thread":"Sledova\u0165 toto vl\u00e1kno","Unpin this board":"Odopn\u00fa\u0165 t\u00fato dosku","Pin this board":"Pripn\u00fa\u0165 t\u00fato dosku","Stop watching this board":"Zastavi\u0165 sledovanie tejto dosky","Watch this board":"Sledova\u0165 t\u00fato dosku","Click on any image on this site to load it into oekaki applet":"Klikni na ak\u00fdko\u013evek obr\u00e1zok na tejto str\u00e1nke pre jeho na\u010d\u00edtanie do Oekaki","Sunday":"Nede\u013ea","Monday":"Pondelok","Tuesday":"Utorok","Wednesday":"Streda","Thursday":"\u0160tvrtok","Friday":"Piatok","Saturday":"Sobota","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"Marec","April":"Apr\u00edl","May":"M\u00e1j","June":"J\u00fan","July":"J\u00fal","August":"August","September":"September","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"J\u00fan","Jul":"J\u00fal","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"Doobeda","PM":"Poobede","am":"doobeda","pm":"poobede","Your browser does not support HTML5 video.":"Tvoj prehliada\u010d nepodporuje HTML5 vide\u00e1.","[play once]":"[hra\u0165 raz]","[loop]":"[slu\u010dka]","WebM Settings":"Nastavenia WebM","Expand videos inline":"Otvori\u0165 vide\u00e1 v riadku","Play videos on hover":"Spusti\u0165 vide\u00e1 pri uk\u00e1zan\u00ed na ne","Default volume":"P\u00f4vodn\u00e1 hlasitos\u0165","Tree view":"Zobrazi\u0165 ako strom"};
\ No newline at end of file
diff --git a/inc/locale/sk_SK/LC_MESSAGES/javascript.po b/inc/locale/sk_SK/LC_MESSAGES/javascript.po
index 3a238142..fac80d6a 100644
--- a/inc/locale/sk_SK/LC_MESSAGES/javascript.po
+++ b/inc/locale/sk_SK/LC_MESSAGES/javascript.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-20 00:49+0200\n"
-"PO-Revision-Date: 2014-04-19 22:53+0000\n"
-"Last-Translator: czaks <marcin@6irc.net>\n"
+"PO-Revision-Date: 2014-04-19 23:20+0000\n"
+"Last-Translator: dubcheck <admin@alokal.eu>\n"
 "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -567,4 +567,4 @@ msgstr "Pôvodná hlasitosť"
 
 #: ../../../../js/treeview.js:18
 msgid "Tree view"
-msgstr ""
+msgstr "Zobraziť ako strom"
diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo
index 318c4df73ff6f80a3668fb9b595ebc9c3097067d..782d9ee2d07f849ecdf359850566dd507efc2b96 100644
GIT binary patch
delta 6913
zcmYk=30PKD9>?+X0)i}}fFL5v3yK@!0`7n-CZ@TNOKKUoWTau5N@C8<+-S7|CoGpV
zG;JI!$u!HxW<qIE3o0A4Qme^P%Sx@B%;x)h?_s9%@V}pP&Rx!W@9X2aS3S?|^EjVJ
z2COlp{vKoEv3ZCwFOUywu3BSi<BZ|Yyv;#XUtuI(!NnNX%9v0r!`4`Vx^6GFz{41b
zUt<uSx8+M1Zj57oB}1Dggx2rJXl#j<7>&Cy7;CW!)}b0aiKFp6=3q{OF&%L+rs7uY
zfbU^4{)A~5n`n$b=3*G_n>;dVXdLRnv#>Fipn80twG0C&KZcEP4Qgah+xpGemGX1g
z6hFZzJcD}9Rn!0il3XJ(n)Z#C3{zoxq8c8888{OA<5JYrzKPB7Yg9*nLMG4ndEFUG
zM4fMs>S!NSNBf~>I2Uz(6sltd=;*|JG8&14dhkk&!6&diZb#MEp*s4xEq{x;?}{yJ
zp0)O2*a?$S0~(2HXM#OH6}6-#$;`hRT52mQQ9a&l-Dcg15!Anon#zOLBdAUGvGqID
z$OBW{=Y*ol5w;wIOqz+e_1P(o`@n(rf??>#1*5F_sGg5QO<e(MZRcVpE=B&#ZVu|$
zC#b1CiJGZPR)5y72jxhlk0uXqz&ji=dcF3dZmdW4iTMUK<$-P7`bgANw?&O89d$kf
zeQS(5pNqPGIQGLkP&2$8_1YdlZNhpCL+2EkTr%IGMv$56u2~jp1i7dgxDmD4rl1-w
zMczEK5(DsA)cxB~*T0Bb<JYV;_WV&>K8EZK$DDFA=B)K1>Va3Sp0@6i1fm)aMxBqg
z#@YHL45U5{8({|eVQ<tX%t9?)t}TznAie*$*b_5Qn`r@RDIURrxXG5kL_PRt^x|)*
z2Pd|3AKVT#1HDjtr9bNYXbi-O7=#6=&3rqC(Y`4qqmivbO<g&vp$(`9RiPfR8+G05
zsI{xL<&W(7Q>c!gL4Ul8x=!z~?r(zi9$rz@(w^b-=x8c`CZh|lT7x^f4~Rk4$DuY&
zJ5<MdpdOfI9fU!YhhZv?LETq^Jkl)3KDZP4GiNw-!>BaoU%P)un)}T!u$EdYQ0I4|
zcJbTj#gnK{wx^T(fog$zuLq!hI|@*5K`H9GwYK~MYSSLUE_kjJ^B+v6Rl57*kZK)+
zovB}fUfhAY?l5Y`j-eVnf%L^(wdMBQr1N>m?~S<u!*Les{!-LTEl2IOhaECa$W)=$
zZWs2#gQ$^Qv&Pb0O?d|DL47a`2cvJ3+44kG1Gm}wV$_IBP#vm325)wuHlgzc8Euvy
zFcvSPIuhR1UCR{IH$4wke+!PpxwrxkU<bU81!cdPyD%9mQ6t=k+7orwU#yAz!ZAR{
z<dV@8PQe0v5Y^LjsD^_x-PbS?vnUs!W@a7gzE@BUpGI{gq`P}xck3|Z&rIPEiRI|U
ztr)HM{}7qpRD6aE#>DWU&c~t1vYMwb1Zz<<RgZemG33vj<)9CZx2J1s)RMGCEm;>^
z?uptP{ZUJli*dAXMv&2nW@0ohMRnv!)B|c!9XN`-y5=~lBmQiZa127dmNBTk6pz{?
z9Z~mnM_<FJnaxEl^;C4!z+y6b(EX?z9>=D*&X#xJVUIC;P&2ZkkNbL6qnC0W9>9y(
z3}5ccZ#~u^t6~yZH{CY|)ltW~B8&M~PamQ}9aw`JK^1PqUDyiqv)%K>sHt6oQMeK#
z@F^UNJ1_@59JD9;qeeUv*>`3Iw#GfkFSGeHhxyltuTh~X3FbFbyEO&XKpyHfyV+V~
zU5J{}WvCIASs%6a6*!3cwWtA|Kn>(9YQTa0-A&reA)^aYQ60!cP5lV;HH>;t5%Ol5
z9jLu=0<~9~3~;}Utuc{uUu=#OQ8QDFTH^aq9bJVQ@FS>poJun4**4UPw=fisVhnzY
zdd+@B+BAs+-Q7P0HA8bz9bbXEZv(2K=TRMb5!LY;)ULmbTI%00UhjVx!_$L0U<&4-
zMpl68`9jnKmsppfu73d4;q|CJu?;l?FJUsikGlUyRKr(n*)!O!Z;b8r{x>D##|6Dn
z7iL)p+xp?CH5+NY3Dv==s42V$*>|Q4GqDD>bXPC|19RP_XoKo_Pvp;B&mo=m&1y1*
zxF5ZkG{pTL48R*HPeL`c6SY)tpgMXS)v?p4wLXt(_!??vLa%ebm@znjaz5(1a_bg!
z^uF#PqcyC>Nq7p?K=x4AT-2J4K#gEBYKrHezJ!mX7ppJ;Yfv3~2i2huQA>0Rwb{?w
z^S=yb{<UfR^4t-IqdJs`>S-4Y!hslw!_Xf`qZ%G-&(B0PILEpO)$lS@haN*M@furS
ziE)&-<T3w^$Q+<T4IM<S?GbE?U!mTD&|&TeCIz*oC8#N0gY07S461|sQ5}2Bo<D|K
zveW2W8q{^6*Sq&eI%L#f0_t_iM9n}RYRxBNV=O{lHxEOw4AoFMYNocLmS`_(Acrss
zkD_Mmf<1o`^*q1fd@Gm|CzOoV{<<678*fFe(M;3>7oetaxh+3{>R_d<-)`NB!PHly
zI<Ox*U=3;@7f>_$J7!_qk-jgjW2TbnMnxH_Bm1x=)}v<RThz$?M!8cRi`slWuoF(O
z^~<pb<xQw1I)+-h%cus!M!TCg551Ic#u&Z-OUPtUQGp?N2)kpQHE4|c?}Kb?P5lDY
zb!$;GQ-$quJMsf*>aY!l<hxVf1-nqrM7=%JFdR#;vEKicWHjQ{7>V0aBYz$Bzz<Ms
z8O+B(cEBb$4E3N17=^c??kh!Yw$-T3whklkS!{>9F%3UMho5W{Jl1V^Flt2OQLo2j
zjKYPe5k6?k)u@ghLVYieV+HmY$JY(t!OrLz@7fjhmfVUdcrR)RH;!liwdQY9(HxJX
z*7O42jPd*{LQ}a2)!+uCE%OqxEll7|Zb!#qSIT#xuHS^|co6m6OV|Q~C%Q|UjC$Vq
ziOjz?OA!^?WUDX(*P}Mg`#1>07-oMQg_`=+=)v`viW@N>Yfv*7JK6o<B%rSMqCRw;
zZMiS%HOzBtW(?}rYZA7^Mc53>QJbd<^;&(18qo<<!#~*i7ED(R<s{SxttV=P*{Fs`
zVN;xp+Pt%{8#)WgXic`EE_@d?RmV^>a{+ZjlUv-)7K<9W(l10G3O$HFksm<}BwAAb
z2$in7_>OVZZy@(P@hY*3_RUvh5;^fQDg~4O72|!S{~vaf{f&sTRc|00*q5|qw-IH;
zPsD@7AJZqcz+{=@HvcJhGt}H|D}reFip`69BAeJnoF_C(QwgnSC6Uba`l2<Y49ZIF
zaRuI99uXboJV34=afoP0y|_YOlFPPYJ2s|HJ51?5qKeQK|B|?#Xh@N^6*lJo(oAyN
zBxeb2ns|H7kDA{u6rQ58A^nxi4q_VdT0<pnB%<w&TW$S&m`2?~)OH;}JWOb(Jwh}j
z?YMo!--truaYDPauZJzg2J)r%%hO|8J7>siBYsW%PW((LHKLhsa4wNUK9f*-+r=c=
za&KGy0AC=y#4+LtVhORCNFX|J{r6Z+^d&A4F&^e4nT%2|;yI#~3ZyrQdA=N<c&lCn
zhsYy(^T2c>(Vol4yNFH16yhFY4>5|!B~B5%E2ba!WD{xReNTG{^mQCZ{D(*-l-3aC
zg#IT!mQXrL+)I=adx_;lL;9G^Ia~NM{)=eAeM8V|?>}hIhgiF6G~e2S$RxtJ_zqh)
z3m>xi+19_{7~(LI!nN;WmTjOLuBY4%Bd{rcfpZ9@HZCTLdVSZN)f{4p;e>}uKVk;?
zzY`JUgYjwNkLf6dp~N#p5%C$3MNB7@+7Yi1i-_-tCy5|J=^etK=PJF(KXZJUbsRg|
z$~yA3L^v^sxRX#?>|!qBO5z{Hhqf-fJfdaPz-K9Sw>AFwI&nXdYM<N$Z=$@PP%0og
z5<d`O#DVf|F;Pw@uKJu(ckF|KL@WCQvcCT&?o4?Z`3j;f`3X9qL_U-#Asc|VVjCQb
z|0FsQrwOI;F23WxIi?dG+;2NSp4_yv+!NQzSxa>@O3jHV@(Fki=M#~{1>!B@Q9@}c
zk>tzq>xWy25bkM6#Ws_JJ&6;<U}BQW_PWQ&A0YxgzMmRCj-1$5y(MmRQ1$o8egS^P
zGpaA7wutPW*|%$-w63I(5rucpPaiw4u=wuTh4bgk>+7AqVCuBnXH1*r%`TjNXHoHh
p!r60X70&KFV?lMV-kU=_h1K<g3K|8~>@O;uUR+q6k@srz{{pHJ&hh{N

delta 6865
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
J#-J_j{|||d#uWen

diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po
index e237a5e3..1ab53601 100644
--- a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-20 00:49+0200\n"
-"PO-Revision-Date: 2014-04-19 22:54+0000\n"
-"Last-Translator: czaks <marcin@6irc.net>\n"
+"PO-Revision-Date: 2014-04-19 23:09+0000\n"
+"Last-Translator: dubcheck <admin@alokal.eu>\n"
 "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -2523,9 +2523,9 @@ msgstr "Zobraziť viac záznamov tohto užívateľa"
 #. line 84
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
 msgid "Flag"
-msgstr ""
+msgstr "Vlajka"
 
 #. line 87
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
 msgid "None"
-msgstr ""
+msgstr "Žiadna"

From 30192fe36d87732dcf792d99a0fa2094b44351bd Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sun, 20 Apr 2014 23:16:15 +0200
Subject: [PATCH 09/14] improve debugging

---
 inc/display.php | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/inc/display.php b/inc/display.php
index 13425c48..f7fe1620 100644
--- a/inc/display.php
+++ b/inc/display.php
@@ -88,6 +88,10 @@ function error($message, $priority = true, $debug_stuff = false) {
 		$debug_stuff = array_combine(array('SQLSTATE', 'Error code', 'Error message'), $db_error);
 	}
 
+	if ($config['debug']) {
+		$debug_stuff['backtrace'] = debug_backtrace();
+	}
+
 	// Return the bad request header, necessary for AJAX posts
 	// czaks: is it really so? the ajax errors only work when this is commented out
 	//        better yet use it when ajax is disabled

From a4689d523923737d8234847eb0b1fd81ac195200 Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Sun, 20 Apr 2014 23:33:52 +0200
Subject: [PATCH 10/14] fix recentposts theme building null query, throw error
 instead

---
 templates/themes/recent/theme.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/templates/themes/recent/theme.php b/templates/themes/recent/theme.php
index 4bbf1469..26a9a69b 100644
--- a/templates/themes/recent/theme.php
+++ b/templates/themes/recent/theme.php
@@ -45,6 +45,11 @@
 				$query .= sprintf("SELECT *, '%s' AS `board` FROM ``posts_%s`` WHERE `file` IS NOT NULL AND `file` != 'deleted' AND `thumb` != 'spoiler' UNION ALL ", $_board['uri'], $_board['uri']);
 			}
 			$query = preg_replace('/UNION ALL $/', 'ORDER BY `time` DESC LIMIT ' . (int)$settings['limit_images'], $query);
+			
+			if ($query == '') {
+				error(_("Can't build the RecentPosts theme, because there are no boards to be fetched."));
+			}
+
 			$query = query($query) or error(db_error());
 			
 			while ($post = $query->fetch(PDO::FETCH_ASSOC)) {

From 0f120743cc0f342e9a8d0fbbf9920036ef415778 Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Mon, 21 Apr 2014 00:52:37 +0200
Subject: [PATCH 11/14] update hu_HU locale

---
 inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo | Bin 24079 -> 24061 bytes
 inc/locale/hu_HU/LC_MESSAGES/tinyboard.po |   4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo
index 73c3276abdc9e328d63692168ff85b72e1359e57..1c81e98332282a6060310bbf4f0e4660458de46a 100644
GIT binary patch
delta 1976
zcmXZcYfO$|9LMp0>G<eT@q`>g3OQ9OInGo(WOB$c<v3YQX47V7+%GU*h}mdfVCw~j
zHqi@{(`L)r<}fqnFwJI+SJdV-zQ6A4)#p0g*Z=z8|LeN%!`CDJUW;hio8U#8*{&k9
zINXC#cn}lu2*zR)#^5>3z!v8V)cRj;-ipoQ>BnMEOvd3j81>vtRGcs>ZdtK;-48Bf
zAd-RgZek-Q)33uIdN>{%a57#;CESH6_|KVAV%CTL7@UJMFc%NtCTzoDm_EyFAePMX
z%nE3%Wk7)%F%_FJ8t<SoeuPQ*9DCtM=XV@QKXSI|<!v;k;TBY!2JDSzu|Kw<5_^uS
zz#uQ|mn;L7`FI?JMK})ExbX(epx=a1cn4LPhp3HSp*H%CI)WH>(R>mHFb#DiS<V7f
zg}s?HVrZ1Ri3;pNzZzAlT2#P;7>kXlfTu7H&!N^|My<PwdVw3L#9pJ;{Xiw~$IZvh
zH5<kLmPum(6J@vxYfvR@N0s~|_QOt8pkS$gIa5#pGf`)mivgUE(YOM2RI5>m)L{ts
zqbhv@liA-|XejV)R0$uT-so-j10;ajs0#xaInSRDqAC=^!8j3hhnAocsKp#^^;S3D
zG~Zu$1y%Z+lKt%ojd<)pW%d;l(8~OcgBV9Q6_r>zYJ)6PrLwUnmSG-NAXT<QScos3
zi3|Ma!>AXnMo*>PK|>`vf;zhku73}8={isgVi%f?#Q~_2hcOE`peoUTs=!55oOV=#
z9hid=i~JXvfRpG?T}1trVLb!muo<=BH74Ot)NKze_J1UaIDvj1a(S#8RguG}qiMw9
z*o3M`yBmLsiu(o?_ctohgmUUXl}38G*$`ZfdT=+Y<R?)J&Y&*O6->rQ*bCpG?#?$i
z--%=B2bP#k!-+T>x1r*+p<d`AszOgZ8X+3rFb5--n)Ssz?2V<k9jov(zQBCkxy=6)
zwqPFpFPMU9%l*paqmHJ^xgRxu303L4SdU&OjnOn}SNOO181g%}R#fI)sESNq=?AXF
z5%l+=5^2U%{DA%NH)dm>3jY!pqmE=D4#j#@WsYI7zW--5>KN$D$3F%4Vi0ekekhMo
znLou6{Ddmu*h>E^$VDANp>qc6E`(8E)ne2gsYD&|1`OdI?Ee0b(<o%%JStEJYT*}D
z34fphq*eLjnWzM^QAd=Ix@=)*IcohH)X~(SHa_X*Z=hc2KE|u@-c5W)CD2*b8VHTZ
ah?+d5Ag48dQfVNnZe7jh)}uu`2mS}n0`4gQ

delta 1994
zcmXZcYfO_@9LMqFptO|Bq|{55SrG=#Yp2yZaf?zw)F|sfXT5A>4!3CqFEB}9>0&nD
zEQ|U=je8*)V?>h;lD^U4NCw*rGcsmkf}6L*ON`O%k`WW5Q@_7H=hf%j&;R+KbDsbE
z#vHgfruVDd<OE~P7nR0%@GxfLaeNg|p&L_}g?(6x1J?WKqMjRd`hA#9J%Bk_f+aW?
zHLf1DP8_vvW7H(m13#tV6&hM?$6hR;p2R#ngmbV9-@@Ne0eh;98HWYdaxA3&Hr8Sc
z-^B0m6CA=~3|AX78P`=OjafipHw{{-8w1#nF1(70_$H3Udzg=pt*#nl%BlO2n9LHK
zf?uN6=|Ue~z==473hW*#19Otgos=y^MZOe^umNY|F5BLPrPNcHiC0mXxq;f~A!;KR
ztLq3RqWY(y7elBcsjx1`bcX9GWYN)NI}(^dy&aXRPSk?O(T&}x1$)theW>|AqvrjJ
z`ha0nV2@DqvQ{_&<fHm0;dD;eL?}$6p%FJ?2P%alsFXiOT~hZ-XQ3eKa+agMD1ti6
zD0=Zjbm2DCQSC$pl0-iqLuL90EMR{#KtT~+L8b6I>WltP4<G>4MxIs927Xk35S5`a
zd<|<+cW5grfKCi?tM}RV)M{tmB~<Evm+WtDQ^>|qRAkRF7kz7-jf3c+J`=TZ7_~tK
zDpSia2ODudCXlR~6Bxk<*5W#6d>r+m?U;W5-%wDBPNB}`M_d0Bb?HV?69VrVGYe;-
zQXa=Qunm=oE>s47Laj4`3UCxdSQv9YqzV^NUmer=Q`k?#Z0tu(c!Xmy=RN1P7hwtY
zVw{K7$mKEZsEnLMFLtBGrBE3evF&$I>;8pWH?Q6abV@z>ub?4JLlAeO1|CGEyazSm
zJnHgX!UDXB`S=g&?!2)5?goyDdJ!(cTCBmZQR@t$p6?A*hHfV*_$j==5c<~|Gajqa
zhnsLOw%}>Jk74|Fo%1Ig!1>gl;W!Mv?_{P1bu=y3W2pW?RHpyHR!q9r8#9AKC+ZfT
zL4NDz7gXe)xRa4ORLYyN43DA$>Bj*6hZ8Vw1OIz`9d(J<qK@PvoQnHVnK^?|z5lxu
zcF-`L$G;elU>;t^47`Pk{0>&(6I2S{+2p)}DC!7SSYxQW5J$bLk5PA|8Fj>M=*PpD
ze*fnvL}<8(T4)qC@fj+GS(}{&La6o#Du89EBdS4Nwz#zkHEtK`XgW|E_t^en)CXO|
zY!&{s9ZyjKxIajF{bi+@;l&FUroxL>ddDZ4wzuwXY5r_`+n%Y3rq2h@CbkTIzazD;
HvSac~^>FsY

diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
index 36664917..e0284c7a 100644
--- a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: vichan\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-04-20 00:49+0200\n"
-"PO-Revision-Date: 2014-04-20 14:56+0000\n"
+"PO-Revision-Date: 2014-04-20 19:50+0000\n"
 "Last-Translator: cicus <mercurio@index.hu>\n"
 "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n"
 "MIME-Version: 1.0\n"
@@ -1190,7 +1190,7 @@ msgstr "Név"
 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91
 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47
 msgid "Email"
-msgstr "Elektronikus levélcím"
+msgstr "Email"
 
 #. line 23
 #. line 46

From 729b7f940d6096b26f6a6f51597c3158b8ad2392 Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Mon, 21 Apr 2014 01:19:34 +0200
Subject: [PATCH 12/14] compact-boardlist.js: allow direct board links

---
 js/compact-boardlist.js | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/js/compact-boardlist.js b/js/compact-boardlist.js
index e5add303..89687977 100644
--- a/js/compact-boardlist.js
+++ b/js/compact-boardlist.js
@@ -54,6 +54,11 @@ if (device_type == 'desktop') {
         $('<a class="cb-item cb-fa" href="'+categories[i].boards[0].href+'"><i class="fa-'+icon+' fa"></i></a>')
           .appendTo(topbl)
       }
+      else if (item.name.match(/^d_/)) {
+        var icon = item.name.replace(/^d_/, '')
+        $('<a class="cb-item cb-cat" href="'+categories[i].boards[0].href+'">'+icon+'</a>')
+          .appendTo(topbl)
+      }
       else {
         $("<a class='cb-item cb-cat' href='javascript:void(0)'>"+item.name+"</a>")
  	  .appendTo(topbl)

From cd489918a894af9a3faaee582194b8bb6b66cdbf Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Mon, 21 Apr 2014 02:41:01 +0200
Subject: [PATCH 13/14] config.php: i18n one more message

---
 inc/config.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inc/config.php b/inc/config.php
index f150f22f..a4d1c6d5 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -1208,7 +1208,7 @@
 	// When moving a thread to another board and choosing to keep a "shadow thread", an automated post (with
 	// a capcode) will be made, linking to the new location for the thread. "%s" will be replaced with a
 	// standard cross-board post citation (>>>/board/xxx)
-	$config['mod']['shadow_mesage'] = 'Moved to %s.';
+	$config['mod']['shadow_mesage'] = _('Moved to %s.');
 	// Capcode to use when posting the above message.
 	$config['mod']['shadow_capcode'] = 'Mod';
 	// Name to use when posting the above message. If false, $config['anonymous'] will be used.

From 0f5c6b460a6307cf02792344165fc56f772094ab Mon Sep 17 00:00:00 2001
From: czaks <marcin@6irc.net>
Date: Mon, 21 Apr 2014 15:38:18 +0200
Subject: [PATCH 14/14] fix themes resetting the board

---
 inc/functions.php | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/inc/functions.php b/inc/functions.php
index 14f874c5..820ee838 100644
--- a/inc/functions.php
+++ b/inc/functions.php
@@ -326,13 +326,23 @@ function create_antibot($board, $thread = null) {
 	return _create_antibot($board, $thread);
 }
 
-function rebuildThemes($action, $board = false) {
+function rebuildThemes($action, $boardname = false) {
+	global $config, $board;
+
+	// Save the global variables
+	$_config = $config;
+	$_board = $board;
+
 	// List themes
 	$query = query("SELECT `theme` FROM ``theme_settings`` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error());
 
 	while ($theme = $query->fetch(PDO::FETCH_ASSOC)) {
-		rebuildTheme($theme['theme'], $action, $board);
+		rebuildTheme($theme['theme'], $action, $boardname);
 	}
+
+	// Restore them
+	$config = $_config;
+	$board = $_board;
 }