diff --git a/README.md b/README.md
index 000fb32f..c2d57135 100644
--- a/README.md
+++ b/README.md
@@ -103,6 +103,21 @@ Wanting to have vichan in your language? You can contribute your translations at
https://www.transifex.com/projects/p/tinyboard-vichan-devel/
+Oekaki
+------
+vichan makes use of [wPaint](https://github.com/websanova/wPaint) for oekaki. After you pull the repository, however, you will need to download wPaint separately using git's `submodule` feature. Use the following commands:
+
+```
+git submodule init
+git submodule update
+```
+
+To enable oekaki, add all the scripts listed in `js/oekaki.js` to your `instance-config.php`.
+
+WebM support
+------------
+Read `inc/lib/webm/README.md` for information about enabling webm.
+
License
--------
See [LICENSE.md](http://github.com/vichan-devel/vichan/blob/master/LICENSE.md).
diff --git a/inc/config.php b/inc/config.php
index acb189f3..83b298ee 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -538,7 +538,7 @@
$config['user_flag'] = false;
// List of user_flag the user can choose. Flags must be placed in the directory set by $config['uri_flags']
- $config['user_flags'] = [];
+ $config['user_flags'] = array();
/* example:
$config['user_flags'] = array (
'nz' => 'Nazi',
@@ -1528,6 +1528,23 @@
// // ...
// };
+ // You can also enable themes (like ukko) in mod panel like this:
+ // require_once("templates/themes/ukko/theme.php");
+ //
+ // $config['mod']['custom_pages']['/\*/'] = function() {
+ // global $mod;
+ //
+ // $ukko = new ukko();
+ // $ukko->settings = array();
+ // $ukko->settings['uri'] = '*';
+ // $ukko->settings['title'] = 'derp';
+ // $ukko->settings['subtitle'] = 'derpity';
+ // $ukko->settings['thread_limit'] = 15;
+ // $ukko->settings['exclude'] = '';
+ //
+ // echo $ukko->build($mod);
+ // };
+
// Example: Add links to dashboard (will all be in a new "Other" category).
// $config['mod']['dashboard_links']['Something'] = '?/something';
diff --git a/inc/display.php b/inc/display.php
index 51fedf46..bcde41d0 100644
--- a/inc/display.php
+++ b/inc/display.php
@@ -82,7 +82,7 @@ function error($message, $priority = true, $debug_stuff = false) {
if (defined('STDIN')) {
// Running from CLI
echo('Error: ' . $message . "\n");
- debug_print_backtrace();
+ debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
die();
}
diff --git a/inc/functions.php b/inc/functions.php
index d45f5f76..1cadbb6e 100644
--- a/inc/functions.php
+++ b/inc/functions.php
@@ -204,7 +204,7 @@ function loadConfig() {
if (!isset($config['user_flag']))
$config['user_flag'] = false;
if (!isset($config['user_flags']))
- $config['user_flags'] = [];
+ $config['user_flags'] = array();
if ($config['root_file']) {
chdir($config['root_file']);
diff --git a/inc/locale/eo/LC_MESSAGES/tinyboard.mo b/inc/locale/eo/LC_MESSAGES/tinyboard.mo
index ea8eb5f9..b3d36bc1 100644
Binary files a/inc/locale/eo/LC_MESSAGES/tinyboard.mo and b/inc/locale/eo/LC_MESSAGES/tinyboard.mo differ
diff --git a/inc/locale/eo/LC_MESSAGES/tinyboard.po b/inc/locale/eo/LC_MESSAGES/tinyboard.po
index 2dc8b77f..78fba862 100644
--- a/inc/locale/eo/LC_MESSAGES/tinyboard.po
+++ b/inc/locale/eo/LC_MESSAGES/tinyboard.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-21 21:04+0200\n"
-"PO-Revision-Date: 2014-04-25 23:26+0000\n"
+"PO-Revision-Date: 2014-04-30 18:20+0000\n"
"Last-Translator: neniu
Your file's size: %filesz% bytes"
-msgstr "Peso máximo del archivo: %maxsz% bytes
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: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:1014
-#, php-format
-msgid "That file already exists!"
-msgstr "Ese archivo ya existe!"
-
-#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
-#: ../../../../inc/config.php:995 ../../../../inc/config.php:997
-#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
-#, php-format
-msgid "That file already exists in this thread!"
-msgstr "Ese archivo ya existe 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: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: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: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: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:1022
-#, php-format
-msgid ""
-"You are only allowed to unban %s users at a time. You tried to unban %u "
-"users."
-msgstr "Sólo estás permitido desbanear %s usuarios a la vez. Has intentado desbanear %u usuarios."
-
-#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
-#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
-#: ../../../../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: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:1025
-msgid ""
-"Invalid username and/or password. Your user may have been deleted or "
-"changed."
-msgstr "Nombre de usuario y/o contraseña no válida. Puede que tu usuario fue eliminado o modificado."
-
-#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
-#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
-#: ../../../../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: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: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: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: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: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: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: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:1034
-#, php-format
-msgid "That mod already exists!"
-msgstr "Ese mod ya existe!"
-
-#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
-#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
-#: ../../../../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: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."
-
-#. Default public ban message. In public ban messages, %length% is replaced
-#. with "for x days" or
-#. "permanently" (with %LENGTH% being the uppercase equivalent).
-#. Default public ban message. In public ban messages, %length% is replaced
-#. with "for x days" or
-#. "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:1203
-msgid "USER WAS BANNED FOR THIS POST"
-msgstr "USUARIO FUE BANEADO DE ESTE POST"
-
-#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64
-msgid "Confirm action"
-msgstr "Confirmar acción"
-
-#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108
-msgid "Could not find current version! (Check .installed)"
-msgstr "No se pudo encontrar la versión actual! (Comprueba .installed)"
-
-#: ../../../../inc/mod/pages.php:162
-msgid "Dashboard"
-msgstr "Panel del tablón"
-
-#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265
-msgid "There are no boards to search!"
-msgstr "No hay ningún tablón para buscar!"
-
-#. $results now contains the search results
-#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334
-msgid "Search results"
-msgstr "Buscar resultados"
-
-#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438
-msgid "Edit board"
-msgstr "Editar tablón"
-
-#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491
-msgid "Couldn't open board after creation."
-msgstr "No se pudo abrir el tablón después de la creación."
-
-#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511
-msgid "New board"
-msgstr "Nuevo tablón"
-
-#. line 37
-#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121
-msgid "Noticeboard"
-msgstr "Tablón de noticias"
-
-#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194
-msgid "News"
-msgstr "Noticias"
-
-#: ../../../../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 "Log de moderación"
-
-#. line 104
-#. line 20
-#. line 18
-#. line 104
-#. line 20
-#. line 18
-#. line 104
-#. line 20
-#. line 18
-#. line 104
-#. line 20
-#. line 18
-#. line 104
-#. line 20
-#. line 18
-#. line 104
-#. line 20
-#. line 18
-#. line 104
-#. line 20
-#. line 104
-#. line 20
-#. line 18
-#. 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 "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 "Nuevo baneo"
-
-#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256
-msgid "Ban list"
-msgstr "Lista de baneos"
-
-#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165
-msgid "Move reply"
-msgstr "Mover respuesta"
-
-#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191
-msgid "Target and source board are the same."
-msgstr "El tablón objetivo y el tablón original son lo mismo."
-
-#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357
-msgid "Impossible to move thread; there is only one board."
-msgstr "Imposible al mover hilo; sólo hay un tablón."
-
-#. line 39
-#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361
-#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114
-msgid "Move thread"
-msgstr "Mover hilo"
-
-#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751
-#: ../../../../inc/mod/pages.php:1775
-msgid "Edit user"
-msgstr "Editar usuarios"
-
-#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274
-msgid "Manage users"
-msgstr "Gestionar usuarios"
-
-#. 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 "Nuevo MP para"
-
-#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952
-msgid "Private message"
-msgstr "Mensaje privado"
-
-#. line 68
-#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200
-msgid "PM inbox"
-msgstr "Bandeja de MP"
-
-#: ../../../../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 "Reconstruir"
-
-#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238
-msgid "Report queue"
-msgstr "Reportar cola"
-
-#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210
-#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350
-msgid "Config editor"
-msgstr "Configurar editor"
-
-#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367
-msgid "Themes directory doesn't exist!"
-msgstr "El directorio de temas no existe!"
-
-#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369
-msgid "Cannot open themes directory; check permissions."
-msgstr "No se pudo abrir el directorio de tema; comprueba los permisos."
-
-#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291
-msgid "Manage themes"
-msgstr "Gestionar temas"
-
-#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453
-#, php-format
-msgid "Installed theme: %s"
-msgstr "Tema instalado: %s"
-
-#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464
-#, php-format
-msgid "Configuring theme: %s"
-msgstr "Configurando tema: %s"
-
-#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493
-#, php-format
-msgid "Rebuilt theme: %s"
-msgstr "Reconstruir tema: %s"
-
-#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532
-msgid "Debug: Anti-spam"
-msgstr "Depurar: Anti-spam"
-
-#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566
-msgid "Debug: Recent posts"
-msgstr "Depurar: Posts recientes"
-
-#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590
-msgid "Debug: SQL"
-msgstr "Depurar: SQL"
-
-#. Print error
-#: ../../../../inc/database.php:72 ../../../../inc/database.php:94
-msgid "Database error: "
-msgstr "Error de la base de datos: "
-
-#: ../../../../banned.php:4
-msgid "Banned?"
-msgstr "Baneado?"
-
-#: ../../../../banned.php:5
-msgid "You are not banned."
-msgstr "No estás baneado."
-
-#. line 6
-#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41
-#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44
-msgid "Go back"
-msgstr "Volver atrás"
-
-#. line 13
-#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56
-#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59
-msgid "Error information"
-msgstr "Información errónea"
-
-#. line 2
-#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
-#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25
-msgid "Delete Post"
-msgstr "Eleminar Post"
-
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 84
-#. line 3
-#. line 97
-#. 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"
-
-#. line 132
-#. line 14
-#. line 132
-#. line 14
-#. line 131
-#. line 14
-#. line 131
-#. line 14
-#. line 131
-#. line 14
-#. line 131
-#. line 21
-#. line 14
-#. line 131
-#. line 14
-#. line 144
-#. line 14
-#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
-#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31
-#: ../../../../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"
-
-#. line 8
-#. line 108
-#. line 32
-#. line 9
-#. line 23
-#. line 8
-#. line 108
-#. line 32
-#. line 8
-#. line 32
-#. line 23
-#. line 8
-#. line 108
-#. line 32
-#. line 9
-#. line 23
-#. line 8
-#. line 5
-#. line 8
-#. line 108
-#. line 32
-#. line 9
-#. line 23
-#. line 5
-#. line 8
-#. line 108
-#. line 32
-#. line 9
-#. line 23
-#. line 48
-#. line 5
-#. line 8
-#. line 108
-#. line 32
-#. line 9
-#. line 23
-#. line 48
-#. line 5
-#. line 8
-#. line 108
-#. line 32
-#. line 5
-#. line 8
-#. line 108
-#. line 32
-#. line 23
-#. 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
-#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77
-#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141
-msgid "Reason"
-msgstr "Razón"
-
-#. line 10
-#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44
-#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47
-msgid "Report"
-msgstr "Reportar"
-
-#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149
-#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134
-#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65
-#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137
-#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153
-#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68
-#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71
-#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120
-#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138
-msgid "Return to dashboard"
-msgstr "Volver al Panel del tablón"
-
-#. line 39
-#. line 33
-#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143
-#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146
-#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134
-msgid "Posting mode: Reply"
-msgstr "Respondiendo"
-
-#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147
-#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200
-#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150
-#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203
-#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138
-#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186
-msgid "Return"
-msgstr "Volver"
-
-#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61
-#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64
-msgid "(No news to show.)"
-msgstr "(Ninguna noticia para mostrar.)"
-
-#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144
-#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88
-msgid "no subject"
-msgstr "sin tema"
-
-#. line 44
-#. line 56
-#. line 44
-#. line 56
-#. line 44
-#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153
-#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94
-msgid "by"
-msgstr "por"
-
-#. line 50
-#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157
-#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98
-msgid "at"
-msgstr "en"
-
-#. line 28
-#. line 26
-#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99
-#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102
-#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88
-msgid "1 reply"
-msgid_plural "%count% replies"
-msgstr[0] "1 respuesta"
-msgstr[1] "%count% respuestas"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105
-msgid "File:"
-msgstr "Archivo:"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209
-#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128
-msgid "Spoiler Image"
-msgstr "Spoiler"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304
-msgid "Reply"
-msgstr "Responder"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318
-msgid "View All"
-msgstr "Ver todo"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335
-msgid "Last 1 Post"
-msgid_plural "Last %count% Posts"
-msgstr[0] "Último post"
-msgstr[1] "Últimos %count% posts"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372
-msgid "1 post"
-msgid_plural "%count% posts"
-msgstr[0] "1 post"
-msgstr[1] "%count% posts"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378
-msgid "and"
-msgstr "y"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390
-msgid "1 image reply"
-msgid_plural "%count% image replies"
-msgstr[0] "1 imagen"
-msgstr[1] "%count% imágenes"
-
-#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682
-#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395
-msgid "omitted. Click reply to view."
-msgstr "omitidos. Click Responder para ver."
-
-#. line 7
-#. line 14
-#. line 7
-#. line 14
-#. line 8
-#. line 14
-#. line 7
-#. line 8
-#. line 14
-#. line 8
-#. line 14
-#. line 8
-#. line 14
-#. line 7
-#. line 8
-#. line 7
-#. line 14
-#. line 8
-#. line 14
-#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:42
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:48
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:69
-#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:33
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40
msgid "Name"
-msgstr "Nombre"
+msgstr "Nimi"
-#. line 15
-#. line 24
-#. line 15
-#. line 24
-#. line 15
-#. line 24
-#. line 15
-#. line 24
-#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:44
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:88
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91
-#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47
msgid "Email"
msgstr "Email"
-#. line 23
-#. line 46
-#. line 23
-#. line 46
-#. line 12
-#. line 24
-#. line 46
-#. line 23
-#. line 12
-#. line 46
-#. line 12
-#. line 46
-#. line 12
-#. line 46
-#. line 23
-#. line 12
-#. line 24
-#. line 46
-#. line 12
-#. line 46
-#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:76
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:150
-#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:61
msgid "Subject"
-msgstr "Tema"
+msgstr "Aihe"
-#. line 27
-#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68
-#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71
-msgid "Update"
-msgstr "Actualización"
-
-#. line 32
-#. line 57
-#. line 32
-#. line 57
-#. line 32
-#. line 57
-#. line 32
-#. line 57
-#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:76
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181
-#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79
msgid "Comment"
-msgstr "Comentario"
+msgstr "Viesti"
-#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97
-#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100
-msgid "Currently editing raw HTML."
-msgstr "Actualmente editando HTML puro."
-
-#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105
-#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108
-msgid "Edit markup instead?"
-msgstr "Editar marcado en su lugar?"
-
-#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115
-#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118
-msgid "Edit raw HTML instead?"
-msgstr "Editar HTML puro en su lugar?"
-
-#. line 73
-#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226
-#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229
msgid "Verification"
-msgstr "Verificación"
+msgstr "Varmennus"
-#. 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"
+msgid "File"
+msgstr "Tiedosto"
-#. 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"
+msgstr "Upote"
-#. 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"
+msgstr "Arvot"
-#. line 116
-#. line 117
-#. line 116
-#. line 117
-#. line 116
-#. line 117
-#. line 116
-#. line 117
-#. line 115
-#. line 116
-#. line 115
-#. line 116
-#. line 115
-#. line 116
-#. line 115
-#. line 116
-#. line 115
-#. line 116
-#. line 115
-#. line 116
-#. line 115
-#. line 116
-#. line 128
-#. line 129
-#. 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"
+msgid "Password"
+msgstr "Salasana"
-#. line 120
-#. line 121
-#. line 120
-#. line 121
-#. line 120
-#. line 121
-#. line 120
-#. line 121
-#. line 119
-#. line 120
-#. line 119
-#. line 120
-#. line 119
-#. line 120
-#. line 119
-#. line 120
-#. line 119
-#. line 120
-#. line 119
-#. line 120
-#. line 119
-#. line 120
-#. line 132
-#. line 133
-#. 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"
-
-#. line 124
-#. line 125
-#. line 124
-#. line 125
-#. line 124
-#. line 125
-#. line 124
-#. line 125
-#. line 123
-#. line 124
-#. line 123
-#. line 124
-#. line 123
-#. line 124
-#. line 123
-#. line 124
-#. line 123
-#. line 124
-#. line 123
-#. line 124
-#. line 123
-#. line 124
-#. line 136
-#. line 137
-#. 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.)"
+msgstr "(Tiedoston poistoon.)"
-#: ../../../../search.php:5
-msgid "Post search is disabled"
-msgstr "El buscador de posts está desactivado"
+msgid "Spoiler Image"
+msgstr "Spoiler Image"
-#: ../../../../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."
+msgid "Return"
+msgstr "Takaisin"
-#: ../../../../search.php:131 ../../../../search.php:135
-msgid "Query too broad."
-msgstr "Query muy extenso."
+msgid "Posting mode: Reply"
+msgstr "Viestin tyyppi: Vastaus"
-#: ../../../../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"
+msgid "Reply"
+msgstr "Vastaa"
-#: ../../../../search.php:163 ../../../../search.php:167
-msgid "No results."
-msgstr "Ningún resultado."
+msgid "Sticky"
+msgstr "Sticky"
-#. line 115
-#. line 16
-#. line 115
-#. line 16
-#. line 115
-#. line 16
-#. line 115
-#. line 16
-#. line 2
-#. line 13
-#. line 115
-#. line 16
-#. line 2
-#. line 13
-#. line 115
-#. line 16
-#. line 2
-#. line 13
-#. line 115
-#. line 16
-#. line 2
-#. line 13
-#. line 2
-#. line 115
-#. line 16
-#. line 2
-#. line 13
-#. line 2
-#. line 115
-#. line 16
-#. line 2
-#. line 13
-#. line 115
-#. line 16
-#. line 115
-#. line 16
-#. line 2
-#. line 13
-#: ../../../../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"
+msgid "Lock"
+msgstr "Lukko"
-#: ../../../../inc/mod/pages.php:939
-msgid "Ban appeal not found!"
-msgstr "Apelación del ban no encontrado!"
+msgid "Raw HTML"
+msgstr "Raaka HTML"
-#: ../../../../inc/mod/pages.php:989
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265
-msgid "Ban appeals"
-msgstr "Apelaciones de bans"
+msgid "Delete Post"
+msgstr "Poista Viesti"
-#: ../../../../inc/mod/pages.php:1833
-msgid "New user"
-msgstr "Nuevo usuario"
+msgid "Delete"
+msgstr "Poista"
-#: ../../../../inc/mod/pages.php:1888
-msgid "Impossible to promote/demote user."
-msgstr "Imposible al ascender/degradar usuario."
+msgid "Reason"
+msgstr "Syy"
-#: ../../../../inc/mod/pages.php:2612
-msgid "Debug: APC"
-msgstr "Depurar: APC"
+msgid "Report"
+msgstr "Report"
-#: ../../../../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: "
-msgstr "Tu código contiene errores de sintaxis PHP. Por favor, vuelve atrás y corrigelo. PHP dice: "
+msgid "Previous"
+msgstr "Edellinen"
-#. line 2
-#. line 6
-#. line 2
-#. line 6
-#. line 2
-#. line 46
-#. line 6
-#. line 2
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139
-msgid "Boards"
-msgstr "Tablones"
+msgid "Next"
+msgstr "Seuraava"
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215
-msgid "edit"
-msgstr "editar"
+msgid "Return to dashboard"
+msgstr "Palaa hallintaan"
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97
-msgid "Create new board"
-msgstr "Crear nuevo tablón"
+msgid "PM Inbox"
+msgstr "Viestilaatikko"
-#. line 32
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108
-msgid "Messages"
-msgstr "Mensajes"
+msgid "empty"
+msgstr "tyhjä"
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188
-msgid "View all noticeboard entries"
-msgstr "Ver todas las entradas del tablón de noticias"
+msgid "unread"
+msgstr "lukematon"
-#. line 76
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222
-msgid "Administration"
-msgstr "Administración"
+msgid "No private messages for you."
+msgstr "Sinulle ei ole uusia viestejä."
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282
-msgid "Change password"
-msgstr "Cambiar contraseña"
+msgid "Manage users"
+msgstr "Hallitse käyttäjiä"
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318
-msgid "Configuration"
-msgstr "Configuración"
-
-#. line 127
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357
-msgid "Other"
-msgstr "Otro"
-
-#. line 139
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391
-msgid "Debug"
-msgstr "Depurar"
-
-#. line 141
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396
-msgid "Anti-spam"
-msgstr "Anti-spam"
-
-#. line 142
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400
-msgid "Recent posts"
-msgstr "Post recientes"
-
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407
-msgid "SQL"
-msgstr "SQL"
-
-#. line 164
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446
-msgid "User account"
-msgstr "Cuenta de usuario"
-
-#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454
-msgid "Logout"
-msgstr "Cerrar sesión"
-
-#. line 3
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27
-msgid "New post"
-msgstr "Nuevo post"
-
-#. line 16
-#. line 28
-#. line 16
-#. line 28
-#. line 16
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83
-msgid "Body"
-msgstr "Cuerpo"
-
-#. line 21
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63
-msgid "Post to noticeboard"
-msgstr "Postear en el tablón de noticias"
-
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118
-msgid "delete"
-msgstr "eliminar"
-
-#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197
-#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70
-#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42
-#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415
-msgid "deleted?"
-msgstr "eliminado?"
-
-#. line 33
-#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91
-msgid "Post news entry"
-msgstr "Postear nueva entrada"
-
-#. line 24
-#. line 63
-#. line 152
-#. line 182
-#. line 15
-#. line 67
-#. line 24
-#. line 63
-#. line 152
-#. line 182
-#. line 67
-#. line 24
-#. line 63
-#. line 152
-#. line 182
-#. line 15
-#. line 3
-#. line 67
-#. line 24
-#. line 63
-#. line 152
-#. line 182
-#. line 15
-#. line 67
-#. line 24
-#. line 63
-#. line 152
-#. line 182
-#. line 15
-#. line 3
-#. line 67
-#. line 17
-#. line 54
-#. line 133
-#. line 24
-#. line 63
-#. line 152
-#. line 182
-#. line 15
-#. line 3
-#. line 67
-#. line 17
-#. line 54
-#. line 133
-#. line 24
-#. line 63
-#. line 152
-#. line 182
-#. line 24
-#. line 63
-#. line 152
-#. line 182
-#. line 67
-#. 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
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183
-#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371
-msgid "Staff"
-msgstr "Staff"
-
-#. line 25
-#. line 68
-#. line 25
-#. line 68
-#. line 25
-#. line 68
-#. line 25
-#. line 68
-#. line 25
-#. line 68
-#. line 18
-#. line 25
-#. line 68
-#. line 18
-#. line 25
-#. line 68
-#. 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 "Nota"
-
-#. line 26
-#. line 22
-#. line 26
-#. line 19
-#. line 26
-#. line 19
-#. line 26
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89
-#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67
-msgid "Date"
-msgstr "Fecha"
-
-#. line 25
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88
-msgid "Actions"
-msgstr "Acciones"
-
-#. line 49
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154
-msgid "remove"
-msgstr "eliminar"
-
-#. line 76
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208
-msgid "New note"
-msgstr "Nueva nota"
-
-#. line 94
-#. line 7
-#. line 94
-#. line 7
-#. line 94
-#. line 7
-#. line 94
-#. line 7
-#. line 94
-#. line 7
-#. line 94
-#. line 7
-#. 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 "Estado"
-
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44
-msgid "Expired"
-msgstr "Expirado"
-
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50
-msgid "Active"
-msgstr "Activo"
-
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91
-msgid "no reason"
-msgstr "Sin razón"
-
-#. line 118
-#. line 184
-#. line 65
-#. line 10
-#. line 33
-#. line 118
-#. line 184
-#. line 65
-#. line 33
-#. line 118
-#. line 184
-#. line 65
-#. line 10
-#. line 6
-#. line 33
-#. line 3
-#. line 118
-#. line 184
-#. line 65
-#. line 10
-#. line 33
-#. line 3
-#. line 118
-#. line 184
-#. line 65
-#. line 10
-#. line 6
-#. line 33
-#. line 49
-#. line 136
-#. line 3
-#. line 95
-#. line 118
-#. line 184
-#. line 65
-#. line 10
-#. line 6
-#. line 33
-#. line 49
-#. line 136
-#. line 3
-#. line 118
-#. line 184
-#. line 65
-#. line 3
-#. line 118
-#. line 184
-#. line 65
-#. line 33
-#. 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
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101
-#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38
-#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263
-msgid "Board"
-msgstr "Tablón"
-
-#. line 71
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323
-#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227
-msgid "all boards"
-msgstr "Todos los tablones"
-
-#. line 128
-#. line 11
-#. line 43
-#. line 128
-#. line 43
-#. line 128
-#. line 11
-#. line 43
-#. line 128
-#. line 11
-#. line 43
-#. line 128
-#. line 11
-#. line 43
-#. line 50
-#. line 128
-#. line 11
-#. line 43
-#. line 50
-#. line 128
-#. line 43
-#. 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 "Conjunto"
-
-#. line 132
-#. line 13
-#. line 47
-#. line 132
-#. line 47
-#. line 132
-#. line 13
-#. line 47
-#. line 132
-#. line 13
-#. line 47
-#. line 132
-#. line 13
-#. line 47
-#. line 52
-#. line 132
-#. line 13
-#. line 47
-#. line 52
-#. line 132
-#. line 47
-#. 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 "Expira"
-
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267
-msgid "never"
-msgstr "nunca"
-
-#. line 142
-#. line 14
-#. line 57
-#. line 142
-#. line 57
-#. line 142
-#. line 14
-#. line 57
-#. line 142
-#. line 14
-#. line 57
-#. line 142
-#. line 14
-#. line 57
-#. line 53
-#. line 142
-#. line 14
-#. line 57
-#. line 53
-#. line 142
-#. line 57
-#. 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 "Visto"
-
-#: ../../../../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 "Sí"
-
-#: ../../../../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 "No"
-
-#. line 163
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419
-msgid "Remove ban"
-msgstr "Eliminar baneo"
-
-#. line 183
-#. line 5
-#. line 183
-#. line 5
-#. line 135
-#. line 94
-#. line 183
-#. line 5
-#. line 135
-#. line 183
-#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468
-#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259
-msgid "Time"
-msgstr "Tiempo"
-
-#. line 185
-#. line 89
-#. line 185
-#. line 89
-#. line 185
-#. line 7
-#. line 89
-#. line 185
-#. line 89
-#. line 185
-#. line 7
-#. line 89
-#. line 137
-#. line 96
-#. line 185
-#. line 7
-#. line 89
-#. line 137
-#. line 185
-#. line 89
-#. 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 "Acción"
-
-#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73
-msgid "(or subnet)"
-msgstr "(o subred)"
-
-#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88
-msgid "hidden"
-msgstr "oculto"
-
-#. line 41
-#. line 27
-#. line 41
-#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117
-#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92
-msgid "Message"
-msgstr "Mensaje"
-
-#. line 46
-#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133
-msgid "public; attached to post"
-msgstr "público; adjunto al post"
-
-#. line 58
-#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150
-msgid "Length"
-msgstr "Longitud"
-
-#. line 88
-#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212
-msgid "New Ban"
-msgstr "Nuevo Ban"
-
-#. line 2
-#. line 5
-#. line 2
-#. line 5
-#. line 2
-#. line 5
-#. line 2
-#. line 5
-#. line 2
-#. line 5
-#. line 2
-#. line 5
-#. line 2
-#. line 5
-#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
-#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
-msgid "Phrase:"
-msgstr "Frase:"
-
-#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38
-msgid "Posts"
-msgstr "Posts"
-
-#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49
-msgid "IP address notes"
-msgstr "Notas por dirección IP"
-
-#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62
-msgid "Bans"
-msgstr "Bans"
-
-#. 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 "(Buscar entre minúsculas-mayúsculas y en base a tags. Para encontrar la frase exacta, usa \"citas\". Usa un asterisco (*) para comodín."
-
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25
-msgid "There are no active bans."
-msgstr "No hay ningún ban activo."
-
-#. line 8
-#. line 47
-#. line 8
-#. line 47
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137
-msgid "IP address/mask"
-msgstr "Dirección IP"
-
-#. line 12
-#. line 51
-#. line 12
-#. line 51
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153
-msgid "Duration"
-msgstr "Duración"
-
-#. line 92
-#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269
-msgid "Unban selected"
-msgstr "Desban seleccionado"
-
-#. line 6
-#. line 4
-#. line 6
-#. line 4
-#. line 11
-#. line 6
-#. line 4
-#. line 6
-#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45
-msgid "Username"
-msgstr "Nombre de usuario"
-
-#. line 23
-#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60
-msgid "Continue"
-msgstr "Continuar"
-
-#. line 80
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210
-msgid "Appeal time"
-msgstr "Apelar tiempo"
-
-#. line 84
-#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220
-msgid "Appeal reason"
-msgstr "Apelar razón"
-
-#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31
-msgid "There are no reports."
-msgstr "No hay ningún reporte."
-
-#: ../../../../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: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:836
-msgid "You cannot appeal this ban again."
-msgstr "No puedes volver a apelar este ban."
-
-#: ../../../../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."
-
-#: ../../../../inc/image.php:24 ../../../../inc/image.php:62
-msgid "Unsupported file format: "
-msgstr "Formato de archivo no soportado: "
-
-#: ../../../../inc/image.php:282 ../../../../inc/image.php:288
-msgid "Failed to redraw image!"
-msgstr "Fallo al redibujar la imagen!"
-
-#: ../../../../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 "Fallo al redimensionar la imagen!"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35
-msgid "You were banned! ;_;"
-msgstr "Estabas baneado! ;_;"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41
-msgid "You are banned! ;_;"
-msgstr "Estás baneado! ;_;"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52
-msgid "You were banned from"
-msgstr "Fuiste baneado de"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58
-msgid "You have been banned from"
-msgstr "Has sido baneado de"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82
-msgid "for the following reason:"
-msgstr "por esta razón:"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88
-msgid "for an unspecified reason."
-msgstr "sin niguna razón especificada."
-
-#. line 32
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110
-msgid "Your ban was filed on"
-msgstr "Tu ban fue presentado en"
-
-#. 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 "ya ha expirado. Actualiza la página para continuar."
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129
-msgid "expires"
-msgstr "expira"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133
-msgid "from now, which is on"
-msgstr "a partir de ahora, que está en"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183
-msgid "will not expire"
-msgstr "no va a expirar"
-
-#. line 78
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192
-msgid "Your IP address is"
-msgstr "Tu dirección IP es"
-
-#. line 86
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215
-msgid "You were banned for the following post on"
-msgstr "Fuiste baneado por el siguiente post en"
-
-#. line 95
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239
-msgid "You submitted an appeal for this ban on"
-msgstr "Presentaste una apelación para este ban en"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245
-msgid "It is still pending"
-msgstr "Sigue pendiente"
-
-#. line 101
-#. line 112
-#. line 101
-#. line 112
-#. line 101
-#. line 112
-#. line 101
-#. line 112
-#. line 101
-#. line 112
-#. line 101
-#. line 112
-#. line 101
-#. line 112
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289
-msgid "You appealed this ban on"
-msgstr "Apelaste este ban en"
-
-#. line 103
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265
-msgid "and it was denied. You may not appeal this ban again."
-msgstr "y fue rechazado. No puede volver a apelar este ban."
-
-#: ../../../../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 "Has alcanzado el número máximo de apelaciones permitido. Ya no puedes apelar más este ban. "
-
-#. line 114
-#. line 121
-#. line 114
-#. line 121
-#. line 114
-#. line 121
-#. line 114
-#. line 121
-#. line 114
-#. line 121
-#. line 114
-#. line 121
-#. line 114
-#. line 121
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318
-msgid "and it was denied."
-msgstr "y fue rechazado."
-
-#. line 116
-#. line 123
-#. line 116
-#. line 123
-#. line 116
-#. line 123
-#. line 116
-#. line 123
-#. line 116
-#. line 123
-#. line 116
-#. line 123
-#. line 116
-#. line 123
-#: ../../../../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 "Ya puedes apelar este ban otra vez. Por favor, introduce abajo el porqué."
-
-#. line 119
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310
-msgid "You last appealed this ban on"
-msgstr "Tu última apelación de este ban es"
-
-#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332
-msgid "You may appeal this ban. Please enter your reasoning below."
-msgstr "Ya puedes apelar este ban. Por favor, introduce abajo el porqué."
-
-#. line 4
-#. line 16
-#. line 134
-#. line 93
-#. line 4
-#. line 16
-#. line 134
-#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55
-#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255
-msgid "IP address"
-msgstr "Dirección IP"
-
-#. line 3
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26
msgid "ID"
-msgstr "ID"
+msgstr ""
+
+msgid "Username"
+msgstr "Käyttäjänimi"
+
+msgid "User"
+msgstr "Käyttäjä"
+
+msgid "IP address"
+msgstr "IP osoite"
-#. line 5
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34
msgid "Type"
-msgstr "Tipo"
+msgstr "Tyyppi"
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45
msgid "Last action"
-msgstr "Última acción"
+msgstr "Viimeinen tapahtuma"
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80
-msgid "Unknown"
-msgstr "Desconocido"
+msgid "Boards"
+msgstr "Laudat"
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94
-msgid "none"
-msgstr "nada"
+msgid "Create new board"
+msgstr "Luo uusi lauta"
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174
-msgid "Promote"
-msgstr "Ascender"
+msgid "Create new user"
+msgstr "Luo uusi käyttäjä"
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187
-msgid "Demote"
-msgstr "Degradar"
+msgid "News"
+msgstr "Uutiset"
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191
-msgid "Are you sure you want to demote yourself?"
-msgstr "Estás seguro de degradarte a ti mismo?"
+msgid "no subject"
+msgstr "ei aihetta"
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204
-msgid "log"
-msgstr "log"
+msgid "View all entries"
+msgstr "Näytä kaikki tiedotteet"
-#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226
-msgid "PM"
-msgstr "MP"
+msgid "Dashboard"
+msgstr "Hallinta"
-#. line 6
-#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36
-msgid "Thread ID"
-msgstr "ID Hilo"
+msgid "Noticeboard"
+msgstr "Tiedotteet"
-#. line 14
-#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51
-msgid "Leave shadow thread"
-msgstr "Dejar la sombra del hilo"
+msgid "Report queue"
+msgstr "Ilmiannot"
-#. line 18
-#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58
-msgid "locks thread; replies to it with a link."
-msgstr "bloqueas el hilo; las respuestas irán en un link."
+msgid "Ban list"
+msgstr "Bannit"
-#. line 22
-#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65
-msgid "Target board"
-msgstr "Hilo objetivo"
+msgid "Moderation log"
+msgstr "Moderaatio logi"
-#. line 8
-#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40
-msgid "Select board"
-msgstr "Selecciona un hilo"
+msgid "Rebuild static files"
+msgstr "Rakenna uudelleen"
-#. line 17
-#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73
-msgid ""
-"Search is case-insensitive and based on keywords. To match exact phrases, "
-"use \"quotes\". Use an asterisk (*) for wildcard.
You may apply the following filters to your searches: " -"id, thread, subject, and " -"name. To apply a filter, simply add to your query, for " -"example, name:Anonymous or subject:\"Some Thread\". " -"Wildcards cannot be used in filters." -msgstr "Buscar en minúsculas-mayúsculas y en base a tags. Para encontrar la frase exacta, usa \"citas\". Usa un asterisco (*) para comodín.
Puedes aplicar los siguientes filtros en tus búsquedas: id, hilo, tema, and nombre. Para aplicar un filtro, simplemente añade a tu query, por ejemplo, Nombre:Anónimo o Tema:\"Cualquier tema\". Los comodines no se usa en filtros."
+msgid "Show configuration"
+msgstr "Näytä asetukset"
-#. line 2
-#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25
-msgid "Are you sure you want to do that?"
-msgstr "Estás seguro de hacer eso?"
+msgid "Configuration"
+msgstr "Asetukset"
-#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31
-msgid "Click to proceed to"
-msgstr "Click para prodecer a"
+msgid "Themes"
+msgstr "Teemat"
-#. line 5
-#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39
-msgid ""
-"You are probably seeing this message because Javascript being disabled. This"
-" is a necessary security measure to prevent CSRF attacks."
-msgstr "Probablemente que estás viendo este mensaje porque el Javascript está desactivado. Esto es una medida de seguridad necesaria para prevenir ataques CSRF."
+msgid "Manage themes"
+msgstr "Hallitse teemoja"
-#. line 7
-#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44
-msgid "Report date"
-msgstr ""
+msgid "Search"
+msgstr "Etsi"
-#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54
-msgid "Reported by"
-msgstr ""
+msgid "Phrase:"
+msgstr "Lause tai sana:"
-#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73
-msgid "Discard abuse report"
-msgstr ""
+msgid "(Search is case-insensitive, and based on keywords. To match exact phrases, use \"quotes\". Use an asterisk (*) for wildcard.)"
+msgstr "(Haku etsii sanoja ja lauseita myös muiden lauseiden ja sanojen sisältä. Löytääksesi tietyn fraasin käytä \"lainausmerkkejä\". Voit käyttää myös (*) merkkiä jokerina.)"
-#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93
-msgid "Discard all abuse reports by this IP address"
-msgstr ""
-
-#. line 4
-#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27
-msgid "From"
-msgstr ""
-
-#. line 34
-#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105
-msgid "Delete forever"
-msgstr ""
-
-#. line 39
-#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119
-msgid "Reply with quote"
-msgstr ""
-
-#. line 18
-#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62
-msgid "Send message"
-msgstr ""
-
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25
-msgid "There are no themes available."
-msgstr ""
-
-#. line 11
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50
msgid "Version"
-msgstr ""
+msgstr "Versio"
-#. line 15
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60
msgid "Description"
-msgstr ""
+msgstr "Kuvaus"
-#. line 19
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70
msgid "Thumbnail"
msgstr ""
-#. line 27
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93
-msgid "Use theme"
-msgstr ""
+msgid "Uninstall all themes."
+msgstr "Poista kaikki teemat"
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100
msgid "Reconfigure"
-msgstr ""
+msgstr "Asetukset"
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102
-msgid "Install"
-msgstr ""
+msgid "Rebuild"
+msgstr "Rakenna uudelleen"
-#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123
msgid "Uninstall"
+msgstr "Poista"
+
+msgid "Install"
+msgstr "Asenna"
+
+msgid "Use theme"
+msgstr "Käytä teemaa"
+
+msgid "Actions"
+msgstr "Toiminto"
+
+msgid "Body"
+msgstr "Viesti"
+
+msgid "Ago"
+msgstr "Viesti"
+
+msgid "Board"
+msgstr "Lauta"
+
+msgid "Action"
+msgstr "Tapahtuma"
+
+msgid "Set"
+msgstr "Aseta"
+
+msgid "Expires"
+msgstr "Vanhenee"
+
+msgid "Staff"
+msgstr "Moderaattori"
+
+msgid "all boards"
+msgstr "kaikki laudat"
+
+msgid "Post to news"
+msgstr "Lähetä uutisiin"
+
+msgid "Post to noticeboard"
+msgstr "Lähetä tiedotteisiin"
+
+msgid "Showing all %d reports."
msgstr ""
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72
-msgid "new; optional"
-msgstr ""
+msgid "Logout"
+msgstr "Kirjaudu ulos"
-#. line 32
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98
-msgid "Group"
-msgstr ""
+msgid "Login"
+msgstr "Kirjaudu sisään"
-#. line 56
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161
-msgid "All boards"
-msgstr ""
+msgid "Continue"
+msgstr "Jatka"
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223
-msgid "Create user"
-msgstr ""
+msgid "Administration"
+msgstr "Hallinta"
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229
-msgid "Save changes"
-msgstr ""
-
-#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236
-msgid "Delete user"
-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 ""
-
-#. 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)
-#: ../../../../inc/config.php:1211
-#, php-format
-msgid "Moved to %s."
-msgstr ""
-
-#: ../../../../templates/themes/recent/theme.php:50
-msgid ""
-"Can't build the RecentPosts theme, because there are no boards to be "
-"fetched."
-msgstr ""
diff --git a/inc/locale/lv_LV/LC_MESSAGES/javascript.js b/inc/locale/lv_LV/LC_MESSAGES/javascript.js
new file mode 100644
index 00000000..5c95f723
--- /dev/null
+++ b/inc/locale/lv_LV/LC_MESSAGES/javascript.js
@@ -0,0 +1 @@
+l10n = {"Style: ":"Stils:","File":"Fails","hide":"pasl\u0113pt","show":"par\u0101d\u012bt","Show locked threads":"R\u0101d\u012bt sl\u0113gtos pavedienus","Hide locked threads":"Sl\u0113pt sl\u0113gtos pavedienus","URL":"URL","Select":"Izv\u0113l\u0113ties","hidden":"pasl\u0113pts","Show images":"R\u0101d\u012bt att\u0113lus","Hide images":"Pasl\u0113pt att\u0113lus","Password":"Parole","Delete file only":"Dz\u0113st tikai failu","Delete":"Dz\u0113st","Reason":"Iemesls","Report":"Zi\u0146ot","Click reply to view.":"Nospiest uz atbildes, lai apskat\u012btu","Click to expand":"Nospiest, lai izv\u0113rstu","Hide expanded replies":"Pasl\u0113pt izv\u0113rst\u0101s atbildes","Brush size":"Otas izm\u0113rs","Set text":"Uzst\u0101d\u012bt tekstu","Clear":"Not\u012br\u012bt","Save":"Saglab\u0101t","Load":"Iel\u0101d\u0113t","Toggle eraser":"P\u0101rsl\u0113gt dz\u0113\u0161anu","Get color":"Ieg\u016bt kr\u0101su","Fill":"Aizpild\u012bt","enabled":"iesl\u0113gts","disabled":"izsl\u0113gts"};
\ No newline at end of file
diff --git a/inc/locale/lv_LV/LC_MESSAGES/javascript.po b/inc/locale/lv_LV/LC_MESSAGES/javascript.po
new file mode 100644
index 00000000..2dd47a49
--- /dev/null
+++ b/inc/locale/lv_LV/LC_MESSAGES/javascript.po
@@ -0,0 +1,570 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# diggydoc
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: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:1014
+#, php-format
+msgid "That file already exists!"
+msgstr ""
+
+#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
+#: ../../../../inc/config.php:995 ../../../../inc/config.php:997
+#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
+#, php-format
+msgid "That file already exists 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: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: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: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: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:1022
+#, php-format
+msgid ""
+"You are only allowed to unban %s users at a time. You tried to unban %u "
+"users."
+msgstr ""
+
+#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
+#: ../../../../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: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: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: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: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: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: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: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: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: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: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:1034
+#, php-format
+msgid "That mod already exists!"
+msgstr ""
+
+#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
+#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
+#: ../../../../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:1036
+msgid "Invalid security token! Please go back and try again."
+msgstr ""
+
+#. Default public ban message. In public ban messages, %length% is replaced
+#. with "for x days" or
+#. "permanently" (with %LENGTH% being the uppercase equivalent).
+#. Default public ban message. In public ban messages, %length% is replaced
+#. with "for x days" or
+#. "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:1203
+msgid "USER WAS BANNED FOR THIS POST"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64
+msgid "Confirm action"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108
+msgid "Could not find current version! (Check .installed)"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:162
+msgid "Dashboard"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265
+msgid "There are no boards to search!"
+msgstr ""
+
+#. $results now contains the search results
+#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334
+msgid "Search results"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438
+msgid "Edit board"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491
+msgid "Couldn't open board after creation."
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511
+msgid "New board"
+msgstr ""
+
+#. line 37
+#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121
+msgid "Noticeboard"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194
+msgid "News"
+msgstr ""
+
+#: ../../../../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 ""
+
+#. line 104
+#. line 20
+#. line 18
+#. line 104
+#. line 20
+#. line 18
+#. line 104
+#. line 20
+#. line 18
+#. line 104
+#. line 20
+#. line 18
+#. line 104
+#. line 20
+#. line 18
+#. line 104
+#. line 20
+#. line 18
+#. line 104
+#. line 20
+#. line 104
+#. line 20
+#. line 18
+#. 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 ""
+
+#. 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 ""
+
+#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256
+msgid "Ban list"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165
+msgid "Move reply"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191
+msgid "Target and source board are the same."
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357
+msgid "Impossible to move thread; there is only one board."
+msgstr ""
+
+#. line 39
+#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114
+msgid "Move thread"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751
+#: ../../../../inc/mod/pages.php:1775
+msgid "Edit user"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274
+msgid "Manage users"
+msgstr ""
+
+#. 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 ""
+
+#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952
+msgid "Private message"
+msgstr ""
+
+#. line 68
+#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200
+msgid "PM inbox"
+msgstr ""
+
+#: ../../../../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 ""
+
+#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238
+msgid "Report queue"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210
+#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350
+msgid "Config editor"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367
+msgid "Themes directory doesn't exist!"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369
+msgid "Cannot open themes directory; check permissions."
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291
+msgid "Manage themes"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453
+#, php-format
+msgid "Installed theme: %s"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464
+#, php-format
+msgid "Configuring theme: %s"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493
+#, php-format
+msgid "Rebuilt theme: %s"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532
+msgid "Debug: Anti-spam"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566
+msgid "Debug: Recent posts"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590
+msgid "Debug: SQL"
+msgstr ""
+
+#. Print error
+#: ../../../../inc/database.php:72 ../../../../inc/database.php:94
+msgid "Database error: "
+msgstr ""
+
+#: ../../../../banned.php:4
+msgid "Banned?"
+msgstr ""
+
+#: ../../../../banned.php:5
+msgid "You are not banned."
+msgstr ""
+
+#. line 6
+#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41
+#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44
+msgid "Go back"
+msgstr ""
+
+#. line 13
+#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56
+#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59
+msgid "Error information"
+msgstr ""
+
+#. line 2
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25
+msgid "Delete Post"
+msgstr ""
+
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 97
+#. 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 ""
+
+#. line 132
+#. line 14
+#. line 132
+#. line 14
+#. line 131
+#. line 14
+#. line 131
+#. line 14
+#. line 131
+#. line 14
+#. line 131
+#. line 21
+#. line 14
+#. line 131
+#. line 14
+#. line 144
+#. line 14
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31
+#: ../../../../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 ""
+
+#. line 8
+#. line 108
+#. line 32
+#. line 9
+#. line 23
+#. line 8
+#. line 108
+#. line 32
+#. line 8
+#. line 32
+#. line 23
+#. line 8
+#. line 108
+#. line 32
+#. line 9
+#. line 23
+#. line 8
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 9
+#. line 23
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 9
+#. line 23
+#. line 48
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 9
+#. line 23
+#. line 48
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 5
+#. line 8
+#. line 108
+#. line 32
+#. line 23
+#. 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
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77
+#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141
+msgid "Reason"
+msgstr ""
+
+#. line 10
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47
+msgid "Report"
+msgstr ""
+
+#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134
+#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65
+#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137
+#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153
+#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68
+#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71
+#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120
+#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138
+msgid "Return to dashboard"
+msgstr ""
+
+#. line 39
+#. line 33
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143
+#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146
+#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134
+msgid "Posting mode: Reply"
+msgstr ""
+
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200
+#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150
+#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203
+#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138
+#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186
+msgid "Return"
+msgstr ""
+
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61
+#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64
+msgid "(No news to show.)"
+msgstr ""
+
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144
+#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88
+msgid "no subject"
+msgstr ""
+
+#. line 44
+#. line 56
+#. line 44
+#. line 56
+#. line 44
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153
+#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94
+msgid "by"
+msgstr ""
+
+#. line 50
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157
+#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98
+msgid "at"
+msgstr ""
+
+#. line 28
+#. line 26
+#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99
+#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102
+#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88
+msgid "1 reply"
+msgid_plural "%count% replies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105
+msgid "File:"
+msgstr ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209
+#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128
+msgid "Spoiler Image"
+msgstr ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304
+msgid "Reply"
+msgstr ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318
+msgid "View All"
+msgstr ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335
+msgid "Last 1 Post"
+msgid_plural "Last %count% Posts"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372
+msgid "1 post"
+msgid_plural "%count% posts"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378
+msgid "and"
+msgstr ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390
+msgid "1 image reply"
+msgid_plural "%count% image replies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395
+msgid "omitted. Click reply to view."
+msgstr ""
+
+#. line 7
+#. line 14
+#. line 7
+#. line 14
+#. line 8
+#. line 14
+#. line 7
+#. line 8
+#. line 14
+#. line 8
+#. line 14
+#. line 8
+#. line 14
+#. line 7
+#. line 8
+#. line 7
+#. line 14
+#. line 8
+#. line 14
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:42
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:48
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:69
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:33
+#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40
+msgid "Name"
+msgstr ""
+
+#. line 15
+#. line 24
+#. line 15
+#. line 24
+#. line 15
+#. line 24
+#. line 15
+#. line 24
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:44
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:88
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47
+msgid "Email"
+msgstr ""
+
+#. line 23
+#. line 46
+#. line 23
+#. line 46
+#. line 12
+#. line 24
+#. line 46
+#. line 23
+#. line 12
+#. line 46
+#. line 12
+#. line 46
+#. line 12
+#. line 46
+#. line 23
+#. line 12
+#. line 24
+#. line 46
+#. line 12
+#. line 46
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:76
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:150
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:61
+msgid "Subject"
+msgstr ""
+
+#. line 27
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71
+msgid "Update"
+msgstr ""
+
+#. line 32
+#. line 57
+#. line 32
+#. line 57
+#. line 32
+#. line 57
+#. line 32
+#. line 57
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:76
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79
+msgid "Comment"
+msgstr ""
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100
+msgid "Currently editing raw HTML."
+msgstr ""
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108
+msgid "Edit markup instead?"
+msgstr ""
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118
+msgid "Edit raw HTML instead?"
+msgstr ""
+
+#. line 73
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229
+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 ""
+
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 115
+#. line 116
+#. line 115
+#. line 116
+#. line 115
+#. line 116
+#. line 115
+#. line 116
+#. line 115
+#. line 116
+#. line 115
+#. line 116
+#. line 115
+#. line 116
+#. line 128
+#. line 129
+#. 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 ""
+
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 119
+#. line 120
+#. line 119
+#. line 120
+#. line 119
+#. line 120
+#. line 119
+#. line 120
+#. line 119
+#. line 120
+#. line 119
+#. line 120
+#. line 119
+#. line 120
+#. line 132
+#. line 133
+#. 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 ""
+
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 123
+#. line 124
+#. line 123
+#. line 124
+#. line 123
+#. line 124
+#. line 123
+#. line 124
+#. line 123
+#. line 124
+#. line 123
+#. line 124
+#. line 123
+#. line 124
+#. line 136
+#. line 137
+#. 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 ""
+
+#: ../../../../search.php:5
+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:135
+msgid "Query too broad."
+msgstr ""
+
+#: ../../../../search.php:152 ../../../../search.php:156
+#, php-format
+msgid "%d result in"
+msgid_plural "%d results in"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../../../../search.php:163 ../../../../search.php:167
+msgid "No results."
+msgstr ""
+
+#. line 115
+#. line 16
+#. line 115
+#. line 16
+#. line 115
+#. line 16
+#. line 115
+#. line 16
+#. line 2
+#. line 13
+#. line 115
+#. line 16
+#. line 2
+#. line 13
+#. line 115
+#. line 16
+#. line 2
+#. line 13
+#. line 115
+#. line 16
+#. line 2
+#. line 13
+#. line 2
+#. line 115
+#. line 16
+#. line 2
+#. line 13
+#. line 2
+#. line 115
+#. line 16
+#. line 2
+#. line 13
+#. line 115
+#. line 16
+#. line 115
+#. line 16
+#. line 2
+#. line 13
+#: ../../../../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 ""
+
+#: ../../../../inc/mod/pages.php:939
+msgid "Ban appeal not found!"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:989
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265
+msgid "Ban appeals"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:1833
+msgid "New user"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:1888
+msgid "Impossible to promote/demote user."
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:2612
+msgid "Debug: APC"
+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: "
+msgstr ""
+
+#. line 2
+#. line 6
+#. line 2
+#. line 6
+#. line 2
+#. line 46
+#. line 6
+#. line 2
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38
+#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139
+msgid "Boards"
+msgstr ""
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215
+msgid "edit"
+msgstr ""
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97
+msgid "Create new board"
+msgstr ""
+
+#. line 32
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108
+msgid "Messages"
+msgstr ""
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188
+msgid "View all noticeboard entries"
+msgstr ""
+
+#. line 76
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222
+msgid "Administration"
+msgstr ""
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282
+msgid "Change password"
+msgstr ""
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318
+msgid "Configuration"
+msgstr ""
+
+#. line 127
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357
+msgid "Other"
+msgstr ""
+
+#. line 139
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391
+msgid "Debug"
+msgstr ""
+
+#. line 141
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396
+msgid "Anti-spam"
+msgstr ""
+
+#. line 142
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400
+msgid "Recent posts"
+msgstr ""
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407
+msgid "SQL"
+msgstr ""
+
+#. line 164
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446
+msgid "User account"
+msgstr ""
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454
+msgid "Logout"
+msgstr ""
+
+#. line 3
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27
+msgid "New post"
+msgstr ""
+
+#. line 16
+#. line 28
+#. line 16
+#. line 28
+#. line 16
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83
+msgid "Body"
+msgstr ""
+
+#. line 21
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63
+msgid "Post to noticeboard"
+msgstr ""
+
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118
+msgid "delete"
+msgstr ""
+
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70
+#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42
+#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415
+msgid "deleted?"
+msgstr ""
+
+#. line 33
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91
+msgid "Post news entry"
+msgstr ""
+
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 15
+#. line 67
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 15
+#. line 3
+#. line 67
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 15
+#. line 67
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 15
+#. line 3
+#. line 67
+#. line 17
+#. line 54
+#. line 133
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 15
+#. line 3
+#. line 67
+#. line 17
+#. line 54
+#. line 133
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 67
+#. 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
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371
+msgid "Staff"
+msgstr ""
+
+#. line 25
+#. line 68
+#. line 25
+#. line 68
+#. line 25
+#. line 68
+#. line 25
+#. line 68
+#. line 25
+#. line 68
+#. line 18
+#. line 25
+#. line 68
+#. line 18
+#. line 25
+#. line 68
+#. 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 ""
+
+#. line 26
+#. line 22
+#. line 26
+#. line 19
+#. line 26
+#. line 19
+#. line 26
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89
+#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67
+msgid "Date"
+msgstr ""
+
+#. line 25
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96
+#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88
+msgid "Actions"
+msgstr ""
+
+#. line 49
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154
+msgid "remove"
+msgstr ""
+
+#. line 76
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208
+msgid "New note"
+msgstr ""
+
+#. line 94
+#. line 7
+#. line 94
+#. line 7
+#. line 94
+#. line 7
+#. line 94
+#. line 7
+#. line 94
+#. line 7
+#. line 94
+#. line 7
+#. 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 ""
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44
+msgid "Expired"
+msgstr ""
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50
+msgid "Active"
+msgstr ""
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91
+msgid "no reason"
+msgstr ""
+
+#. line 118
+#. line 184
+#. line 65
+#. line 10
+#. line 33
+#. line 118
+#. line 184
+#. line 65
+#. line 33
+#. line 118
+#. line 184
+#. line 65
+#. line 10
+#. line 6
+#. line 33
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 10
+#. line 33
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 10
+#. line 6
+#. line 33
+#. line 49
+#. line 136
+#. line 3
+#. line 95
+#. line 118
+#. line 184
+#. line 65
+#. line 10
+#. line 6
+#. line 33
+#. line 49
+#. line 136
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 3
+#. line 118
+#. line 184
+#. line 65
+#. line 33
+#. 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
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38
+#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383
+#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263
+msgid "Board"
+msgstr ""
+
+#. line 71
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227
+msgid "all boards"
+msgstr ""
+
+#. line 128
+#. line 11
+#. line 43
+#. line 128
+#. line 43
+#. line 128
+#. line 11
+#. line 43
+#. line 128
+#. line 11
+#. line 43
+#. line 128
+#. line 11
+#. line 43
+#. line 50
+#. line 128
+#. line 11
+#. line 43
+#. line 50
+#. line 128
+#. line 43
+#. 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 ""
+
+#. line 132
+#. line 13
+#. line 47
+#. line 132
+#. line 47
+#. line 132
+#. line 13
+#. line 47
+#. line 132
+#. line 13
+#. line 47
+#. line 132
+#. line 13
+#. line 47
+#. line 52
+#. line 132
+#. line 13
+#. line 47
+#. line 52
+#. line 132
+#. line 47
+#. 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 ""
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267
+msgid "never"
+msgstr ""
+
+#. line 142
+#. line 14
+#. line 57
+#. line 142
+#. line 57
+#. line 142
+#. line 14
+#. line 57
+#. line 142
+#. line 14
+#. line 57
+#. line 142
+#. line 14
+#. line 57
+#. line 53
+#. line 142
+#. line 14
+#. line 57
+#. line 53
+#. line 142
+#. line 57
+#. 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 ""
+
+#: ../../../../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 ""
+
+#: ../../../../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 ""
+
+#. line 163
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419
+msgid "Remove ban"
+msgstr ""
+
+#. line 183
+#. line 5
+#. line 183
+#. line 5
+#. line 135
+#. line 94
+#. line 183
+#. line 5
+#. line 135
+#. line 183
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379
+#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259
+msgid "Time"
+msgstr ""
+
+#. line 185
+#. line 89
+#. line 185
+#. line 89
+#. line 185
+#. line 7
+#. line 89
+#. line 185
+#. line 89
+#. line 185
+#. line 7
+#. line 89
+#. line 137
+#. line 96
+#. line 185
+#. line 7
+#. line 89
+#. line 137
+#. line 185
+#. line 89
+#. 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 ""
+
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73
+msgid "(or subnet)"
+msgstr ""
+
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88
+msgid "hidden"
+msgstr ""
+
+#. line 41
+#. line 27
+#. line 41
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117
+#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92
+msgid "Message"
+msgstr ""
+
+#. line 46
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133
+msgid "public; attached to post"
+msgstr ""
+
+#. line 58
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150
+msgid "Length"
+msgstr ""
+
+#. line 88
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212
+msgid "New Ban"
+msgstr ""
+
+#. line 2
+#. line 5
+#. line 2
+#. line 5
+#. line 2
+#. line 5
+#. line 2
+#. line 5
+#. line 2
+#. line 5
+#. line 2
+#. line 5
+#. line 2
+#. line 5
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
+msgid "Phrase:"
+msgstr ""
+
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38
+msgid "Posts"
+msgstr ""
+
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49
+msgid "IP address notes"
+msgstr ""
+
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62
+msgid "Bans"
+msgstr ""
+
+#. 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 ""
+
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25
+msgid "There are no active bans."
+msgstr ""
+
+#. line 8
+#. line 47
+#. line 8
+#. line 47
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137
+msgid "IP address/mask"
+msgstr ""
+
+#. line 12
+#. line 51
+#. line 12
+#. line 51
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153
+msgid "Duration"
+msgstr ""
+
+#. line 92
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269
+msgid "Unban selected"
+msgstr ""
+
+#. line 6
+#. line 4
+#. line 6
+#. line 4
+#. line 11
+#. line 6
+#. line 4
+#. line 6
+#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30
+#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45
+msgid "Username"
+msgstr ""
+
+#. line 23
+#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60
+msgid "Continue"
+msgstr ""
+
+#. line 80
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210
+msgid "Appeal time"
+msgstr ""
+
+#. line 84
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220
+msgid "Appeal reason"
+msgstr ""
+
+#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31
+msgid "There are no reports."
+msgstr ""
+
+#: ../../../../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:829
+msgid "You cannot appeal a ban of this length."
+msgstr ""
+
+#: ../../../../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:841
+msgid "There is already a pending appeal for this ban."
+msgstr ""
+
+#: ../../../../inc/image.php:24 ../../../../inc/image.php:62
+msgid "Unsupported file format: "
+msgstr ""
+
+#: ../../../../inc/image.php:282 ../../../../inc/image.php:288
+msgid "Failed to redraw image!"
+msgstr ""
+
+#: ../../../../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 ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35
+msgid "You were banned! ;_;"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41
+msgid "You are banned! ;_;"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52
+msgid "You were banned from"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58
+msgid "You have been banned from"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82
+msgid "for the following reason:"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88
+msgid "for an unspecified reason."
+msgstr ""
+
+#. line 32
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110
+msgid "Your ban was filed on"
+msgstr ""
+
+#. 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 ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129
+msgid "expires"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133
+msgid "from now, which is on"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183
+msgid "will not expire"
+msgstr ""
+
+#. line 78
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192
+msgid "Your IP address is"
+msgstr ""
+
+#. line 86
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215
+msgid "You were banned for the following post on"
+msgstr ""
+
+#. line 95
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239
+msgid "You submitted an appeal for this ban on"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245
+msgid "It is still pending"
+msgstr ""
+
+#. line 101
+#. line 112
+#. line 101
+#. line 112
+#. line 101
+#. line 112
+#. line 101
+#. line 112
+#. line 101
+#. line 112
+#. line 101
+#. line 112
+#. line 101
+#. line 112
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289
+msgid "You appealed this ban on"
+msgstr ""
+
+#. line 103
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265
+msgid "and it was denied. You may not appeal this ban again."
+msgstr ""
+
+#: ../../../../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 ""
+
+#. line 114
+#. line 121
+#. line 114
+#. line 121
+#. line 114
+#. line 121
+#. line 114
+#. line 121
+#. line 114
+#. line 121
+#. line 114
+#. line 121
+#. line 114
+#. line 121
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318
+msgid "and it was denied."
+msgstr ""
+
+#. line 116
+#. line 123
+#. line 116
+#. line 123
+#. line 116
+#. line 123
+#. line 116
+#. line 123
+#. line 116
+#. line 123
+#. line 116
+#. line 123
+#. line 116
+#. line 123
+#: ../../../../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 ""
+
+#. line 119
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310
+msgid "You last appealed this ban on"
+msgstr ""
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332
+msgid "You may appeal this ban. Please enter your reasoning below."
+msgstr ""
+
+#. line 4
+#. line 16
+#. line 134
+#. line 93
+#. line 4
+#. line 16
+#. line 134
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55
+#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375
+#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255
+msgid "IP address"
+msgstr ""
+
+#. line 3
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26
+msgid "ID"
+msgstr ""
+
+#. line 5
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34
+msgid "Type"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45
+msgid "Last action"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80
+msgid "Unknown"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94
+msgid "none"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174
+msgid "Promote"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187
+msgid "Demote"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191
+msgid "Are you sure you want to demote yourself?"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204
+msgid "log"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226
+msgid "PM"
+msgstr ""
+
+#. line 6
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36
+msgid "Thread ID"
+msgstr ""
+
+#. line 14
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51
+msgid "Leave shadow thread"
+msgstr ""
+
+#. line 18
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58
+msgid "locks thread; replies to it with a link."
+msgstr ""
+
+#. line 22
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65
+msgid "Target board"
+msgstr ""
+
+#. line 8
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40
+msgid "Select board"
+msgstr ""
+
+#. line 17
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73
+msgid ""
+"Search is case-insensitive and based on keywords. To match exact phrases, "
+"use \"quotes\". Use an asterisk (*) for wildcard.
You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +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 "" + +#. 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) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/js/wPaint b/js/wPaint index 2c272dff..15bae4a9 160000 --- a/js/wPaint +++ b/js/wPaint @@ -1 +1 @@ -Subproject commit 2c272dffca0f3d7b7163bd82ba15629f54409278 +Subproject commit 15bae4a9181ddb283c1cad0979c44cefd4f15a44 diff --git a/js/wpaint.js b/js/wpaint.js index 93d29bbc..9c619070 100644 --- a/js/wpaint.js +++ b/js/wpaint.js @@ -83,7 +83,7 @@ oekaki.init = function() { stop: function(event,ui) { $("#wpaintdiv").wPaint("resize"); }, - alsoResize: "#wpaintdiv, #wpaintdiv canvas", + alsoResize: "#wpaintdiv", }); $('#wpaintctr .ui-resizable-se').css({'height':'12px', 'width':'12px'}); diff --git a/templates/themes/catalog/catalog.html b/templates/themes/catalog/catalog.html index 3bfd3e23..c69eb7f7 100644 --- a/templates/themes/catalog/catalog.html +++ b/templates/themes/catalog/catalog.html @@ -20,12 +20,16 @@ {% for post in recent_posts %}